/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #include "callgrindtool.h" #include "callgrindcostdelegate.h" #include "callgrindcostview.h" #include "callgrindengine.h" #include "callgrindtextmark.h" #include "callgrindvisualisation.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace Debugger; using namespace Core; using namespace Valgrind::Callgrind; using namespace TextEditor; using namespace ProjectExplorer; using namespace Utils; using namespace std::placeholders; namespace Valgrind { namespace Internal { const char CallgrindPerspectiveId[] = "Callgrind.Perspective"; const char CallgrindLocalActionId[] = "Callgrind.Local.Action"; const char CallgrindRemoteActionId[] = "Callgrind.Remote.Action"; const char CallgrindCallersDockId[] = "Callgrind.Callers.Dock"; const char CallgrindCalleesDockId[] = "Callgrind.Callees.Dock"; const char CallgrindFlatDockId[] = "Callgrind.Flat.Dock"; const char CallgrindVisualizationDockId[] = "Callgrind.Visualization.Dock"; const char CALLGRIND_RUN_MODE[] = "CallgrindTool.CallgrindRunMode"; class CallgrindTool : public QObject { Q_OBJECT public: CallgrindTool(); ~CallgrindTool(); ValgrindToolRunner *createRunTool(RunControl *runControl); void setParseData(ParseData *data); CostDelegate::CostFormat costFormat() const; void doClear(bool clearParseData); void updateEventCombo(); signals: void dumpRequested(); void resetRequested(); void pauseToggled(bool checked); public: void slotRequestDump(); void loadExternalLogFile(); void selectFunction(const Function *); void setCostFormat(CostDelegate::CostFormat format); void enableCycleDetection(bool enabled); void shortenTemplates(bool enabled); void setCostEvent(int index); /// This function will add custom text marks to the editor /// \note Call this after the data model has been populated void createTextMarks(); /// This function will clear all text marks from the editor void clearTextMarks(); void updateFilterString(); void updateCostFormat(); void handleFilterProjectCosts(); void handleShowCostsOfFunction(); void stackBrowserChanged(); /// If \param busy is true, all widgets get a busy cursor when hovered void setBusyCursor(bool busy); void dataFunctionSelected(const QModelIndex &index); void calleeFunctionSelected(const QModelIndex &index); void callerFunctionSelected(const QModelIndex &index); void visualisationFunctionSelected(const Function *function); void showParserResults(const ParseData *data); void takeParserDataFromRunControl(CallgrindToolRunner *rc); void takeParserData(ParseData *data); void engineFinished(); void editorOpened(IEditor *); void requestContextMenu(TextEditorWidget *widget, int line, QMenu *menu); void updateRunActions(); public: DataModel m_dataModel; DataProxyModel m_proxyModel; StackBrowser m_stackBrowser; CallModel m_callersModel; CallModel m_calleesModel; QSortFilterProxyModel m_callersProxy; QSortFilterProxyModel m_calleesProxy; // Callgrind widgets CostView *m_flatView = nullptr; CostView *m_callersView = nullptr; CostView *m_calleesView = nullptr; Visualisation *m_visualization = nullptr; // Navigation QAction *m_goBack = nullptr; QAction *m_goNext = nullptr; QLineEdit *m_searchFilter = nullptr; // Cost formatting QAction *m_filterProjectCosts = nullptr; QAction *m_costAbsolute = nullptr; QAction *m_costRelative = nullptr; QAction *m_costRelativeToParent = nullptr; QAction *m_cycleDetection = nullptr; QAction *m_shortenTemplates = nullptr; QComboBox *m_eventCombo = nullptr; QTimer m_updateTimer; QVector m_textMarks; QAction *m_startAction = nullptr; QAction *m_stopAction = nullptr; QAction *m_loadExternalLogFile = nullptr; QAction *m_dumpAction = nullptr; QAction *m_resetAction = nullptr; QAction *m_pauseAction = nullptr; QAction *m_discardAction = nullptr; QString m_toggleCollectFunction; bool m_toolBusy = false; }; CallgrindTool::CallgrindTool() { setObjectName(QLatin1String("CallgrindTool")); m_updateTimer.setInterval(200); m_updateTimer.setSingleShot(true); m_proxyModel.setSourceModel(&m_dataModel); m_proxyModel.setDynamicSortFilter(true); m_proxyModel.setSortCaseSensitivity(Qt::CaseInsensitive); m_proxyModel.setFilterKeyColumn(DataModel::NameColumn); m_proxyModel.setFilterCaseSensitivity(Qt::CaseInsensitive); connect(&m_stackBrowser, &StackBrowser::currentChanged, this, &CallgrindTool::stackBrowserChanged); connect(&m_updateTimer, &QTimer::timeout, this, &CallgrindTool::updateFilterString); connect(EditorManager::instance(), &EditorManager::editorOpened, this, &CallgrindTool::editorOpened); m_startAction = Debugger::createStartAction(); m_stopAction = Debugger::createStopAction(); ActionContainer *menu = ActionManager::actionContainer(Debugger::Constants::M_DEBUG_ANALYZER); QString toolTip = tr("Valgrind Function Profiler uses the " "Callgrind tool to record function calls when a program runs."); if (!Utils::HostOsInfo::isWindowsHost()) { auto action = new QAction(tr("Valgrind Function Profiler"), this); action->setToolTip(toolTip); menu->addAction(ActionManager::registerAction(action, CallgrindLocalActionId), Debugger::Constants::G_ANALYZER_TOOLS); QObject::connect(action, &QAction::triggered, this, [action] { if (!Debugger::wantRunTool(OptimizedMode, action->text())) return; Debugger::selectPerspective(CallgrindPerspectiveId); ProjectExplorerPlugin::runStartupProject(CALLGRIND_RUN_MODE); }); QObject::connect(m_startAction, &QAction::triggered, action, &QAction::triggered); QObject::connect(m_startAction, &QAction::changed, action, [action, this] { action->setEnabled(m_startAction->isEnabled()); }); } auto action = new QAction(tr("Valgrind Function Profiler (External Application)"), this); action->setToolTip(toolTip); menu->addAction(ActionManager::registerAction(action, CallgrindRemoteActionId), Debugger::Constants::G_ANALYZER_REMOTE_TOOLS); QObject::connect(action, &QAction::triggered, this, [this, action] { auto runConfig = RunConfiguration::startupRunConfiguration(); if (!runConfig) { showCannotStartDialog(action->text()); return; } StartRemoteDialog dlg; if (dlg.exec() != QDialog::Accepted) return; Debugger::selectPerspective(CallgrindPerspectiveId); auto runControl = new RunControl(runConfig, CALLGRIND_RUN_MODE); const auto runnable = dlg.runnable(); runControl->setRunnable(runnable); runControl->setDisplayName(runnable.executable); createRunTool(runControl); ProjectExplorerPlugin::startRunControl(runControl); }); // If there is a CppEditor context menu add our own context menu actions. if (ActionContainer *editorContextMenu = ActionManager::actionContainer(CppEditor::Constants::M_CONTEXT)) { Context analyzerContext = Context(Debugger::Constants::C_DEBUGMODE); editorContextMenu->addSeparator(analyzerContext); auto action = new QAction(tr("Profile Costs of This Function and Its Callees"), this); action->setIcon(ProjectExplorer::Icons::ANALYZER_START_SMALL.icon()); connect(action, &QAction::triggered, this, &CallgrindTool::handleShowCostsOfFunction); Command *cmd = ActionManager::registerAction(action, "Analyzer.Callgrind.ShowCostsOfFunction", analyzerContext); editorContextMenu->addAction(cmd); cmd->setAttribute(Command::CA_Hide); cmd->setAttribute(Command::CA_NonConfigurable); } QSettings *coreSettings = ICore::settings(); // // DockWidgets // m_visualization = new Visualisation; m_visualization->setFrameStyle(QFrame::NoFrame); m_visualization->setObjectName(QLatin1String("Valgrind.CallgrindTool.Visualisation")); m_visualization->setWindowTitle(tr("Visualization")); m_visualization->setModel(&m_dataModel); connect(m_visualization, &Visualisation::functionActivated, this, &CallgrindTool::visualisationFunctionSelected); m_callersView = new CostView; m_callersView->setObjectName(QLatin1String("Valgrind.CallgrindTool.CallersView")); m_callersView->setWindowTitle(tr("Callers")); m_callersView->setSettings(coreSettings, "Valgrind.CallgrindTool.CallersView"); m_callersView->sortByColumn(CallModel::CostColumn); m_callersView->setFrameStyle(QFrame::NoFrame); // enable sorting m_callersProxy.setSourceModel(&m_callersModel); m_callersView->setModel(&m_callersProxy); m_callersView->hideColumn(CallModel::CalleeColumn); connect(m_callersView, &QAbstractItemView::activated, this, &CallgrindTool::callerFunctionSelected); m_calleesView = new CostView; m_calleesView->setObjectName(QLatin1String("Valgrind.CallgrindTool.CalleesView")); m_calleesView->setWindowTitle(tr("Callees")); m_calleesView->setSettings(coreSettings, "Valgrind.CallgrindTool.CalleesView"); m_calleesView->sortByColumn(CallModel::CostColumn); m_calleesView->setFrameStyle(QFrame::NoFrame); // enable sorting m_calleesProxy.setSourceModel(&m_calleesModel); m_calleesView->setModel(&m_calleesProxy); m_calleesView->hideColumn(CallModel::CallerColumn); connect(m_calleesView, &QAbstractItemView::activated, this, &CallgrindTool::calleeFunctionSelected); m_flatView = new CostView; m_flatView->setObjectName(QLatin1String("Valgrind.CallgrindTool.FlatView")); m_flatView->setWindowTitle(tr("Functions")); m_flatView->setSettings(coreSettings, "Valgrind.CallgrindTool.FlatView"); m_flatView->sortByColumn(DataModel::SelfCostColumn); m_flatView->setFrameStyle(QFrame::NoFrame); m_flatView->setAttribute(Qt::WA_MacShowFocusRect, false); m_flatView->setModel(&m_proxyModel); connect(m_flatView, &QAbstractItemView::activated, this, &CallgrindTool::dataFunctionSelected); updateCostFormat(); // // Control Widget // // load external log file action = m_loadExternalLogFile = new QAction(this); action->setIcon(Utils::Icons::OPENFILE_TOOLBAR.icon()); action->setToolTip(tr("Load External Log File")); connect(action, &QAction::triggered, this, &CallgrindTool::loadExternalLogFile); // dump action m_dumpAction = action = new QAction(this); action->setDisabled(true); action->setIcon(Utils::Icons::REDO.icon()); //action->setText(tr("Dump")); action->setToolTip(tr("Request the dumping of profile information. This will update the Callgrind visualization.")); connect(action, &QAction::triggered, this, &CallgrindTool::slotRequestDump); // reset action m_resetAction = action = new QAction(this); action->setDisabled(true); action->setIcon(Utils::Icons::RELOAD.icon()); //action->setText(tr("Reset")); action->setToolTip(tr("Reset all event counters.")); connect(action, &QAction::triggered, this, &CallgrindTool::resetRequested); // pause action m_pauseAction = action = new QAction(this); action->setCheckable(true); action->setIcon(Utils::Icons::INTERRUPT_SMALL_TOOLBAR.icon()); //action->setText(tr("Ignore")); action->setToolTip(tr("Pause event logging. No events are counted which will speed up program execution during profiling.")); connect(action, &QAction::toggled, this, &CallgrindTool::pauseToggled); // discard data action m_discardAction = action = new QAction(this); action->setIcon(Utils::Icons::CLEAN_TOOLBAR.icon()); action->setToolTip(tr("Discard Data")); connect(action, &QAction::triggered, this, [this](bool) { clearTextMarks(); doClear(true); }); // navigation // go back m_goBack = action = new QAction(this); action->setDisabled(true); action->setIcon(Utils::Icons::PREV_TOOLBAR.icon()); action->setToolTip(tr("Go back one step in history. This will select the previously selected item.")); connect(action, &QAction::triggered, &m_stackBrowser, &StackBrowser::goBack); // go forward m_goNext = action = new QAction(this); action->setDisabled(true); action->setIcon(Utils::Icons::NEXT_TOOLBAR.icon()); action->setToolTip(tr("Go forward one step in history.")); connect(action, &QAction::triggered, &m_stackBrowser, &StackBrowser::goNext); // event selection m_eventCombo = new QComboBox; m_eventCombo->setToolTip(tr("Selects which events from the profiling data are shown and visualized.")); connect(m_eventCombo, static_cast(&QComboBox::currentIndexChanged), this, &CallgrindTool::setCostEvent); updateEventCombo(); ToolbarDescription toolbar; toolbar.addAction(m_startAction); toolbar.addAction(m_stopAction); toolbar.addAction(m_loadExternalLogFile); toolbar.addAction(m_dumpAction); toolbar.addAction(m_resetAction); toolbar.addAction(m_pauseAction); toolbar.addAction(m_discardAction); toolbar.addAction(m_goBack); toolbar.addAction(m_goNext); toolbar.addWidget(new Utils::StyledSeparator); toolbar.addWidget(m_eventCombo); // Cost formatting { auto group = new QActionGroup(this); // Show costs as absolute numbers m_costAbsolute = new QAction(tr("Absolute Costs"), this); m_costAbsolute->setToolTip(tr("Show costs as absolute numbers.")); m_costAbsolute->setCheckable(true); m_costAbsolute->setChecked(true); connect(m_costAbsolute, &QAction::toggled, this, &CallgrindTool::updateCostFormat); group->addAction(m_costAbsolute); // Show costs in percentages m_costRelative = new QAction(tr("Relative Costs"), this); m_costRelative->setToolTip(tr("Show costs relative to total inclusive cost.")); m_costRelative->setCheckable(true); connect(m_costRelative, &QAction::toggled, this, &CallgrindTool::updateCostFormat); group->addAction(m_costRelative); // Show costs relative to parent m_costRelativeToParent = new QAction(tr("Relative Costs to Parent"), this); m_costRelativeToParent->setToolTip(tr("Show costs relative to parent function's inclusive cost.")); m_costRelativeToParent->setCheckable(true); connect(m_costRelativeToParent, &QAction::toggled, this, &CallgrindTool::updateCostFormat); group->addAction(m_costRelativeToParent); auto button = new QToolButton; button->addActions(group->actions()); button->setPopupMode(QToolButton::InstantPopup); button->setText(QLatin1String("$")); button->setToolTip(tr("Cost Format")); toolbar.addWidget(button); } ValgrindGlobalSettings *settings = ValgrindPlugin::globalSettings(); // Cycle detection //action = new QAction(QLatin1String("Cycle Detection"), this); ///FIXME: icon action = m_cycleDetection = new QAction(QLatin1String("O"), this); ///FIXME: icon action->setToolTip(tr("Enable cycle detection to properly handle recursive or circular function calls.")); action->setCheckable(true); connect(action, &QAction::toggled, &m_dataModel, &DataModel::enableCycleDetection); connect(action, &QAction::toggled, settings, &ValgrindGlobalSettings::setDetectCycles); // Shorter template signature action = m_shortenTemplates = new QAction(QLatin1String("<>"), this); action->setToolTip(tr("Remove template parameter lists when displaying function names.")); action->setCheckable(true); connect(action, &QAction::toggled, &m_dataModel, &DataModel::setShortenTemplates); connect(action, &QAction::toggled, settings, &ValgrindGlobalSettings::setShortenTemplates); // Filtering action = m_filterProjectCosts = new QAction(tr("Show Project Costs Only"), this); action->setIcon(Utils::Icons::FILTER.icon()); action->setToolTip(tr("Show only profiling info that originated from this project source.")); action->setCheckable(true); connect(action, &QAction::toggled, this, &CallgrindTool::handleFilterProjectCosts); // Filter ///FIXME: find workaround for https://bugreports.qt.io/browse/QTCREATORBUG-3247 m_searchFilter = new QLineEdit; m_searchFilter->setPlaceholderText(tr("Filter...")); connect(m_searchFilter, &QLineEdit::textChanged, &m_updateTimer, static_cast(&QTimer::start)); setCostFormat(settings->costFormat()); enableCycleDetection(settings->detectCycles()); toolbar.addAction(m_cycleDetection); toolbar.addAction(m_shortenTemplates); toolbar.addAction(m_filterProjectCosts); toolbar.addWidget(m_searchFilter); Debugger::registerToolbar(CallgrindPerspectiveId, toolbar); Debugger::registerPerspective(CallgrindPerspectiveId, new Perspective(tr("Callgrind"), { {CallgrindFlatDockId, m_flatView, {}, Perspective::SplitVertical}, {CallgrindCalleesDockId, m_calleesView, {}, Perspective::SplitVertical}, {CallgrindCallersDockId, m_callersView, CallgrindCalleesDockId, Perspective::SplitHorizontal}, {CallgrindVisualizationDockId, m_visualization, {}, Perspective::SplitVertical, false, Qt::RightDockWidgetArea} })); connect(ProjectExplorerPlugin::instance(), &ProjectExplorerPlugin::updateRunActions, this, &CallgrindTool::updateRunActions); } CallgrindTool::~CallgrindTool() { qDeleteAll(m_textMarks); } void CallgrindTool::doClear(bool clearParseData) { if (clearParseData) // Crashed when done from destructor. setParseData(nullptr); // clear filters if (m_filterProjectCosts) m_filterProjectCosts->setChecked(false); m_proxyModel.setFilterBaseDir(QString()); if (m_searchFilter) m_searchFilter->clear(); m_proxyModel.setFilterFixedString(QString()); } void CallgrindTool::setBusyCursor(bool busy) { QCursor cursor(busy ? Qt::BusyCursor : Qt::ArrowCursor); m_flatView->setCursor(cursor); m_calleesView->setCursor(cursor); m_callersView->setCursor(cursor); m_visualization->setCursor(cursor); } void CallgrindTool::selectFunction(const Function *func) { if (!func) { m_flatView->clearSelection(); m_visualization->setFunction(nullptr); m_callersModel.clear(); m_calleesModel.clear(); return; } const QModelIndex index = m_dataModel.indexForObject(func); const QModelIndex proxyIndex = m_proxyModel.mapFromSource(index); m_flatView->selectionModel()->clearSelection(); m_flatView->selectionModel()->setCurrentIndex(proxyIndex, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); m_flatView->scrollTo(proxyIndex); m_callersModel.setCalls(func->incomingCalls(), func); m_calleesModel.setCalls(func->outgoingCalls(), func); m_visualization->setFunction(func); const Function *item = m_stackBrowser.current(); if (!item || item != func) m_stackBrowser.select(func); if (QFile::exists(func->file())) { ///TODO: custom position support? int line = func->lineNumber(); EditorManager::openEditorAt(func->file(), qMax(line, 0)); } } void CallgrindTool::stackBrowserChanged() { m_goBack->setEnabled(m_stackBrowser.hasPrevious()); m_goNext->setEnabled(m_stackBrowser.hasNext()); const Function *item = m_stackBrowser.current(); selectFunction(item); } void CallgrindTool::updateFilterString() { m_proxyModel.setFilterFixedString(m_searchFilter->text()); } void CallgrindTool::setCostFormat(CostDelegate::CostFormat format) { switch (format) { case CostDelegate::FormatAbsolute: m_costAbsolute->setChecked(true); break; case CostDelegate::FormatRelative: m_costRelative->setChecked(true); break; case CostDelegate::FormatRelativeToParent: m_costRelativeToParent->setChecked(true); break; } } void CallgrindTool::setCostEvent(int index) { // prevent assert in model, don't try to set event to -1 // happens when we clear the eventcombo if (index == -1) index = 0; m_dataModel.setCostEvent(index); m_calleesModel.setCostEvent(index); m_callersModel.setCostEvent(index); } void CallgrindTool::enableCycleDetection(bool enabled) { m_cycleDetection->setChecked(enabled); } void CallgrindTool::shortenTemplates(bool enabled) { m_shortenTemplates->setChecked(enabled); } // Following functions can be called with actions=0 or widgets=0 // depending on initialization sequence (whether callgrind was current). CostDelegate::CostFormat CallgrindTool::costFormat() const { if (m_costRelativeToParent && m_costRelativeToParent->isChecked()) return CostDelegate::FormatRelativeToParent; if (m_costRelative && m_costRelative->isChecked()) return CostDelegate::FormatRelative; return CostDelegate::FormatAbsolute; } void CallgrindTool::updateCostFormat() { const CostDelegate::CostFormat format = costFormat(); if (m_flatView) m_flatView->setCostFormat(format); if (m_calleesView) { m_calleesView->setCostFormat(format); m_callersView->setCostFormat(format); } if (ValgrindGlobalSettings *settings = ValgrindPlugin::globalSettings()) settings->setCostFormat(format); } void CallgrindTool::handleFilterProjectCosts() { Project *pro = ProjectTree::currentProject(); if (pro && m_filterProjectCosts->isChecked()) { const QString projectDir = pro->projectDirectory().toString(); m_proxyModel.setFilterBaseDir(projectDir); } else { m_proxyModel.setFilterBaseDir(QString()); } } void CallgrindTool::dataFunctionSelected(const QModelIndex &index) { const Function *func = index.data(DataModel::FunctionRole).value(); QTC_ASSERT(func, return); selectFunction(func); } void CallgrindTool::calleeFunctionSelected(const QModelIndex &index) { const FunctionCall *call = index.data(CallModel::FunctionCallRole).value(); QTC_ASSERT(call, return); selectFunction(call->callee()); } void CallgrindTool::callerFunctionSelected(const QModelIndex &index) { const FunctionCall *call = index.data(CallModel::FunctionCallRole).value(); QTC_ASSERT(call, return); selectFunction(call->caller()); } void CallgrindTool::visualisationFunctionSelected(const Function *function) { if (function && function == m_visualization->function()) // up-navigation when the initial function was activated m_stackBrowser.goBack(); else selectFunction(function); } void CallgrindTool::setParseData(ParseData *data) { // we have new parse data, invalidate filters in the proxy model m_visualization->setFunction(nullptr); // invalidate parse data in the data model delete m_dataModel.parseData(); if (data && data->events().isEmpty()) { // might happen if the user cancelled the profile run // callgrind then sometimes produces empty callgrind.out.PID files delete data; data = nullptr; } m_dataModel.setParseData(data); m_calleesModel.setParseData(data); m_callersModel.setParseData(data); updateEventCombo(); // clear history for new data m_stackBrowser.clear(); // unset busy state //setBusy(false); } void CallgrindTool::updateEventCombo() { QTC_ASSERT(m_eventCombo, return); m_eventCombo->clear(); const ParseData *data = m_dataModel.parseData(); if (!data || data->events().isEmpty()) { m_eventCombo->hide(); return; } m_eventCombo->show(); foreach (const QString &event, data->events()) m_eventCombo->addItem(ParseData::prettyStringForEvent(event)); } ValgrindToolRunner *CallgrindTool::createRunTool(RunControl *runControl) { auto toolRunner = new CallgrindToolRunner(runControl); connect(toolRunner, &CallgrindToolRunner::parserDataReady, this, &CallgrindTool::takeParserDataFromRunControl); connect(runControl, &RunControl::stopped, this, &CallgrindTool::engineFinished); connect(this, &CallgrindTool::dumpRequested, toolRunner, &CallgrindToolRunner::dump); connect(this, &CallgrindTool::resetRequested, toolRunner, &CallgrindToolRunner::reset); connect(this, &CallgrindTool::pauseToggled, toolRunner, &CallgrindToolRunner::setPaused); connect(m_stopAction, &QAction::triggered, toolRunner, [runControl] { runControl->initiateStop(); }); // initialize run control toolRunner->setPaused(m_pauseAction->isChecked()); // we may want to toggle collect for one function only in this run toolRunner->setToggleCollectFunction(m_toggleCollectFunction); m_toggleCollectFunction.clear(); QTC_ASSERT(m_visualization, return toolRunner); // apply project settings if (IRunConfigurationAspect *analyzerAspect = runControl->runConfiguration()->extraAspect(ANALYZER_VALGRIND_SETTINGS)) { if (const ValgrindBaseSettings *settings = qobject_cast(analyzerAspect->currentSettings())) { m_visualization->setMinimumInclusiveCostRatio(settings->visualisationMinimumInclusiveCostRatio() / 100.0); m_proxyModel.setMinimumInclusiveCostRatio(settings->minimumInclusiveCostRatio() / 100.0); m_dataModel.setVerboseToolTipsEnabled(settings->enableEventToolTips()); } } m_toolBusy = true; updateRunActions(); // enable/disable actions m_resetAction->setEnabled(true); m_dumpAction->setEnabled(true); m_loadExternalLogFile->setEnabled(false); clearTextMarks(); doClear(true); return toolRunner; } void CallgrindTool::updateRunActions() { if (m_toolBusy) { m_startAction->setEnabled(false); m_startAction->setToolTip(tr("A Valgrind Callgrind analysis is still in progress.")); m_stopAction->setEnabled(true); } else { QString whyNot = tr("Start a Valgrind Callgrind analysis."); bool canRun = ProjectExplorerPlugin::canRunStartupProject(CALLGRIND_RUN_MODE, &whyNot); m_startAction->setToolTip(whyNot); m_startAction->setEnabled(canRun); m_stopAction->setEnabled(false); } } void CallgrindTool::clearTextMarks() { qDeleteAll(m_textMarks); m_textMarks.clear(); } void CallgrindTool::engineFinished() { m_toolBusy = false; updateRunActions(); // Enable/disable actions m_resetAction->setEnabled(false); m_dumpAction->setEnabled(false); m_loadExternalLogFile->setEnabled(true); const ParseData *data = m_dataModel.parseData(); if (data) showParserResults(data); else Debugger::showPermanentStatusMessage(tr("Profiling aborted.")); setBusyCursor(false); } void CallgrindTool::showParserResults(const ParseData *data) { QString msg; if (data) { // be careful, the list of events might be empty if (data->events().isEmpty()) { msg = tr("Parsing finished, no data."); } else { const QString costStr = QString::fromLatin1("%1 %2").arg(QString::number(data->totalCost(0)), data->events().first()); msg = tr("Parsing finished, total cost of %1 reported.").arg(costStr); } } else { msg = tr("Parsing failed."); } Debugger::showPermanentStatusMessage(msg); } void CallgrindTool::editorOpened(IEditor *editor) { if (auto widget = qobject_cast(editor->widget())) { connect(widget, &TextEditorWidget::markContextMenuRequested, this, &CallgrindTool::requestContextMenu); } } void CallgrindTool::requestContextMenu(TextEditorWidget *widget, int line, QMenu *menu) { // Find callgrind text mark that corresponds to this editor's file and line number foreach (CallgrindTextMark *textMark, m_textMarks) { if (textMark->fileName() == widget->textDocument()->filePath() && textMark->lineNumber() == line) { const Function *func = textMark->function(); QAction *action = menu->addAction(tr("Select This Function in the Analyzer Output")); connect(action, &QAction::triggered, this, [this, func] { selectFunction(func); }); break; } } } void CallgrindTool::handleShowCostsOfFunction() { CPlusPlus::Symbol *symbol = AnalyzerUtils::findSymbolUnderCursor(); if (!symbol) return; if (!symbol->isFunction()) return; CPlusPlus::Overview view; const QString qualifiedFunctionName = view.prettyName(CPlusPlus::LookupContext::fullyQualifiedName(symbol)); m_toggleCollectFunction = qualifiedFunctionName + QLatin1String("()"); m_startAction->trigger(); } void CallgrindTool::slotRequestDump() { //setBusy(true); m_visualization->setText(tr("Populating...")); dumpRequested(); } void CallgrindTool::loadExternalLogFile() { const QString filePath = QFileDialog::getOpenFileName( ICore::mainWindow(), tr("Open Callgrind Log File"), QString(), tr("Callgrind Output (callgrind.out*);;All Files (*)")); if (filePath.isEmpty()) return; QFile logFile(filePath); if (!logFile.open(QIODevice::ReadOnly | QIODevice::Text)) { QString msg = tr("Callgrind: Failed to open file for reading: %1").arg(filePath); TaskHub::addTask(Task::Error, msg, Debugger::Constants::ANALYZERTASK_ID); TaskHub::requestPopup(); return; } Debugger::showPermanentStatusMessage(tr("Parsing Profile Data...")); QCoreApplication::processEvents(); Parser parser; parser.parse(&logFile); takeParserData(parser.takeData()); } void CallgrindTool::takeParserDataFromRunControl(CallgrindToolRunner *rc) { takeParserData(rc->takeParserData()); } void CallgrindTool::takeParserData(ParseData *data) { showParserResults(data); if (!data) return; // clear first clearTextMarks(); doClear(true); setParseData(data); createTextMarks(); } void CallgrindTool::createTextMarks() { QList locations; for (int row = 0; row < m_dataModel.rowCount(); ++row) { const QModelIndex index = m_dataModel.index(row, DataModel::InclusiveCostColumn); QString fileName = index.data(DataModel::FileNameRole).toString(); if (fileName.isEmpty() || fileName == QLatin1String("???")) continue; bool ok = false; const int lineNumber = index.data(DataModel::LineNumberRole).toInt(&ok); QTC_ASSERT(ok, continue); // avoid creating invalid text marks if (lineNumber <= 0) continue; // sanitize filename, text marks need a canonical (i.e. no ".."s) path // BaseTextMark::editorOpened(Core::IEditor *editor) compares file names on string basis QFileInfo info(fileName); fileName = info.canonicalFilePath(); if (fileName.isEmpty()) continue; // isEmpty == true => file does not exist, continue then // create only one text mark per location const QString location = QString::fromLatin1("%1:%2").arg(fileName, QString::number(lineNumber)); if (locations.contains(location)) continue; locations << location; m_textMarks.append(new CallgrindTextMark(index, FileName::fromString(fileName), lineNumber)); } } static CallgrindTool *theCallgrindTool; void initCallgrindTool() { theCallgrindTool = new CallgrindTool; auto producer = std::bind(&CallgrindTool::createRunTool, theCallgrindTool, _1); RunControl::registerWorker(CALLGRIND_RUN_MODE, producer); } void destroyCallgrindTool() { delete theCallgrindTool; theCallgrindTool = nullptr; } } // namespace Internal } // namespace Valgrind #include "callgrindtool.moc"