summaryrefslogtreecommitdiffstats
path: root/src/shared-main-lib/memorystatus.h
blob: fbfeba6aba0ec8901aafff0551fc2a1295ad36ed (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
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef MEMORYSTATUS_H
#define MEMORYSTATUS_H

#include <memory>

#include <QtCore/QObject>

#include <QtAppManCommon/global.h>
#include <QtAppManMonitor/systemreader.h>

QT_BEGIN_NAMESPACE_AM

class MemoryStatus : public QObject
{
    Q_OBJECT
    Q_PROPERTY(quint64 totalMemory READ totalMemory CONSTANT FINAL)
    Q_PROPERTY(quint64 memoryUsed READ memoryUsed NOTIFY memoryUsedChanged FINAL)

    Q_PROPERTY(QStringList roleNames READ roleNames CONSTANT FINAL)

public:
    MemoryStatus(QObject *parent = nullptr);

    quint64 totalMemory() const;
    quint64 memoryUsed() const;

    QStringList roleNames() const;

    Q_INVOKABLE void update();

Q_SIGNALS:
    void memoryUsedChanged();

private:
    std::unique_ptr<MemoryReader> m_memoryReader;
    quint64 m_memoryUsed;
};

QT_END_NAMESPACE_AM


#endif // MEMORYSTATUS_H