summaryrefslogtreecommitdiffstats
path: root/src/monitor-lib/processmonitor.cpp
blob: bb978d856cb966134dd68b03aa13977261cfc70a (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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/****************************************************************************
**
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Pelagicore Application Manager.
**
** $QT_BEGIN_LICENSE:LGPL-QTAS$
** Commercial License Usage
** Licensees holding valid commercial Qt Automotive Suite 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 Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or 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.GPL2 and 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-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
** SPDX-License-Identifier: LGPL-3.0
**
****************************************************************************/

#include "processmonitor.h"
#include "processmonitor_p.h"
#include "logging.h"

#include <QtAppManManager/applicationmanager.h>


/*!
    \qmltype ProcessMonitor
    \inqmlmodule QtApplicationManager.SystemUI
    \ingroup system-ui
    \brief A type for monitoring process resource usage.

    The ProcessMonitor type provides statistics about the resource usage and performance for a process known to the
    application-manager. Currently, CPU load, memory usage and frame rate can be monitored. This type is
    available in the System-UI only.

    The ProcessMonitor is dedicated to Linux in particular, since this is currently the only OS
    that supports multi-process mode. Other OS's are supported only rudimenatary.

    Here is an example, how the ProcessMonitor can be used:

    \qml
    import QtApplicationManager.SystemUI 1.0

    ProcessMonitor {
        applicationId: ""
        reportingInterval: 1000
        memoryReportingEnabled: true

        onMemoryReportingChanged: {
            console.log("Total PSS: " + (memoryPss.total / 1e6).toFixed(0) + " MB");
        }
    }
    \endqml

    The type is derived from \c QAbstractListModel, so it can be used directly as a model in an
    appropriate view.

    \target role-names
    Here is the list of roles that the model provides:

    \table
    \header
        \li Role name
        \li Type
        \li Description
    \row
        \li \c cpuLoad
        \target cpuLoad-role
        \li real
        \li The process's CPU utilization during the last reporting interval. A value of 0 means
            that the process was idle, a value of 1 means it fully used the equivalent of one core
            (which may be split over several ones).
    \row
        \li \c memoryVirtual
        \target memoryVirtual-role
        \li var
        \li A map of the process's virtual memory usage. See below for a list of supported keys.
            The total amount of virtual memory is provided through \c memoryVirtual.total for
            example.
    \row
        \li \c memoryRss
        \target memoryRss-role
        \li var
        \li A map of the process's RSS (Resident Set Size) memory usage. This is the amount of
            memory that is actually mapped to physical RAM. See below for a list of supported
            keys.
    \row
        \li \c memoryPss
        \target memoryPss-role
        \li var
        \li A map of the process's PSS (Proportional Set Size) memory usage. This is the
            proportional share of the RSS value above. For instance if two processes share 2 MB
            the RSS value will be 2 MB for each process and the PSS value 1 MB for each process.
            As the name implies, the code section of shared libraries is generally shared between
            processes. Memory may also be shared by other means provided by the OS (e.g. through
            \c mmap on Linux). See below for a list of supported keys.

    \row
        \li \c frameRate
        \target frameRate-role
        \li var
        \li A list of frame rate measurements where each entry corresponds to a window
            and is a map with the following keys: average, maximum, minimum and jitter.
            See below for a list of supported keys.

            \sa monitoredWindows
    \endtable

    These are the supported keys in the memory maps:

    \table
    \header
        \li Key
        \li Description
    \row
        \li total
        \li The amount of memory used in total in bytes.
    \row
        \li text
        \li The amount of memory used by the code section in bytes.
    \row
        \li heap
        \li The amount of memory used by the heap in bytes. This is private, dynamically allocated
            memory (for example through \c malloc or \c mmap on Linux).
    \endtable

    These are the supported keys in each entry of the frameRate list:

    \table
    \header
        \li Key
        \li Description
    \row
        \li average
        \li The average frame rate within the reporting interval.
    \row
        \li maximum
        \li The maximum frame rate within the reporting interval.
    \row
        \li minimum
        \li The minimum frame rate within the reporting interval.
    \row
        \li jitter
        \li The jitter within the reporting interval.
    \endtable

    \note The model will be updated each \l reportingInterval milliseconds. Note that the roles
          will only be populated, if the corresponding reporting parts have been enabled.
*/

/*!
    \qmlproperty int ProcessMonitor::count

    This property holds the number of reading points that will be kept in the model. The minimum
    value that can be set is 2 and the default value is 10.
*/

/*!
    \qmlproperty int ProcessMonitor::processId
    \readonly

    This property holds the OS specific process identifier (PID) that is monitored. This can be
    used by external tools for example. The property is 0, if there is no process associated with
    the \l applicationId. In particular, if the application-manager runs in single-process mode,
    only the System-UI (identified by an empty \l applicationId) will have an associated process.
*/

/*!
    \qmlproperty string ProcessMonitor::applicationId

    The ID of the application that will be monitored. It must be one of the ID's known to the
    application-manager (\l ApplicationManager::applicationIds provides a list of valid IDs). There
    is one exception: if the ID is set to an empty string, the System-UI process will be monitored.
    Setting a new value will reset the model.
*/

/*!
    \qmlproperty int ProcessMonitor::reportingInterval

    This property holds the interval in milliseconds between reporting updates. Note, that
    reporting will only start once this property is set. Setting a new value will reset the model.
    Valid values must be greater than zero.

    At least one of the reporting parts must be enabled to start the reporting.

    \sa cpuLoadReportingEnabled
    \sa memoryReportingEnabled
*/

/*!
    \qmlproperty bool ProcessMonitor::cpuLoadReportingEnabled

    A boolean value that determines whether periodic CPU load reporting is enabled.
*/

/*!
    \qmlproperty bool ProcessMonitor::memoryReportingEnabled

    A boolean value that determines whether periodic memory reporting is enabled.
*/

/*!
    \qmlproperty bool ProcessMonitor::frameRateReportingEnabled

    A boolean value that determines whether periodic frame rate reporting is enabled.

    \note In order to receive measurements, the \l {monitoredWindows} property needs to
    be set to windows which are going to be monitored.

    \sa monitoredWindows
*/

/*!
    \qmlproperty var ProcessMonitor::monitoredWindows

    This property holds a list of windows for which frame rate monitoring will be performed.
    Mapped windows are advertised through the \l {WindowManager::windowReady()}
    signal and the WindowManager type is itself a model which holds all windows of all
    application processes.

    \note It is possible to monitor server side (System-UI) views, as well,
    if the \l applicationId is empty (hence the System-UI process will be monitored).

    \sa frameRateReportingEnabled
*/

/*!
    \qmlsignal ProcessMonitor::cpuLoadReportingChanged(real load)

    This signal is emitted periodically when CPU load reporting is enabled. The frequency is
    defined by \l reportingInterval. The \a load parameter indicates the CPU utilization. Details
    can be found in the description of the \l {cpuLoad-role} {cpuLoad} model role above.

    \sa cpuLoadReportingEnabled
    \sa reportingInterval
*/

/*!
    \qmlsignal ProcessMonitor::memoryReportingChanged(var memoryVritual, var memoryRss
                                                                       , var memoryPss);

    This signal is emitted periodically when memory reporting is enabled. The frequency is defined
    by \l reportingInterval. The parameters provide the same information as the model roles with
    the same name described \l {memoryVirtual-role}{above}.

    \sa memoryReportingEnabled
    \sa reportingInterval
*/

/*!
    \qmlsignal ProcessMonitor::frameRateReportingChanged(var frameRate);

    This signal is emitted periodically when frame rate reporting is enabled and \l monitoredWindows
    is set. The frequency is defined by \l reportingInterval. The \a frameRate parameter provides
    the same information as described \l {frameRate-role}{above}.

    \sa frameRateReportingEnabled
    \sa reportingInterval
*/


QT_BEGIN_NAMESPACE_AM

ProcessMonitor::ProcessMonitor(QObject *parent)
    : QAbstractListModel(parent)
    , d_ptr(new ProcessMonitorPrivate(this))
{
    Q_D(ProcessMonitor);

    d->roles.insert(MemVirtual, "memoryVirtual");
    d->roles.insert(MemRss, "memoryRss");
    d->roles.insert(MemPss, "memoryPss");
    d->roles.insert(CpuLoad, "cpuLoad");
    d->roles.insert(FrameRate, "frameRate");

    d->resetModel();
}

ProcessMonitor::~ProcessMonitor()
{
    Q_D(ProcessMonitor);

    delete d;
}

int ProcessMonitor::rowCount(const QModelIndex &parent) const
{
    Q_UNUSED(parent)
    Q_D(const ProcessMonitor);

    return d->modelData.size();
}

void ProcessMonitor::setCount(int count)
{
    Q_D(ProcessMonitor);

    if (count != d->count) {
        count = qMax(2, count);
        d->updateModelCount(count);
        emit d->newCount(count);
        emit countChanged(count);
    }
}

int ProcessMonitor::count() const
{
    Q_D(const ProcessMonitor);

    return d->count;
}

qint64 ProcessMonitor::processId() const
{
    Q_D(const ProcessMonitor);

    return d->pid;
}


QString ProcessMonitor::applicationId() const
{
    Q_D(const ProcessMonitor);

    return d->appId;
}

void ProcessMonitor::setApplicationId(const QString &appId)
{
    Q_D(ProcessMonitor);

    if (d->appId != appId || d->appId.isNull()) {
        d->appId = appId;
        d->resetModel();
        d->determinePid();
        d->setupFrameRateMonitoring();
        if (!appId.isEmpty() && ApplicationManager::instance()->indexOfApplication(appId) < 0)
            qCWarning(LogSystem) << "ProcessMonitor: invalid application ID:" << appId;
        emit applicationIdChanged(appId);
    }
}

void ProcessMonitor::setReportingInterval(int intervalInMSec)
{
    Q_D(ProcessMonitor);

    if (d->reportingInterval != intervalInMSec && intervalInMSec > 0) {
        d->setupInterval(intervalInMSec);
        d->resetModel();
        emit reportingIntervalChanged(intervalInMSec);
    }
}

int ProcessMonitor::reportingInterval() const
{
    Q_D(const ProcessMonitor);

    return d->reportingInterval;
}

bool ProcessMonitor::isMemoryReportingEnabled() const
{
    Q_D(const ProcessMonitor);

    return d->reportMemory;
}

void ProcessMonitor::setMemoryReportingEnabled(bool enabled)
{
    Q_D(ProcessMonitor);

    if (enabled != d->reportMemory) {
        d->reportMemory = enabled;
        d->memTail = enabled ? 0 : d->count;
        d->setupInterval();
        emit d->newReadMem(enabled);
        emit memoryReportingEnabledChanged();
    }
}

bool ProcessMonitor::isCpuLoadReportingEnabled() const
{
    Q_D(const ProcessMonitor);
    return d->reportCpu;
}

void ProcessMonitor::setCpuLoadReportingEnabled(bool enabled)
{
    Q_D(ProcessMonitor);

    if (enabled != d->reportCpu) {
        d->reportCpu = enabled;
        d->cpuTail = enabled ? 0: d->count;
        d->setupInterval();
        emit d->newReadCpu(enabled);
        emit cpuLoadReportingEnabledChanged();
    }
}

bool ProcessMonitor::isFrameRateReportingEnabled() const
{
    Q_D(const ProcessMonitor);
    return d->reportFps;
}

void ProcessMonitor::setFrameRateReportingEnabled(bool enabled)
{
    Q_D(ProcessMonitor);

    if (enabled != d->reportFps) {
        d->reportFps = enabled;
        d->fpsTail = enabled ? 0 : d->count;
        d->setupFrameRateMonitoring();
        emit frameRateReportingEnabledChanged();
    }
}

QVariant ProcessMonitor::data(const QModelIndex &index, int role) const
{
    Q_D(const ProcessMonitor);

    if (!index.isValid() || index.row() < 0 || index.row() >= d->modelData.size())
        return QVariant();

    const ProcessMonitorPrivate::ModelData &reading = d->modelDataForRow(index.row());

    switch (role) {
    case MemVirtual:
        return reading.vm;
    case MemRss:
        return reading.rss;
    case MemPss:
        return reading.pss;
    case CpuLoad:
        return reading.cpuLoad;
    case FrameRate:
        return reading.frameRate;
    default:
        return QVariant();
    }
}

QHash<int, QByteArray> ProcessMonitor::roleNames() const
{
    Q_D(const ProcessMonitor);

    return d->roles;
}

/*!
    \qmlmethod object ProcessMonitor::get(int index)

    Returns the model data for the reading point identified by \a index as a JavaScript object.
    See the \l {role-names} for the expected object elements. The \a index must be in the range
    [0, \l count), returns an empty object if it is invalid.
*/
QVariantMap ProcessMonitor::get(int row) const
{
    if (row < 0 || row >= count()) {
        qCWarning(LogSystem) << "ProcessMonitor: invalid row:" << row;
        return QVariantMap();
    }

    QVariantMap map;
    QHash<int, QByteArray> roles = roleNames();
    for (auto it = roles.cbegin(); it != roles.cend(); ++it) {
        map.insert(qL1S(it.value()), data(index(row), it.key()));
    }

    return map;
}

QList<QObject *> ProcessMonitor::monitoredWindows() const
{
    Q_D(const ProcessMonitor);

    return d->monitoredWindows();
}

void ProcessMonitor::setMonitoredWindows(QList<QObject *> windows)
{
    Q_D(ProcessMonitor);

    d->updateMonitoredWindows(windows);
}

qreal ProcessMonitor::cpuLoad() const
{
    Q_D(const ProcessMonitor);
    return d->modelData[d->latestReportPos()].cpuLoad;
}

/*!
    \qmlproperty QVariantMap ProcessMonitor::memoryVirtual

    A map of the process's virtual memory usage.
    \sa memoryVirtual-role
*/
QVariantMap ProcessMonitor::memoryVirtual() const
{
    Q_D(const ProcessMonitor);
    return d->modelData[d->latestReportPos()].vm;
}

/*!
    \qmlproperty QVariantMap ProcessMonitor::memoryRss

    A map of the process's RSS (Resident Set Size) memory usage.
    \sa memoryRss-role
*/
QVariantMap ProcessMonitor::memoryRss() const
{
    Q_D(const ProcessMonitor);
    return d->modelData[d->latestReportPos()].rss;
}

/*!
    \qmlproperty QVariantMap ProcessMonitor::memoryPss

    A map of the process's PSS (Proportional Set Size) memory usage.
    \sa memoryPss-role
*/
QVariantMap ProcessMonitor::memoryPss() const
{
    Q_D(const ProcessMonitor);
    return d->modelData[d->latestReportPos()].pss;
}

QT_END_NAMESPACE_AM