2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01: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).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 15:08:31 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "breakhandler.h"
|
2010-10-25 14:00:19 +02:00
|
|
|
#include "breakpointmarker.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-09-23 16:11:25 +02:00
|
|
|
#include "debuggeractions.h"
|
2010-11-10 11:39:01 +01:00
|
|
|
#include "debuggercore.h"
|
2010-11-15 14:27:06 +01:00
|
|
|
#include "debuggerengine.h"
|
2010-05-07 15:16:31 +02:00
|
|
|
#include "debuggerstringutils.h"
|
2010-11-24 11:44:43 +01:00
|
|
|
#include "stackframe.h"
|
2009-08-14 13:04:05 +02:00
|
|
|
|
2010-03-26 08:52:49 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2008-12-09 16:18:28 +01:00
|
|
|
|
2010-10-18 14:54:42 +02:00
|
|
|
#include <QtCore/QDir>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QFileInfo>
|
2010-11-15 19:07:47 +01:00
|
|
|
#include <QtCore/QTimerEvent>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-05 13:35:31 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// BreakHandler
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2010-11-10 11:39:01 +01:00
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2010-11-04 09:54:23 +01:00
|
|
|
BreakHandler::BreakHandler()
|
2010-11-18 14:57:00 +01:00
|
|
|
: m_syncTimerId(-1)
|
2010-11-04 09:54:23 +01:00
|
|
|
{}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-04 11:37:43 +01:00
|
|
|
BreakHandler::~BreakHandler()
|
2010-11-10 16:33:11 +01:00
|
|
|
{}
|
2008-12-04 11:37:43 +01:00
|
|
|
|
2010-11-18 14:57:00 +01:00
|
|
|
QIcon BreakHandler::breakpointIcon()
|
|
|
|
|
{
|
|
|
|
|
static QIcon icon(_(":/debugger/images/breakpoint_16.png"));
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QIcon BreakHandler::disabledBreakpointIcon()
|
|
|
|
|
{
|
|
|
|
|
static QIcon icon(_(":/debugger/images/breakpoint_disabled_16.png"));
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-26 12:30:05 +01:00
|
|
|
QIcon BreakHandler::pendingBreakpointIcon()
|
2010-11-18 14:57:00 +01:00
|
|
|
{
|
|
|
|
|
static QIcon icon(_(":/debugger/images/breakpoint_pending_16.png"));
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-26 12:30:05 +01:00
|
|
|
QIcon BreakHandler::watchpointIcon()
|
|
|
|
|
{
|
|
|
|
|
static QIcon icon(_(":/debugger/images/watchpoint.png"));
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 14:57:00 +01:00
|
|
|
QIcon BreakHandler::emptyIcon()
|
|
|
|
|
{
|
|
|
|
|
static QIcon icon(_(":/debugger/images/breakpoint_pending_16.png"));
|
|
|
|
|
//static QIcon icon(_(":/debugger/images/watchpoint.png"));
|
|
|
|
|
//static QIcon icon(_(":/debugger/images/debugger_empty_14.png"));
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
int BreakHandler::columnCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
2010-04-29 18:36:18 +02:00
|
|
|
return parent.isValid() ? 0 : 8;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BreakHandler::rowCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
return parent.isValid() ? 0 : m_storage.size();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
static inline bool fileNameMatch(const QString &f1, const QString &f2)
|
2010-03-26 08:52:49 +01:00
|
|
|
{
|
2010-11-10 16:33:11 +01:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
return f1.compare(f2, Qt::CaseInsensitive) == 0;
|
|
|
|
|
#else
|
|
|
|
|
return f1 == f2;
|
|
|
|
|
#endif
|
2010-03-26 08:52:49 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:48:17 +01:00
|
|
|
static bool isSimilarTo(const BreakpointParameters &data, const BreakpointResponse &needle)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-11-10 16:33:11 +01:00
|
|
|
// Clear hit.
|
|
|
|
|
// Clear miss.
|
2010-11-16 11:48:17 +01:00
|
|
|
if (needle.type != UnknownType && data.type != UnknownType
|
|
|
|
|
&& data.type != needle.type)
|
2010-11-10 16:33:11 +01:00
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
// Clear hit.
|
2010-11-16 11:48:17 +01:00
|
|
|
if (data.address && data.address == needle.address)
|
2010-11-10 16:33:11 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// At least at a position we were looking for.
|
|
|
|
|
// FIXME: breaks multiple breakpoints at the same location
|
2010-11-16 11:48:17 +01:00
|
|
|
if (!data.fileName.isEmpty()
|
|
|
|
|
&& fileNameMatch(data.fileName, needle.fileName)
|
|
|
|
|
&& data.lineNumber == needle.lineNumber)
|
2010-11-10 16:33:11 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// At least at a position we were looking for.
|
|
|
|
|
// FIXME: breaks multiple breakpoints at the same location
|
2010-11-16 11:48:17 +01:00
|
|
|
if (!data.fileName.isEmpty()
|
|
|
|
|
&& fileNameMatch(data.fileName, needle.fileName)
|
|
|
|
|
&& data.lineNumber == needle.lineNumber)
|
2010-11-10 16:33:11 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId BreakHandler::findSimilarBreakpoint(const BreakpointResponse &needle) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-02-11 17:29:10 +01:00
|
|
|
// Search a breakpoint we might refer to.
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it) {
|
|
|
|
|
const BreakpointId id = it.key();
|
2010-11-16 11:48:17 +01:00
|
|
|
const BreakpointParameters &data = it->data;
|
2010-11-15 14:12:05 +01:00
|
|
|
const BreakpointResponse &response = it->response;
|
2010-11-24 11:44:43 +01:00
|
|
|
//qDebug() << "COMPARING " << data.toString() << " WITH " << needle.toString();
|
2010-11-15 17:04:29 +01:00
|
|
|
if (response.number && response.number == needle.number)
|
2010-11-10 16:33:11 +01:00
|
|
|
return id;
|
|
|
|
|
|
|
|
|
|
if (isSimilarTo(data, needle))
|
|
|
|
|
return id;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId BreakHandler::findBreakpointByNumber(int bpNumber) const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-15 17:04:29 +01:00
|
|
|
if (it->response.number == bpNumber)
|
2010-11-10 16:33:11 +01:00
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId BreakHandler::findBreakpointByFunction(const QString &functionName) const
|
2010-05-19 17:34:47 +02:00
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-16 11:48:17 +01:00
|
|
|
if (it->data.functionName == functionName)
|
2010-11-10 16:33:11 +01:00
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointId BreakHandler::findBreakpointByAddress(quint64 address) const
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-16 11:48:17 +01:00
|
|
|
if (it->data.address == address)
|
2010-11-10 16:33:11 +01:00
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointId BreakHandler::findBreakpointByFileAndLine(const QString &fileName,
|
|
|
|
|
int lineNumber, bool useMarkerPosition)
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-15 19:05:31 +01:00
|
|
|
if (it->isLocatedAt(fileName, lineNumber, useMarkerPosition))
|
2010-11-10 16:33:11 +01:00
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:06:09 +01:00
|
|
|
const BreakpointParameters &BreakHandler::breakpointData(BreakpointId id) const
|
2010-11-15 15:24:27 +01:00
|
|
|
{
|
2010-11-16 11:06:09 +01:00
|
|
|
static BreakpointParameters dummy;
|
2010-11-15 15:24:27 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
2010-11-16 11:06:09 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return dummy);
|
2010-11-16 11:48:17 +01:00
|
|
|
return it->data;
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointId BreakHandler::findWatchpointByAddress(quint64 address) const
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-16 11:48:17 +01:00
|
|
|
if (it->data.isWatchpoint() && it->data.address == address)
|
2010-11-10 16:33:11 +01:00
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::setWatchpointByAddress(quint64 address)
|
|
|
|
|
{
|
|
|
|
|
const int id = findWatchpointByAddress(address);
|
2010-12-01 11:52:18 +01:00
|
|
|
if (id) {
|
2010-11-10 16:33:11 +01:00
|
|
|
qDebug() << "WATCHPOINT EXISTS";
|
2010-12-01 11:52:18 +01:00
|
|
|
// removeBreakpoint(index);
|
|
|
|
|
return;
|
2010-05-19 17:34:47 +02:00
|
|
|
}
|
2010-12-01 11:52:18 +01:00
|
|
|
BreakpointParameters data(Watchpoint);
|
|
|
|
|
data.address = address;
|
|
|
|
|
appendBreakpoint(data);
|
2010-05-19 17:34:47 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
bool BreakHandler::hasWatchpointAt(quint64 address) const
|
2010-05-20 19:35:34 +02:00
|
|
|
{
|
2010-12-01 11:52:18 +01:00
|
|
|
return findWatchpointByAddress(address);
|
2010-05-20 19:35:34 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void BreakHandler::saveBreakpoints()
|
|
|
|
|
{
|
2010-06-16 11:08:54 +02:00
|
|
|
//qDebug() << "SAVING BREAKPOINTS...";
|
2010-11-10 11:39:01 +01:00
|
|
|
QTC_ASSERT(debuggerCore(), return);
|
2008-12-02 12:01:29 +01:00
|
|
|
QList<QVariant> list;
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it) {
|
2010-11-16 11:48:17 +01:00
|
|
|
const BreakpointParameters &data = it->data;
|
2008-12-02 12:01:29 +01:00
|
|
|
QMap<QString, QVariant> map;
|
2010-05-07 15:16:31 +02:00
|
|
|
// Do not persist Watchpoints.
|
2010-11-15 18:48:58 +01:00
|
|
|
if (data.isWatchpoint())
|
|
|
|
|
continue;
|
2010-11-16 11:48:17 +01:00
|
|
|
if (data.type != BreakpointByFileAndLine)
|
|
|
|
|
map.insert(_("type"), data.type);
|
|
|
|
|
if (!data.fileName.isEmpty())
|
|
|
|
|
map.insert(_("filename"), data.fileName);
|
|
|
|
|
if (data.lineNumber)
|
|
|
|
|
map.insert(_("linenumber"), data.lineNumber);
|
|
|
|
|
if (!data.functionName.isEmpty())
|
|
|
|
|
map.insert(_("funcname"), data.functionName);
|
|
|
|
|
if (data.address)
|
|
|
|
|
map.insert(_("address"), data.address);
|
|
|
|
|
if (!data.condition.isEmpty())
|
|
|
|
|
map.insert(_("condition"), data.condition);
|
|
|
|
|
if (data.ignoreCount)
|
|
|
|
|
map.insert(_("ignorecount"), data.ignoreCount);
|
2010-11-30 13:39:01 +01:00
|
|
|
if (data.threadSpec)
|
2010-11-16 11:48:17 +01:00
|
|
|
map.insert(_("threadspec"), data.threadSpec);
|
|
|
|
|
if (!data.enabled)
|
2010-05-07 15:16:31 +02:00
|
|
|
map.insert(_("disabled"), _("1"));
|
2010-11-16 11:48:17 +01:00
|
|
|
if (data.useFullPath)
|
2010-05-07 15:16:31 +02:00
|
|
|
map.insert(_("usefullpath"), _("1"));
|
2008-12-02 12:01:29 +01:00
|
|
|
list.append(map);
|
|
|
|
|
}
|
2010-11-10 11:39:01 +01:00
|
|
|
debuggerCore()->setSessionValue("Breakpoints", list);
|
2010-06-16 11:08:54 +02:00
|
|
|
//qDebug() << "SAVED BREAKPOINTS" << this << list.size();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::loadBreakpoints()
|
|
|
|
|
{
|
2010-11-10 11:39:01 +01:00
|
|
|
QTC_ASSERT(debuggerCore(), return);
|
2010-06-16 11:08:54 +02:00
|
|
|
//qDebug() << "LOADING BREAKPOINTS...";
|
2010-11-10 11:39:01 +01:00
|
|
|
QVariant value = debuggerCore()->sessionValue("Breakpoints");
|
2008-12-02 12:01:29 +01:00
|
|
|
QList<QVariant> list = value.toList();
|
2010-11-10 16:33:11 +01:00
|
|
|
//clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
foreach (const QVariant &var, list) {
|
|
|
|
|
const QMap<QString, QVariant> map = var.toMap();
|
2010-11-16 10:50:11 +01:00
|
|
|
BreakpointParameters data(BreakpointByFileAndLine);
|
2010-05-07 15:16:31 +02:00
|
|
|
QVariant v = map.value(_("filename"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.fileName = v.toString();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("linenumber"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.lineNumber = v.toString().toInt();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("condition"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.condition = v.toString().toLatin1();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("address"));
|
|
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.address = v.toString().toULongLong();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("ignorecount"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.ignoreCount = v.toString().toInt();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("threadspec"));
|
2010-04-29 18:36:18 +02:00
|
|
|
if (v.isValid())
|
2010-11-30 13:39:01 +01:00
|
|
|
data.threadSpec = v.toString().toInt();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("funcname"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.functionName = v.toString();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("disabled"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.enabled = !v.toInt();
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("usefullpath"));
|
2009-06-30 15:50:56 +02:00
|
|
|
if (v.isValid())
|
2010-11-16 10:50:11 +01:00
|
|
|
data.useFullPath = bool(v.toInt());
|
2010-05-07 15:16:31 +02:00
|
|
|
v = map.value(_("type"));
|
2010-11-15 17:25:42 +01:00
|
|
|
if (v.isValid() && v.toInt() != UnknownType)
|
2010-11-16 10:50:11 +01:00
|
|
|
data.type = BreakpointType(v.toInt());
|
2010-11-10 16:33:11 +01:00
|
|
|
appendBreakpoint(data);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-06-16 11:08:54 +02:00
|
|
|
//qDebug() << "LOADED BREAKPOINTS" << this << list.size();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::updateMarkers()
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
|
|
|
|
updateMarker(it.key());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
void BreakHandler::updateMarker(BreakpointId id)
|
2010-10-25 14:00:19 +02:00
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
2010-11-15 14:12:05 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2010-11-18 13:38:58 +01:00
|
|
|
QString markerFileName = it->markerFileName();
|
|
|
|
|
int markerLineNumber = it->markerLineNumber();
|
|
|
|
|
if (it->marker && (markerFileName != it->marker->fileName()
|
|
|
|
|
|| markerLineNumber != it->marker->lineNumber()))
|
2010-11-15 14:27:06 +01:00
|
|
|
it->destroyMarker();
|
2010-10-25 14:00:19 +02:00
|
|
|
|
2010-11-18 13:38:58 +01:00
|
|
|
if (!it->marker && !markerFileName.isEmpty() && markerLineNumber > 0)
|
|
|
|
|
it->marker = new BreakpointMarker(id, markerFileName, markerLineNumber);
|
2010-10-25 14:00:19 +02:00
|
|
|
}
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QVariant BreakHandler::headerData(int section,
|
|
|
|
|
Qt::Orientation orientation, int role) const
|
|
|
|
|
{
|
|
|
|
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
|
|
|
|
|
static QString headers[] = {
|
|
|
|
|
tr("Number"), tr("Function"), tr("File"), tr("Line"),
|
2010-11-26 12:30:05 +01:00
|
|
|
tr("Address"), tr("Condition"), tr("Ignore"), tr("Threads")
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
return headers[section];
|
|
|
|
|
}
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId BreakHandler::findBreakpointByIndex(const QModelIndex &index) const
|
|
|
|
|
{
|
|
|
|
|
int r = index.row();
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for (int i = 0; it != et; ++it, ++i)
|
|
|
|
|
if (i == r)
|
|
|
|
|
return it.key();
|
2010-12-01 11:52:18 +01:00
|
|
|
return BreakpointId();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-15 15:30:39 +01:00
|
|
|
BreakpointIds BreakHandler::findBreakpointsByIndex(const QList<QModelIndex> &list) const
|
|
|
|
|
{
|
2010-11-24 11:44:43 +01:00
|
|
|
QSet<BreakpointId> ids;
|
2010-11-15 15:30:39 +01:00
|
|
|
foreach (const QModelIndex &index, list)
|
2010-11-24 11:44:43 +01:00
|
|
|
ids.insert(findBreakpointByIndex(index));
|
|
|
|
|
return ids.toList();
|
2010-11-15 15:30:39 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 13:52:21 +01:00
|
|
|
Qt::ItemFlags BreakHandler::flags(const QModelIndex &index) const
|
|
|
|
|
{
|
|
|
|
|
// switch (index.column()) {
|
|
|
|
|
// //case 0:
|
|
|
|
|
// // return Qt::ItemIsUserCheckable | Qt::ItemIsEnabled;
|
|
|
|
|
// default:
|
|
|
|
|
return QAbstractTableModel::flags(index);
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-14 13:00:02 +01:00
|
|
|
QString BreakHandler::displayFromThreadSpec(int spec)
|
2010-11-30 13:39:01 +01:00
|
|
|
{
|
2010-12-14 13:00:02 +01:00
|
|
|
return spec == -1 ? BreakHandler::tr("(all)") : QString::number(spec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BreakHandler::threadSpecFromDisplay(const QString &str)
|
|
|
|
|
{
|
|
|
|
|
bool ok = false;
|
|
|
|
|
int result = str.toInt(&ok);
|
|
|
|
|
return ok ? result : -1;
|
2010-11-30 13:39:01 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QVariant BreakHandler::data(const QModelIndex &mi, int role) const
|
|
|
|
|
{
|
|
|
|
|
static const QString empty = QString(QLatin1Char('-'));
|
|
|
|
|
|
2010-11-15 14:12:05 +01:00
|
|
|
if (!mi.isValid())
|
|
|
|
|
return QVariant();
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId id = findBreakpointByIndex(mi);
|
2010-11-18 14:57:00 +01:00
|
|
|
//qDebug() << "DATA: " << id << role << mi.column();
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
2010-11-15 14:12:05 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return QVariant());
|
2010-11-16 11:48:17 +01:00
|
|
|
const BreakpointParameters &data = it->data;
|
2010-11-15 14:12:05 +01:00
|
|
|
const BreakpointResponse &response = it->response;
|
2010-06-16 11:08:54 +02:00
|
|
|
|
2010-11-25 15:01:51 +01:00
|
|
|
bool orig = false;
|
|
|
|
|
switch (it->state) {
|
|
|
|
|
case BreakpointInsertRequested:
|
|
|
|
|
case BreakpointInsertProceeding:
|
|
|
|
|
case BreakpointChangeRequested:
|
|
|
|
|
case BreakpointChangeProceeding:
|
|
|
|
|
case BreakpointInserted:
|
|
|
|
|
case BreakpointRemoveRequested:
|
|
|
|
|
case BreakpointRemoveProceeding:
|
|
|
|
|
break;
|
|
|
|
|
case BreakpointNew:
|
|
|
|
|
case BreakpointDead:
|
|
|
|
|
orig = true;
|
|
|
|
|
break;
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
switch (mi.column()) {
|
|
|
|
|
case 0:
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
2010-11-15 16:58:23 +01:00
|
|
|
return QString::number(id);
|
2010-11-15 17:04:29 +01:00
|
|
|
//return QString("%1 - %2").arg(id).arg(response.number);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-11-18 14:57:00 +01:00
|
|
|
if (role == Qt::DecorationRole)
|
|
|
|
|
return it->icon();
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
2010-11-18 14:57:00 +01:00
|
|
|
if (!response.functionName.isEmpty())
|
|
|
|
|
return response.functionName;
|
|
|
|
|
if (!data.functionName.isEmpty())
|
|
|
|
|
return data.functionName;
|
|
|
|
|
return empty;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
2010-11-18 14:57:00 +01:00
|
|
|
QString str;
|
|
|
|
|
if (!response.fileName.isEmpty())
|
|
|
|
|
str = response.fileName;
|
|
|
|
|
if (str.isEmpty() && !data.fileName.isEmpty())
|
2010-11-18 15:47:50 +01:00
|
|
|
str = data.fileName;
|
2010-11-18 14:57:00 +01:00
|
|
|
if (str.isEmpty()) {
|
|
|
|
|
QString s = QFileInfo(str).fileName();
|
|
|
|
|
if (!s.isEmpty())
|
|
|
|
|
str = s;
|
|
|
|
|
}
|
2010-02-10 11:45:40 +01:00
|
|
|
// FIXME: better?
|
2010-11-18 13:38:58 +01:00
|
|
|
//if (data.multiple && str.isEmpty() && !response.fileName.isEmpty())
|
|
|
|
|
// str = response.fileName;
|
2010-11-18 14:57:00 +01:00
|
|
|
if (!str.isEmpty())
|
2010-12-14 09:57:14 +01:00
|
|
|
return QDir::toNativeSeparators(str);
|
2010-11-18 14:57:00 +01:00
|
|
|
return empty;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
2010-11-18 14:57:00 +01:00
|
|
|
if (response.lineNumber > 0)
|
|
|
|
|
return response.lineNumber;
|
|
|
|
|
if (data.lineNumber > 0)
|
|
|
|
|
return data.lineNumber;
|
|
|
|
|
return empty;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-04-29 18:36:18 +02:00
|
|
|
if (role == Qt::UserRole + 1)
|
2010-11-16 11:48:17 +01:00
|
|
|
return data.lineNumber;
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
|
|
|
|
case 4:
|
2010-11-26 12:30:05 +01:00
|
|
|
if (role == Qt::DisplayRole) {
|
|
|
|
|
QString displayValue;
|
|
|
|
|
const quint64 address = orig ? data.address : response.address;
|
|
|
|
|
if (address)
|
|
|
|
|
displayValue += QString::fromAscii("0x%1").arg(address, 0, 16);
|
|
|
|
|
if (!response.extra.isEmpty()) {
|
|
|
|
|
if (!displayValue.isEmpty())
|
|
|
|
|
displayValue += QLatin1Char(' ');
|
|
|
|
|
displayValue += QString::fromAscii(response.extra);
|
|
|
|
|
}
|
|
|
|
|
return displayValue;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
2008-12-02 12:01:29 +01:00
|
|
|
if (role == Qt::DisplayRole)
|
2010-11-25 15:01:51 +01:00
|
|
|
return orig ? data.condition : response.condition;
|
2008-12-02 12:01:29 +01:00
|
|
|
if (role == Qt::ToolTipRole)
|
|
|
|
|
return tr("Breakpoint will only be hit if this condition is met.");
|
2010-04-29 18:36:18 +02:00
|
|
|
if (role == Qt::UserRole + 1)
|
2010-11-16 11:48:17 +01:00
|
|
|
return data.condition;
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
2010-11-26 12:30:05 +01:00
|
|
|
case 6:
|
2010-09-21 14:26:45 +02:00
|
|
|
if (role == Qt::DisplayRole) {
|
2010-11-10 16:33:11 +01:00
|
|
|
const int ignoreCount =
|
2010-11-25 15:01:51 +01:00
|
|
|
orig ? data.ignoreCount : response.ignoreCount;
|
2010-09-21 14:26:45 +02:00
|
|
|
return ignoreCount ? QVariant(ignoreCount) : QVariant(QString());
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
if (role == Qt::ToolTipRole)
|
|
|
|
|
return tr("Breakpoint will only be hit after being ignored so many times.");
|
2010-04-29 18:36:18 +02:00
|
|
|
if (role == Qt::UserRole + 1)
|
2010-11-16 11:48:17 +01:00
|
|
|
return data.ignoreCount;
|
2010-06-11 13:39:47 +10:00
|
|
|
break;
|
2010-11-26 12:30:05 +01:00
|
|
|
case 7:
|
2010-11-30 13:39:01 +01:00
|
|
|
if (role == Qt::DisplayRole)
|
2010-12-14 13:00:02 +01:00
|
|
|
return displayFromThreadSpec(orig ? data.threadSpec : response.threadSpec);
|
2010-04-29 18:36:18 +02:00
|
|
|
if (role == Qt::ToolTipRole)
|
|
|
|
|
return tr("Breakpoint will only be hit in the specified thread(s).");
|
|
|
|
|
if (role == Qt::UserRole + 1)
|
2010-12-14 13:00:02 +01:00
|
|
|
return displayFromThreadSpec(data.threadSpec);
|
2010-06-11 13:39:47 +10:00
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
if (role == Qt::ToolTipRole)
|
2010-11-10 16:33:11 +01:00
|
|
|
return debuggerCore()->boolSetting(UseToolTipsInBreakpointsView)
|
2010-11-15 14:27:06 +01:00
|
|
|
? QVariant(it->toToolTip()) : QVariant();
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
#define GETTER(type, getter) \
|
|
|
|
|
type BreakHandler::getter(BreakpointId id) const \
|
|
|
|
|
{ \
|
2010-11-15 14:12:05 +01:00
|
|
|
ConstIterator it = m_storage.find(id); \
|
2010-11-15 15:05:39 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), \
|
|
|
|
|
qDebug() << "ID" << id << "NOT KNOWN"; \
|
|
|
|
|
return type()); \
|
2010-11-16 11:48:17 +01:00
|
|
|
return it->data.getter; \
|
2009-04-28 15:08:52 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 11:48:17 +01:00
|
|
|
#define SETTER(type, getter, setter) \
|
2010-11-10 16:33:11 +01:00
|
|
|
void BreakHandler::setter(BreakpointId id, const type &value) \
|
|
|
|
|
{ \
|
2010-11-15 14:12:05 +01:00
|
|
|
Iterator it = m_storage.find(id); \
|
2010-11-15 15:05:39 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), \
|
|
|
|
|
qDebug() << "ID" << id << "NOT KNOWN"; return); \
|
2010-11-16 11:48:17 +01:00
|
|
|
if (it->data.getter == value) \
|
2010-11-15 16:22:51 +01:00
|
|
|
return; \
|
2010-11-16 11:48:17 +01:00
|
|
|
it->data.getter = value; \
|
2010-11-15 16:22:51 +01:00
|
|
|
it->state = BreakpointChangeRequested; \
|
|
|
|
|
scheduleSynchronization(); \
|
2010-09-28 13:14:14 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
#define PROPERTY(type, getter, setter) \
|
|
|
|
|
GETTER(type, getter) \
|
2010-11-16 11:48:17 +01:00
|
|
|
SETTER(type, getter, setter)
|
2009-05-12 14:28:27 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
PROPERTY(bool, useFullPath, setUseFullPath)
|
|
|
|
|
PROPERTY(QString, fileName, setFileName)
|
|
|
|
|
PROPERTY(QString, functionName, setFunctionName)
|
|
|
|
|
PROPERTY(BreakpointType, type, setType)
|
2010-11-30 13:39:01 +01:00
|
|
|
PROPERTY(int, threadSpec, setThreadSpec)
|
2010-11-10 16:33:11 +01:00
|
|
|
PROPERTY(QByteArray, condition, setCondition)
|
2010-11-18 17:53:42 +01:00
|
|
|
GETTER(int, lineNumber)
|
2010-11-10 16:33:11 +01:00
|
|
|
PROPERTY(quint64, address, setAddress)
|
2010-11-15 12:32:51 +01:00
|
|
|
PROPERTY(int, ignoreCount, setIgnoreCount)
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2010-11-15 15:05:39 +01:00
|
|
|
bool BreakHandler::isEnabled(BreakpointId id) const
|
|
|
|
|
{
|
|
|
|
|
ConstIterator it = m_storage.find(id);
|
2010-11-15 17:04:29 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return false);
|
2010-11-16 11:48:17 +01:00
|
|
|
return it->data.enabled;
|
2010-11-15 15:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::setEnabled(BreakpointId id, bool on)
|
|
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
|
|
|
|
//qDebug() << "SET ENABLED: " << id << it->data.isEnabled() << on;
|
2010-11-16 11:48:17 +01:00
|
|
|
if (it->data.enabled == on)
|
|
|
|
|
return;
|
|
|
|
|
it->data.enabled = on;
|
|
|
|
|
it->destroyMarker();
|
|
|
|
|
it->state = BreakpointChangeRequested;
|
|
|
|
|
updateMarker(id);
|
|
|
|
|
scheduleSynchronization();
|
2010-11-15 15:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-15 19:05:31 +01:00
|
|
|
void BreakHandler::setMarkerFileAndLine(BreakpointId id,
|
|
|
|
|
const QString &fileName, int lineNumber)
|
|
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-18 13:38:58 +01:00
|
|
|
if (it->response.fileName == fileName && it->response.lineNumber == lineNumber)
|
2010-11-18 12:30:56 +01:00
|
|
|
return;
|
|
|
|
|
it->response.fileName = fileName;
|
|
|
|
|
it->response.lineNumber = lineNumber;
|
2010-11-18 14:57:00 +01:00
|
|
|
it->destroyMarker();
|
2010-11-15 19:05:31 +01:00
|
|
|
updateMarker(id);
|
2010-11-18 14:57:00 +01:00
|
|
|
emit layoutChanged();
|
2010-11-15 19:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-15 14:12:05 +01:00
|
|
|
BreakpointState BreakHandler::state(BreakpointId id) const
|
|
|
|
|
{
|
|
|
|
|
ConstIterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return BreakpointDead);
|
|
|
|
|
return it->state;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 13:52:21 +01:00
|
|
|
DebuggerEngine *BreakHandler::engine(BreakpointId id) const
|
|
|
|
|
{
|
|
|
|
|
ConstIterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return 0);
|
|
|
|
|
return it->engine;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::setEngine(BreakpointId id, DebuggerEngine *value)
|
|
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
|
|
|
|
QTC_ASSERT(it->state == BreakpointNew, /**/);
|
|
|
|
|
QTC_ASSERT(!it->engine, return);
|
|
|
|
|
it->engine = value;
|
|
|
|
|
it->state = BreakpointInsertRequested;
|
2010-11-18 14:57:00 +01:00
|
|
|
it->response = BreakpointResponse();
|
2010-11-18 15:47:50 +01:00
|
|
|
it->response.fileName = it->data.fileName;
|
2010-11-16 13:52:21 +01:00
|
|
|
updateMarker(id);
|
|
|
|
|
scheduleSynchronization();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool isAllowedTransition(BreakpointState from, BreakpointState to)
|
|
|
|
|
{
|
|
|
|
|
switch (from) {
|
|
|
|
|
case BreakpointNew:
|
|
|
|
|
return to == BreakpointInsertRequested;
|
|
|
|
|
case BreakpointInsertRequested:
|
|
|
|
|
return to == BreakpointInsertProceeding;
|
|
|
|
|
case BreakpointInsertProceeding:
|
|
|
|
|
return to == BreakpointInserted
|
2010-11-18 12:30:56 +01:00
|
|
|
|| to == BreakpointDead
|
|
|
|
|
|| to == BreakpointChangeRequested;
|
2010-11-16 13:52:21 +01:00
|
|
|
case BreakpointChangeRequested:
|
|
|
|
|
return to == BreakpointChangeProceeding;
|
|
|
|
|
case BreakpointChangeProceeding:
|
|
|
|
|
return to == BreakpointInserted
|
|
|
|
|
|| to == BreakpointDead;
|
|
|
|
|
case BreakpointInserted:
|
2010-11-16 16:10:55 +01:00
|
|
|
return to == BreakpointChangeRequested
|
|
|
|
|
|| to == BreakpointRemoveRequested;
|
2010-11-16 13:52:21 +01:00
|
|
|
case BreakpointRemoveRequested:
|
2010-11-16 16:10:55 +01:00
|
|
|
return to == BreakpointRemoveProceeding;
|
2010-11-16 13:52:21 +01:00
|
|
|
case BreakpointRemoveProceeding:
|
2010-11-16 16:10:55 +01:00
|
|
|
return to == BreakpointDead;
|
2010-11-16 13:52:21 +01:00
|
|
|
case BreakpointDead:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
qDebug() << "UNKNOWN BREAKPOINT STATE:" << from;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 14:12:05 +01:00
|
|
|
void BreakHandler::setState(BreakpointId id, BreakpointState state)
|
|
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.find(id);
|
2010-11-16 18:14:00 +01:00
|
|
|
//qDebug() << "BREAKPOINT STATE TRANSITION" << id << it->state << state;
|
2010-11-15 14:12:05 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-16 13:52:21 +01:00
|
|
|
QTC_ASSERT(isAllowedTransition(it->state, state),
|
|
|
|
|
qDebug() << "UNEXPECTED BREAKPOINT STATE TRANSITION"
|
|
|
|
|
<< it->state << state);
|
|
|
|
|
|
2010-11-15 16:58:23 +01:00
|
|
|
if (it->state == state) {
|
|
|
|
|
qDebug() << "STATE UNCHANGED: " << id << state;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-11-16 13:52:21 +01:00
|
|
|
|
2010-11-15 14:12:05 +01:00
|
|
|
it->state = state;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-30 12:47:53 +01:00
|
|
|
void BreakHandler::notifyBreakpointChangeAfterInsertNeeded(BreakpointId id)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state(id) == BreakpointInsertProceeding, qDebug() << state(id));
|
|
|
|
|
setState(id, BreakpointChangeRequested);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 13:52:21 +01:00
|
|
|
void BreakHandler::notifyBreakpointInsertProceeding(BreakpointId id)
|
2009-04-28 15:08:52 +02:00
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointInsertRequested, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointInsertProceeding);
|
2009-04-28 15:08:52 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 13:52:21 +01:00
|
|
|
void BreakHandler::notifyBreakpointInsertOk(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointInsertProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointInserted);
|
2010-11-16 17:53:08 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-16 13:52:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointInsertFailed(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointInsertProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointDead);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointRemoveProceeding(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointRemoveRequested, qDebug() << state(id));
|
2010-11-16 17:29:38 +01:00
|
|
|
setState(id, BreakpointRemoveProceeding);
|
2010-11-16 13:52:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointRemoveOk(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointRemoveProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointDead);
|
|
|
|
|
cleanupBreakpoint(id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointRemoveFailed(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointRemoveProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointDead);
|
|
|
|
|
cleanupBreakpoint(id);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 16:16:23 +01:00
|
|
|
void BreakHandler::notifyBreakpointChangeProceeding(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointChangeRequested, qDebug() << state(id));
|
2010-11-18 16:16:23 +01:00
|
|
|
setState(id, BreakpointChangeProceeding);
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-16 13:52:21 +01:00
|
|
|
void BreakHandler::notifyBreakpointChangeOk(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointChangeProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointInserted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointChangeFailed(BreakpointId id)
|
2009-04-28 15:08:52 +02:00
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointChangeProceeding, qDebug() << state(id));
|
2010-11-16 13:52:21 +01:00
|
|
|
setState(id, BreakpointDead);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::notifyBreakpointReleased(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
//QTC_ASSERT(state(id) == BreakpointChangeProceeding, qDebug() << state(id));
|
2010-11-15 14:12:05 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-16 13:52:21 +01:00
|
|
|
it->state = BreakpointNew;
|
|
|
|
|
it->engine = 0;
|
|
|
|
|
it->response = BreakpointResponse();
|
|
|
|
|
delete it->marker;
|
|
|
|
|
it->marker = 0;
|
2010-11-10 16:33:11 +01:00
|
|
|
updateMarker(id);
|
2010-11-16 13:52:21 +01:00
|
|
|
layoutChanged();
|
2009-04-28 15:08:52 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-16 18:20:52 +01:00
|
|
|
void BreakHandler::notifyBreakpointAdjusted(BreakpointId id,
|
|
|
|
|
const BreakpointParameters &data)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointInserted, qDebug() << state(id));
|
2010-11-16 18:20:52 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
|
|
|
|
it->data = data;
|
2010-11-30 12:47:53 +01:00
|
|
|
//if (it->needsChange())
|
|
|
|
|
// setState(id, BreakpointChangeRequested);
|
2010-11-16 18:20:52 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-30 12:47:53 +01:00
|
|
|
void BreakHandler::notifyBreakpointNeedsReinsertion(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 13:39:01 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointChangeProceeding, qDebug() << state(id));
|
2010-11-30 12:47:53 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-30 13:39:01 +01:00
|
|
|
it->state = BreakpointInsertRequested;
|
2010-11-30 12:47:53 +01:00
|
|
|
}
|
2010-11-16 18:20:52 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
void BreakHandler::removeBreakpoint(BreakpointId id)
|
2009-04-28 15:08:52 +02:00
|
|
|
{
|
2010-11-15 14:12:05 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
|
|
|
|
if (it->state == BreakpointInserted) {
|
2010-11-15 16:58:23 +01:00
|
|
|
setState(id, BreakpointRemoveRequested);
|
2010-11-18 14:57:00 +01:00
|
|
|
scheduleSynchronization();
|
2010-11-15 14:12:05 +01:00
|
|
|
} else if (it->state == BreakpointNew) {
|
|
|
|
|
it->state = BreakpointDead;
|
2010-11-10 16:33:11 +01:00
|
|
|
cleanupBreakpoint(id);
|
2009-04-28 15:08:52 +02:00
|
|
|
} else {
|
2010-11-15 14:12:05 +01:00
|
|
|
qDebug() << "CANNOT REMOVE IN STATE " << it->state;
|
2010-11-15 16:58:23 +01:00
|
|
|
it->state = BreakpointRemoveRequested;
|
2009-04-28 15:08:52 +02:00
|
|
|
}
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-16 10:50:11 +01:00
|
|
|
void BreakHandler::appendBreakpoint(const BreakpointParameters &data)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-11-16 10:50:11 +01:00
|
|
|
QTC_ASSERT(data.type != UnknownType, return);
|
2010-11-15 17:25:42 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
// Ok to be not thread-safe. The order does not matter and only the gui
|
|
|
|
|
// produces authoritative ids.
|
|
|
|
|
static quint64 currentId = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
BreakpointId id(++currentId);
|
2010-11-15 13:12:13 +01:00
|
|
|
BreakpointItem item;
|
2010-11-16 11:48:17 +01:00
|
|
|
item.data = data;
|
2010-11-18 13:38:58 +01:00
|
|
|
item.response.fileName = data.fileName;
|
|
|
|
|
item.response.lineNumber = data.lineNumber;
|
2010-11-15 13:12:13 +01:00
|
|
|
m_storage.insert(id, item);
|
2010-11-30 15:44:29 +01:00
|
|
|
updateMarker(id);
|
2010-11-10 16:33:11 +01:00
|
|
|
scheduleSynchronization();
|
2010-06-25 16:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void BreakHandler::saveSessionData()
|
|
|
|
|
{
|
|
|
|
|
saveBreakpoints();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::loadSessionData()
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
m_storage.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
loadBreakpoints();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-25 16:32:07 +01:00
|
|
|
void BreakHandler::removeSessionData()
|
|
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.begin(), et = m_storage.end();
|
|
|
|
|
for ( ; it != et; ++it)
|
|
|
|
|
it->destroyMarker();
|
|
|
|
|
m_storage.clear();
|
|
|
|
|
layoutChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void BreakHandler::breakByFunction(const QString &functionName)
|
|
|
|
|
{
|
2010-03-26 08:52:49 +01:00
|
|
|
// One breakpoint per function is enough for now. This does not handle
|
|
|
|
|
// combinations of multiple conditions and ignore counts, though.
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it) {
|
2010-11-16 11:48:17 +01:00
|
|
|
const BreakpointParameters &data = it->data;
|
|
|
|
|
if (data.functionName == functionName
|
|
|
|
|
&& data.condition.isEmpty()
|
|
|
|
|
&& data.ignoreCount == 0)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2010-11-16 10:50:11 +01:00
|
|
|
BreakpointParameters data(BreakpointByFunction);
|
|
|
|
|
data.functionName = functionName;
|
2010-11-10 16:33:11 +01:00
|
|
|
appendBreakpoint(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QIcon BreakHandler::icon(BreakpointId id) const
|
|
|
|
|
{
|
2010-11-15 14:12:05 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
2010-11-25 16:32:07 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(),
|
|
|
|
|
qDebug() << "NO ICON FOR ID" << id;
|
2010-11-26 12:30:05 +01:00
|
|
|
return pendingBreakpointIcon());
|
2010-11-18 14:57:00 +01:00
|
|
|
return it->icon();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::scheduleSynchronization()
|
|
|
|
|
{
|
|
|
|
|
if (m_syncTimerId == -1)
|
|
|
|
|
m_syncTimerId = startTimer(10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::timerEvent(QTimerEvent *event)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(event->timerId() == m_syncTimerId, return);
|
|
|
|
|
killTimer(m_syncTimerId);
|
|
|
|
|
m_syncTimerId = -1;
|
|
|
|
|
saveBreakpoints(); // FIXME: remove?
|
2010-11-30 12:47:53 +01:00
|
|
|
debuggerCore()->synchronizeBreakpoints();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::gotoLocation(BreakpointId id) const
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-12-14 12:21:29 +01:00
|
|
|
DebuggerEngine *engine = debuggerCore()->currentEngine();
|
2010-11-24 11:44:43 +01:00
|
|
|
if (it->data.type == BreakpointByAddress) {
|
|
|
|
|
StackFrame frame;
|
|
|
|
|
frame.address = it->data.address;
|
|
|
|
|
if (engine)
|
|
|
|
|
engine->gotoLocation(frame, false);
|
|
|
|
|
} else {
|
|
|
|
|
const QString fileName = it->markerFileName();
|
|
|
|
|
const int lineNumber = it->markerLineNumber();
|
2010-12-14 12:21:29 +01:00
|
|
|
if (engine)
|
|
|
|
|
engine->gotoLocation(fileName, lineNumber, false);
|
2010-11-24 11:44:43 +01:00
|
|
|
}
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::updateLineNumberFromMarker(BreakpointId id, int lineNumber)
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
2010-11-18 14:57:00 +01:00
|
|
|
it->response.pending = false;
|
2010-11-15 13:12:13 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-18 13:38:58 +01:00
|
|
|
if (it->response.lineNumber != lineNumber) {
|
2010-11-10 16:33:11 +01:00
|
|
|
// FIXME: Should we tell gdb about the change?
|
2010-11-30 10:00:33 +01:00
|
|
|
it->response.lineNumber = lineNumber;
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
// Ignore updates to the "real" line number while the debugger is
|
|
|
|
|
// running, as this can be triggered by moving the breakpoint to
|
|
|
|
|
// the next line that generated code.
|
2010-11-15 17:04:29 +01:00
|
|
|
if (it->response.number == 0) {
|
2010-11-30 10:00:33 +01:00
|
|
|
// FIXME: Do we need yet another data member?
|
2010-11-16 11:48:17 +01:00
|
|
|
it->data.lineNumber = lineNumber;
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
2010-11-18 13:38:58 +01:00
|
|
|
updateMarker(id);
|
2010-11-18 14:57:00 +01:00
|
|
|
emit layoutChanged();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointIds BreakHandler::allBreakpointIds() const
|
|
|
|
|
{
|
|
|
|
|
BreakpointIds ids;
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
|
|
|
|
ids.append(it.key());
|
|
|
|
|
return ids;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointIds BreakHandler::unclaimedBreakpointIds() const
|
|
|
|
|
{
|
|
|
|
|
return engineBreakpointIds(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BreakpointIds BreakHandler::engineBreakpointIds(DebuggerEngine *engine) const
|
|
|
|
|
{
|
|
|
|
|
BreakpointIds ids;
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.constBegin(), et = m_storage.constEnd();
|
2010-11-10 16:33:11 +01:00
|
|
|
for ( ; it != et; ++it)
|
2010-11-15 14:12:05 +01:00
|
|
|
if (it->engine == engine)
|
2010-11-10 16:33:11 +01:00
|
|
|
ids.append(it.key());
|
|
|
|
|
return ids;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BreakHandler::cleanupBreakpoint(BreakpointId id)
|
|
|
|
|
{
|
2010-11-30 12:47:53 +01:00
|
|
|
QTC_ASSERT(state(id) == BreakpointDead, qDebug() << state(id));
|
2010-11-15 13:12:13 +01:00
|
|
|
BreakpointItem item = m_storage.take(id);
|
2010-11-15 14:27:06 +01:00
|
|
|
item.destroyMarker();
|
2010-11-15 15:15:09 +01:00
|
|
|
layoutChanged();
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-15 16:22:51 +01:00
|
|
|
const BreakpointResponse &BreakHandler::response(BreakpointId id) const
|
2010-11-10 16:33:11 +01:00
|
|
|
{
|
2010-11-15 16:22:51 +01:00
|
|
|
static BreakpointResponse dummy;
|
2010-11-15 13:12:13 +01:00
|
|
|
ConstIterator it = m_storage.find(id);
|
2010-11-15 16:22:51 +01:00
|
|
|
QTC_ASSERT(it != m_storage.end(), return dummy);
|
2010-11-15 14:12:05 +01:00
|
|
|
return it->response;
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-30 12:47:53 +01:00
|
|
|
bool BreakHandler::needsChange(BreakpointId id) const
|
|
|
|
|
{
|
|
|
|
|
ConstIterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return false);
|
|
|
|
|
return it->needsChange();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-10 16:33:11 +01:00
|
|
|
void BreakHandler::setResponse(BreakpointId id, const BreakpointResponse &data)
|
|
|
|
|
{
|
2010-11-15 13:12:13 +01:00
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-16 17:53:08 +01:00
|
|
|
it->response = data;
|
2010-11-18 14:57:00 +01:00
|
|
|
it->destroyMarker();
|
|
|
|
|
updateMarker(id);
|
2010-11-10 16:33:11 +01:00
|
|
|
}
|
2010-11-04 09:54:23 +01:00
|
|
|
|
2010-11-16 11:06:09 +01:00
|
|
|
void BreakHandler::setBreakpointData(BreakpointId id, const BreakpointParameters &data)
|
2010-11-16 10:50:11 +01:00
|
|
|
{
|
|
|
|
|
Iterator it = m_storage.find(id);
|
|
|
|
|
QTC_ASSERT(it != m_storage.end(), return);
|
2010-11-16 11:48:17 +01:00
|
|
|
if (data == it->data)
|
2010-11-16 10:50:11 +01:00
|
|
|
return;
|
2010-11-16 11:48:17 +01:00
|
|
|
it->data = data;
|
2010-11-30 12:47:53 +01:00
|
|
|
if (it->needsChange()) {
|
2010-11-25 15:01:51 +01:00
|
|
|
setState(id, BreakpointChangeRequested);
|
2010-11-30 12:47:53 +01:00
|
|
|
scheduleSynchronization();
|
|
|
|
|
} else {
|
|
|
|
|
it->destroyMarker();
|
|
|
|
|
updateMarker(id);
|
|
|
|
|
layoutChanged();
|
|
|
|
|
}
|
2010-11-16 10:50:11 +01:00
|
|
|
}
|
2010-11-15 19:05:31 +01:00
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Storage
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
BreakHandler::BreakpointItem::BreakpointItem()
|
2010-11-18 13:38:58 +01:00
|
|
|
: state(BreakpointNew), engine(0), marker(0)
|
2010-11-15 19:05:31 +01:00
|
|
|
{}
|
|
|
|
|
|
2010-11-15 14:27:06 +01:00
|
|
|
void BreakHandler::BreakpointItem::destroyMarker()
|
2010-11-15 13:12:13 +01:00
|
|
|
{
|
2010-11-15 14:27:06 +01:00
|
|
|
BreakpointMarker *m = marker;
|
2010-11-15 13:12:13 +01:00
|
|
|
marker = 0;
|
2010-11-15 14:27:06 +01:00
|
|
|
delete m;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 13:38:58 +01:00
|
|
|
QString BreakHandler::BreakpointItem::markerFileName() const
|
|
|
|
|
{
|
2010-11-18 16:00:56 +01:00
|
|
|
// Some heuristics to find a "good" file name.
|
|
|
|
|
if (!data.fileName.isEmpty()) {
|
|
|
|
|
QFileInfo fi(data.fileName);
|
|
|
|
|
if (fi.exists())
|
|
|
|
|
return fi.absoluteFilePath();
|
|
|
|
|
}
|
|
|
|
|
if (!response.fileName.isEmpty()) {
|
|
|
|
|
QFileInfo fi(response.fileName);
|
|
|
|
|
if (fi.exists())
|
|
|
|
|
return fi.absoluteFilePath();
|
|
|
|
|
}
|
|
|
|
|
if (response.fileName.endsWith(data.fileName))
|
|
|
|
|
return response.fileName;
|
|
|
|
|
if (data.fileName.endsWith(response.fileName))
|
|
|
|
|
return data.fileName;
|
|
|
|
|
return response.fileName.size() > data.fileName.size()
|
|
|
|
|
? response.fileName : data.fileName;
|
2010-11-18 13:38:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int BreakHandler::BreakpointItem::markerLineNumber() const
|
|
|
|
|
{
|
|
|
|
|
return response.lineNumber ? response.lineNumber : data.lineNumber;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 14:27:06 +01:00
|
|
|
static void formatAddress(QTextStream &str, quint64 address)
|
|
|
|
|
{
|
|
|
|
|
if (address) {
|
|
|
|
|
str << "0x";
|
|
|
|
|
str.setIntegerBase(16);
|
|
|
|
|
str << address;
|
|
|
|
|
str.setIntegerBase(10);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 14:35:19 +01:00
|
|
|
static QString stateToString(BreakpointState state)
|
|
|
|
|
{
|
|
|
|
|
switch (state) {
|
2010-11-18 14:57:00 +01:00
|
|
|
case BreakpointNew: return "New";
|
|
|
|
|
case BreakpointInsertRequested: return "Insertion requested";
|
|
|
|
|
case BreakpointInsertProceeding: return "Insertion proceeding";
|
|
|
|
|
case BreakpointChangeRequested: return "Change requested";
|
|
|
|
|
case BreakpointChangeProceeding: return "Change proceeding";
|
|
|
|
|
case BreakpointInserted: return "Breakpoint inserted";
|
|
|
|
|
case BreakpointRemoveRequested: return "Removal requested";
|
|
|
|
|
case BreakpointRemoveProceeding: return "Removal proceeding";
|
|
|
|
|
case BreakpointDead: return "Dead";
|
2010-11-15 14:35:19 +01:00
|
|
|
default: return "<invalid state>";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2010-11-16 18:14:00 +01:00
|
|
|
bool BreakHandler::BreakpointItem::needsChange() const
|
|
|
|
|
{
|
|
|
|
|
if (!data.conditionsMatch(response.condition))
|
|
|
|
|
return true;
|
|
|
|
|
if (data.ignoreCount != response.ignoreCount)
|
|
|
|
|
return true;
|
|
|
|
|
if (data.enabled != response.enabled)
|
|
|
|
|
return true;
|
2010-11-30 12:47:53 +01:00
|
|
|
if (data.threadSpec != response.threadSpec)
|
|
|
|
|
return true;
|
2010-11-16 18:14:00 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-15 19:05:31 +01:00
|
|
|
bool BreakHandler::BreakpointItem::isLocatedAt
|
|
|
|
|
(const QString &fileName, int lineNumber, bool useMarkerPosition) const
|
|
|
|
|
{
|
2010-11-18 13:38:58 +01:00
|
|
|
int line = useMarkerPosition ? response.lineNumber : data.lineNumber;
|
2010-11-18 16:31:18 +01:00
|
|
|
return lineNumber == line
|
|
|
|
|
&& (fileNameMatch(fileName, response.fileName)
|
|
|
|
|
|| fileNameMatch(fileName, markerFileName()));
|
2010-11-15 19:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-18 14:57:00 +01:00
|
|
|
QIcon BreakHandler::BreakpointItem::icon() const
|
|
|
|
|
{
|
|
|
|
|
// FIXME: This seems to be called on each cursor blink as soon as the
|
|
|
|
|
// cursor is near a line with a breakpoint marker (+/- 2 lines or so).
|
2010-11-26 12:30:05 +01:00
|
|
|
if (data.type == Watchpoint)
|
|
|
|
|
return BreakHandler::watchpointIcon();
|
2010-11-18 14:57:00 +01:00
|
|
|
if (!data.enabled)
|
|
|
|
|
return BreakHandler::disabledBreakpointIcon();
|
|
|
|
|
if (state == BreakpointInserted)
|
|
|
|
|
return BreakHandler::breakpointIcon();
|
2010-11-26 12:30:05 +01:00
|
|
|
return BreakHandler::pendingBreakpointIcon();
|
2010-11-18 14:57:00 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-15 14:27:06 +01:00
|
|
|
QString BreakHandler::BreakpointItem::toToolTip() const
|
|
|
|
|
{
|
|
|
|
|
QString t;
|
|
|
|
|
|
2010-11-16 11:48:17 +01:00
|
|
|
switch (data.type) {
|
2010-11-15 14:27:06 +01:00
|
|
|
case BreakpointByFileAndLine:
|
|
|
|
|
t = tr("Breakpoint by File and Line");
|
|
|
|
|
break;
|
|
|
|
|
case BreakpointByFunction:
|
|
|
|
|
t = tr("Breakpoint by Function");
|
|
|
|
|
break;
|
|
|
|
|
case BreakpointByAddress:
|
|
|
|
|
t = tr("Breakpoint by Address");
|
|
|
|
|
break;
|
2010-11-16 10:23:20 +01:00
|
|
|
case BreakpointAtThrow:
|
|
|
|
|
t = tr("Breakpoint at \"throw\"");
|
|
|
|
|
break;
|
|
|
|
|
case BreakpointAtCatch:
|
|
|
|
|
t = tr("Breakpoint at \"catch\"");
|
|
|
|
|
break;
|
|
|
|
|
case BreakpointAtMain:
|
|
|
|
|
t = tr("Breakpoint at Function \"main()\"");
|
|
|
|
|
break;
|
2010-11-15 14:27:06 +01:00
|
|
|
case Watchpoint:
|
|
|
|
|
t = tr("Watchpoint");
|
|
|
|
|
break;
|
|
|
|
|
case UnknownType:
|
|
|
|
|
t = tr("Unknown Breakpoint Type");
|
2010-11-16 10:23:20 +01:00
|
|
|
break;
|
2010-11-15 14:27:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString rc;
|
|
|
|
|
QTextStream str(&rc);
|
|
|
|
|
str << "<html><body><table>"
|
|
|
|
|
//<< "<tr><td>" << tr("Id:") << "</td><td>" << m_id << "</td></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("State:")
|
2010-11-15 15:05:39 +01:00
|
|
|
<< "</td><td>" << state << " (" << stateToString(state) << ")</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "<tr><td>" << tr("Engine:")
|
|
|
|
|
<< "</td><td>" << (engine ? engine->objectName() : "0") << "</td></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("Breakpoint Number:")
|
2010-11-15 17:04:29 +01:00
|
|
|
<< "</td><td>" << response.number << "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "<tr><td>" << tr("Breakpoint Type:")
|
|
|
|
|
<< "</td><td>" << t << "</td></tr>"
|
2010-11-16 11:55:48 +01:00
|
|
|
<< "<tr><td>" << tr("Extra Information:")
|
|
|
|
|
<< "</td><td>" << response.extra << "</td></tr>"
|
2010-11-18 14:57:00 +01:00
|
|
|
<< "<tr><td>" << tr("Pending:")
|
|
|
|
|
<< "</td><td>" << (response.pending ? "True" : "False") << "</td></tr>"
|
2010-11-18 16:00:56 +01:00
|
|
|
<< "<tr><td>" << tr("Marker File:")
|
|
|
|
|
<< "</td><td>" << markerFileName() << "</td></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("Marker Line:")
|
|
|
|
|
<< "</td><td>" << markerLineNumber() << "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "</table><br><hr><table>"
|
|
|
|
|
<< "<tr><th>" << tr("Property")
|
|
|
|
|
<< "</th><th>" << tr("Requested")
|
|
|
|
|
<< "</th><th>" << tr("Obtained") << "</th></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("Internal Number:")
|
2010-11-15 17:04:29 +01:00
|
|
|
<< "</td><td>—</td><td>" << response.number << "</td></tr>"
|
2010-11-18 13:38:58 +01:00
|
|
|
<< "<tr><td>" << tr("Function Name:")
|
|
|
|
|
<< "</td><td>" << data.functionName
|
|
|
|
|
<< "</td><td>" << response.functionName
|
|
|
|
|
<< "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "<tr><td>" << tr("File Name:")
|
2010-11-16 11:48:17 +01:00
|
|
|
<< "</td><td>" << QDir::toNativeSeparators(data.fileName)
|
2010-11-15 17:04:29 +01:00
|
|
|
<< "</td><td>" << QDir::toNativeSeparators(response.fileName)
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "</td></tr>"
|
2010-11-18 13:38:58 +01:00
|
|
|
<< "<tr><td>" << tr("Line Number:")
|
|
|
|
|
<< "</td><td>" << data.lineNumber
|
|
|
|
|
<< "</td><td>" << response.lineNumber << "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "<tr><td>" << tr("Breakpoint Address:")
|
|
|
|
|
<< "</td><td>";
|
2010-11-16 11:48:17 +01:00
|
|
|
formatAddress(str, data.address);
|
2010-11-15 14:27:06 +01:00
|
|
|
str << "</td><td>";
|
2010-11-15 17:04:29 +01:00
|
|
|
formatAddress(str, response.address);
|
2010-11-15 14:27:06 +01:00
|
|
|
//str << "</td></tr>"
|
|
|
|
|
// << "<tr><td>" << tr("Corrected Line Number:")
|
|
|
|
|
// << "</td><td>-</td><td>";
|
|
|
|
|
//if (response.bpCorrectedLineNumber > 0)
|
|
|
|
|
// str << response.bpCorrectedLineNumber;
|
|
|
|
|
//else
|
|
|
|
|
// str << '-';
|
|
|
|
|
str << "</td></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("Condition:")
|
2010-11-16 11:48:17 +01:00
|
|
|
<< "</td><td>" << data.condition
|
2010-11-15 17:04:29 +01:00
|
|
|
<< "</td><td>" << response.condition << "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "<tr><td>" << tr("Ignore Count:") << "</td><td>";
|
2010-11-16 11:48:17 +01:00
|
|
|
if (data.ignoreCount)
|
|
|
|
|
str << data.ignoreCount;
|
2010-11-15 14:27:06 +01:00
|
|
|
str << "</td><td>";
|
2010-11-15 17:04:29 +01:00
|
|
|
if (response.ignoreCount)
|
|
|
|
|
str << response.ignoreCount;
|
2010-11-15 14:27:06 +01:00
|
|
|
str << "</td></tr>"
|
|
|
|
|
<< "<tr><td>" << tr("Thread Specification:")
|
2010-11-16 11:48:17 +01:00
|
|
|
<< "</td><td>" << data.threadSpec
|
2010-11-15 17:04:29 +01:00
|
|
|
<< "</td><td>" << response.threadSpec << "</td></tr>"
|
2010-11-15 14:27:06 +01:00
|
|
|
<< "</table></body></html>";
|
|
|
|
|
return rc;
|
2010-11-15 13:12:13 +01:00
|
|
|
}
|
|
|
|
|
|
2010-06-16 11:08:54 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|