Skip to content
Snippets Groups Projects
Commit 04a15daa authored by Friedemann Kleint's avatar Friedemann Kleint Committed by unknown
Browse files

Fixes: Compilation/start on handling console processes.

parent 5dc74a98
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,8 @@ ...@@ -45,6 +45,8 @@
#include <QtCore/QDir> #include <QtCore/QDir>
#include <QtCore/QLibrary> #include <QtCore/QLibrary>
#include <QtCore/QCoreApplication> #include <QtCore/QCoreApplication>
#include <QtGui/QMessageBox>
#include <QtGui/QMainWindow>
#define DBGHELP_TRANSLATE_TCHAR #define DBGHELP_TRANSLATE_TCHAR
#include <inc/Dbghelp.h> #include <inc/Dbghelp.h>
...@@ -218,6 +220,10 @@ CdbDebugEngine::CdbDebugEngine(DebuggerManager *parent) : ...@@ -218,6 +220,10 @@ CdbDebugEngine::CdbDebugEngine(DebuggerManager *parent) :
IDebuggerEngine(parent), IDebuggerEngine(parent),
m_d(new CdbDebugEnginePrivate(parent, this)) m_d(new CdbDebugEnginePrivate(parent, this))
{ {
// m_d->m_consoleStubProc.setDebug(true);
connect(&m_d->m_consoleStubProc, SIGNAL(processError(QString)), this, SLOT(slotConsoleStubError(QString)));
connect(&m_d->m_consoleStubProc, SIGNAL(processStarted()), this, SLOT(slotConsoleStubStarted()));
connect(&m_d->m_consoleStubProc, SIGNAL(wrapperStopped()), this, SLOT(slotConsoleStubTerminated()));
} }
CdbDebugEngine::~CdbDebugEngine() CdbDebugEngine::~CdbDebugEngine()
...@@ -260,14 +266,24 @@ bool CdbDebugEngine::startDebugger() ...@@ -260,14 +266,24 @@ bool CdbDebugEngine::startDebugger()
QString errorMessage; QString errorMessage;
bool rc = false; bool rc = false;
m_d->m_bIgnoreNextDebugEvent = false; m_d->m_bIgnoreNextDebugEvent = false;
m_d->m_mode = m_d->m_debuggerManager->startMode(); const DebuggerStartMode mode = m_d->m_debuggerManager->startMode();
switch (m_d->m_mode) { switch (mode) {
case AttachExternal: case AttachExternal:
rc = startAttachDebugger(m_d->m_debuggerManager->m_attachedPID, &errorMessage); rc = startAttachDebugger(m_d->m_debuggerManager->m_attachedPID, &errorMessage);
break; break;
case StartInternal: case StartInternal:
case StartExternal: case StartExternal:
rc = startDebuggerWithExecutable(&errorMessage); if (m_d->m_debuggerManager->m_useTerminal) {
// Launch console stub and wait for its startup
m_d->m_consoleStubProc.stop(); // We leave the console open, so recycle it now.
m_d->m_consoleStubProc.setWorkingDirectory(m_d->m_debuggerManager->m_workingDir);
m_d->m_consoleStubProc.setEnvironment(m_d->m_debuggerManager->m_environment);
rc = m_d->m_consoleStubProc.start(m_d->m_debuggerManager->m_executable, m_d->m_debuggerManager->m_processArgs);
if (!rc)
errorMessage = tr("The console stub process was unable to start '%1'.").arg(m_d->m_debuggerManager->m_executable);
} else {
rc = startDebuggerWithExecutable(mode, &errorMessage);
}
break; break;
case AttachCore: case AttachCore:
errorMessage = tr("CdbDebugEngine: Attach to core not supported!"); errorMessage = tr("CdbDebugEngine: Attach to core not supported!");
...@@ -282,7 +298,7 @@ bool CdbDebugEngine::startDebugger() ...@@ -282,7 +298,7 @@ bool CdbDebugEngine::startDebugger()
return rc; return rc;
} }
bool CdbDebugEngine::startAttachDebugger(unsigned long pid, QString *errorMessage) bool CdbDebugEngine::startAttachDebugger(qint64 pid, QString *errorMessage)
{ {
// Need to aatrach invasively, otherwise, no notification signals // Need to aatrach invasively, otherwise, no notification signals
// for for CreateProcess/ExitProcess occur. // for for CreateProcess/ExitProcess occur.
...@@ -293,11 +309,13 @@ bool CdbDebugEngine::startAttachDebugger(unsigned long pid, QString *errorMessag ...@@ -293,11 +309,13 @@ bool CdbDebugEngine::startAttachDebugger(unsigned long pid, QString *errorMessag
if (FAILED(hr)) { if (FAILED(hr)) {
*errorMessage = tr("AttachProcess failed for pid %1: %2").arg(pid).arg(msgDebugEngineComResult(hr)); *errorMessage = tr("AttachProcess failed for pid %1: %2").arg(pid).arg(msgDebugEngineComResult(hr));
return false; return false;
} else {
m_d->m_mode = AttachExternal;
} }
return true; return true;
} }
bool CdbDebugEngine::startDebuggerWithExecutable(QString *errorMessage) bool CdbDebugEngine::startDebuggerWithExecutable(DebuggerStartMode sm, QString *errorMessage)
{ {
m_d->m_debuggerManager->showStatusMessage("Starting Debugger", -1); m_d->m_debuggerManager->showStatusMessage("Starting Debugger", -1);
...@@ -335,6 +353,8 @@ bool CdbDebugEngine::startDebuggerWithExecutable(QString *errorMessage) ...@@ -335,6 +353,8 @@ bool CdbDebugEngine::startDebuggerWithExecutable(QString *errorMessage)
*errorMessage = tr("CreateProcess2Wide failed for '%1': %2").arg(cmd, msgDebugEngineComResult(hr)); *errorMessage = tr("CreateProcess2Wide failed for '%1': %2").arg(cmd, msgDebugEngineComResult(hr));
m_d->m_debuggerManagerAccess->notifyInferiorExited(); m_d->m_debuggerManagerAccess->notifyInferiorExited();
return false; return false;
} else {
m_d->m_mode = sm;
} }
m_d->m_debuggerManagerAccess->notifyInferiorRunning(); m_d->m_debuggerManagerAccess->notifyInferiorRunning();
return true; return true;
...@@ -790,6 +810,31 @@ void CdbDebugEngine::timerEvent(QTimerEvent* te) ...@@ -790,6 +810,31 @@ void CdbDebugEngine::timerEvent(QTimerEvent* te)
} }
} }
void CdbDebugEngine::slotConsoleStubStarted()
{
const qint64 appPid = m_d->m_consoleStubProc.applicationPID();
if (debugCDB)
qDebug() << Q_FUNC_INFO << appPid;
// Attach to console process
QString errorMessage;
if (startAttachDebugger(appPid, &errorMessage)) {
m_d->m_debuggerManager->m_attachedPID = appPid;
m_d->m_debuggerManagerAccess->notifyInferiorPidChanged(appPid);
} else {
QMessageBox::critical(m_d->m_debuggerManager->mainWindow(), tr("Debugger Error"), errorMessage);
}
}
void CdbDebugEngine::slotConsoleStubError(const QString &msg)
{
QMessageBox::critical(m_d->m_debuggerManager->mainWindow(), tr("Debugger Error"), msg);
}
void CdbDebugEngine::slotConsoleStubTerminated()
{
exitDebugger();
}
void CdbDebugEnginePrivate::handleDebugEvent() void CdbDebugEnginePrivate::handleDebugEvent()
{ {
if (debugCDB) if (debugCDB)
...@@ -931,6 +976,7 @@ void CdbDebugEnginePrivate::updateStackTrace() ...@@ -931,6 +976,7 @@ void CdbDebugEnginePrivate::updateStackTrace()
void CdbDebugEnginePrivate::handleDebugOutput(const char* szOutputString) void CdbDebugEnginePrivate::handleDebugOutput(const char* szOutputString)
{ {
qDebug() << Q_FUNC_INFO << szOutputString;
m_debuggerManagerAccess->showApplicationOutput(QString::fromLocal8Bit(szOutputString)); m_debuggerManagerAccess->showApplicationOutput(QString::fromLocal8Bit(szOutputString));
} }
...@@ -951,6 +997,10 @@ void CdbDebugEngine::setUseCustomDumpers(bool on) ...@@ -951,6 +997,10 @@ void CdbDebugEngine::setUseCustomDumpers(bool on)
Q_UNUSED(on) Q_UNUSED(on)
} }
void CdbDebugEngine::recheckCustomDumperAvailability()
{
}
void CdbDebugEngine::reloadSourceFiles() void CdbDebugEngine::reloadSourceFiles()
{ {
} }
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#define DEBUGGER_CDBENGINE_H #define DEBUGGER_CDBENGINE_H
#include "idebuggerengine.h" #include "idebuggerengine.h"
#include "debuggermanager.h"
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {
...@@ -91,15 +92,21 @@ public: ...@@ -91,15 +92,21 @@ public:
virtual void setDebugDumpers(bool on); virtual void setDebugDumpers(bool on);
virtual void setUseCustomDumpers(bool on); virtual void setUseCustomDumpers(bool on);
virtual void recheckCustomDumperAvailability();
virtual void reloadSourceFiles(); virtual void reloadSourceFiles();
protected: protected:
void timerEvent(QTimerEvent*); void timerEvent(QTimerEvent*);
private slots:
void slotConsoleStubStarted();
void slotConsoleStubError(const QString &msg);
void slotConsoleStubTerminated();
private: private:
bool startAttachDebugger(unsigned long pid, QString *errorMessage); bool startAttachDebugger(qint64 pid, QString *errorMessage);
bool startDebuggerWithExecutable(QString *errorMessage); bool startDebuggerWithExecutable(DebuggerStartMode sm, QString *errorMessage);
void startWatchTimer(); void startWatchTimer();
void killWatchTimer(); void killWatchTimer();
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include "cdbdebugoutput.h" #include "cdbdebugoutput.h"
#include "stackhandler.h" #include "stackhandler.h"
#include "debuggermanager.h" #include "debuggermanager.h"
#include <utils/consoleprocess.h>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {
...@@ -106,6 +107,7 @@ struct CdbDebugEnginePrivate ...@@ -106,6 +107,7 @@ struct CdbDebugEnginePrivate
DebuggerManager *m_debuggerManager; DebuggerManager *m_debuggerManager;
IDebuggerManagerAccessForEngines *m_debuggerManagerAccess; IDebuggerManagerAccessForEngines *m_debuggerManagerAccess;
DebuggerStartMode m_mode; DebuggerStartMode m_mode;
Core::Utils::ConsoleProcess m_consoleStubProc;
}; };
enum { debugCDB = 0 }; enum { debugCDB = 0 };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment