blob: 7a2826472b575f157063e1ebb293b62ba0d0da8a (
plain) (
blame)
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
|
// SPDX-FileCopyrightText: 2009 Ian Reinhart Geiser <geiseri@kde.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "QXmppRemoteMethod.h"
#include "QXmppClient.h"
#include "QXmppUtils.h"
#include <QDebug>
#include <QEventLoop>
#include <QTimer>
QXmppRemoteMethod::QXmppRemoteMethod(const QString &jid, const QString &method, const QVariantList &args, QXmppClient *client) : QObject(client), m_client(client)
{
m_payload.setTo(jid);
m_payload.setFrom(client->configuration().jid());
m_payload.setMethod(method);
m_payload.setArguments(args);
}
QXmppRemoteMethodResult QXmppRemoteMethod::call()
{
// FIXME : spinning an event loop is a VERY bad idea, it can cause
// us to lose incoming packets
QEventLoop loop(this);
connect(this, &QXmppRemoteMethod::callDone, &loop, &QEventLoop::quit);
QTimer::singleShot(30000, &loop, &QEventLoop::quit); // Timeout in case the other end hangs...
m_client->sendPacket(m_payload);
loop.exec(QEventLoop::ExcludeUserInputEvents | QEventLoop::WaitForMoreEvents);
return m_result;
}
void QXmppRemoteMethod::gotError(const QXmppRpcErrorIq &iq)
{
if (iq.id() == m_payload.id()) {
m_result.hasError = true;
m_result.errorMessage = iq.error().text();
m_result.code = iq.error().type();
Q_EMIT callDone();
}
}
void QXmppRemoteMethod::gotResult(const QXmppRpcResponseIq &iq)
{
if (iq.id() == m_payload.id()) {
m_result.hasError = false;
// FIXME: we don't handle multiple responses
const auto values = iq.values();
m_result.result = values.first();
Q_EMIT callDone();
}
}
|