/************************************************************************ * file name : blocks_tree_widget.cpp * ----------------- : * creation time : 2016/06/26 * copyright : (c) 2016 Victor Zarubkin * author : Victor Zarubkin * email : v.s.zarubkin@gmail.com * ----------------- : * description : The file contains implementation of TreeWidget and it's auxiliary classes * : for displyaing easy_profiler blocks tree. * ----------------- : * change log : * 2016/06/26 Victor Zarubkin: Moved sources from tree_view.h * : and renamed classes from My* to Prof*. * : * 2016/06/27 Victor Zarubkin: Added possibility to colorize rows * : with profiler blocks' colors. * : Also added displaying frame statistics for blocks. * : Disabled sorting by name. * : * * ----------------- : * license : TODO: add license text ************************************************************************/ #include #include #include #include "blocks_tree_widget.h" ////////////////////////////////////////////////////////////////////////// enum ColumnsIndexes { COL_UNKNOWN = -1, COL_NAME = 0, COL_DURATION, COL_BEGIN, COL_END, COL_MIN_TOTAL, COL_MAX_TOTAL, COL_AVERAGE_TOTAL, COL_NCALLS_TOTAL, COL_MIN, COL_MAX, COL_AVERAGE, COL_NCALLS, COL_COLUMNS_NUMBER }; ////////////////////////////////////////////////////////////////////////// ProfTreeWidgetItem::ProfTreeWidgetItem(const BlocksTree* _treeBlock, Parent* _parent) : Parent(_parent) , m_block(_treeBlock) { } ProfTreeWidgetItem::~ProfTreeWidgetItem() { } bool ProfTreeWidgetItem::operator < (const Parent& _other) const { const auto col = treeWidget()->sortColumn(); switch (col) { // case COL_UNKNOWN: // case COL_NAME: // { // // column 0 - Name // return Parent::operator < (_other); // } case COL_NCALLS_TOTAL: case COL_NCALLS: { // column 7 and 11 - N calls return data(col, Qt::UserRole).toUInt() < _other.data(col, Qt::UserRole).toUInt(); } default: { // columns [1; 6] and [8; 10] - durations return data(col, Qt::UserRole).toULongLong() < _other.data(col, Qt::UserRole).toULongLong(); } } return false; } const BlocksTree* ProfTreeWidgetItem::block() const { return m_block; } void ProfTreeWidgetItem::setTimeSmart(int _column, const ::profiler::timestamp_t& _time) { setData(_column, Qt::UserRole, (quint64)_time); setToolTip(_column, QString("%1 ns").arg(_time)); if (_time < 1e3) { setText(_column, QString("%1 ns").arg(_time)); } else if (_time < 1e6) { setText(_column, QString("%1 us").arg(double(_time) * 1e-3, 0, 'f', 3)); } else if (_time < 1e9) { setText(_column, QString("%1 ms").arg(double(_time) * 1e-6, 0, 'f', 3)); } else { setText(_column, QString("%1 s").arg(double(_time) * 1e-9, 0, 'f', 3)); } } void ProfTreeWidgetItem::setTimeMs(int _column, const ::profiler::timestamp_t& _time) { setData(_column, Qt::UserRole, (quint64)_time); setToolTip(_column, QString("%1 ns").arg(_time)); setText(_column, QString::number(double(_time) * 1e-6, 'g', 9)); } void ProfTreeWidgetItem::setBackgroundColor(const QColor& _color) { m_customBGColor = _color; } void ProfTreeWidgetItem::setTextColor(const QColor& _color) { m_customTextColor = _color; } void ProfTreeWidgetItem::colorize(bool _colorize) { if (_colorize) { for (int i = 0; i < COL_COLUMNS_NUMBER; ++i) { setBackground(i, m_customBGColor); setForeground(i, m_customTextColor); } } else { const QBrush nobrush; for (int i = 0; i < COL_COLUMNS_NUMBER; ++i) { setBackground(i, nobrush); setForeground(i, nobrush); } } } ////////////////////////////////////////////////////////////////////////// ProfTreeWidget::ProfTreeWidget(QWidget* _parent) : Parent(_parent), m_beginTime(-1), m_bColorRows(false) { setAutoFillBackground(false); setAlternatingRowColors(true); setItemsExpandable(true); setAnimated(true); setSortingEnabled(false); setColumnCount(COL_COLUMNS_NUMBER); auto header = new QTreeWidgetItem(); header->setText(COL_NAME, "Name"); header->setText(COL_DURATION, "Duration"); header->setText(COL_BEGIN, "Begin, ms"); header->setText(COL_END, "End, ms"); header->setText(COL_MIN_TOTAL, "Min dur. total"); header->setText(COL_MAX_TOTAL, "Max dur. total"); header->setText(COL_AVERAGE_TOTAL, "Average dur. total"); header->setText(COL_NCALLS_TOTAL, "N Calls total"); header->setText(COL_MIN, "Min dur."); header->setText(COL_MAX, "Max dur."); header->setText(COL_AVERAGE, "Average dur."); header->setText(COL_NCALLS, "N Calls"); setHeaderItem(header); } ProfTreeWidget::ProfTreeWidget(const unsigned int _blocksNumber, const thread_blocks_tree_t& _blocksTree, QWidget* _parent) : This(_parent) { setTreeInternal(_blocksNumber, _blocksTree); setSortingEnabled(true); //sortByColumn(COL_NAME, Qt::AscendingOrder); sortByColumn(COL_BEGIN, Qt::AscendingOrder); connect(this, &Parent::itemExpanded, this, &This::onItemExpand); } ProfTreeWidget::~ProfTreeWidget() { } void ProfTreeWidget::setTree(const unsigned int _blocksNumber, const thread_blocks_tree_t& _blocksTree) { setSortingEnabled(false); disconnect(this, &Parent::itemExpanded, this, &This::onItemExpand); m_items.clear(); m_itemblocks.clear(); QSignalBlocker b(this); clear(); b.unblock(); m_beginTime = -1; setTreeInternal(_blocksNumber, _blocksTree); setSortingEnabled(true); //sortByColumn(COL_NAME, Qt::AscendingOrder); sortByColumn(COL_BEGIN, Qt::AscendingOrder); connect(this, &Parent::itemExpanded, this, &This::onItemExpand); } void ProfTreeWidget::setTreeInternal(const unsigned int _blocksNumber, const thread_blocks_tree_t& _blocksTree) { m_items.reserve(_blocksNumber + _blocksTree.size()); // _blocksNumber does not include Thread root blocks for (const auto& threadTree : _blocksTree) { const auto beginTime = threadTree.second.children.front().node->block()->getBegin(); if (m_beginTime > beginTime) { m_beginTime = beginTime; } } for (const auto& threadTree : _blocksTree) { auto item = new ProfTreeWidgetItem(&threadTree.second); item->setText(COL_NAME, QString("Thread %1").arg(threadTree.first)); m_items.push_back(item); setTreeInternal(threadTree.second.children, item); addTopLevelItem(item); } } void ProfTreeWidget::setTreeInternal(const BlocksTree::children_t& _children, ProfTreeWidgetItem* _parent) { for (const auto& child : _children) { auto item = new ProfTreeWidgetItem(&child, _parent); item->setText(COL_NAME, child.node->getBlockName()); item->setTimeSmart(COL_DURATION, child.node->block()->duration()); item->setTimeMs(COL_BEGIN, child.node->block()->getBegin() - m_beginTime); item->setTimeMs(COL_END, child.node->block()->getEnd() - m_beginTime); if (child.total_statistics) { item->setTimeSmart(COL_MIN_TOTAL, child.total_statistics->min_duration); item->setTimeSmart(COL_MAX_TOTAL, child.total_statistics->max_duration); item->setTimeSmart(COL_AVERAGE_TOTAL, child.total_statistics->average_duration()); item->setData(COL_NCALLS_TOTAL, Qt::UserRole, child.total_statistics->calls_number); item->setText(COL_NCALLS_TOTAL, QString::number(child.total_statistics->calls_number)); } if (child.frame_statistics) { item->setTimeSmart(COL_MIN, child.frame_statistics->min_duration); item->setTimeSmart(COL_MAX, child.frame_statistics->max_duration); item->setTimeSmart(COL_AVERAGE, child.frame_statistics->average_duration()); item->setData(COL_NCALLS, Qt::UserRole, child.frame_statistics->calls_number); item->setText(COL_NCALLS, QString::number(child.frame_statistics->calls_number)); } const auto color = child.node->block()->getColor(); const auto bgColor = QColor(profiler::colors::get_red(color), profiler::colors::get_green(color), profiler::colors::get_blue(color)); const auto fgColor = QColor(QRgb(0x00ffffff - bgColor.rgb())); item->setBackgroundColor(bgColor); item->setTextColor(fgColor); m_items.push_back(item); m_itemblocks[child.node] = item; if (!child.children.empty()) { setTreeInternal(child.children, item); } } } void ProfTreeWidget::contextMenuEvent(QContextMenuEvent* _event) { const auto col = currentColumn(); auto item = static_cast(currentItem()); if (item == nullptr || col < 0) { return; } QMenu menu; auto action = new QAction("Expand all", nullptr); connect(action, &QAction::triggered, this, &This::onExpandAllClicked); menu.addAction(action); action = new QAction("Collapse all", nullptr); connect(action, &QAction::triggered, this, &This::onCollapseAllClicked); menu.addAction(action); menu.addSeparator(); action = new QAction("Color rows", nullptr); action->setCheckable(true); action->setChecked(m_bColorRows); connect(action, &QAction::triggered, this, &This::onColorizeRowsTriggered); menu.addAction(action); switch (col) { case COL_MIN_TOTAL: case COL_MIN: { menu.addSeparator(); auto itemAction = new ProfItemAction("Jump to such item", item); connect(itemAction, &ProfItemAction::clicked, this, &This::onJumpToMinItemClicked); menu.addAction(itemAction); break; } case COL_MAX_TOTAL: case COL_MAX: { menu.addSeparator(); auto itemAction = new ProfItemAction("Jump to such item", item); connect(itemAction, &ProfItemAction::clicked, this, &This::onJumpToMaxItemClicked); menu.addAction(itemAction); break; } } menu.exec(QCursor::pos()); _event->accept(); } void ProfTreeWidget::onJumpToMinItemClicked(ProfTreeWidgetItem* _item) { auto it = m_itemblocks.find(_item->block()->total_statistics->min_duration_block); if (it != m_itemblocks.end()) { scrollToItem(it->second, QAbstractItemView::PositionAtCenter); setCurrentItem(it->second); } } void ProfTreeWidget::onJumpToMaxItemClicked(ProfTreeWidgetItem* _item) { auto it = m_itemblocks.find(_item->block()->total_statistics->max_duration_block); if (it != m_itemblocks.end()) { scrollToItem(it->second, QAbstractItemView::PositionAtCenter); setCurrentItem(it->second); } } void ProfTreeWidget::onCollapseAllClicked(bool) { collapseAll(); } void ProfTreeWidget::onExpandAllClicked(bool) { disconnect(this, &Parent::itemExpanded, this, &This::onItemExpand); expandAll(); resizeColumnToContents(COL_NAME); connect(this, &Parent::itemExpanded, this, &This::onItemExpand); } void ProfTreeWidget::onItemExpand(QTreeWidgetItem*) { resizeColumnToContents(COL_NAME); } void ProfTreeWidget::onColorizeRowsTriggered(bool _colorize) { const QSignalBlocker b(this); m_bColorRows = _colorize; auto current = currentItem(); collapseAll(); // Without collapseAll() changing items process is VERY VERY SLOW. // TODO: Find the reason of such behavior. QSignalBlocker(this) does not help. QSignalBlocker(item) does not work, because items are not inherited from QObject. for (auto item : m_items) { item->colorize(m_bColorRows); } // Scroll back to previously selected item if (current) { scrollToItem(current, QAbstractItemView::PositionAtCenter); setCurrentItem(current); } } //////////////////////////////////////////////////////////////////////////