You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.2 KiB
117 lines
3.2 KiB
/* |
|
Copyright (C) 2009 George Kiagiadakis <gkiagia@users.sourceforge.net> |
|
|
|
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 "debuggerlaunchers.h" |
|
|
|
#include <QtDBus/QDBusConnection> |
|
|
|
#include <KShell> |
|
#include <KProcess> |
|
#include <QDebug> |
|
|
|
#include "detachedprocessmonitor.h" |
|
#include "drkonqi.h" |
|
#include "crashedapplication.h" |
|
|
|
DefaultDebuggerLauncher::DefaultDebuggerLauncher(const Debugger & debugger, DebuggerManager *parent) |
|
: AbstractDebuggerLauncher(parent), m_debugger(debugger) |
|
{ |
|
m_monitor = new DetachedProcessMonitor(this); |
|
connect(m_monitor, &DetachedProcessMonitor::processFinished, this, &DefaultDebuggerLauncher::onProcessFinished); |
|
} |
|
|
|
QString DefaultDebuggerLauncher::name() const |
|
{ |
|
return m_debugger.name(); |
|
} |
|
|
|
void DefaultDebuggerLauncher::start() |
|
{ |
|
if ( qobject_cast<DebuggerManager*>(parent())->debuggerIsRunning() ) { |
|
qWarning() << "Another debugger is already running"; |
|
return; |
|
} |
|
|
|
QString str = m_debugger.command(); |
|
Debugger::expandString(str, Debugger::ExpansionUsageShell); |
|
|
|
emit starting(); |
|
int pid = KProcess::startDetached(KShell::splitArgs(str)); |
|
if ( pid > 0 ) { |
|
m_monitor->startMonitoring(pid); |
|
} else { |
|
qWarning() << "Could not start debugger:" << name(); |
|
emit finished(); |
|
} |
|
} |
|
|
|
void DefaultDebuggerLauncher::onProcessFinished() |
|
{ |
|
emit finished(); |
|
} |
|
|
|
#if 0 |
|
TerminalDebuggerLauncher::TerminalDebuggerLauncher(const Debugger & debugger, DebuggerManager *parent) |
|
: DefaultDebuggerLauncher(debugger, parent) |
|
{ |
|
} |
|
|
|
void TerminalDebuggerLauncher::start() |
|
{ |
|
DefaultDebuggerLauncher::start(); //FIXME |
|
} |
|
#endif |
|
|
|
|
|
DBusOldInterfaceLauncher::DBusOldInterfaceLauncher(DebuggerManager *parent) |
|
: AbstractDebuggerLauncher(parent) |
|
{ |
|
m_adaptor = new DBusOldInterfaceAdaptor(this); |
|
QDBusConnection::sessionBus().registerObject("/krashinfo", this); |
|
} |
|
|
|
QString DBusOldInterfaceLauncher::name() const |
|
{ |
|
return m_name; |
|
} |
|
|
|
void DBusOldInterfaceLauncher::start() |
|
{ |
|
emit starting(); |
|
emit m_adaptor->acceptDebuggingApplication(); |
|
} |
|
|
|
|
|
DBusOldInterfaceAdaptor::DBusOldInterfaceAdaptor(DBusOldInterfaceLauncher *parent) |
|
: QDBusAbstractAdaptor(parent) |
|
{ |
|
Q_ASSERT(parent); |
|
} |
|
|
|
int DBusOldInterfaceAdaptor::pid() |
|
{ |
|
return DrKonqi::crashedApplication()->pid(); |
|
} |
|
|
|
void DBusOldInterfaceAdaptor::registerDebuggingApplication(const QString & name) |
|
{ |
|
if ( static_cast<DBusOldInterfaceLauncher*>(parent())->m_name.isEmpty() && !name.isEmpty() ) { |
|
static_cast<DBusOldInterfaceLauncher*>(parent())->m_name = name; |
|
emit static_cast<DBusOldInterfaceLauncher*>(parent())->available(); |
|
} |
|
} |
|
|
|
|
|
|