summaryrefslogtreecommitdiffstats
path: root/src/runtime/q3dsprofiler.cpp
blob: 1a02084799ca28df2611ff59984db97b59e19273 (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
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of Qt 3D Studio.
**
** $QT_BEGIN_LICENSE:GPL$
** 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 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** 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.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "q3dsprofiler_p.h"
#include "q3dsscenemanager_p.h"
#include "q3dsengine_p.h"
#include <QFileInfo>

#if defined(Q_OS_WIN) && !defined(Q_OS_WINRT)
#include <qt_windows.h>
#include <Psapi.h>
#endif

#ifdef Q_OS_LINUX
#include <QFile>
#include <sys/times.h>
#endif

#ifdef Q_OS_MACOS
#include <mach/mach_types.h>
#include <mach/mach.h>
#include <sys/sysctl.h>
#endif

QT_BEGIN_NAMESPACE

Q3DSProfiler::Q3DSProfiler()
{
    m_frameData.reserve(64 * 1024);
}

Q3DSProfiler::~Q3DSProfiler()
{
    for (auto c : m_objectDestroyConnections)
        QObject::disconnect(c);
}

void Q3DSProfiler::resetForNewScene(Q3DSSceneManager *sceneManager)
{
    for (auto c : m_objectDestroyConnections)
        QObject::disconnect(c);

    m_subMeshData.clear();
    m_subPresProfilers.clear();
    m_frameData.clear();
    m_objectData.clear();
    m_objectDestroyConnections.clear();

    m_sceneManager = sceneManager;
    m_presentation = m_sceneManager->m_presentation;
    Q_ASSERT(m_presentation);
    m_presentationName = QFileInfo(m_presentation->sourceFile()).fileName();
}

void Q3DSProfiler::setEnabled(bool enabled)
{
    if (m_enabled == enabled)
        return;

    m_enabled = enabled;
}

void Q3DSProfiler::reportNewFrame(float deltaMs, const Q3DSRenderLoopStats *rlStats)
{
    if (!m_enabled)
        return;

    FrameData d;
    d.deltaMs = deltaMs;
    d.quickDeltaMs = rlStats ? rlStats->quickDeltaMs : 0.0f;
    d.usedDedicatedQuickRenderThread = rlStats ? rlStats->usingSGRenderThread : false;
    d.usedDefaultQt3DRenderAspectWithOwnRenderThread = rlStats ? rlStats->usingAsyncRenderAspect : false;
    m_frameData.append(d);
}

void Q3DSProfiler::updateFrameStats(qint64 globalFrameCounter)
{
    if (!m_enabled)
        return;

    Q_ASSERT(!m_frameData.isEmpty());
    FrameData &d(m_frameData.last());
    d.globalFrameCounter = globalFrameCounter;
    d.wasDirty = m_sceneManager->m_wasDirty;
}

void Q3DSProfiler::trackNewObject(QObject *obj, ObjectType type, const QByteArray &id, const char *info, ...)
{
    if (!m_enabled)
        return;

    va_list ap;
    va_start(ap, info);
    vtrackNewObject(obj, type, id, info, ap);
    va_end(ap);
}

void Q3DSProfiler::trackNewObject(QObject *obj, ObjectType type, const QByteArray &id,
                                  const QString &info)
{
    if (!m_enabled)
        return;

    ObjectData objd(obj, type, id);
    objd.info = info;
    m_objectData.insert(type, objd);

    m_objectDestroyConnections.append(QObject::connect(obj, &QObject::destroyed,
                                                       [this, obj, type, id]() {
        m_objectData.remove(type, ObjectData(obj, type, id));
    }));
}

void Q3DSProfiler::vtrackNewObject(QObject *obj, ObjectType type, const QByteArray &id, const char *info, va_list args)
{
    if (!m_enabled)
        return;

    ObjectData objd(obj, type, id);
    objd.info = QString::vasprintf(info, args);
    m_objectData.insert(type, objd);

    m_objectDestroyConnections.append(QObject::connect(obj, &QObject::destroyed, [this, obj, type, id]() {
        m_objectData.remove(type, ObjectData(obj, type, id));
    }));
}

void Q3DSProfiler::updateObjectInfo(QObject *obj, ObjectType type, const QByteArray &id, const char *info, ...)
{
    auto it = m_objectData.find(type);
    while (it != m_objectData.end() && it.key() == type) {
        if (it->obj == obj) {
            va_list ap;
            va_start(ap, info);
            it->info = QString::vasprintf(info, ap);
            it->id = id;
            va_end(ap);
            break;
        }
        ++it;
    }
}

void Q3DSProfiler::reportTotalParseBuildTime(qint64 ms)
{
    m_totalParseBuildTime = ms;
}

void Q3DSProfiler::reportBehaviorStats(qint64 loadTimeMs, int activeCount)
{
    m_behaviorLoadTime = loadTimeMs;
    m_behaviorActiveCount = activeCount;
}

void Q3DSProfiler::reportTimeAfterBuildUntilFirstFrameAction(qint64 ms)
{
    m_firstFrameActionTime = ms;
}

void Q3DSProfiler::reportSubMeshData(Q3DSMesh *mesh, const SubMeshData &data)
{
    if (!m_enabled)
        return;

    m_subMeshData.insert(mesh, data);
}

void Q3DSProfiler::registerSubPresentationProfiler(Q3DSProfiler *p)
{
    p->m_mainProfiler = this;
    m_subPresProfilers.append(p);
}

Q3DSProfiler *Q3DSProfiler::mainPresentationProfiler()
{
    return m_mainProfiler ? m_mainProfiler : this;
}

void Q3DSProfiler::reportQt3DSceneGraphRoot(Qt3DCore::QEntity *rootEntity)
{
    m_qt3dSceneGraphRoots.append(rootEntity);
}

void Q3DSProfiler::reportFrameGraphRoot(Qt3DRender::QFrameGraphNode *fgNode)
{
    m_frameGraphRoot = fgNode;
}

void Q3DSProfiler::reportFrameGraphStopNode(Qt3DRender::QFrameGraphNode *fgNode)
{
    m_fgStopNodes.insert(fgNode);
}

bool Q3DSProfiler::hasLogChanged()
{
    bool b = m_logChanged;
    m_logChanged = false;
    return b;
}

void Q3DSProfiler::clearLog()
{
    m_log.clear();
    Q3DSEngine::clearLog();
    m_logChanged = true;
}

void Q3DSProfiler::addLog(const QString &msg)
{
    m_log.append(msg);
    m_logChanged = true;
}

void Q3DSProfiler::sendDataInputValueChange(const QString &dataInputName, const QVariant &value)
{
    m_sceneManager->setDataInputValue(dataInputName, value);
}

void Q3DSProfiler::setLayerCaching(bool enabled)
{
    m_sceneManager->setLayerCaching(enabled);
    for (Q3DSProfiler *subPresProfiler : *subPresentationProfilers())
        subPresProfiler->m_sceneManager->setLayerCaching(enabled);
}

float Q3DSProfiler::cpuLoadForCurrentProcess()
{
    if (!m_cpuLoadTimer.isValid()) {
        m_cpuLoadTimer.start();
    } else {
        // query and calculate every 500 ms only, return the cached value otherwise
        if (m_cpuLoadTimer.elapsed() < 500)
            return m_lastCpuLoad;
        m_cpuLoadTimer.restart();
    }

#if defined(Q_OS_WIN) && !defined(Q_OS_WINRT)
    quint64 kernelTimeSys, userTimeSys, kernelTimeProc, userTimeProc;
    FILETIME creationFTime, exitFTime, kernelFTime, userFTime, idleFTime;
    if (!GetSystemTimes(&idleFTime, &kernelFTime, &userFTime))
        return m_lastCpuLoad;
    kernelTimeSys = quint64(kernelFTime.dwHighDateTime) << 32 | quint64(kernelFTime.dwLowDateTime);
    userTimeSys = quint64(userFTime.dwHighDateTime) << 32 | quint64(userFTime.dwLowDateTime);
    if (!GetProcessTimes(GetCurrentProcess(), &creationFTime, &exitFTime, &kernelFTime, &userFTime))
        return m_lastCpuLoad;
    kernelTimeProc = quint64(kernelFTime.dwHighDateTime) << 32 | quint64(kernelFTime.dwLowDateTime);
    userTimeProc = quint64(userFTime.dwHighDateTime) << 32 | quint64(userFTime.dwLowDateTime);

    float d = (kernelTimeSys - m_lastKernelTimeSys) + (userTimeSys - m_lastUserTimeSys);
    if (d)
        m_lastCpuLoad = ((kernelTimeProc - m_lastKernelTimeProc) + (userTimeProc - m_lastUserTimeProc)) / d * 100.0f;

    m_lastKernelTimeSys = kernelTimeSys;
    m_lastUserTimeSys = userTimeSys;
    m_lastKernelTimeProc = kernelTimeProc;
    m_lastUserTimeProc = userTimeProc;
#elif defined(Q_OS_LINUX)
    if (!m_numCpus) {
        QFile f(QLatin1String("/proc/cpuinfo"));
        if (!f.open(QIODevice::ReadOnly | QIODevice::Text))
            return m_lastCpuLoad;
        for ( ; ; ) {
            QByteArray line = f.readLine();
            if (line.isEmpty())
                break;
            if (line.startsWith(QByteArrayLiteral("processor")))
                ++m_numCpus;
        }
    }
    if (!m_numCpus)
        return m_lastCpuLoad;

    tms processTimes;
    clock_t timestamp = times(&processTimes);
    if (timestamp > m_lastTimestamp) {
        float d = (timestamp - m_lastTimestamp);
        // behave like adb top, max is 100% so divide by number of cores
        m_lastCpuLoad = ((processTimes.tms_stime - m_lastKernel) + (processTimes.tms_utime - m_lastUser)) / d / m_numCpus * 100.0f;
    }
    m_lastTimestamp = timestamp;
    m_lastKernel = processTimes.tms_stime;
    m_lastUser = processTimes.tms_utime;
#elif defined(Q_OS_MACOS)
    // Get thread times
    mach_port_t task = mach_task_self();
    task_thread_times_info threadTimes = {};
    mach_msg_type_number_t outCount = TASK_THREAD_TIMES_INFO_COUNT;

    kern_return_t retVal = task_info(task, TASK_THREAD_TIMES_INFO,
                                     task_info_t(&threadTimes), &outCount);
    if (retVal != KERN_SUCCESS)
        return m_lastCpuLoad;

    // Get task info
    mach_task_basic_info_data_t taskInfo = {};
    outCount = MACH_TASK_BASIC_INFO_COUNT;
    retVal = task_info(task, MACH_TASK_BASIC_INFO,
                       task_info_t(&taskInfo), &outCount);

    if (retVal != KERN_SUCCESS)
        return m_lastCpuLoad;

    struct timeval userTimeVal, systemTimeVal, totalTimeVal;

    // Thread info contains alive time
    userTimeVal.tv_sec = threadTimes.user_time.seconds;
    userTimeVal.tv_usec = threadTimes.user_time.microseconds;
    systemTimeVal.tv_sec = threadTimes.system_time.seconds;
    systemTimeVal.tv_usec = threadTimes.system_time.microseconds;

    // Add user time and system time to total time
    timeradd(&userTimeVal, &systemTimeVal, &totalTimeVal);

    // Task info has terminated time
    userTimeVal.tv_sec = taskInfo.user_time.seconds;
    userTimeVal.tv_usec = taskInfo.user_time.microseconds;
    systemTimeVal.tv_sec = taskInfo.system_time.seconds;
    systemTimeVal.tv_usec = taskInfo.system_time.microseconds;

    // Add user time and system time to total time
    timeradd(&userTimeVal, &totalTimeVal, &totalTimeVal);
    timeradd(&systemTimeVal, &totalTimeVal, &totalTimeVal);

    // Get current time
    struct timeval now;
    int error = gettimeofday(&now, nullptr);
    if (error)
        return m_lastCpuLoad;

    // Convert everything to microseconds
    qint64 timestamp = timeValToMicroseconds(now);
    qint64 totalTaskTime = timeValToMicroseconds(totalTimeVal);

    // On first execution just store the current values
    if (m_lastTimestamp == 0) {
        m_lastTimestamp = timestamp;
        m_lastTaskTime = totalTaskTime;
        return m_lastCpuLoad;
    }

    // Calculate percentage of CPU time this task used over delta time
    qint64 taskDeltaTime = totalTaskTime - m_lastTaskTime;
    qint64 totalDeltaTime = timestamp - m_lastTimestamp;

    if (totalDeltaTime == 0)
        return m_lastCpuLoad;

    m_lastTimestamp = timestamp;
    m_lastTaskTime = totalTaskTime;

    m_lastCpuLoad = (taskDeltaTime * 100.f)
                    / float(totalDeltaTime)
                    / float(m_macOSProfiler.numActiveProcessors());

#endif

    return m_lastCpuLoad;
}

QPair<qint64, qint64> Q3DSProfiler::memUsageForCurrentProcess()
{
    if (!m_memUsageTimer.isValid()) {
        m_memUsageTimer.start();
    } else {
        // query and calculate every 500 ms only, return the cached value otherwise
        if (m_memUsageTimer.elapsed() < 500)
            return m_lastMemUsage;
        m_memUsageTimer.restart();
    }

#if defined(Q_OS_WIN) && !defined(Q_OS_WINRT)
    PROCESS_MEMORY_COUNTERS_EX memInfo;
    if (!GetProcessMemoryInfo(GetCurrentProcess(), reinterpret_cast<PROCESS_MEMORY_COUNTERS *>(&memInfo), sizeof(memInfo)))
        return m_lastMemUsage;

    qint64 physMappedSize = memInfo.WorkingSetSize;
    qint64 commitCharge = memInfo.PrivateUsage;
    m_lastMemUsage = { physMappedSize, commitCharge };
#elif defined(Q_OS_LINUX)
    QFile f(QLatin1String("/proc/self/status"));
    if (!f.open(QIODevice::ReadOnly | QIODevice::Text))
        return m_lastMemUsage;
    qint64 physMappedSize = 0, commitCharge = 0;
    for ( ; ; ) {
        QByteArray line = f.readLine();
        if (line.isEmpty())
            break;
        if (line.startsWith(QByteArrayLiteral("VmSize:"))) {
            QByteArrayList c = line.mid(7).trimmed().split(' ');
            if (!c.isEmpty())
                commitCharge = c[0].toLongLong() * 1000;
        } else if (line.startsWith(QByteArrayLiteral("VmRSS:"))) {
            QByteArrayList c = line.mid(6).trimmed().split(' ');
            if (!c.isEmpty())
                physMappedSize = c[0].toLongLong() * 1000;
        }
        if (physMappedSize && commitCharge)
            break;
    }
    f.close();
    m_lastMemUsage = { physMappedSize, commitCharge };
#elif defined(Q_OS_MACOS)
    mach_task_basic_info_data_t taskinfo = {};
    mach_msg_type_number_t outCount = MACH_TASK_BASIC_INFO_COUNT;

    kern_return_t error = task_info(
                mach_task_self(),
                MACH_TASK_BASIC_INFO,
                task_info_t(&taskinfo),
                &outCount);
    if (error == KERN_SUCCESS) {
        qint64 virtualSize = qint64(taskinfo.virtual_size);
        qint64 residentSize = qint64(taskinfo.resident_size);
        m_lastMemUsage = { residentSize, virtualSize };
    }
#endif

    return m_lastMemUsage;
}

#if defined(Q_OS_MACOS)
qint64 Q3DSProfiler::timeValToMicroseconds(const struct timeval& timeVal)
{
    static const int microsecondsPerSecond = 1000000;
    qint64 retVal = timeVal.tv_sec;
    retVal *= microsecondsPerSecond;
    retVal += timeVal.tv_usec;
    return retVal;
}
#endif

QT_END_NAMESPACE