Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Latest commit

 

History

History
3140 lines (2618 loc) · 108 KB

seasidecache.cpp

File metadata and controls

3140 lines (2618 loc) · 108 KB
 
Jul 16, 2013
Jul 16, 2013
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
/*
* Copyright (C) 2013 Jolla Mobile <andrew.den.exter@jollamobile.com>
*
* You may use this file under the terms of the BSD license as follows:
*
* "Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Nemo Mobile nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
*/
#include "seasidecache.h"
#include "synchronizelists.h"
Dec 10, 2013
Dec 10, 2013
36
37
38
39
40
#include <qtcontacts-extensions_impl.h>
#include <qcontactstatusflags_impl.h>
#include <contactmanagerengine.h>
#include <private/qcontactmanager_p.h>
Jul 30, 2013
Jul 30, 2013
41
Jul 16, 2013
Jul 16, 2013
42
43
#include <QCoreApplication>
#include <QStandardPaths>
Dec 10, 2013
Dec 10, 2013
44
#include <QDBusConnection>
Jul 16, 2013
Jul 16, 2013
45
46
47
48
49
50
51
52
53
#include <QDir>
#include <QEvent>
#include <QFile>
#include <QContactAvatar>
#include <QContactDetailFilter>
#include <QContactDisplayLabel>
#include <QContactEmailAddress>
#include <QContactFavorite>
Aug 5, 2013
Aug 5, 2013
54
#include <QContactGender>
Jul 16, 2013
Jul 16, 2013
55
56
57
58
59
60
61
#include <QContactName>
#include <QContactNickname>
#include <QContactOnlineAccount>
#include <QContactOrganization>
#include <QContactPhoneNumber>
#include <QContactGlobalPresence>
#include <QContactSyncTarget>
Jan 9, 2014
Jan 9, 2014
62
#include <QContactTimestamp>
Jul 16, 2013
Jul 16, 2013
63
64
65
66
67
68
69
70
#include <QVersitContactExporter>
#include <QVersitContactImporter>
#include <QVersitReader>
#include <QVersitWriter>
#include <QtDebug>
Sep 6, 2013
Sep 6, 2013
71
72
#include <mlocale.h>
Dec 10, 2013
Dec 10, 2013
73
74
75
#include <mce/dbus-names.h>
#include <mce/mode-names.h>
Aug 6, 2013
Aug 6, 2013
76
QTVERSIT_USE_NAMESPACE
Jul 16, 2013
Jul 16, 2013
77
Aug 5, 2013
Aug 5, 2013
78
namespace {
Jul 16, 2013
Jul 16, 2013
79
May 27, 2014
May 27, 2014
80
81
Q_GLOBAL_STATIC(CacheConfiguration, cacheConfig)
Sep 6, 2013
Sep 6, 2013
82
83
ML10N::MLocale mLocale;
Jan 28, 2014
Jan 28, 2014
84
const QString aggregateRelationshipType = QContactRelationship::Aggregates();
Jul 16, 2013
Jul 16, 2013
85
Aug 5, 2013
Aug 5, 2013
86
87
const QString syncTargetLocal = QLatin1String("local");
const QString syncTargetWasLocal = QLatin1String("was_local");
Jul 16, 2013
Jul 16, 2013
88
Jan 15, 2014
Jan 15, 2014
89
90
91
92
93
int getContactNameGroupCount()
{
return mLocale.exemplarCharactersIndex().count();
}
Sep 6, 2013
Sep 6, 2013
94
95
96
97
QStringList getAllContactNameGroups()
{
QStringList groups(mLocale.exemplarCharactersIndex());
groups.append(QString::fromLatin1("#"));
Jul 16, 2013
Jul 16, 2013
98
99
100
return groups;
}
Aug 5, 2013
Aug 5, 2013
101
QString managerName()
Jul 16, 2013
Jul 16, 2013
102
{
Dec 10, 2013
Dec 10, 2013
103
return QString::fromLatin1("org.nemomobile.contacts.sqlite");
Jul 16, 2013
Jul 16, 2013
104
105
}
Dec 10, 2013
Dec 10, 2013
106
107
108
109
110
111
112
113
114
QMap<QString, QString> managerParameters()
{
QMap<QString, QString> rv;
// Report presence changes independently from other contact changes
rv.insert(QString::fromLatin1("mergePresenceChanges"), QString::fromLatin1("false"));
return rv;
}
Q_GLOBAL_STATIC_WITH_ARGS(QContactManager, manager, (managerName(), managerParameters()))
Oct 21, 2013
Oct 21, 2013
115
Jan 28, 2014
Jan 28, 2014
116
typedef QList<QContactDetail::DetailType> DetailList;
Aug 5, 2013
Aug 5, 2013
117
118
template<typename T>
Jan 28, 2014
Jan 28, 2014
119
QContactDetail::DetailType detailType()
Aug 5, 2013
Aug 5, 2013
120
121
122
123
{
return T::Type;
}
Jan 28, 2014
Jan 28, 2014
124
QContactDetail::DetailType detailType(const QContactDetail &detail)
Aug 5, 2013
Aug 5, 2013
125
126
127
128
{
return detail.type();
}
Jul 16, 2013
Jul 16, 2013
129
130
131
132
133
134
template<typename T, typename Filter, typename Field>
void setDetailType(Filter &filter, Field field)
{
filter.setDetailType(T::Type, field);
}
Aug 5, 2013
Aug 5, 2013
135
136
137
138
139
140
141
142
143
144
DetailList detailTypesHint(const QContactFetchHint &hint)
{
return hint.detailTypesHint();
}
void setDetailTypesHint(QContactFetchHint &hint, const DetailList &types)
{
hint.setDetailTypesHint(types);
}
Aug 5, 2013
Aug 5, 2013
145
146
147
148
149
150
151
152
153
154
155
156
QContactFetchHint basicFetchHint()
{
QContactFetchHint fetchHint;
// We generally have no use for these things:
fetchHint.setOptimizationHints(QContactFetchHint::NoRelationships |
QContactFetchHint::NoActionPreferences |
QContactFetchHint::NoBinaryBlobs);
return fetchHint;
}
Dec 10, 2013
Dec 10, 2013
157
158
159
160
161
162
163
164
165
166
QContactFetchHint presenceFetchHint()
{
QContactFetchHint fetchHint(basicFetchHint());
setDetailTypesHint(fetchHint, DetailList() << detailType<QContactPresence>()
<< detailType<QContactGlobalPresence>());
return fetchHint;
}
Jan 9, 2014
Jan 9, 2014
167
DetailList contactsTableDetails()
Aug 5, 2013
Aug 5, 2013
168
169
{
DetailList types;
Jan 9, 2014
Jan 9, 2014
170
171
// These details are reported in every query
Aug 5, 2013
Aug 5, 2013
172
173
174
175
types << detailType<QContactSyncTarget>() <<
detailType<QContactName>() <<
detailType<QContactDisplayLabel>() <<
detailType<QContactFavorite>() <<
Jan 9, 2014
Jan 9, 2014
176
detailType<QContactTimestamp>() <<
Aug 5, 2013
Aug 5, 2013
177
178
179
detailType<QContactGender>() <<
detailType<QContactStatusFlags>();
Jan 9, 2014
Jan 9, 2014
180
181
182
183
184
185
186
187
188
189
return types;
}
QContactFetchHint metadataFetchHint(quint32 fetchTypes = 0)
{
QContactFetchHint fetchHint(basicFetchHint());
// Include all detail types which come from the main contacts table
DetailList types(contactsTableDetails());
Jan 9, 2014
Jan 9, 2014
190
191
192
// Include nickname, as some contacts have no other name
types << detailType<QContactNickname>();
Aug 5, 2013
Aug 5, 2013
193
194
195
196
197
198
199
200
201
if (fetchTypes & SeasideCache::FetchAccountUri) {
types << detailType<QContactOnlineAccount>();
}
if (fetchTypes & SeasideCache::FetchPhoneNumber) {
types << detailType<QContactPhoneNumber>();
}
if (fetchTypes & SeasideCache::FetchEmailAddress) {
types << detailType<QContactEmailAddress>();
}
Jan 9, 2014
Jan 9, 2014
202
203
204
if (fetchTypes & SeasideCache::FetchOrganization) {
types << detailType<QContactOrganization>();
}
Aug 5, 2013
Aug 5, 2013
205
Aug 5, 2013
Aug 5, 2013
206
setDetailTypesHint(fetchHint, types);
Aug 5, 2013
Aug 5, 2013
207
208
209
210
211
212
213
214
return fetchHint;
}
QContactFetchHint onlineFetchHint(quint32 fetchTypes = 0)
{
QContactFetchHint fetchHint(metadataFetchHint(fetchTypes));
// We also need global presence state
Aug 5, 2013
Aug 5, 2013
215
setDetailTypesHint(fetchHint, detailTypesHint(fetchHint) << detailType<QContactGlobalPresence>());
Aug 5, 2013
Aug 5, 2013
216
217
218
219
220
221
222
223
return fetchHint;
}
QContactFetchHint favoriteFetchHint(quint32 fetchTypes = 0)
{
QContactFetchHint fetchHint(onlineFetchHint(fetchTypes));
// We also need avatar info
Aug 5, 2013
Aug 5, 2013
224
setDetailTypesHint(fetchHint, detailTypesHint(fetchHint) << detailType<QContactAvatar>());
Aug 5, 2013
Aug 5, 2013
225
226
227
return fetchHint;
}
Jan 9, 2014
Jan 9, 2014
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
QContactFetchHint extendedMetadataFetchHint(quint32 fetchTypes)
{
QContactFetchHint fetchHint(basicFetchHint());
DetailList types;
// Only query for the specific types we need
if (fetchTypes & SeasideCache::FetchAccountUri) {
types << detailType<QContactOnlineAccount>();
}
if (fetchTypes & SeasideCache::FetchPhoneNumber) {
types << detailType<QContactPhoneNumber>();
}
if (fetchTypes & SeasideCache::FetchEmailAddress) {
types << detailType<QContactEmailAddress>();
}
if (fetchTypes & SeasideCache::FetchOrganization) {
types << detailType<QContactOrganization>();
}
setDetailTypesHint(fetchHint, types);
return fetchHint;
}
Aug 5, 2013
Aug 5, 2013
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
QContactFilter allFilter()
{
return QContactFilter();
}
QContactFilter favoriteFilter()
{
return QContactFavorite::match();
}
QContactFilter nonfavoriteFilter()
{
QContactDetailFilter filter;
setDetailType<QContactFavorite>(filter, QContactFavorite::FieldFavorite);
filter.setMatchFlags(QContactFilter::MatchExactly);
filter.setValue(false);
return filter;
}
QContactFilter onlineFilter()
{
Aug 6, 2013
Aug 6, 2013
274
return QContactStatusFlags::matchFlag(QContactStatusFlags::IsOnline);
Aug 5, 2013
Aug 5, 2013
275
276
277
278
}
QContactFilter aggregateFilter()
{
Sep 2, 2013
Sep 2, 2013
279
280
static const QString aggregate(QString::fromLatin1("aggregate"));
Aug 5, 2013
Aug 5, 2013
281
282
QContactDetailFilter filter;
setDetailType<QContactSyncTarget>(filter, QContactSyncTarget::FieldSyncTarget);
Sep 2, 2013
Sep 2, 2013
283
filter.setValue(aggregate);
Aug 5, 2013
Aug 5, 2013
284
285
286
287
return filter;
}
Aug 30, 2013
Aug 30, 2013
288
289
typedef QPair<QString, QString> StringPair;
Oct 24, 2013
Oct 24, 2013
290
QList<StringPair> addressPairs(const QContactPhoneNumber &phoneNumber)
Aug 30, 2013
Aug 30, 2013
291
{
Oct 24, 2013
Oct 24, 2013
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
QList<StringPair> rv;
const QString normalized(SeasideCache::normalizePhoneNumber(phoneNumber.number()));
if (!normalized.isEmpty()) {
const QChar plus(QChar::fromLatin1('+'));
if (normalized.startsWith(plus)) {
// Also index the complete form of this number
rv.append(qMakePair(QString(), normalized));
}
// Always index the minimized form of the number
const QString minimized(SeasideCache::minimizePhoneNumber(normalized));
rv.append(qMakePair(QString(), minimized));
}
return rv;
Aug 30, 2013
Aug 30, 2013
308
309
310
311
312
313
314
315
316
}
StringPair addressPair(const QContactEmailAddress &emailAddress)
{
return qMakePair(emailAddress.emailAddress().toLower(), QString());
}
StringPair addressPair(const QContactOnlineAccount &account)
{
Oct 15, 2013
Oct 15, 2013
317
StringPair address = qMakePair(account.value<QString>(QContactOnlineAccount__FieldAccountPath), account.accountUri().toLower());
Apr 24, 2014
Apr 24, 2014
318
return !address.first.isEmpty() && !address.second.isEmpty() ? address : StringPair();
Oct 15, 2013
Oct 15, 2013
319
320
321
322
}
bool validAddressPair(const StringPair &address)
{
Apr 24, 2014
Apr 24, 2014
323
return (!address.first.isEmpty() || !address.second.isEmpty());
Aug 30, 2013
Aug 30, 2013
324
325
}
Sep 2, 2013
Sep 2, 2013
326
327
328
329
330
331
332
333
334
335
336
337
338
339
bool ignoreContactForNameGroups(const QContact &contact)
{
static const QString aggregate(QString::fromLatin1("aggregate"));
// Don't include the self contact in name groups
if (SeasideCache::apiId(contact) == SeasideCache::selfContactId()) {
return true;
}
// Also ignore non-aggregate contacts
QContactSyncTarget syncTarget = contact.detail<QContactSyncTarget>();
return (syncTarget.syncTarget() != aggregate);
}
Jan 28, 2014
Jan 28, 2014
340
QList<quint32> internalIds(const QList<QContactId> &ids)
Sep 20, 2013
Sep 20, 2013
341
342
343
344
{
QList<quint32> rv;
rv.reserve(ids.count());
Jan 28, 2014
Jan 28, 2014
345
foreach (const QContactId &id, ids) {
Sep 20, 2013
Sep 20, 2013
346
347
348
349
350
351
rv.append(SeasideCache::internalId(id));
}
return rv;
}
Oct 24, 2013
Oct 24, 2013
352
353
354
355
356
357
358
359
360
361
362
QString::const_iterator firstDtmfChar(QString::const_iterator it, QString::const_iterator end)
{
static const QString dtmfChars(QString::fromLatin1("pPwWxX#*"));
for ( ; it != end; ++it) {
if (dtmfChars.contains(*it))
return it;
}
return end;
}
Oct 24, 2013
Oct 24, 2013
363
364
const int ExactMatch = 100;
Oct 24, 2013
Oct 24, 2013
365
366
367
368
369
370
371
372
373
374
375
376
int matchLength(const QString &lhs, const QString &rhs)
{
if (lhs.isEmpty() || rhs.isEmpty())
return 0;
QString::const_iterator lbegin = lhs.constBegin(), lend = lhs.constEnd();
QString::const_iterator rbegin = rhs.constBegin(), rend = rhs.constEnd();
// Do these numbers contain DTMF elements?
QString::const_iterator ldtmf = firstDtmfChar(lbegin, lend);
QString::const_iterator rdtmf = firstDtmfChar(rbegin, rend);
Oct 24, 2013
Oct 24, 2013
377
378
QString::const_iterator lit, rit;
bool processDtmf = false;
Oct 24, 2013
Oct 24, 2013
379
int matchLength = 0;
Oct 24, 2013
Oct 24, 2013
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
if ((ldtmf != lbegin) && (rdtmf != rbegin)) {
// Start match length calculation at the last non-DTMF digit
lit = ldtmf - 1;
rit = rdtmf - 1;
while (*lit == *rit) {
++matchLength;
--lit;
--rit;
if ((lit == lbegin) || (rit == rbegin)) {
if (*lit == *rit) {
++matchLength;
if ((lit == lbegin) && (rit == rbegin)) {
// We have a complete, exact match - this must be the best match
return ExactMatch;
} else {
// We matched all of one number - continue looking in the DTMF part
processDtmf = true;
}
Oct 24, 2013
Oct 24, 2013
402
}
Oct 24, 2013
Oct 24, 2013
403
break;
Oct 24, 2013
Oct 24, 2013
404
}
Oct 24, 2013
Oct 24, 2013
405
}
Oct 24, 2013
Oct 24, 2013
406
407
408
} else {
// Process the DTMF section for a match
processDtmf = true;
Oct 24, 2013
Oct 24, 2013
409
410
411
412
}
// Have we got a match?
if ((matchLength >= QtContactsSqliteExtensions::DefaultMaximumPhoneNumberCharacters) ||
Oct 24, 2013
Oct 24, 2013
413
processDtmf) {
Oct 24, 2013
Oct 24, 2013
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
// See if the match continues into the DTMF area
QString::const_iterator lit = ldtmf;
QString::const_iterator rit = rdtmf;
for ( ; (lit != lend) && (rit != rend); ++lit, ++rit) {
if ((*lit).toLower() != (*rit).toLower())
break;
++matchLength;
}
}
return matchLength;
}
int bestPhoneNumberMatchLength(const QContact &contact, const QString &match)
{
int bestMatchLength = 0;
foreach (const QContactPhoneNumber& phone, contact.details<QContactPhoneNumber>()) {
bestMatchLength = qMax(bestMatchLength, matchLength(SeasideCache::normalizePhoneNumber(phone.number()), match));
Oct 24, 2013
Oct 24, 2013
433
434
435
if (bestMatchLength == ExactMatch) {
return ExactMatch;
}
Oct 24, 2013
Oct 24, 2013
436
437
438
439
440
}
return bestMatchLength;
}
Aug 5, 2013
Aug 5, 2013
441
442
443
}
SeasideCache *SeasideCache::instancePtr = 0;
Jan 15, 2014
Jan 15, 2014
444
int SeasideCache::contactNameGroupCount = getContactNameGroupCount();
Sep 6, 2013
Sep 6, 2013
445
QStringList SeasideCache::allContactNameGroups = getAllContactNameGroups();
Aug 5, 2013
Aug 5, 2013
446
Oct 21, 2013
Oct 21, 2013
447
448
449
450
451
QContactManager* SeasideCache::manager()
{
return ::manager();
}
Jul 16, 2013
Jul 16, 2013
452
453
454
455
456
SeasideCache* SeasideCache::instance()
{
return instancePtr;
}
Jan 28, 2014
Jan 28, 2014
457
QContactId SeasideCache::apiId(const QContact &contact)
Jul 16, 2013
Jul 16, 2013
458
459
460
461
{
return contact.id();
}
Jan 28, 2014
Jan 28, 2014
462
QContactId SeasideCache::apiId(quint32 iid)
Jul 16, 2013
Jul 16, 2013
463
464
465
466
{
return QtContactsSqliteExtensions::apiContactId(iid);
}
Jan 28, 2014
Jan 28, 2014
467
bool SeasideCache::validId(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
{
return !id.isNull();
}
quint32 SeasideCache::internalId(const QContact &contact)
{
return internalId(contact.id());
}
quint32 SeasideCache::internalId(const QContactId &id)
{
return QtContactsSqliteExtensions::internalContactId(id);
}
SeasideCache::SeasideCache()
Oct 21, 2013
Oct 21, 2013
483
: m_syncFilter(FilterNone)
Jul 16, 2013
Jul 16, 2013
484
485
486
, m_populated(0)
, m_cacheIndex(0)
, m_queryIndex(0)
Sep 19, 2013
Sep 19, 2013
487
488
, m_fetchProcessedCount(0)
, m_fetchByIdProcessedCount(0)
Jul 16, 2013
Jul 16, 2013
489
, m_keepPopulated(false)
Aug 5, 2013
Aug 5, 2013
490
491
, m_populateProgress(Unpopulated)
, m_fetchTypes(0)
Jan 9, 2014
Jan 9, 2014
492
493
, m_extraFetchTypes(0)
, m_dataTypesFetched(0)
Jul 16, 2013
Jul 16, 2013
494
495
496
, m_updatesPending(false)
, m_refreshRequired(false)
, m_contactsUpdated(false)
Dec 10, 2013
Dec 10, 2013
497
, m_displayOff(false)
Aug 5, 2013
Aug 5, 2013
498
, m_activeResolve(0)
Jul 16, 2013
Jul 16, 2013
499
500
501
502
503
{
Q_ASSERT(!instancePtr);
instancePtr = this;
m_timer.start();
Jul 26, 2013
Jul 26, 2013
504
m_fetchPostponed.invalidate();
Jul 16, 2013
Jul 16, 2013
505
May 27, 2014
May 27, 2014
506
507
508
509
510
CacheConfiguration *config(cacheConfig());
connect(config, SIGNAL(displayLabelOrderChanged(CacheConfiguration::DisplayLabelOrder)),
this, SLOT(displayLabelOrderChanged(CacheConfiguration::DisplayLabelOrder)));
connect(config, SIGNAL(sortPropertyChanged(QString)), this, SLOT(sortPropertyChanged(QString)));
connect(config, SIGNAL(groupPropertyChanged(QString)), this, SLOT(groupPropertyChanged(QString)));
Jul 16, 2013
Jul 16, 2013
511
Dec 10, 2013
Dec 10, 2013
512
513
514
515
516
if (!QDBusConnection::systemBus().connect(MCE_SERVICE, MCE_SIGNAL_PATH, MCE_SIGNAL_IF,
MCE_DISPLAY_SIG, this, SLOT(displayStatusChanged(QString)))) {
qWarning() << "Unable to connect to MCE displayStatusChanged signal";
}
Oct 21, 2013
Oct 21, 2013
517
518
QContactManager *mgr(manager());
Dec 10, 2013
Dec 10, 2013
519
520
521
522
523
// The contactsPresenceChanged signal is not exported by QContactManager, so we
// need to find it from the manager's engine object
typedef QtContactsSqliteExtensions::ContactManagerEngine EngineType;
EngineType *cme = dynamic_cast<EngineType *>(QContactManagerData::managerData(mgr)->m_engine);
Oct 21, 2013
Oct 21, 2013
524
525
connect(mgr, SIGNAL(dataChanged()), this, SLOT(updateContacts()));
connect(mgr, SIGNAL(contactsAdded(QList<QContactId>)),
Jul 16, 2013
Jul 16, 2013
526
this, SLOT(contactsAdded(QList<QContactId>)));
Oct 21, 2013
Oct 21, 2013
527
connect(mgr, SIGNAL(contactsChanged(QList<QContactId>)),
Jul 16, 2013
Jul 16, 2013
528
this, SLOT(contactsChanged(QList<QContactId>)));
Dec 10, 2013
Dec 10, 2013
529
530
connect(cme, SIGNAL(contactsPresenceChanged(QList<QContactId>)),
this, SLOT(contactsPresenceChanged(QList<QContactId>)));
Oct 21, 2013
Oct 21, 2013
531
connect(mgr, SIGNAL(contactsRemoved(QList<QContactId>)),
Jul 16, 2013
Jul 16, 2013
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
this, SLOT(contactsRemoved(QList<QContactId>)));
connect(&m_fetchRequest, SIGNAL(resultsAvailable()), this, SLOT(contactsAvailable()));
connect(&m_fetchByIdRequest, SIGNAL(resultsAvailable()), this, SLOT(contactsAvailable()));
connect(&m_contactIdRequest, SIGNAL(resultsAvailable()), this, SLOT(contactIdsAvailable()));
connect(&m_relationshipsFetchRequest, SIGNAL(resultsAvailable()), this, SLOT(relationshipsAvailable()));
connect(&m_fetchRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_fetchByIdRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_contactIdRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_relationshipsFetchRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_removeRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_saveRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_relationshipSaveRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
connect(&m_relationshipRemoveRequest, SIGNAL(stateChanged(QContactAbstractRequest::State)),
this, SLOT(requestStateChanged(QContactAbstractRequest::State)));
Oct 21, 2013
Oct 21, 2013
556
557
558
559
560
561
562
563
m_fetchRequest.setManager(mgr);
m_fetchByIdRequest.setManager(mgr);
m_contactIdRequest.setManager(mgr);
m_relationshipsFetchRequest.setManager(mgr);
m_removeRequest.setManager(mgr);
m_saveRequest.setManager(mgr);
m_relationshipSaveRequest.setManager(mgr);
m_relationshipRemoveRequest.setManager(mgr);
Jul 16, 2013
Jul 16, 2013
564
May 27, 2014
May 27, 2014
565
setSortOrder(sortProperty());
Jul 16, 2013
Jul 16, 2013
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
}
SeasideCache::~SeasideCache()
{
if (instancePtr == this)
instancePtr = 0;
}
void SeasideCache::checkForExpiry()
{
if (instancePtr->m_users.isEmpty()) {
bool unused = true;
for (int i = 0; i < FilterTypesCount; ++i) {
unused &= instancePtr->m_models[i].isEmpty();
}
if (unused) {
instancePtr->m_expiryTimer.start(30000, instancePtr);
}
}
}
Jan 9, 2014
Jan 9, 2014
587
void SeasideCache::registerModel(ListModel *model, FilterType type, FetchDataType requiredTypes, FetchDataType extraTypes)
Jul 16, 2013
Jul 16, 2013
588
589
590
591
592
593
594
595
{
if (!instancePtr) {
new SeasideCache;
} else {
instancePtr->m_expiryTimer.stop();
for (int i = 0; i < FilterTypesCount; ++i)
instancePtr->m_models[i].removeAll(model);
}
Aug 5, 2013
Aug 5, 2013
596
Jul 16, 2013
Jul 16, 2013
597
instancePtr->m_models[type].append(model);
Jan 9, 2014
Jan 9, 2014
598
599
600
601
602
603
instancePtr->keepPopulated(requiredTypes & SeasideCache::FetchTypesMask, extraTypes & SeasideCache::FetchTypesMask);
if (requiredTypes & SeasideCache::FetchTypesMask) {
// If we have filtered models, they will need a contact ID refresh after the cache is populated
instancePtr->m_refreshRequired = true;
}
Jul 16, 2013
Jul 16, 2013
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
}
void SeasideCache::unregisterModel(ListModel *model)
{
for (int i = 0; i < FilterTypesCount; ++i)
instancePtr->m_models[i].removeAll(model);
checkForExpiry();
}
void SeasideCache::registerUser(QObject *user)
{
if (!instancePtr) {
new SeasideCache;
} else {
instancePtr->m_expiryTimer.stop();
}
instancePtr->m_users.insert(user);
}
void SeasideCache::unregisterUser(QObject *user)
{
instancePtr->m_users.remove(user);
checkForExpiry();
}
void SeasideCache::registerNameGroupChangeListener(SeasideNameGroupChangeListener *listener)
{
if (!instancePtr)
new SeasideCache;
instancePtr->m_nameGroupChangeListeners.append(listener);
}
void SeasideCache::unregisterNameGroupChangeListener(SeasideNameGroupChangeListener *listener)
{
if (!instancePtr)
return;
instancePtr->m_nameGroupChangeListeners.removeAll(listener);
}
Aug 6, 2013
Aug 6, 2013
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
void SeasideCache::registerChangeListener(ChangeListener *listener)
{
if (!instancePtr)
new SeasideCache;
instancePtr->m_changeListeners.append(listener);
}
void SeasideCache::unregisterChangeListener(ChangeListener *listener)
{
if (!instancePtr)
return;
instancePtr->m_changeListeners.removeAll(listener);
}
void SeasideCache::unregisterResolveListener(ResolveListener *listener)
{
if (!instancePtr)
return;
// We might have outstanding resolve requests for this listener
if (instancePtr->m_activeResolve && (instancePtr->m_activeResolve->listener == listener)) {
instancePtr->m_activeResolve = 0;
}
QList<ResolveData>::iterator it = instancePtr->m_resolveAddresses.begin();
Aug 30, 2013
Aug 30, 2013
670
while (it != instancePtr->m_resolveAddresses.end()) {
Aug 6, 2013
Aug 6, 2013
671
672
673
674
675
676
if (it->listener == listener) {
it = instancePtr->m_resolveAddresses.erase(it);
} else {
++it;
}
}
Aug 30, 2013
Aug 30, 2013
677
678
679
680
681
682
683
684
685
it = instancePtr->m_unknownAddresses.begin();
while (it != instancePtr->m_unknownAddresses.end()) {
if (it->listener == listener) {
it = instancePtr->m_unknownAddresses.erase(it);
} else {
++it;
}
}
Aug 6, 2013
Aug 6, 2013
686
687
}
Aug 7, 2013
Aug 7, 2013
688
689
690
691
692
693
void SeasideCache::setNameGrouper(SeasideNameGrouper *grouper)
{
if (!instancePtr)
new SeasideCache;
instancePtr->m_nameGrouper.reset(grouper);
Oct 22, 2013
Oct 22, 2013
694
allContactNameGroups = instancePtr->m_nameGrouper->allNameGroups();
Jan 15, 2014
Jan 15, 2014
695
contactNameGroupCount = allContactNameGroups.count();
Oct 22, 2013
Oct 22, 2013
696
697
if (!allContactNameGroups.contains(QLatin1String("#")))
allContactNameGroups << QLatin1String("#");
Aug 7, 2013
Aug 7, 2013
698
699
}
Sep 6, 2013
Sep 6, 2013
700
QString SeasideCache::nameGroup(const CacheItem *cacheItem)
Jul 16, 2013
Jul 16, 2013
701
702
{
if (!cacheItem)
Sep 6, 2013
Sep 6, 2013
703
return QString();
Jul 16, 2013
Jul 16, 2013
704
Aug 16, 2013
Aug 16, 2013
705
706
707
return cacheItem->nameGroup;
}
Sep 6, 2013
Sep 6, 2013
708
QString SeasideCache::determineNameGroup(const CacheItem *cacheItem)
Aug 16, 2013
Aug 16, 2013
709
710
{
if (!cacheItem)
Sep 6, 2013
Sep 6, 2013
711
return QString();
Aug 7, 2013
Aug 7, 2013
712
713
if (!instancePtr->m_nameGrouper.isNull()) {
May 27, 2014
May 27, 2014
714
QString group = instancePtr->m_nameGrouper->nameGroupForContact(cacheItem->contact, groupProperty());
Oct 22, 2013
Oct 22, 2013
715
if (!group.isNull() && allContactNameGroups.contains(group)) {
Aug 7, 2013
Aug 7, 2013
716
return group;
Aug 16, 2013
Aug 16, 2013
717
}
Aug 7, 2013
Aug 7, 2013
718
719
}
Aug 29, 2013
Aug 29, 2013
720
const QContactName name(cacheItem->contact.detail<QContactName>());
May 27, 2014
May 27, 2014
721
const QString nameProperty(groupProperty() == QString::fromLatin1("firstName") ? name.firstName() : name.lastName());
Aug 29, 2013
Aug 29, 2013
722
Sep 6, 2013
Sep 6, 2013
723
QString group;
Aug 29, 2013
Aug 29, 2013
724
if (!nameProperty.isEmpty()) {
Sep 6, 2013
Sep 6, 2013
725
group = mLocale.indexBucket(nameProperty);
Nov 7, 2013
Nov 7, 2013
726
} else if (!cacheItem->displayLabel.isEmpty()) {
Sep 6, 2013
Sep 6, 2013
727
group = mLocale.indexBucket(cacheItem->displayLabel);
Jul 16, 2013
Jul 16, 2013
728
729
}
Jan 15, 2014
Jan 15, 2014
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
if (!group.isEmpty()) {
if (!allContactNameGroups.contains(group)) {
// If this group is some kind of digit, group under '#'
if (mLocale.toLatinNumbers(group.mid(0, 1)).at(0).isDigit()) {
group = QString();
}
}
}
if (group.isEmpty()) {
group = QString::fromLatin1("#");
} else if (!allContactNameGroups.contains(group)) {
// Insert before the '#' group, which is always last, and after the pre-defined groups
const int maxIndex = allContactNameGroups.count() - 1;
int index = qMin(contactNameGroupCount, maxIndex);
for ( ; index < maxIndex; ++index) {
if (group < allContactNameGroups.at(index)) {
break;
}
}
allContactNameGroups.insert(index, group);
Jul 16, 2013
Jul 16, 2013
752
}
Jan 15, 2014
Jan 15, 2014
753
Jul 16, 2013
Jul 16, 2013
754
755
756
return group;
}
Sep 6, 2013
Sep 6, 2013
757
QStringList SeasideCache::allNameGroups()
Jul 16, 2013
Jul 16, 2013
758
{
Sep 6, 2013
Sep 6, 2013
759
760
if (!instancePtr)
new SeasideCache;
Jul 16, 2013
Jul 16, 2013
761
762
763
return allContactNameGroups;
}
Sep 6, 2013
Sep 6, 2013
764
QHash<QString, QSet<quint32> > SeasideCache::nameGroupMembers()
Jul 16, 2013
Jul 16, 2013
765
766
767
{
if (instancePtr)
return instancePtr->m_contactNameGroups;
Sep 6, 2013
Sep 6, 2013
768
return QHash<QString, QSet<quint32> >();
Jul 16, 2013
Jul 16, 2013
769
770
771
772
}
SeasideCache::DisplayLabelOrder SeasideCache::displayLabelOrder()
{
May 27, 2014
May 27, 2014
773
return static_cast<DisplayLabelOrder>(cacheConfig()->displayLabelOrder());
Jul 16, 2013
Jul 16, 2013
774
775
}
Aug 29, 2013
Aug 29, 2013
776
777
QString SeasideCache::sortProperty()
{
May 27, 2014
May 27, 2014
778
return cacheConfig()->sortProperty();
Aug 29, 2013
Aug 29, 2013
779
780
}
Aug 30, 2013
Aug 30, 2013
781
782
QString SeasideCache::groupProperty()
{
May 27, 2014
May 27, 2014
783
return cacheConfig()->groupProperty();
Aug 30, 2013
Aug 30, 2013
784
785
}
Jul 16, 2013
Jul 16, 2013
786
787
788
789
790
791
int SeasideCache::contactId(const QContact &contact)
{
quint32 internal = internalId(contact);
return static_cast<int>(internal);
}
Jan 28, 2014
Jan 28, 2014
792
SeasideCache::CacheItem *SeasideCache::itemById(const QContactId &id, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
793
794
795
796
797
798
799
800
801
802
803
804
805
806
{
if (!validId(id))
return 0;
quint32 iid = internalId(id);
CacheItem *item = 0;
QHash<quint32, CacheItem>::iterator it = instancePtr->m_people.find(iid);
if (it != instancePtr->m_people.end()) {
item = &(*it);
} else {
// Insert a new item into the cache if the one doesn't exist.
item = &(instancePtr->m_people[iid]);
Oct 2, 2013
Oct 2, 2013
807
808
809
item->iid = iid;
item->contactState = ContactAbsent;
Jul 16, 2013
Jul 16, 2013
810
811
812
item->contact.setId(id);
}
Aug 5, 2013
Aug 5, 2013
813
814
if (requireComplete) {
ensureCompletion(item);
Jul 16, 2013
Jul 16, 2013
815
816
817
818
}
return item;
}
Aug 5, 2013
Aug 5, 2013
819
SeasideCache::CacheItem *SeasideCache::itemById(int id, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
820
821
822
823
{
if (id != 0) {
QContactId contactId(apiId(static_cast<quint32>(id)));
if (!contactId.isNull()) {
Aug 5, 2013
Aug 5, 2013
824
return itemById(contactId, requireComplete);
Jul 16, 2013
Jul 16, 2013
825
826
827
828
829
830
}
}
return 0;
}
Jan 28, 2014
Jan 28, 2014
831
SeasideCache::CacheItem *SeasideCache::existingItem(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
832
{
Jul 29, 2013
Jul 29, 2013
833
834
return existingItem(internalId(id));
}
Jul 16, 2013
Jul 16, 2013
835
Jul 29, 2013
Jul 29, 2013
836
837
SeasideCache::CacheItem *SeasideCache::existingItem(quint32 iid)
{
Jul 16, 2013
Jul 16, 2013
838
839
840
841
842
843
QHash<quint32, CacheItem>::iterator it = instancePtr->m_people.find(iid);
return it != instancePtr->m_people.end()
? &(*it)
: 0;
}
Jan 28, 2014
Jan 28, 2014
844
QContact SeasideCache::contactById(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
845
846
847
848
849
{
quint32 iid = internalId(id);
return instancePtr->m_people.value(iid, CacheItem()).contact;
}
Aug 5, 2013
Aug 5, 2013
850
void SeasideCache::ensureCompletion(CacheItem *cacheItem)
Jul 16, 2013
Jul 16, 2013
851
{
Aug 5, 2013
Aug 5, 2013
852
if (cacheItem->contactState < ContactRequested) {
Aug 19, 2013
Aug 19, 2013
853
refreshContact(cacheItem);
Aug 5, 2013
Aug 5, 2013
854
855
856
}
}
Aug 19, 2013
Aug 19, 2013
857
858
859
860
861
862
863
void SeasideCache::refreshContact(CacheItem *cacheItem)
{
cacheItem->contactState = ContactRequested;
instancePtr->m_changedContacts.append(cacheItem->apiId());
instancePtr->fetchContacts();
}
Aug 5, 2013
Aug 5, 2013
864
865
SeasideCache::CacheItem *SeasideCache::itemByPhoneNumber(const QString &number, bool requireComplete)
{
Oct 24, 2013
Oct 24, 2013
866
867
868
const QString normalized(normalizePhoneNumber(number));
if (normalized.isEmpty())
return 0;
Oct 24, 2013
Oct 24, 2013
869
Oct 24, 2013
Oct 24, 2013
870
871
872
873
874
const QChar plus(QChar::fromLatin1('+'));
if (normalized.startsWith(plus)) {
// See if there is a match for the complete form of this number
if (CacheItem *item = instancePtr->itemMatchingPhoneNumber(normalized, normalized, requireComplete)) {
return item;
Oct 24, 2013
Oct 24, 2013
875
876
}
}
Aug 5, 2013
Aug 5, 2013
877
Oct 24, 2013
Oct 24, 2013
878
879
880
881
882
883
884
885
886
const QString minimized(minimizePhoneNumber(normalized));
if (((instancePtr->m_fetchTypes & SeasideCache::FetchPhoneNumber) == 0) &&
!instancePtr->m_resolvedPhoneNumbers.contains(minimized)) {
// We haven't previously queried this number, so there may be more matches than any
// that we already have cached; return 0 to force a query
return 0;
}
return instancePtr->itemMatchingPhoneNumber(minimized, normalized, requireComplete);
Jul 16, 2013
Jul 16, 2013
887
888
}
Aug 5, 2013
Aug 5, 2013
889
SeasideCache::CacheItem *SeasideCache::itemByEmailAddress(const QString &email, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
890
{
Apr 10, 2014
Apr 10, 2014
891
892
893
if (email.trimmed().isEmpty())
return 0;
Jul 16, 2013
Jul 16, 2013
894
895
QHash<QString, quint32>::const_iterator it = instancePtr->m_emailAddressIds.find(email.toLower());
if (it != instancePtr->m_emailAddressIds.end())
Aug 5, 2013
Aug 5, 2013
896
897
return itemById(*it, requireComplete);
Jul 16, 2013
Jul 16, 2013
898
899
900
return 0;
}
Aug 5, 2013
Aug 5, 2013
901
902
SeasideCache::CacheItem *SeasideCache::itemByOnlineAccount(const QString &localUid, const QString &remoteUid, bool requireComplete)
{
Apr 10, 2014
Apr 10, 2014
903
904
905
if (localUid.trimmed().isEmpty() || remoteUid.trimmed().isEmpty())
return 0;
Aug 5, 2013
Aug 5, 2013
906
907
908
909
910
911
912
913
914
915
916
917
918
919
QPair<QString, QString> address = qMakePair(localUid, remoteUid.toLower());
QHash<QPair<QString, QString>, quint32>::const_iterator it = instancePtr->m_onlineAccountIds.find(address);
if (it != instancePtr->m_onlineAccountIds.end())
return itemById(*it, requireComplete);
return 0;
}
SeasideCache::CacheItem *SeasideCache::resolvePhoneNumber(ResolveListener *listener, const QString &number, bool requireComplete)
{
CacheItem *item = itemByPhoneNumber(number, requireComplete);
if (!item) {
instancePtr->resolveAddress(listener, QString(), number, requireComplete);
Aug 6, 2013
Aug 6, 2013
920
921
} else if (requireComplete) {
ensureCompletion(item);
Aug 5, 2013
Aug 5, 2013
922
923
924
925
926
927
928
929
930
931
}
return item;
}
SeasideCache::CacheItem *SeasideCache::resolveEmailAddress(ResolveListener *listener, const QString &address, bool requireComplete)
{
CacheItem *item = itemByEmailAddress(address, requireComplete);
if (!item) {
instancePtr->resolveAddress(listener, address, QString(), requireComplete);
Aug 6, 2013
Aug 6, 2013
932
933
} else if (requireComplete) {
ensureCompletion(item);
Aug 5, 2013
Aug 5, 2013
934
935
936
937
938
939
940
941
942
}
return item;
}
SeasideCache::CacheItem *SeasideCache::resolveOnlineAccount(ResolveListener *listener, const QString &localUid, const QString &remoteUid, bool requireComplete)
{
CacheItem *item = itemByOnlineAccount(localUid, remoteUid, requireComplete);
if (!item) {
instancePtr->resolveAddress(listener, localUid, remoteUid, requireComplete);
Aug 6, 2013
Aug 6, 2013
943
944
} else if (requireComplete) {
ensureCompletion(item);
Aug 5, 2013
Aug 5, 2013
945
946
947
948
}
return item;
}
Jan 28, 2014
Jan 28, 2014
949
QContactId SeasideCache::selfContactId()
Jul 16, 2013
Jul 16, 2013
950
{
Oct 21, 2013
Oct 21, 2013
951
return manager()->selfContactId();
Jul 16, 2013
Jul 16, 2013
952
953
954
955
}
void SeasideCache::requestUpdate()
{
Nov 5, 2013
Nov 5, 2013
956
if (!m_updatesPending) {
Jul 16, 2013
Jul 16, 2013
957
QCoreApplication::postEvent(this, new QEvent(QEvent::UpdateRequest));
Nov 5, 2013
Nov 5, 2013
958
959
m_updatesPending = true;
}
Jul 16, 2013
Jul 16, 2013
960
961
962
963
}
bool SeasideCache::saveContact(const QContact &contact)
{
Jan 28, 2014
Jan 28, 2014
964
QContactId id = apiId(contact);
Jul 16, 2013
Jul 16, 2013
965
966
if (validId(id)) {
instancePtr->m_contactsToSave[id] = contact;
Sep 20, 2013
Sep 20, 2013
967
instancePtr->contactDataChanged(internalId(id));
Jul 16, 2013
Jul 16, 2013
968
969
970
971
972
973
974
975
976
} else {
instancePtr->m_contactsToCreate.append(contact);
}
instancePtr->requestUpdate();
return true;
}
Sep 20, 2013
Sep 20, 2013
977
void SeasideCache::contactDataChanged(quint32 iid)
Jul 16, 2013
Jul 16, 2013
978
{
Sep 20, 2013
Sep 20, 2013
979
980
981
instancePtr->contactDataChanged(iid, FilterFavorites);
instancePtr->contactDataChanged(iid, FilterOnline);
instancePtr->contactDataChanged(iid, FilterAll);
Aug 5, 2013
Aug 5, 2013
982
}
Jul 16, 2013
Jul 16, 2013
983
Sep 20, 2013
Sep 20, 2013
984
void SeasideCache::contactDataChanged(quint32 iid, FilterType filter)
Aug 5, 2013
Aug 5, 2013
985
{
Sep 20, 2013
Sep 20, 2013
986
int row = contactIndex(iid, filter);
Aug 5, 2013
Aug 5, 2013
987
988
989
990
991
992
if (row != -1) {
QList<ListModel *> &models = m_models[filter];
for (int i = 0; i < models.count(); ++i) {
models.at(i)->sourceDataChanged(row, row);
}
}
Jul 16, 2013
Jul 16, 2013
993
994
}
Jul 19, 2013
Jul 19, 2013
995
bool SeasideCache::removeContact(const QContact &contact)
Jul 16, 2013
Jul 16, 2013
996
{
Jan 28, 2014
Jan 28, 2014
997
QContactId id = apiId(contact);
Jul 29, 2013
Jul 29, 2013
998
999
if (!validId(id))
return false;
Jul 16, 2013
Jul 16, 2013
1000