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
|
// /*
// * GDB Debugger Support
// *
// * Copyright 1999-2001 John Birch <jbb@kdevelop.org>
// * Copyright 2001 by Bernd Gehrmann <bernd@kdevelop.org>
// * Copyright 2006 Vladimir Prus <ghost@cs.msu.su>
// * Copyright 2007 Hamish Rodda <rodda@kde.org>
// *
// * 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 "debuggerplugin.h"
#include <QDir>
#include <QToolTip>
#include <QByteArray>
#include <QTimer>
#include <QMenu>
#include <QDBusConnectionInterface>
#include <QDBusInterface>
#include <QSignalMapper>
#include <kaction.h>
#include <kactioncollection.h>
#include <kdebug.h>
#include <kfiledialog.h>
#include <kiconloader.h>
#include <klocale.h>
#include <kmainwindow.h>
#include <kstatusbar.h>
#include <kparts/part.h>
#include <kparts/mainwindow.h>
#include <kmessagebox.h>
#include <kapplication.h>
#include <kpluginfactory.h>
#include <kaboutdata.h>
#include <KToolBar>
#include <KDialog>
#include <KXmlGuiWindow>
#include <KXMLGUIFactory>
#include <sublime/view.h>
#include <interfaces/icore.h>
#include <interfaces/iuicontroller.h>
#include <interfaces/idocumentcontroller.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/iruncontroller.h>
#include <interfaces/iproject.h>
#include <interfaces/context.h>
#include <interfaces/context.h>
#include <interfaces/contextmenuextension.h>
#include <language/interfaces/editorcontext.h>
#include <interfaces/idebugcontroller.h>
#include <interfaces/iplugincontroller.h>
#include <execute/iexecuteplugin.h>
#include <interfaces/launchconfigurationtype.h>
#include "disassemblewidget.h"
#include "processselection.h"
#include "memviewdlg.h"
#include "gdbparser.h"
#include "gdboutputwidget.h"
#include "gdbglobal.h"
#include "debugsession.h"
#include "selectcoredialog.h"
#include <iostream>
#include "gdblaunchconfig.h"
#include "debugjob.h"
namespace GDBDebugger
{
K_PLUGIN_FACTORY(CppDebuggerFactory, registerPlugin<CppDebuggerPlugin>(); )
K_EXPORT_PLUGIN(CppDebuggerFactory(KAboutData("kdevgdb","kdevgdb", ki18n("GDB Support"), "0.1", ki18n("Support for running apps in GDB"), KAboutData::License_GPL)))
template<class T>
class DebuggerToolFactory : public KDevelop::IToolViewFactory
{
public:
DebuggerToolFactory(CppDebuggerPlugin* plugin, const QString &id, Qt::DockWidgetArea defaultArea)
: m_plugin(plugin), m_id(id), m_defaultArea(defaultArea)
{}
virtual QWidget* create(QWidget *parent = 0)
{
return new T(m_plugin, parent);
}
virtual QString id() const
{
return m_id;
}
virtual Qt::DockWidgetArea defaultPosition()
{
return m_defaultArea;
}
virtual void viewCreated(Sublime::View* view)
{
if (view->widget()->metaObject()->indexOfSignal(SIGNAL(requestRaise())) != -1)
QObject::connect(view->widget(), SIGNAL(requestRaise()), view, SLOT(requestRaise()));
}
/* At present, some debugger widgets (e.g. breakpoint) contain actions so that shortcuts
work, but they don't need any toolbar. So, suppress toolbar action. */
virtual QList<QAction*> toolBarActions( QWidget* viewWidget ) const
{
Q_UNUSED(viewWidget);
return QList<QAction*>();
}
private:
CppDebuggerPlugin* m_plugin;
QString m_id;
Qt::DockWidgetArea m_defaultArea;
};
CppDebuggerPlugin::CppDebuggerPlugin( QObject *parent, const QVariantList & ) :
KDevelop::IPlugin( CppDebuggerFactory::componentData(), parent ),
m_config(KGlobal::config(), "GDB Debugger"), m_session(0)
{
KDEV_USE_EXTENSION_INTERFACE( KDevelop::IStatus )
setXMLFile("kdevgdbui.rc");
disassemblefactory = new DebuggerToolFactory<DisassembleWidget>(
this, "org.kdevelop.debugger.DisassemblerView", Qt::BottomDockWidgetArea);
gdbfactory = new DebuggerToolFactory<GDBOutputWidget>(
this, "org.kdevelop.debugger.ConsoleView",Qt::BottomDockWidgetArea);
core()->uiController()->addToolView(
i18n("Disassemble"),
disassemblefactory);
core()->uiController()->addToolView(
i18n("GDB"),
gdbfactory);
/*
viewerfactory = new DebuggerToolFactory<ViewerWidget>(
this, "org.kdevelop.debugger.VariousViews", Qt::BottomDockWidgetArea);
core()->uiController()->addToolView(
i18n("Debug views"),
viewerfactory);
*/
setupActions();
setupDBus();
IExecutePlugin* iface = KDevelop::ICore::self()->pluginController()->pluginForExtension("org.kdevelop.IExecutePlugin")->extension<IExecutePlugin>();
Q_ASSERT(iface);
KDevelop::LaunchConfigurationType* type = core()->runController()->launchConfigurationTypeForId( iface->nativeAppConfigTypeId() );
Q_ASSERT(type);
type->addLauncher( new GdbLauncher( this ) );
// The output from tracepoints goes to "application" window, because
// we don't have any better alternative, and using yet another window
// is undesirable. Besides, this makes tracepoint look even more similar
// to printf debugging.
// PORTING TODO broken - need intermediate signal?
// connect( gdbBreakpointWidget, SIGNAL(tracingOutput(const QByteArray&)),
// procLineMaker, SLOT(slotReceivedStdout(const QByteArray&)));
}
void CppDebuggerPlugin::unload()
{
core()->uiController()->removeToolView(disassemblefactory);
core()->uiController()->removeToolView(gdbfactory);
//core()->uiController()->removeToolView(viewerfactory);
}
void CppDebuggerPlugin::setupActions()
{
KActionCollection* ac = actionCollection();
/*
KAction* action = new KAction(KIcon("dbgmemview"), i18n("Viewers"), this);
action->setToolTip( i18n("Debugger viewers") );
action->setWhatsThis(i18n("<b>Debugger viewers</b><p>Various information about application being executed. There are 4 views available:<br>"
"<b>Memory</b><br>"
"<b>Disassemble</b><br>"
"<b>Registers</b><br>"
"<b>Libraries</b>"));
connect(action, SIGNAL(triggered(bool)), this, SIGNAL(addMemoryView()));
ac->addAction("debug_memview", action);
*/
KAction* action = new KAction(KIcon("core"), i18n("Examine Core File..."), this);
action->setToolTip( i18n("Examine core file") );
action->setWhatsThis( i18n("<b>Examine core file</b><p>"
"This loads a core file, which is typically created "
"after the application has crashed, e.g. with a "
"segmentation fault. The core file contains an "
"image of the program memory at the time it crashed, "
"allowing you to do a post-mortem analysis.</p>") );
connect(action, SIGNAL(triggered(bool)), this, SLOT(slotExamineCore()));
ac->addAction("debug_core", action);
action = new KAction(KIcon("connect_creating"), i18n("Attach to Process"), this);
action->setToolTip( i18n("Attach to process...") );
action->setWhatsThis(i18n("<b>Attach to process</b><p>Attaches the debugger to a running process.</p>"));
connect(action, SIGNAL(triggered(bool)), this, SLOT(slotAttachProcess()));
ac->addAction("debug_attach", action);
}
void CppDebuggerPlugin::setupDBus()
{
m_drkonqiMap = new QSignalMapper(this);
connect(m_drkonqiMap, SIGNAL(mapped(QObject*)), this, SLOT(slotDebugExternalProcess(QObject*)));
QDBusConnectionInterface* dbusInterface = QDBusConnection::sessionBus().interface();
foreach (const QString& service, dbusInterface->registeredServiceNames().value())
slotDBusServiceOwnerChanged(service, QString(), service);
connect(dbusInterface, SIGNAL(serviceOwnerChanged(QString,QString,QString)), this, SLOT(slotDBusServiceOwnerChanged(QString,QString,QString)));
}
void CppDebuggerPlugin::slotDBusServiceOwnerChanged(const QString & name, const QString & oldOwner, const QString & newOwner)
{
if (name.startsWith("org.kde.drkonqi")) {
if (!oldOwner.isEmpty()) {
// Deregistration
if (m_drkonqis.contains(name))
delete m_drkonqis.take(name);
}
if (!newOwner.isEmpty()) {
// New registration
QDBusInterface* drkonqiInterface = new QDBusInterface(name, "/krashinfo", QString(), QDBusConnection::sessionBus(), this);
m_drkonqis.insert(name, drkonqiInterface);
connect(drkonqiInterface, SIGNAL(acceptDebuggingApplication()), m_drkonqiMap, SLOT(map()));
m_drkonqiMap->setMapping(drkonqiInterface, drkonqiInterface);
drkonqiInterface->call("registerDebuggingApplication", i18n("KDevelop"));
}
}
}
void CppDebuggerPlugin::slotDebugExternalProcess(QObject* interface)
{
QDBusReply<int> reply = static_cast<QDBusInterface*>(interface)->call("pid");
if (reply.isValid()) {
attachProcess(reply.value());
QTimer::singleShot(500, this, SLOT(slotCloseDrKonqi()));
m_drkonqi = m_drkonqis.key(static_cast<QDBusInterface*>(interface));
}
KDevelop::ICore::self()->uiController()->activeMainWindow()->raise();
}
void CppDebuggerPlugin::slotCloseDrKonqi()
{
if (!m_drkonqi.isEmpty()) {
QDBusInterface drkonqiInterface(m_drkonqi, "/MainApplication", "org.kde.KApplication");
drkonqiInterface.call("quit");
m_drkonqi.clear();
}
}
CppDebuggerPlugin::~CppDebuggerPlugin()
{
GDBParser::destroy();
}
void CppDebuggerPlugin::initializeGuiState()
{
}
KDevelop::ContextMenuExtension CppDebuggerPlugin::contextMenuExtension( KDevelop::Context* context )
{
KDevelop::ContextMenuExtension menuExt = KDevelop::IPlugin::contextMenuExtension( context );
if( context->type() != KDevelop::Context::EditorContext )
return menuExt;
KDevelop::EditorContext *econtext = dynamic_cast<KDevelop::EditorContext*>(context);
if (!econtext)
return menuExt;
m_contextIdent = econtext->currentWord();
//bool running = m_session && m_session->isRunning();
// If debugger is running, we insert items at the top.
// The reason is user has explicitly run the debugger, so he's
// surely debugging, not editing code or something. So, first
// menu items should be about debugging, not some copy/paste/cut
// things.
//if (!running)
//popup->addSeparator();
if (!m_contextIdent.isEmpty())
{
// PORTING TODO
//QString squeezed = KStringHandler::csqueeze(m_contextIdent, 30);
QAction* action = new QAction( i18n("Evaluate: %1", m_contextIdent), this);
connect(action, SIGNAL(triggered(bool)), this, SLOT(contextEvaluate()));
action->setWhatsThis(i18n("<b>Evaluate expression</b><p>Shows the value of the expression under the cursor.</p>"));
menuExt.addAction( KDevelop::ContextMenuExtension::DebugGroup, action);
action = new QAction( i18n("Watch: %1", m_contextIdent), this);
connect(action, SIGNAL(triggered(bool)), this, SLOT(contextWatch()));
action->setWhatsThis(i18n("<b>Watch expression</b><p>Adds an expression under the cursor to the Variables/Watch list.</p>"));
menuExt.addAction( KDevelop::ContextMenuExtension::DebugGroup, action);
}
return menuExt;
}
void CppDebuggerPlugin::contextWatch()
{
emit addWatchVariable(m_contextIdent);
}
void CppDebuggerPlugin::contextEvaluate()
{
emit evaluateExpression(m_contextIdent);
}
DebugSession* CppDebuggerPlugin::createSession()
{
DebugSession *session = new DebugSession();
KDevelop::ICore::self()->debugController()->addSession(session);
connect(session, SIGNAL(showMessage(QString,int)), SLOT(controllerMessage(QString,int)));
connect(session, SIGNAL(reset()), SIGNAL(reset()));
connect(session, SIGNAL(finished()), SLOT(slotFinished()));
connect(session, SIGNAL(raiseOutputViews()), SIGNAL(raiseOutputViews()));
connect(session, SIGNAL(raiseVariableViews()), SIGNAL(raiseVariableViews()));
return session;
}
void CppDebuggerPlugin::slotExamineCore()
{
emit showMessage(this, i18n("Choose a core file to examine..."), 1000);
SelectCoreDialog dlg(KDevelop::ICore::self()->uiController()->activeMainWindow());
if (dlg.exec() == KDialog::Rejected) {
return;
}
emit showMessage(this, i18n("Examining core file %1", dlg.core().toLocalFile()), 1000);
DebugSession* session = createSession();
session->examineCoreFile(dlg.binary(), dlg.core());
KillSessionJob *job = new KillSessionJob(session);
job->setObjectName(i18n("Debug core file"));
core()->runController()->registerJob(job);
job->start();
}
void CppDebuggerPlugin::slotAttachProcess()
{
emit showMessage(this, i18n("Choose a process to attach to..."), 1000);
ProcessSelectionDialog dlg;
if (!dlg.exec() || !dlg.pidSelected())
return;
int pid = dlg.pidSelected();
if(QApplication::applicationPid()==pid)
KMessageBox::error(KDevelop::ICore::self()->uiController()->activeMainWindow(),
i18n("Not attaching to process %1: cannot attach the debugger to itself.", pid));
else
attachProcess(pid);
}
void CppDebuggerPlugin::attachProcess(int pid)
{
emit showMessage(this, i18n("Attaching to process %1", pid), 1000);
DebugSession* session = createSession();
session->attachToProcess(pid);
KillSessionJob *job = new KillSessionJob(session);
job->setObjectName(i18n("Debug process %1", pid));
core()->runController()->registerJob(job);
job->start();
}
// Used to disable breakpoint actions when non-text document selected
// save/restore partial project session
KConfigGroup CppDebuggerPlugin::config() const
{
return m_config;
}
QString CppDebuggerPlugin::statusName() const
{
return i18n("Debugger");
}
void CppDebuggerPlugin::slotFinished()
{
Q_ASSERT(dynamic_cast<DebugSession*>(sender()));
DebugSession* session = static_cast<DebugSession*>(sender());
}
void CppDebuggerPlugin::controllerMessage( const QString& msg, int timeout )
{
emit showMessage(this, msg, timeout);
}
}
#include "debuggerplugin.moc"
|