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
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
165
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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
/*
* This file is part of TelepathyQt4
*
* Copyright (C) 2009 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright (C) 2009 Nokia Corporation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <TelepathyQt4/ChannelRequest>
#include "TelepathyQt4/_gen/cli-channel-request-body.hpp"
#include "TelepathyQt4/_gen/cli-channel-request.moc.hpp"
#include "TelepathyQt4/_gen/channel-request.moc.hpp"
#include "TelepathyQt4/debug-internal.h"
#include <TelepathyQt4/Account>
#include <TelepathyQt4/AccountFactory>
#include <TelepathyQt4/PendingFailure>
#include <TelepathyQt4/PendingReady>
#include <TelepathyQt4/PendingVoid>
#include <QDateTime>
namespace Tp
{
struct TELEPATHY_QT4_NO_EXPORT ChannelRequest::Private
{
Private(ChannelRequest *parent, const QVariantMap &immutableProperties,
const AccountFactoryConstPtr &, const ConnectionFactoryConstPtr &,
const ChannelFactoryConstPtr &, const ContactFactoryConstPtr &);
~Private();
static void introspectMain(Private *self);
// \param lastCall Is this the last call to extractMainProps ie. should actions that only must
// be done once be done in this call
void extractMainProps(const QVariantMap &props, bool lastCall);
// Public object
ChannelRequest *parent;
// Context
AccountFactoryConstPtr accFact;
ConnectionFactoryConstPtr connFact;
ChannelFactoryConstPtr chanFact;
ContactFactoryConstPtr contactFact;
// Instance of generated interface class
Client::ChannelRequestInterface *baseInterface;
// Mandatory properties interface proxy
Client::DBus::PropertiesInterface *properties;
QVariantMap immutableProperties;
ReadinessHelper *readinessHelper;
// Introspection
AccountPtr account;
QDateTime userActionTime;
QString preferredHandler;
QualifiedPropertyValueMapList requests;
bool propertiesDone;
};
ChannelRequest::Private::Private(ChannelRequest *parent,
const QVariantMap &immutableProperties,
const AccountFactoryConstPtr &accFact,
const ConnectionFactoryConstPtr &connFact,
const ChannelFactoryConstPtr &chanFact,
const ContactFactoryConstPtr &contactFact)
: parent(parent),
accFact(accFact),
connFact(connFact),
chanFact(chanFact),
contactFact(contactFact),
baseInterface(new Client::ChannelRequestInterface(parent)),
properties(parent->interface<Client::DBus::PropertiesInterface>()),
immutableProperties(immutableProperties),
readinessHelper(parent->readinessHelper()),
propertiesDone(false)
{
debug() << "Creating new ChannelRequest:" << parent->objectPath();
parent->connect(baseInterface,
SIGNAL(Failed(QString,QString)),
SIGNAL(failed(QString,QString)));
parent->connect(baseInterface,
SIGNAL(Succeeded()),
SIGNAL(succeeded()));
ReadinessHelper::Introspectables introspectables;
// As ChannelRequest does not have predefined statuses let's simulate one (0)
ReadinessHelper::Introspectable introspectableCore(
QSet<uint>() << 0, // makesSenseForStatuses
Features(), // dependsOnFeatures
QStringList(), // dependsOnInterfaces
(ReadinessHelper::IntrospectFunc) &Private::introspectMain,
this);
introspectables[FeatureCore] = introspectableCore;
readinessHelper->addIntrospectables(introspectables);
// For early access to the immutable properties through the friendly getters - will be called
// again with lastCall = true eventually, if/when becomeReady is called, though
QVariantMap mainProps;
foreach (QString key, immutableProperties.keys()) {
// The key.count thing is so that we don't match "org.fdo.Tp.CR.OptionalInterface.Prop" too
if (key.startsWith(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST "."))
&& key.count(QLatin1Char('.')) ==
QString::fromAscii(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".").count(QLatin1Char('.'))) {
QVariant value = immutableProperties.value(key);
mainProps.insert(key.remove(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".")), value);
}
}
extractMainProps(mainProps, false);
}
ChannelRequest::Private::~Private()
{
}
void ChannelRequest::Private::introspectMain(ChannelRequest::Private *self)
{
QVariantMap props;
QString key;
bool needIntrospectMainProps = false;
const char *propertiesNames[] = { "Account", "UserActionTime",
"PreferredHandler", "Requests", "Interfaces",
NULL };
for (unsigned i = 0; propertiesNames[i] != NULL; ++i) {
key = QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".");
key += QLatin1String(propertiesNames[i]);
if (!self->immutableProperties.contains(key)) {
needIntrospectMainProps = true;
break;
}
props.insert(QLatin1String(propertiesNames[i]),
self->immutableProperties[key]);
}
if (needIntrospectMainProps) {
debug() << "Calling Properties::GetAll(ChannelRequest)";
QDBusPendingCallWatcher *watcher =
new QDBusPendingCallWatcher(
self->properties->GetAll(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST)),
self->parent);
// FIXME: This is a Qt bug fixed upstream, should be in the next Qt release.
// We should not need to check watcher->isFinished() here, remove the
// check when a fixed Qt version is released.
if (watcher->isFinished()) {
self->parent->gotMainProperties(watcher);
} else {
self->parent->connect(watcher,
SIGNAL(finished(QDBusPendingCallWatcher*)),
SLOT(gotMainProperties(QDBusPendingCallWatcher*)));
}
} else {
self->extractMainProps(props, true);
}
}
void ChannelRequest::Private::extractMainProps(const QVariantMap &props, bool lastCall)
{
PendingReady *readyOp = 0;
if (props.contains(QLatin1String("Account"))) {
QDBusObjectPath accountObjectPath =
qdbus_cast<QDBusObjectPath>(props.value(QLatin1String("Account")));
if (!account.isNull()) {
if (accountObjectPath.path() == account->objectPath()) {
// Most often a no-op, but we want this to guarantee the old behavior in all cases
readyOp = account->becomeReady();
} else {
warning() << "The account" << accountObjectPath.path() << "was not the expected"
<< account->objectPath() << "for CR" << parent->objectPath();
// Construct a new one instead
account.reset();
}
}
// We need to check again because we might have dropped the expected account just a sec ago
if (account.isNull() && !accountObjectPath.path().isEmpty()) {
if (!accFact.isNull()) {
readyOp = accFact->proxy(
QLatin1String(TELEPATHY_ACCOUNT_MANAGER_BUS_NAME), accountObjectPath.path(),
connFact, chanFact, contactFact);
account = AccountPtr::qObjectCast(readyOp->proxy());
} else {
account = Account::create(
QLatin1String(TELEPATHY_ACCOUNT_MANAGER_BUS_NAME),
accountObjectPath.path(), connFact, chanFact, contactFact);
readyOp = account->becomeReady();
}
}
}
// FIXME See http://bugs.freedesktop.org/show_bug.cgi?id=21690
uint stamp = (uint) qdbus_cast<qlonglong>(props.value(QLatin1String("UserActionTime")));
if (stamp != 0) {
userActionTime = QDateTime::fromTime_t(stamp);
}
preferredHandler = qdbus_cast<QString>(props.value(QLatin1String("PreferredHandler")));
requests = qdbus_cast<QualifiedPropertyValueMapList>(props.value(QLatin1String("Requests")));
parent->setInterfaces(qdbus_cast<QStringList>(props[QLatin1String("Interfaces")]));
readinessHelper->setInterfaces(parent->interfaces());
if (lastCall) {
propertiesDone = true;
}
if (account) {
parent->connect(readyOp,
SIGNAL(finished(Tp::PendingOperation*)),
SLOT(onAccountReady(Tp::PendingOperation*)));
} else if (lastCall) {
warning() << "No account for ChannelRequest" << parent->objectPath();
readinessHelper->setIntrospectCompleted(FeatureCore, true);
}
}
/**
* \class ChannelRequest
* \ingroup clientchannelrequest
* \headerfile TelepathyQt4/channel-request.h <TelepathyQt4/ChannelRequest>
*
* \brief The ChannelRequest class provides an object representing a Telepathy
* channel request.
*
* A channel request is an object in the channel dispatcher representing an
* ongoing request for some channels to be created or found. There can be any
* number of channel request objects at the same time.
*
* A channel request can be cancelled by any client (not just the one that
* requested it). This means that the channel dispatcher will close the
* resulting channel, or refrain from requesting it at all, rather than
* dispatching it to a handler.
*/
/**
* Feature representing the core that needs to become ready to make the
* ChannelRequest object usable.
*
* Note that this feature must be enabled in order to use most
* ChannelRequest methods.
*
* When calling isReady(), becomeReady(), this feature is implicitly added
* to the requested features.
*/
const Feature ChannelRequest::FeatureCore = Feature(QLatin1String(ChannelRequest::staticMetaObject.className()), 0, true);
/**
* Create a new channel request object using the given \a bus and the given factories.
*
* \param objectPath The channel request object path.
* \param immutableProperties The immutable properties of the channel request.
* \param accountFactory The account factory to use.
* \param connectionFactory The connection factory to use.
* \param channelFactory The channel factory to use.
* \param contactFactory The contact factory to use.
* \return A ChannelRequestPtr pointing to the newly created ChannelRequest.
*/
ChannelRequestPtr ChannelRequest::create(const QDBusConnection &bus, const QString &objectPath,
const QVariantMap &immutableProperties,
const AccountFactoryConstPtr &accountFactory,
const ConnectionFactoryConstPtr &connectionFactory,
const ChannelFactoryConstPtr &channelFactory,
const ContactFactoryConstPtr &contactFactory)
{
return ChannelRequestPtr(new ChannelRequest(bus, objectPath, immutableProperties,
accountFactory, connectionFactory, channelFactory, contactFactory));
}
/**
* Create a new channel request object for the given \a account.
*
* The returned instance will use factories from the account.
*
* \param account The account that the request was made through.
* \param objectPath The channel request object path.
* \param immutableProperties The immutable properties of the channel request.
* \return A ChannelRequestPtr pointing to the newly created ChannelRequest.
*/
ChannelRequestPtr ChannelRequest::create(const AccountPtr &account, const QString &objectPath,
const QVariantMap &immutableProperties)
{
return ChannelRequestPtr(new ChannelRequest(account, objectPath, immutableProperties));
}
/**
* Construct a new channel request object using the given \a bus and the given factories.
*
* \param bus QDBusConnection to use.
* \param objectPath The channel request object path.
* \param accountFactory The account factory to use.
* \param connectionFactory The connection factory to use.
* \param channelFactory The channel factory to use.
* \param contactFactory The contact factory to use.
* \param immutableProperties The immutable properties of the channel request.
* \return A ChannelRequestPtr pointing to the newly created ChannelRequest.
*/
ChannelRequest::ChannelRequest(const QDBusConnection &bus,
const QString &objectPath, const QVariantMap &immutableProperties,
const AccountFactoryConstPtr &accountFactory,
const ConnectionFactoryConstPtr &connectionFactory,
const ChannelFactoryConstPtr &channelFactory,
const ContactFactoryConstPtr &contactFactory)
: StatefulDBusProxy(bus,
QLatin1String(TELEPATHY_INTERFACE_CHANNEL_DISPATCHER),
objectPath, FeatureCore),
OptionalInterfaceFactory<ChannelRequest>(this),
mPriv(new Private(this, immutableProperties, accountFactory, connectionFactory,
channelFactory, contactFactory))
{
if (accountFactory->dbusConnection().name() != bus.name()) {
warning() << " The D-Bus connection in the account factory is not the proxy connection";
}
if (connectionFactory->dbusConnection().name() != bus.name()) {
warning() << " The D-Bus connection in the connection factory is not the proxy connection";
}
if (channelFactory->dbusConnection().name() != bus.name()) {
warning() << " The D-Bus connection in the channel factory is not the proxy connection";
}
}
/**
* Construct a new channel request object using the given \a account.
*
* The constructed instance will use the factories from the account.
*
* \param account Account to use.
* \param objectPath The channel request object path.
* \param immutableProperties The immutable properties of the channel request.
* \return A ChannelRequestPtr pointing to the newly created ChannelRequest.
*/
ChannelRequest::ChannelRequest(const AccountPtr &account,
const QString &objectPath, const QVariantMap &immutableProperties)
: StatefulDBusProxy(account->dbusConnection(),
QLatin1String(TELEPATHY_INTERFACE_CHANNEL_DISPATCHER),
objectPath, FeatureCore),
OptionalInterfaceFactory<ChannelRequest>(this),
mPriv(new Private(this, immutableProperties, AccountFactoryPtr(),
account->connectionFactory(),
account->channelFactory(),
account->contactFactory()))
{
mPriv->account = account;
}
/**
* Class destructor.
*/
ChannelRequest::~ChannelRequest()
{
delete mPriv;
}
/**
* Return the Account on which this request was made.
*
* This method can be used even before the ChannelRequest is ready, in which case the account object
* corresponding to the immutable properties is returned. In this case, the Account object is not
* necessarily ready either. This is useful for eg. matching ChannelRequests from
* ClientHandlerInterface::addRequest() with existing accounts in the application: either by object
* path, or if account factories are in use, even by object identity.
*
* If the account is not provided in the immutable properties, this will only return a non-\c NULL
* AccountPtr once ChannelRequest::FeatureCore is ready on this object.
*
* \return The account on which this request was made.
*/
AccountPtr ChannelRequest::account() const
{
return mPriv->account;
}
/**
* Return the time at which the user action occurred, or 0 if this channel
* request is for some reason not involving user action.
*
* Unix developers: this corresponds to the _NET_WM_USER_TIME property in EWMH.
*
* This property is set when the channel request is created, and can never
* change.
*
* This method can be used even before the ChannelRequest is ready: in this case, the user action
* time from the immutable properties, if any, is returned.
*
* \return The time at which the user action occurred.
*/
QDateTime ChannelRequest::userActionTime() const
{
return mPriv->userActionTime;
}
/**
* Return either the well-known bus name (starting with
* org.freedesktop.Telepathy.Client.) of the preferred handler for this channel,
* or an empty string to indicate that any handler would be acceptable.
*
* This property is set when the channel request is created, and can never
* change.
*
* This method can be used even before the ChannelRequest is ready: in this case, the preferred
* handler from the immutable properties, if any, is returned.
*
* \return The preferred handler or an empty string if any handler would be
* acceptable.
*/
QString ChannelRequest::preferredHandler() const
{
return mPriv->preferredHandler;
}
/**
* Return the desirable properties for the channel or channels to be created, as specified when
* placing the request in the first place.
*
* This property is set when the channel request is created, and can never
* change.
*
* This method can be used even before the ChannelRequest is ready: in this case, the requested
* channel properties from the immutable properties, if any, are returned. This is useful for e.g.
* matching ChannelRequests from ClientHandlerInterface::addRequest() with existing requests in the
* application (by the target ID or handle, most likely).
*
* \return The requested desirable channel properties.
*/
QualifiedPropertyValueMapList ChannelRequest::requests() const
{
return mPriv->requests;
}
/**
* Return all of the immutable properties passed to this object when created.
*
* This is useful for e.g. getting to domain-specific properties of channel requests.
*
* \return The immutable properties.
*/
QVariantMap ChannelRequest::immutableProperties() const
{
QVariantMap props = mPriv->immutableProperties;
if (!account().isNull()) {
props.insert(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".Account"),
QVariant::fromValue(QDBusObjectPath(account()->objectPath())));
}
if (userActionTime().isValid()) {
props.insert(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".UserActionTime"),
QVariant::fromValue(userActionTime().toTime_t()));
}
if (!preferredHandler().isNull()) {
props.insert(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".PreferredHandler"),
preferredHandler());
}
if (!requests().isEmpty()) {
props.insert(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".Requests"),
QVariant::fromValue(requests()));
}
props.insert(QLatin1String(TELEPATHY_INTERFACE_CHANNEL_REQUEST ".Interfaces"),
QVariant::fromValue(interfaces()));
return props;
}
/**
* Cancel the channel request.
*
* If failed() is emitted in response to this method, the error will be
* #TELEPATHY_ERROR_CANCELLED.
*
* If the channel has already been dispatched to a handler, then it's too late
* to call this method, and the channel request will no longer exist.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
*/
PendingOperation *ChannelRequest::cancel()
{
return new PendingVoid(mPriv->baseInterface->Cancel(),
ChannelRequestPtr(this));
}
/**
* Proceed with the channel request.
*
* The client that created this object calls this method when it has connected
* signal handlers for succeeded() and failed(). Note that this is done
* automatically when using PendingChannelRequest.
*
* \return A PendingOperation which will emit PendingOperation::finished
* when the call has finished.
*/
PendingOperation *ChannelRequest::proceed()
{
return new PendingVoid(mPriv->baseInterface->Proceed(),
ChannelRequestPtr(this));
}
/**
* Return the ChannelRequestInterface for this ChannelRequest class. This method is
* protected since the convenience methods provided by this class should
* always be used instead of the interface by users of the class.
*
* \return A pointer to the existing ChannelRequestInterface for this
* ChannelRequest
*/
Client::ChannelRequestInterface *ChannelRequest::baseInterface() const
{
return mPriv->baseInterface;
}
/**
* \fn void ChannelRequest::failed(const QString &errorName,
* const QString &errorMessage);
*
* This signal is emitted when the channel request has failed. No further
* methods must not be called on it.
*
* \param errorName The name of a D-Bus error.
* \param errorMessage The error message.
*/
/**
* \fn void ChannelRequest::succeeded();
*
* This signals is emitted when the channel request has succeeded. No further
* methods must not be called on it.
*/
void ChannelRequest::gotMainProperties(QDBusPendingCallWatcher *watcher)
{
QDBusPendingReply<QVariantMap> reply = *watcher;
QVariantMap props;
if (!reply.isError()) {
debug() << "Got reply to Properties::GetAll(ChannelRequest)";
props = reply.value();
mPriv->extractMainProps(props, true);
} else {
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore,
false, reply.error());
warning().nospace() << "Properties::GetAll(ChannelRequest) failed with "
<< reply.error().name() << ": " << reply.error().message();
}
watcher->deleteLater();
}
void ChannelRequest::onAccountReady(PendingOperation *op)
{
if (op->isError()) {
warning() << "Unable to make ChannelRequest.Account ready";
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore, false,
op->errorName(), op->errorMessage());
return;
}
if (mPriv->propertiesDone && !isReady()) {
mPriv->readinessHelper->setIntrospectCompleted(FeatureCore, true);
}
}
} // Tp
|