You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.5 KiB
C++
95 lines
3.5 KiB
C++
// -*- c++ -*-
|
|
|
|
/*!
|
|
*
|
|
* Copyright (C) 2015 Jolla Ltd.
|
|
*
|
|
* Contact: Valerio Valerio <valerio.valerio@jolla.com>
|
|
* Author: Andres Gomez <andres.gomez@jolla.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
|
|
#ifndef DBUSEXTENDEDABSTRACTINTERFACE_H
|
|
#define DBUSEXTENDEDABSTRACTINTERFACE_H
|
|
|
|
#include "dbusextended.h"
|
|
|
|
#include <QDBusAbstractInterface>
|
|
#include <QDBusError>
|
|
|
|
class QDBusPendingCallWatcher;
|
|
class DBusExtendedPendingCallWatcher;
|
|
|
|
class QT_DBUS_EXTENDED_EXPORT DBusExtendedAbstractInterface: public QDBusAbstractInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
virtual ~DBusExtendedAbstractInterface();
|
|
|
|
Q_PROPERTY(bool sync READ sync WRITE setSync)
|
|
inline bool sync() const { return m_sync; }
|
|
inline void setSync(bool sync) { m_sync = sync; }
|
|
|
|
Q_PROPERTY(bool useCache READ useCache WRITE setUseCache)
|
|
inline bool useCache() const { return m_useCache; }
|
|
inline void setUseCache(bool useCache) { m_useCache = useCache; }
|
|
|
|
void getAllProperties();
|
|
inline QDBusError lastExtendedError() const { return m_lastExtendedError; };
|
|
|
|
protected:
|
|
DBusExtendedAbstractInterface(const QString &service,
|
|
const QString &path,
|
|
const char *interface,
|
|
const QDBusConnection &connection,
|
|
QObject *parent);
|
|
|
|
void connectNotify(const QMetaMethod &signal);
|
|
void disconnectNotify(const QMetaMethod &signal);
|
|
QVariant internalPropGet(const char *propname, void *propertyPtr);
|
|
void internalPropSet(const char *propname, const QVariant &value, void *propertyPtr);
|
|
|
|
Q_SIGNALS:
|
|
void propertyChanged(const QString &propertyName, const QVariant &value);
|
|
void propertyInvalidated(const QString &propertyName);
|
|
void asyncPropertyFinished(const QString &propertyName);
|
|
void asyncSetPropertyFinished(const QString &propertyName);
|
|
void asyncGetAllPropertiesFinished();
|
|
|
|
private Q_SLOTS:
|
|
void onPropertiesChanged(const QString& interfaceName,
|
|
const QVariantMap& changedProperties,
|
|
const QStringList& invalidatedProperties);
|
|
void onAsyncPropertyFinished(DBusExtendedPendingCallWatcher *watcher);
|
|
void onAsyncSetPropertyFinished(DBusExtendedPendingCallWatcher *watcher);
|
|
void onAsyncGetAllPropertiesFinished(QDBusPendingCallWatcher *watcher);
|
|
|
|
private:
|
|
QVariant asyncProperty(const QString &propertyName);
|
|
void asyncSetProperty(const QString &propertyName, const QVariant &value);
|
|
static QVariant demarshall(const QString &interface, const QMetaProperty &metaProperty, const QVariant &value, QDBusError *error);
|
|
|
|
bool m_sync;
|
|
bool m_useCache;
|
|
QDBusPendingCallWatcher *m_getAllPendingCallWatcher;
|
|
QDBusError m_lastExtendedError;
|
|
bool m_propertiesChangedConnected;
|
|
};
|
|
|
|
#endif /* DBUSEXTENDEDABSTRACTINTERFACE_H */
|