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
|
/*
SPDX-FileCopyrightText: 2012 Sven Brauch <svenbrauch@googlemail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "debugjob.h"
#include <interfaces/idebugcontroller.h>
#include <interfaces/icore.h>
#include <interfaces/iplugincontroller.h>
#include <sublime/view.h>
#include <util/processlinemaker.h>
#include <QDebug>
#include <QStandardPaths>
#include "debuggerdebug.h"
namespace Python {
void DebugJob::start()
{
QStringList program;
QString debuggerUrl = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kdevpythonsupport/debugger"), QStandardPaths::LocateDirectory) + QStringLiteral("/kdevpdb.py");
program << m_interpreter << QStringLiteral("-u") << debuggerUrl << m_scriptUrl.toLocalFile() << m_args;
// Inject environment
m_session = new DebugSession(program, m_workingDirectory, m_envProfileName);
setStandardToolView(KDevelop::IOutputView::DebugView);
setBehaviours(KDevelop::IOutputView::Behaviours(KDevelop::IOutputView::AllowUserClose) | KDevelop::IOutputView::AutoScroll);
OutputModel* pyOutputModel = new KDevelop::OutputModel();
pyOutputModel->setFilteringStrategy(OutputModel::ScriptErrorFilter);
setModel(pyOutputModel);
setTitle(m_interpreter + m_scriptUrl.toLocalFile());
setModel(new KDevelop::OutputModel(nullptr));
startOutput();
qCDebug(KDEV_PYTHON_DEBUGGER) << "connecting standardOutputReceived";
connect(m_session, &DebugSession::realDataReceived, this, &DebugJob::standardOutputReceived);
connect(m_session, &DebugSession::stderrReceived, this, &DebugJob::standardErrorReceived);
connect(m_session, &KDevelop::IDebugSession::finished, this, &DebugJob::sessionFinished);
KDevelop::ICore::self()->debugController()->addSession(m_session);
m_session->start();
qCDebug(KDEV_PYTHON_DEBUGGER) << "starting program:" << program;
}
void DebugJob::sessionFinished()
{
emitResult();
}
void DebugJob::standardErrorReceived(QStringList lines)
{
if ( OutputModel* m = outputModel() ) {
m->appendLines(lines);
}
}
void DebugJob::standardOutputReceived(QStringList lines)
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "standard output received:" << lines << outputModel();
if ( OutputModel* m = outputModel() ) {
m->appendLines(lines);
}
}
OutputModel* DebugJob::outputModel()
{
return dynamic_cast<OutputModel*>(model());
}
bool DebugJob::doKill()
{
qCDebug(KDEV_PYTHON_DEBUGGER) << "kill signal received";
m_session->stopDebugger();
return true;
}
DebugJob::DebugJob()
{
}
DebugJob::~DebugJob()
{
}
}
#include "moc_debugjob.cpp"
|