1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/* This file is part of KCachegrind.
Copyright (c) 2003-2015 Josef Weidendorfer <Josef.Weidendorfer@gmx.de>
KCachegrind is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, version 2.
This program 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/*
* Call Views
*/
#include "callview.h"
#include <QAction>
#include <QMenu>
#include <QTreeWidget>
#include <QHeaderView>
#include <QKeyEvent>
#include "globalconfig.h"
#include "callitem.h"
//
// CallView
//
CallView::CallView(bool showCallers, TraceItemView* parentView, QWidget* parent)
: QTreeWidget(parent), TraceItemView(parentView)
{
_showCallers = showCallers;
QStringList headerLabels;
headerLabels << tr( "Cost" )
<< tr( "Cost per call" )
<< tr( "Cost 2" )
<< tr( "Cost 2 per call" )
<< tr( "Count" )
<< ((_showCallers) ? tr( "Caller" ) : tr( "Callee" ));
setHeaderLabels(headerLabels);
// forbid scaling icon pixmaps to smaller size
setIconSize(QSize(99,99));
setAllColumnsShowFocus(true);
setRootIsDecorated(false);
setUniformRowHeights(true);
// sorting will be enabled after refresh()
sortByColumn(0, Qt::DescendingOrder);
setMinimumHeight(50);
this->setWhatsThis( whatsThis() );
connect( this,
SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)),
SLOT(selectedSlot(QTreeWidgetItem*,QTreeWidgetItem*)) );
setContextMenuPolicy(Qt::CustomContextMenu);
connect( this,
SIGNAL(customContextMenuRequested(const QPoint &) ),
SLOT(context(const QPoint &)));
connect(this,
SIGNAL(itemDoubleClicked(QTreeWidgetItem*,int)),
SLOT(activatedSlot(QTreeWidgetItem*,int)));
connect(header(), SIGNAL(sectionClicked(int)),
this, SLOT(headerClicked(int)));
}
QString CallView::whatsThis() const
{
return _showCallers ?
tr( "<b>List of direct Callers</b>"
"<p>This list shows all functions calling the "
"current selected one directly, together with "
"a call count and the cost spent in the current "
"selected function while being called from the "
"function from the list.</p>"
"<p>An icon instead of an inclusive cost specifies "
"that this is a call inside of a recursive cycle. "
"An inclusive cost makes no sense here.</p>"
"<p>Selecting a function makes it the current selected "
"one of this information panel. "
"If there are two panels (Split mode), the "
"function of the other panel is changed instead.</p>") :
tr( "<b>List of direct Callees</b>"
"<p>This list shows all functions called by the "
"current selected one directly, together with "
"a call count and the cost spent in this function "
"while being called from the selected function.</p>"
"<p>Selecting a function makes it the current selected "
"one of this information panel. "
"If there are two panels (Split mode), the "
"function of the other panel is changed instead.</p>");
}
void CallView::context(const QPoint & p)
{
QMenu popup;
// p is in local coordinates
int col = columnAt(p.x());
QTreeWidgetItem* i = itemAt(p);
TraceCall* c = i ? ((CallItem*) i)->call() : 0;
TraceFunction *f = 0, *cycle = 0;
QAction* activateFunctionAction = 0;
QAction* activateCycleAction = 0;
if (c) {
QString name = _showCallers ? c->callerName(true) : c->calledName(true);
f = _showCallers ? c->caller(true) : c->called(true);
cycle = f->cycle();
QString menuText = tr("Go to '%1'").arg(GlobalConfig::shortenSymbol(name));
activateFunctionAction = popup.addAction(menuText);
if (cycle) {
name = GlobalConfig::shortenSymbol(cycle->prettyName());
QString menuText = tr("Go to '%1'").arg(name);
activateCycleAction = popup.addAction(menuText);
}
popup.addSeparator();
}
// add menu items to select event type if column displays cost for a type
if (col < 4) {
addEventTypeMenu(&popup);
popup.addSeparator();
}
addGoMenu(&popup);
QAction* a = popup.exec(mapToGlobal(p + QPoint(0,header()->height())));
if (a == activateFunctionAction)
TraceItemView::activated(f);
else if (a == activateCycleAction)
TraceItemView::activated(cycle);
}
void CallView::selectedSlot(QTreeWidgetItem * i, QTreeWidgetItem *)
{
if (!i) return;
TraceCall* c = ((CallItem*) i)->call();
// Should we skip cycles here?
CostItem* f = _showCallers ? c->caller(false) : c->called(false);
_selectedItem = f;
selected(f);
}
void CallView::activatedSlot(QTreeWidgetItem* i,int)
{
if (!i) return;
TraceCall* c = ((CallItem*) i)->call();
// skip cycles: use the context menu to get to the cycle...
CostItem* f = _showCallers ? c->caller(true) : c->called(true);
TraceItemView::activated(f);
}
void CallView::headerClicked(int col)
{
// name columns should be sortable in both ways
if (col == 5) return;
// all others only descending
sortByColumn(col, Qt::DescendingOrder);
}
void CallView::keyPressEvent(QKeyEvent* event)
{
QTreeWidgetItem *item = currentItem();
if (item && ((event->key() == Qt::Key_Return) ||
(event->key() == Qt::Key_Space)))
{
TraceCall* c = ((CallItem*) item)->call();
CostItem* f = _showCallers ? c->caller(false) : c->called(false);
TraceItemView::activated(f);
}
QTreeView::keyPressEvent(event);
}
CostItem* CallView::canShow(CostItem* i)
{
ProfileContext::Type t = i ? i->type() : ProfileContext::InvalidType;
switch(t) {
case ProfileContext::Function:
case ProfileContext::FunctionCycle:
return i;
default:
break;
}
return 0;
}
void CallView::doUpdate(int changeType, bool)
{
// Special case ?
if (changeType == selectedItemChanged) {
if (!_selectedItem) {
clearSelection();
return;
}
CallItem* ci = (CallItem*) currentItem();
TraceCall* c;
CostItem* ti;
if (ci) {
c = ci->call();
ti = _showCallers ? c->caller() : c->called();
if (ti == _selectedItem) return;
}
QTreeWidgetItem *item = 0;
for (int i=0; i<topLevelItemCount();i++) {
item = topLevelItem(i);
c = ((CallItem*) item)->call();
ti = _showCallers ? c->caller() : c->called();
if (ti == _selectedItem) {
scrollToItem(item);
setCurrentItem(item);
break;
}
}
if (!item && ci) clearSelection();
return;
}
if (changeType == groupTypeChanged) {
QTreeWidgetItem *item;
for (int i=0; i<topLevelItemCount(); i++){
item = topLevelItem(i);
((CallItem*)item)->updateGroup();
}
return;
}
refresh();
}
void CallView::refresh()
{
clear();
setColumnWidth(1, _eventType2 ? 50:0);
if (_eventType) {
headerItem()->setText(0, _eventType->name());
headerItem()->setText(1, tr("%1 per call").arg(_eventType->name()));
}
if (_eventType2) {
headerItem()->setText(2, _eventType2->name());
headerItem()->setText(3, tr("%1 per call").arg(_eventType2->name()));
}
if (!_data || !_activeItem) return;
TraceFunction* f = activeFunction();
if (!f) return;
// In the call lists, we skip cycles to show the real call relations
TraceCallList l = _showCallers ? f->callers(true) : f->callings(true);
QList<QTreeWidgetItem*> items;
foreach(TraceCall* call, l)
if (call->subCost(_eventType)>0)
items.append(new CallItem(this, 0, call));
// when inserting, switch off sorting for performance reason
setSortingEnabled(false);
addTopLevelItems(items);
setSortingEnabled(true);
// enabling sorting switches on the indicator, but we want it off
header()->setSortIndicatorShown(false);
// resize to content now (section size still can be interactively changed)
header()->resizeSections(QHeaderView::ResizeToContents);
if (!_eventType2) {
setColumnWidth(2, 0);
setColumnWidth(3, 0);
}
}
#include "callview.moc"
|