2010-12-02 15:18:07 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-12-02 15:18:07 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2010-12-02 15:18:07 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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-02 15:18:07 +01:00
|
|
|
**
|
2010-12-17 17:14:20 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2010-12-02 15:18:07 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "sourceagent.h"
|
|
|
|
|
|
|
|
|
|
#include "breakhandler.h"
|
|
|
|
|
#include "debuggerengine.h"
|
2011-04-21 15:52:51 +02:00
|
|
|
#include "debuggerinternalconstants.h"
|
2010-12-02 15:18:07 +01:00
|
|
|
#include "debuggercore.h"
|
|
|
|
|
#include "debuggerstringutils.h"
|
|
|
|
|
#include "stackframe.h"
|
|
|
|
|
#include "stackhandler.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <texteditor/basetextdocument.h>
|
|
|
|
|
#include <texteditor/basetexteditor.h>
|
|
|
|
|
#include <texteditor/basetextmark.h>
|
|
|
|
|
#include <texteditor/plaintexteditor.h>
|
|
|
|
|
#include <texteditor/texteditorconstants.h>
|
|
|
|
|
|
|
|
|
|
#include <cppeditor/cppeditorconstants.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QMetaObject>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
#include <QPointer>
|
|
|
|
|
#include <QFileInfo>
|
2010-12-02 15:18:07 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
|
#include <QTextBlock>
|
|
|
|
|
#include <QTextCursor>
|
|
|
|
|
#include <QIcon>
|
2010-12-02 15:18:07 +01:00
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class SourceAgentPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SourceAgentPrivate();
|
|
|
|
|
~SourceAgentPrivate();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
QPointer<TextEditor::ITextEditor> editor;
|
|
|
|
|
QPointer<DebuggerEngine> engine;
|
|
|
|
|
TextEditor::ITextMark *locationMark;
|
|
|
|
|
QString path;
|
|
|
|
|
QString producer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
SourceAgentPrivate::SourceAgentPrivate()
|
|
|
|
|
: editor(0)
|
2012-02-21 16:27:04 +01:00
|
|
|
, locationMark(0)
|
2011-12-21 14:02:52 +01:00
|
|
|
, producer(QLatin1String("remote"))
|
2010-12-02 15:18:07 +01:00
|
|
|
{
|
2012-02-21 16:27:04 +01:00
|
|
|
|
2010-12-02 15:18:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SourceAgentPrivate::~SourceAgentPrivate()
|
|
|
|
|
{
|
|
|
|
|
if (editor) {
|
|
|
|
|
EditorManager *editorManager = EditorManager::instance();
|
|
|
|
|
editorManager->closeEditors(QList<IEditor *>() << editor);
|
|
|
|
|
}
|
|
|
|
|
editor = 0;
|
|
|
|
|
delete locationMark;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SourceAgent::SourceAgent(DebuggerEngine *engine)
|
2012-03-14 12:42:09 +01:00
|
|
|
: d(new SourceAgentPrivate)
|
2010-12-02 15:18:07 +01:00
|
|
|
{
|
|
|
|
|
d->engine = engine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SourceAgent::~SourceAgent()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
d = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SourceAgent::setSourceProducerName(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
d->producer = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SourceAgent::setContent(const QString &filePath, const QString &content)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d, return);
|
|
|
|
|
using namespace Core;
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
|
|
|
|
d->path = filePath;
|
|
|
|
|
|
|
|
|
|
if (!d->editor) {
|
|
|
|
|
QString titlePattern = d->producer + QLatin1String(": ")
|
|
|
|
|
+ QFileInfo(filePath).fileName();
|
|
|
|
|
d->editor = qobject_cast<ITextEditor *>(
|
2012-05-08 09:43:14 +02:00
|
|
|
EditorManager::openEditorWithContents(
|
2010-12-02 15:18:07 +01:00
|
|
|
CppEditor::Constants::CPPEDITOR_ID,
|
|
|
|
|
&titlePattern, content));
|
|
|
|
|
QTC_ASSERT(d->editor, return);
|
|
|
|
|
d->editor->setProperty(Debugger::Constants::OPENED_BY_DEBUGGER, true);
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditorWidget *baseTextEdit =
|
|
|
|
|
qobject_cast<BaseTextEditorWidget *>(d->editor->widget());
|
2010-12-02 15:18:07 +01:00
|
|
|
if (baseTextEdit)
|
|
|
|
|
baseTextEdit->setRequestMarkEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-08 09:43:14 +02:00
|
|
|
EditorManager::activateEditor(d->editor);
|
2010-12-02 15:18:07 +01:00
|
|
|
|
|
|
|
|
QPlainTextEdit *plainTextEdit =
|
|
|
|
|
qobject_cast<QPlainTextEdit *>(d->editor->widget());
|
|
|
|
|
QTC_ASSERT(plainTextEdit, return);
|
|
|
|
|
plainTextEdit->setReadOnly(true);
|
|
|
|
|
|
|
|
|
|
updateLocationMarker();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SourceAgent::updateLocationMarker()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->editor, return);
|
|
|
|
|
|
2012-02-21 16:27:04 +01:00
|
|
|
if (d->locationMark)
|
|
|
|
|
d->editor->markableInterface()->removeMark(d->locationMark);
|
|
|
|
|
delete d->locationMark;
|
|
|
|
|
d->locationMark = 0;
|
2010-12-02 15:18:07 +01:00
|
|
|
if (d->engine->stackHandler()->currentFrame().file == d->path) {
|
|
|
|
|
int lineNumber = d->engine->stackHandler()->currentFrame().line;
|
2012-02-21 16:27:04 +01:00
|
|
|
d->locationMark = new TextEditor::ITextMark(lineNumber);
|
|
|
|
|
d->locationMark->setIcon(debuggerCore()->locationMarkIcon());
|
|
|
|
|
d->locationMark->setPriority(TextEditor::ITextMark::HighPriority);
|
|
|
|
|
d->editor->markableInterface()->addMark(d->locationMark);
|
2010-12-02 15:18:07 +01:00
|
|
|
QPlainTextEdit *plainTextEdit = qobject_cast<QPlainTextEdit *>(d->editor->widget());
|
|
|
|
|
QTC_ASSERT(plainTextEdit, return);
|
|
|
|
|
QTextCursor tc = plainTextEdit->textCursor();
|
|
|
|
|
QTextBlock block = tc.document()->findBlockByNumber(lineNumber - 1);
|
|
|
|
|
tc.setPosition(block.position());
|
|
|
|
|
plainTextEdit->setTextCursor(tc);
|
2012-05-08 09:43:14 +02:00
|
|
|
EditorManager::activateEditor(d->editor);
|
2010-12-02 15:18:07 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|