Files
qt-creator/src/plugins/qmlprofiler/qmlprofilerrangemodel.cpp
Ulf Hermann dcd8d37f35 QmlProfiler: Don't expose the vector of event types
We always want either the total number of event types or one specific
type. There is no need to expose the fact that we keep them as a vector.

Also, use int as the type of the "number" methods as that aligns better
with Qt containers, and rename the methods. We don't need to state the
fact that we've loaded the events and types at some point.

Change-Id: Iaf680ec9fa10e1070ddee6bcc079800e401775f0
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
2018-04-17 12:20:57 +00:00

261 lines
8.0 KiB
C++

/****************************************************************************
**
** 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 "qmlprofilerrangemodel.h"
#include "qmlprofilermodelmanager.h"
#include "qmlprofilerbindingloopsrenderpass.h"
#include "timeline/timelinenotesrenderpass.h"
#include "timeline/timelineitemsrenderpass.h"
#include "timeline/timelineselectionrenderpass.h"
#include "timeline/timelineformattime.h"
#include <QCoreApplication>
#include <QVector>
#include <QHash>
#include <QUrl>
#include <QString>
#include <QStack>
namespace QmlProfiler {
namespace Internal {
QmlProfilerRangeModel::QmlProfilerRangeModel(QmlProfilerModelManager *manager, RangeType range,
QObject *parent) :
QmlProfilerTimelineModel(manager, MaximumMessage, range, featureFromRangeType(range), parent)
{
m_expandedRowTypes << -1;
}
void QmlProfilerRangeModel::clear()
{
m_expandedRowTypes.clear();
m_expandedRowTypes << -1;
m_data.clear();
m_stack.clear();
QmlProfilerTimelineModel::clear();
}
bool QmlProfilerRangeModel::supportsBindingLoops() const
{
return rangeType() == Binding || rangeType() == HandlingSignal;
}
void QmlProfilerRangeModel::loadEvent(const QmlEvent &event, const QmlEventType &type)
{
Q_UNUSED(type);
// store starttime-based instance
if (event.rangeStage() == RangeStart) {
int index = insertStart(event.timestamp(), event.typeIndex());
m_stack.append(index);
m_data.insert(index, QmlRangeEventStartInstance());
} else if (event.rangeStage() == RangeEnd) {
if (!m_stack.isEmpty()) {
int index = m_stack.pop();
insertEnd(index, event.timestamp() - startTime(index));
} else {
qWarning() << "Received inconsistent trace data from application.";
}
}
}
void QmlProfilerRangeModel::finalize()
{
if (!m_stack.isEmpty()) {
qWarning() << "End times for some events are missing.";
const qint64 endTime = modelManager()->traceEnd();
do {
int index = m_stack.pop();
insertEnd(index, endTime - startTime(index));
} while (!m_stack.isEmpty());
}
// compute range nesting
computeNesting();
// compute nestingLevel - nonexpanded
computeNestingContracted();
// compute nestingLevel - expanded
computeExpandedLevels();
if (supportsBindingLoops())
findBindingLoops();
}
void QmlProfilerRangeModel::computeNestingContracted()
{
int i;
int eventCount = count();
int nestingLevels = Constants::QML_MIN_LEVEL;
int collapsedRowCount = nestingLevels + 1;
QVector<qint64> nestingEndTimes;
nestingEndTimes.fill(0, nestingLevels + 1);
for (i = 0; i < eventCount; i++) {
qint64 st = startTime(i);
// per type
if (nestingEndTimes[nestingLevels] > st) {
if (++nestingLevels == nestingEndTimes.size())
nestingEndTimes << 0;
if (nestingLevels == collapsedRowCount)
++collapsedRowCount;
} else {
while (nestingLevels > Constants::QML_MIN_LEVEL &&
nestingEndTimes[nestingLevels-1] <= st)
nestingLevels--;
}
nestingEndTimes[nestingLevels] = st + duration(i);
m_data[i].displayRowCollapsed = nestingLevels;
}
setCollapsedRowCount(collapsedRowCount);
}
void QmlProfilerRangeModel::computeExpandedLevels()
{
QHash<int, int> eventRow;
int eventCount = count();
for (int i = 0; i < eventCount; i++) {
int eventTypeId = typeId(i);
if (!eventRow.contains(eventTypeId)) {
eventRow[eventTypeId] = m_expandedRowTypes.size();
m_expandedRowTypes << eventTypeId;
}
m_data[i].displayRowExpanded = eventRow[eventTypeId];
}
setExpandedRowCount(m_expandedRowTypes.size());
}
void QmlProfilerRangeModel::findBindingLoops()
{
typedef QPair<int, int> CallStackEntry;
QStack<CallStackEntry> callStack;
for (int i = 0; i < count(); ++i) {
int potentialParent = callStack.isEmpty() ? -1 : callStack.top().second;
while (potentialParent != -1 && !(endTime(potentialParent) > startTime(i))) {
callStack.pop();
potentialParent = callStack.isEmpty() ? -1 : callStack.top().second;
}
// check whether event is already in stack
for (int ii = 0; ii < callStack.size(); ++ii) {
if (callStack.at(ii).first == typeId(i)) {
m_data[i].bindingLoopHead = callStack.at(ii).second;
break;
}
}
CallStackEntry newEntry(typeId(i), i);
callStack.push(newEntry);
}
}
int QmlProfilerRangeModel::expandedRow(int index) const
{
return m_data[index].displayRowExpanded;
}
int QmlProfilerRangeModel::collapsedRow(int index) const
{
return m_data[index].displayRowCollapsed;
}
int QmlProfilerRangeModel::bindingLoopDest(int index) const
{
return m_data[index].bindingLoopHead;
}
QRgb QmlProfilerRangeModel::color(int index) const
{
return colorBySelectionId(index);
}
QVariantList QmlProfilerRangeModel::labels() const
{
QVariantList result;
const QmlProfilerModelManager *manager = modelManager();
for (int i = 1; i < expandedRowCount(); i++) { // Ignore the -1 for the first row
QVariantMap element;
const int typeId = m_expandedRowTypes[i];
const QmlEventType &type = manager->eventType(typeId);
element.insert(QLatin1String("displayName"), type.displayName());
element.insert(QLatin1String("description"), type.data());
element.insert(QLatin1String("id"), typeId);
result << element;
}
return result;
}
QVariantMap QmlProfilerRangeModel::details(int index) const
{
QVariantMap result;
int id = selectionId(index);
result.insert(QStringLiteral("displayName"),
tr(QmlProfilerModelManager::featureName(mainFeature())));
result.insert(tr("Duration"), Timeline::formatTime(duration(index)));
const QmlEventType &type = modelManager()->eventType(id);
result.insert(tr("Details"), type.data());
result.insert(tr("Location"), type.displayName());
return result;
}
QVariantMap QmlProfilerRangeModel::location(int index) const
{
return locationFromTypeId(index);
}
int QmlProfilerRangeModel::typeId(int index) const
{
return selectionId(index);
}
QList<const Timeline::TimelineRenderPass *> QmlProfilerRangeModel::supportedRenderPasses() const
{
if (supportsBindingLoops()) {
QList<const Timeline::TimelineRenderPass *> passes;
passes << Timeline::TimelineItemsRenderPass::instance()
<< QmlProfilerBindingLoopsRenderPass::instance()
<< Timeline::TimelineSelectionRenderPass::instance()
<< Timeline::TimelineNotesRenderPass::instance();
return passes;
} else {
return QmlProfilerTimelineModel::supportedRenderPasses();
}
}
} // namespace Internal
} // namespaec QmlProfiler