Skip to content

Latest commit

 

History

History
396 lines (330 loc) · 14.1 KB

transferengineclient.cpp

File metadata and controls

396 lines (330 loc) · 14.1 KB
 
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
/****************************************************************************************
**
** Copyright (C) 2013 Jolla Ltd.
** Contact: Marko Mattila <marko.mattila@jollamobile.com>
** All rights reserved.
**
** This file is part of Nemo Transfer Engine package.
**
** You may use this file 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.
**
** 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.
**
** 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.
**
****************************************************************************************/
#include "transferengineclient.h"
#include "transferengineinterface.h"
class CallbackInterfacePrivate {
public:
CallbackInterfacePrivate()
{
}
CallbackInterfacePrivate(const QString &server, const QString &path, const QString &interface,
const QString &cancelMethod, const QString &restartMethod)
{
callback << server << path << interface;
m_cancelMethod = cancelMethod;
m_restartMethod = restartMethod;
}
QStringList callback;
QString m_cancelMethod;
QString m_restartMethod;
};
/*!
\class CallbackInterface
\brief The CallbackInterface class is a convenience class to wrap DBus callback infromation for
TransferEngineClient API.
\ingroup transfer-engine-lib
This class should be used with TransferEngineClient API.
NOTE: If creating an instance of this class to the heap, the caller is responsible of freeing
the allocated memory.
\sa TransferEngineClient::createSyncEvent() TransferEngineClient::createDownloadEvent()
*/
/*!
Construct an empty CallbackInterface. This can be used if client doesn't want to provide callback
interface to the Sync or Download events.
*/
CallbackInterface::CallbackInterface()
: d_ptr(new CallbackInterfacePrivate())
{
}
/*!
Construct CallbackInterface instance to provide callback information to the TransferEngineClient. Setup
arguments as:
\list
\o \a server e.g. "com.jolla.myapp"
\o \a path e.g. "/com/jolla/myapp"
\o \a interface e.g. "com.jolla.myapp"
\o \a cancelMethod Cancel method name e.g. "cancelSync"
\o \a restartMethod Restart method name e.g. "restartSync"
\endlist
*/
CallbackInterface::CallbackInterface(const QString &server, const QString &path, const QString &interface,
const QString &cancelMethod, const QString &restartMethod)
: d_ptr(new CallbackInterfacePrivate(server, path, interface, cancelMethod, restartMethod))
{
}
/*!
Destroys CallbackInterface object.
*/
CallbackInterface::~CallbackInterface()
{
delete d_ptr;
}
class TransferEngineClientPrivate
{
public:
Jul 1, 2013
Jul 1, 2013
106
TransferEngineInterface *m_client;
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
};
/*!
\class TransferEngineClient
\brief The TransferEngineClient class is a simple client API for creating Download and
Sync events to TransferEngine.
TransferEngineClient is a convenience API for create and updating Download and
Sync entries to the Nemo TransferEngine. For Upload entries, it is required to
create share plugins by implementing required interfaces provided by this TransferEngine
library.
If the client using this interface wants to enable cancel and restart functionality, it
means that the client process must provide DBus API, which Nemo Transfer Engine can call
in a case of canceling or restarting the operation. In order to do that client must provide
CallbackInterface object with properly set dbus information. See the example below.
For share plugin implementation:
\sa TransferPluginInterface, MediaTransferInterface, TransferPluginInfo
To use this API to create e.g. Sync entry see the example below:
\code
// Create the instance of the client
TransferEngineClient *client = new TransferEngineClient(this);
// Setup callback information. This is dbus interface
CallbackInterface callback("com.jolla.myapp", "/com/jolla/myapp", "com.jolla.myapp",
"cancel", "restart");
// Create the sync event
int transferId = client->createSyncEvent("Syncing data from my service",
QUrl("image://theme/icon-launcher-my-app"),
QUrl("image://theme/icon-s-service-icon"),
callback);
// Start the actual transfer i.e. sync
client->startTransfer(transferId)
// Update sync progress. Usually this is done e.g. in a slot which receives sync
// progress from a signal.
bool ok;
qreal progress = 0;
while (progress <= 1) {
client->updateProgress(transferId, progress);
progress = getProgressFoo(&ok);
if (!ok)
break;
}
// End the sync
TransferEngineClient status;
QString reason;
if (ok) {
status = TransferEngineClient::TransferFinished;
} else {
Jun 10, 2013
Jun 10, 2013
165
status = TransferEngineClient::TransferInterrupted;
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
reason = "Something went wrong";
}
client->finishTransfer(transferId, status, reason);
\endcode
*/
/*!
\enum TransferEngineClient::Status
This enum type describes different values for the Status.
\value TransferFinished Transfer finished successfully
\value TransferCanceled Transfer canceled usually due user actions
\value TransferInterrupted Transfer interrupted because of an error
*/
/*!
Construct an instance of TransferEngineClient with optional \a parent argument.
*/
TransferEngineClient::TransferEngineClient(QObject *parent) :
QObject(parent),
d_ptr(new TransferEngineClientPrivate)
{
Q_D(TransferEngineClient);
d->m_client = new TransferEngineInterface("org.nemo.transferengine",
"/org/nemo/transferengine",
QDBusConnection::sessionBus(),
this);
}
/*!
Destructor.
*/
TransferEngineClient::~TransferEngineClient()
{
Q_D(TransferEngineClient);
delete d->m_client;
delete d_ptr;
d_ptr = 0;
}
/*!
Creates a download event to the TransferEngine. This method requires the following parameters
\a displayName, a human readable name for the entry. \a applicationIcon is the \c QUrl to the icon
of the application, who's calling this method. Usually it can be in format "image://theme/icon-s-something".
\a serviceIcon is a service specific icon such as DropBox. \a url is the url to the media to be downloaded.
\a mimeType is the mimeType of the media and \a expectedFileSize is the file size of the file to be downloaded.
Client can define callback functions for canceling and restarting download. For that client can provide
optional parameter \a callback, which is \c CallbackInterface object containing information about the dbus
service.
Returns transfer id of the download event.
Create a download event to the TransferEngine. This only creates and entry, and client
needs still call:
\list
\o \l TransferEngineClient::startTransfer()
\o \l TransferEngineClient::updateTransferProgress()
\o \l TransferEngineClient::finishTransfer()
\endlist
\sa createSyncEvent(), startTransfer(), updateTransferProgress(), finishTransfer()
*/
int TransferEngineClient::createDownloadEvent(const QString &displayName,
const QUrl &applicationIcon,
const QUrl &serviceIcon,
const QUrl &url,
const QString &mimeType,
qlonglong expectedFileSize,
const CallbackInterface &callback)
{
Q_D(const TransferEngineClient);
QDBusPendingReply<int> reply = d->m_client->createDownload(displayName,
applicationIcon.toString(),
serviceIcon.toString(),
url.toString(),
mimeType,
expectedFileSize,
callback.d_func()->callback,
callback.d_func()->m_cancelMethod,
callback.d_func()->m_restartMethod);
reply.waitForFinished();
if (reply.isError()) {
qWarning() << "TransferEngineClient::createDownloadEvent: failed to get transfer ID!";
return false;
}
return reply.value();
}
/*!
Create a sync event to the TransferEngine. This method is very similar to createDownload(),
except createSyncEvent() takes less parameters.
\a displayName, a human readable name for the entry. \a applicationIcon is the \c QUrl to the icon
of the application, who's calling this method. Usually it can be in format "image://theme/icon-s-something".
\a serviceIcon is a service specific icon such as email account.
Client can define callback functions for canceling and restarting sync. For that client can provide
optional parameter \a callback, which is \c CallbackInterface object containing information about the dbus
service.
Returns transfer id of the sync event.
\sa startTransfer(), updateTransferProgress(), finishTransfer()
*/
int TransferEngineClient::createSyncEvent(const QString &displayName,
const QUrl &applicationIcon,
const QUrl &serviceIcon,
const CallbackInterface &callback)
{
Q_D(const TransferEngineClient);
QDBusPendingReply<int> reply = d->m_client->createSync(displayName,
applicationIcon.toString(),
serviceIcon.toString(),
callback.d_func()->callback,
callback.d_func()->m_cancelMethod,
callback.d_func()->m_restartMethod);
reply.waitForFinished();
if (reply.isError()) {
qWarning() << "TransferEngineClient::createSyncEvent: failed to get transfer ID!";
return false;
}
return reply.value();
}
/*!
Start the transfer for the existing transfer entry with \a transferId. This changes the status of the
transfer from idle to started.These status changes are handled by Nemo TransferEngine internally, but
after this method has been called, the transfer is possible to cancel, interrupt or finish.
*/
void TransferEngineClient::startTransfer(int transferId)
{
Q_D(const TransferEngineClient);
d->m_client->startTransfer(transferId);
}
/*!
Update the progress of the existing transfer with \a transferId. The \a progress must be a \c qreal value
between 0 to 1.
*/
void TransferEngineClient::updateTransferProgress(int transferId, qreal progress)
{
if (progress < 0 || 1 < progress) {
qWarning() << Q_FUNC_INFO << "Progress must be between 0 and 1!";
return;
}
Q_D(const TransferEngineClient);
d->m_client->updateTransferProgress(transferId, progress);
}
/*!
Finalize the transfer with \a transferId. There are three options for finalizing the transfer by setting
the \a status parameter value:
\list
\o \l TransferEngineClient::TransferFinished - success
\o \l TransferEngineClient::TransferCanceled - user cancelation
\o \l TransferEngineClient::TransferInterrupted - an error
\endlist
If the client wants to provide reason for finishing the transfer, it's possible to provide \a reason
parameter.
*/
void TransferEngineClient::finishTransfer(int transferId, Status status, const QString &reason)
{
Q_D(const TransferEngineClient);
d->m_client->finishTransfer(transferId, static_cast<int>(status), reason);
}
Jul 1, 2013
Jul 1, 2013
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*!
Private method for QML interface to cancel an ongoing transfer using \a transferId.
*/
void TransferEngineClient::cbCancelTransfer(int transferId)
{
Q_D(TransferEngineClient);
d->m_client->cancelTransfer(transferId);
}
/*!
Private method for QML interface to restart canceled or interrupted transfer using \a transferId.
*/
void TransferEngineClient::cbRestartTransfer(int transferId)
{
Q_D(TransferEngineClient);
d->m_client->restartTransfer(transferId);
}
/*!
Private method for QML interface to clear all canceled or interrupted events.
*/
void TransferEngineClient::clearTransfers()
{
Q_D(TransferEngineClient);
d->m_client->clearTransfers();
}
/*!
Private method for QML interface to enable notifications.
*/
void TransferEngineClient::enableNotifications(bool enable)
{
Q_D(TransferEngineClient);
d->m_client->enableNotifications(enable);
}
/*!
Private method for QML interface.
\returns true if notifications are enabled, otherwise false is returned.
*/
bool TransferEngineClient::notificationsEnabled() const
{
Q_D(const TransferEngineClient);
QDBusPendingReply<bool> reply = d->m_client->notificationsEnabled();
reply.waitForFinished();
if (reply.isError()) {
qWarning() << Q_FUNC_INFO << "failed to get notifications!";
return false;
}
return reply.value();
}