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
|
/*
* GDB Debugger Support
*
* Copyright 2006 Vladimir Prus <ghost@cs.msu.su>
* Copyright 2007 Hamish Rodda <rodda@kde.org>
* Copyright 2009 Andreas Pakulat <apaku@gmx.de>
*
* 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 "gdbconfigpage.h"
#include <interfaces/idebugcontroller.h>
#include <interfaces/ilaunchconfiguration.h>
#include <interfaces/iproject.h>
#include <util/executecompositejob.h>
#include <execute/iexecuteplugin.h>
#include "dbgglobal.h"
#include "debuggerplugin.h"
#include "debuglog.h"
#include "midebugjobs.h"
#include "ui_gdbconfigpage.h"
#include <interfaces/iruncontroller.h>
#include <interfaces/icore.h>
#include <KConfigGroup>
#include <KLocalizedString>
#include <KMessageBox>
using namespace KDevelop;
namespace Config = KDevMI::GDB::Config;
GdbConfigPage::GdbConfigPage( QWidget* parent )
: LaunchConfigurationPage(parent), ui( new Ui::GdbConfigPage )
{
ui->setupUi( this );
ui->kcfg_gdbPath->setMode(KFile::File|KFile::ExistingOnly|KFile::LocalOnly);
connect(ui->kcfg_asmDemangle, &QCheckBox::toggled, this, &GdbConfigPage::changed);
connect(ui->kcfg_configGdbScript, &KUrlRequester::textChanged, this, &GdbConfigPage::changed);
//connect(ui->kcfg_dbgTerminal, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
connect(ui->kcfg_debuggingShell, &KUrlRequester::textChanged, this, &GdbConfigPage::changed);
connect(ui->kcfg_displayStaticMembers, &QCheckBox::toggled, this, &GdbConfigPage::changed);
connect(ui->kcfg_gdbPath, &KUrlRequester::textChanged, this, &GdbConfigPage::changed);
connect(ui->kcfg_runGdbScript, &KUrlRequester::textChanged, this, &GdbConfigPage::changed);
connect(ui->kcfg_runShellScript, &KUrlRequester::textChanged, this, &GdbConfigPage::changed);
connect(ui->kcfg_startWith, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &GdbConfigPage::changed);
//Setup data info for combobox
ui->kcfg_startWith->setItemData(0, QStringLiteral("ApplicationOutput"));
ui->kcfg_startWith->setItemData(1, QStringLiteral("GdbConsole"));
ui->kcfg_startWith->setItemData(2, QStringLiteral("FrameStack"));
}
GdbConfigPage::~GdbConfigPage()
{
delete ui;
}
QIcon GdbConfigPage::icon() const
{
return QIcon();
}
void GdbConfigPage::loadFromConfiguration( const KConfigGroup& cfg, KDevelop::IProject* )
{
bool block = blockSignals( true );
ui->kcfg_gdbPath->setUrl( cfg.readEntry( Config::GdbPathEntry, QUrl() ) );
ui->kcfg_debuggingShell->setUrl( cfg.readEntry( Config::DebuggerShellEntry, QUrl() ) );
ui->kcfg_configGdbScript->setUrl( cfg.readEntry( Config::RemoteGdbConfigEntry, QUrl() ) );
ui->kcfg_runShellScript->setUrl( cfg.readEntry( Config::RemoteGdbShellEntry, QUrl() ) );
ui->kcfg_runGdbScript->setUrl( cfg.readEntry( Config::RemoteGdbRunEntry, QUrl() ) );
ui->kcfg_displayStaticMembers->setChecked( cfg.readEntry( Config::StaticMembersEntry, false ) );
ui->kcfg_asmDemangle->setChecked( cfg.readEntry( Config::DemangleNamesEntry, true) );
ui->kcfg_startWith->setCurrentIndex( ui->kcfg_startWith->findData( cfg.readEntry( KDevMI::Config::StartWithEntry, "ApplicationOutput" ) ) );
blockSignals( block );
}
void GdbConfigPage::saveToConfiguration( KConfigGroup cfg, KDevelop::IProject* ) const
{
cfg.writeEntry(Config::GdbPathEntry, ui->kcfg_gdbPath->url() );
cfg.writeEntry(Config::DebuggerShellEntry, ui->kcfg_debuggingShell->url() );
cfg.writeEntry(Config::RemoteGdbConfigEntry, ui->kcfg_configGdbScript->url() );
cfg.writeEntry(Config::RemoteGdbShellEntry, ui->kcfg_runShellScript->url() );
cfg.writeEntry(Config::RemoteGdbRunEntry, ui->kcfg_runGdbScript->url() );
cfg.writeEntry(Config::StaticMembersEntry, ui->kcfg_displayStaticMembers->isChecked() );
cfg.writeEntry(Config::DemangleNamesEntry, ui->kcfg_asmDemangle->isChecked() );
cfg.writeEntry(KDevMI::Config::StartWithEntry, ui->kcfg_startWith->itemData( ui->kcfg_startWith->currentIndex() ).toString() );
}
QString GdbConfigPage::title() const
{
return i18nc("@title:tab", "GDB Configuration");
}
GdbLauncher::GdbLauncher( KDevMI::GDB::CppDebuggerPlugin* p, IExecutePlugin* execute )
: m_plugin( p )
, m_execute( execute )
{
factoryList << new GdbConfigPageFactory();
}
QList< KDevelop::LaunchConfigurationPageFactory* > GdbLauncher::configPages() const
{
return factoryList;
}
QString GdbLauncher::id()
{
return QStringLiteral("gdb");
}
QString GdbLauncher::name() const
{
return i18n("GDB");
}
KJob* GdbLauncher::start(const QString& launchMode, KDevelop::ILaunchConfiguration* cfg)
{
Q_ASSERT(cfg);
if( !cfg )
{
return nullptr;
}
if( launchMode == QLatin1String("debug") )
{
Q_ASSERT(m_execute);
Q_ASSERT(m_plugin);
if (KDevelop::ICore::self()->debugController()->currentSession() != nullptr) {
KMessageBox::ButtonCode answer = KMessageBox::warningYesNo(
nullptr,
i18n("A program is already being debugged. Do you want to abort the "
"currently running debug session and continue with the launch?"));
if (answer == KMessageBox::No)
return nullptr;
}
QList<KJob*> l;
KJob* depjob = m_execute->dependencyJob(cfg);
if( depjob )
{
l << depjob;
}
l << new KDevMI::MIDebugJob( m_plugin, cfg, m_execute );
return new KDevelop::ExecuteCompositeJob( KDevelop::ICore::self()->runController(), l );
}
qCWarning(DEBUGGERGDB) << "Unknown launch mode" << launchMode << "for config:" << cfg->name();
return nullptr;
}
QStringList GdbLauncher::supportedModes() const
{
return QStringList() << QStringLiteral("debug");
}
QString GdbLauncher::description() const
{
return i18n("Executes a native application in GDB");
}
KDevelop::LaunchConfigurationPage* GdbConfigPageFactory::createWidget( QWidget* parent )
{
return new GdbConfigPage( parent );
}
|