/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** 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. ** ** 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. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** **************************************************************************/ #include "memoryagent.h" #include "memoryview.h" #include "debuggerengine.h" #include "debuggerstartparameters.h" #include "debuggercore.h" #include "debuggerinternalconstants.h" #include #include #include #include #include #include #include #include #include #include #include using namespace Core; namespace Debugger { namespace Internal { /////////////////////////////////////////////////////////////////////// // // MemoryAgent // /////////////////////////////////////////////////////////////////////// /*! \class Debugger::Internal::MemoryAgent 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. Memory can be shown as \list \o Editor: Create an IEditor using the normal editor factory interface (m_editors) \o View: Separate top-level view consisting of a Bin Editor widget (m_view). \endlist Views are updated on the DebuggerEngine::stackFrameCompleted signal. An exception are views of class Debugger::RegisterMemoryView tracking the content pointed to by a register (eg stack pointer, instruction pointer). They are connected to the set/changed signals of the engine's register handler. \sa Debugger::MemoryView, Debugger::RegisterMemoryView */ namespace { const int DataRange = 1024 * 1024; } MemoryAgent::MemoryAgent(DebuggerEngine *engine) : QObject(engine), m_engine(engine) { QTC_CHECK(engine); connect(engine, SIGNAL(stateChanged(Debugger::DebuggerState)), this, SLOT(engineStateChanged(Debugger::DebuggerState))); connect(engine, SIGNAL(stackFrameCompleted()), this, SLOT(updateContents())); } MemoryAgent::~MemoryAgent() { closeEditors(); closeViews(); } void MemoryAgent::closeEditors() { if (m_editors.isEmpty()) return; QList editors; foreach (QPointer editor, m_editors) if (editor) editors.append(editor.data()); EditorManager::instance()->closeEditors(editors); m_editors.clear(); } void MemoryAgent::closeViews() { foreach (const QPointer &w, m_views) if (w) w->close(); m_views.clear(); } void MemoryAgent::updateMemoryView(quint64 address, quint64 length) { m_engine->fetchMemory(this, sender(), address, length); } void MemoryAgent::connectBinEditorWidget(QWidget *w) { connect(w, SIGNAL(dataRequested(Core::IEditor*,quint64)), SLOT(fetchLazyData(Core::IEditor*,quint64))); connect(w, SIGNAL(newWindowRequested(quint64)), SLOT(createBinEditor(quint64))); connect(w, SIGNAL(newRangeRequested(Core::IEditor*,quint64)), SLOT(provideNewRange(Core::IEditor*,quint64))); connect(w, SIGNAL(startOfFileRequested(Core::IEditor*)), SLOT(handleStartOfFileRequested(Core::IEditor*))); connect(w, SIGNAL(endOfFileRequested(Core::IEditor *)), SLOT(handleEndOfFileRequested(Core::IEditor*))); connect(w, SIGNAL(dataChanged(Core::IEditor*,quint64,QByteArray)), SLOT(handleDataChanged(Core::IEditor*,quint64,QByteArray))); } bool MemoryAgent::doCreateBinEditor(quint64 addr, unsigned flags, const QList &ml, const QPoint &pos, QString title, QWidget *parent) { const bool readOnly = (flags & DebuggerEngine::MemoryReadOnly) != 0; if (title.isEmpty()) title = tr("Memory at 0x%1").arg(addr, 0, 16); // Separate view? if (flags & DebuggerEngine::MemoryView) { // Ask BIN editor plugin for factory service and have it create a bin editor widget. QWidget *binEditor = 0; if (QObject *factory = ExtensionSystem::PluginManager::instance()->getObjectByClassName("BINEditor::BinEditorWidgetFactory")) binEditor = ExtensionSystem::invoke(factory, "createWidget", (QWidget *)0); if (!binEditor) return false; connectBinEditorWidget(binEditor); MemoryView::setBinEditorReadOnly(binEditor, readOnly); MemoryView::setBinEditorNewWindowRequestAllowed(binEditor, true); MemoryView *topLevel = 0; // Memory view tracking register value, providing its own updating mechanism. if (flags & DebuggerEngine::MemoryTrackRegister) { RegisterMemoryView *rmv = new RegisterMemoryView(binEditor, parent); rmv->init(m_engine->registerHandler(), int(addr)); topLevel = rmv; } else { // Ordinary memory view MemoryView::setBinEditorMarkup(binEditor, ml); MemoryView::setBinEditorRange(binEditor, addr, MemoryAgent::DataRange, MemoryAgent::BinBlockSize); topLevel = new MemoryView(binEditor, parent); topLevel->setWindowTitle(title); } m_views << topLevel; topLevel->move(pos); topLevel->show(); return true; } // Editor: Register tracking not supported. QTC_ASSERT(!(flags & DebuggerEngine::MemoryTrackRegister), return false; ) EditorManager *editorManager = EditorManager::instance(); if (!title.endsWith(QLatin1Char('$'))) title.append(QLatin1String(" $")); IEditor *editor = editorManager->openEditorWithContents( Core::Constants::K_DEFAULT_BINARY_EDITOR_ID, &title); if (!editor) return false; editor->setProperty(Constants::OPENED_BY_DEBUGGER, QVariant(true)); editor->setProperty(Constants::OPENED_WITH_MEMORY, QVariant(true)); QWidget *editorBinEditor = editor->widget(); connectBinEditorWidget(editorBinEditor); MemoryView::setBinEditorReadOnly(editorBinEditor, readOnly); MemoryView::setBinEditorNewWindowRequestAllowed(editorBinEditor, true); MemoryView::setBinEditorRange(editorBinEditor, addr, MemoryAgent::DataRange, MemoryAgent::BinBlockSize); MemoryView::setBinEditorMarkup(editorBinEditor, ml); m_editors << editor; editorManager->activateEditor(editor); return true; } void MemoryAgent::createBinEditor(quint64 addr, unsigned flags, const QList &ml, const QPoint &pos, const QString &title, QWidget *parent) { if (!doCreateBinEditor(addr, flags, ml, pos, title, parent)) 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.")); } void MemoryAgent::createBinEditor(quint64 addr) { createBinEditor(addr, 0, QList(), QPoint(), QString(), 0); } void MemoryAgent::fetchLazyData(IEditor *, quint64 block) { m_engine->fetchMemory(this, sender(), BinBlockSize * block, BinBlockSize); } void MemoryAgent::addLazyData(QObject *editorToken, quint64 addr, const QByteArray &ba) { QWidget *w = qobject_cast(editorToken); QTC_ASSERT(w, return ;) MemoryView::binEditorAddData(w, addr, ba); } void MemoryAgent::provideNewRange(IEditor *, quint64 address) { QWidget *w = qobject_cast(sender()); QTC_ASSERT(w, return ;) MemoryView::setBinEditorRange(w, address, DataRange, 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. void MemoryAgent::handleStartOfFileRequested(IEditor *) { QWidget *w = qobject_cast(sender()); QTC_ASSERT(w, return ;) MemoryView::binEditorSetCursorPosition(w, 0); } void MemoryAgent::handleEndOfFileRequested(IEditor *) { QWidget *w = qobject_cast(sender()); QTC_ASSERT(w, return ;) MemoryView::binEditorSetCursorPosition(w, DataRange - 1); } void MemoryAgent::handleDataChanged(IEditor *, quint64 addr, const QByteArray &data) { m_engine->changeMemory(this, sender(), addr, data); } void MemoryAgent::updateContents() { foreach (const QPointer &e, m_editors) if (e) MemoryView::binEditorUpdateContents(e->widget()); // Update all views except register views, which trigger on // register value set/changed. foreach (const QPointer &w, m_views) if (w && !qobject_cast(w.data())) w->updateContents(); } bool MemoryAgent::hasVisibleEditor() const { QList visible = EditorManager::instance()->visibleEditors(); foreach (QPointer editor, m_editors) if (visible.contains(editor.data())) return true; return false; } void MemoryAgent::engineStateChanged(Debugger::DebuggerState s) { switch (s) { case DebuggerFinished: closeViews(); foreach (const QPointer &editor, m_editors) if (editor) { // Prevent triggering updates, etc. MemoryView::setBinEditorReadOnly(editor->widget(), true); editor->widget()->disconnect(this); } break; default: break; } } bool MemoryAgent::isBigEndian(const ProjectExplorer::Abi &a) { switch (a.architecture()) { case ProjectExplorer::Abi::UnknownArchitecture: case ProjectExplorer::Abi::X86Architecture: case ProjectExplorer::Abi::ItaniumArchitecture: // Configureable case ProjectExplorer::Abi::ArmArchitecture: // Configureable case ProjectExplorer::Abi::ShArchitecture: // Configureable break; case ProjectExplorer::Abi::MipsArchitecture: // Configureable case ProjectExplorer::Abi::PowerPCArchitecture: // Configureable return true; } return false; } // Read a POD variable from a memory location. Swap bytes if endianness differs template POD readPod(const unsigned char *data, bool swapByteOrder) { POD pod = 0; if (swapByteOrder) { unsigned char *target = reinterpret_cast(&pod) + sizeof(POD) - 1; for (size_t i = 0; i < sizeof(POD); i++) *target-- = data[i]; } else { std::memcpy(&pod, data, sizeof(POD)); } return pod; } // Read memory from debuggee quint64 MemoryAgent::readInferiorPointerValue(const unsigned char *data, const ProjectExplorer::Abi &a) { const bool swapByteOrder = isBigEndian(a) != isBigEndian(ProjectExplorer::Abi::hostAbi()); return a.wordWidth() == 32 ? readPod(data, swapByteOrder) : readPod(data, swapByteOrder); } } // namespace Internal } // namespace Debugger ;