blob: 3296d4558be5654f5930fb3eca89f0a9403caf50 (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQMLABSTRACTPROFILERADAPTER_P_H
#define QQMLABSTRACTPROFILERADAPTER_P_H
#include <private/qtqmlglobal_p.h>
#include <private/qqmlprofilerdefinitions_p.h>
#include <QtCore/QObject>
#include <QtCore/QElapsedTimer>
#include <QtCore/QThread>
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
QT_BEGIN_NAMESPACE
QT_REQUIRE_CONFIG(qml_debug);
class QQmlProfilerService;
class Q_QML_EXPORT QQmlAbstractProfilerAdapter : public QObject, public QQmlProfilerDefinitions {
Q_OBJECT
public:
static const int s_numMessagesPerBatch = 1000;
QQmlAbstractProfilerAdapter(QObject *parent = nullptr) : QObject(parent) {}
~QQmlAbstractProfilerAdapter() override
{
QThread *currentThread = QThread::currentThread();
QThread *mainThread = thread();
if (currentThread != mainThread) {
qFatal("Qml debugging framework was cleaned up from wrong thread. Did you leak your "
"QCoreApplication?");
}
}
void setService(QQmlProfilerService *new_service) { service = new_service; }
virtual qint64 sendMessages(qint64 until, QList<QByteArray> &messages) = 0;
void startProfiling(quint64 features);
void stopProfiling();
void reportData() { Q_EMIT dataRequested(); }
void stopWaiting() { waiting = false; }
void startWaiting() { waiting = true; }
bool isRunning() const { return running; }
quint64 features() const { return featuresEnabled; }
void synchronize(const QElapsedTimer &t) { Q_EMIT referenceTimeKnown(t); }
Q_SIGNALS:
void profilingEnabled(quint64 features);
void profilingEnabledWhileWaiting(quint64 features);
void profilingDisabled();
void profilingDisabledWhileWaiting();
void dataRequested();
void referenceTimeKnown(const QElapsedTimer &timer);
protected:
QQmlProfilerService *service = nullptr;
private:
quint64 featuresEnabled = 0;
bool waiting = true;
bool running = false;
};
class Q_QML_EXPORT QQmlAbstractProfilerAdapterFactory : public QObject
{
Q_OBJECT
public:
virtual QQmlAbstractProfilerAdapter *create(const QString &key) = 0;
};
#define QQmlAbstractProfilerAdapterFactory_iid "org.qt-project.Qt.QQmlAbstractProfilerAdapterFactory"
QT_END_NAMESPACE
#endif // QQMLABSTRACTPROFILERADAPTER_P_H
|