author | zautrix <zautrix> | 2004-09-19 20:27:44 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-19 20:27:44 (UTC) |
commit | 3da2cfeab2edbe64a17251662e56668fe143f7a3 (patch) (unidiff) | |
tree | 37e8d4445fca84bd4e93af38c96c5c489f9cbca8 /kabc | |
parent | afa28a62314117555d6b32291188eedd1a576284 (diff) | |
download | kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.zip kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.tar.gz kdepimpi-3da2cfeab2edbe64a17251662e56668fe143f7a3.tar.bz2 |
more AB sync
-rw-r--r-- | kabc/addressbook.cpp | 32 | ||||
-rw-r--r-- | kabc/addressbook.h | 3 |
2 files changed, 35 insertions, 0 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index 64832f1..86dc7c2 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp | |||
@@ -581,48 +581,80 @@ void AddressBook::removeAddressee( const Iterator &it ) | |||
581 | d->mAddressees.remove( it.d->mIt ); | 581 | d->mAddressees.remove( it.d->mIt ); |
582 | } | 582 | } |
583 | 583 | ||
584 | AddressBook::Iterator AddressBook::find( const Addressee &a ) | 584 | AddressBook::Iterator AddressBook::find( const Addressee &a ) |
585 | { | 585 | { |
586 | Iterator it; | 586 | Iterator it; |
587 | for ( it = begin(); it != end(); ++it ) { | 587 | for ( it = begin(); it != end(); ++it ) { |
588 | if ( a.uid() == (*it).uid() ) { | 588 | if ( a.uid() == (*it).uid() ) { |
589 | return it; | 589 | return it; |
590 | } | 590 | } |
591 | } | 591 | } |
592 | return end(); | 592 | return end(); |
593 | } | 593 | } |
594 | 594 | ||
595 | Addressee AddressBook::findByUid( const QString &uid ) | 595 | Addressee AddressBook::findByUid( const QString &uid ) |
596 | { | 596 | { |
597 | Iterator it; | 597 | Iterator it; |
598 | for ( it = begin(); it != end(); ++it ) { | 598 | for ( it = begin(); it != end(); ++it ) { |
599 | if ( uid == (*it).uid() ) { | 599 | if ( uid == (*it).uid() ) { |
600 | return *it; | 600 | return *it; |
601 | } | 601 | } |
602 | } | 602 | } |
603 | return Addressee(); | 603 | return Addressee(); |
604 | } | 604 | } |
605 | void AddressBook::preExternSync( AddressBook* aBook, const QString& csd ) | ||
606 | { | ||
607 | qDebug("AddressBook::preExternSync "); | ||
608 | AddressBook::Iterator it; | ||
609 | for ( it = begin(); it != end(); ++it ) { | ||
610 | (*it).setID( csd, (*it).externalUID() ); | ||
611 | (*it).computeCsum( csd ); | ||
612 | } | ||
613 | mergeAB( aBook ,csd ); | ||
614 | } | ||
615 | void AddressBook::postExternSync( AddressBook* aBook , const QString& csd) | ||
616 | { | ||
617 | qDebug("AddressBook::postExternSync "); | ||
618 | AddressBook::Iterator it; | ||
619 | for ( it = begin(); it != end(); ++it ) { | ||
620 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_ID || | ||
621 | (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_CSUM ) { | ||
622 | Addressee ad = aBook->findByUid( ( (*it).uid() )); | ||
623 | if ( ad.isEmpty() ) { | ||
624 | qDebug("ERROR ad empty "); | ||
625 | } else { | ||
626 | (*it).computeCsum( csd ); | ||
627 | if ( (*it).tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) | ||
628 | ad.setID( csd, (*it).externalUID() ); | ||
629 | ad.setCsum( csd, (*it).getCsum( csd ) ); | ||
630 | aBook->insertAddressee( ad ); | ||
631 | } | ||
632 | } | ||
633 | } | ||
634 | } | ||
635 | |||
636 | |||
605 | Addressee AddressBook::findByExternUid( const QString& uid , const QString& profile ) | 637 | Addressee AddressBook::findByExternUid( const QString& uid , const QString& profile ) |
606 | { | 638 | { |
607 | Iterator it; | 639 | Iterator it; |
608 | for ( it = begin(); it != end(); ++it ) { | 640 | for ( it = begin(); it != end(); ++it ) { |
609 | if ( uid == (*it).getID( profile ) ) | 641 | if ( uid == (*it).getID( profile ) ) |
610 | return (*it); | 642 | return (*it); |
611 | } | 643 | } |
612 | return Addressee(); | 644 | return Addressee(); |
613 | } | 645 | } |
614 | void AddressBook::mergeAB( AddressBook *aBook, const QString& profile ) | 646 | void AddressBook::mergeAB( AddressBook *aBook, const QString& profile ) |
615 | { | 647 | { |
616 | Iterator it; | 648 | Iterator it; |
617 | Addressee ad; | 649 | Addressee ad; |
618 | for ( it = begin(); it != end(); ++it ) { | 650 | for ( it = begin(); it != end(); ++it ) { |
619 | ad = aBook->findByExternUid( (*it).externalUID(), profile ); | 651 | ad = aBook->findByExternUid( (*it).externalUID(), profile ); |
620 | if ( !ad.isEmpty() ) { | 652 | if ( !ad.isEmpty() ) { |
621 | (*it).mergeContact( ad ); | 653 | (*it).mergeContact( ad ); |
622 | } | 654 | } |
623 | } | 655 | } |
624 | } | 656 | } |
625 | 657 | ||
626 | #if 0 | 658 | #if 0 |
627 | Addressee::List AddressBook::getExternLastSyncAddressees() | 659 | Addressee::List AddressBook::getExternLastSyncAddressees() |
628 | { | 660 | { |
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index f40e015..157dc56 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h | |||
@@ -274,48 +274,51 @@ class AddressBook : public QObject | |||
274 | 274 | ||
275 | /** | 275 | /** |
276 | Set the @p ErrorHandler, that is used by @ref error() to | 276 | Set the @p ErrorHandler, that is used by @ref error() to |
277 | provide gui-independend error messages. | 277 | provide gui-independend error messages. |
278 | */ | 278 | */ |
279 | void setErrorHandler( ErrorHandler * ); | 279 | void setErrorHandler( ErrorHandler * ); |
280 | 280 | ||
281 | /** | 281 | /** |
282 | Shows gui independend error messages. | 282 | Shows gui independend error messages. |
283 | */ | 283 | */ |
284 | void error( const QString& ); | 284 | void error( const QString& ); |
285 | 285 | ||
286 | /** | 286 | /** |
287 | Query all resources to clean up their lock files | 287 | Query all resources to clean up their lock files |
288 | */ | 288 | */ |
289 | void cleanUp(); | 289 | void cleanUp(); |
290 | 290 | ||
291 | // sync stuff | 291 | // sync stuff |
292 | //Addressee::List getExternLastSyncAddressees(); | 292 | //Addressee::List getExternLastSyncAddressees(); |
293 | void resetTempSyncStat(); | 293 | void resetTempSyncStat(); |
294 | QStringList uidList(); | 294 | QStringList uidList(); |
295 | void removeDeletedAddressees(); | 295 | void removeDeletedAddressees(); |
296 | void mergeAB( AddressBook *aBook, const QString& profile ); | 296 | void mergeAB( AddressBook *aBook, const QString& profile ); |
297 | Addressee findByExternUid( const QString& uid , const QString& profile ); | 297 | Addressee findByExternUid( const QString& uid , const QString& profile ); |
298 | |||
299 | void preExternSync( AddressBook* aBook, const QString& csd ); | ||
300 | void postExternSync( AddressBook* aBook, const QString& csd ); | ||
298 | signals: | 301 | signals: |
299 | /** | 302 | /** |
300 | Emitted, when the address book has changed on disk. | 303 | Emitted, when the address book has changed on disk. |
301 | */ | 304 | */ |
302 | void addressBookChanged( AddressBook * ); | 305 | void addressBookChanged( AddressBook * ); |
303 | 306 | ||
304 | /** | 307 | /** |
305 | Emitted, when the address book has been locked for writing. | 308 | Emitted, when the address book has been locked for writing. |
306 | */ | 309 | */ |
307 | void addressBookLocked( AddressBook * ); | 310 | void addressBookLocked( AddressBook * ); |
308 | 311 | ||
309 | /** | 312 | /** |
310 | Emitted, when the address book has been unlocked. | 313 | Emitted, when the address book has been unlocked. |
311 | */ | 314 | */ |
312 | void addressBookUnlocked( AddressBook * ); | 315 | void addressBookUnlocked( AddressBook * ); |
313 | 316 | ||
314 | protected: | 317 | protected: |
315 | void deleteRemovedAddressees(); | 318 | void deleteRemovedAddressees(); |
316 | void setStandardResource( Resource * ); | 319 | void setStandardResource( Resource * ); |
317 | Resource *standardResource(); | 320 | Resource *standardResource(); |
318 | KRES::Manager<Resource> *resourceManager(); | 321 | KRES::Manager<Resource> *resourceManager(); |
319 | 322 | ||
320 | void init(const QString &config, const QString &family); | 323 | void init(const QString &config, const QString &family); |
321 | 324 | ||