2011-03-04 12:15:18 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator Instrumentation Tools
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
** Author: Frank Osterfeld, KDAB (frank.osterfeld@kdab.com)
|
|
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2011-03-04 12:15:18 +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.
|
2011-03-04 12:15:18 +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
|
2011-03-04 12:15:18 +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.
|
|
|
|
|
**
|
2011-03-04 12:15:18 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "stackmodel.h"
|
|
|
|
|
#include "error.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "stack.h"
|
2011-03-08 13:56:52 +01:00
|
|
|
#include "modelhelpers.h"
|
|
|
|
|
|
2011-03-04 12:15:18 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
|
|
|
|
#include <QVector>
|
2011-03-04 12:15:18 +01:00
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
namespace Valgrind {
|
|
|
|
|
namespace XmlProtocol {
|
2011-03-04 12:15:18 +01:00
|
|
|
|
|
|
|
|
class StackModel::Private
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Error error;
|
|
|
|
|
|
|
|
|
|
Stack stack(int i) const
|
|
|
|
|
{
|
|
|
|
|
if (i < 0 || i >= error.stacks().size())
|
|
|
|
|
return Stack();
|
|
|
|
|
else
|
|
|
|
|
return error.stacks().at(i);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static QString makeName(const Frame &frame)
|
|
|
|
|
{
|
|
|
|
|
const QString d = frame.directory();
|
|
|
|
|
const QString f = frame.file();
|
|
|
|
|
const QString fn = frame.functionName();
|
|
|
|
|
if (!fn.isEmpty())
|
|
|
|
|
return fn;
|
|
|
|
|
if (!d.isEmpty() && !f.isEmpty())
|
|
|
|
|
return frame.line() > 0 ? QString::fromLatin1("%1%2%3:%4").arg(d, QDir::separator(), f, QString::number(frame.line()))
|
|
|
|
|
: QString::fromLatin1("%1%2%3").arg(d, QDir::separator(), f);
|
2011-05-18 17:05:49 +02:00
|
|
|
return frame.object();
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StackModel::StackModel(QObject *parent)
|
|
|
|
|
: QAbstractItemModel(parent)
|
|
|
|
|
, d(new Private)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StackModel::~StackModel()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant StackModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
|
|
|
|
if (!index.isValid())
|
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
|
|
QTC_ASSERT(index.model() == this, return QVariant());
|
|
|
|
|
|
|
|
|
|
if (!index.parent().isValid()) {
|
|
|
|
|
const Stack stack = d->stack(index.row());
|
|
|
|
|
if (role == Qt::DisplayRole) {
|
|
|
|
|
switch (index.column()) {
|
|
|
|
|
case NameColumn:
|
|
|
|
|
if (!stack.auxWhat().isEmpty())
|
|
|
|
|
return stack.auxWhat();
|
|
|
|
|
else
|
|
|
|
|
return d->error.what();
|
|
|
|
|
default:
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const Stack stack = d->stack(index.parent().row());
|
|
|
|
|
const QVector<Frame> frames = stack.frames();
|
|
|
|
|
const int fidx = index.row();
|
|
|
|
|
if (fidx < 0 || fidx >= frames.size())
|
|
|
|
|
return QVariant();
|
|
|
|
|
const Frame &frame = frames[fidx];
|
2011-05-11 16:26:34 +02:00
|
|
|
switch (role) {
|
2011-03-04 12:15:18 +01:00
|
|
|
case Qt::DisplayRole:
|
|
|
|
|
{
|
|
|
|
|
switch (index.column()) {
|
|
|
|
|
case NameColumn:
|
|
|
|
|
return makeName(frame);
|
|
|
|
|
case InstructionPointerColumn:
|
|
|
|
|
return QString::fromLatin1("0x%1").arg(frame.instructionPointer(), 0, 16);
|
|
|
|
|
case ObjectColumn:
|
|
|
|
|
return frame.object();
|
|
|
|
|
case FunctionNameColumn:
|
|
|
|
|
return frame.functionName();
|
|
|
|
|
case DirectoryColumn:
|
|
|
|
|
return frame.directory();
|
|
|
|
|
case FileColumn:
|
|
|
|
|
return frame.file();
|
|
|
|
|
case LineColumn:
|
|
|
|
|
if (frame.line() > 0)
|
|
|
|
|
return frame.line();
|
|
|
|
|
else
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
|
return toolTipForFrame(frame);
|
|
|
|
|
case ObjectRole:
|
|
|
|
|
return frame.object();
|
|
|
|
|
case FunctionNameRole:
|
|
|
|
|
return frame.functionName();
|
|
|
|
|
case FileRole:
|
|
|
|
|
return frame.file();
|
|
|
|
|
case DirectoryRole:
|
|
|
|
|
return frame.directory();
|
|
|
|
|
case LineRole:
|
|
|
|
|
if (frame.line() > 0)
|
|
|
|
|
return frame.line();
|
|
|
|
|
else
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant StackModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
|
{
|
|
|
|
|
if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
|
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
|
|
switch (section) {
|
|
|
|
|
case NameColumn:
|
|
|
|
|
return tr("Description");
|
|
|
|
|
case InstructionPointerColumn:
|
|
|
|
|
return tr("Instruction Pointer");
|
|
|
|
|
case ObjectColumn:
|
|
|
|
|
return tr("Object");
|
|
|
|
|
case FunctionNameColumn:
|
|
|
|
|
return tr("Function");
|
|
|
|
|
case DirectoryColumn:
|
|
|
|
|
return tr("Directory");
|
|
|
|
|
case FileColumn:
|
|
|
|
|
return tr("File");
|
|
|
|
|
case LineColumn:
|
|
|
|
|
return tr("Line");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QModelIndex StackModel::index(int row, int column, const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
if (parent.isValid()) {
|
|
|
|
|
QTC_ASSERT(parent.model() == this, return QModelIndex());
|
|
|
|
|
return createIndex(row, column, parent.row());
|
2011-05-18 17:05:49 +02:00
|
|
|
}
|
|
|
|
|
return createIndex(row, column, -1);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QModelIndex StackModel::parent(const QModelIndex &child) const
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(!child.isValid() || child.model() == this, return QModelIndex());
|
|
|
|
|
|
2012-09-24 15:48:17 +02:00
|
|
|
if (quintptr(child.internalId()) == quintptr(-1))
|
2011-03-04 12:15:18 +01:00
|
|
|
return QModelIndex();
|
2011-05-18 17:05:49 +02:00
|
|
|
return createIndex(child.internalId(), 0, -1);
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int StackModel::rowCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
|
|
|
|
if (!parent.isValid())
|
|
|
|
|
return d->error.stacks().size();
|
|
|
|
|
|
|
|
|
|
QTC_ASSERT(parent.model() == this, return 0);
|
|
|
|
|
|
|
|
|
|
const QModelIndex gp = parent.parent();
|
|
|
|
|
|
|
|
|
|
if (!gp.isValid())
|
|
|
|
|
return d->stack(parent.row()).frames().size();
|
2011-05-18 17:05:49 +02:00
|
|
|
return 0;
|
2011-03-04 12:15:18 +01:00
|
|
|
}
|
|
|
|
|
|
2011-05-18 17:05:49 +02:00
|
|
|
int StackModel::columnCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
2011-03-04 12:15:18 +01:00
|
|
|
QTC_ASSERT(!parent.isValid() || parent.model() == this, return 0);
|
|
|
|
|
return ColumnCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StackModel::setError(const Error &error)
|
|
|
|
|
{
|
|
|
|
|
if (d->error == error)
|
|
|
|
|
return;
|
|
|
|
|
d->error = error;
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StackModel::clear()
|
|
|
|
|
{
|
|
|
|
|
beginResetModel();
|
|
|
|
|
d->error = Error();
|
|
|
|
|
endResetModel();
|
|
|
|
|
}
|
2011-05-18 17:05:49 +02:00
|
|
|
|
|
|
|
|
} // namespace XmlProtocol
|
|
|
|
|
} // namespace Valgrind
|