aboutsummaryrefslogtreecommitdiff
path: root/libcontextprovider/src/propertyprivate.h
blob: f8bb7c97c66f83d67392a1840066b0d86c0709b5 (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
/*
 * Copyright (C) 2008 Nokia Corporation.
 *
 * Contact: Marius Vollmer <marius.vollmer@nokia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * version 2.1 as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef PROPERTYPRIVATE_H
#define PROPERTYPRIVATE_H

#include <QObject>
#include <QString>
#include <QVariant>
#include <QPair>

namespace ContextProvider {

class ServiceBackend;
class Property;

class PropertyPrivate : public QObject
{
    Q_OBJECT

public:
    explicit PropertyPrivate(ServiceBackend* serviceBackend, const QString &key, QObject *parent = 0);

    void setValue(const QVariant& v);
    void updateOverheardValue(const QVariantList&, const quint64&);
    void setSubscribed();
    void setUnsubscribed();

signals:
    void valueChanged(const QVariantList& values, const quint64& timestamp);
    void firstSubscriberAppeared(const QString& key);
    void lastSubscriberDisappeared(const QString& key);

private:
    static quint64 currentTimestamp();
    void emitValue();

    int refCount; ///< Number of Property instance sharing this PropertyPrivate
    ServiceBackend* serviceBackend; ///< Pointer to the serviceBackend taking care of D-Bus related things
    QString key; ///< Key of this property
    QVariant value; ///< Current value of the property, set by this provider. QVariant() if null.
    quint64 timestamp; ///< Time when the value was set

    bool subscribed; ///< True if this Property is subscribed to by the clients.
    QVariant emittedValue; ///< Last value emitted by this provider.
    quint64 emittedTimestamp; ///< Time when the emittedValue was emitted.
    bool overheard; ///< True if provider overheard a value over D-Bus (must be different and more recent than emitted)

    /// Map of PropertyPrivate instances
    static QHash<QPair<ServiceBackend*, QString>, PropertyPrivate*> propertyPrivateMap;

    friend class Property;
    friend class PropertyAdaptor;
};

} // end namespace

#endif