2019-12-22 07:49:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
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
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-31 10:06:21 +00:00
|
|
|
public:
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-31 10:06:21 +00:00
|
|
|
static DBusResponseWaiter* instance();
|
2019-12-22 07:49:55 +00:00
|
|
|
|
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;
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-31 10:06:21 +00:00
|
|
|
const QDBusPendingCall* extractPendingCall(QVariant& variant) const;
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-31 10:06:21 +00:00
|
|
|
private:
|
|
|
|
DBusResponseWaiter();
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-31 10:06:21 +00:00
|
|
|
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)
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-28 22:22:59 +00:00
|
|
|
public:
|
2015-09-08 09:46:59 +01:00
|
|
|
explicit DBusAsyncResponse(QObject* parent = nullptr);
|
2016-06-20 08:05:02 +01:00
|
|
|
~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);
|
2019-12-22 07:49:55 +00:00
|
|
|
|
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;}
|
2019-12-22 07:49:55 +00:00
|
|
|
|
2014-01-28 22:22:59 +00:00
|
|
|
Q_SIGNALS:
|
2017-09-03 20:39:44 +01:00
|
|
|
void success(const QVariant& result);
|
|
|
|
void error(const QString& message);
|
2019-12-22 07:49:55 +00:00
|
|
|
|
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();
|
2019-12-22 07:49:55 +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
|