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)
|
|
|
|
|
**
|
|
|
|
|
** Commercial Usage
|
|
|
|
|
**
|
|
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "coregdbadapter.h"
|
|
|
|
|
|
|
|
|
|
#include "debuggeractions.h"
|
|
|
|
|
#include "gdbengine.h"
|
2009-09-25 15:02:16 +02:00
|
|
|
#include "debuggerstringutils.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
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
CoreGdbAdapter::CoreGdbAdapter(GdbEngine *engine, QObject *parent)
|
|
|
|
|
: AbstractGdbAdapter(engine, parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::startAdapter()
|
|
|
|
|
{
|
2009-09-25 08:35:31 +02:00
|
|
|
QTC_ASSERT(state() == EngineStarting, qDebug() << state());
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(_("TRYING TO START ADAPTER"));
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2009-10-20 11:02:16 +02:00
|
|
|
if (!m_engine->startGdb())
|
|
|
|
|
return;
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2010-07-08 12:41:26 +02:00
|
|
|
m_engine->handleAdapterStarted();
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::startInferior()
|
|
|
|
|
{
|
2009-09-25 08:35:31 +02:00
|
|
|
QTC_ASSERT(state() == InferiorStarting, qDebug() << state());
|
2009-10-05 13:47:55 +02:00
|
|
|
m_executable = startParameters().executable;
|
|
|
|
|
if (m_executable.isEmpty()) {
|
2009-10-20 18:05:56 +02:00
|
|
|
#ifdef EXE_FROM_CORE
|
2009-10-05 13:47:55 +02:00
|
|
|
// 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.
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2009-10-20 18:05:56 +02:00
|
|
|
m_round = 1;
|
|
|
|
|
loadCoreFile();
|
|
|
|
|
#else
|
|
|
|
|
showMessageBox(QMessageBox::Warning, tr("Error Loading Symbols"),
|
|
|
|
|
tr("No executable to load symbols from specified."));
|
|
|
|
|
#endif
|
|
|
|
|
return;
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2009-10-20 18:05:56 +02:00
|
|
|
#ifdef EXE_FROM_CORE
|
|
|
|
|
m_round = 2;
|
|
|
|
|
#endif
|
|
|
|
|
loadExeAndSyms();
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
|
|
|
|
|
2009-10-20 18:05:56 +02:00
|
|
|
void CoreGdbAdapter::loadExeAndSyms()
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
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)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == InferiorStarting, qDebug() << state());
|
|
|
|
|
if (response.resultClass == GdbResultDone) {
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Symbols found."), StatusBar);
|
2009-10-12 12:00:07 +02:00
|
|
|
} else {
|
2009-10-20 18:05:56 +02:00
|
|
|
QString msg = tr("Loading symbols from \"%1\" failed:\n").arg(m_executable)
|
2010-01-04 14:11:07 +01:00
|
|
|
+ QString::fromLocal8Bit(response.data.findChild("msg").data());
|
2009-10-20 18:05:56 +02:00
|
|
|
showMessageBox(QMessageBox::Warning, tr("Error Loading Symbols"), msg);
|
2009-09-30 12:27:03 +02:00
|
|
|
}
|
2009-10-20 18:05:56 +02:00
|
|
|
loadCoreFile();
|
2009-09-30 12:27:03 +02:00
|
|
|
}
|
|
|
|
|
|
2009-10-20 18:05:56 +02:00
|
|
|
void CoreGdbAdapter::loadCoreFile()
|
|
|
|
|
{
|
|
|
|
|
// Quoting core name below fails in gdb 6.8-debian.
|
|
|
|
|
QFileInfo fi(startParameters().coreFile);
|
2010-01-05 16:51:55 +01:00
|
|
|
QByteArray coreName = fi.absoluteFilePath().toLocal8Bit();
|
|
|
|
|
m_engine->postCommand("target core " + coreName, CB(handleTargetCore));
|
2009-10-20 18:05:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CoreGdbAdapter::handleTargetCore(const GdbResponse &response)
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == InferiorStarting, qDebug() << state());
|
|
|
|
|
if (response.resultClass == GdbResultDone) {
|
2009-10-20 18:05:56 +02:00
|
|
|
#ifdef EXE_FROM_CORE
|
|
|
|
|
if (m_round == 1) {
|
|
|
|
|
m_round = 2;
|
|
|
|
|
GdbMi console = response.data.findChild("consolestreamoutput");
|
|
|
|
|
int pos1 = console.data().indexOf('`');
|
|
|
|
|
int pos2 = console.data().indexOf('\'');
|
|
|
|
|
if (pos1 != -1 && pos2 != -1) {
|
|
|
|
|
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()) {
|
2009-10-20 18:13:23 +02:00
|
|
|
m_executable = QFileInfo(startParameters().coreFile).absoluteDir()
|
|
|
|
|
.absoluteFilePath(m_executable);
|
|
|
|
|
if (QFile::exists(m_executable)) {
|
|
|
|
|
// Finish extra round ...
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Attached to core temporarily."), StatusBar);
|
2010-01-05 16:51:55 +01:00
|
|
|
m_engine->postCommand("detach");
|
2009-10-20 18:13:23 +02:00
|
|
|
// ... and retry.
|
|
|
|
|
loadExeAndSyms();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-10-20 18:05:56 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
showMessageBox(QMessageBox::Warning, tr("Error Loading Symbols"),
|
|
|
|
|
tr("Unable to determine executable from core file."));
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Attached to core."), StatusBar);
|
2009-10-05 13:47:55 +02:00
|
|
|
setState(InferiorUnrunnable);
|
|
|
|
|
m_engine->updateAll();
|
2009-10-12 12:00:07 +02:00
|
|
|
} else {
|
2009-10-20 18:05:56 +02:00
|
|
|
QString msg = tr("Attach to core \"%1\" failed:\n").arg(startParameters().coreFile)
|
2010-01-04 14:11:07 +01:00
|
|
|
+ QString::fromLocal8Bit(response.data.findChild("msg").data());
|
2010-07-08 12:41:26 +02:00
|
|
|
m_engine->handleInferiorStartFailed(msg);
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
2009-10-20 11:02:16 +02:00
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
void CoreGdbAdapter::interruptInferior()
|
|
|
|
|
{
|
|
|
|
|
// A core should never 'run'
|
|
|
|
|
QTC_ASSERT(false, /**/);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|