-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebugsession.cpp
More file actions
493 lines (428 loc) · 15.6 KB
/
Copy pathdebugsession.cpp
File metadata and controls
493 lines (428 loc) · 15.6 KB
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
/*
This file is part of kdev-python, the python language plugin for KDevelop
Copyright (C) 2012 Sven Brauch <svenbrauch@googlemail.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, see <http://www.gnu.org/licenses/>.
*/
#include <QTimer>
#include <QApplication>
#include <KStandardDirs>
#include <KLocalizedString>
#include <signal.h>
#include <debugger/framestack/framestackmodel.h>
#include <interfaces/icore.h>
#include <interfaces/idocumentcontroller.h>
#include "debugsession.h"
#include "pdbframestackmodel.h"
#include "variablecontroller.h"
#include "variable.h"
#include "breakpointcontroller.h"
#include <QDebug>
#include "debuggerdebug.h"
using namespace KDevelop;
static QByteArray debuggerPrompt = "__KDEVPYTHON_DEBUGGER_PROMPT";
static QByteArray debuggerOutputBegin = "__KDEVPYTHON_BEGIN_DEBUGGER_OUTPUT>>>";
static QByteArray debuggerOutputEnd = "<<<__KDEVPYTHON_END___DEBUGGER_OUTPUT";
namespace Python {
KDevelop::IFrameStackModel* DebugSession::createFrameStackModel()
{
return new PdbFrameStackModel(this);
}
DebugSession::DebugSession(QStringList program, const QUrl &workingDirectory) :
IDebugSession()
, m_workingDirectory(workingDirectory)
, m_nextNotifyMethod(0)
, m_inDebuggerData(0)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "creating debug session";
m_variableController = new Python::VariableController(this);
m_breakpointController = new Python::BreakpointController(this);
m_program = program;
m_variableController = new VariableController(this);
}
IVariableController* DebugSession::variableController()
{
return m_variableController;
}
void DebugSession::start()
{
setState(StartingState);
m_debuggerProcess = new KProcess(this);
m_debuggerProcess->setProgram(m_program);
m_debuggerProcess->setOutputChannelMode(KProcess::SeparateChannels);
m_debuggerProcess->blockSignals(true);
m_debuggerProcess->setWorkingDirectory(m_workingDirectory.path());
connect(m_debuggerProcess, SIGNAL(readyReadStandardOutput()), this, SLOT(dataAvailable()));
connect(m_debuggerProcess, SIGNAL(finished(int)), this, SLOT(debuggerQuit(int)));
connect(this, SIGNAL(debuggerReady()), SLOT(checkCommandQueue()));
connect(this, SIGNAL(commandAdded()), SLOT(checkCommandQueue()));
m_debuggerProcess->start();
m_debuggerProcess->waitForStarted();
InternalPdbCommand* path = new InternalPdbCommand(0, 0,
"import sys; sys.path.append('"+KStandardDirs::locate("data", "kdevpythonsupport/debugger/")+"')\n");
InternalPdbCommand* cmd = new InternalPdbCommand(0, 0, "import __kdevpython_debugger_utils\n");
addCommand(path);
addCommand(cmd);
updateLocation();
m_debuggerProcess->blockSignals(false);
}
void DebugSession::debuggerQuit(int )
{
setState(EndedState);
}
QStringList byteArrayToStringList(const QByteArray& r) {
QStringList items;
foreach ( const QByteArray& item, r.split('\n') ) {
items << item.data();
}
if ( r.endsWith('\n') ) {
items.pop_back();
}
return items;
}
void DebugSession::dataAvailable()
{
QByteArray data = m_debuggerProcess->readAllStandardOutput();
qCDebug(KDEV_PYTHON_DEBUGGER) << data.length() << "bytes of data available";
// remove pointless state changes
data.replace(debuggerOutputBegin+debuggerOutputEnd, "");
data.replace(debuggerOutputEnd+debuggerOutputBegin, "");
bool endsWithPrompt = false;
if ( data.endsWith(debuggerPrompt) ) {
endsWithPrompt = true;
// remove the prompt
data = data.mid(0, data.length() - debuggerPrompt.length());
}
// scan the data, and seperate program output from debugger output
int len = data.length();
int delimiterSkip = debuggerOutputEnd.length();
int i = 0;
QByteArray realData;
while ( i < len ) {
int nextChangeAt = data.indexOf(m_inDebuggerData ? debuggerOutputEnd : debuggerOutputBegin, i);
bool atLastChange = nextChangeAt == -1;
nextChangeAt = atLastChange ? len : qMin(nextChangeAt, len);
qCDebug(KDEV_PYTHON_DEBUGGER) << data;
Q_ASSERT(m_inDebuggerData == 0 || m_inDebuggerData == 1);
if ( m_inDebuggerData == 1 ) {
QString newDebuggerData = data.mid(i, nextChangeAt - i);
m_buffer.append(newDebuggerData);
if ( data.indexOf("Uncaught exception. Entering post mortem debugging") != -1 ) {
emit realDataReceived(QStringList() << "*****"
<< " " + i18n("The program being debugged raised an uncaught exception.")
<< " " + i18n("You can now inspect the status of the program after it exited.")
<< " " + i18n("The debugger will silently stop when the next command is triggered.")
<< "*****");
}
}
else if ( m_inDebuggerData == 0 ) {
QByteArray d = data.mid(i, nextChangeAt - i);
if ( d.length() > 0 ) {
realData.append(d);
}
}
i = nextChangeAt + delimiterSkip;
if ( m_inDebuggerData != 1 ) m_inDebuggerData = 1;
else m_inDebuggerData = 0;
if ( atLastChange ) {
break;
}
}
while (int index = realData.indexOf(debuggerPrompt) != -1 ) {
realData.remove(index-1, debuggerPrompt.length());
}
if ( ! realData.isEmpty() ) {
// FIXME this is not very elegant.
QStringList items = byteArrayToStringList(realData);
emit realDataReceived(items);
}
// Although unbuffered, it seems guaranteed that the debugger prompt is written at once.
// I don't think a python statement like print "FooBar" will ever break the output into two parts.
// TODO find explicit documentation for this somewhere.
if ( endsWithPrompt ) {
if ( state() == StartingState ) {
setState(PausedState);
raiseEvent(connected_to_program);
}
else {
notifyNext();
if ( m_commandQueue.isEmpty() ) {
qCDebug(KDEV_PYTHON_DEBUGGER) << "Changing state to PausedState";
setState(PausedState);
}
}
m_processBusy = false;
emit debuggerReady();
}
data = m_debuggerProcess->readAllStandardError();
if ( ! data.isEmpty() ) {
emit stderrReceived(byteArrayToStringList(data));
}
}
void DebugSession::setNotifyNext(QWeakPointer<QObject> object, const char* method)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "set notify next:" << object << method;
m_nextNotifyObject = object;
m_nextNotifyMethod = method;
}
void DebugSession::notifyNext()
{
QSharedPointer<QObject> lock = m_nextNotifyObject.toStrongRef();
qCDebug(KDEV_PYTHON_DEBUGGER) << "notify next:" << m_nextNotifyObject << m_nextNotifyObject.data() << this;
if ( m_nextNotifyMethod && m_nextNotifyObject ) {
QMetaObject::invokeMethod(m_nextNotifyObject.data(), m_nextNotifyMethod, Qt::DirectConnection, Q_ARG(QByteArray, m_buffer));
}
else {
qCDebug(KDEV_PYTHON_DEBUGGER) << "notify called, but nothing to notify!";
}
m_buffer.clear();
m_nextNotifyMethod = 0;
m_nextNotifyObject.clear();
}
void DebugSession::processNextCommand()
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "processing next debugger command in queue";
if ( m_processBusy || m_state == EndedState ) {
qCDebug(KDEV_PYTHON_DEBUGGER) << "process is busy or ended, aborting";
return;
}
m_processBusy = true;
PdbCommand* cmd = m_commandQueue.first();
Q_ASSERT(cmd->type() != PdbCommand::InvalidType);
if ( cmd->type() == PdbCommand::UserType ) {
setState(ActiveState);
}
m_commandQueue.removeFirst();
setNotifyNext(cmd->notifyObject(), cmd->notifyMethod());
cmd->run(this);
qCDebug(KDEV_PYTHON_DEBUGGER) << "command executed, deleting it.";
delete cmd;
if ( ! m_commandQueue.isEmpty() ) {
processNextCommand();
}
}
void DebugSession::setState(DebuggerState state)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "Setting state to" << state;
if ( state == m_state ) {
return;
}
m_state = state;
if ( m_state == EndedState ) {
raiseEvent(debugger_exited);
emit finished();
}
else if ( m_state == ActiveState || m_state == StartingState || m_state == StoppingState ) {
raiseEvent(debugger_busy);
}
else if ( m_state == PausedState ) {
raiseEvent(debugger_ready);
if ( currentUrl().isValid() ) {
emit showStepInSource(currentUrl(), currentLine(), currentAddr());
}
}
qCDebug(KDEV_PYTHON_DEBUGGER) << "debugger state changed to" << m_state;
raiseEvent(program_state_changed);
emit stateChanged(m_state);
}
void DebugSession::write(const QByteArray& cmd)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << " >>> WRITE:" << cmd;
m_debuggerProcess->write(cmd);
}
void DebugSession::stepOut()
{
// TODO this only steps out of functions; use temporary breakpoints for loops maybe?
addSimpleUserCommand("return");
}
void DebugSession::stepOverInstruction()
{
addSimpleUserCommand("next");
}
void DebugSession::stepInto()
{
addSimpleUserCommand("step");
}
void DebugSession::stepIntoInstruction()
{
addSimpleUserCommand("step");
}
void DebugSession::stepOver()
{
addSimpleUserCommand("next");
}
void DebugSession::jumpToCursor()
{
if (KDevelop::IDocument* doc = KDevelop::ICore::self()->documentController()->activeDocument()) {
KTextEditor::Cursor cursor = doc->cursorPosition();
if ( cursor.isValid() ) {
// TODO disable all other breakpoints
addSimpleUserCommand(QString("jump " + QString::number(cursor.line() + 1)).toAscii());
}
}
}
void DebugSession::runToCursor()
{
if (KDevelop::IDocument* doc = KDevelop::ICore::self()->documentController()->activeDocument()) {
KTextEditor::Cursor cursor = doc->cursorPosition();
if ( cursor.isValid() ) {
// TODO disable all other breakpoints
QString temporaryBreakpointLocation = doc->url().path() + ':' + QString::number(cursor.line() + 1);
InternalPdbCommand* temporaryBreakpointCmd = new InternalPdbCommand(0, 0, "tbreak " + temporaryBreakpointLocation + '\n');
addCommand(temporaryBreakpointCmd);
addSimpleInternalCommand("continue");
updateLocation();
}
}
}
void DebugSession::run()
{
addSimpleUserCommand("continue");
}
void DebugSession::interruptDebugger()
{
kill(m_debuggerProcess->pid(), SIGINT);
updateLocation();
setState(PausedState);
}
void DebugSession::addCommand(PdbCommand* cmd)
{
if ( m_state == EndedState || m_state == StoppingState ) {
return;
}
qCDebug(KDEV_PYTHON_DEBUGGER) << " +++ adding command to queue:" << cmd;
m_commandQueue.append(cmd);
if ( cmd->type() == PdbCommand::UserType ) {
// this is queued and will run after the command is executed.
updateLocation();
}
emit commandAdded();
}
void DebugSession::checkCommandQueue()
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "items in queue:" << m_commandQueue.length();
if ( m_commandQueue.isEmpty() ) {
return;
}
processNextCommand();
}
void DebugSession::clearObjectTable()
{
addSimpleInternalCommand("__kdevpython_debugger_utils.cleanup()");
}
void DebugSession::addSimpleUserCommand(const QString& cmd)
{
clearObjectTable();
UserPdbCommand* cmdObject = new UserPdbCommand(0, 0, cmd + '\n');
Q_ASSERT(cmdObject->type() == PdbCommand::UserType);
addCommand(cmdObject);
}
void DebugSession::addSimpleInternalCommand(const QString& cmd)
{
Q_ASSERT( ! cmd.endsWith('\n') );
InternalPdbCommand* cmdObject = new InternalPdbCommand(0, 0, cmd + '\n');
addCommand(cmdObject);
}
void DebugSession::runImmediately(const QString& cmd)
{
Q_ASSERT(cmd.endsWith('\n'));
if ( state() == ActiveState ) {
m_nextNotifyMethod = 0;
m_nextNotifyObject.clear(); // TODO is this correct?
qCDebug(KDEV_PYTHON_DEBUGGER) << "interrupting debugger";
kill(m_debuggerProcess->pid(), SIGINT);
write(cmd.toAscii());
write("continue\n");
updateLocation();
}
else {
addCommand(new InternalPdbCommand(0, 0, cmd));
}
}
void DebugSession::addBreakpoint(Breakpoint* bp)
{
QString location = bp->url().path() + ":" + QString::number(bp->line() + 1);
qCDebug(KDEV_PYTHON_DEBUGGER) << "adding breakpoint" << location;
runImmediately("break " + location + '\n');
}
void DebugSession::removeBreakpoint(Breakpoint* bp)
{
QString location = bp->url().path() + ":" + QString::number(bp->line() + 1);
qCDebug(KDEV_PYTHON_DEBUGGER) << "deleting breakpoint" << location;
runImmediately("clear " + location + '\n');
}
void DebugSession::createVariable(Python::Variable* variable, QObject* callback, const char* callbackMethod)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "asked to create variable";
InternalPdbCommand* cmd = new InternalPdbCommand(variable, "dataFetched",
("print(" + variable->expression() + ")\n").toAscii());
variable->m_notifyCreated = callback;
variable->m_notifyCreatedMethod = callbackMethod;
addCommand(cmd);
}
void DebugSession::clearOutputBuffer()
{
m_buffer.clear();
}
void DebugSession::updateLocation()
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "updating location";
InternalPdbCommand* cmd = new InternalPdbCommand(this, "locationUpdateReady", "where\n");
addCommand(cmd);
}
void DebugSession::locationUpdateReady(QByteArray data) {
qCDebug(KDEV_PYTHON_DEBUGGER) << "Got where information: " << data;
QList<QByteArray> lines = data.split('\n');
if ( lines.length() >= 3 ) {
lines.removeLast(); // prompt
lines.removeLast(); // source line
QString where = lines.last();
// > /bar/baz/foo.py(123)<module>()
QRegExp m("^> (/.*\\.py)\\((\\d*)\\).*$");
m.setMinimal(true);
m.exactMatch(where);
setCurrentPosition(QUrl::fromLocalFile(m.capturedTexts().at(1)), m.capturedTexts().at(2).toInt() - 1 , "<unknown>");
qCDebug(KDEV_PYTHON_DEBUGGER) << "New position: " << m.capturedTexts().at(1) << m.capturedTexts().at(2).toInt() - 1 << m.capturedTexts() << where;
}
}
void DebugSession::stopDebugger()
{
m_commandQueue.clear();
InternalPdbCommand* cmd = new InternalPdbCommand(0, 0, "quit\nquit\n");
addCommand(cmd);
setState(StoppingState);
if ( ! m_debuggerProcess->waitForFinished(200) ) {
m_debuggerProcess->kill();
}
m_commandQueue.clear();
m_nextNotifyMethod = 0;
m_nextNotifyObject.clear();
qCDebug(KDEV_PYTHON_DEBUGGER) << "killed debugger";
setState(IDebugSession::EndedState);
}
DebugSession::~DebugSession()
{
m_debuggerProcess->kill();
}
void DebugSession::restartDebugger()
{
addSimpleUserCommand("run");
}
bool DebugSession::restartAvaliable() const
{
return false;
}
KDevelop::IDebugSession::DebuggerState DebugSession::state() const
{
return m_state;
}
}
#include "debugsession.moc"