kdeconnect-kde/declarativeplugin/responsewaiter.h

62 lines
1.3 KiB
C
Raw Normal View History

2014-01-28 22:22:59 +00:00
#ifndef RESPONSE_WAITER_H
#define RESPONSE_WAITER_H
#include <QObject>
#include <QVariant>
2014-02-06 15:25:22 +00:00
#include <QTimer>
2014-01-28 22:22:59 +00:00
class QDBusPendingCall;
class QDBusPendingCallWatcher;
2014-01-31 10:06:21 +00:00
class DBusResponseWaiter : public QObject
{
Q_OBJECT
public:
static DBusResponseWaiter* instance();
2018-10-07 19:23:20 +01:00
///extract QDbusPendingCall from \p variant and blocks until completed
2014-01-31 10:06:21 +00:00
Q_INVOKABLE QVariant waitForReply(QVariant variant) const;
const QDBusPendingCall* extractPendingCall(QVariant& variant) const;
private:
DBusResponseWaiter();
static DBusResponseWaiter* m_instance;
QList<int> m_registered;
};
class DBusAsyncResponse : public QObject
2014-01-28 22:22:59 +00:00
{
Q_OBJECT
2014-02-06 14:05:05 +00:00
Q_PROPERTY(bool autoDelete READ autodelete WRITE setAutodelete)
2014-01-28 22:22:59 +00:00
public:
explicit DBusAsyncResponse(QObject* parent = nullptr);
~DBusAsyncResponse() override = default;
2014-01-28 22:22:59 +00:00
2014-02-06 14:05:05 +00:00
Q_INVOKABLE void setPendingCall(QVariant e);
2014-02-05 20:36:51 +00:00
void setAutodelete(bool b) {m_autodelete = b;};
2014-02-06 14:05:05 +00:00
bool autodelete() const {return m_autodelete;}
2014-01-28 22:22:59 +00:00
Q_SIGNALS:
void success(const QVariant& result);
void error(const QString& message);
2014-01-28 22:22:59 +00:00
private Q_SLOTS:
void onCallFinished(QDBusPendingCallWatcher* watcher);
2014-02-06 15:25:22 +00:00
void onTimeout();
2014-02-05 20:36:51 +00:00
2014-02-06 15:25:22 +00:00
private:
QTimer m_timeout;
2014-02-05 20:36:51 +00:00
bool m_autodelete;
2014-01-28 22:22:59 +00:00
};
#endif