/* This file is part of Massif Visualizer Copyright 2010 Milian Wolff This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) version 3, or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), which shall act as a proxy defined in Section 6 of version 3 of the license. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . */ #include "datatreemodel.h" #include "massifdata/filedata.h" #include "massifdata/snapshotitem.h" #include "massifdata/treeleafitem.h" #include "massifdata/util.h" #include #include using namespace Massif; DataTreeModel::DataTreeModel(QObject* parent) : QAbstractItemModel(parent), m_data(0) { } DataTreeModel::~DataTreeModel() { } void DataTreeModel::setSource(const FileData* data) { if (m_data) { beginRemoveRows(QModelIndex(), 0, rowCount() - 1); m_data = 0; m_nodeToRow.clear(); m_heapRootToSnapshot.clear(); endRemoveRows(); } if (data) { beginInsertRows(QModelIndex(), 0, data->snapshots().size() - 1); m_data = data; int row = 0; foreach(const SnapshotItem* item, m_data->snapshots()) { if (item->heapTree()) { mapNodeToRow(item->heapTree(), row++); m_heapRootToSnapshot[item->heapTree()] = item; } else { row++; } } endInsertRows(); } } void DataTreeModel::mapNodeToRow(const TreeLeafItem* node, const int row) { m_nodeToRow[node] = row; int r = 0; foreach(const TreeLeafItem* child, node->children()) { mapNodeToRow(child, r++); } } QVariant DataTreeModel::headerData(int section, Qt::Orientation orientation, int role) const { Q_UNUSED(section) Q_UNUSED(orientation) Q_UNUSED(role) return i18n("Snapshots"); } QVariant DataTreeModel::data(const QModelIndex& index, int role) const { // FIXME kdchart queries (-1, -1) for empty models if ( index.row() == -1 || index.column() == -1 ) { // qWarning() << "DataTreeModel::data: FIXME fix kdchart views to not query model data for invalid indices!"; return QVariant(); } Q_ASSERT(index.row() >= 0 && index.row() < rowCount(index.parent())); Q_ASSERT(index.column() >= 0 && index.column() < columnCount(index.parent())); Q_ASSERT(m_data); // custom background for peak snapshot if ( role == Qt::BackgroundRole ) { // double maxValue = 1; const double maxValue = m_data->peak()->cost(); double currentValue = 0; if ( !index.parent().isValid() && m_data->peak() ) { // maxValue = m_data->peak()->memHeap(); const SnapshotItem* snapshot = m_data->snapshots().at(index.row()); currentValue = snapshot->cost(); } else if (index.parent().isValid()) { Q_ASSERT(index.internalPointer()); const TreeLeafItem* node = static_cast(index.internalPointer()); currentValue = node->cost(); Q_ASSERT(node->parent()); /* TreeLeafItem* parent = node->parent(); while (parent->parent()) { parent = parent->parent(); } maxValue = parent->cost(); // normalize maxValue -= parent->children().last()->cost(); currentValue -= parent->children().last()->cost(); */ } if (currentValue > 0) { const double ratio = (currentValue / maxValue); QColor c = QColor::fromHsv(120 - ratio * 120, 255, 255, (-((ratio-1) * (ratio-1))) * 120 + 120); // QColor c = QColor::fromHsv(120 - ratio * 120, 255, 255, 120); return QBrush(c); } else { return QVariant(); } } if (role == ModelItemRole) { return QVariant::fromValue(itemForIndex(index)); } if (role != Qt::DisplayRole && role != Qt::ToolTipRole && role != RawLabelRole && role != TreeItemRole) { return QVariant(); } if (!index.parent().isValid()) { const SnapshotItem* snapshot = m_data->snapshots().at(index.row()); if (role == Qt::ToolTipRole) { if (snapshot == m_data->peak()) { return i18n("Peak snapshot: heap cost of %1", prettyCost(snapshot->cost())); } else { return i18n("Snapshot #%1: heap cost of %2", snapshot->number(), prettyCost(snapshot->cost())); } } else if (role == RawLabelRole) { return i18nc("%1: snapshot number", "Snapshot #%1", snapshot->number()); } else if (role == TreeItemRole) { return QVariant::fromValue(0); } const QString costStr = prettyCost(snapshot->cost()); if (snapshot == m_data->peak()) { return i18nc("%1: cost, %2: snapshot number", "%1: Snapshot #%2 (peak)", costStr, snapshot->number()); } else { return i18nc("%1: cost, %2: snapshot number", "%1: Snapshot #%2", costStr, snapshot->number()); } } else { Q_ASSERT(index.internalPointer()); const TreeLeafItem* item = static_cast(index.internalPointer()); if (role == Qt::ToolTipRole) { return tooltipForTreeLeaf(item, snapshotForTreeLeaf(item), item->label()); } else if (role == RawLabelRole) { return item->label(); } else if (role == TreeItemRole) { return QVariant::fromValue(item); } return i18nc("%1: cost, %2: snapshot label (i.e. func name etc.)", "%1: %2", prettyCost(item->cost()), QString::fromLatin1(prettyLabel(item->label()))); } return QVariant(); } int DataTreeModel::columnCount(const QModelIndex& parent) const { Q_UNUSED(parent) return 1; } int DataTreeModel::rowCount(const QModelIndex& parent) const { if (!m_data || (parent.isValid() && parent.column() != 0)) { return 0; } if (parent.isValid()) { if (!parent.internalPointer()) { // snapshot without detailed heaptree return 0; } return static_cast(parent.internalPointer())->children().size(); } else { return m_data->snapshots().size(); } } QModelIndex DataTreeModel::index(int row, int column, const QModelIndex& parent) const { if (row < 0 || row >= rowCount(parent) || column < 0 || column >= columnCount(parent)) { // invalid return QModelIndex(); } if (parent.isValid()) { if (parent.column() == 0) { Q_ASSERT(parent.internalPointer()); // parent is a tree leaf item return createIndex(row, column, static_cast(static_cast(parent.internalPointer())->children().at(row))); } else { return QModelIndex(); } } else { return createIndex(row, column, static_cast(m_data->snapshots().at(row)->heapTree())); } } QModelIndex DataTreeModel::parent(const QModelIndex& child) const { if (child.internalPointer()) { const TreeLeafItem* item = static_cast(child.internalPointer()); if (item->parent()) { int row = m_nodeToRow.value(item->parent(), -1); Q_ASSERT(row != -1); // somewhere in the detailed heap tree return createIndex(row, 0, static_cast(item->parent())); } else { // snapshot item with heap tree return QModelIndex(); } } else { // snapshot item without detailed heap tree return QModelIndex(); } } QModelIndex DataTreeModel::indexForSnapshot(const SnapshotItem* snapshot) const { int idx = m_data->snapshots().indexOf(const_cast(snapshot)); if ( idx == -1 ) { return QModelIndex(); } return index(idx, 0); } QModelIndex DataTreeModel::indexForTreeLeaf(const TreeLeafItem* node) const { if (!m_data) { return QModelIndex(); } int row = m_nodeToRow.value(node, -1); if (row == -1) { return QModelIndex(); } return createIndex(row, 0, const_cast(static_cast(node))); } ModelItem DataTreeModel::itemForIndex(const QModelIndex& idx) const { if (!m_data || !idx.isValid() || idx.row() >= m_data->snapshots().count()) { return ModelItem(0, 0); } if (idx.parent().isValid()) { Q_ASSERT(idx.internalPointer()); return ModelItem(static_cast(idx.internalPointer()), 0); } else { return ModelItem(0, m_data->snapshots().at(idx.row())); } } QModelIndex DataTreeModel::indexForItem(const ModelItem& item) const { if (!item.first && !item.second) { return QModelIndex(); } Q_ASSERT((item.first && !item.second) || (!item.first && item.second)); if (item.first) { return indexForTreeLeaf(item.first); } else { return indexForSnapshot(item.second); } } const SnapshotItem* DataTreeModel::snapshotForTreeLeaf(const TreeLeafItem* node) const { while (node->parent()) { node = node->parent(); } return m_heapRootToSnapshot.value(node); }