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
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "perfprofilertracemanager.h"
#include <QAbstractItemModel>
#include <QtQml/qqml.h>
namespace PerfProfiler::Internal {
class PerfProfilerFlameGraphData;
class PerfProfilerFlameGraphModel : public QAbstractItemModel
{
Q_OBJECT
QML_ELEMENT
QML_UNCREATABLE("use the context property")
Q_DISABLE_COPY_MOVE(PerfProfilerFlameGraphModel);
public:
enum Role {
TypeIdRole = Qt::UserRole + 1, // Sort by data, not by displayed string
DisplayNameRole,
SamplesRole,
FunctionRole,
SourceFileRole,
LineRole,
ElfFileRole,
ObservedResourceAllocationsRole,
LostResourceRequestsRole,
ResourceAllocationsRole,
ObservedResourceReleasesRole,
GuessedResourceReleasesRole,
ResourceReleasesRole,
ResourcePeakRole,
MaxRole
};
Q_ENUM(Role)
struct Data {
Data *parent = nullptr;
int typeId = -1;
uint samples = 0;
uint lastResourceChangeId = 0;
uint observedResourceAllocations = 0;
uint lostResourceRequests = 0;
uint observedResourceReleases = 0;
uint guessedResourceReleases = 0;
qint64 resourceUsage = 0;
qint64 resourcePeak = 0;
std::vector<std::unique_ptr<Data>> children;
};
PerfProfilerFlameGraphModel(PerfProfilerTraceManager *manager);
~PerfProfilerFlameGraphModel() override;
QModelIndex index(int row, int column, const QModelIndex &parent) const override;
QModelIndex parent(const QModelIndex &child) const override;
int rowCount(const QModelIndex &parent) const override;
int columnCount(const QModelIndex &parent) const override;
QVariant data(const QModelIndex &index, int role) const override;
void initialize();
void finalize(PerfProfilerFlameGraphData *data);
void clear(PerfProfilerFlameGraphData *data);
signals:
void gotoSourceLocation(QString file, int line, int column);
private:
std::unique_ptr<Data> m_stackBottom;
std::unique_ptr<PerfProfilerFlameGraphData> m_offlineData;
};
} // namespace PerfProfiler::Internal
|