forked from nemomobile/mlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmremoteaction.cpp
131 lines (110 loc) · 3.47 KB
/
mremoteaction.cpp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/***************************************************************************
**
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation ([email protected])
**
** This file is part of libmeegotouch.
**
** If you have questions regarding the use of this file, please contact
** Nokia at [email protected].
**
** This library 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
** and appearing in the file LICENSE.LGPL included in the packaging
** of this file.
**
****************************************************************************/
#include "mremoteaction.h"
#include "mremoteaction_p.h"
#include <QDBusInterface>
#include <QDBusPendingCall>
#include <QBuffer>
#include <QStringList>
MRemoteActionPrivate::MRemoteActionPrivate()
{
}
MRemoteActionPrivate::~MRemoteActionPrivate()
{
}
MRemoteAction::MRemoteAction(const QString &serviceName, const QString &objectPath, const QString &interface, const QString &methodName, const QList<QVariant> &arguments, QObject *parent) :
QObject(parent),
d_ptr(new MRemoteActionPrivate)
{
Q_D(MRemoteAction);
d->serviceName = serviceName;
d->objectPath = objectPath;
d->interface = interface;
d->methodName = methodName;
d->arguments = arguments;
}
MRemoteAction::MRemoteAction(const QString &string, QObject *parent) :
QObject(parent),
d_ptr(new MRemoteActionPrivate)
{
fromString(string);
}
MRemoteAction::~MRemoteAction()
{
delete d_ptr;
}
QString MRemoteAction::toString() const
{
Q_D(const MRemoteAction);
QString s;
if (!d->serviceName.isEmpty() && !d->objectPath.isEmpty() && !d->interface.isEmpty() && !d->methodName.isEmpty()) {
s.append(d->serviceName).append(' ');
s.append(d->objectPath).append(' ');
s.append(d->interface).append(' ');
s.append(d->methodName);
foreach(const QVariant & arg, d->arguments) {
// Serialize the QVariant into a QBuffer
QBuffer buffer;
buffer.open(QIODevice::ReadWrite);
QDataStream stream(&buffer);
stream << arg;
buffer.close();
// Encode the contents of the QBuffer in Base64
s.append(' ');
s.append(buffer.buffer().toBase64().data());
}
}
return s;
}
void MRemoteAction::fromString(const QString &string)
{
Q_D(MRemoteAction);
QStringList l = string.split(' ');
if (l.count() > 3) {
d->serviceName = l.at(0);
d->objectPath = l.at(1);
d->interface = l.at(2);
d->methodName = l.at(3);
}
const int count = l.count();
for (int i = 4; i < count; ++i) {
QByteArray byteArray = QByteArray::fromBase64(l.at(i).toAscii());
QBuffer buffer(&byteArray);
buffer.open(QIODevice::ReadOnly);
QDataStream stream(&buffer);
QVariant arg;
stream >> arg;
buffer.close();
d->arguments.append(arg);
}
}
MRemoteAction::MRemoteAction(const MRemoteAction &action) :
QObject(action.parent()),
d_ptr(new MRemoteActionPrivate)
{
fromString(action.toString());
}
void MRemoteAction::trigger()
{
Q_D(MRemoteAction);
QDBusInterface interface(d->serviceName, d->objectPath, d->interface.toAscii());
if (interface.isValid()) {
interface.asyncCallWithArgumentList(d->methodName, d->arguments);
}
}