2010-06-16 11:08:54 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "debuggerengine.h"
|
|
|
|
|
|
|
|
|
|
#include "debuggeractions.h"
|
|
|
|
|
#include "debuggeragents.h"
|
|
|
|
|
#include "debuggerrunner.h"
|
|
|
|
|
#include "debuggeroutputwindow.h"
|
|
|
|
|
#include "debuggerplugin.h"
|
|
|
|
|
#include "debuggerstringutils.h"
|
|
|
|
|
|
|
|
|
|
#include "breakhandler.h"
|
|
|
|
|
#include "moduleshandler.h"
|
|
|
|
|
#include "registerhandler.h"
|
|
|
|
|
#include "snapshothandler.h"
|
|
|
|
|
#include "sourcefileshandler.h"
|
|
|
|
|
#include "stackhandler.h"
|
|
|
|
|
#include "threadshandler.h"
|
|
|
|
|
#include "watchhandler.h"
|
2010-06-22 18:30:18 +02:00
|
|
|
#include "watchutils.h"
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
#include <projectexplorer/debugginghelper.h>
|
|
|
|
|
#include <projectexplorer/environment.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
|
#include <projectexplorer/applicationrunconfiguration.h> // For LocalApplication*
|
|
|
|
|
|
|
|
|
|
#include <qt4projectmanager/qt4projectmanagerconstants.h>
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
#include <texteditor/itexteditor.h>
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
#include <utils/savedaction.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QTimer>
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QAbstractItemView>
|
|
|
|
|
#include <QtGui/QStandardItemModel>
|
|
|
|
|
#include <QtGui/QAction>
|
2010-06-25 16:06:48 +02:00
|
|
|
#include <QtGui/QMenu>
|
2010-06-16 11:08:54 +02:00
|
|
|
#include <QtGui/QMessageBox>
|
2010-06-22 17:18:29 +02:00
|
|
|
#include <QtGui/QPlainTextEdit>
|
2010-06-16 11:08:54 +02:00
|
|
|
#include <QtGui/QPushButton>
|
2010-06-22 17:18:29 +02:00
|
|
|
#include <QtGui/QTextBlock>
|
|
|
|
|
#include <QtGui/QTextCursor>
|
2010-06-16 11:08:54 +02:00
|
|
|
#include <QtGui/QTextDocument>
|
|
|
|
|
#include <QtGui/QTreeWidget>
|
|
|
|
|
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
using namespace Core;
|
2010-06-16 11:08:54 +02:00
|
|
|
using namespace Debugger;
|
|
|
|
|
using namespace Debugger::Internal;
|
2010-06-22 17:18:29 +02:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace TextEditor;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
//#define DEBUG_STATE 1
|
|
|
|
|
#if DEBUG_STATE
|
|
|
|
|
# define SDEBUG(s) qDebug() << s
|
|
|
|
|
#else
|
|
|
|
|
# define SDEBUG(s)
|
|
|
|
|
#endif
|
|
|
|
|
# define XSDEBUG(s) qDebug() << s
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// DebuggerStartParameters
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
DebuggerStartParameters::DebuggerStartParameters()
|
|
|
|
|
: attachPID(-1),
|
|
|
|
|
useTerminal(false),
|
|
|
|
|
breakAtMain(false),
|
|
|
|
|
toolChainType(ToolChain::UNKNOWN),
|
|
|
|
|
startMode(NoStartMode)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
void DebuggerStartParameters::clear()
|
|
|
|
|
{
|
|
|
|
|
*this = DebuggerStartParameters();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug d, DebuggerState state)
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
//return d << DebuggerEngine::stateName(state) << '(' << int(state) << ')';
|
|
|
|
|
return d << DebuggerEngine::stateName(state);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug str, const DebuggerStartParameters &sp)
|
|
|
|
|
{
|
|
|
|
|
QDebug nospace = str.nospace();
|
|
|
|
|
const QString sep = QString(QLatin1Char(','));
|
|
|
|
|
nospace << "executable=" << sp.executable
|
|
|
|
|
<< " coreFile=" << sp.coreFile
|
|
|
|
|
<< " processArgs=" << sp.processArgs.join(sep)
|
|
|
|
|
<< " environment=<" << sp.environment.size() << " variables>"
|
|
|
|
|
<< " workingDir=" << sp.workingDirectory
|
|
|
|
|
<< " attachPID=" << sp.attachPID
|
|
|
|
|
<< " useTerminal=" << sp.useTerminal
|
|
|
|
|
<< " remoteChannel=" << sp.remoteChannel
|
|
|
|
|
<< " remoteArchitecture=" << sp.remoteArchitecture
|
|
|
|
|
<< " symbolFileName=" << sp.symbolFileName
|
|
|
|
|
<< " serverStartScript=" << sp.serverStartScript
|
|
|
|
|
<< " toolchain=" << sp.toolChainType << '\n';
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
const char *DebuggerEngine::stateName(int s)
|
|
|
|
|
{
|
|
|
|
|
# define SN(x) case x: return #x;
|
|
|
|
|
switch (s) {
|
|
|
|
|
SN(DebuggerNotReady)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(EngineSetupRequested)
|
2010-07-09 08:48:33 +02:00
|
|
|
SN(EngineSetupOk)
|
|
|
|
|
SN(EngineSetupFailed)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(EngineRunFailed)
|
|
|
|
|
SN(InferiorSetupRequested)
|
2010-07-08 18:10:50 +02:00
|
|
|
SN(InferiorSetupFailed)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(EngineRunRequested)
|
|
|
|
|
SN(InferiorRunRequested)
|
|
|
|
|
SN(InferiorRunOk)
|
|
|
|
|
SN(InferiorRunFailed)
|
2010-06-16 11:08:54 +02:00
|
|
|
SN(InferiorUnrunnable)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(InferiorStopRequested)
|
|
|
|
|
SN(InferiorStopOk)
|
2010-06-16 11:08:54 +02:00
|
|
|
SN(InferiorStopFailed)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(InferiorShutdownRequested)
|
|
|
|
|
SN(InferiorShutdownOk)
|
2010-06-16 11:08:54 +02:00
|
|
|
SN(InferiorShutdownFailed)
|
2010-07-09 17:07:59 +02:00
|
|
|
SN(EngineShutdownRequested)
|
|
|
|
|
SN(EngineShutdownOk)
|
|
|
|
|
SN(EngineShutdownFailed)
|
|
|
|
|
SN(DebuggerFinished)
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
return "<unknown>";
|
|
|
|
|
# undef SN
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 15:37:27 +02:00
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// CommandHandler
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
class CommandHandler : public QStandardItemModel
|
|
|
|
|
{
|
|
|
|
|
public:
|
2010-06-22 15:37:27 +02:00
|
|
|
explicit CommandHandler(DebuggerEngine *engine) : m_engine(engine) {}
|
2010-06-16 11:08:54 +02:00
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role);
|
|
|
|
|
QAbstractItemModel *model() { return this; }
|
|
|
|
|
|
|
|
|
|
private:
|
2010-06-22 15:37:27 +02:00
|
|
|
QPointer<DebuggerEngine> m_engine;
|
2010-06-16 11:08:54 +02:00
|
|
|
};
|
|
|
|
|
|
2010-06-22 12:41:02 +02:00
|
|
|
bool CommandHandler::setData(const QModelIndex &, const QVariant &value, int role)
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-07-02 12:20:26 +02:00
|
|
|
QTC_ASSERT(m_engine, qDebug() << value << role; return false);
|
2010-06-22 15:37:27 +02:00
|
|
|
m_engine->handleCommand(role, value);
|
|
|
|
|
return true;
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// DebuggerEnginePrivate
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2010-06-25 16:06:48 +02:00
|
|
|
class DebuggerEnginePrivate : public QObject
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-25 16:06:48 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
public:
|
|
|
|
|
DebuggerEnginePrivate(DebuggerEngine *engine, const DebuggerStartParameters &sp)
|
|
|
|
|
: m_engine(engine),
|
|
|
|
|
m_runControl(0),
|
|
|
|
|
m_startParameters(sp),
|
|
|
|
|
m_state(DebuggerNotReady),
|
2010-07-09 17:07:59 +02:00
|
|
|
m_lastGoodState(DebuggerNotReady),
|
2010-06-16 11:08:54 +02:00
|
|
|
m_breakHandler(engine),
|
|
|
|
|
m_commandHandler(engine),
|
|
|
|
|
m_modulesHandler(engine),
|
|
|
|
|
m_registerHandler(engine),
|
|
|
|
|
m_snapshotHandler(engine),
|
|
|
|
|
m_sourceFilesHandler(engine),
|
|
|
|
|
m_stackHandler(engine),
|
|
|
|
|
m_threadsHandler(engine),
|
|
|
|
|
m_watchHandler(engine),
|
|
|
|
|
m_disassemblerViewAgent(engine)
|
|
|
|
|
{}
|
|
|
|
|
|
2010-06-25 16:06:48 +02:00
|
|
|
public slots:
|
|
|
|
|
void breakpointSetRemoveMarginActionTriggered();
|
|
|
|
|
void breakpointEnableDisableMarginActionTriggered();
|
|
|
|
|
void handleContextMenuRequest(const QVariant ¶meters);
|
|
|
|
|
|
2010-07-08 18:10:50 +02:00
|
|
|
void doSetupInferior();
|
|
|
|
|
void doRunEngine();
|
2010-07-09 17:07:59 +02:00
|
|
|
void doShutdownEngine();
|
|
|
|
|
void doShutdownInferior();
|
2010-07-09 08:48:33 +02:00
|
|
|
void doInterruptInferior();
|
2010-07-09 17:07:59 +02:00
|
|
|
void doFinishDebugger();
|
2010-07-08 18:10:50 +02:00
|
|
|
|
2010-07-13 08:41:27 +02:00
|
|
|
void queueRunEngine() {
|
|
|
|
|
m_engine->setState(EngineRunRequested);
|
|
|
|
|
m_engine->showMessage(_("QUEUE: RUN ENGINE"));
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(doRunEngine()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void queueShutdownEngine() {
|
|
|
|
|
m_engine->setState(EngineShutdownRequested);
|
|
|
|
|
m_engine->showMessage(_("QUEUE: SHUTDOWN ENGINE"));
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(doShutdownEngine()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void queueShutdownInferior() {
|
|
|
|
|
m_engine->setState(InferiorShutdownRequested);
|
|
|
|
|
m_engine->showMessage(_("QUEUE: SHUTDOWN INFERIOR"));
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(doShutdownInferior()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void queueFinishDebugger() {
|
|
|
|
|
m_engine->setState(DebuggerFinished, true);
|
|
|
|
|
m_engine->showMessage(_("QUEUE: SHUTDOWN INFERIOR"));
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(doFinishDebugger()));
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
public:
|
2010-07-09 17:07:59 +02:00
|
|
|
DebuggerState state() const { return m_state; }
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
DebuggerEngine *m_engine; // Not owned.
|
|
|
|
|
DebuggerRunControl *m_runControl; // Not owned.
|
|
|
|
|
|
|
|
|
|
DebuggerStartParameters m_startParameters;
|
2010-07-09 17:07:59 +02:00
|
|
|
|
|
|
|
|
// The current state.
|
2010-06-16 11:08:54 +02:00
|
|
|
DebuggerState m_state;
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
// The state we had before something unexpected happend.
|
|
|
|
|
DebuggerState m_lastGoodState;
|
|
|
|
|
|
|
|
|
|
// The state we are aiming for.
|
|
|
|
|
DebuggerState m_targetState;
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
qint64 m_inferiorPid;
|
|
|
|
|
|
|
|
|
|
BreakHandler m_breakHandler;
|
|
|
|
|
CommandHandler m_commandHandler;
|
|
|
|
|
ModulesHandler m_modulesHandler;
|
|
|
|
|
RegisterHandler m_registerHandler;
|
|
|
|
|
SnapshotHandler m_snapshotHandler;
|
|
|
|
|
SourceFilesHandler m_sourceFilesHandler;
|
|
|
|
|
StackHandler m_stackHandler;
|
|
|
|
|
ThreadsHandler m_threadsHandler;
|
|
|
|
|
WatchHandler m_watchHandler;
|
|
|
|
|
DisassemblerViewAgent m_disassemblerViewAgent;
|
|
|
|
|
};
|
|
|
|
|
|
2010-06-25 16:06:48 +02:00
|
|
|
void DebuggerEnginePrivate::breakpointSetRemoveMarginActionTriggered()
|
|
|
|
|
{
|
|
|
|
|
QAction *act = qobject_cast<QAction *>(sender());
|
|
|
|
|
QTC_ASSERT(act, return);
|
|
|
|
|
QList<QVariant> list = act->data().toList();
|
|
|
|
|
QTC_ASSERT(list.size() == 2, return);
|
|
|
|
|
const QString fileName = list.at(0).toString();
|
|
|
|
|
const int lineNumber = list.at(1).toInt();
|
|
|
|
|
m_breakHandler.toggleBreakpoint(fileName, lineNumber);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::breakpointEnableDisableMarginActionTriggered()
|
|
|
|
|
{
|
|
|
|
|
QAction *act = qobject_cast<QAction *>(sender());
|
|
|
|
|
QTC_ASSERT(act, return);
|
|
|
|
|
QList<QVariant> list = act->data().toList();
|
|
|
|
|
QTC_ASSERT(list.size() == 2, return);
|
|
|
|
|
const QString fileName = list.at(0).toString();
|
|
|
|
|
const int lineNumber = list.at(1).toInt();
|
|
|
|
|
m_breakHandler.toggleBreakpointEnabled(fileName, lineNumber);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::handleContextMenuRequest(const QVariant ¶meters)
|
|
|
|
|
{
|
|
|
|
|
const QList<QVariant> list = parameters.toList();
|
|
|
|
|
QTC_ASSERT(list.size() == 3, return);
|
2010-07-09 17:07:59 +02:00
|
|
|
TextEditor::ITextEditor *editor =
|
2010-06-25 16:06:48 +02:00
|
|
|
(TextEditor::ITextEditor *)(list.at(0).value<quint64>());
|
|
|
|
|
int lineNumber = list.at(1).toInt();
|
|
|
|
|
QMenu *menu = (QMenu *)(list.at(2).value<quint64>());
|
|
|
|
|
|
|
|
|
|
BreakpointData *data = 0;
|
|
|
|
|
QString position;
|
|
|
|
|
QString fileName;
|
|
|
|
|
if (editor->property("DisassemblerView").toBool()) {
|
|
|
|
|
fileName = editor->file()->fileName();
|
|
|
|
|
QString line = editor->contents()
|
|
|
|
|
.section('\n', lineNumber - 1, lineNumber - 1);
|
|
|
|
|
position = _("*") + fileName;
|
|
|
|
|
BreakpointData needle;
|
|
|
|
|
needle.bpAddress = line.left(line.indexOf(QLatin1Char(' '))).toLatin1();
|
|
|
|
|
needle.bpLineNumber = "-1";
|
|
|
|
|
data = m_breakHandler.findSimilarBreakpoint(&needle);
|
|
|
|
|
} else {
|
|
|
|
|
fileName = editor->file()->fileName();
|
|
|
|
|
position = fileName + QString(":%1").arg(lineNumber);
|
|
|
|
|
data = m_breakHandler.findBreakpoint(fileName, lineNumber);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<QVariant> args;
|
|
|
|
|
args.append(fileName);
|
|
|
|
|
args.append(lineNumber);
|
|
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
|
// existing breakpoint
|
|
|
|
|
QAction *act = new QAction(tr("Remove Breakpoint"), menu);
|
|
|
|
|
act->setData(args);
|
|
|
|
|
connect(act, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(breakpointSetRemoveMarginActionTriggered()));
|
|
|
|
|
menu->addAction(act);
|
|
|
|
|
|
|
|
|
|
QAction *act2;
|
|
|
|
|
if (data->enabled)
|
|
|
|
|
act2 = new QAction(tr("Disable Breakpoint"), menu);
|
|
|
|
|
else
|
|
|
|
|
act2 = new QAction(tr("Enable Breakpoint"), menu);
|
|
|
|
|
act2->setData(args);
|
|
|
|
|
connect(act2, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(breakpointEnableDisableMarginActionTriggered()));
|
|
|
|
|
menu->addAction(act2);
|
|
|
|
|
} else {
|
|
|
|
|
// non-existing
|
|
|
|
|
QAction *act = new QAction(tr("Set Breakpoint"), menu);
|
|
|
|
|
act->setData(args);
|
|
|
|
|
connect(act, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(breakpointSetRemoveMarginActionTriggered()));
|
|
|
|
|
menu->addAction(act);
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// DebuggerEngine
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
DebuggerEngine::DebuggerEngine(const DebuggerStartParameters &startParameters)
|
|
|
|
|
: d(new DebuggerEnginePrivate(this, startParameters))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerEngine::~DebuggerEngine()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 15:37:27 +02:00
|
|
|
void DebuggerEngine::showStatusMessage(const QString &msg, int timeout) const
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-22 15:37:27 +02:00
|
|
|
showMessage(msg, StatusBar, timeout);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
2010-06-22 15:37:27 +02:00
|
|
|
|
|
|
|
|
void DebuggerEngine::handleCommand(int role, const QVariant &value)
|
|
|
|
|
{
|
|
|
|
|
//qDebug() << "COMMAND: " << role << value;
|
|
|
|
|
|
|
|
|
|
switch (role) {
|
|
|
|
|
case RequestReloadSourceFilesRole:
|
|
|
|
|
reloadSourceFiles();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestReloadModulesRole:
|
|
|
|
|
reloadModules();
|
|
|
|
|
break;
|
|
|
|
|
|
2010-06-28 09:10:20 +02:00
|
|
|
case RequestReloadRegistersRole:
|
|
|
|
|
reloadRegisters();
|
|
|
|
|
break;
|
|
|
|
|
|
2010-06-22 15:37:27 +02:00
|
|
|
case RequestExecContinueRole:
|
|
|
|
|
continueInferior();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecInterruptRole:
|
2010-07-09 08:48:33 +02:00
|
|
|
d->doInterruptInferior();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecResetRole:
|
|
|
|
|
//exec();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecStepRole:
|
|
|
|
|
executeStepX();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecStepOutRole:
|
|
|
|
|
executeStepOutX();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecNextRole:
|
|
|
|
|
executeStepNextX();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecRunToLineRole:
|
2010-06-22 17:18:29 +02:00
|
|
|
executeRunToLine();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecRunToFunctionRole:
|
2010-06-22 17:18:29 +02:00
|
|
|
executeRunToFunction();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecReturnFromFunctionRole:
|
|
|
|
|
executeReturnX();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecJumpToLineRole:
|
2010-06-22 17:18:29 +02:00
|
|
|
executeJumpToLine();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecWatchRole:
|
2010-06-22 18:30:18 +02:00
|
|
|
addToWatchWindow();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecExitRole:
|
2010-07-09 17:07:59 +02:00
|
|
|
d->doShutdownInferior();
|
2010-06-22 15:37:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecSnapshotRole:
|
|
|
|
|
makeSnapshot();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecFrameDownRole:
|
|
|
|
|
frameDown();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecFrameUpRole:
|
|
|
|
|
frameUp();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestOperatedByInstructionTriggeredRole:
|
|
|
|
|
gotoLocation(stackHandler()->currentFrame(), true);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RequestExecuteCommandRole:
|
|
|
|
|
executeDebuggerCommand(value.toString());
|
|
|
|
|
break;
|
2010-06-22 17:18:29 +02:00
|
|
|
|
2010-06-25 16:06:48 +02:00
|
|
|
case RequestToggleBreakpointRole: {
|
|
|
|
|
QList<QVariant> list = value.toList();
|
|
|
|
|
QTC_ASSERT(list.size() == 2, break);
|
|
|
|
|
const QString fileName = list.at(0).toString();
|
|
|
|
|
const int lineNumber = list.at(1).toInt();
|
|
|
|
|
breakHandler()->toggleBreakpoint(fileName, lineNumber);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 18:18:13 +02:00
|
|
|
case RequestToolTipByExpressionRole: {
|
|
|
|
|
QList<QVariant> list = value.toList();
|
|
|
|
|
QTC_ASSERT(list.size() == 3, break);
|
2010-06-25 16:06:48 +02:00
|
|
|
QPoint point = list.at(0).value<QPoint>();
|
|
|
|
|
TextEditor::ITextEditor *editor = // Eeks.
|
|
|
|
|
(TextEditor::ITextEditor *)(list.at(1).value<quint64>());
|
2010-07-09 17:07:59 +02:00
|
|
|
int pos = list.at(2).toInt();
|
2010-06-25 16:06:48 +02:00
|
|
|
setToolTipExpression(point, editor, pos);
|
2010-06-22 18:18:13 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-25 16:06:48 +02:00
|
|
|
case RequestContextMenuRole: {
|
2010-06-25 15:02:53 +02:00
|
|
|
QList<QVariant> list = value.toList();
|
2010-06-25 16:06:48 +02:00
|
|
|
QTC_ASSERT(list.size() == 3, break);
|
|
|
|
|
d->handleContextMenuRequest(list);
|
2010-06-22 17:18:29 +02:00
|
|
|
break;
|
2010-06-25 15:02:53 +02:00
|
|
|
}
|
2010-06-22 15:37:27 +02:00
|
|
|
}
|
2010-06-25 15:02:53 +02:00
|
|
|
}
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
void DebuggerEngine::showModuleSymbols
|
|
|
|
|
(const QString &moduleName, const Symbols &symbols)
|
|
|
|
|
{
|
|
|
|
|
QTreeWidget *w = new QTreeWidget;
|
|
|
|
|
w->setColumnCount(3);
|
|
|
|
|
w->setRootIsDecorated(false);
|
|
|
|
|
w->setAlternatingRowColors(true);
|
|
|
|
|
w->setSortingEnabled(true);
|
|
|
|
|
w->setHeaderLabels(QStringList() << tr("Symbol") << tr("Address") << tr("Code"));
|
|
|
|
|
w->setWindowTitle(tr("Symbols in \"%1\"").arg(moduleName));
|
|
|
|
|
foreach (const Symbol &s, symbols) {
|
|
|
|
|
QTreeWidgetItem *it = new QTreeWidgetItem;
|
|
|
|
|
it->setData(0, Qt::DisplayRole, s.name);
|
|
|
|
|
it->setData(1, Qt::DisplayRole, s.address);
|
|
|
|
|
it->setData(2, Qt::DisplayRole, s.state);
|
|
|
|
|
w->addTopLevelItem(it);
|
|
|
|
|
}
|
|
|
|
|
plugin()->createNewDock(w);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::frameUp()
|
|
|
|
|
{
|
|
|
|
|
int currentIndex = stackHandler()->currentIndex();
|
|
|
|
|
activateFrame(qMin(currentIndex + 1, stackHandler()->stackSize() - 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::frameDown()
|
|
|
|
|
{
|
|
|
|
|
int currentIndex = stackHandler()->currentIndex();
|
|
|
|
|
activateFrame(qMax(currentIndex - 1, 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ModulesHandler *DebuggerEngine::modulesHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_modulesHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakHandler *DebuggerEngine::breakHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_breakHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RegisterHandler *DebuggerEngine::registerHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_registerHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StackHandler *DebuggerEngine::stackHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_stackHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadsHandler *DebuggerEngine::threadsHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_threadsHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WatchHandler *DebuggerEngine::watchHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_watchHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SnapshotHandler *DebuggerEngine::snapshotHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_snapshotHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SourceFilesHandler *DebuggerEngine::sourceFilesHandler() const
|
|
|
|
|
{
|
|
|
|
|
return &d->m_sourceFilesHandler;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::modulesModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_modulesHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::breakModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_breakHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::registerModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_registerHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::stackModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_stackHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::threadsModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_threadsHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::localsModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_watchHandler.model(LocalsWatch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::watchersModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_watchHandler.model(WatchersWatch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::returnModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_watchHandler.model(ReturnWatch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::snapshotModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_snapshotHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::sourceFilesModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_sourceFilesHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAbstractItemModel *DebuggerEngine::commandModel() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_commandHandler.model();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::fetchMemory(MemoryViewAgent *, QObject *,
|
|
|
|
|
quint64 addr, quint64 length)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(addr);
|
|
|
|
|
Q_UNUSED(length);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::setRegisterValue(int regnr, const QString &value)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(regnr);
|
|
|
|
|
Q_UNUSED(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::showMessage(const QString &msg, int channel, int timeout) const
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
if (msg.size() && msg.at(0).isUpper() && msg.at(1).isUpper())
|
|
|
|
|
qDebug() << qPrintable(msg) << "IN STATE" << state();
|
2010-06-16 11:08:54 +02:00
|
|
|
d->m_runControl->showMessage(msg, channel);
|
|
|
|
|
plugin()->showMessage(msg, channel, timeout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::startDebugger(DebuggerRunControl *runControl)
|
|
|
|
|
{
|
2010-07-09 08:48:33 +02:00
|
|
|
QTC_ASSERT(runControl, notifyEngineSetupFailed(); return);
|
|
|
|
|
QTC_ASSERT(!d->m_runControl, notifyEngineSetupFailed(); return);
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
DebuggerEngine *sessionTemplate = plugin()->sessionTemplate();
|
2010-07-09 08:48:33 +02:00
|
|
|
QTC_ASSERT(sessionTemplate, notifyEngineSetupFailed(); return);
|
|
|
|
|
QTC_ASSERT(sessionTemplate != this, notifyEngineSetupFailed(); return);
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
breakHandler()->initializeFromTemplate(sessionTemplate->breakHandler());
|
2010-06-25 09:53:23 +02:00
|
|
|
watchHandler()->initializeFromTemplate(sessionTemplate->watchHandler());
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
d->m_runControl = runControl;
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == DebuggerNotReady, qDebug() << state());
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
d->m_inferiorPid = d->m_startParameters.attachPID > 0
|
|
|
|
|
? d->m_startParameters.attachPID : 0;
|
|
|
|
|
|
|
|
|
|
if (d->m_startParameters.environment.empty())
|
|
|
|
|
d->m_startParameters.environment = Environment().toStringList();
|
|
|
|
|
|
|
|
|
|
if (d->m_startParameters.breakAtMain)
|
|
|
|
|
breakByFunctionMain();
|
|
|
|
|
|
|
|
|
|
const unsigned engineCapabilities = debuggerCapabilities();
|
|
|
|
|
theDebuggerAction(OperateByInstruction)
|
|
|
|
|
->setEnabled(engineCapabilities & DisassemblerCapability);
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
setState(EngineSetupRequested);
|
2010-07-08 18:10:50 +02:00
|
|
|
setupEngine();
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::breakByFunctionMain()
|
|
|
|
|
{
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
// FIXME: wrong on non-Qt based binaries
|
|
|
|
|
emit breakByFunction("qMain");
|
|
|
|
|
#else
|
|
|
|
|
emit breakByFunction("main");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::breakByFunction(const QString &functionName)
|
|
|
|
|
{
|
|
|
|
|
d->m_breakHandler.breakByFunction(functionName);
|
|
|
|
|
attemptBreakpointSynchronization();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::resetLocation()
|
|
|
|
|
{
|
|
|
|
|
d->m_disassemblerViewAgent.resetLocation();
|
|
|
|
|
d->m_stackHandler.setCurrentIndex(-1);
|
|
|
|
|
plugin()->resetLocation();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::gotoLocation(const QString &fileName, int lineNumber, bool setMarker)
|
|
|
|
|
{
|
|
|
|
|
StackFrame frame;
|
|
|
|
|
frame.file = fileName;
|
|
|
|
|
frame.line = lineNumber;
|
|
|
|
|
gotoLocation(frame, setMarker);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::gotoLocation(const StackFrame &frame, bool setMarker)
|
|
|
|
|
{
|
|
|
|
|
if (theDebuggerBoolSetting(OperateByInstruction) || !frame.isUsable()) {
|
|
|
|
|
if (setMarker)
|
|
|
|
|
plugin()->resetLocation();
|
|
|
|
|
d->m_disassemblerViewAgent.setFrame(frame);
|
|
|
|
|
} else {
|
|
|
|
|
plugin()->gotoLocation(frame.file, frame.line, setMarker);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::executeStepX()
|
|
|
|
|
{
|
|
|
|
|
resetLocation();
|
|
|
|
|
if (theDebuggerBoolSetting(OperateByInstruction))
|
|
|
|
|
executeStepI();
|
|
|
|
|
else
|
|
|
|
|
executeStep();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::executeStepOutX()
|
|
|
|
|
{
|
|
|
|
|
resetLocation();
|
|
|
|
|
executeStepOut();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::executeStepNextX()
|
|
|
|
|
{
|
|
|
|
|
resetLocation();
|
|
|
|
|
if (theDebuggerBoolSetting(OperateByInstruction))
|
|
|
|
|
executeNextI();
|
|
|
|
|
else
|
|
|
|
|
executeNext();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::executeReturnX()
|
|
|
|
|
{
|
|
|
|
|
resetLocation();
|
|
|
|
|
executeReturn();
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
static TextEditor::ITextEditor *currentTextEditor()
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-22 17:18:29 +02:00
|
|
|
EditorManager *editorManager = EditorManager::instance();
|
|
|
|
|
if (!editorManager)
|
|
|
|
|
return 0;
|
|
|
|
|
Core::IEditor *editor = editorManager->currentEditor();
|
|
|
|
|
return qobject_cast<ITextEditor*>(editor);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
void DebuggerEngine::executeRunToLine()
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-22 17:18:29 +02:00
|
|
|
ITextEditor *textEditor = currentTextEditor();
|
2010-06-16 11:08:54 +02:00
|
|
|
QTC_ASSERT(textEditor, return);
|
|
|
|
|
QString fileName = textEditor->file()->fileName();
|
2010-06-22 17:18:29 +02:00
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
return;
|
2010-06-16 11:08:54 +02:00
|
|
|
int lineNumber = textEditor->currentLine();
|
2010-06-22 17:18:29 +02:00
|
|
|
resetLocation();
|
|
|
|
|
executeRunToLine(fileName, lineNumber);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
void DebuggerEngine::executeRunToFunction()
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-22 17:18:29 +02:00
|
|
|
ITextEditor *textEditor = currentTextEditor();
|
2010-06-16 11:08:54 +02:00
|
|
|
QTC_ASSERT(textEditor, return);
|
|
|
|
|
QString fileName = textEditor->file()->fileName();
|
|
|
|
|
QPlainTextEdit *ed = qobject_cast<QPlainTextEdit*>(textEditor->widget());
|
|
|
|
|
if (!ed)
|
|
|
|
|
return;
|
|
|
|
|
QTextCursor cursor = ed->textCursor();
|
|
|
|
|
QString functionName = cursor.selectedText();
|
|
|
|
|
if (functionName.isEmpty()) {
|
|
|
|
|
const QTextBlock block = cursor.block();
|
|
|
|
|
const QString line = block.text();
|
|
|
|
|
foreach (const QString &str, line.trimmed().split('(')) {
|
|
|
|
|
QString a;
|
|
|
|
|
for (int i = str.size(); --i >= 0; ) {
|
|
|
|
|
if (!str.at(i).isLetterOrNumber())
|
|
|
|
|
break;
|
|
|
|
|
a = str.at(i) + a;
|
|
|
|
|
}
|
|
|
|
|
if (!a.isEmpty()) {
|
|
|
|
|
functionName = a;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
if (functionName.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
resetLocation();
|
|
|
|
|
executeRunToFunction(functionName);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 17:18:29 +02:00
|
|
|
void DebuggerEngine::executeJumpToLine()
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-06-22 17:18:29 +02:00
|
|
|
ITextEditor *textEditor = currentTextEditor();
|
2010-06-16 11:08:54 +02:00
|
|
|
QTC_ASSERT(textEditor, return);
|
|
|
|
|
QString fileName = textEditor->file()->fileName();
|
|
|
|
|
int lineNumber = textEditor->currentLine();
|
2010-06-22 17:18:29 +02:00
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
executeJumpToLine(fileName, lineNumber);
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 18:30:18 +02:00
|
|
|
void DebuggerEngine::addToWatchWindow()
|
|
|
|
|
{
|
|
|
|
|
// Requires a selection, but that's the only case we want anyway.
|
|
|
|
|
EditorManager *editorManager = EditorManager::instance();
|
|
|
|
|
if (!editorManager)
|
|
|
|
|
return;
|
|
|
|
|
IEditor *editor = editorManager->currentEditor();
|
|
|
|
|
if (!editor)
|
|
|
|
|
return;
|
|
|
|
|
ITextEditor *textEditor = qobject_cast<ITextEditor*>(editor);
|
|
|
|
|
if (!textEditor)
|
|
|
|
|
return;
|
|
|
|
|
QTextCursor tc;
|
|
|
|
|
QPlainTextEdit *ptEdit = qobject_cast<QPlainTextEdit*>(editor->widget());
|
|
|
|
|
if (ptEdit)
|
|
|
|
|
tc = ptEdit->textCursor();
|
|
|
|
|
QString exp;
|
|
|
|
|
if (tc.hasSelection()) {
|
|
|
|
|
exp = tc.selectedText();
|
|
|
|
|
} else {
|
|
|
|
|
int line, column;
|
|
|
|
|
exp = cppExpressionAt(textEditor, tc.position(), &line, &column);
|
|
|
|
|
}
|
2010-06-23 14:11:52 +02:00
|
|
|
if (exp.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
watchHandler()->watchExpression(exp);
|
2010-06-22 18:30:18 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-22 15:14:44 +02:00
|
|
|
// Called from RunControl.
|
|
|
|
|
void DebuggerEngine::handleFinished()
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
|
|
|
|
modulesHandler()->removeAll();
|
|
|
|
|
stackHandler()->removeAll();
|
|
|
|
|
threadsHandler()->removeAll();
|
|
|
|
|
watchHandler()->cleanup();
|
2010-06-22 15:14:44 +02:00
|
|
|
|
|
|
|
|
DebuggerEngine *sessionTemplate = plugin()->sessionTemplate();
|
2010-06-22 15:37:27 +02:00
|
|
|
QTC_ASSERT(sessionTemplate != this, /**/);
|
|
|
|
|
breakHandler()->storeToTemplate(sessionTemplate->breakHandler());
|
2010-06-25 09:53:23 +02:00
|
|
|
watchHandler()->storeToTemplate(sessionTemplate->watchHandler());
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DebuggerStartParameters &DebuggerEngine::startParameters() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_startParameters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerStartParameters &DebuggerEngine::startParameters()
|
|
|
|
|
{
|
|
|
|
|
return d->m_startParameters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Dumpers. "Custom dumpers" are a library compiled against the current
|
|
|
|
|
// Qt containing functions to evaluate values of Qt classes
|
|
|
|
|
// (such as QString, taking pointers to their addresses).
|
|
|
|
|
// The library must be loaded into the debuggee.
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
bool DebuggerEngine::qtDumperLibraryEnabled() const
|
|
|
|
|
{
|
|
|
|
|
return theDebuggerBoolSetting(UseDebuggingHelpers);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList DebuggerEngine::qtDumperLibraryLocations() const
|
|
|
|
|
{
|
|
|
|
|
if (theDebuggerAction(UseCustomDebuggingHelperLocation)->value().toBool()) {
|
|
|
|
|
const QString customLocation =
|
|
|
|
|
theDebuggerAction(CustomDebuggingHelperLocation)->value().toString();
|
|
|
|
|
const QString location =
|
|
|
|
|
tr("%1 (explicitly set in the Debugger Options)").arg(customLocation);
|
|
|
|
|
return QStringList(location);
|
|
|
|
|
}
|
|
|
|
|
return d->m_startParameters.dumperLibraryLocations;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::showQtDumperLibraryWarning(const QString &details)
|
|
|
|
|
{
|
|
|
|
|
//QMessageBox dialog(d->m_mainWindow); // FIXME
|
|
|
|
|
QMessageBox dialog;
|
|
|
|
|
QPushButton *qtPref = dialog.addButton(tr("Open Qt preferences"),
|
|
|
|
|
QMessageBox::ActionRole);
|
|
|
|
|
QPushButton *helperOff = dialog.addButton(tr("Turn off helper usage"),
|
|
|
|
|
QMessageBox::ActionRole);
|
|
|
|
|
QPushButton *justContinue = dialog.addButton(tr("Continue anyway"),
|
|
|
|
|
QMessageBox::AcceptRole);
|
|
|
|
|
dialog.setDefaultButton(justContinue);
|
|
|
|
|
dialog.setWindowTitle(tr("Debugging helper missing"));
|
|
|
|
|
dialog.setText(tr("The debugger could not load the debugging helper library."));
|
|
|
|
|
dialog.setInformativeText(tr(
|
|
|
|
|
"The debugging helper is used to nicely format the values of some Qt "
|
|
|
|
|
"and Standard Library data types. "
|
|
|
|
|
"It must be compiled for each used Qt version separately. "
|
|
|
|
|
"This can be done in the Qt preferences page by selecting a Qt installation "
|
|
|
|
|
"and clicking on 'Rebuild' in the 'Debugging Helper' row."));
|
|
|
|
|
if (!details.isEmpty())
|
|
|
|
|
dialog.setDetailedText(details);
|
|
|
|
|
dialog.exec();
|
|
|
|
|
if (dialog.clickedButton() == qtPref) {
|
|
|
|
|
Core::ICore::instance()->showOptionsDialog(
|
|
|
|
|
_(Qt4ProjectManager::Constants::QT_SETTINGS_CATEGORY),
|
|
|
|
|
_(Qt4ProjectManager::Constants::QTVERSION_SETTINGS_PAGE_ID));
|
|
|
|
|
} else if (dialog.clickedButton() == helperOff) {
|
|
|
|
|
theDebuggerAction(UseDebuggingHelpers)
|
|
|
|
|
->setValue(qVariantFromValue(false), false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString DebuggerEngine::qtDumperLibraryName() const
|
|
|
|
|
{
|
|
|
|
|
if (theDebuggerAction(UseCustomDebuggingHelperLocation)->value().toBool())
|
|
|
|
|
return theDebuggerAction(CustomDebuggingHelperLocation)->value().toString();
|
|
|
|
|
return startParameters().dumperLibrary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerState DebuggerEngine::state() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_state;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
DebuggerState DebuggerEngine::lastGoodState() const
|
2010-06-16 11:08:54 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
return d->m_lastGoodState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerState DebuggerEngine::targetState() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_targetState;
|
|
|
|
|
}
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
static bool isAllowedTransition(DebuggerState from, DebuggerState to)
|
|
|
|
|
{
|
|
|
|
|
switch (from) {
|
2010-06-16 11:08:54 +02:00
|
|
|
case DebuggerNotReady:
|
2010-07-12 15:34:05 +02:00
|
|
|
return to == EngineSetupRequested;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
case EngineSetupRequested:
|
2010-07-09 08:48:33 +02:00
|
|
|
return to == EngineSetupOk || to == EngineSetupFailed;
|
|
|
|
|
case EngineSetupFailed:
|
2010-07-12 15:34:05 +02:00
|
|
|
return to == DebuggerFinished;
|
2010-07-09 08:48:33 +02:00
|
|
|
case EngineSetupOk:
|
2010-07-09 17:07:59 +02:00
|
|
|
return to == InferiorSetupRequested || to == EngineShutdownRequested;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
case InferiorSetupRequested:
|
|
|
|
|
return to == EngineRunRequested || to == InferiorSetupFailed;
|
2010-07-08 18:10:50 +02:00
|
|
|
case InferiorSetupFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
return to == EngineShutdownRequested;
|
|
|
|
|
|
|
|
|
|
case EngineRunRequested:
|
|
|
|
|
return to == InferiorRunRequested || to == InferiorStopRequested
|
|
|
|
|
|| to == InferiorUnrunnable || to == EngineRunFailed;
|
|
|
|
|
|
|
|
|
|
case EngineRunFailed:
|
|
|
|
|
return to == InferiorShutdownRequested;
|
|
|
|
|
|
|
|
|
|
case InferiorRunRequested:
|
|
|
|
|
return to == InferiorRunOk || to == InferiorRunFailed;
|
|
|
|
|
case InferiorRunFailed:
|
|
|
|
|
return to == InferiorStopOk;
|
|
|
|
|
case InferiorRunOk:
|
|
|
|
|
return to == InferiorStopRequested || to == InferiorStopOk;
|
|
|
|
|
|
|
|
|
|
case InferiorStopRequested:
|
|
|
|
|
return to == InferiorStopOk || to == InferiorStopFailed;
|
|
|
|
|
case InferiorStopOk:
|
|
|
|
|
return to == InferiorRunRequested || to == InferiorShutdownRequested
|
|
|
|
|
|| to == InferiorStopOk;
|
2010-06-16 11:08:54 +02:00
|
|
|
case InferiorStopFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
return to == EngineShutdownRequested;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
|
|
|
|
case InferiorUnrunnable:
|
2010-07-09 17:07:59 +02:00
|
|
|
return to == InferiorShutdownRequested;
|
|
|
|
|
case InferiorShutdownRequested:
|
|
|
|
|
return to == InferiorShutdownOk || to == InferiorShutdownFailed;
|
|
|
|
|
case InferiorShutdownOk:
|
|
|
|
|
return to == EngineShutdownRequested;
|
2010-06-16 11:08:54 +02:00
|
|
|
case InferiorShutdownFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
return to == EngineShutdownRequested;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
case EngineShutdownRequested:
|
|
|
|
|
return to == EngineShutdownOk;
|
|
|
|
|
case EngineShutdownOk:
|
|
|
|
|
return to == DebuggerFinished;
|
|
|
|
|
case EngineShutdownFailed:
|
|
|
|
|
return to == DebuggerFinished;
|
|
|
|
|
|
|
|
|
|
case DebuggerFinished:
|
|
|
|
|
return false;
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qDebug() << "UNKNOWN STATE:" << from;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 08:48:33 +02:00
|
|
|
void DebuggerEngine::notifyEngineSetupFailed()
|
2010-07-08 18:10:50 +02:00
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE SETUP FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
2010-07-09 08:48:33 +02:00
|
|
|
setState(EngineSetupFailed);
|
2010-07-08 18:10:50 +02:00
|
|
|
d->m_runControl->startFailed();
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-08 18:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-09 08:48:33 +02:00
|
|
|
void DebuggerEngine::notifyEngineSetupOk()
|
2010-07-08 14:26:35 +02:00
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE SETUP OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
2010-07-09 08:48:33 +02:00
|
|
|
setState(EngineSetupOk);
|
2010-07-08 18:10:50 +02:00
|
|
|
d->m_runControl->startSuccessful();
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("QUEUE: SETUP INFERIOR"));
|
2010-07-08 18:10:50 +02:00
|
|
|
QTimer::singleShot(0, d, SLOT(doSetupInferior()));
|
2010-07-08 14:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-08 18:10:50 +02:00
|
|
|
void DebuggerEnginePrivate::doSetupInferior()
|
2010-07-08 14:26:35 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupOk, qDebug() << state());
|
|
|
|
|
m_engine->setState(InferiorSetupRequested);
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("CALL: SETUP INFERIOR"));
|
2010-07-08 18:10:50 +02:00
|
|
|
m_engine->setupInferior();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorSetupFailed()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR SETUP FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorSetupRequested, qDebug() << state());
|
2010-07-08 18:10:50 +02:00
|
|
|
setState(InferiorSetupFailed);
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-08 18:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorSetupOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR SETUP OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorSetupRequested, qDebug() << state());
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueRunEngine();
|
2010-07-08 18:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::doRunEngine()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("CALL: RUN ENGINE"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
2010-07-08 18:10:50 +02:00
|
|
|
m_engine->runEngine();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void DebuggerEngine::notifyInferiorUnrunnable()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR UNRUNNABLE"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorUnrunnable);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineRunFailed()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE RUN FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
SDEBUG(Q_FUNC_INFO);
|
|
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
|
|
|
|
setState(EngineRunFailed);
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownInferior();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineRunAndInferiorRunOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE RUN AND INFERIOR RUN OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorRunRequested);
|
|
|
|
|
notifyInferiorRunOk();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineRunAndInferiorStopOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE RUN AND INFERIOR STOP OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorStopRequested);
|
|
|
|
|
notifyInferiorStopOk();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorRunRequested()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR RUN REQUESTED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorStopOk, qDebug() << state());
|
|
|
|
|
setState(InferiorRunRequested);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorRunOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR RUN OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorRunRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorRunOk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorRunFailed()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR RUN FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorRunRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorRunFailed);
|
|
|
|
|
setState(InferiorStopOk);
|
2010-07-13 08:41:27 +02:00
|
|
|
if (isDying())
|
|
|
|
|
d->queueShutdownInferior();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorStopOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR STOP OK"));
|
|
|
|
|
// Ignore spurious notifications after we are set to die.
|
2010-07-09 17:07:59 +02:00
|
|
|
if (isDying()) {
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ... WHILE DYING. "));
|
|
|
|
|
// Forward state to "StopOk" if needed.
|
|
|
|
|
if (state() == InferiorStopRequested
|
|
|
|
|
|| state() == InferiorRunRequested
|
|
|
|
|
|| state() == InferiorRunOk) {
|
|
|
|
|
showMessage(_("NOTE: ... FORWARDING TO 'STOP OK'. "));
|
|
|
|
|
setState(InferiorStopOk);
|
|
|
|
|
}
|
|
|
|
|
if (state() == InferiorStopOk || state() == InferiorStopFailed) {
|
|
|
|
|
d->queueShutdownInferior();
|
|
|
|
|
}
|
|
|
|
|
showMessage(_("NOTE: ... IGNORING STOP MESSAGE"));
|
|
|
|
|
return;
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
2010-07-13 08:41:27 +02:00
|
|
|
QTC_ASSERT(state() == InferiorStopRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorStopOk);
|
2010-07-08 18:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void DebuggerEngine::notifyInferiorSpontaneousStop()
|
2010-07-09 08:48:33 +02:00
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR SPONTANEOUES STOP"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorRunOk, qDebug() << state());
|
|
|
|
|
setState(InferiorStopOk);
|
2010-07-09 08:48:33 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void DebuggerEngine::notifyInferiorStopFailed()
|
2010-07-09 08:48:33 +02:00
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR STOP FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorStopRequested, qDebug() << state());
|
|
|
|
|
setState(InferiorStopFailed);
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-09 08:48:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::doInterruptInferior()
|
|
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorRunOk, qDebug() << state());
|
|
|
|
|
m_engine->setState(InferiorStopRequested);
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("CALL: INTERRUPT INFERIOR"));
|
2010-07-09 08:48:33 +02:00
|
|
|
m_engine->interruptInferior();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void DebuggerEnginePrivate::doShutdownInferior()
|
|
|
|
|
{
|
|
|
|
|
m_engine->resetLocation();
|
|
|
|
|
m_targetState = DebuggerFinished;
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("CALL: SHUTDOWN INFERIOR"));
|
2010-07-09 17:07:59 +02:00
|
|
|
m_engine->shutdownInferior();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorShutdownOk()
|
|
|
|
|
{
|
|
|
|
|
showMessage(_("INFERIOR SUCCESSFULLY SHUT DOWN"));
|
2010-07-13 08:41:27 +02:00
|
|
|
QTC_ASSERT(state() == InferiorShutdownRequested, qDebug() << state());
|
2010-07-09 17:07:59 +02:00
|
|
|
d->m_lastGoodState = DebuggerNotReady; // A "neutral" value.
|
|
|
|
|
setState(InferiorShutdownOk);
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorShutdownFailed()
|
|
|
|
|
{
|
|
|
|
|
showMessage(_("INFERIOR SHUTDOWN FAILED"));
|
2010-07-13 08:41:27 +02:00
|
|
|
QTC_ASSERT(state() == InferiorShutdownRequested, qDebug() << state());
|
2010-07-09 17:07:59 +02:00
|
|
|
setState(InferiorShutdownFailed);
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorIll()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR ILL"));
|
2010-07-09 17:07:59 +02:00
|
|
|
// This can be issued in almost any state. The inferior could still be
|
|
|
|
|
// alive as some previous notifications might have been bogus.
|
|
|
|
|
d->m_targetState = DebuggerFinished;
|
|
|
|
|
d->m_lastGoodState = d->m_state;
|
|
|
|
|
if (state() == InferiorRunRequested) {
|
|
|
|
|
// We asked for running, but did not see a response.
|
|
|
|
|
// Assume the inferior is dead.
|
|
|
|
|
// FIXME: Use timeout?
|
|
|
|
|
setState(InferiorRunFailed);
|
|
|
|
|
setState(InferiorStopOk);
|
|
|
|
|
}
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownInferior();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::doShutdownEngine()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
QTC_ASSERT(state() == EngineShutdownRequested, qDebug() << state());
|
2010-07-09 17:07:59 +02:00
|
|
|
m_targetState = DebuggerFinished;
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("CALL: SHUTDOWN ENGINE"));
|
2010-07-09 17:07:59 +02:00
|
|
|
m_engine->shutdownEngine();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineShutdownOk()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE SHUTDOWN OK"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineShutdownRequested, qDebug() << state());
|
|
|
|
|
setState(EngineShutdownOk);
|
|
|
|
|
QTimer::singleShot(0, d, SLOT(doFinishDebugger()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineShutdownFailed()
|
2010-07-08 18:10:50 +02:00
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE SHUTDOWN FAILED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineShutdownRequested, qDebug() << state());
|
|
|
|
|
setState(EngineShutdownFailed);
|
|
|
|
|
QTimer::singleShot(0, d, SLOT(doFinishDebugger()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEnginePrivate::doFinishDebugger()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
m_engine->showMessage(_("NOTE: FINISH DEBUGGER"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineShutdownOk
|
|
|
|
|
|| state() == EngineShutdownFailed, qDebug() << state());
|
|
|
|
|
m_engine->resetLocation();
|
|
|
|
|
m_engine->setState(DebuggerFinished);
|
|
|
|
|
m_runControl->debuggingFinished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineIll()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE ILL ******"));
|
2010-07-09 17:07:59 +02:00
|
|
|
d->m_targetState = DebuggerFinished;
|
|
|
|
|
d->m_lastGoodState = d->m_state;
|
2010-07-13 08:41:27 +02:00
|
|
|
switch (state()) {
|
|
|
|
|
case InferiorRunRequested:
|
|
|
|
|
case InferiorRunOk:
|
|
|
|
|
case InferiorStopRequested:
|
|
|
|
|
case InferiorStopOk:
|
|
|
|
|
qDebug() << "FORWARDING STATE TO " << InferiorShutdownFailed;
|
|
|
|
|
setState(InferiorShutdownFailed, true);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
2010-07-13 08:41:27 +02:00
|
|
|
d->queueShutdownEngine();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyEngineSpontaneousShutdown()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: ENGINE SPONTANEOUS SHUTDOWN"));
|
|
|
|
|
d->queueFinishDebugger();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorExited()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("NOTE: INFERIOR EXITED"));
|
2010-07-09 17:07:59 +02:00
|
|
|
resetLocation();
|
|
|
|
|
|
|
|
|
|
// This can be issued in almost any state. We assume, though,
|
|
|
|
|
// that at this point of time the inferior is not running anymore,
|
|
|
|
|
// even if stop notification were not issued or got lost.
|
|
|
|
|
if (state() == InferiorRunOk) {
|
|
|
|
|
setState(InferiorStopRequested);
|
|
|
|
|
setState(InferiorStopOk);
|
|
|
|
|
}
|
|
|
|
|
setState(InferiorShutdownRequested);
|
|
|
|
|
setState(InferiorShutdownOk);
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage(_("QUEUE: SHUTDOWN ENGINE"));
|
2010-07-09 17:07:59 +02:00
|
|
|
QTimer::singleShot(0, d, SLOT(doShutdownEngine()));
|
2010-07-08 14:26:35 +02:00
|
|
|
}
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
void DebuggerEngine::setState(DebuggerState state, bool forced)
|
|
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
SDEBUG(Q_FUNC_INFO);
|
|
|
|
|
qDebug() << "STATUS CHANGE: FROM " << stateName(d->m_state)
|
|
|
|
|
<< " TO " << stateName(state);
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-06-23 14:11:52 +02:00
|
|
|
DebuggerState oldState = d->m_state;
|
|
|
|
|
d->m_state = state;
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
QString msg = _("State changed%5 from %1(%2) to %3(%4).")
|
|
|
|
|
.arg(stateName(oldState)).arg(oldState).arg(stateName(state)).arg(state)
|
|
|
|
|
.arg(forced ? " BY FORCE" : "");
|
2010-06-23 14:11:52 +02:00
|
|
|
if (!forced && !isAllowedTransition(oldState, state))
|
2010-06-16 11:08:54 +02:00
|
|
|
qDebug() << "UNEXPECTED STATE TRANSITION: " << msg;
|
|
|
|
|
|
|
|
|
|
showMessage(msg, LogDebug);
|
|
|
|
|
plugin()->updateState(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DebuggerEngine::debuggerActionsEnabled() const
|
|
|
|
|
{
|
|
|
|
|
return debuggerActionsEnabled(d->m_state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DebuggerEngine::debuggerActionsEnabled(DebuggerState state)
|
|
|
|
|
{
|
|
|
|
|
switch (state) {
|
2010-07-09 17:07:59 +02:00
|
|
|
case InferiorSetupRequested:
|
|
|
|
|
case InferiorRunOk:
|
2010-06-16 11:08:54 +02:00
|
|
|
case InferiorUnrunnable:
|
2010-07-09 17:07:59 +02:00
|
|
|
case InferiorStopOk:
|
2010-06-16 11:08:54 +02:00
|
|
|
return true;
|
2010-07-09 17:07:59 +02:00
|
|
|
case InferiorStopRequested:
|
|
|
|
|
case InferiorRunRequested:
|
|
|
|
|
case InferiorRunFailed:
|
2010-06-16 11:08:54 +02:00
|
|
|
case DebuggerNotReady:
|
2010-07-09 17:07:59 +02:00
|
|
|
case EngineSetupRequested:
|
2010-07-09 08:48:33 +02:00
|
|
|
case EngineSetupOk:
|
|
|
|
|
case EngineSetupFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
case EngineRunRequested:
|
|
|
|
|
case EngineRunFailed:
|
2010-07-08 18:10:50 +02:00
|
|
|
case InferiorSetupFailed:
|
2010-06-16 11:08:54 +02:00
|
|
|
case InferiorStopFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
case InferiorShutdownRequested:
|
|
|
|
|
case InferiorShutdownOk:
|
2010-06-16 11:08:54 +02:00
|
|
|
case InferiorShutdownFailed:
|
2010-07-09 17:07:59 +02:00
|
|
|
case EngineShutdownRequested:
|
|
|
|
|
case EngineShutdownOk:
|
|
|
|
|
case EngineShutdownFailed:
|
|
|
|
|
case DebuggerFinished:
|
2010-07-08 18:10:50 +02:00
|
|
|
return false;
|
2010-06-16 11:08:54 +02:00
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::notifyInferiorPid(qint64 pid)
|
|
|
|
|
{
|
|
|
|
|
if (d->m_inferiorPid == pid)
|
|
|
|
|
return;
|
|
|
|
|
d->m_inferiorPid = pid;
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(raiseApplication()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qint64 DebuggerEngine::inferiorPid() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_inferiorPid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DebuggerPlugin *DebuggerEngine::plugin() const
|
|
|
|
|
{
|
|
|
|
|
return DebuggerPlugin::instance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::raiseApplication()
|
|
|
|
|
{
|
|
|
|
|
d->m_runControl->bringApplicationToForeground(d->m_inferiorPid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DebuggerEngine::openFile(const QString &fileName, int lineNumber)
|
|
|
|
|
{
|
|
|
|
|
plugin()->gotoLocation(fileName, lineNumber, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DebuggerEngine::isReverseDebugging() const
|
|
|
|
|
{
|
|
|
|
|
return plugin()->isReverseDebugging();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
// called by DebuggerRunControl
|
|
|
|
|
void DebuggerEngine::quitDebugger()
|
|
|
|
|
{
|
2010-07-13 08:41:27 +02:00
|
|
|
showMessage("QUIT DEBUGGER REQUESTED");
|
2010-07-09 17:07:59 +02:00
|
|
|
shutdownInferior();
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|
2010-06-25 16:06:48 +02:00
|
|
|
|
|
|
|
|
#include "debuggerengine.moc"
|