diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:34:13 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:34:13 (GMT) |
commit | 67ad0519fd165acee4a4d2a94fa502e9e4847bd0 (patch) | |
tree | 1dbf50b3dff8d5ca7e9344733968c72704eb15ff /src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp | |
download | Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.zip Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.gz Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.bz2 |
Long live Qt!
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp | 309 |
1 files changed, 309 insertions, 0 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp b/src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp new file mode 100644 index 0000000..1e20ab4 --- /dev/null +++ b/src/scripttools/debugging/qscriptdebuggercommandschedulerfrontend.cpp @@ -0,0 +1,309 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (qt-info@nokia.com) +** +** This file is part of the QtSCriptTools module of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at qt-sales@nokia.com. +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "qscriptdebuggercommandschedulerfrontend_p.h" +#include "qscriptdebuggercommandschedulerinterface_p.h" +#include "qscriptdebuggercommand_p.h" + +QT_BEGIN_NAMESPACE + +QScriptDebuggerCommandSchedulerFrontend::QScriptDebuggerCommandSchedulerFrontend( + QScriptDebuggerCommandSchedulerInterface *scheduler, + QScriptDebuggerResponseHandlerInterface *responseHandler) + : m_scheduler(scheduler), m_responseHandler(responseHandler) +{ +} + +QScriptDebuggerCommandSchedulerFrontend::~QScriptDebuggerCommandSchedulerFrontend() +{ +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleCommand(const QScriptDebuggerCommand &command) +{ + return m_scheduler->scheduleCommand(command, m_responseHandler); +} + +/*! + Instructs the front-end to break at the next script statement, and + returns a unique identifier associated with this command. + + When the next script statement is encountered, the client will be + notified, and the front-end will be ready to accept commands. + + \sa scheduleContinue() +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleInterrupt() +{ + return scheduleCommand(QScriptDebuggerCommand::interruptCommand()); +} + +/*! + Instructs the front-end to continue evaluation, and returns a unique + identifier associated with this command. + + \sa scheduleBreak() +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleContinue() +{ + return scheduleCommand(QScriptDebuggerCommand::continueCommand()); +} + +/*! + Instructs the front-end to step into the next script statement, and + returns a unique identifier associated with this command. + + Evaluation will automatically be continued, and the client()'s event() + function will be called when the statement has been stepped into. +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleStepInto(int count) +{ + return scheduleCommand(QScriptDebuggerCommand::stepIntoCommand(count)); +} + +/*! + Instructs the front-end to step over the next script statement, and + returns a unique identifier associated with this command. + + Evaluation will automatically be continued, and the client()'s event() + function will be called when the statement has been stepped over. +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleStepOver(int count) +{ + return scheduleCommand(QScriptDebuggerCommand::stepOverCommand(count)); +} + +/*! + Instructs the front-end to step out of the current script function, and + returns a unique identifier associated with this command. + + Evaluation will automatically be continued, and the client()'s + event() function will be called when the script function has been + stepped out of. +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleStepOut() +{ + return scheduleCommand(QScriptDebuggerCommand::stepOutCommand()); +} + +/*! + Instructs the front-end to continue evaluation until the location + specified by the given \a fileName and \a lineNumber is reached. +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleRunToLocation(const QString &fileName, int lineNumber) +{ + return scheduleCommand(QScriptDebuggerCommand::runToLocationCommand(fileName, lineNumber)); +} + +/*! + Instructs the front-end to continue evaluation until the location + specified by the given \a scriptId and \a lineNumber is reached. +*/ +int QScriptDebuggerCommandSchedulerFrontend::scheduleRunToLocation(qint64 scriptId, int lineNumber) +{ + return scheduleCommand(QScriptDebuggerCommand::runToLocationCommand(scriptId, lineNumber)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleForceReturn(int contextIndex, const QScriptDebuggerValue &value) +{ + return scheduleCommand(QScriptDebuggerCommand::forceReturnCommand(contextIndex, value)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleSetBreakpoint(const QString &fileName, int lineNumber) +{ + return scheduleCommand(QScriptDebuggerCommand::setBreakpointCommand(fileName, lineNumber)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleSetBreakpoint(const QScriptBreakpointData &data) +{ + return scheduleCommand(QScriptDebuggerCommand::setBreakpointCommand(data)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleDeleteBreakpoint(int id) +{ + return scheduleCommand(QScriptDebuggerCommand::deleteBreakpointCommand(id)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleDeleteAllBreakpoints() +{ + return scheduleCommand(QScriptDebuggerCommand::deleteAllBreakpointsCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetBreakpoints() +{ + return scheduleCommand(QScriptDebuggerCommand::getBreakpointsCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetBreakpointData(int id) +{ + return scheduleCommand(QScriptDebuggerCommand::getBreakpointDataCommand(id)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleSetBreakpointData(int id, const QScriptBreakpointData &data) +{ + return scheduleCommand(QScriptDebuggerCommand::setBreakpointDataCommand(id, data)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetScripts() +{ + return scheduleCommand(QScriptDebuggerCommand::getScriptsCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetScriptData(qint64 id) +{ + return scheduleCommand(QScriptDebuggerCommand::getScriptDataCommand(id)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleScriptsCheckpoint() +{ + return scheduleCommand(QScriptDebuggerCommand::scriptsCheckpointCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetScriptsDelta() +{ + return scheduleCommand(QScriptDebuggerCommand::getScriptsDeltaCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleResolveScript(const QString &fileName) +{ + return scheduleCommand(QScriptDebuggerCommand::resolveScriptCommand(fileName)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetBacktrace() +{ + return scheduleCommand(QScriptDebuggerCommand::getBacktraceCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetContextCount() +{ + return scheduleCommand(QScriptDebuggerCommand::getContextCountCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetContextState(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getContextStateCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetContextInfo(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getContextInfoCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetContextId(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getContextIdCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetThisObject(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getThisObjectCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetActivationObject(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getActivationObjectCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetScopeChain(int contextIndex) +{ + return scheduleCommand(QScriptDebuggerCommand::getScopeChainCommand(contextIndex)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleContextsCheckpoint() +{ + return scheduleCommand(QScriptDebuggerCommand::contextsCheckpoint()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleEvaluate(int contextIndex, + const QString &program, + const QString &fileName, + int lineNumber) +{ + return scheduleCommand(QScriptDebuggerCommand::evaluateCommand(contextIndex, program, fileName, lineNumber)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleNewScriptValueIterator(const QScriptDebuggerValue &object) +{ + return scheduleCommand(QScriptDebuggerCommand::newScriptValueIteratorCommand(object)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleGetPropertiesByIterator(int id, int count) +{ + return scheduleCommand(QScriptDebuggerCommand::getPropertiesByIteratorCommand(id, count)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleDeleteScriptValueIterator(int id) +{ + return scheduleCommand(QScriptDebuggerCommand::deleteScriptValueIteratorCommand(id)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleScriptValueToString(const QScriptDebuggerValue &value) +{ + return scheduleCommand(QScriptDebuggerCommand::scriptValueToStringCommand(value)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleSetScriptValueProperty(const QScriptDebuggerValue &object, + const QString &name, + const QScriptDebuggerValue &value) +{ + return scheduleCommand(QScriptDebuggerCommand::setScriptValuePropertyCommand(object, name, value)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleClearExceptions() +{ + return scheduleCommand(QScriptDebuggerCommand::clearExceptionsCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleNewScriptObjectSnapshot() +{ + return scheduleCommand(QScriptDebuggerCommand::newScriptObjectSnapshotCommand()); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleScriptObjectSnapshotCapture(int id, const QScriptDebuggerValue &object) +{ + return scheduleCommand(QScriptDebuggerCommand::scriptObjectSnapshotCaptureCommand(id, object)); +} + +int QScriptDebuggerCommandSchedulerFrontend::scheduleDeleteScriptObjectSnapshot(int id) +{ + return scheduleCommand(QScriptDebuggerCommand::deleteScriptObjectSnapshotCommand(id)); +} + +QT_END_NAMESPACE |