author | zautrix <zautrix> | 2004-10-09 16:58:08 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-09 16:58:08 (UTC) |
commit | 59ed933d6c43ecb0ddd3dec53cc289ee8aa68482 (patch) (unidiff) | |
tree | 8b1cbcf9c420e7dffd1e1293bcfa69e8e821f3fa /kaddressbook | |
parent | b80a099d9432bdc3d4eea778b1813b82b2680ecf (diff) | |
download | kdepimpi-59ed933d6c43ecb0ddd3dec53cc289ee8aa68482.zip kdepimpi-59ed933d6c43ecb0ddd3dec53cc289ee8aa68482.tar.gz kdepimpi-59ed933d6c43ecb0ddd3dec53cc289ee8aa68482.tar.bz2 |
fixed sync bug
-rw-r--r-- | kaddressbook/kabcore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 7ec3fca..452f1bc 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -2367,533 +2367,533 @@ int KABCore::takeAddressee( KABC::Addressee* local, KABC::Addressee* remote, i | |||
2367 | // void setZaurusUid(int id); | 2367 | // void setZaurusUid(int id); |
2368 | // int zaurusUid() const; | 2368 | // int zaurusUid() const; |
2369 | // void setZaurusStat(int id); | 2369 | // void setZaurusStat(int id); |
2370 | // int zaurusStat() const; | 2370 | // int zaurusStat() const; |
2371 | // 0 equal | 2371 | // 0 equal |
2372 | // 1 take local | 2372 | // 1 take local |
2373 | // 2 take remote | 2373 | // 2 take remote |
2374 | // 3 cancel | 2374 | // 3 cancel |
2375 | QDateTime lastSync = mLastAddressbookSync; | 2375 | QDateTime lastSync = mLastAddressbookSync; |
2376 | QDateTime localMod = local->revision(); | 2376 | QDateTime localMod = local->revision(); |
2377 | QDateTime remoteMod = remote->revision(); | 2377 | QDateTime remoteMod = remote->revision(); |
2378 | 2378 | ||
2379 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2379 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2380 | 2380 | ||
2381 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2381 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2382 | bool remCh, locCh; | 2382 | bool remCh, locCh; |
2383 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); | 2383 | remCh = ( remote->getCsum(mCurrentSyncDevice) != local->getCsum(mCurrentSyncDevice) ); |
2384 | 2384 | ||
2385 | //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); | 2385 | //qDebug("loc %s rem %s", local->getCsum(mCurrentSyncDevice).latin1(), remote->getCsum(mCurrentSyncDevice).latin1() ); |
2386 | locCh = ( localMod > mLastAddressbookSync ); | 2386 | locCh = ( localMod > mLastAddressbookSync ); |
2387 | if ( !remCh && ! locCh ) { | 2387 | if ( !remCh && ! locCh ) { |
2388 | //qDebug("both not changed "); | 2388 | //qDebug("both not changed "); |
2389 | lastSync = localMod.addDays(1); | 2389 | lastSync = localMod.addDays(1); |
2390 | if ( mode <= SYNC_PREF_ASK ) | 2390 | if ( mode <= SYNC_PREF_ASK ) |
2391 | return 0; | 2391 | return 0; |
2392 | } else { | 2392 | } else { |
2393 | if ( locCh ) { | 2393 | if ( locCh ) { |
2394 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); | 2394 | //qDebug("loc changed %s %s", localMod.toString().latin1(), mLastAddressbookSync.toString().latin1()); |
2395 | lastSync = localMod.addDays( -1 ); | 2395 | lastSync = localMod.addDays( -1 ); |
2396 | if ( !remCh ) | 2396 | if ( !remCh ) |
2397 | remoteMod =( lastSync.addDays( -1 ) ); | 2397 | remoteMod =( lastSync.addDays( -1 ) ); |
2398 | } else { | 2398 | } else { |
2399 | //qDebug(" not loc changed "); | 2399 | //qDebug(" not loc changed "); |
2400 | lastSync = localMod.addDays( 1 ); | 2400 | lastSync = localMod.addDays( 1 ); |
2401 | if ( remCh ) | 2401 | if ( remCh ) |
2402 | remoteMod =( lastSync.addDays( 1 ) ); | 2402 | remoteMod =( lastSync.addDays( 1 ) ); |
2403 | 2403 | ||
2404 | } | 2404 | } |
2405 | } | 2405 | } |
2406 | full = true; | 2406 | full = true; |
2407 | if ( mode < SYNC_PREF_ASK ) | 2407 | if ( mode < SYNC_PREF_ASK ) |
2408 | mode = SYNC_PREF_ASK; | 2408 | mode = SYNC_PREF_ASK; |
2409 | } else { | 2409 | } else { |
2410 | if ( localMod == remoteMod ) | 2410 | if ( localMod == remoteMod ) |
2411 | return 0; | 2411 | return 0; |
2412 | 2412 | ||
2413 | } | 2413 | } |
2414 | // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); | 2414 | // qDebug(" %d %d conflict on %s %s ", mode, full, local->summary().latin1(), remote->summary().latin1() ); |
2415 | 2415 | ||
2416 | //qDebug("%s %d %s %d", local->lastModified().toString().latin1() , localMod, remote->lastModified().toString().latin1(), remoteMod); | 2416 | //qDebug("%s %d %s %d", local->lastModified().toString().latin1() , localMod, remote->lastModified().toString().latin1(), remoteMod); |
2417 | //qDebug("%d %d %d %d ", local->lastModified().time().second(), local->lastModified().time().msec(), remote->lastModified().time().second(), remote->lastModified().time().msec() ); | 2417 | //qDebug("%d %d %d %d ", local->lastModified().time().second(), local->lastModified().time().msec(), remote->lastModified().time().second(), remote->lastModified().time().msec() ); |
2418 | //full = true; //debug only | 2418 | //full = true; //debug only |
2419 | if ( full ) { | 2419 | if ( full ) { |
2420 | bool equ = ( (*local) == (*remote) ); | 2420 | bool equ = ( (*local) == (*remote) ); |
2421 | if ( equ ) { | 2421 | if ( equ ) { |
2422 | //qDebug("equal "); | 2422 | //qDebug("equal "); |
2423 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2423 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2424 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); | 2424 | local->setCsum( mCurrentSyncDevice, remote->getCsum(mCurrentSyncDevice) ); |
2425 | } | 2425 | } |
2426 | if ( mode < SYNC_PREF_FORCE_LOCAL ) | 2426 | if ( mode < SYNC_PREF_FORCE_LOCAL ) |
2427 | return 0; | 2427 | return 0; |
2428 | 2428 | ||
2429 | }//else //debug only | 2429 | }//else //debug only |
2430 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); | 2430 | //qDebug("not equal %s %s ", local->summary().latin1(), remote->summary().latin1()); |
2431 | } | 2431 | } |
2432 | int result; | 2432 | int result; |
2433 | bool localIsNew; | 2433 | bool localIsNew; |
2434 | //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() ); | 2434 | //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() ); |
2435 | 2435 | ||
2436 | if ( full && mode < SYNC_PREF_NEWEST ) | 2436 | if ( full && mode < SYNC_PREF_NEWEST ) |
2437 | mode = SYNC_PREF_ASK; | 2437 | mode = SYNC_PREF_ASK; |
2438 | 2438 | ||
2439 | switch( mode ) { | 2439 | switch( mode ) { |
2440 | case SYNC_PREF_LOCAL: | 2440 | case SYNC_PREF_LOCAL: |
2441 | if ( lastSync > remoteMod ) | 2441 | if ( lastSync > remoteMod ) |
2442 | return 1; | 2442 | return 1; |
2443 | if ( lastSync > localMod ) | 2443 | if ( lastSync > localMod ) |
2444 | return 2; | 2444 | return 2; |
2445 | return 1; | 2445 | return 1; |
2446 | break; | 2446 | break; |
2447 | case SYNC_PREF_REMOTE: | 2447 | case SYNC_PREF_REMOTE: |
2448 | if ( lastSync > remoteMod ) | 2448 | if ( lastSync > remoteMod ) |
2449 | return 1; | 2449 | return 1; |
2450 | if ( lastSync > localMod ) | 2450 | if ( lastSync > localMod ) |
2451 | return 2; | 2451 | return 2; |
2452 | return 2; | 2452 | return 2; |
2453 | break; | 2453 | break; |
2454 | case SYNC_PREF_NEWEST: | 2454 | case SYNC_PREF_NEWEST: |
2455 | if ( localMod > remoteMod ) | 2455 | if ( localMod > remoteMod ) |
2456 | return 1; | 2456 | return 1; |
2457 | else | 2457 | else |
2458 | return 2; | 2458 | return 2; |
2459 | break; | 2459 | break; |
2460 | case SYNC_PREF_ASK: | 2460 | case SYNC_PREF_ASK: |
2461 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); | 2461 | //qDebug("lsy %s --- lo %s --- re %s ", lastSync.toString().latin1(), localMod.toString().latin1(), remoteMod.toString().latin1() ); |
2462 | if ( lastSync > remoteMod ) | 2462 | if ( lastSync > remoteMod ) |
2463 | return 1; | 2463 | return 1; |
2464 | if ( lastSync > localMod ) | 2464 | if ( lastSync > localMod ) |
2465 | return 2; | 2465 | return 2; |
2466 | localIsNew = localMod >= remoteMod; | 2466 | localIsNew = localMod >= remoteMod; |
2467 | //qDebug("conflict! ************************************** "); | 2467 | //qDebug("conflict! ************************************** "); |
2468 | { | 2468 | { |
2469 | KPIM::AddresseeChooser acd ( *local,*remote, localIsNew , this ); | 2469 | KPIM::AddresseeChooser acd ( *local,*remote, localIsNew , this ); |
2470 | result = acd.executeD(localIsNew); | 2470 | result = acd.executeD(localIsNew); |
2471 | return result; | 2471 | return result; |
2472 | } | 2472 | } |
2473 | break; | 2473 | break; |
2474 | case SYNC_PREF_FORCE_LOCAL: | 2474 | case SYNC_PREF_FORCE_LOCAL: |
2475 | return 1; | 2475 | return 1; |
2476 | break; | 2476 | break; |
2477 | case SYNC_PREF_FORCE_REMOTE: | 2477 | case SYNC_PREF_FORCE_REMOTE: |
2478 | return 2; | 2478 | return 2; |
2479 | break; | 2479 | break; |
2480 | 2480 | ||
2481 | default: | 2481 | default: |
2482 | // SYNC_PREF_TAKE_BOTH not implemented | 2482 | // SYNC_PREF_TAKE_BOTH not implemented |
2483 | break; | 2483 | break; |
2484 | } | 2484 | } |
2485 | return 0; | 2485 | return 0; |
2486 | } | 2486 | } |
2487 | 2487 | ||
2488 | 2488 | ||
2489 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) | 2489 | bool KABCore::synchronizeAddressbooks( KABC::AddressBook* local, KABC::AddressBook* remote,int mode) |
2490 | { | 2490 | { |
2491 | bool syncOK = true; | 2491 | bool syncOK = true; |
2492 | int addedAddressee = 0; | 2492 | int addedAddressee = 0; |
2493 | int addedAddresseeR = 0; | 2493 | int addedAddresseeR = 0; |
2494 | int deletedAddresseeR = 0; | 2494 | int deletedAddresseeR = 0; |
2495 | int deletedAddresseeL = 0; | 2495 | int deletedAddresseeL = 0; |
2496 | int changedLocal = 0; | 2496 | int changedLocal = 0; |
2497 | int changedRemote = 0; | 2497 | int changedRemote = 0; |
2498 | 2498 | ||
2499 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); | 2499 | QString mCurrentSyncName = syncManager->getCurrentSyncName(); |
2500 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); | 2500 | QString mCurrentSyncDevice = syncManager->getCurrentSyncDevice(); |
2501 | 2501 | ||
2502 | //QPtrList<Addressee> el = local->rawAddressees(); | 2502 | //QPtrList<Addressee> el = local->rawAddressees(); |
2503 | Addressee addresseeR; | 2503 | Addressee addresseeR; |
2504 | QString uid; | 2504 | QString uid; |
2505 | int take; | 2505 | int take; |
2506 | Addressee addresseeL; | 2506 | Addressee addresseeL; |
2507 | Addressee addresseeRSync; | 2507 | Addressee addresseeRSync; |
2508 | Addressee addresseeLSync; | 2508 | Addressee addresseeLSync; |
2509 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); | 2509 | // KABC::Addressee::List addresseeRSyncSharp = remote->getExternLastSyncAddressees(); |
2510 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); | 2510 | //KABC::Addressee::List addresseeLSyncSharp = local->getExternLastSyncAddressees(); |
2511 | bool fullDateRange = false; | 2511 | bool fullDateRange = false; |
2512 | local->resetTempSyncStat(); | 2512 | local->resetTempSyncStat(); |
2513 | mLastAddressbookSync = QDateTime::currentDateTime(); | 2513 | mLastAddressbookSync = QDateTime::currentDateTime(); |
2514 | QDateTime modifiedCalendar = mLastAddressbookSync;; | 2514 | QDateTime modifiedCalendar = mLastAddressbookSync;; |
2515 | addresseeLSync = getLastSyncAddressee(); | 2515 | addresseeLSync = getLastSyncAddressee(); |
2516 | qDebug("Last Sync %s ", addresseeLSync.revision().toString().latin1()); | 2516 | qDebug("Last Sync %s ", addresseeLSync.revision().toString().latin1()); |
2517 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); | 2517 | addresseeR = remote->findByUid("last-syncAddressee-"+mCurrentSyncName ); |
2518 | if ( !addresseeR.isEmpty() ) { | 2518 | if ( !addresseeR.isEmpty() ) { |
2519 | addresseeRSync = addresseeR; | 2519 | addresseeRSync = addresseeR; |
2520 | remote->removeAddressee(addresseeR ); | 2520 | remote->removeAddressee(addresseeR ); |
2521 | 2521 | ||
2522 | } else { | 2522 | } else { |
2523 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2523 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2524 | addresseeRSync = addresseeLSync ; | 2524 | addresseeRSync = addresseeLSync ; |
2525 | } else { | 2525 | } else { |
2526 | qDebug("FULLDATE 1"); | 2526 | qDebug("FULLDATE 1"); |
2527 | fullDateRange = true; | 2527 | fullDateRange = true; |
2528 | Addressee newAdd; | 2528 | Addressee newAdd; |
2529 | addresseeRSync = newAdd; | 2529 | addresseeRSync = newAdd; |
2530 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); | 2530 | addresseeRSync.setFamilyName(mCurrentSyncName + i18n(" - sync addressee")); |
2531 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); | 2531 | addresseeRSync.setUid("last-syncAddressee-"+mCurrentSyncName ); |
2532 | addresseeRSync.setRevision( mLastAddressbookSync ); | 2532 | addresseeRSync.setRevision( mLastAddressbookSync ); |
2533 | addresseeRSync.setCategories( i18n("SyncAddressee") ); | 2533 | addresseeRSync.setCategories( i18n("SyncAddressee") ); |
2534 | } | 2534 | } |
2535 | } | 2535 | } |
2536 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { | 2536 | if ( addresseeLSync.revision() == mLastAddressbookSync ) { |
2537 | qDebug("FULLDATE 2"); | 2537 | qDebug("FULLDATE 2"); |
2538 | fullDateRange = true; | 2538 | fullDateRange = true; |
2539 | } | 2539 | } |
2540 | if ( ! fullDateRange ) { | 2540 | if ( ! fullDateRange ) { |
2541 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { | 2541 | if ( addresseeLSync.revision() != addresseeRSync.revision() ) { |
2542 | 2542 | ||
2543 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); | 2543 | // qDebug("set fulldate to true %s %s" ,addresseeLSync->dtStart().toString().latin1(), addresseeRSync->dtStart().toString().latin1() ); |
2544 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); | 2544 | //qDebug("%d %d %d %d ", addresseeLSync->dtStart().time().second(), addresseeLSync->dtStart().time().msec() , addresseeRSync->dtStart().time().second(), addresseeRSync->dtStart().time().msec()); |
2545 | fullDateRange = true; | 2545 | fullDateRange = true; |
2546 | qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); | 2546 | qDebug("FULLDATE 3 %s %s", addresseeLSync.revision().toString().latin1() , addresseeRSync.revision().toString().latin1() ); |
2547 | } | 2547 | } |
2548 | } | 2548 | } |
2549 | // fullDateRange = true; // debug only! | 2549 | // fullDateRange = true; // debug only! |
2550 | if ( fullDateRange ) | 2550 | if ( fullDateRange ) |
2551 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); | 2551 | mLastAddressbookSync = QDateTime::currentDateTime().addDays( -100*365); |
2552 | else | 2552 | else |
2553 | mLastAddressbookSync = addresseeLSync.revision(); | 2553 | mLastAddressbookSync = addresseeLSync.revision(); |
2554 | // for resyncing if own file has changed | 2554 | // for resyncing if own file has changed |
2555 | // PENDING fixme later when implemented | 2555 | // PENDING fixme later when implemented |
2556 | #if 0 | 2556 | #if 0 |
2557 | if ( mCurrentSyncDevice == "deleteaftersync" ) { | 2557 | if ( mCurrentSyncDevice == "deleteaftersync" ) { |
2558 | mLastAddressbookSync = loadedFileVersion; | 2558 | mLastAddressbookSync = loadedFileVersion; |
2559 | qDebug("setting mLastAddressbookSync "); | 2559 | qDebug("setting mLastAddressbookSync "); |
2560 | } | 2560 | } |
2561 | #endif | 2561 | #endif |
2562 | 2562 | ||
2563 | //qDebug("*************************** "); | 2563 | //qDebug("*************************** "); |
2564 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); | 2564 | // qDebug("mLastAddressbookSync %s ",mLastAddressbookSync.toString().latin1() ); |
2565 | QStringList er = remote->uidList(); | 2565 | QStringList er = remote->uidList(); |
2566 | Addressee inR ;//= er.first(); | 2566 | Addressee inR ;//= er.first(); |
2567 | Addressee inL; | 2567 | Addressee inL; |
2568 | 2568 | ||
2569 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); | 2569 | syncManager->showProgressBar(0, i18n("Syncing - close to abort!"), er.count()); |
2570 | 2570 | ||
2571 | int modulo = (er.count()/10)+1; | 2571 | int modulo = (er.count()/10)+1; |
2572 | int incCounter = 0; | 2572 | int incCounter = 0; |
2573 | while ( incCounter < er.count()) { | 2573 | while ( incCounter < er.count()) { |
2574 | if (syncManager->isProgressBarCanceled()) | 2574 | if (syncManager->isProgressBarCanceled()) |
2575 | return false; | 2575 | return false; |
2576 | if ( incCounter % modulo == 0 ) | 2576 | if ( incCounter % modulo == 0 ) |
2577 | syncManager->showProgressBar(incCounter); | 2577 | syncManager->showProgressBar(incCounter); |
2578 | 2578 | ||
2579 | uid = er[ incCounter ]; | 2579 | uid = er[ incCounter ]; |
2580 | bool skipIncidence = false; | 2580 | bool skipIncidence = false; |
2581 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 2581 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
2582 | skipIncidence = true; | 2582 | skipIncidence = true; |
2583 | QString idS,OidS; | 2583 | QString idS,OidS; |
2584 | qApp->processEvents(); | 2584 | qApp->processEvents(); |
2585 | if ( !skipIncidence ) { | 2585 | if ( !skipIncidence ) { |
2586 | inL = local->findByUid( uid ); | 2586 | inL = local->findByUid( uid ); |
2587 | inR = remote->findByUid( uid ); | 2587 | inR = remote->findByUid( uid ); |
2588 | //inL.setResource( 0 ); | 2588 | //inL.setResource( 0 ); |
2589 | //inR.setResource( 0 ); | 2589 | //inR.setResource( 0 ); |
2590 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars | 2590 | if ( !inL.isEmpty() ) { // maybe conflict - same uid in both calendars |
2591 | if ( take = takeAddressee( &inL, &inR, mode, fullDateRange ) ) { | 2591 | if ( take = takeAddressee( &inL, &inR, mode, fullDateRange ) ) { |
2592 | //qDebug("take %d %s ", take, inL.summary().latin1()); | 2592 | //qDebug("take %d %s ", take, inL.summary().latin1()); |
2593 | if ( take == 3 ) | 2593 | if ( take == 3 ) |
2594 | return false; | 2594 | return false; |
2595 | if ( take == 1 ) {// take local | 2595 | if ( take == 1 ) {// take local |
2596 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2596 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2597 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2597 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2598 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2598 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2599 | local->insertAddressee( inL, false ); | 2599 | local->insertAddressee( inL, false ); |
2600 | idS = inR.externalUID(); | 2600 | idS = inR.externalUID(); |
2601 | OidS = inR.originalExternalUID(); | 2601 | OidS = inR.originalExternalUID(); |
2602 | } | 2602 | } |
2603 | else | 2603 | else |
2604 | idS = inR.IDStr(); | 2604 | idS = inR.IDStr(); |
2605 | remote->removeAddressee( inR ); | 2605 | remote->removeAddressee( inR ); |
2606 | inR = inL; | 2606 | inR = inL; |
2607 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); | 2607 | inR.setTempSyncStat( SYNC_TEMPSTATE_INITIAL ); |
2608 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2608 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2609 | inR.setOriginalExternalUID( OidS ); | 2609 | inR.setOriginalExternalUID( OidS ); |
2610 | inR.setExternalUID( idS ); | 2610 | inR.setExternalUID( idS ); |
2611 | } else { | 2611 | } else { |
2612 | inR.setIDStr( idS ); | 2612 | inR.setIDStr( idS ); |
2613 | } | 2613 | } |
2614 | inR.setResource( 0 ); | 2614 | inR.setResource( 0 ); |
2615 | remote->insertAddressee( inR , false); | 2615 | remote->insertAddressee( inR , false); |
2616 | ++changedRemote; | 2616 | ++changedRemote; |
2617 | } else { // take == 2 take remote | 2617 | } else { // take == 2 take remote |
2618 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2618 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2619 | if ( inR.revision().date().year() < 2004 ) | 2619 | if ( inR.revision().date().year() < 2004 ) |
2620 | inR.setRevision( modifiedCalendar ); | 2620 | inR.setRevision( modifiedCalendar ); |
2621 | } | 2621 | } |
2622 | idS = inL.IDStr(); | 2622 | idS = inL.IDStr(); |
2623 | local->removeAddressee( inL ); | 2623 | local->removeAddressee( inL ); |
2624 | inL = inR; | 2624 | inL = inR; |
2625 | inL.setIDStr( idS ); | 2625 | inL.setIDStr( idS ); |
2626 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2626 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2627 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); | 2627 | inL.setCsum( mCurrentSyncDevice, inR.getCsum(mCurrentSyncDevice) ); |
2628 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); | 2628 | inL.setID( mCurrentSyncDevice, inR.getID(mCurrentSyncDevice) ); |
2629 | } | 2629 | } |
2630 | inL.setResource( 0 ); | 2630 | inL.setResource( 0 ); |
2631 | local->insertAddressee( inL , false ); | 2631 | local->insertAddressee( inL , false ); |
2632 | ++changedLocal; | 2632 | ++changedLocal; |
2633 | } | 2633 | } |
2634 | } | 2634 | } |
2635 | } else { // no conflict | 2635 | } else { // no conflict |
2636 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2636 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2637 | QString des = addresseeLSync.note(); | 2637 | QString des = addresseeLSync.note(); |
2638 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it | 2638 | if ( des.find( inR.getID(mCurrentSyncDevice) +"," ) >= 0 && mode != 5) { // delete it |
2639 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); | 2639 | inR.setTempSyncStat( SYNC_TEMPSTATE_DELETE ); |
2640 | remote->insertAddressee( inR, false ); | 2640 | remote->insertAddressee( inR, false ); |
2641 | ++deletedAddresseeR; | 2641 | ++deletedAddresseeR; |
2642 | } else { | 2642 | } else { |
2643 | inR.setRevision( modifiedCalendar ); | 2643 | inR.setRevision( modifiedCalendar ); |
2644 | remote->insertAddressee( inR, false ); | 2644 | remote->insertAddressee( inR, false ); |
2645 | inL = inR; | 2645 | inL = inR; |
2646 | inL.setResource( 0 ); | 2646 | inL.setResource( 0 ); |
2647 | local->insertAddressee( inL , false); | 2647 | local->insertAddressee( inL , false); |
2648 | ++addedAddressee; | 2648 | ++addedAddressee; |
2649 | } | 2649 | } |
2650 | } else { | 2650 | } else { |
2651 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { | 2651 | if ( inR.revision() > mLastAddressbookSync || mode == 5 ) { |
2652 | inR.setRevision( modifiedCalendar ); | 2652 | inR.setRevision( modifiedCalendar ); |
2653 | remote->insertAddressee( inR, false ); | 2653 | remote->insertAddressee( inR, false ); |
2654 | inR.setResource( 0 ); | 2654 | inR.setResource( 0 ); |
2655 | local->insertAddressee( inR, false ); | 2655 | local->insertAddressee( inR, false ); |
2656 | ++addedAddressee; | 2656 | ++addedAddressee; |
2657 | } else { | 2657 | } else { |
2658 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); | 2658 | // pending checkExternSyncAddressee(addresseeRSyncSharp, inR); |
2659 | remote->removeAddressee( inR ); | 2659 | remote->removeAddressee( inR ); |
2660 | ++deletedAddresseeR; | 2660 | ++deletedAddresseeR; |
2661 | } | 2661 | } |
2662 | } | 2662 | } |
2663 | } | 2663 | } |
2664 | } | 2664 | } |
2665 | ++incCounter; | 2665 | ++incCounter; |
2666 | } | 2666 | } |
2667 | er.clear(); | 2667 | er.clear(); |
2668 | QStringList el = local->uidList(); | 2668 | QStringList el = local->uidList(); |
2669 | modulo = (el.count()/10)+1; | 2669 | modulo = (el.count()/10)+1; |
2670 | 2670 | ||
2671 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); | 2671 | syncManager->showProgressBar(0, i18n("Add / remove addressees"), el.count()); |
2672 | incCounter = 0; | 2672 | incCounter = 0; |
2673 | while ( incCounter < el.count()) { | 2673 | while ( incCounter < el.count()) { |
2674 | qApp->processEvents(); | 2674 | qApp->processEvents(); |
2675 | if (syncManager->isProgressBarCanceled()) | 2675 | if (syncManager->isProgressBarCanceled()) |
2676 | return false; | 2676 | return false; |
2677 | if ( incCounter % modulo == 0 ) | 2677 | if ( incCounter % modulo == 0 ) |
2678 | syncManager->showProgressBar(incCounter); | 2678 | syncManager->showProgressBar(incCounter); |
2679 | uid = el[ incCounter ]; | 2679 | uid = el[ incCounter ]; |
2680 | bool skipIncidence = false; | 2680 | bool skipIncidence = false; |
2681 | if ( uid.left(19) == QString("last-syncAddressee-") ) | 2681 | if ( uid.left(19) == QString("last-syncAddressee-") ) |
2682 | skipIncidence = true; | 2682 | skipIncidence = true; |
2683 | if ( !skipIncidence ) { | 2683 | if ( !skipIncidence ) { |
2684 | inL = local->findByUid( uid ); | 2684 | inL = local->findByUid( uid ); |
2685 | inR = remote->findByUid( uid ); | 2685 | inR = remote->findByUid( uid ); |
2686 | if ( inR.isEmpty() ) { | 2686 | if ( inR.isEmpty() ) { |
2687 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { | 2687 | if ( mGlobalSyncMode == SYNC_MODE_EXTERNAL ) { |
2688 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { | 2688 | if ( !inL.getID(mCurrentSyncDevice).isEmpty() && mode != 4 ) { |
2689 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 2689 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
2690 | local->removeAddressee( inL ); | 2690 | local->removeAddressee( inL ); |
2691 | ++deletedAddresseeL; | 2691 | ++deletedAddresseeL; |
2692 | } else { | 2692 | } else { |
2693 | if ( ! syncManager->mWriteBackExistingOnly ) { | 2693 | if ( ! syncManager->mWriteBackExistingOnly ) { |
2694 | inL.removeID(mCurrentSyncDevice ); | 2694 | inL.removeID(mCurrentSyncDevice ); |
2695 | ++addedAddresseeR; | 2695 | ++addedAddresseeR; |
2696 | inL.setRevision( modifiedCalendar ); | 2696 | inL.setRevision( modifiedCalendar ); |
2697 | local->insertAddressee( inL, false ); | 2697 | local->insertAddressee( inL, false ); |
2698 | inR = inL; | 2698 | inR = inL; |
2699 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); | 2699 | inR.setTempSyncStat( SYNC_TEMPSTATE_ADDED_EXTERNAL ); |
2700 | inR.setResource( 0 ); | 2700 | inR.setResource( 0 ); |
2701 | remote->insertAddressee( inR, false ); | 2701 | remote->insertAddressee( inR, false ); |
2702 | } | 2702 | } |
2703 | } | 2703 | } |
2704 | } else { | 2704 | } else { |
2705 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { | 2705 | if ( inL.revision() < mLastAddressbookSync && mode != 4 ) { |
2706 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); | 2706 | // pending checkExternSyncAddressee(addresseeLSyncSharp, inL); |
2707 | local->removeAddressee( inL ); | 2707 | local->removeAddressee( inL ); |
2708 | ++deletedAddresseeL; | 2708 | ++deletedAddresseeL; |
2709 | } else { | 2709 | } else { |
2710 | if ( ! syncManager->mWriteBackExistingOnly ) { | 2710 | if ( ! syncManager->mWriteBackExistingOnly ) { |
2711 | ++addedAddresseeR; | 2711 | ++addedAddresseeR; |
2712 | inL.setRevision( modifiedCalendar ); | 2712 | inL.setRevision( modifiedCalendar ); |
2713 | local->insertAddressee( inL, false ); | 2713 | local->insertAddressee( inL, false ); |
2714 | inR = inL; | 2714 | inR = inL; |
2715 | inR.setResource( 0 ); | 2715 | inR.setResource( 0 ); |
2716 | remote->insertAddressee( inR, false ); | 2716 | remote->insertAddressee( inR, false ); |
2717 | } | 2717 | } |
2718 | } | 2718 | } |
2719 | } | 2719 | } |
2720 | } | 2720 | } |
2721 | } | 2721 | } |
2722 | ++incCounter; | 2722 | ++incCounter; |
2723 | } | 2723 | } |
2724 | el.clear(); | 2724 | el.clear(); |
2725 | syncManager->hideProgressBar(); | 2725 | syncManager->hideProgressBar(); |
2726 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); | 2726 | mLastAddressbookSync = QDateTime::currentDateTime().addSecs( 1 ); |
2727 | // get rid of micro seconds | 2727 | // get rid of micro seconds |
2728 | QTime t = mLastAddressbookSync.time(); | 2728 | QTime t = mLastAddressbookSync.time(); |
2729 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); | 2729 | mLastAddressbookSync.setTime( QTime (t.hour (), t.minute (), t.second () ) ); |
2730 | addresseeLSync.setRevision( mLastAddressbookSync ); | 2730 | addresseeLSync.setRevision( mLastAddressbookSync ); |
2731 | addresseeRSync.setRevision( mLastAddressbookSync ); | 2731 | addresseeRSync.setRevision( mLastAddressbookSync ); |
2732 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; | 2732 | addresseeRSync.setRole( i18n("!Remote from: ")+mCurrentSyncName ) ; |
2733 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); | 2733 | addresseeLSync.setRole(i18n("!Local from: ") + mCurrentSyncName ); |
2734 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; | 2734 | addresseeRSync.setGivenName( i18n("!DO NOT EDIT!") ) ; |
2735 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); | 2735 | addresseeLSync.setGivenName(i18n("!DO NOT EDIT!") ); |
2736 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; | 2736 | addresseeRSync.setOrganization( "!"+mLastAddressbookSync.toString() ) ; |
2737 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); | 2737 | addresseeLSync.setOrganization("!"+ mLastAddressbookSync.toString() ); |
2738 | addresseeRSync.setNote( "" ) ; | 2738 | addresseeRSync.setNote( "" ) ; |
2739 | addresseeLSync.setNote( "" ); | 2739 | addresseeLSync.setNote( "" ); |
2740 | 2740 | ||
2741 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) | 2741 | if ( mGlobalSyncMode == SYNC_MODE_NORMAL) |
2742 | remote->insertAddressee( addresseeRSync, false ); | 2742 | remote->insertAddressee( addresseeRSync, false ); |
2743 | local->insertAddressee( addresseeLSync, false ); | 2743 | local->insertAddressee( addresseeLSync, false ); |
2744 | QString mes; | 2744 | QString mes; |
2745 | 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"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR ); | 2745 | 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"),addedAddressee, addedAddresseeR, changedLocal, changedRemote, deletedAddresseeL, deletedAddresseeR ); |
2746 | if ( syncManager->mShowSyncSummary ) { | 2746 | if ( syncManager->mShowSyncSummary ) { |
2747 | KMessageBox::information(this, mes, i18n("KA/Pi Synchronization") ); | 2747 | KMessageBox::information(this, mes, i18n("KA/Pi Synchronization") ); |
2748 | } | 2748 | } |
2749 | qDebug( mes ); | 2749 | qDebug( mes ); |
2750 | return syncOK; | 2750 | return syncOK; |
2751 | } | 2751 | } |
2752 | 2752 | ||
2753 | 2753 | ||
2754 | //this is a overwritten callbackmethods from the syncinterface | 2754 | //this is a overwritten callbackmethods from the syncinterface |
2755 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) | 2755 | bool KABCore::sync(KSyncManager* manager, QString filename, int mode) |
2756 | { | 2756 | { |
2757 | 2757 | ||
2758 | //pending prepare addresseeview for output | 2758 | //pending prepare addresseeview for output |
2759 | //pending detect, if remote file has REV field. if not switch to external sync | 2759 | //pending detect, if remote file has REV field. if not switch to external sync |
2760 | mGlobalSyncMode = SYNC_MODE_NORMAL; | 2760 | mGlobalSyncMode = SYNC_MODE_NORMAL; |
2761 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 2761 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
2762 | 2762 | ||
2763 | AddressBook abLocal(filename,"syncContact"); | 2763 | AddressBook abLocal(filename,"syncContact"); |
2764 | bool syncOK = false; | 2764 | bool syncOK = false; |
2765 | if ( abLocal.load() ) { | 2765 | if ( abLocal.load() ) { |
2766 | qDebug("AB loaded %s,sync mode %d",filename.latin1(), mode ); | 2766 | qDebug("AB loaded %s,sync mode %d",filename.latin1(), mode ); |
2767 | bool external = false; | 2767 | bool external = false; |
2768 | bool isXML = false; | 2768 | bool isXML = false; |
2769 | if ( filename.right(4) == ".xml") { | 2769 | if ( filename.right(4) == ".xml") { |
2770 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 2770 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
2771 | isXML = true; | 2771 | isXML = true; |
2772 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice ); | 2772 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice ); |
2773 | } else { | 2773 | } else { |
2774 | Addressee lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); | 2774 | Addressee lse = mAddressBook->findByUid( "last-syncAddressee-"+mCurrentSyncDevice ); |
2775 | if ( ! lse.isEmpty() ) { | 2775 | if ( ! lse.isEmpty() ) { |
2776 | if ( lse.familyName().left(4) == "!E: " ) | 2776 | if ( lse.familyName().left(4) == "!E: " ) |
2777 | external = true; | 2777 | external = true; |
2778 | } else { | 2778 | } else { |
2779 | bool found = false; | 2779 | bool found = false; |
2780 | AddressBook::Iterator it; | 2780 | AddressBook::Iterator it; |
2781 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 2781 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
2782 | if ( (*it).revision().date().year() > 2003 ) { | 2782 | if ( (*it).revision().date().year() > 2003 ) { |
2783 | found = true; | 2783 | found = true; |
2784 | break; | 2784 | break; |
2785 | } | 2785 | } |
2786 | } | 2786 | } |
2787 | external = ! found; | 2787 | external = ! found; |
2788 | } | 2788 | } |
2789 | 2789 | ||
2790 | if ( external ) { | 2790 | if ( external ) { |
2791 | qDebug("Setting vcf mode to external "); | 2791 | qDebug("Setting vcf mode to external "); |
2792 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 2792 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
2793 | AddressBook::Iterator it; | 2793 | AddressBook::Iterator it; |
2794 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 2794 | for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
2795 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); | 2795 | (*it).setID( mCurrentSyncDevice, (*it).uid() ); |
2796 | (*it).computeCsum( mCurrentSyncDevice ); | 2796 | (*it).computeCsum( mCurrentSyncDevice ); |
2797 | } | 2797 | } |
2798 | } | 2798 | } |
2799 | } | 2799 | } |
2800 | //AddressBook::Iterator it; | 2800 | //AddressBook::Iterator it; |
2801 | //QStringList vcards; | 2801 | //QStringList vcards; |
2802 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { | 2802 | //for ( it = abLocal.begin(); it != abLocal.end(); ++it ) { |
2803 | // qDebug("Name %s ", (*it).familyName().latin1()); | 2803 | // qDebug("Name %s ", (*it).familyName().latin1()); |
2804 | //} | 2804 | //} |
2805 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); | 2805 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, mode ); |
2806 | if ( syncOK ) { | 2806 | if ( syncOK ) { |
2807 | if ( syncManager->mWriteBackFile ) | 2807 | if ( syncManager->mWriteBackFile ) |
2808 | { | 2808 | { |
2809 | if ( external ) | 2809 | if ( external ) |
2810 | abLocal.removeSyncAddressees( !isXML); | 2810 | abLocal.removeSyncAddressees( !isXML); |
2811 | qDebug("Saving remote AB "); | 2811 | qDebug("Saving remote AB "); |
2812 | if ( ! abLocal.saveAB()) | 2812 | if ( ! abLocal.saveAB()) |
2813 | qDebug("Error writing back AB to file "); | 2813 | qDebug("Error writing back AB to file "); |
2814 | if ( isXML ) { | 2814 | if ( isXML ) { |
2815 | // afterwrite processing | 2815 | // afterwrite processing |
2816 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ); | 2816 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ); |
2817 | } | 2817 | } |
2818 | } | 2818 | } |
2819 | } | 2819 | } |
2820 | setModified(); | 2820 | setModified(); |
2821 | 2821 | ||
2822 | } | 2822 | } |
2823 | if ( syncOK ) | 2823 | if ( syncOK ) |
2824 | mViewManager->refreshView(); | 2824 | mViewManager->refreshView(); |
2825 | return syncOK; | 2825 | return syncOK; |
2826 | #if 0 | 2826 | #if 0 |
2827 | 2827 | ||
2828 | if ( storage->load(KOPrefs::instance()->mUseQuicksave) ) { | 2828 | if ( storage->load(KOPrefs::instance()->mUseQuicksave) ) { |
2829 | getEventViewerDialog()->setSyncMode( true ); | 2829 | getEventViewerDialog()->setSyncMode( true ); |
2830 | syncOK = synchronizeCalendar( mCalendar, calendar, mode ); | 2830 | syncOK = synchronizeCalendar( mCalendar, calendar, mode ); |
2831 | getEventViewerDialog()->setSyncMode( false ); | 2831 | getEventViewerDialog()->setSyncMode( false ); |
2832 | if ( syncOK ) { | 2832 | if ( syncOK ) { |
2833 | if ( KOPrefs::instance()->mWriteBackFile ) | 2833 | if ( KOPrefs::instance()->mWriteBackFile ) |
2834 | { | 2834 | { |
2835 | storage->setSaveFormat( new ICalFormat( KOPrefs::instance()->mUseQuicksave) ); | 2835 | storage->setSaveFormat( new ICalFormat( KOPrefs::instance()->mUseQuicksave) ); |
2836 | storage->save(); | 2836 | storage->save(); |
2837 | } | 2837 | } |
2838 | } | 2838 | } |
2839 | setModified(); | 2839 | setModified(); |
2840 | } | 2840 | } |
2841 | 2841 | ||
2842 | #endif | 2842 | #endif |
2843 | } | 2843 | } |
2844 | 2844 | ||
2845 | 2845 | ||
2846 | //this is a overwritten callbackmethods from the syncinterface | 2846 | //this is a overwritten callbackmethods from the syncinterface |
2847 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) | 2847 | bool KABCore::syncExternal(KSyncManager* manager, QString resource) |
2848 | { | 2848 | { |
2849 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); | 2849 | QString mCurrentSyncDevice = manager->getCurrentSyncDevice(); |
2850 | 2850 | ||
2851 | AddressBook abLocal( resource,"syncContact"); | 2851 | AddressBook abLocal( resource,"syncContact"); |
2852 | bool syncOK = false; | 2852 | bool syncOK = false; |
2853 | if ( abLocal.load() ) { | 2853 | if ( abLocal.load() ) { |
2854 | qDebug("AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); | 2854 | qDebug("AB sharp loaded ,sync device %s",mCurrentSyncDevice.latin1()); |
2855 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 2855 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
2856 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice ); | 2856 | abLocal.preExternSync( mAddressBook ,mCurrentSyncDevice ); |
2857 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); | 2857 | syncOK = synchronizeAddressbooks( mAddressBook, &abLocal, syncManager->mSyncAlgoPrefs ); |
2858 | if ( syncOK ) { | 2858 | if ( syncOK ) { |
2859 | if ( syncManager->mWriteBackFile ) { | 2859 | if ( syncManager->mWriteBackFile ) { |
2860 | abLocal.saveAB(); | 2860 | abLocal.saveAB(); |
2861 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ); | 2861 | abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ); |
2862 | } | 2862 | } |
2863 | } | 2863 | } |
2864 | setModified(); | 2864 | setModified(); |
2865 | } | 2865 | } |
2866 | if ( syncOK ) | 2866 | if ( syncOK ) |
2867 | mViewManager->refreshView(); | 2867 | mViewManager->refreshView(); |
2868 | return syncOK; | 2868 | return syncOK; |
2869 | 2869 | ||
2870 | } | 2870 | } |
2871 | 2871 | ||
2872 | void KABCore::getFile( bool success ) | 2872 | void KABCore::getFile( bool success ) |
2873 | { | 2873 | { |
2874 | QTimer::singleShot( 15000, this , SLOT ( setCaptionBack())); | 2874 | QTimer::singleShot( 15000, this , SLOT ( setCaptionBack())); |
2875 | if ( ! success ) { | 2875 | if ( ! success ) { |
2876 | setCaption( i18n("Error receiving file. Nothing changed!") ); | 2876 | setCaption( i18n("Error receiving file. Nothing changed!") ); |
2877 | return; | 2877 | return; |
2878 | } | 2878 | } |
2879 | mAddressBook->importFromFile( sentSyncFile() ); | 2879 | mAddressBook->importFromFile( sentSyncFile() , false, true ); |
2880 | topLevelWidget()->setCaption( i18n("Pi-Sync successful!") ); | 2880 | topLevelWidget()->setCaption( i18n("Pi-Sync successful!") ); |
2881 | mViewManager->refreshView(); | 2881 | mViewManager->refreshView(); |
2882 | } | 2882 | } |
2883 | void KABCore::syncFileRequest() | 2883 | void KABCore::syncFileRequest() |
2884 | { | 2884 | { |
2885 | mAddressBook->export2File( sentSyncFile() ); | 2885 | mAddressBook->export2File( sentSyncFile() ); |
2886 | } | 2886 | } |
2887 | QString KABCore::sentSyncFile() | 2887 | QString KABCore::sentSyncFile() |
2888 | { | 2888 | { |
2889 | #ifdef _WIN32_ | 2889 | #ifdef _WIN32_ |
2890 | return locateLocal( "tmp", "copysyncab.vcf" ); | 2890 | return locateLocal( "tmp", "copysyncab.vcf" ); |
2891 | #else | 2891 | #else |
2892 | return QString( "/tmp/copysyncab.vcf" ); | 2892 | return QString( "/tmp/copysyncab.vcf" ); |
2893 | #endif | 2893 | #endif |
2894 | } | 2894 | } |
2895 | 2895 | ||
2896 | void KABCore::setCaptionBack() | 2896 | void KABCore::setCaptionBack() |
2897 | { | 2897 | { |
2898 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); | 2898 | topLevelWidget()->setCaption( i18n("KAddressbook/Pi") ); |
2899 | } | 2899 | } |