author | zautrix <zautrix> | 2005-02-09 20:56:06 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-02-09 20:56:06 (UTC) |
commit | ab7725c4517a1f6c145075edcff0bdafe105f0ea (patch) (unidiff) | |
tree | e1a230bcb5c31ca695bbebc40ff80874f2f13380 /kaddressbook | |
parent | a9eff860d8399a198a9fdc04e09ed369097fc745 (diff) | |
download | kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.zip kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.tar.gz kdepimpi-ab7725c4517a1f6c145075edcff0bdafe105f0ea.tar.bz2 |
fixes
-rw-r--r-- | kaddressbook/kabcore.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index a8e4de5..1b17665 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -2753,577 +2753,578 @@ int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, i | |||
2753 | } | 2753 | } |
2754 | full = true; | 2754 | full = true; |
2755 | if ( mode < SYNC_PREF_ASK ) | 2755 | if ( mode < SYNC_PREF_ASK ) |
2756 | mode = SYNC_PREF_ASK; | 2756 | mode = SYNC_PREF_ASK; |
2757 | } else { | 2757 | } else { |
2758 | if ( localMod == remoteMod ) | 2758 | if ( localMod == remoteMod ) |
2759 | return 0; | 2759 | return 0; |
2760 | 2760 | ||
2761 | } | 2761 | } |
2762 | //qDebug("%s %s --- %d %d", localMod.toString().latin1() , remoteMod.toString().latin1(), localMod.time().msec(), remoteMod.time().msec()); | 2762 | //qDebug("%s %s --- %d %d", localMod.toString().latin1() , remoteMod.toString().latin1(), localMod.time().msec(), remoteMod.time().msec()); |
2763 | //qDebug("lastsync %s ", lastSync.toString().latin1() ); | 2763 | //qDebug("lastsync %s ", lastSync.toString().latin1() ); |
2764 | //full = true; //debug only | 2764 | //full = true; //debug only |
2765 | if ( full ) { | 2765 | if ( full ) { |
2766 | bool equ = ( (*local) == (*remote) ); | 2766 | bool equ = ( (*local) == (*remote) ); |
2767 | if ( equ ) { | 2767 | if ( equ ) { |
2768 | //qDebug("equal "); | 2768 | //qDebug("equal "); |
2769 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2769 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2770 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); | 2770 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); |
2771 | } | 2771 | } |
2772 | if ( mode < SYNC_PREF_FORCE_LOCAL ) | 2772 | if ( mode < SYNC_PREF_FORCE_LOCAL ) |
2773 | return 0; | 2773 | return 0; |
2774 | 2774 | ||
2775 | }//else //debug only | 2775 | }//else //debug only |
2776 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); | 2776 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); |
2777 | } | 2777 | } |
2778 | int result; | 2778 | int result; |
2779 | bool localIsNew; | 2779 | bool localIsNew; |
2780 | //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , local->lastModified().toString().latin1() , remote->lastModified().toString().latin1() ); | 2780 | //qDebug("%s -- %s mLastCalendarSync %s lastsync %s --- local %s remote %s ",local->summary().latin1(), remote->summary().latin1(),mLastCalendarSync.toString().latin1() ,lastSync.toString().latin1() , local->lastModified().toString().latin1() , remote->lastModified().toString().latin1() ); |
2781 | 2781 | ||
2782 | if ( full && mode < SYNC_PREF_NEWEST ) | 2782 | if ( full && mode < SYNC_PREF_NEWEST ) |
2783 | mode = SYNC_PREF_ASK; | 2783 | mode = SYNC_PREF_ASK; |
2784 | 2784 | ||
2785 | switch( mode ) { | 2785 | switch( mode ) { |
2786 | case SYNC_PREF_LOCAL: | 2786 | case SYNC_PREF_LOCAL: |
2787 | if ( lastSync > remoteMod ) | 2787 | if ( lastSync > remoteMod ) |
2788 | return 1; | 2788 | return 1; |
2789 | if ( lastSync > localMod ) | 2789 | if ( lastSync > localMod ) |
2790 | return 2; | 2790 | return 2; |
2791 | return 1; | 2791 | return 1; |
2792 | break; | 2792 | break; |
2793 | case SYNC_PREF_REMOTE: | 2793 | case SYNC_PREF_REMOTE: |
2794 | if ( lastSync > remoteMod ) | 2794 | if ( lastSync > remoteMod ) |
2795 | return 1; | 2795 | return 1; |
2796 | if ( lastSync > localMod ) | 2796 | if ( lastSync > localMod ) |
2797 | return 2; | 2797 | return 2; |
2798 | return 2; | 2798 | return 2; |
2799 | break; | 2799 | break; |
2800 | case SYNC_PREF_NEWEST: | 2800 | case SYNC_PREF_NEWEST: |
2801 | if ( localMod > remoteMod ) | 2801 | if ( localMod > remoteMod ) |
2802 | return 1; | 2802 | return 1; |
2803 | else | 2803 | else |
2804 | return 2; | 2804 | return 2; |
2805 | break; | 2805 | break; |
2806 | case SYNC_PREF_ASK: | 2806 | case SYNC_PREF_ASK: |
2807 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); | 2807 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); |
2808 | if ( lastSync > remoteMod ) | 2808 | if ( lastSync > remoteMod ) |
2809 | return 1; | 2809 | return 1; |
2810 | if ( lastSync > localMod ) { | 2810 | if ( lastSync > localMod ) { |
2811 | return 2; | 2811 | return 2; |
2812 | } | 2812 | } |
2813 | localIsNew = localMod >= remoteMod; | 2813 | localIsNew = localMod >= remoteMod; |
2814 | //qDebug("conflict! ************************************** "); | 2814 | //qDebug("conflict! ************************************** "); |
2815 | { | 2815 | { |
2816 | KABC::AddresseeChooser acd ( *local,*remote, localIsNew , this ); | 2816 | KABC::AddresseeChooser acd ( *local,*remote, localIsNew , this ); |
2817 | result = acd.executeD(localIsNew); | 2817 | result = acd.executeD(localIsNew); |
2818 | return result; | 2818 | return result; |
2819 | } | 2819 | } |
2820 | break; | 2820 | break; |
2821 | case SYNC_PREF_FORCE_LOCAL: | 2821 | case SYNC_PREF_FORCE_LOCAL: |
2822 | return 1; | 2822 | return 1; |
2823 | break; | 2823 | break; |
2824 | case SYNC_PREF_FORCE_REMOTE: | 2824 | case SYNC_PREF_FORCE_REMOTE: |
2825 | return 2; | 2825 | return 2; |
2826 | break; | 2826 | break; |
2827 | 2827 | ||
2828 | default: | 2828 | default: |
2829 | // SYNC_PREF_TAKE_BOTH not implemented | 2829 | // SYNC_PREF_TAKE_BOTH not implemented |
2830 | break; | 2830 | break; |
2831 | } | 2831 | } |
2832 | return 0; | 2832 | return 0; |
2833 | } | 2833 | } |
2834 | 2834 | ||
2835 | 2835 | ||
2836 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) | 2836 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) |
2837 | { | 2837 | { |
2838 | bool syncOK = true; | 2838 | bool syncOK = true; |
2839 | int addedAddressee = 0; | 2839 | int addedAddressee = 0; |
2840 | int addedAddresseeR = 0; | 2840 | int addedAddresseeR = 0; |
2841 | int deletedAddresseeR = 0; | 2841 | int deletedAddresseeR = 0; |
2842 | int deletedAddresseeL = 0; | 2842 | int deletedAddresseeL = 0; |
2843 | int changedLocal = 0; | 2843 | int changedLocal = 0; |
2844 | int changedRemote = 0; | 2844 | int changedRemote = 0; |
2845 | int filteredIN = 0; | 2845 | int filteredIN = 0; |
2846 | int filteredOUT = 0; | 2846 | int filteredOUT = 0; |
2847 | 2847 | ||
2848 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); | 2848 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); |
2849 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2849 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2850 | 2850 | ||
2851 | //QPtrList<Addressee> el = local->rawAddressees(); | 2851 | //QPtrList<Addressee> el = local->rawAddressees(); |
2852 | Addressee addresseeR; | 2852 | Addressee addresseeR; |
2853 | QString uid; | 2853 | QString uid; |
2854 | int take; | 2854 | int take; |
2855 | Addressee addresseeL; | 2855 | Addressee addresseeL; |
2856 | Addressee addresseeRSync; | 2856 | Addressee addresseeRSync; |
2857 | Addressee addresseeLSync; | 2857 | Addressee addresseeLSync; |
2858 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); | 2858 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); |
2859 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); | 2859 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); |
2860 | bool fullDateRange = false; | 2860 | bool fullDateRange = false; |
2861 | local->resetTempSyncStat(); | 2861 | local->resetTempSyncStat(); |
2862 | mLastAddressbookSync = QDateTime::currentDateTime(); | 2862 | mLastAddressbookSync = QDateTime::currentDateTime(); |
2863 | if ( syncManager->syncWithDesktop() ) { | 2863 | if ( syncManager->syncWithDesktop() ) { |
2864 | // remote->removeSyncInfo( QString());//remove all info | 2864 | // remote->removeSyncInfo( QString());//remove all info |
2865 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { | 2865 | if ( KSyncManager::mRequestedSyncEvent.isValid() ) { |
2866 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; | 2866 | mLastAddressbookSync = KSyncManager::mRequestedSyncEvent; |
2867 | qDebug("KA: using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); | 2867 | qDebug("KA: using extern time for calendar sync: %s ", mLastAddressbookSync.toString().latin1() ); |
2868 | } else { | 2868 | } else { |
2869 | qDebug("KA: KSyncManager::mRequestedSyncEvent has invalid datatime "); | 2869 | qDebug("KA: KSyncManager::mRequestedSyncEvent has invalid datatime "); |
2870 | } | 2870 | } |
2871 | } | 2871 | } |
2872 | QDateTime modifiedCalendar = mLastAddressbookSync; | 2872 | QDateTime modifiedCalendar = mLastAddressbookSync; |
2873 | addresseeLSync = getLastSyncAddressee(); | 2873 | addresseeLSync = getLastSyncAddressee(); |
2874 | qDebug("KA: Last Sync %s ", addresseeLSync.revision().toString().latin1()); | 2874 | qDebug("KA: Last Sync %s ", addresseeLSync.revision().toString().latin1()); |
2875 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); | 2875 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); |
2876 | if ( !addresseeR.isEmpty() ) { | 2876 | if ( !addresseeR.isEmpty() ) { |
2877 | addresseeRSync = addresseeR; | 2877 | addresseeRSync = addresseeR; |
2878 | remote->removeAddressee(addresseeR ); | 2878 | remote->removeAddressee(addresseeR ); |
2879 | 2879 | ||
2880 | } else { | 2880 | } else { |
2881 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2881 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2882 | addresseeRSync = addresseeLSync ; | 2882 | addresseeRSync = addresseeLSync ; |
2883 | } else { | 2883 | } else { |
2884 | //qDebug("FULLDATE 1"); | 2884 | //qDebug("FULLDATE 1"); |
2885 | fullDateRange = true; | 2885 | fullDateRange = true; |
2886 | Addressee newAdd; | 2886 | Addressee newAdd; |
2887 | addresseeRSync = newAdd; | 2887 | addresseeRSync = newAdd; |
2888 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); | 2888 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); |
2889 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); | 2889 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); |
2890 | addresseeRSync.setRevision( mLastAddressbookSync ); | 2890 | addresseeRSync.setRevision( mLastAddressbookSync ); |
2891 | addresseeRSync.setCategories( i18n("SyncAddressee") ); | 2891 | addresseeRSync.setCategories( i18n("SyncAddressee") ); |
2892 | } | 2892 | } |
2893 | } | 2893 | } |
2894 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { | 2894 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { |
2895 | // qDebug("FULLDATE 2"); | 2895 | // qDebug("FULLDATE 2"); |
2896 | fullDateRange = true; | 2896 | fullDateRange = true; |
2897 | } | 2897 | } |
2898 | if ( ! fullDateRange ) { | 2898 | if ( ! fullDateRange ) { |
2899 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { | 2899 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { |
2900 | 2900 | ||
2901 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); | 2901 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); |
2902 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); | 2902 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); |
2903 | fullDateRange = true; | 2903 | fullDateRange = true; |
2904 | //qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); | 2904 | //qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); |
2905 | } | 2905 | } |
2906 | } | 2906 | } |
2907 | // fullDateRange = true; // debug only! | 2907 | // fullDateRange = true; // debug only! |
2908 | if ( fullDateRange ) | 2908 | if ( fullDateRange ) |
2909 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); | 2909 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); |
2910 | else | 2910 | else |
2911 | mLastAddressbookSync = addresseeLSync.revision(); | 2911 | mLastAddressbookSync = addresseeLSync.revision(); |
2912 | // for resyncing if own file has changed | 2912 | // for resyncing if own file has changed |
2913 | // PENDING fixme later when implemented | 2913 | // PENDING fixme later when implemented |
2914 | #if 0 | 2914 | #if 0 |
2915 | if ( mCurrentSyncDevice == "deleteaftersync" ) { | 2915 | if ( mCurrentSyncDevice == "deleteaftersync" ) { |
2916 | mLastAddressbookSync = loadedFileVersion; | 2916 | mLastAddressbookSync = loadedFileVersion; |
2917 | qDebug("setting mLastAddressbookSync "); | 2917 | qDebug("setting mLastAddressbookSync "); |
2918 | } | 2918 | } |
2919 | #endif | 2919 | #endif |
2920 | 2920 | ||
2921 | 2921 | ||
2922 | // ********** setting filters **************** | 2922 | // ********** setting filters **************** |
2923 | Filter filterIN = mViewManager->getFilterByName( syncManager->mFilterInAB ); | 2923 | Filter filterIN = mViewManager->getFilterByName( syncManager->mFilterInAB ); |
2924 | Filter filterOUT = mViewManager->getFilterByName( syncManager->mFilterOutAB ); | 2924 | Filter filterOUT = mViewManager->getFilterByName( syncManager->mFilterOutAB ); |
2925 | 2925 | ||
2926 | //qDebug("*************************** "); | 2926 | //qDebug("*************************** "); |
2927 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); | 2927 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); |
2928 | QStringList er = remote->uidList(); | 2928 | QStringList er = remote->uidList(); |
2929 | Addressee inR ;//= er.first(); | 2929 | Addressee inR ;//= er.first(); |
2930 | Addressee inL; | 2930 | Addressee inL; |
2931 | 2931 | ||
2932 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); | 2932 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); |
2933 | 2933 | ||
2934 | int modulo = (er.count()/10)+1; | 2934 | int modulo = (er.count()/10)+1; |
2935 | int incCounter = 0; | 2935 | int incCounter = 0; |
2936 | while ( incCounter < er.count()) { | 2936 | while ( incCounter < er.count()) { |
2937 | if (syncManager->isProgressBarCanceled()) | 2937 | if (syncManager->isProgressBarCanceled()) |
2938 | return false; | 2938 | return false; |
2939 | if ( incCounter % modulo == 0 ) | 2939 | if ( incCounter % modulo == 0 ) |
2940 | syncManager->showProgressBar(incCounter); | 2940 | syncManager->showProgressBar(incCounter); |
2941 | 2941 | ||
2942 | uid = er[ incCounter ]; | 2942 | uid = er[ incCounter ]; |
2943 | bool skipIncidence = false; | 2943 | bool skipIncidence = false; |
2944 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 2944 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
2945 | skipIncidence = true; | 2945 | skipIncidence = true; |
2946 | QString idS,OidS; | 2946 | QString idS,OidS; |
2947 | qApp->processEvents(); | 2947 | qApp->processEvents(); |
2948 | if ( !skipIncidence ) { | 2948 | if ( !skipIncidence ) { |
2949 | inL = local->findByUid( uid ); | 2949 | inL = local->findByUid( uid ); |
2950 | inR = remote->findByUid( uid ); | 2950 | inR = remote->findByUid( uid ); |
2951 | //inL.setResource( 0 ); | 2951 | //inL.setResource( 0 ); |
2952 | //inR.setResource( 0 ); | 2952 | //inR.setResource( 0 ); |
2953 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars | 2953 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars |
2954 | if ( !inL.resource() || inL.resource()->includeInSync() ) { | 2954 | if ( !inL.resource() || inL.resource()->includeInSync() ) { |
2955 | if ( (take = takeAddressee( &inL, &inR, mode, fullDateRange )) ) { | 2955 | if ( (take = takeAddressee( &inL, &inR, mode, fullDateRange )) ) { |
2956 | //qDebug("take %d %s ", take, inL.summary().latin1()); | 2956 | //qDebug("take %d %s ", take, inL.summary().latin1()); |
2957 | if ( take == 3 ) | 2957 | if ( take == 3 ) |
2958 | return false; | 2958 | return false; |
2959 | if ( take == 1 ) {// take local ********************** | 2959 | if ( take == 1 ) {// take local ********************** |
2960 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2960 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2961 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2961 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2962 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2962 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2963 | local->insertAddressee( inL, false ); | 2963 | local->insertAddressee( inL, false ); |
2964 | idS = inR.externalUID(); | 2964 | idS = inR.externalUID(); |
2965 | OidS = inR.originalExternalUID(); | 2965 | OidS = inR.originalExternalUID(); |
2966 | } | 2966 | } |
2967 | else | 2967 | else |
2968 | idS = inR.IDStr(); | 2968 | idS = inR.IDStr(); |
2969 | remote->removeAddressee( inR ); | 2969 | remote->removeAddressee( inR ); |
2970 | inR = inL; | 2970 | inR = inL; |
2971 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 2971 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
2972 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2972 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2973 | inR.setOriginalExternalUID( OidS ); | 2973 | inR.setOriginalExternalUID( OidS ); |
2974 | inR.setExternalUID( idS ); | 2974 | inR.setExternalUID( idS ); |
2975 | if ( syncManager->syncWithDesktop() ) { | 2975 | if ( syncManager->syncWithDesktop() ) { |
2976 | inR.setIDStr("changed" ); | 2976 | inR.setIDStr("changed" ); |
2977 | } | 2977 | } |
2978 | //inR.insertCustom( "KADDRESSBOOK", "X-KDESYNC","changed" ); | 2978 | //inR.insertCustom( "KADDRESSBOOK", "X-KDESYNC","changed" ); |
2979 | } else { | 2979 | } else { |
2980 | inR.setIDStr( idS ); | 2980 | inR.setIDStr( idS ); |
2981 | } | 2981 | } |
2982 | inR.setResource( 0 ); | 2982 | inR.setResource( 0 ); |
2983 | remote->insertAddressee( inR , false); | 2983 | remote->insertAddressee( inR , false); |
2984 | ++changedRemote; | 2984 | ++changedRemote; |
2985 | } else { // take == 2 take remote ********************** | 2985 | } else { // take == 2 take remote ********************** |
2986 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2986 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2987 | if ( inR.revision().date().year() < 2004 ) | 2987 | if ( inR.revision().date().year() < 2004 ) |
2988 | inR.setRevision( modifiedCalendar ); | 2988 | inR.setRevision( modifiedCalendar ); |
2989 | } | 2989 | } |
2990 | idS = inL.IDStr(); | 2990 | idS = inL.IDStr(); |
2991 | local->removeAddressee( inL ); | 2991 | local->removeAddressee( inL ); |
2992 | inL = inR; | 2992 | inL = inR; |
2993 | inL.setIDStr( idS ); | 2993 | inL.setIDStr( idS ); |
2994 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2994 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2995 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2995 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2996 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2996 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2997 | } | 2997 | } |
2998 | inL.setResource( 0 ); | 2998 | inL.setResource( 0 ); |
2999 | local->insertAddressee( inL , false ); | 2999 | local->insertAddressee( inL , false ); |
3000 | ++changedLocal; | 3000 | ++changedLocal; |
3001 | } | 3001 | } |
3002 | } | 3002 | } |
3003 | } | 3003 | } |
3004 | } else { // no conflict ********** add or delete remote | 3004 | } else { // no conflict ********** add or delete remote |
3005 | if ( filterIN.name().isEmpty() || filterIN.filterAddressee( inR ) ) { | 3005 | if ( filterIN.name().isEmpty() || filterIN.filterAddressee( inR ) ) { |
3006 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 3006 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
3007 | QString des = addresseeLSync.note(); | 3007 | QString des = addresseeLSync.note(); |
3008 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it | 3008 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it |
3009 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); | 3009 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); |
3010 | remote->insertAddressee( inR, false ); | 3010 | remote->insertAddressee( inR, false ); |
3011 | ++deletedAddresseeR; | 3011 | ++deletedAddresseeR; |
3012 | } else { | 3012 | } else { |
3013 | inR.setRevision( modifiedCalendar ); | 3013 | inR.setRevision( modifiedCalendar ); |
3014 | remote->insertAddressee( inR, false ); | 3014 | remote->insertAddressee( inR, false ); |
3015 | inL = inR; | 3015 | inL = inR; |
3016 | inL.setIDStr( ":" ); | 3016 | inL.setIDStr( ":" ); |
3017 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 3017 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
3018 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 3018 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
3019 | inL.setResource( 0 ); | 3019 | inL.setResource( 0 ); |
3020 | local->insertAddressee( inL , false); | 3020 | local->insertAddressee( inL , false); |
3021 | ++addedAddressee; | 3021 | ++addedAddressee; |
3022 | } | 3022 | } |
3023 | } else { | 3023 | } else { |
3024 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { | 3024 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { |
3025 | inR.setRevision( modifiedCalendar ); | 3025 | inR.setRevision( modifiedCalendar ); |
3026 | remote->insertAddressee( inR, false ); | 3026 | remote->insertAddressee( inR, false ); |
3027 | inR.setResource( 0 ); | 3027 | inR.setResource( 0 ); |
3028 | local->insertAddressee( inR, false ); | 3028 | local->insertAddressee( inR, false ); |
3029 | ++addedAddressee; | 3029 | ++addedAddressee; |
3030 | } else { | 3030 | } else { |
3031 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); | 3031 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); |
3032 | remote->removeAddressee( inR ); | 3032 | remote->removeAddressee( inR ); |
3033 | ++deletedAddresseeR; | 3033 | ++deletedAddresseeR; |
3034 | } | 3034 | } |
3035 | } | 3035 | } |
3036 | } else { | 3036 | } else { |
3037 | ++filteredIN; | 3037 | ++filteredIN; |
3038 | } | 3038 | } |
3039 | } | 3039 | } |
3040 | } | 3040 | } |
3041 | ++incCounter; | 3041 | ++incCounter; |
3042 | } | 3042 | } |
3043 | er.clear(); | 3043 | er.clear(); |
3044 | QStringList el = local->uidList(); | 3044 | QStringList el = local->uidList(); |
3045 | modulo = (el.count()/10)+1; | 3045 | modulo = (el.count()/10)+1; |
3046 | 3046 | ||
3047 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); | 3047 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); |
3048 | incCounter = 0; | 3048 | incCounter = 0; |
3049 | while ( incCounter < el.count()) { | 3049 | while ( incCounter < el.count()) { |
3050 | qApp->processEvents(); | 3050 | qApp->processEvents(); |
3051 | if (syncManager->isProgressBarCanceled()) | 3051 | if (syncManager->isProgressBarCanceled()) |
3052 | return false; | 3052 | return false; |
3053 | if ( incCounter % modulo == 0 ) | 3053 | if ( incCounter % modulo == 0 ) |
3054 | syncManager->showProgressBar(incCounter); | 3054 | syncManager->showProgressBar(incCounter); |
3055 | uid = el[ incCounter ]; | 3055 | uid = el[ incCounter ]; |
3056 | bool skipIncidence = false; | 3056 | bool skipIncidence = false; |
3057 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 3057 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
3058 | skipIncidence = true; | 3058 | skipIncidence = true; |
3059 | if ( !skipIncidence ) { | 3059 | if ( !skipIncidence ) { |
3060 | inL = local->findByUid( uid ); | 3060 | inL = local->findByUid( uid ); |
3061 | if ( !inL.resource() || inL.resource()->includeInSync() ) { | 3061 | if ( !inL.resource() || inL.resource()->includeInSync() ) { |
3062 | inR = remote->findByUid( uid ); | 3062 | inR = remote->findByUid( uid ); |
3063 | if ( inR.isEmpty() ){ | 3063 | if ( inR.isEmpty() ){ |
3064 | if ( filterOUT.name().isEmpty() || filterOUT.filterAddressee( inL ) ) { | 3064 | if ( filterOUT.name().isEmpty() || filterOUT.filterAddressee( inL ) ) { |
3065 | // no conflict ********** add or delete local | 3065 | // no conflict ********** add or delete local |
3066 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 3066 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
3067 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { | 3067 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { |
3068 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 3068 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
3069 | local->removeAddressee( inL ); | 3069 | local->removeAddressee( inL ); |
3070 | ++deletedAddresseeL; | 3070 | ++deletedAddresseeL; |
3071 | } else { | 3071 | } else { |
3072 | if ( ! syncManager->mWriteBackExistingOnly ) { | 3072 | if ( ! syncManager->mWriteBackExistingOnly ) { |
3073 | inL.removeID(mCurrentSyncDevice ); | 3073 | inL.removeID(mCurrentSyncDevice ); |
3074 | ++addedAddresseeR; | 3074 | ++addedAddresseeR; |
3075 | inL.setRevision( modifiedCalendar ); | 3075 | inL.setRevision( modifiedCalendar ); |
3076 | local->insertAddressee( inL, false ); | 3076 | local->insertAddressee( inL, false ); |
3077 | inR = inL; | 3077 | inR = inL; |
3078 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); | 3078 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); |
3079 | inR.setResource( 0 ); | 3079 | inR.setResource( 0 ); |
3080 | remote->insertAddressee( inR, false ); | 3080 | remote->insertAddressee( inR, false ); |
3081 | } | 3081 | } |
3082 | } | 3082 | } |
3083 | } else { | 3083 | } else { |
3084 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { | 3084 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { |
3085 | //qDebug("data %s ", inL.revision().toString().latin1()); | 3085 | //qDebug("data %s ", inL.revision().toString().latin1()); |
3086 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 3086 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
3087 | local->removeAddressee( inL ); | 3087 | local->removeAddressee( inL ); |
3088 | ++deletedAddresseeL; | 3088 | ++deletedAddresseeL; |
3089 | } else { | 3089 | } else { |
3090 | if ( ! syncManager->mWriteBackExistingOnly ) { | 3090 | if ( ! syncManager->mWriteBackExistingOnly ) { |
3091 | ++addedAddresseeR; | 3091 | ++addedAddresseeR; |
3092 | inL.setRevision( modifiedCalendar ); | 3092 | inL.setRevision( modifiedCalendar ); |
3093 | local->insertAddressee( inL, false ); | 3093 | local->insertAddressee( inL, false ); |
3094 | inR = inL; | 3094 | inR = inL; |
3095 | inR.setIDStr( ":" ); | 3095 | inR.setIDStr( ":" ); |
3096 | inR.setResource( 0 ); | 3096 | inR.setResource( 0 ); |
3097 | remote->insertAddressee( inR, false ); | 3097 | remote->insertAddressee( inR, false ); |
3098 | } | 3098 | } |
3099 | } | 3099 | } |
3100 | } | 3100 | } |
3101 | } else { | 3101 | } else { |
3102 | ++filteredOUT; | 3102 | ++filteredOUT; |
3103 | } | 3103 | } |
3104 | } | 3104 | } |
3105 | } | 3105 | } |
3106 | } | 3106 | } |
3107 | ++incCounter; | 3107 | ++incCounter; |
3108 | } | 3108 | } |
3109 | el.clear(); | 3109 | el.clear(); |
3110 | syncManager->hideProgressBar(); | 3110 | syncManager->hideProgressBar(); |
3111 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); | 3111 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); |
3112 | // get rid of micro seconds | 3112 | // get rid of micro seconds |
3113 | QTime t = mLastAddressbookSync.time(); | 3113 | QTime t = mLastAddressbookSync.time(); |
3114 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 3114 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
3115 | addresseeLSync.setRevision( mLastAddressbookSync ); | 3115 | addresseeLSync.setRevision( mLastAddressbookSync ); |
3116 | addresseeRSync.setRevision( mLastAddressbookSync ); | 3116 | addresseeRSync.setRevision( mLastAddressbookSync ); |
3117 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; | 3117 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; |
3118 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); | 3118 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); |
3119 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; | 3119 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; |
3120 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); | 3120 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); |
3121 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; | 3121 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; |
3122 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); | 3122 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); |
3123 | addresseeRSync.setNote( "" ) ; | 3123 | addresseeRSync.setNote( "" ) ; |
3124 | addresseeLSync.setNote( "" ); | 3124 | addresseeLSync.setNote( "" ); |
3125 | 3125 | ||
3126 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) | 3126 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) |
3127 | remote->insertAddressee( addresseeRSync, false ); | 3127 | remote->insertAddressee( addresseeRSync, false ); |
3128 | local->insertAddressee( addresseeLSync, false ); | 3128 | local->insertAddressee( addresseeLSync, false ); |
3129 | QString mes; | 3129 | QString mes; |
3130 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); | 3130 | mes .sprintf( i18n("Synchronization summary:\n\n %d items added to local\n %d items added to remote\n %d items updated on local\n %d items updated on remote\n %d items deleted on local\n %d items deleted on remote\n %d incoming filtered out\n %d outgoing filtered out"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR, filteredIN, filteredOUT ); |
3131 | qDebug( mes ); | 3131 | qDebug( mes ); |
3132 | mes = i18n("Local addressbook changed!\n") +mes; | 3132 | mes = i18n("Local addressbook changed!\n") +mes; |
3133 | if ( syncManager->mShowSyncSummary ) { | 3133 | if ( syncManager->mShowSyncSummary ) { |
3134 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, | 3134 | if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(this, mes, |
3135 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { | 3135 | i18n("KA/Pi Synchronization"),i18n("Write back"))) { |
3136 | qDebug("KA: WB cancelled "); | 3136 | qDebug("KA: WB cancelled "); |
3137 | return false; | 3137 | syncManager->mWriteBackFile = false; |
3138 | return syncOK; | ||
3138 | } | 3139 | } |
3139 | } | 3140 | } |
3140 | return syncOK; | 3141 | return syncOK; |
3141 | } | 3142 | } |
3142 | 3143 | ||
3143 | 3144 | ||
3144 | //this is a overwritten callbackmethods from the syncinterface | 3145 | //this is a overwritten callbackmethods from the syncinterface |
3145 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) | 3146 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) |
3146 | { | 3147 | { |
3147 | 3148 | ||
3148 | //pending prepare addresseeview for output | 3149 | //pending prepare addresseeview for output |
3149 | //pending detect, if remote file has REV field. if not switch to external sync | 3150 | //pending detect, if remote file has REV field. if not switch to external sync |
3150 | mGlobalSyncMode = SYNC_MODE_NORMAL; | 3151 | mGlobalSyncMode = SYNC_MODE_NORMAL; |
3151 | if ( manager != syncManager ) | 3152 | if ( manager != syncManager ) |
3152 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); | 3153 | qDebug("KABCore::sync:: ERROR! :: manager != syncManager "); |
3153 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3154 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3154 | 3155 | ||
3155 | AddressBook abLocal(filename,"syncContact"); | 3156 | AddressBook abLocal(filename,"syncContact"); |
3156 | bool syncOK = false; | 3157 | bool syncOK = false; |
3157 | if ( abLocal.load() ) { | 3158 | if ( abLocal.load() ) { |
3158 | qDebug("KA: Sync::AB loaded %s,sync mode %d",filename.latin1(), mode ); | 3159 | qDebug("KA: Sync::AB loaded %s,sync mode %d",filename.latin1(), mode ); |
3159 | bool external = false; | 3160 | bool external = false; |
3160 | bool isXML = false; | 3161 | bool isXML = false; |
3161 | if ( filename.right(4) == ".xml") { | 3162 | if ( filename.right(4) == ".xml") { |
3162 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3163 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3163 | isXML = true; | 3164 | isXML = true; |
3164 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3165 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3165 | } else { | 3166 | } else { |
3166 | external = !manager->mIsKapiFile; | 3167 | external = !manager->mIsKapiFile; |
3167 | if ( external ) { | 3168 | if ( external ) { |
3168 | qDebug("KA: Sync::Setting vcf mode to external "); | 3169 | qDebug("KA: Sync::Setting vcf mode to external "); |
3169 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3170 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3170 | AddressBook::Iterator it; | 3171 | AddressBook::Iterator it; |
3171 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3172 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3172 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); | 3173 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); |
3173 | (*it).computeCsum( mCurrentSyncDevice ); | 3174 | (*it).computeCsum( mCurrentSyncDevice ); |
3174 | } | 3175 | } |
3175 | } | 3176 | } |
3176 | } | 3177 | } |
3177 | //AddressBook::Iterator it; | 3178 | //AddressBook::Iterator it; |
3178 | //QStringList vcards; | 3179 | //QStringList vcards; |
3179 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 3180 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
3180 | // qDebug("Name %s ", (*it).familyName().latin1()); | 3181 | // qDebug("Name %s ", (*it).familyName().latin1()); |
3181 | //} | 3182 | //} |
3182 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); | 3183 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); |
3183 | if ( syncOK ) { | 3184 | if ( syncOK ) { |
3184 | if ( syncManager->mWriteBackFile ) | 3185 | if ( syncManager->mWriteBackFile ) |
3185 | { | 3186 | { |
3186 | if ( external ) | 3187 | if ( external ) |
3187 | abLocal.removeSyncAddressees( !isXML); | 3188 | abLocal.removeSyncAddressees( !isXML); |
3188 | qDebug("KA: Sync::Saving remote AB "); | 3189 | qDebug("KA: Sync::Saving remote AB "); |
3189 | if ( ! abLocal.saveAB()) | 3190 | if ( ! abLocal.saveAB()) |
3190 | qDebug("KA: sync::Error writing back AB to file "); | 3191 | qDebug("KA: sync::Error writing back AB to file "); |
3191 | if ( external ) { | 3192 | if ( external ) { |
3192 | // afterwrite processing | 3193 | // afterwrite processing |
3193 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); | 3194 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ,isXML); |
3194 | } | 3195 | } |
3195 | } | 3196 | } |
3196 | } | 3197 | } |
3197 | setModified(); | 3198 | setModified(); |
3198 | 3199 | ||
3199 | } | 3200 | } |
3200 | abLocal.removeResources(); | 3201 | abLocal.removeResources(); |
3201 | if ( syncOK ) | 3202 | if ( syncOK ) |
3202 | mViewManager->refreshView(); | 3203 | mViewManager->refreshView(); |
3203 | return syncOK; | 3204 | return syncOK; |
3204 | 3205 | ||
3205 | } | 3206 | } |
3206 | void KABCore::removeSyncInfo( QString syncProfile) | 3207 | void KABCore::removeSyncInfo( QString syncProfile) |
3207 | { | 3208 | { |
3208 | qDebug("KA: AB:removeSyncInfo for profile %s ", syncProfile.latin1()); | 3209 | qDebug("KA: AB:removeSyncInfo for profile %s ", syncProfile.latin1()); |
3209 | mAddressBook->removeSyncInfo( syncProfile ); | 3210 | mAddressBook->removeSyncInfo( syncProfile ); |
3210 | setModified(); | 3211 | setModified(); |
3211 | } | 3212 | } |
3212 | 3213 | ||
3213 | 3214 | ||
3214 | //this is a overwritten callbackmethods from the syncinterface | 3215 | //this is a overwritten callbackmethods from the syncinterface |
3215 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) | 3216 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) |
3216 | { | 3217 | { |
3217 | if ( resource == "phone" ) | 3218 | if ( resource == "phone" ) |
3218 | return syncPhone(); | 3219 | return syncPhone(); |
3219 | disableBR( true ); | 3220 | disableBR( true ); |
3220 | if ( manager != syncManager ) | 3221 | if ( manager != syncManager ) |
3221 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); | 3222 | qDebug("KABCore::syncExternal:: ERROR! :: manager != syncManager "); |
3222 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 3223 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
3223 | 3224 | ||
3224 | AddressBook abLocal( resource,"syncContact"); | 3225 | AddressBook abLocal( resource,"syncContact"); |
3225 | bool syncOK = false; | 3226 | bool syncOK = false; |
3226 | message(i18n("Loading DTM address data..."), false); | 3227 | message(i18n("Loading DTM address data..."), false); |
3227 | if ( abLocal.load() ) { | 3228 | if ( abLocal.load() ) { |
3228 | qDebug("KA: AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3229 | qDebug("KA: AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3229 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3230 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3230 | message(i18n("Sync preprocessing..."),false); | 3231 | message(i18n("Sync preprocessing..."),false); |
3231 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); | 3232 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, false ); |
3232 | message(i18n("Synchronizing..."),false); | 3233 | message(i18n("Synchronizing..."),false); |
3233 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3234 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3234 | if ( syncOK ) { | 3235 | if ( syncOK ) { |
3235 | if ( syncManager->mWriteBackFile ) { | 3236 | if ( syncManager->mWriteBackFile ) { |
3236 | abLocal.removeSyncAddressees( false ); | 3237 | abLocal.removeSyncAddressees( false ); |
3237 | message(i18n("Saving DTM address data..."),false); | 3238 | message(i18n("Saving DTM address data..."),false); |
3238 | abLocal.saveAB(); | 3239 | abLocal.saveAB(); |
3239 | message(i18n("Sync postprocessing..."),false); | 3240 | message(i18n("Sync postprocessing..."),false); |
3240 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3241 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3241 | } | 3242 | } |
3242 | } else | 3243 | } else |
3243 | message( i18n("Sync cancelled or failed.") ); | 3244 | message( i18n("Sync cancelled or failed.") ); |
3244 | setModified(); | 3245 | setModified(); |
3245 | } | 3246 | } |
3246 | abLocal.removeResources(); | 3247 | abLocal.removeResources(); |
3247 | if ( syncOK ) { | 3248 | if ( syncOK ) { |
3248 | mViewManager->refreshView(); | 3249 | mViewManager->refreshView(); |
3249 | message(i18n("DTM syncing finished.")); | 3250 | message(i18n("DTM syncing finished.")); |
3250 | } | 3251 | } |
3251 | disableBR( false ); | 3252 | disableBR( false ); |
3252 | return syncOK; | 3253 | return syncOK; |
3253 | 3254 | ||
3254 | } | 3255 | } |
3255 | void KABCore::message( QString m, bool startTimer) | 3256 | void KABCore::message( QString m, bool startTimer) |
3256 | { | 3257 | { |
3257 | topLevelWidget()->setCaption( m ); | 3258 | topLevelWidget()->setCaption( m ); |
3258 | qApp->processEvents(); | 3259 | qApp->processEvents(); |
3259 | if ( startTimer ) | 3260 | if ( startTimer ) |
3260 | mMessageTimer->start( 15000, true ); | 3261 | mMessageTimer->start( 15000, true ); |
3261 | else | 3262 | else |
3262 | mMessageTimer->stop(); | 3263 | mMessageTimer->stop(); |
3263 | } | 3264 | } |
3264 | bool KABCore::syncPhone() | 3265 | bool KABCore::syncPhone() |
3265 | { | 3266 | { |
3266 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 3267 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
3267 | QString fileName = getPhoneFile(); | 3268 | QString fileName = getPhoneFile(); |
3268 | if ( !PhoneAccess::readFromPhone( fileName) ) { | 3269 | if ( !PhoneAccess::readFromPhone( fileName) ) { |
3269 | message(i18n("Phone access failed!")); | 3270 | message(i18n("Phone access failed!")); |
3270 | return false; | 3271 | return false; |
3271 | } | 3272 | } |
3272 | AddressBook abLocal( fileName,"syncContact"); | 3273 | AddressBook abLocal( fileName,"syncContact"); |
3273 | bool syncOK = false; | 3274 | bool syncOK = false; |
3274 | { | 3275 | { |
3275 | abLocal.importFromFile( fileName ); | 3276 | abLocal.importFromFile( fileName ); |
3276 | qDebug("KA: AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 3277 | qDebug("KA: AB phone loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
3277 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 3278 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
3278 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); | 3279 | abLocal.preparePhoneSync( mCurrentSyncDevice, true ); |
3279 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); | 3280 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice, true ); |
3280 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 3281 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
3281 | if ( syncOK ) { | 3282 | if ( syncOK ) { |
3282 | if ( syncManager->mWriteBackFile ) { | 3283 | if ( syncManager->mWriteBackFile ) { |
3283 | abLocal.removeSyncAddressees( true ); | 3284 | abLocal.removeSyncAddressees( true ); |
3284 | abLocal.saveABphone( fileName ); | 3285 | abLocal.saveABphone( fileName ); |
3285 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); | 3286 | abLocal.findNewExtIds( fileName, mCurrentSyncDevice ); |
3286 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); | 3287 | //abLocal.preparePhoneSync( mCurrentSyncDevice, false ); |
3287 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); | 3288 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice, true ); |
3288 | } | 3289 | } |
3289 | } | 3290 | } |
3290 | setModified(); | 3291 | setModified(); |
3291 | } | 3292 | } |
3292 | abLocal.removeResources(); | 3293 | abLocal.removeResources(); |
3293 | if ( syncOK ) | 3294 | if ( syncOK ) |
3294 | mViewManager->refreshView(); | 3295 | mViewManager->refreshView(); |
3295 | return syncOK; | 3296 | return syncOK; |
3296 | } | 3297 | } |
3297 | void KABCore::getFile( bool success ) | 3298 | void KABCore::getFile( bool success ) |
3298 | { | 3299 | { |
3299 | if ( ! success ) { | 3300 | if ( ! success ) { |
3300 | message( i18n("Error receiving file. Nothing changed!") ); | 3301 | message( i18n("Error receiving file. Nothing changed!") ); |
3301 | return; | 3302 | return; |
3302 | } | 3303 | } |
3303 | int count = mAddressBook->importFromFile( sentSyncFile() , false, true ); | 3304 | int count = mAddressBook->importFromFile( sentSyncFile() , false, true ); |
3304 | if ( count ) | 3305 | if ( count ) |
3305 | setModified( true ); | 3306 | setModified( true ); |
3306 | message( i18n("Pi-Sync successful!") ); | 3307 | message( i18n("Pi-Sync successful!") ); |
3307 | mViewManager->refreshView(); | 3308 | mViewManager->refreshView(); |
3308 | } | 3309 | } |
3309 | void KABCore::syncFileRequest() | 3310 | void KABCore::syncFileRequest() |
3310 | { | 3311 | { |
3311 | if ( KABPrefs::instance()->mPassiveSyncWithDesktop ) { | 3312 | if ( KABPrefs::instance()->mPassiveSyncWithDesktop ) { |
3312 | syncManager->slotSyncMenu( 999 ); | 3313 | syncManager->slotSyncMenu( 999 ); |
3313 | } | 3314 | } |
3314 | mAddressBook->export2File( sentSyncFile() ); | 3315 | mAddressBook->export2File( sentSyncFile() ); |
3315 | } | 3316 | } |
3316 | QString KABCore::sentSyncFile() | 3317 | QString KABCore::sentSyncFile() |
3317 | { | 3318 | { |
3318 | #ifdef DESKTOP_VERSION | 3319 | #ifdef DESKTOP_VERSION |
3319 | return locateLocal( "tmp", "copysyncab.vcf" ); | 3320 | return locateLocal( "tmp", "copysyncab.vcf" ); |
3320 | #else | 3321 | #else |
3321 | return QString( "/tmp/copysyncab.vcf" ); | 3322 | return QString( "/tmp/copysyncab.vcf" ); |
3322 | #endif | 3323 | #endif |
3323 | } | 3324 | } |
3324 | 3325 | ||
3325 | void KABCore::setCaptionBack() | 3326 | void KABCore::setCaptionBack() |
3326 | { | 3327 | { |
3327 | mMessageTimer->stop(); | 3328 | mMessageTimer->stop(); |
3328 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); | 3329 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); |
3329 | } | 3330 | } |