1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* GDB Debugger Support
*
* Copyright 2007 Hamish Rodda <rodda@kde.org>
* Copyright 2008 Vladimir Prus <ghost@cs.msu.su>
* Copyright 2009 Niko Sams <niko.sams@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "variablecontroller.h"
#include <debugger/variable/variablecollection.h>
#include <debugger/breakpoint/breakpointmodel.h>
#include <interfaces/icore.h>
#include <interfaces/idebugcontroller.h>
#include <debugger/interfaces/iframestackmodel.h>
#include "gdbcommand.h"
#include "debugsession.h"
#include "stringhelpers.h"
#include "gdbvariable.h"
using namespace GDBDebugger;
using namespace KDevelop;
VariableController::VariableController(DebugSession* parent)
: KDevelop::IVariableController(parent)
{
Q_ASSERT(parent);
connect(parent, SIGNAL(programStopped(GDBMI::ResultRecord)), SLOT(programStopped(GDBMI::ResultRecord)));
}
DebugSession *VariableController::debugSession() const
{
return static_cast<DebugSession*>(const_cast<QObject*>(QObject::parent()));
}
void VariableController::programStopped(const GDBMI::ResultRecord& r)
{
if (debugSession()->stateIsOn(s_shuttingDown)) return;
if (r.hasField("reason") && r["reason"].literal() == "function-finished"
&& r.hasField("gdb-result-var"))
{
variableCollection()->watches()->addFinishResult(r["gdb-result-var"].literal());
} else {
variableCollection()->watches()->removeFinishResult();
}
}
void VariableController::update()
{
if (autoUpdate() & UpdateWatches) {
variableCollection()->watches()->reinstall();
}
// if (autoUpdate() & UpdateLocals) {
updateLocals();
// }
// if ((autoUpdate() & UpdateLocals) ||
// ((autoUpdate() & UpdateWatches) && variableCollection()->watches()->childCount() > 0))
{
debugSession()->addCommand(
new GDBCommand(GDBMI::VarUpdate, "--all-values *", this,
&VariableController::handleVarUpdate));
}
}
void VariableController::handleVarUpdate(const GDBMI::ResultRecord& r)
{
const GDBMI::Value& changed = r["changelist"];
for (int i = 0; i < changed.size(); ++i)
{
const GDBMI::Value& var = changed[i];
GdbVariable* v = GdbVariable::findByVarobjName(var["name"].literal());
// v can be NULL here if we've already removed locals after step,
// but the corresponding -var-delete command is still in the queue.
if (v) {
v->handleUpdate(var);
}
}
}
class StackListArgumentsHandler : public GDBCommandHandler
{
public:
StackListArgumentsHandler(QStringList localsName)
: m_localsName(localsName)
{}
virtual void handle(const GDBMI::ResultRecord &r)
{
if (!KDevelop::ICore::self()->debugController()) return; //happens on shutdown
// FIXME: handle error.
const GDBMI::Value& locals = r["stack-args"][0]["args"];
for (int i = 0; i < locals.size(); i++) {
m_localsName << locals[i].literal();
}
QList<Variable*> variables = KDevelop::ICore::self()->debugController()->variableCollection()
->locals()->updateLocals(m_localsName);
foreach (Variable *v, variables) {
v->attachMaybe();
}
}
private:
QStringList m_localsName;
};
class StackListLocalsHandler : public GDBCommandHandler
{
public:
StackListLocalsHandler(DebugSession *session)
: m_session(session)
{}
virtual void handle(const GDBMI::ResultRecord &r)
{
// FIXME: handle error.
const GDBMI::Value& locals = r["locals"];
QStringList localsName;
for (int i = 0; i < locals.size(); i++) {
const GDBMI::Value& var = locals[i];
localsName << var["name"].literal();
}
int frame = m_session->frameStackModel()->currentFrame();
m_session->addCommand( //dont'show value, low-frame, high-frame
new GDBCommand(GDBMI::StackListArguments, QString("0 %1 %2").arg(frame).arg(frame),
new StackListArgumentsHandler(localsName)));
}
private:
DebugSession *m_session;
};
void VariableController::updateLocals()
{
debugSession()->addCommand(
new GDBCommand(GDBMI::StackListLocals, "--simple-values",
new StackListLocalsHandler(debugSession())));
}
QString VariableController::expressionUnderCursor(KTextEditor::Document* doc, const KTextEditor::Cursor& cursor)
{
QString line = doc->line(cursor.line());
int index = cursor.column();
QChar c = line[index];
if (!c.isLetterOrNumber() && c != '_')
return QString();
int start = Utils::expressionAt(line, index+1);
int end = index;
for (; end < line.size(); ++end)
{
QChar c = line[end];
if (!(c.isLetterOrNumber() || c == '_'))
break;
}
if (!(start < end))
return QString();
QString expression(line.mid(start, end-start));
expression = expression.trimmed();
return expression;
}
void VariableController::addWatch(KDevelop::Variable* variable)
{
// FIXME: should add async 'get full expression' method
// to GdbVariable, not poke at varobj. In that case,
// we will be able to make addWatch a generic method, not
// gdb-specific one.
if (GdbVariable *gv = dynamic_cast<GdbVariable*>(variable))
{
debugSession()->addCommand(
new GDBCommand(GDBMI::VarInfoPathExpression,
gv->varobj(),
this,
&VariableController::addWatch));
}
}
void VariableController::addWatchpoint(KDevelop::Variable* variable)
{
// FIXME: should add async 'get full expression' method
// to GdbVariable, not poke at varobj. In that case,
// we will be able to make addWatchpoint a generic method, not
// gdb-specific one.
if (GdbVariable *gv = dynamic_cast<GdbVariable*>(variable))
{
debugSession()->addCommand(
new GDBCommand(GDBMI::VarInfoPathExpression,
gv->varobj(),
this,
&VariableController::addWatchpoint));
}
}
void VariableController::addWatch(const GDBMI::ResultRecord& r)
{
// FIXME: handle error.
if (r.reason == "done" && !r["path_expr"].literal().isEmpty()) {
variableCollection()->watches()->add(r["path_expr"].literal());
}
}
void VariableController::addWatchpoint(const GDBMI::ResultRecord& r)
{
if (r.reason == "done" && !r["path_expr"].literal().isEmpty()) {
KDevelop::ICore::self()->debugController()->breakpointModel()->addWatchpoint(r["path_expr"].literal());
}
}
KDevelop::Variable* VariableController::
createVariable(TreeModel* model, TreeItem* parent,
const QString& expression, const QString& display)
{
return new GdbVariable(model, parent, expression, display);
}
void VariableController::handleEvent(IDebugSession::event_t event)
{
IVariableController::handleEvent(event);
if (event == IDebugSession::debugger_exited)
GdbVariable::markAllDead();
}
#include "variablecontroller.moc"
|