2010-12-08 12:43:11 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
2010-12-17 17:14:20 +01:00
|
|
|
** No Commercial Usage
|
2010-12-08 12:43:11 +01:00
|
|
|
**
|
2010-12-17 17:14:20 +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.
|
2010-12-08 12:43:11 +01: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 17:14:20 +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.
|
2010-12-08 12:43:11 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "memoryagent.h"
|
|
|
|
|
|
|
|
|
|
#include "debuggerengine.h"
|
|
|
|
|
#include "debuggercore.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QMessageBox>
|
|
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2010-12-14 12:29:32 +01:00
|
|
|
// MemoryAgent
|
2010-12-08 12:43:11 +01:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
/*!
|
2010-12-14 12:29:32 +01:00
|
|
|
\class MemoryAgent
|
2010-12-08 12:43:11 +01:00
|
|
|
|
|
|
|
|
Objects form this class are created in response to user actions in
|
|
|
|
|
the Gui for showing raw memory from the inferior. After creation
|
|
|
|
|
it handles communication between the engine and the bineditor.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace { const int DataRange = 1024 * 1024; }
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
MemoryAgent::MemoryAgent(Debugger::DebuggerEngine *engine)
|
2010-12-08 12:43:11 +01:00
|
|
|
: QObject(engine), m_engine(engine)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(engine, /**/);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
MemoryAgent::~MemoryAgent()
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
QList<IEditor *> editors;
|
|
|
|
|
foreach (QPointer<IEditor> editor, m_editors)
|
|
|
|
|
if (editor)
|
|
|
|
|
editors.append(editor.data());
|
2010-12-13 18:17:31 +01:00
|
|
|
EditorManager::instance()->closeEditors(editors);
|
2010-12-08 12:43:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::createBinEditor(quint64 addr)
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
EditorManager *editorManager = EditorManager::instance();
|
|
|
|
|
QString titlePattern = tr("Memory $");
|
|
|
|
|
IEditor *editor = editorManager->openEditorWithContents(
|
|
|
|
|
Core::Constants::K_DEFAULT_BINARY_EDITOR_ID,
|
|
|
|
|
&titlePattern);
|
2010-12-14 16:01:02 +01:00
|
|
|
editorManager->activateEditor(editor);
|
2010-12-08 12:43:11 +01:00
|
|
|
if (editor) {
|
2010-12-08 14:08:35 +01:00
|
|
|
editor->setProperty(Debugger::Constants::OPENED_BY_DEBUGGER, true);
|
|
|
|
|
editor->setProperty(Debugger::Constants::OPENED_WITH_MEMORY, true);
|
2010-12-08 12:43:11 +01:00
|
|
|
connect(editor->widget(),
|
|
|
|
|
SIGNAL(lazyDataRequested(Core::IEditor *, quint64,bool)),
|
|
|
|
|
SLOT(fetchLazyData(Core::IEditor *, quint64,bool)));
|
|
|
|
|
connect(editor->widget(),
|
|
|
|
|
SIGNAL(newWindowRequested(quint64)),
|
|
|
|
|
SLOT(createBinEditor(quint64)));
|
|
|
|
|
connect(editor->widget(),
|
|
|
|
|
SIGNAL(newRangeRequested(Core::IEditor *, quint64)),
|
|
|
|
|
SLOT(provideNewRange(Core::IEditor*,quint64)));
|
|
|
|
|
connect(editor->widget(),
|
|
|
|
|
SIGNAL(startOfFileRequested(Core::IEditor *)),
|
|
|
|
|
SLOT(handleStartOfFileRequested(Core::IEditor*)));
|
|
|
|
|
connect(editor->widget(),
|
|
|
|
|
SIGNAL(endOfFileRequested(Core::IEditor *)),
|
|
|
|
|
SLOT(handleEndOfFileRequested(Core::IEditor*)));
|
|
|
|
|
m_editors << editor;
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(), "setNewWindowRequestAllowed");
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(), "setLazyData",
|
|
|
|
|
Q_ARG(quint64, addr), Q_ARG(int, DataRange), Q_ARG(int, BinBlockSize));
|
|
|
|
|
} else {
|
|
|
|
|
showMessageBox(QMessageBox::Warning,
|
|
|
|
|
tr("No memory viewer available"),
|
|
|
|
|
tr("The memory contents cannot be shown as no viewer plugin "
|
|
|
|
|
"for binary data has been loaded."));
|
|
|
|
|
deleteLater();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::fetchLazyData(IEditor *editor, quint64 block, bool sync)
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
Q_UNUSED(sync); // FIXME: needed support for incremental searching
|
|
|
|
|
m_engine->fetchMemory(this, editor, BinBlockSize * block, BinBlockSize);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::addLazyData(QObject *editorToken, quint64 addr,
|
2010-12-08 12:43:11 +01:00
|
|
|
const QByteArray &ba)
|
|
|
|
|
{
|
|
|
|
|
IEditor *editor = qobject_cast<IEditor *>(editorToken);
|
|
|
|
|
if (editor && editor->widget()) {
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(), "addLazyData",
|
|
|
|
|
Q_ARG(quint64, addr / BinBlockSize), Q_ARG(QByteArray, ba));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::provideNewRange(IEditor *editor, quint64 address)
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(), "setLazyData",
|
|
|
|
|
Q_ARG(quint64, address), Q_ARG(int, DataRange),
|
|
|
|
|
Q_ARG(int, BinBlockSize));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Since we are not dealing with files, we take these signals to mean
|
|
|
|
|
// "move to start/end of range". This seems to make more sense than
|
|
|
|
|
// jumping to the start or end of the address space, respectively.
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::handleStartOfFileRequested(IEditor *editor)
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(),
|
|
|
|
|
"setCursorPosition", Q_ARG(int, 0));
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::handleEndOfFileRequested(IEditor *editor)
|
2010-12-08 12:43:11 +01:00
|
|
|
{
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(),
|
|
|
|
|
"setCursorPosition", Q_ARG(int, DataRange - 1));
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 12:29:32 +01:00
|
|
|
void MemoryAgent::updateContents()
|
2010-12-13 18:17:31 +01:00
|
|
|
{
|
|
|
|
|
foreach (QPointer<IEditor> editor, m_editors)
|
|
|
|
|
if (editor)
|
|
|
|
|
QMetaObject::invokeMethod(editor->widget(), "updateContents");
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-16 10:44:21 +01:00
|
|
|
bool MemoryAgent::hasVisibleEditor() const
|
|
|
|
|
{
|
|
|
|
|
QList<IEditor *> visible = EditorManager::instance()->visibleEditors();
|
|
|
|
|
foreach (QPointer<IEditor> editor, m_editors)
|
|
|
|
|
if (visible.contains(editor.data()))
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-08 12:43:11 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|