summaryrefslogtreecommitdiff
path: root/plugin/src/Caelestia/service.cpp
blob: 5d5232be67a73a0392a377e21a28f89b37160191 (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
#include "service.hpp"

#include <QDebug>
#include <QMutexLocker>
#include <QObject>

namespace caelestia {

Service::Service(QObject* parent)
    : QObject(parent)
    , m_refCount(0) {}

int Service::refCount() {
    QMutexLocker locker(&m_mutex);
    return m_refCount;
}

void Service::ref() {
    bool needsStart = false;

    {
        QMutexLocker locker(&m_mutex);
        if (m_refCount == 0) {
            needsStart = true;
        }
        m_refCount++;
    }
    emit refCountChanged();

    if (needsStart) {
        QMetaObject::invokeMethod(this, &Service::start, Qt::QueuedConnection);
    }
}

void Service::unref() {
    bool needsStop = false;

    {
        QMutexLocker locker(&m_mutex);
        if (m_refCount == 0) {
            qWarning() << "ServiceRef::unref: attempted to unref service with no active refs";
            return;
        }
        m_refCount--;
        if (m_refCount == 0) {
            needsStop = true;
        }
    }
    emit refCountChanged();

    if (needsStop) {
        QMetaObject::invokeMethod(this, &Service::stop, Qt::QueuedConnection);
    }
}

} // namespace caelestia