forked from qt-creator/qt-creator
Debugger: Use TreeModel for threads
In preparation of the introduction of thread groups. Change-Id: Iadac9203eb4d60d0bc930113c2776e65352ed304 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com> Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -89,7 +89,7 @@ void showModuleSymbols(const QString &moduleName, const QVector<Internal::Symbol
|
|||||||
void showModuleSections(const QString &moduleName, const QVector<Internal::Section> §ions);
|
void showModuleSections(const QString &moduleName, const QVector<Internal::Section> §ions);
|
||||||
void openMemoryEditor();
|
void openMemoryEditor();
|
||||||
|
|
||||||
void setThreads(const QStringList &list, int index);
|
void setThreadBoxContents(const QStringList &list, int index);
|
||||||
|
|
||||||
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions();
|
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions();
|
||||||
|
|
||||||
|
@@ -609,7 +609,7 @@ public:
|
|||||||
void disconnectEngine() { connectEngine(0); }
|
void disconnectEngine() { connectEngine(0); }
|
||||||
DebuggerEngine *dummyEngine();
|
DebuggerEngine *dummyEngine();
|
||||||
|
|
||||||
void setThreads(const QStringList &list, int index)
|
void setThreadBoxContents(const QStringList &list, int index)
|
||||||
{
|
{
|
||||||
const bool state = m_threadBox->blockSignals(true);
|
const bool state = m_threadBox->blockSignals(true);
|
||||||
m_threadBox->clear();
|
m_threadBox->clear();
|
||||||
@@ -3214,9 +3214,9 @@ void openMemoryEditor()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setThreads(const QStringList &list, int index)
|
void setThreadBoxContents(const QStringList &list, int index)
|
||||||
{
|
{
|
||||||
dd->setThreads(list, index);
|
dd->setThreadBoxContents(list, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions()
|
QSharedPointer<Internal::GlobalDebuggerOptions> globalDebuggerOptions()
|
||||||
|
@@ -93,17 +93,6 @@ struct ThreadData
|
|||||||
IdRole = Qt::UserRole
|
IdRole = Qt::UserRole
|
||||||
};
|
};
|
||||||
|
|
||||||
void notifyRunning() // Clear state information.
|
|
||||||
{
|
|
||||||
address = 0;
|
|
||||||
function.clear();
|
|
||||||
fileName.clear();
|
|
||||||
frameLevel = -1;
|
|
||||||
state.clear();
|
|
||||||
lineNumber = -1;
|
|
||||||
stopped = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Permanent data.
|
// Permanent data.
|
||||||
ThreadId id;
|
ThreadId id;
|
||||||
QByteArray groupId;
|
QByteArray groupId;
|
||||||
|
@@ -37,78 +37,68 @@
|
|||||||
#include <utils/algorithm.h>
|
#include <utils/algorithm.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
|
#include <QCoreApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
#include <QIcon>
|
||||||
|
|
||||||
|
using namespace Utils;
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
static void mergeThreadData(ThreadData &data, const ThreadData &other)
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// ThreadItem
|
||||||
|
//
|
||||||
|
///////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
static const QIcon &positionIcon()
|
||||||
{
|
{
|
||||||
if (!other.core.isEmpty())
|
static QIcon icon(QLatin1String(":/debugger/images/location_16.png"));
|
||||||
data.core = other.core;
|
return icon;
|
||||||
if (!other.fileName.isEmpty())
|
|
||||||
data.fileName = other.fileName;
|
|
||||||
if (!other.targetId.isEmpty())
|
|
||||||
data.targetId = other.targetId;
|
|
||||||
if (!other.name.isEmpty())
|
|
||||||
data.name = other.name;
|
|
||||||
if (other.frameLevel != -1)
|
|
||||||
data.frameLevel = other.frameLevel;
|
|
||||||
if (!other.function.isEmpty())
|
|
||||||
data.function = other.function;
|
|
||||||
if (other.address)
|
|
||||||
data.address = other.address;
|
|
||||||
if (!other.module.isEmpty())
|
|
||||||
data.module = other.module;
|
|
||||||
if (!other.details.isEmpty())
|
|
||||||
data.details = other.details;
|
|
||||||
if (!other.state.isEmpty())
|
|
||||||
data.state = other.state;
|
|
||||||
if (other.lineNumber != -1)
|
|
||||||
data.lineNumber = other.lineNumber;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static QVariant threadPart(const ThreadData &thread, int column)
|
static const QIcon &emptyIcon()
|
||||||
{
|
{
|
||||||
switch (column) {
|
static QIcon icon(QLatin1String(":/debugger/images/debugger_empty_14.png"));
|
||||||
case ThreadData::IdColumn:
|
return icon;
|
||||||
return thread.id.raw();
|
}
|
||||||
case ThreadData::FunctionColumn:
|
|
||||||
return thread.function;
|
class ThreadItem : public TreeItem, public ThreadData
|
||||||
case ThreadData::FileColumn:
|
{
|
||||||
return thread.fileName.isEmpty() ? thread.module : thread.fileName;
|
Q_DECLARE_TR_FUNCTIONS(Debugger::Internal::ThreadsHandler)
|
||||||
case ThreadData::LineColumn:
|
|
||||||
return thread.lineNumber >= 0
|
public:
|
||||||
? QString::number(thread.lineNumber) : QString();
|
ThreadItem(const ThreadsHandler *handler, const ThreadData &data = ThreadData())
|
||||||
case ThreadData::AddressColumn:
|
: ThreadData(data), handler(handler)
|
||||||
return thread.address > 0
|
{}
|
||||||
? QLatin1String("0x") + QString::number(thread.address, 16)
|
|
||||||
: QString();
|
QVariant data(int column, int role) const
|
||||||
case ThreadData::CoreColumn:
|
{
|
||||||
return thread.core;
|
switch (role) {
|
||||||
case ThreadData::StateColumn:
|
case Qt::DisplayRole:
|
||||||
return thread.state;
|
return threadPart(column);
|
||||||
case ThreadData::TargetIdColumn:
|
case Qt::ToolTipRole:
|
||||||
if (thread.targetId.startsWith(QLatin1String("Thread ")))
|
return threadToolTip();
|
||||||
return thread.targetId.mid(7);
|
case Qt::DecorationRole:
|
||||||
return thread.targetId;
|
// Return icon that indicates whether this is the active stack frame.
|
||||||
case ThreadData::NameColumn:
|
if (column == 0)
|
||||||
return thread.name;
|
return id == handler->currentThread() ? positionIcon() : emptyIcon();
|
||||||
case ThreadData::DetailsColumn:
|
break;
|
||||||
return thread.details;
|
case ThreadData::IdRole:
|
||||||
case ThreadData::ComboNameColumn:
|
return id.raw();
|
||||||
return QString::fromLatin1("#%1 %2").arg(thread.id.raw()).arg(thread.name);
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
Qt::ItemFlags flags(int column) const
|
||||||
//
|
{
|
||||||
// ThreadsHandler
|
return stopped ? TreeItem::flags(column) : Qt::ItemFlags(0);
|
||||||
//
|
}
|
||||||
///////////////////////////////////////////////////////////////////////
|
|
||||||
|
|
||||||
static QString threadToolTip(const ThreadData &thread)
|
QString threadToolTip() const
|
||||||
{
|
{
|
||||||
const char start[] = "<tr><td>";
|
const char start[] = "<tr><td>";
|
||||||
const char sep[] = "</td><td>";
|
const char sep[] = "</td><td>";
|
||||||
@@ -117,34 +107,118 @@ static QString threadToolTip(const ThreadData &thread)
|
|||||||
QTextStream str(&rc);
|
QTextStream str(&rc);
|
||||||
str << "<html><head/><body><table>"
|
str << "<html><head/><body><table>"
|
||||||
<< start << ThreadsHandler::tr("Thread id:")
|
<< start << ThreadsHandler::tr("Thread id:")
|
||||||
<< sep << thread.id.raw() << end;
|
<< sep << id.raw() << end;
|
||||||
if (!thread.targetId.isEmpty())
|
if (!targetId.isEmpty())
|
||||||
str << start << ThreadsHandler::tr("Target id:")
|
str << start << ThreadsHandler::tr("Target id:")
|
||||||
<< sep << thread.targetId << end;
|
<< sep << targetId << end;
|
||||||
if (!thread.groupId.isEmpty())
|
if (!groupId.isEmpty())
|
||||||
str << start << ThreadsHandler::tr("Group id:")
|
str << start << ThreadsHandler::tr("Group id:")
|
||||||
<< sep << thread.groupId << end;
|
<< sep << groupId << end;
|
||||||
if (!thread.name.isEmpty())
|
if (!name.isEmpty())
|
||||||
str << start << ThreadsHandler::tr("Name:")
|
str << start << ThreadsHandler::tr("Name:")
|
||||||
<< sep << thread.name << end;
|
<< sep << name << end;
|
||||||
if (!thread.state.isEmpty())
|
if (!state.isEmpty())
|
||||||
str << start << ThreadsHandler::tr("State:")
|
str << start << ThreadsHandler::tr("State:")
|
||||||
<< sep << thread.state << end;
|
<< sep << state << end;
|
||||||
if (!thread.core.isEmpty())
|
if (!core.isEmpty())
|
||||||
str << start << ThreadsHandler::tr("Core:")
|
str << start << ThreadsHandler::tr("Core:")
|
||||||
<< sep << thread.core << end;
|
<< sep << core << end;
|
||||||
if (thread.address) {
|
if (address) {
|
||||||
str << start << ThreadsHandler::tr("Stopped at:") << sep;
|
str << start << ThreadsHandler::tr("Stopped at:") << sep;
|
||||||
if (!thread.function.isEmpty())
|
if (!function.isEmpty())
|
||||||
str << thread.function << "<br>";
|
str << function << "<br>";
|
||||||
if (!thread.fileName.isEmpty())
|
if (!fileName.isEmpty())
|
||||||
str << thread.fileName << ':' << thread.lineNumber << "<br>";
|
str << fileName << ':' << lineNumber << "<br>";
|
||||||
str << formatToolTipAddress(thread.address);
|
str << formatToolTipAddress(address);
|
||||||
}
|
}
|
||||||
str << "</table></body></html>";
|
str << "</table></body></html>";
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QVariant threadPart(int column) const
|
||||||
|
{
|
||||||
|
switch (column) {
|
||||||
|
case ThreadData::IdColumn:
|
||||||
|
return id.raw();
|
||||||
|
case ThreadData::FunctionColumn:
|
||||||
|
return function;
|
||||||
|
case ThreadData::FileColumn:
|
||||||
|
return fileName.isEmpty() ? module : fileName;
|
||||||
|
case ThreadData::LineColumn:
|
||||||
|
return lineNumber >= 0
|
||||||
|
? QString::number(lineNumber) : QString();
|
||||||
|
case ThreadData::AddressColumn:
|
||||||
|
return address > 0
|
||||||
|
? QLatin1String("0x") + QString::number(address, 16)
|
||||||
|
: QString();
|
||||||
|
case ThreadData::CoreColumn:
|
||||||
|
return core;
|
||||||
|
case ThreadData::StateColumn:
|
||||||
|
return state;
|
||||||
|
case ThreadData::TargetIdColumn:
|
||||||
|
if (targetId.startsWith(QLatin1String("Thread ")))
|
||||||
|
return targetId.mid(7);
|
||||||
|
return targetId;
|
||||||
|
case ThreadData::NameColumn:
|
||||||
|
return name;
|
||||||
|
case ThreadData::DetailsColumn:
|
||||||
|
return details;
|
||||||
|
case ThreadData::ComboNameColumn:
|
||||||
|
return QString::fromLatin1("#%1 %2").arg(id.raw()).arg(name);
|
||||||
|
}
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
void notifyRunning() // Clear state information.
|
||||||
|
{
|
||||||
|
address = 0;
|
||||||
|
function.clear();
|
||||||
|
fileName.clear();
|
||||||
|
frameLevel = -1;
|
||||||
|
state.clear();
|
||||||
|
lineNumber = -1;
|
||||||
|
stopped = false;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
void notifyStopped()
|
||||||
|
{
|
||||||
|
stopped = true;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
void mergeThreadData(const ThreadData &other)
|
||||||
|
{
|
||||||
|
if (!other.core.isEmpty())
|
||||||
|
core = other.core;
|
||||||
|
if (!other.fileName.isEmpty())
|
||||||
|
fileName = other.fileName;
|
||||||
|
if (!other.targetId.isEmpty())
|
||||||
|
targetId = other.targetId;
|
||||||
|
if (!other.name.isEmpty())
|
||||||
|
name = other.name;
|
||||||
|
if (other.frameLevel != -1)
|
||||||
|
frameLevel = other.frameLevel;
|
||||||
|
if (!other.function.isEmpty())
|
||||||
|
function = other.function;
|
||||||
|
if (other.address)
|
||||||
|
address = other.address;
|
||||||
|
if (!other.module.isEmpty())
|
||||||
|
module = other.module;
|
||||||
|
if (!other.details.isEmpty())
|
||||||
|
details = other.details;
|
||||||
|
if (!other.state.isEmpty())
|
||||||
|
state = other.state;
|
||||||
|
if (other.lineNumber != -1)
|
||||||
|
lineNumber = other.lineNumber;
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public:
|
||||||
|
const ThreadsHandler * const handler;
|
||||||
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// ThreadsHandler
|
// ThreadsHandler
|
||||||
@@ -166,108 +240,46 @@ static QString threadToolTip(const ThreadData &thread)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
ThreadsHandler::ThreadsHandler()
|
ThreadsHandler::ThreadsHandler()
|
||||||
: m_currentId(),
|
|
||||||
m_positionIcon(QLatin1String(":/debugger/images/location_16.png")),
|
|
||||||
m_emptyIcon(QLatin1String(":/debugger/images/debugger_empty_14.png"))
|
|
||||||
{
|
{
|
||||||
m_resetLocationScheduled = false;
|
m_resetLocationScheduled = false;
|
||||||
setObjectName(QLatin1String("ThreadsModel"));
|
setObjectName(QLatin1String("ThreadsModel"));
|
||||||
|
setRootItem(new ThreadItem(this));
|
||||||
|
setHeader({
|
||||||
|
QLatin1String(" ") + tr("ID") + QLatin1String(" "),
|
||||||
|
tr("Address"), tr("Function"), tr("File"), tr("Line"), tr("State"),
|
||||||
|
tr("Name"), tr("Target ID"), tr("Details"), tr("Core"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
static ThreadItem *itemForThreadId(const ThreadsHandler *handler, ThreadId threadId)
|
||||||
|
{
|
||||||
|
const auto matcher = [threadId](ThreadItem *item) { return item->id == threadId; };
|
||||||
|
return handler->findItemAtLevel<ThreadItem *>(1, matcher);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int indexForThreadId(const ThreadsHandler *handler, ThreadId threadId)
|
||||||
|
{
|
||||||
|
ThreadItem *item = itemForThreadId(handler, threadId);
|
||||||
|
return item ? handler->rootItem()->children().indexOf(item) : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ThreadsHandler::currentThreadIndex() const
|
int ThreadsHandler::currentThreadIndex() const
|
||||||
{
|
{
|
||||||
return indexOf(m_currentId);
|
return indexForThreadId(this, m_currentId);
|
||||||
}
|
|
||||||
|
|
||||||
int ThreadsHandler::rowCount(const QModelIndex &parent) const
|
|
||||||
{
|
|
||||||
// Since the stack is not a tree, row count is 0 for any valid parent.
|
|
||||||
return parent.isValid() ? 0 : m_threads.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
int ThreadsHandler::columnCount(const QModelIndex &parent) const
|
|
||||||
{
|
|
||||||
return parent.isValid() ? 0 : int(ThreadData::ColumnCount);
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant ThreadsHandler::data(const QModelIndex &index, int role) const
|
|
||||||
{
|
|
||||||
if (!index.isValid())
|
|
||||||
return QVariant();
|
|
||||||
const int row = index.row();
|
|
||||||
if (row >= m_threads.size())
|
|
||||||
return QVariant();
|
|
||||||
const ThreadData &thread = m_threads.at(row);
|
|
||||||
|
|
||||||
switch (role) {
|
|
||||||
case Qt::DisplayRole:
|
|
||||||
return threadPart(thread, index.column());
|
|
||||||
case Qt::ToolTipRole:
|
|
||||||
return threadToolTip(thread);
|
|
||||||
case Qt::DecorationRole:
|
|
||||||
// Return icon that indicates whether this is the active stack frame.
|
|
||||||
if (index.column() == 0)
|
|
||||||
return (thread.id == m_currentId) ? m_positionIcon : m_emptyIcon;
|
|
||||||
break;
|
|
||||||
case ThreadData::IdRole:
|
|
||||||
return thread.id.raw();
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant ThreadsHandler::headerData
|
|
||||||
(int section, Qt::Orientation orientation, int role) const
|
|
||||||
{
|
|
||||||
if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
|
|
||||||
return QVariant();
|
|
||||||
switch (section) {
|
|
||||||
case ThreadData::IdColumn:
|
|
||||||
return QString(QLatin1String(" ") + tr("ID") + QLatin1String(" "));
|
|
||||||
case ThreadData::FunctionColumn:
|
|
||||||
return tr("Function");
|
|
||||||
case ThreadData::FileColumn:
|
|
||||||
return tr("File");
|
|
||||||
case ThreadData::LineColumn:
|
|
||||||
return tr("Line");
|
|
||||||
case ThreadData::AddressColumn:
|
|
||||||
return tr("Address");
|
|
||||||
case ThreadData::CoreColumn:
|
|
||||||
return tr("Core");
|
|
||||||
case ThreadData::StateColumn:
|
|
||||||
return tr("State");
|
|
||||||
case ThreadData::TargetIdColumn:
|
|
||||||
return tr("Target ID");
|
|
||||||
case ThreadData::DetailsColumn:
|
|
||||||
return tr("Details");
|
|
||||||
case ThreadData::NameColumn:
|
|
||||||
return tr("Name");
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
Qt::ItemFlags ThreadsHandler::flags(const QModelIndex &index) const
|
|
||||||
{
|
|
||||||
const int row = index.row();
|
|
||||||
const bool stopped = row >= 0 && row < m_threads.size()
|
|
||||||
&& m_threads.at(row).stopped;
|
|
||||||
return stopped ? QAbstractTableModel::flags(index) : Qt::ItemFlags(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::sort(int column, Qt::SortOrder order)
|
void ThreadsHandler::sort(int column, Qt::SortOrder order)
|
||||||
{
|
{
|
||||||
layoutAboutToBeChanged();
|
rootItem()->sortChildren([order, column](const TreeItem *item1, const TreeItem *item2) -> bool {
|
||||||
Utils::sort(m_threads, [&](const ThreadData &t1, const ThreadData &t2) -> bool {
|
const QVariant v1 = static_cast<const ThreadItem *>(item1)->threadPart(column);
|
||||||
const QVariant v1 = threadPart(t1, column);
|
const QVariant v2 = static_cast<const ThreadItem *>(item2)->threadPart(column);
|
||||||
const QVariant v2 = threadPart(t2, column);
|
|
||||||
if (v1 == v2)
|
if (v1 == v2)
|
||||||
return false;
|
return false;
|
||||||
|
if (column == 0)
|
||||||
|
return (v1.toInt() < v2.toInt()) ^ (order == Qt::DescendingOrder);
|
||||||
// FIXME: Use correct toXXX();
|
// FIXME: Use correct toXXX();
|
||||||
return (v1.toString() < v2.toString()) ^ (order == Qt::DescendingOrder);
|
return (v1.toString() < v2.toString()) ^ (order == Qt::DescendingOrder);
|
||||||
}
|
});
|
||||||
);
|
|
||||||
layoutChanged();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ThreadId ThreadsHandler::currentThread() const
|
ThreadId ThreadsHandler::currentThread() const
|
||||||
@@ -277,8 +289,8 @@ ThreadId ThreadsHandler::currentThread() const
|
|||||||
|
|
||||||
ThreadId ThreadsHandler::threadAt(int index) const
|
ThreadId ThreadsHandler::threadAt(int index) const
|
||||||
{
|
{
|
||||||
QTC_ASSERT(index >= 0 && index < m_threads.size(), return ThreadId());
|
QTC_ASSERT(index >= 0 && index < rootItem()->childCount(), return ThreadId());
|
||||||
return m_threads[index].id;
|
return static_cast<ThreadItem *>(rootItem()->childAt(index))->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::setCurrentThread(ThreadId id)
|
void ThreadsHandler::setCurrentThread(ThreadId id)
|
||||||
@@ -286,106 +298,66 @@ void ThreadsHandler::setCurrentThread(ThreadId id)
|
|||||||
if (id == m_currentId)
|
if (id == m_currentId)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const int index = indexOf(id);
|
ThreadItem *newItem = itemForThreadId(this, id);
|
||||||
if (index == -1) {
|
if (!newItem) {
|
||||||
qWarning("ThreadsHandler::setCurrentThreadId: No such thread %d.", int(id.raw()));
|
qWarning("ThreadsHandler::setCurrentThreadId: No such thread %d.", int(id.raw()));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Emit changed for previous frame.
|
ThreadItem *oldItem = itemForThreadId(this, m_currentId);
|
||||||
threadDataChanged(m_currentId);
|
|
||||||
|
|
||||||
m_currentId = id;
|
m_currentId = id;
|
||||||
|
if (oldItem)
|
||||||
|
oldItem->update();
|
||||||
|
|
||||||
// Emit changed for new frame.
|
newItem->update();
|
||||||
threadDataChanged(m_currentId);
|
|
||||||
|
|
||||||
updateThreadBox();
|
updateThreadBox();
|
||||||
}
|
}
|
||||||
|
|
||||||
int ThreadsHandler::indexOf(ThreadId threadId) const
|
void ThreadsHandler::updateThread(const ThreadData &threadData)
|
||||||
{
|
{
|
||||||
for (int i = m_threads.size(); --i >= 0; )
|
if (ThreadItem *item = itemForThreadId(this, threadData.id))
|
||||||
if (m_threads.at(i).id == threadId)
|
item->mergeThreadData(threadData);
|
||||||
return i;
|
else
|
||||||
return -1;
|
rootItem()->appendChild(new ThreadItem(this, threadData));
|
||||||
}
|
|
||||||
|
|
||||||
void ThreadsHandler::updateThread(const ThreadData &thread)
|
|
||||||
{
|
|
||||||
const int i = indexOf(thread.id);
|
|
||||||
if (i == -1) {
|
|
||||||
beginInsertRows(QModelIndex(), m_threads.size(), m_threads.size());
|
|
||||||
m_threads.append(thread);
|
|
||||||
endInsertRows();
|
|
||||||
} else {
|
|
||||||
mergeThreadData(m_threads[i], thread);
|
|
||||||
threadDataChanged(thread.id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::removeThread(ThreadId threadId)
|
void ThreadsHandler::removeThread(ThreadId threadId)
|
||||||
{
|
{
|
||||||
const int i = indexOf(threadId);
|
if (ThreadItem *item = itemForThreadId(this, threadId))
|
||||||
if (i == -1)
|
delete takeItem(item);
|
||||||
return;
|
|
||||||
beginRemoveRows(QModelIndex(), i, i);
|
|
||||||
m_threads.remove(i);
|
|
||||||
endRemoveRows();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::setThreads(const Threads &threads)
|
void ThreadsHandler::setThreads(const Threads &threads)
|
||||||
{
|
{
|
||||||
beginResetModel();
|
auto root = new ThreadItem(this);
|
||||||
m_threads = threads;
|
for (int i = 0, n = threads.size(); i < n; ++i)
|
||||||
bool found = false;
|
root->appendChild(new ThreadItem(this, threads.at(i)));
|
||||||
for (int i = 0, n = m_threads.size(); i < n; ++i)
|
rootItem()->removeChildren();
|
||||||
if (threads.at(i).id == m_currentId) {
|
setRootItem(root);
|
||||||
found = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (!found)
|
|
||||||
m_currentId = ThreadId();
|
|
||||||
m_resetLocationScheduled = false;
|
m_resetLocationScheduled = false;
|
||||||
endResetModel();
|
|
||||||
updateThreadBox();
|
updateThreadBox();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::updateThreadBox()
|
void ThreadsHandler::updateThreadBox()
|
||||||
{
|
{
|
||||||
QStringList list;
|
QStringList list;
|
||||||
foreach (const ThreadData &thread, m_threads)
|
auto items = itemsAtLevel<ThreadItem *>(1);
|
||||||
list.append(QString::fromLatin1("#%1 %2").arg(thread.id.raw()).arg(thread.name));
|
foreach (ThreadItem *item, items)
|
||||||
Internal::setThreads(list, indexOf(m_currentId));
|
list.append(QString::fromLatin1("#%1 %2").arg(item->id.raw()).arg(item->name));
|
||||||
}
|
Internal::setThreadBoxContents(list, indexForThreadId(this, m_currentId));
|
||||||
|
|
||||||
void ThreadsHandler::threadDataChanged(ThreadId id)
|
|
||||||
{
|
|
||||||
int row = indexOf(id);
|
|
||||||
if (row < 0)
|
|
||||||
return;
|
|
||||||
QModelIndex l = index(row, 0);
|
|
||||||
QModelIndex r = index(row, ThreadData::ColumnCount - 1);
|
|
||||||
dataChanged(l, r);
|
|
||||||
}
|
|
||||||
|
|
||||||
Threads ThreadsHandler::threads() const
|
|
||||||
{
|
|
||||||
return m_threads;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ThreadData ThreadsHandler::thread(ThreadId id) const
|
ThreadData ThreadsHandler::thread(ThreadId id) const
|
||||||
{
|
{
|
||||||
const int i = indexOf(id);
|
if (ThreadItem *item = itemForThreadId(this, id))
|
||||||
return i == -1 ? ThreadData() : m_threads.at(i);
|
return *item;
|
||||||
|
return ThreadData();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::removeAll()
|
void ThreadsHandler::removeAll()
|
||||||
{
|
{
|
||||||
beginResetModel();
|
rootItem()->removeChildren();
|
||||||
m_threads.clear();
|
|
||||||
m_currentId = ThreadId();
|
|
||||||
endResetModel();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::notifyRunning(const QByteArray &data)
|
void ThreadsHandler::notifyRunning(const QByteArray &data)
|
||||||
@@ -404,18 +376,15 @@ void ThreadsHandler::notifyRunning(const QByteArray &data)
|
|||||||
|
|
||||||
void ThreadsHandler::notifyAllRunning()
|
void ThreadsHandler::notifyAllRunning()
|
||||||
{
|
{
|
||||||
for (int i = m_threads.size(); --i >= 0; )
|
auto items = itemsAtLevel<ThreadItem *>(1);
|
||||||
m_threads[i].notifyRunning();
|
foreach (ThreadItem *item, items)
|
||||||
layoutChanged();
|
item->notifyRunning();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::notifyRunning(ThreadId id)
|
void ThreadsHandler::notifyRunning(ThreadId threadId)
|
||||||
{
|
{
|
||||||
int i = indexOf(id);
|
if (ThreadItem *item = itemForThreadId(this, threadId))
|
||||||
if (i >= 0) {
|
item->notifyRunning();
|
||||||
m_threads[i].notifyRunning();
|
|
||||||
threadDataChanged(id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::notifyStopped(const QByteArray &data)
|
void ThreadsHandler::notifyStopped(const QByteArray &data)
|
||||||
@@ -434,18 +403,15 @@ void ThreadsHandler::notifyStopped(const QByteArray &data)
|
|||||||
|
|
||||||
void ThreadsHandler::notifyAllStopped()
|
void ThreadsHandler::notifyAllStopped()
|
||||||
{
|
{
|
||||||
for (int i = m_threads.size(); --i >= 0; )
|
auto items = itemsAtLevel<ThreadItem *>(1);
|
||||||
m_threads[i].stopped = true;
|
foreach (ThreadItem *item, items)
|
||||||
layoutChanged();
|
item->notifyStopped();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::notifyStopped(ThreadId id)
|
void ThreadsHandler::notifyStopped(ThreadId threadId)
|
||||||
{
|
{
|
||||||
int i = indexOf(id);
|
if (ThreadItem *item = itemForThreadId(this, threadId))
|
||||||
if (i >= 0) {
|
item->notifyStopped();
|
||||||
m_threads[i].stopped = true;
|
|
||||||
threadDataChanged(id);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadsHandler::updateThreads(const GdbMi &data)
|
void ThreadsHandler::updateThreads(const GdbMi &data)
|
||||||
@@ -455,12 +421,6 @@ void ThreadsHandler::updateThreads(const GdbMi &data)
|
|||||||
// file="/.../app.cpp",fullname="/../app.cpp",line="1175"},
|
// file="/.../app.cpp",fullname="/../app.cpp",line="1175"},
|
||||||
// state="stopped",core="0"}],current-thread-id="1"
|
// state="stopped",core="0"}],current-thread-id="1"
|
||||||
|
|
||||||
// Emit changed for previous frame.
|
|
||||||
// if (m_currentIndex != -1) {
|
|
||||||
// rowChanged(m_currentIndex);
|
|
||||||
// m_currentIndex = -1;
|
|
||||||
// }
|
|
||||||
|
|
||||||
const std::vector<GdbMi> items = data["threads"].children();
|
const std::vector<GdbMi> items = data["threads"].children();
|
||||||
const int n = int(items.size());
|
const int n = int(items.size());
|
||||||
for (int index = 0; index != n; ++index) {
|
for (int index = 0; index != n; ++index) {
|
||||||
@@ -483,14 +443,7 @@ void ThreadsHandler::updateThreads(const GdbMi &data)
|
|||||||
}
|
}
|
||||||
|
|
||||||
const GdbMi current = data["current-thread-id"];
|
const GdbMi current = data["current-thread-id"];
|
||||||
if (current.isValid()) {
|
m_currentId = current.isValid() ? ThreadId(current.data().toLongLong()) : ThreadId();
|
||||||
ThreadId currentId = ThreadId(current.data().toLongLong());
|
|
||||||
if (currentId != m_currentId) {
|
|
||||||
threadDataChanged(m_currentId);
|
|
||||||
m_currentId = currentId;
|
|
||||||
threadDataChanged(m_currentId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
updateThreadBox();
|
updateThreadBox();
|
||||||
}
|
}
|
||||||
|
@@ -33,8 +33,7 @@
|
|||||||
|
|
||||||
#include "threaddata.h"
|
#include "threaddata.h"
|
||||||
|
|
||||||
#include <QAbstractTableModel>
|
#include <utils/treemodel.h>
|
||||||
#include <QIcon>
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
@@ -47,7 +46,7 @@ namespace Internal {
|
|||||||
|
|
||||||
class GdbMi;
|
class GdbMi;
|
||||||
|
|
||||||
class ThreadsHandler : public QAbstractTableModel
|
class ThreadsHandler : public Utils::TreeModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
@@ -59,45 +58,33 @@ public:
|
|||||||
ThreadId threadAt(int index) const;
|
ThreadId threadAt(int index) const;
|
||||||
void setCurrentThread(ThreadId id);
|
void setCurrentThread(ThreadId id);
|
||||||
|
|
||||||
void updateThread(const ThreadData &thread);
|
void updateThread(const ThreadData &threadData);
|
||||||
void updateThreads(const GdbMi &data);
|
void updateThreads(const GdbMi &data);
|
||||||
|
|
||||||
void removeThread(ThreadId threadId);
|
void removeThread(ThreadId threadId);
|
||||||
void setThreads(const Threads &threads);
|
void setThreads(const Threads &threads);
|
||||||
void removeAll();
|
void removeAll();
|
||||||
Threads threads() const;
|
|
||||||
ThreadData thread(ThreadId id) const;
|
ThreadData thread(ThreadId id) const;
|
||||||
QAbstractItemModel *model();
|
QAbstractItemModel *model();
|
||||||
|
|
||||||
// Clear out all frame information
|
// Clear out all frame information
|
||||||
void notifyRunning(const QByteArray &data);
|
void notifyRunning(const QByteArray &data);
|
||||||
void notifyRunning(ThreadId id);
|
void notifyRunning(ThreadId threadId);
|
||||||
void notifyAllRunning();
|
void notifyAllRunning();
|
||||||
|
|
||||||
void notifyStopped(const QByteArray &data);
|
void notifyStopped(const QByteArray &data);
|
||||||
void notifyStopped(ThreadId id);
|
void notifyStopped(ThreadId threadId);
|
||||||
void notifyAllStopped();
|
void notifyAllStopped();
|
||||||
|
|
||||||
void resetLocation();
|
void resetLocation();
|
||||||
void scheduleResetLocation();
|
void scheduleResetLocation();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int indexOf(ThreadId threadId) const;
|
|
||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
||||||
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
||||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
|
||||||
QVariant headerData(int section, Qt::Orientation orientation,
|
|
||||||
int role = Qt::DisplayRole) const;
|
|
||||||
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
||||||
void sort(int, Qt::SortOrder);
|
|
||||||
void updateThreadBox();
|
void updateThreadBox();
|
||||||
void threadDataChanged(ThreadId id);
|
|
||||||
|
|
||||||
Threads m_threads;
|
void sort(int column, Qt::SortOrder order);
|
||||||
|
|
||||||
ThreadId m_currentId;
|
ThreadId m_currentId;
|
||||||
const QIcon m_positionIcon;
|
|
||||||
const QIcon m_emptyIcon;
|
|
||||||
|
|
||||||
bool m_resetLocationScheduled;
|
bool m_resetLocationScheduled;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user