2009-09-23 13:37:39 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** No Commercial Usage
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "coregdbadapter.h"
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2011-01-10 10:14:23 +01:00
|
|
|
#include "debuggerstartparameters.h"
|
2010-11-10 16:33:11 +01:00
|
|
|
#include "debuggercore.h"
|
2009-09-23 13:37:39 +02:00
|
|
|
#include "debuggeractions.h"
|
2009-09-25 15:02:16 +02:00
|
|
|
#include "debuggerstringutils.h"
|
2010-11-10 16:33:11 +01:00
|
|
|
#include "gdbmi.h"
|
|
|
|
|
#include "gdbengine.h"
|
2009-09-23 13:37:39 +02:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2009-10-20 18:13:23 +02:00
|
|
|
#include <QtCore/QDir>
|
2009-09-23 13:37:39 +02:00
|
|
|
#include <QtCore/QFileInfo>
|
2009-10-20 18:05:56 +02:00
|
|
|
#include <QtGui/QMessageBox>
|
2009-09-23 13:37:39 +02:00
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
#define CB(callback) \
|
|
|
|
|
static_cast<GdbEngine::AdapterCallback>(&CoreGdbAdapter::callback), \
|
|
|
|
|
STRINGIFY(callback)
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// CoreGdbAdapter
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2010-07-15 13:23:44 +02:00
|
|
|
static QByteArray coreName(const DebuggerStartParameters &sp)
|
2009-09-23 13:37:39 +02:00
|
|
|
{
|
2010-07-15 13:23:44 +02:00
|
|
|
QFileInfo fi(sp.coreFile);
|
|
|
|
|
return fi.absoluteFilePath().toLocal8Bit();
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-15 13:23:44 +02:00
|
|
|
CoreGdbAdapter::CoreGdbAdapter(GdbEngine *engine, QObject *parent)
|
|
|
|
|
: AbstractGdbAdapter(engine, parent),
|
|
|
|
|
m_executable(startParameters().executable),
|
|
|
|
|
m_coreName(coreName(startParameters()))
|
|
|
|
|
{}
|
|
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
void CoreGdbAdapter::startAdapter()
|
|
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(_("TRYING TO START ADAPTER"));
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2010-12-21 14:41:17 +01:00
|
|
|
QStringList args;
|
|
|
|
|
args.append(_("-ex"));
|
|
|
|
|
args.append(_("set auto-solib-add off"));
|
|
|
|
|
if (!m_engine->startGdb(args))
|
2009-10-20 11:02:16 +02:00
|
|
|
return;
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2010-10-11 16:55:18 +02:00
|
|
|
//if (m_executable.isEmpty()) {
|
2010-11-10 16:33:11 +01:00
|
|
|
// showMessageBox(QMessageBox::Warning,
|
2010-10-11 16:55:18 +02:00
|
|
|
// tr("Error Loading Symbols"),
|
|
|
|
|
// tr("No executable to load symbols from specified."));
|
|
|
|
|
//}
|
2010-07-15 13:23:44 +02:00
|
|
|
|
2010-10-11 16:55:18 +02:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
|
const bool canUseExeFromCore = true;
|
|
|
|
|
#else
|
|
|
|
|
const bool canUseExeFromCore = false;
|
2010-07-15 13:23:44 +02:00
|
|
|
#endif
|
2010-10-11 16:55:18 +02:00
|
|
|
|
|
|
|
|
if (!m_executable.isEmpty()) {
|
|
|
|
|
m_engine->notifyEngineSetupOk();
|
|
|
|
|
} else if (canUseExeFromCore) {
|
|
|
|
|
// Extra round trip to get executable name from core file.
|
|
|
|
|
// This is sometimes not the full name, so it can't be used
|
|
|
|
|
// as the generic solution.
|
|
|
|
|
|
|
|
|
|
// Quoting core name below fails in gdb 6.8-debian.
|
|
|
|
|
m_engine->postCommand("target core " + m_coreName,
|
|
|
|
|
CB(handleTemporaryTargetCore));
|
|
|
|
|
} else {
|
|
|
|
|
QString msg = tr("The name of the binary file cannot be extracted "
|
|
|
|
|
"from this core file.");
|
|
|
|
|
msg += _(" ");
|
|
|
|
|
msg += tr("Try to specify the binary using the "
|
|
|
|
|
"<i>Debug->Start Debugging->Attach to Core</i> dialog.");
|
2010-11-10 16:33:11 +01:00
|
|
|
showMessageBox(QMessageBox::Warning,
|
2010-10-11 16:55:18 +02:00
|
|
|
tr("Loading core file failed"), msg);
|
|
|
|
|
m_engine->notifyEngineSetupFailed();
|
|
|
|
|
}
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-15 13:23:44 +02:00
|
|
|
void CoreGdbAdapter::handleTemporaryTargetCore(const GdbResponse &response)
|
2009-09-23 13:37:39 +02:00
|
|
|
{
|
2010-07-15 13:23:44 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
|
|
|
|
if (response.resultClass != GdbResultDone) {
|
|
|
|
|
showMessage(tr("Attach to core failed."), StatusBar);
|
|
|
|
|
m_engine->notifyEngineSetupFailed();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2010-07-15 13:23:44 +02:00
|
|
|
GdbMi console = response.data.findChild("consolestreamoutput");
|
|
|
|
|
int pos1 = console.data().indexOf('`');
|
|
|
|
|
int pos2 = console.data().indexOf('\'');
|
|
|
|
|
if (pos1 == -1 || pos2 == -1) {
|
|
|
|
|
showMessage(tr("Attach to core failed."), StatusBar);
|
|
|
|
|
m_engine->notifyEngineSetupFailed();
|
2009-10-20 18:05:56 +02:00
|
|
|
return;
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2010-07-15 13:23:44 +02:00
|
|
|
|
|
|
|
|
m_executable = console.data().mid(pos1 + 1, pos2 - pos1 - 1);
|
|
|
|
|
// Strip off command line arguments. FIXME: make robust.
|
|
|
|
|
int idx = m_executable.indexOf(_c(' '));
|
|
|
|
|
if (idx >= 0)
|
|
|
|
|
m_executable.truncate(idx);
|
|
|
|
|
if (m_executable.isEmpty()) {
|
|
|
|
|
m_engine->postCommand("detach");
|
|
|
|
|
m_engine->notifyEngineSetupFailed();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
m_executable = QFileInfo(startParameters().coreFile).absoluteDir()
|
|
|
|
|
.absoluteFilePath(m_executable);
|
|
|
|
|
showMessage(tr("Attached to core temporarily."), StatusBar);
|
|
|
|
|
m_engine->postCommand("detach", CB(handleTemporaryDetach));
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-15 13:23:44 +02:00
|
|
|
void CoreGdbAdapter::handleTemporaryDetach(const GdbResponse &response)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
2010-12-21 14:41:17 +01:00
|
|
|
if (response.resultClass == GdbResultDone) {
|
2010-07-15 13:23:44 +02:00
|
|
|
m_engine->notifyEngineSetupOk();
|
2010-12-21 14:41:17 +01:00
|
|
|
} else {
|
2010-07-15 13:23:44 +02:00
|
|
|
m_engine->notifyEngineSetupFailed();
|
2010-12-21 14:41:17 +01:00
|
|
|
}
|
2010-07-15 13:23:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::setupInferior()
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
2010-07-15 11:37:06 +02:00
|
|
|
QTC_ASSERT(state() == InferiorSetupRequested, qDebug() << state());
|
2009-10-20 18:05:56 +02:00
|
|
|
// Do that first, otherwise no symbols are loaded.
|
|
|
|
|
QFileInfo fi(m_executable);
|
2010-01-05 16:51:55 +01:00
|
|
|
QByteArray path = fi.absoluteFilePath().toLocal8Bit();
|
|
|
|
|
m_engine->postCommand("-file-exec-and-symbols \"" + path + '"',
|
|
|
|
|
CB(handleFileExecAndSymbols));
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-30 12:27:03 +02:00
|
|
|
void CoreGdbAdapter::handleFileExecAndSymbols(const GdbResponse &response)
|
|
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorSetupRequested, qDebug() << state());
|
2009-09-30 12:27:03 +02:00
|
|
|
if (response.resultClass == GdbResultDone) {
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Symbols found."), StatusBar);
|
2010-07-15 13:23:44 +02:00
|
|
|
m_engine->postCommand("target core " + m_coreName,
|
|
|
|
|
CB(handleTargetCore));
|
|
|
|
|
return;
|
2009-09-30 12:27:03 +02:00
|
|
|
}
|
2010-10-11 16:55:18 +02:00
|
|
|
QString msg = tr("No symbols found in core file <i>%1</i>.")
|
|
|
|
|
.arg(startParameters().coreFile);
|
|
|
|
|
msg += _(" ");
|
|
|
|
|
msg += tr("This can be caused by a path length limitation in the "
|
|
|
|
|
"core file.");
|
|
|
|
|
msg += _(" ");
|
|
|
|
|
msg += tr("Try to specify the binary using the "
|
|
|
|
|
"<i>Debug->Start Debugging->Attach to Core</i> dialog.");
|
|
|
|
|
m_engine->notifyInferiorSetupFailed(msg);
|
2009-10-20 18:05:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::handleTargetCore(const GdbResponse &response)
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == InferiorSetupRequested, qDebug() << state());
|
2009-10-05 13:47:55 +02:00
|
|
|
if (response.resultClass == GdbResultDone) {
|
2010-07-15 13:23:44 +02:00
|
|
|
// HACK: The namespace is not accessible in the initial run.
|
|
|
|
|
m_engine->loadPythonDumpers();
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Attached to core."), StatusBar);
|
2010-07-08 18:10:50 +02:00
|
|
|
m_engine->handleInferiorPrepared();
|
2010-12-21 14:41:17 +01:00
|
|
|
// Due to the auto-solib-add off setting, we don't have any
|
|
|
|
|
// symbols yet. Load them in order of importance.
|
|
|
|
|
m_engine->reloadStack(true);
|
|
|
|
|
m_engine->postCommand("info shared", CB(handleModulesList));
|
2010-07-15 13:23:44 +02:00
|
|
|
return;
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2010-07-15 13:23:44 +02:00
|
|
|
QString msg = tr("Attach to core \"%1\" failed:\n")
|
|
|
|
|
.arg(startParameters().coreFile)
|
|
|
|
|
+ QString::fromLocal8Bit(response.data.findChild("msg").data());
|
|
|
|
|
m_engine->notifyInferiorSetupFailed(msg);
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2009-10-20 11:02:16 +02:00
|
|
|
|
2010-12-21 14:41:17 +01:00
|
|
|
void CoreGdbAdapter::handleModulesList(const GdbResponse &response)
|
|
|
|
|
{
|
|
|
|
|
m_engine->handleModulesList(response);
|
|
|
|
|
loadSymbolsForStack();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::loadSymbolsForStack()
|
|
|
|
|
{
|
|
|
|
|
m_engine->loadSymbolsForStack();
|
|
|
|
|
QTimer::singleShot(1000, this, SLOT(loadAllSymbols()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::loadAllSymbols()
|
|
|
|
|
{
|
|
|
|
|
m_engine->loadAllSymbols();
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void CoreGdbAdapter::runEngine()
|
2010-07-08 18:10:50 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineRunRequested, qDebug() << state());
|
|
|
|
|
m_engine->notifyInferiorUnrunnable();
|
2010-07-08 18:10:50 +02:00
|
|
|
m_engine->updateAll();
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
void CoreGdbAdapter::interruptInferior()
|
|
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
// A core never runs, so this cannot be called.
|
2009-09-23 13:37:39 +02:00
|
|
|
QTC_ASSERT(false, /**/);
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-09 17:07:59 +02:00
|
|
|
void CoreGdbAdapter::shutdownInferior()
|
|
|
|
|
{
|
|
|
|
|
m_engine->notifyInferiorShutdownOk();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::shutdownAdapter()
|
|
|
|
|
{
|
|
|
|
|
m_engine->notifyAdapterShutdownOk();
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|