aboutsummaryrefslogtreecommitdiff
path: root/libcontextprovider/src/propertyadaptor.h
blob: cb0743bbad3eafe67658bd70d4c63a4b007dfe73 (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
/*
 * Copyright (C) 2008, 2009 Nokia Corporation.
 *
 * Contact: Marius Vollmer <marius.vollmer@nokia.com>
 *
 * This program 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 program 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 program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#ifndef PROPERTYADAPTOR_H
#define PROPERTYADAPTOR_H

#include <QObject>
#include <QDBusAbstractAdaptor>
#include <QDBusMessage>
#include <QDBusConnection>
#include <QSet>
#include <QString>
#define DBUS_INTERFACE "org.maemo.contextkit.Property"

namespace ContextProvider {

class PropertyPrivate;

class PropertyAdaptor: public QDBusAbstractAdaptor
{
    Q_OBJECT
    Q_CLASSINFO("D-Bus Interface", "org.maemo.contextkit.Property")

public:
    PropertyAdaptor(PropertyPrivate* property, QDBusConnection *connection);
    QString objectPath() const;
    void forgetClients();

public Q_SLOTS:
    void Subscribe(const QDBusMessage& msg, QVariantList& values, quint64& timestamp);
    void Unsubscribe(const QDBusMessage& msg);
    void Get(QVariantList& values, quint64& timestamp);

Q_SIGNALS:
    void ValueChanged(const QVariantList &values, const quint64& timestamp);

private Q_SLOTS:
    void onServiceOwnerChanged(const QString&, const QString&, const QString&);
    void onValueChanged(QVariantList values, quint64 timestamp);

private:
    PropertyPrivate *propertyPrivate; ///< The managed object.
    QDBusConnection *connection; ///< The connection to operate on.
    QSet<QString> clientServiceNames; ///< How many times each client (recognized by D-Bus service name) has subscribed

};

} // namespace ContextProvider

#endif