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

Latest commit

 

History

History
3429 lines (2871 loc) · 120 KB

seasidecache.cpp

File metadata and controls

3429 lines (2871 loc) · 120 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 31, 2014
Jul 31, 2014
85
const QString isNotRelationshipType = QString::fromLatin1("IsNot");
Jul 16, 2013
Jul 16, 2013
86
Aug 5, 2013
Aug 5, 2013
87
88
const QString syncTargetLocal = QLatin1String("local");
const QString syncTargetWasLocal = QLatin1String("was_local");
Jul 16, 2013
Jul 16, 2013
89
Jan 15, 2014
Jan 15, 2014
90
91
92
93
94
int getContactNameGroupCount()
{
return mLocale.exemplarCharactersIndex().count();
}
Sep 6, 2013
Sep 6, 2013
95
96
97
98
QStringList getAllContactNameGroups()
{
QStringList groups(mLocale.exemplarCharactersIndex());
groups.append(QString::fromLatin1("#"));
Jul 16, 2013
Jul 16, 2013
99
100
101
return groups;
}
Mar 5, 2015
Mar 5, 2015
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
// Find the script that all letters in the name belong to, else yield Unknown
QChar::Script nameScript(const QString &name)
{
QChar::Script script(QChar::Script_Unknown);
if (!name.isEmpty()) {
QString::const_iterator it = name.begin(), end = name.end();
for ( ; it != end; ++it) {
const QChar::Category charCategory((*it).category());
if (charCategory >= QChar::Letter_Uppercase && charCategory <= QChar::Letter_Other) {
const QChar::Script charScript((*it).script());
if (script == QChar::Script_Unknown) {
script = charScript;
} else if (charScript != script) {
return QChar::Script_Unknown;
}
}
}
}
return script;
}
QChar::Script nameScript(const QString &firstName, const QString &lastName)
{
if (firstName.isEmpty()) {
return nameScript(lastName);
} else if (lastName.isEmpty()) {
return nameScript(firstName);
}
QChar::Script firstScript(nameScript(firstName));
if (firstScript != QChar::Script_Unknown) {
QChar::Script lastScript(nameScript(lastName));
if (lastScript == firstScript) {
return lastScript;
}
}
return QChar::Script_Unknown;
}
bool nameScriptImpliesFamilyFirst(const QString &firstName, const QString &lastName)
{
switch (nameScript(firstName, lastName)) {
// These scripts are used by cultures that conform to the family-name-first nameing convention:
case QChar::Script_Han:
case QChar::Script_Lao:
case QChar::Script_Hangul:
case QChar::Script_Khmer:
case QChar::Script_Mongolian:
case QChar::Script_Hiragana:
case QChar::Script_Katakana:
case QChar::Script_Bopomofo:
case QChar::Script_Yi:
return true;
default:
return false;
}
}
Aug 5, 2013
Aug 5, 2013
163
QString managerName()
Jul 16, 2013
Jul 16, 2013
164
{
Dec 10, 2013
Dec 10, 2013
165
return QString::fromLatin1("org.nemomobile.contacts.sqlite");
Jul 16, 2013
Jul 16, 2013
166
167
}
Dec 10, 2013
Dec 10, 2013
168
169
170
171
172
QMap<QString, QString> managerParameters()
{
QMap<QString, QString> rv;
// Report presence changes independently from other contact changes
rv.insert(QString::fromLatin1("mergePresenceChanges"), QString::fromLatin1("false"));
Apr 8, 2015
Apr 8, 2015
173
174
175
if (!qgetenv("LIBCONTACTS_TEST_MODE").isEmpty()) {
rv.insert(QString::fromLatin1("autoTest"), QString::fromLatin1("true"));
}
Dec 10, 2013
Dec 10, 2013
176
177
178
179
return rv;
}
Q_GLOBAL_STATIC_WITH_ARGS(QContactManager, manager, (managerName(), managerParameters()))
Oct 21, 2013
Oct 21, 2013
180
Jan 28, 2014
Jan 28, 2014
181
typedef QList<QContactDetail::DetailType> DetailList;
Aug 5, 2013
Aug 5, 2013
182
183
template<typename T>
Jan 28, 2014
Jan 28, 2014
184
QContactDetail::DetailType detailType()
Aug 5, 2013
Aug 5, 2013
185
186
187
188
{
return T::Type;
}
Jan 28, 2014
Jan 28, 2014
189
QContactDetail::DetailType detailType(const QContactDetail &detail)
Aug 5, 2013
Aug 5, 2013
190
191
192
193
{
return detail.type();
}
Jul 16, 2013
Jul 16, 2013
194
195
196
197
198
199
template<typename T, typename Filter, typename Field>
void setDetailType(Filter &filter, Field field)
{
filter.setDetailType(T::Type, field);
}
Aug 5, 2013
Aug 5, 2013
200
201
202
203
204
205
206
207
208
209
DetailList detailTypesHint(const QContactFetchHint &hint)
{
return hint.detailTypesHint();
}
void setDetailTypesHint(QContactFetchHint &hint, const DetailList &types)
{
hint.setDetailTypesHint(types);
}
Aug 5, 2013
Aug 5, 2013
210
211
212
213
214
215
216
217
218
219
220
221
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
222
223
224
225
226
QContactFetchHint presenceFetchHint()
{
QContactFetchHint fetchHint(basicFetchHint());
setDetailTypesHint(fetchHint, DetailList() << detailType<QContactPresence>()
Jun 19, 2014
Jun 19, 2014
227
228
<< detailType<QContactGlobalPresence>()
<< detailType<QContactOnlineAccount>());
Dec 10, 2013
Dec 10, 2013
229
230
231
232
return fetchHint;
}
Jan 9, 2014
Jan 9, 2014
233
DetailList contactsTableDetails()
Aug 5, 2013
Aug 5, 2013
234
235
{
DetailList types;
Jan 9, 2014
Jan 9, 2014
236
237
// These details are reported in every query
Aug 5, 2013
Aug 5, 2013
238
239
240
241
types << detailType<QContactSyncTarget>() <<
detailType<QContactName>() <<
detailType<QContactDisplayLabel>() <<
detailType<QContactFavorite>() <<
Jan 9, 2014
Jan 9, 2014
242
detailType<QContactTimestamp>() <<
Aug 5, 2013
Aug 5, 2013
243
244
245
detailType<QContactGender>() <<
detailType<QContactStatusFlags>();
Jan 9, 2014
Jan 9, 2014
246
247
248
249
250
251
252
253
254
255
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
256
257
258
// Include nickname, as some contacts have no other name
types << detailType<QContactNickname>();
Aug 5, 2013
Aug 5, 2013
259
260
261
262
263
264
265
266
267
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
268
269
270
if (fetchTypes & SeasideCache::FetchOrganization) {
types << detailType<QContactOrganization>();
}
Aug 5, 2013
Aug 5, 2013
271
Aug 5, 2013
Aug 5, 2013
272
setDetailTypesHint(fetchHint, types);
Aug 5, 2013
Aug 5, 2013
273
274
275
276
277
278
279
280
return fetchHint;
}
QContactFetchHint onlineFetchHint(quint32 fetchTypes = 0)
{
QContactFetchHint fetchHint(metadataFetchHint(fetchTypes));
// We also need global presence state
Aug 5, 2013
Aug 5, 2013
281
setDetailTypesHint(fetchHint, detailTypesHint(fetchHint) << detailType<QContactGlobalPresence>());
Aug 5, 2013
Aug 5, 2013
282
283
284
285
286
287
288
289
return fetchHint;
}
QContactFetchHint favoriteFetchHint(quint32 fetchTypes = 0)
{
QContactFetchHint fetchHint(onlineFetchHint(fetchTypes));
// We also need avatar info
Aug 5, 2013
Aug 5, 2013
290
setDetailTypesHint(fetchHint, detailTypesHint(fetchHint) << detailType<QContactAvatar>());
Aug 5, 2013
Aug 5, 2013
291
292
293
return fetchHint;
}
Jan 9, 2014
Jan 9, 2014
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
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
340
return QContactStatusFlags::matchFlag(QContactStatusFlags::IsOnline);
Aug 5, 2013
Aug 5, 2013
341
342
343
344
}
QContactFilter aggregateFilter()
{
Sep 2, 2013
Sep 2, 2013
345
346
static const QString aggregate(QString::fromLatin1("aggregate"));
Aug 5, 2013
Aug 5, 2013
347
348
QContactDetailFilter filter;
setDetailType<QContactSyncTarget>(filter, QContactSyncTarget::FieldSyncTarget);
Sep 2, 2013
Sep 2, 2013
349
filter.setValue(aggregate);
Aug 5, 2013
Aug 5, 2013
350
351
352
353
return filter;
}
Aug 30, 2013
Aug 30, 2013
354
355
typedef QPair<QString, QString> StringPair;
Oct 24, 2013
Oct 24, 2013
356
QList<StringPair> addressPairs(const QContactPhoneNumber &phoneNumber)
Aug 30, 2013
Aug 30, 2013
357
{
Oct 24, 2013
Oct 24, 2013
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
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
374
375
376
377
378
379
380
381
382
}
StringPair addressPair(const QContactEmailAddress &emailAddress)
{
return qMakePair(emailAddress.emailAddress().toLower(), QString());
}
StringPair addressPair(const QContactOnlineAccount &account)
{
Oct 15, 2013
Oct 15, 2013
383
StringPair address = qMakePair(account.value<QString>(QContactOnlineAccount__FieldAccountPath), account.accountUri().toLower());
Apr 24, 2014
Apr 24, 2014
384
return !address.first.isEmpty() && !address.second.isEmpty() ? address : StringPair();
Oct 15, 2013
Oct 15, 2013
385
386
387
388
}
bool validAddressPair(const StringPair &address)
{
Apr 24, 2014
Apr 24, 2014
389
return (!address.first.isEmpty() || !address.second.isEmpty());
Aug 30, 2013
Aug 30, 2013
390
391
}
Sep 2, 2013
Sep 2, 2013
392
393
394
395
396
397
398
399
400
401
402
403
404
405
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
406
QList<quint32> internalIds(const QList<QContactId> &ids)
Sep 20, 2013
Sep 20, 2013
407
408
409
410
{
QList<quint32> rv;
rv.reserve(ids.count());
Jan 28, 2014
Jan 28, 2014
411
foreach (const QContactId &id, ids) {
Sep 20, 2013
Sep 20, 2013
412
413
414
415
416
417
rv.append(SeasideCache::internalId(id));
}
return rv;
}
Oct 24, 2013
Oct 24, 2013
418
419
420
421
422
423
424
425
426
427
428
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
429
430
const int ExactMatch = 100;
Oct 24, 2013
Oct 24, 2013
431
432
433
434
435
436
437
438
439
440
441
442
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
443
444
QString::const_iterator lit, rit;
bool processDtmf = false;
Oct 24, 2013
Oct 24, 2013
445
int matchLength = 0;
Oct 24, 2013
Oct 24, 2013
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
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
468
}
Oct 24, 2013
Oct 24, 2013
469
break;
Oct 24, 2013
Oct 24, 2013
470
}
Oct 24, 2013
Oct 24, 2013
471
}
Oct 24, 2013
Oct 24, 2013
472
473
474
} else {
// Process the DTMF section for a match
processDtmf = true;
Oct 24, 2013
Oct 24, 2013
475
476
477
478
}
// Have we got a match?
if ((matchLength >= QtContactsSqliteExtensions::DefaultMaximumPhoneNumberCharacters) ||
Oct 24, 2013
Oct 24, 2013
479
processDtmf) {
Oct 24, 2013
Oct 24, 2013
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
// 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
499
500
501
if (bestMatchLength == ExactMatch) {
return ExactMatch;
}
Oct 24, 2013
Oct 24, 2013
502
503
504
505
506
}
return bestMatchLength;
}
Aug 5, 2013
Aug 5, 2013
507
508
509
}
SeasideCache *SeasideCache::instancePtr = 0;
Jan 15, 2014
Jan 15, 2014
510
int SeasideCache::contactNameGroupCount = getContactNameGroupCount();
Sep 6, 2013
Sep 6, 2013
511
QStringList SeasideCache::allContactNameGroups = getAllContactNameGroups();
Oct 10, 2016
Oct 10, 2016
512
513
QTranslator *SeasideCache::engEnTranslator = 0;
QTranslator *SeasideCache::translator = 0;
Aug 5, 2013
Aug 5, 2013
514
Oct 21, 2013
Oct 21, 2013
515
516
517
518
519
QContactManager* SeasideCache::manager()
{
return ::manager();
}
Jul 16, 2013
Jul 16, 2013
520
521
SeasideCache* SeasideCache::instance()
{
Mar 20, 2016
Mar 20, 2016
522
523
524
if (!instancePtr) {
instancePtr = new SeasideCache;
}
Jul 16, 2013
Jul 16, 2013
525
526
527
return instancePtr;
}
Jan 28, 2014
Jan 28, 2014
528
QContactId SeasideCache::apiId(const QContact &contact)
Jul 16, 2013
Jul 16, 2013
529
530
531
532
{
return contact.id();
}
Jan 28, 2014
Jan 28, 2014
533
QContactId SeasideCache::apiId(quint32 iid)
Jul 16, 2013
Jul 16, 2013
534
535
536
537
{
return QtContactsSqliteExtensions::apiContactId(iid);
}
Jan 28, 2014
Jan 28, 2014
538
bool SeasideCache::validId(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
{
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
554
: m_syncFilter(FilterNone)
Jul 16, 2013
Jul 16, 2013
555
556
557
, m_populated(0)
, m_cacheIndex(0)
, m_queryIndex(0)
Sep 19, 2013
Sep 19, 2013
558
559
, m_fetchProcessedCount(0)
, m_fetchByIdProcessedCount(0)
Jul 16, 2013
Jul 16, 2013
560
, m_keepPopulated(false)
Aug 5, 2013
Aug 5, 2013
561
, m_populateProgress(Unpopulated)
Oct 15, 2014
Oct 15, 2014
562
, m_populating(0)
Aug 5, 2013
Aug 5, 2013
563
, m_fetchTypes(0)
Jan 9, 2014
Jan 9, 2014
564
565
, m_extraFetchTypes(0)
, m_dataTypesFetched(0)
Jul 16, 2013
Jul 16, 2013
566
567
568
, m_updatesPending(false)
, m_refreshRequired(false)
, m_contactsUpdated(false)
Dec 10, 2013
Dec 10, 2013
569
, m_displayOff(false)
Jul 16, 2013
Jul 16, 2013
570
571
{
m_timer.start();
Jul 26, 2013
Jul 26, 2013
572
m_fetchPostponed.invalidate();
Jul 16, 2013
Jul 16, 2013
573
May 27, 2014
May 27, 2014
574
575
576
577
578
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
579
Aug 19, 2015
Aug 19, 2015
580
581
582
583
584
585
586
// Is this a GUI application? If so, we want to defer some processing when the display is off
if (qApp && qApp->property("applicationDisplayName").isValid()) {
// Only QGuiApplication has this property
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";
}
Dec 10, 2013
Dec 10, 2013
587
588
}
Oct 21, 2013
Oct 21, 2013
589
590
QContactManager *mgr(manager());
Dec 10, 2013
Dec 10, 2013
591
592
593
594
595
// 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
596
597
connect(mgr, SIGNAL(dataChanged()), this, SLOT(updateContacts()));
connect(mgr, SIGNAL(contactsAdded(QList<QContactId>)),
Jul 16, 2013
Jul 16, 2013
598
this, SLOT(contactsAdded(QList<QContactId>)));
Oct 21, 2013
Oct 21, 2013
599
connect(mgr, SIGNAL(contactsChanged(QList<QContactId>)),
Jul 16, 2013
Jul 16, 2013
600
this, SLOT(contactsChanged(QList<QContactId>)));
Dec 10, 2013
Dec 10, 2013
601
602
connect(cme, SIGNAL(contactsPresenceChanged(QList<QContactId>)),
this, SLOT(contactsPresenceChanged(QList<QContactId>)));
Oct 21, 2013
Oct 21, 2013
603
connect(mgr, SIGNAL(contactsRemoved(QList<QContactId>)),
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
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
628
629
630
631
632
633
634
635
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
636
May 27, 2014
May 27, 2014
637
setSortOrder(sortProperty());
Jul 16, 2013
Jul 16, 2013
638
639
640
641
642
643
644
645
646
647
}
SeasideCache::~SeasideCache()
{
if (instancePtr == this)
instancePtr = 0;
}
void SeasideCache::checkForExpiry()
{
Aug 26, 2015
Aug 26, 2015
648
if (instancePtr->m_users.isEmpty() && !QCoreApplication::closingDown()) {
Jul 16, 2013
Jul 16, 2013
649
650
651
652
653
654
655
656
657
658
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
659
void SeasideCache::registerModel(ListModel *model, FilterType type, FetchDataType requiredTypes, FetchDataType extraTypes)
Jul 16, 2013
Jul 16, 2013
660
{
Mar 20, 2016
Mar 20, 2016
661
662
663
664
665
666
// Ensure the cache has been instantiated
instance();
instancePtr->m_expiryTimer.stop();
for (int i = 0; i < FilterTypesCount; ++i)
instancePtr->m_models[i].removeAll(model);
Aug 5, 2013
Aug 5, 2013
667
Jul 16, 2013
Jul 16, 2013
668
instancePtr->m_models[type].append(model);
Jan 9, 2014
Jan 9, 2014
669
670
671
672
673
674
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
675
676
677
678
679
680
681
682
683
684
685
686
}
void SeasideCache::unregisterModel(ListModel *model)
{
for (int i = 0; i < FilterTypesCount; ++i)
instancePtr->m_models[i].removeAll(model);
checkForExpiry();
}
void SeasideCache::registerUser(QObject *user)
{
Mar 20, 2016
Mar 20, 2016
687
688
689
690
// Ensure the cache has been instantiated
instance();
instancePtr->m_expiryTimer.stop();
Jul 16, 2013
Jul 16, 2013
691
692
693
694
695
696
697
698
699
700
701
702
instancePtr->m_users.insert(user);
}
void SeasideCache::unregisterUser(QObject *user)
{
instancePtr->m_users.remove(user);
checkForExpiry();
}
void SeasideCache::registerNameGroupChangeListener(SeasideNameGroupChangeListener *listener)
{
Mar 20, 2016
Mar 20, 2016
703
704
705
// Ensure the cache has been instantiated
instance();
Jul 16, 2013
Jul 16, 2013
706
707
708
709
710
711
712
713
714
715
instancePtr->m_nameGroupChangeListeners.append(listener);
}
void SeasideCache::unregisterNameGroupChangeListener(SeasideNameGroupChangeListener *listener)
{
if (!instancePtr)
return;
instancePtr->m_nameGroupChangeListeners.removeAll(listener);
}
Aug 6, 2013
Aug 6, 2013
716
717
void SeasideCache::registerChangeListener(ChangeListener *listener)
{
Mar 20, 2016
Mar 20, 2016
718
719
720
// Ensure the cache has been instantiated
instance();
Aug 6, 2013
Aug 6, 2013
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
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;
Oct 21, 2014
Oct 21, 2014
736
QHash<QContactFetchRequest *, ResolveData>::iterator it = instancePtr->m_resolveAddresses.begin();
Aug 30, 2013
Aug 30, 2013
737
while (it != instancePtr->m_resolveAddresses.end()) {
Oct 21, 2014
Oct 21, 2014
738
739
740
if (it.value().listener == listener) {
it.key()->cancel();
delete it.key();
Aug 6, 2013
Aug 6, 2013
741
742
743
744
745
it = instancePtr->m_resolveAddresses.erase(it);
} else {
++it;
}
}
Aug 30, 2013
Aug 30, 2013
746
Oct 21, 2014
Oct 21, 2014
747
748
749
750
QList<ResolveData>::iterator it2 = instancePtr->m_unknownAddresses.begin();
while (it2 != instancePtr->m_unknownAddresses.end()) {
if (it2->listener == listener) {
it2 = instancePtr->m_unknownAddresses.erase(it2);
Aug 30, 2013
Aug 30, 2013
751
} else {
Oct 21, 2014
Oct 21, 2014
752
++it2;
Aug 30, 2013
Aug 30, 2013
753
754
}
}
Feb 4, 2015
Feb 4, 2015
755
756
757
758
759
760
761
762
763
QList<ResolveData>::iterator it3 = instancePtr->m_unknownResolveAddresses.begin();
while (it3 != instancePtr->m_unknownResolveAddresses.end()) {
if (it3->listener == listener) {
it3 = instancePtr->m_unknownResolveAddresses.erase(it3);
} else {
++it3;
}
}
Feb 12, 2015
Feb 12, 2015
764
765
766
767
768
769
770
771
772
QSet<ResolveData>::iterator it4 = instancePtr->m_pendingResolve.begin();
while (it4 != instancePtr->m_pendingResolve.end()) {
if (it4->listener == listener) {
it4 = instancePtr->m_pendingResolve.erase(it4);
} else {
++it4;
}
}
Aug 6, 2013
Aug 6, 2013
773
774
}
Aug 7, 2013
Aug 7, 2013
775
776
void SeasideCache::setNameGrouper(SeasideNameGrouper *grouper)
{
Mar 20, 2016
Mar 20, 2016
777
778
779
// Ensure the cache has been instantiated
instance();
Aug 7, 2013
Aug 7, 2013
780
781
instancePtr->m_nameGrouper.reset(grouper);
Oct 22, 2013
Oct 22, 2013
782
allContactNameGroups = instancePtr->m_nameGrouper->allNameGroups();
Jan 15, 2014
Jan 15, 2014
783
contactNameGroupCount = allContactNameGroups.count();
Oct 22, 2013
Oct 22, 2013
784
785
if (!allContactNameGroups.contains(QLatin1String("#")))
allContactNameGroups << QLatin1String("#");
Aug 7, 2013
Aug 7, 2013
786
787
}
Sep 6, 2013
Sep 6, 2013
788
QString SeasideCache::nameGroup(const CacheItem *cacheItem)
Jul 16, 2013
Jul 16, 2013
789
790
{
if (!cacheItem)
Sep 6, 2013
Sep 6, 2013
791
return QString();
Jul 16, 2013
Jul 16, 2013
792
Aug 16, 2013
Aug 16, 2013
793
794
795
return cacheItem->nameGroup;
}
Sep 6, 2013
Sep 6, 2013
796
QString SeasideCache::determineNameGroup(const CacheItem *cacheItem)
Aug 16, 2013
Aug 16, 2013
797
798
{
if (!cacheItem)
Sep 6, 2013
Sep 6, 2013
799
return QString();
Aug 7, 2013
Aug 7, 2013
800
801
if (!instancePtr->m_nameGrouper.isNull()) {
May 27, 2014
May 27, 2014
802
QString group = instancePtr->m_nameGrouper->nameGroupForContact(cacheItem->contact, groupProperty());
Oct 22, 2013
Oct 22, 2013
803
if (!group.isNull() && allContactNameGroups.contains(group)) {
Aug 7, 2013
Aug 7, 2013
804
return group;
Aug 16, 2013
Aug 16, 2013
805
}
Aug 7, 2013
Aug 7, 2013
806
807
}
Aug 29, 2013
Aug 29, 2013
808
const QContactName name(cacheItem->contact.detail<QContactName>());
May 27, 2014
May 27, 2014
809
const QString nameProperty(groupProperty() == QString::fromLatin1("firstName") ? name.firstName() : name.lastName());
Aug 29, 2013
Aug 29, 2013
810
Sep 6, 2013
Sep 6, 2013
811
QString group;
Aug 29, 2013
Aug 29, 2013
812
if (!nameProperty.isEmpty()) {
Sep 6, 2013
Sep 6, 2013
813
group = mLocale.indexBucket(nameProperty);
Nov 7, 2013
Nov 7, 2013
814
} else if (!cacheItem->displayLabel.isEmpty()) {
Sep 6, 2013
Sep 6, 2013
815
group = mLocale.indexBucket(cacheItem->displayLabel);
Jul 16, 2013
Jul 16, 2013
816
817
}
Jan 15, 2014
Jan 15, 2014
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
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
840
}
Jan 15, 2014
Jan 15, 2014
841
Jul 16, 2013
Jul 16, 2013
842
843
844
return group;
}
Sep 6, 2013
Sep 6, 2013
845
QStringList SeasideCache::allNameGroups()
Jul 16, 2013
Jul 16, 2013
846
{
Mar 20, 2016
Mar 20, 2016
847
848
849
// Ensure the cache has been instantiated
instance();
Jul 16, 2013
Jul 16, 2013
850
851
852
return allContactNameGroups;
}
Sep 6, 2013
Sep 6, 2013
853
QHash<QString, QSet<quint32> > SeasideCache::nameGroupMembers()
Jul 16, 2013
Jul 16, 2013
854
855
856
{
if (instancePtr)
return instancePtr->m_contactNameGroups;
Sep 6, 2013
Sep 6, 2013
857
return QHash<QString, QSet<quint32> >();
Jul 16, 2013
Jul 16, 2013
858
859
860
861
}
SeasideCache::DisplayLabelOrder SeasideCache::displayLabelOrder()
{
May 27, 2014
May 27, 2014
862
return static_cast<DisplayLabelOrder>(cacheConfig()->displayLabelOrder());
Jul 16, 2013
Jul 16, 2013
863
864
}
Aug 29, 2013
Aug 29, 2013
865
866
QString SeasideCache::sortProperty()
{
May 27, 2014
May 27, 2014
867
return cacheConfig()->sortProperty();
Aug 29, 2013
Aug 29, 2013
868
869
}
Aug 30, 2013
Aug 30, 2013
870
871
QString SeasideCache::groupProperty()
{
May 27, 2014
May 27, 2014
872
return cacheConfig()->groupProperty();
Aug 30, 2013
Aug 30, 2013
873
874
}
Jul 16, 2013
Jul 16, 2013
875
876
877
878
879
880
int SeasideCache::contactId(const QContact &contact)
{
quint32 internal = internalId(contact);
return static_cast<int>(internal);
}
Jan 28, 2014
Jan 28, 2014
881
SeasideCache::CacheItem *SeasideCache::itemById(const QContactId &id, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
882
883
884
885
886
887
888
889
890
891
892
893
894
895
{
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
896
897
898
item->iid = iid;
item->contactState = ContactAbsent;
Jul 16, 2013
Jul 16, 2013
899
900
901
item->contact.setId(id);
}
Aug 5, 2013
Aug 5, 2013
902
903
if (requireComplete) {
ensureCompletion(item);
Jul 16, 2013
Jul 16, 2013
904
905
906
907
}
return item;
}
Aug 5, 2013
Aug 5, 2013
908
SeasideCache::CacheItem *SeasideCache::itemById(int id, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
909
910
911
912
{
if (id != 0) {
QContactId contactId(apiId(static_cast<quint32>(id)));
if (!contactId.isNull()) {
Aug 5, 2013
Aug 5, 2013
913
return itemById(contactId, requireComplete);
Jul 16, 2013
Jul 16, 2013
914
915
916
917
918
919
}
}
return 0;
}
Jan 28, 2014
Jan 28, 2014
920
SeasideCache::CacheItem *SeasideCache::existingItem(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
921
{
Jul 29, 2013
Jul 29, 2013
922
923
return existingItem(internalId(id));
}
Jul 16, 2013
Jul 16, 2013
924
Jul 29, 2013
Jul 29, 2013
925
926
SeasideCache::CacheItem *SeasideCache::existingItem(quint32 iid)
{
Jul 16, 2013
Jul 16, 2013
927
928
929
930
931
932
QHash<quint32, CacheItem>::iterator it = instancePtr->m_people.find(iid);
return it != instancePtr->m_people.end()
? &(*it)
: 0;
}
Jan 28, 2014
Jan 28, 2014
933
QContact SeasideCache::contactById(const QContactId &id)
Jul 16, 2013
Jul 16, 2013
934
935
936
937
938
{
quint32 iid = internalId(id);
return instancePtr->m_people.value(iid, CacheItem()).contact;
}
Aug 5, 2013
Aug 5, 2013
939
void SeasideCache::ensureCompletion(CacheItem *cacheItem)
Jul 16, 2013
Jul 16, 2013
940
{
Aug 5, 2013
Aug 5, 2013
941
if (cacheItem->contactState < ContactRequested) {
Aug 19, 2013
Aug 19, 2013
942
refreshContact(cacheItem);
Aug 5, 2013
Aug 5, 2013
943
944
945
}
}
Aug 19, 2013
Aug 19, 2013
946
947
948
949
950
951
952
void SeasideCache::refreshContact(CacheItem *cacheItem)
{
cacheItem->contactState = ContactRequested;
instancePtr->m_changedContacts.append(cacheItem->apiId());
instancePtr->fetchContacts();
}
Aug 5, 2013
Aug 5, 2013
953
954
SeasideCache::CacheItem *SeasideCache::itemByPhoneNumber(const QString &number, bool requireComplete)
{
Oct 24, 2013
Oct 24, 2013
955
956
957
const QString normalized(normalizePhoneNumber(number));
if (normalized.isEmpty())
return 0;
Oct 24, 2013
Oct 24, 2013
958
Oct 24, 2013
Oct 24, 2013
959
960
961
962
963
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
964
965
}
}
Aug 5, 2013
Aug 5, 2013
966
Oct 24, 2013
Oct 24, 2013
967
968
969
970
971
972
973
974
975
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
976
977
}
Aug 5, 2013
Aug 5, 2013
978
SeasideCache::CacheItem *SeasideCache::itemByEmailAddress(const QString &email, bool requireComplete)
Jul 16, 2013
Jul 16, 2013
979
{
Apr 10, 2014
Apr 10, 2014
980
981
982
if (email.trimmed().isEmpty())
return 0;
Jul 16, 2013
Jul 16, 2013
983
984
QHash<QString, quint32>::const_iterator it = instancePtr->m_emailAddressIds.find(email.toLower());
if (it != instancePtr->m_emailAddressIds.end())
Aug 5, 2013
Aug 5, 2013
985
986
return itemById(*it, requireComplete);
Jul 16, 2013
Jul 16, 2013
987
988
989
return 0;
}
Aug 5, 2013
Aug 5, 2013
990
991
SeasideCache::CacheItem *SeasideCache::itemByOnlineAccount(const QString &localUid, const QString &remoteUid, bool requireComplete)
{
Apr 10, 2014
Apr 10, 2014
992
993
994
if (localUid.trimmed().isEmpty() || remoteUid.trimmed().isEmpty())
return 0;
Aug 5, 2013
Aug 5, 2013
995
996
997
998
999
1000
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);