Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include <e32property.h>
19 #include <connect/sbdefs.h>
22 #include "srvparams.h"
27 #define UNUSED_VAR(a) a = a
29 _LIT (KBackupFileName, "BACKUP") ;
30 _LIT (KRestoreFileName, "RESTORE") ;
31 _LIT(KBackupFileExt, ".bak");
32 _LIT(KRestoreFileExt, ".rst");
35 TRepositoryBackupState CRepositoryBackupClient::iBackupStatus ;
39 // Backup stream index class - Used to hold association between a UID (in
40 // our case the UID of a repository) and a stream ID - Can't use CStreamDictionary
41 // because that only lets you retrieve stream IDs by a (previously known) UID rather
42 // than iterate through its contentsretrieving UID/StreamID pairs...
47 // CRepositoryBackupStreamIndex::AddL
49 // Add a new repository UID and stream ID pair to the index
50 void CRepositoryBackupStreamIndex::AddL(TUid aUid, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, TStreamId aInstalledSettingsStreamId)
52 TRepositoryBackupStreamIndexElement newIndexElement;
53 newIndexElement.Set(aUid,aSettingStreamId, aDeletedSettingsStreamId, aInstalledSettingsStreamId) ;
54 iStreamIndex.AppendL(newIndexElement);
59 // CRepositoryBackupStreamIndex::GetNext
61 // Iterate through the index retrieving the next Reposirory UID and Stream ID
64 TInt CRepositoryBackupStreamIndex::GetNext(TUid& aUid, TStreamId& aSettingsStreamId, TStreamId& aDeletedSettingsStreamId, TStreamId& aInstalledSettingsStreamId)
66 TInt error = KErrNone ;
67 if (iIndex < iStreamIndex.Count())
69 iStreamIndex[iIndex++].Get(aUid, aSettingsStreamId, aDeletedSettingsStreamId, aInstalledSettingsStreamId) ;
73 error = KErrNotFound ;
80 // Backup client class.
82 // Has Active object functionality to monitor the state of the publish and subscribe
83 // flags associated with backup and restore and also implements MActiveBackupDataClient
84 // to perform active backup according to the "proxy data holder" model.
90 // Usual 2 phase construction factory NewL NewLC classes
92 CRepositoryBackupClient* CRepositoryBackupClient::NewLC(RFs& aFs)
94 CRepositoryBackupClient* me = new(ELeave)CRepositoryBackupClient(aFs);
95 CleanupStack::PushL(me) ;
101 CRepositoryBackupClient* CRepositoryBackupClient::NewL(RFs& aFs)
103 CRepositoryBackupClient* me = CRepositoryBackupClient::NewLC(aFs) ;
104 CleanupStack::Pop(me) ;
111 // Constructor - doesn't really do anything!
113 CRepositoryBackupClient::CRepositoryBackupClient(RFs& aFs) : CActive(EPriorityStandard), iFs(aFs), iRomScanDone(EFalse)
119 // Phase 2 constructor
121 void CRepositoryBackupClient::ConstructL()
123 // Create repository object
124 iRepository = new(ELeave) CServerRepository;
126 // Notifier needed to open repositories.
127 iNotifier = new(ELeave)CSessionNotifier ;
129 // Attach to Backup/Restore Pub/Sub property.
130 User::LeaveIfError(iBackupRestoreProperty.Attach(KUidSystemCategory, KUidBackupRestoreKey)) ;
132 // Add ourself to the active scheduler
133 CActiveScheduler::Add(this) ;
135 // Initialise backup/restore status
136 iBackupStatus = ENoBackupActivty ;
138 // Set active and request notification of changes to backup/restore
148 CRepositoryBackupClient::~CRepositoryBackupClient()
152 iBackupRestoreProperty.Close() ;
156 iRepository->Close();
163 if (iActiveBackupClient)
164 delete(iActiveBackupClient) ;
166 iRestoredRepositoriesArray.ResetAndDestroy();
167 iRestoredRepositoriesArray.Close();
176 // DoCancel - mandatory for active objects.
178 void CRepositoryBackupClient::DoCancel()
180 iBackupRestoreProperty.Cancel() ;
188 TInt CRepositoryBackupClient::RunError(TInt aError)
190 iRestoredRepositoriesArray.ResetAndDestroy();
199 // Test BUR Pub/Sub property set status, and notify BUR that we're
200 // ready to go as appropriate.
202 void CRepositoryBackupClient::TestBURstatusL(void)
205 TRepositoryBackupState lastBackupStatus = ENoBackupActivty;
206 if (iBackupRestoreProperty.Get(BURstatus) != KErrNotFound)
208 BURstatus &= KBURPartTypeMask ;
211 case EBURUnset: // State not yet set. Treat as no backup/restore in progress.
213 // No backup or restore in progress. Probably
214 // means we've just completed an operation?
216 lastBackupStatus = iBackupStatus;
217 iBackupStatus = ENoBackupActivty ;
219 // Back to normal, so enable cache
220 TServerResources::iCacheManager->EnableCache();
221 // delete the CActiveBackupClient
222 if (iActiveBackupClient)
224 delete iActiveBackupClient ;
225 iActiveBackupClient = NULL ;
228 // Notify the changed keys if a restoration was just completed
229 if((lastBackupStatus == ERestoreInProgress))
231 for(TInt i = 0; i < iRestoredRepositoriesArray.Count(); i++)
233 iRepository->OpenL(iRestoredRepositoriesArray[i]->Uid(), *iNotifier, EFalse);
234 iRepository->RestoreNotify(*iRestoredRepositoriesArray[i]);
235 iRepository->Close();
237 iRestoredRepositoriesArray.ResetAndDestroy();
242 case EBURBackupFull :
243 case EBURBackupPartial :
244 // We don't distinguish between full and partial backups
245 // as the Backup engine will give us UIDs for all the
246 // repository data owners that want their stuff backed up
249 // We don't want cache activity during backup
250 TServerResources::iCacheManager->DisableCache();
252 // Any (and all!) repositories which have been opened in the
253 // course of system boot and normal operation will have been
254 // added to TServerResources::iOwnerIdLookUpTable as they were
255 // opened but there may well be repositories which need backing
256 // up and haven't yet been opened so we need to make sure that
257 // the lookup table is complete.
258 CompleteOwnerIdLookupTableL();
260 // Register with BUR engine
261 if (!iActiveBackupClient)
263 iActiveBackupClient = CActiveBackupClient::NewL(this) ;
265 iActiveBackupClient->ConfirmReadyForBURL(KErrNone);
266 iBackupStatus = EBackupInProgress ;
269 case EBURRestoreFull :
270 case EBURRestorePartial :
271 // We don't distinguish between full and partial restore
274 // We don't want cache activity during restore either!
275 TServerResources::iCacheManager->DisableCache();
277 // Register with BUR engine
278 if (!iActiveBackupClient)
280 iActiveBackupClient = CActiveBackupClient::NewL(this) ;
282 iActiveBackupClient->ConfirmReadyForBURL(KErrNone);
283 iBackupStatus = ERestoreInProgress ;
292 // Request notification of changes in BUR Pub/Sub status
294 void CRepositoryBackupClient::StartL()
305 // Request notification of changes in BUR Pub/Sub status
307 void CRepositoryBackupClient::NotifyChange()
309 // Watch for changes in the property state.
310 iBackupRestoreProperty.Subscribe(iStatus) ;
316 // Handle changes of backup state through publish/subscribe
318 void CRepositoryBackupClient::RunL()
326 // We can't estimate data size without A) having the SID of the data owner who's data
327 // is to be backed up and B) going through the whole process of preparing the backup.
329 // The only sensible thing we can do is return an arbitrary value!
331 TUint CRepositoryBackupClient::GetExpectedDataSize(TDriveNumber /* aDrive */)
333 return KArbitraryNumber ;
340 // Called by BUR engine to request a chunk of backup data.
342 void CRepositoryBackupClient::GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished)
344 const TInt chunkSize = aBuffer.MaxSize() ;
348 // Pass a chunk of our prepared backup data in aBuffer
349 User::LeaveIfError(iFile.Read(aBuffer, chunkSize)) ;
350 TInt bytesRead = aBuffer.Length() ;
352 // Check to see if this was the last chunk of data.
353 if (bytesRead < chunkSize)
355 // Set "finished" flag so that BUR knows we're through...
358 // ...and then tidy up by closing and deleting the backup file.
360 TParse backupFilePath ;
361 User::LeaveIfError(backupFilePath.Set(KBackupFileName, TServerResources::iBURDirectory, &KBackupFileExt));
362 TInt fileDeleteErr=iFs.Delete(backupFilePath.FullName()) ;
364 if (fileDeleteErr != KErrNone)
366 RDebug::Print(_L("CRepositoryBackupClient::GetBackupDataSectionL - Failed to delete file. Error = %d"), fileDeleteErr);
369 UNUSED_VAR(fileDeleteErr);
376 // CRepositoryBackupClient::RestoreComplete
378 // Called when a Complete set of backup data has been received and written
379 // to a file. We now need to open the file as a stream store, get the
380 // index (list of repository UID and corresponding stream ID pairs, and then
381 // reconstruct and save each repository in turn.
383 void CRepositoryBackupClient::RestoreComplete(TDriveNumber /* aDrive */)
388 void CRepositoryBackupClient::RestoreRepositoryAndListL(TUid repositoryUid, CDirectFileStore* store, TStreamId settingsStreamId, TStreamId deletedSettingsStreamId, TInt& repIndex)
390 // Add the restored repository to the restored repositories list.
391 // Pass its changed-keys list to further restoring functions to add entries for post-restoration notification.
392 repIndex = AddRestoredRepositoryL(repositoryUid);
393 iRepository->RestoreRepositoryContentsL(*store, settingsStreamId, deletedSettingsStreamId, *iRestoredRepositoriesArray[repIndex]);
394 iRepository->CommitChangesL();
399 // CRepositoryBackupClient::RestoreCompleteL
401 // Does the actual work of reconstructing repositories from backup data
404 void CRepositoryBackupClient::RestoreCompleteL()
406 // All restore data recived so we can now recreate the repositories from the
408 // Attempt to open the restore file as a CDirectFileStore
409 TParse restoreFilePath ;
410 User::LeaveIfError(restoreFilePath.Set(KRestoreFileName, TServerResources::iBURDirectory, &KRestoreFileExt));
411 CDirectFileStore* store = CDirectFileStore::OpenLC (iFs,restoreFilePath.FullName(), EFileRead|EFileShareReadersOnly);
412 if (store->Type()[0] != KDirectFileStoreLayoutUid)
414 // store wasn't quite what we were expecting - can't return an error, can't leave
415 // so all we can do is close the file, tidy up as best we can, and bail out!!!!
416 CleanupStack::PopAndDestroy(store);
417 // If a debug build - record error
418 TInt fileDeleteErr=iFs.Delete(restoreFilePath.FullName()) ;
420 if (fileDeleteErr != KErrNone)
422 RDebug::Print(_L("CRepositoryBackupClient::RestoreCompleteL - Failed to delete file. Error = %d"), fileDeleteErr);
425 UNUSED_VAR(fileDeleteErr);
428 User::Leave(KErrCorrupt);
432 // Get the root stream and attempt to read a backup file header from it
433 TStreamId rootStreamId = store->Root() ;
434 RStoreReadStream rootStream ;
435 RStoreReadStream indexStream ;
436 rootStream.OpenLC(*store, rootStreamId);
437 TRepositoryBackupStreamHeader header ;
438 TRAPD(err, header.InternalizeL(rootStream)) ;
440 // Check for a valid header by checking that the UID matches the UID
441 // of Central Repository and that the version number is sane.
442 if (err == KErrNotSupported)
444 // Not a valid header - assume it's an old style backup stream,
445 // set extensions supported to none, set index stream to be
446 // root stream and reset read pointer to beginning.
447 iBackupExtensionsSupported = ENoBackupExtensions ;
449 CleanupStack::PopAndDestroy(&rootStream) ;
450 CleanupStack::PopAndDestroy(store) ;
452 // Try re-opening as old-style backup stream with index
454 CDirectFileStore* store = CDirectFileStore::OpenLC (iFs,restoreFilePath.FullName(), EFileRead|EFileShareReadersOnly);
455 indexStream.OpenLC(*store, rootStreamId) ;
459 // Got a valid header. Check for extensions supported by this
460 // stream and get stream to read index from
461 CleanupStack::PopAndDestroy(&rootStream) ;
462 iBackupExtensionsSupported = header.getBackupExtensionsSupported();
463 TStreamId indexStreamId = header.getIndexStreamId() ;
464 indexStream.OpenLC (*store, indexStreamId) ;
467 CRepositoryBackupStreamIndex *restoreStreamIndex = CRepositoryBackupStreamIndex::NewLC();
468 restoreStreamIndex->InternalizeL(indexStream, iBackupExtensionsSupported);
471 // Iterate through index and attempt restore of each repository stream
473 restoreStreamIndex->Reset();
475 TStreamId settingsStreamId(KNullStreamIdValue);
476 TStreamId deletedSettingsStreamId(KNullStreamIdValue);
477 TStreamId installedSettingsStreamId(KNullStreamIdValue);
479 while (restoreStreamIndex->GetNext(repositoryUid, settingsStreamId, deletedSettingsStreamId, installedSettingsStreamId) == KErrNone)
481 iRepository->OpenL(repositoryUid, *iNotifier, EFalse);
482 iRepository->FailAllTransactions();
484 TRAPD(err, RestoreRepositoryAndListL(repositoryUid, store, settingsStreamId, deletedSettingsStreamId, repIndex));
485 iRepository->Close();
486 User::LeaveIfError(err);
487 // If the backup contains an installed repository containing default values for the settings, read them in
488 if (installedSettingsStreamId != KNullStreamId)
490 // create an empty repository in install directory, and restore the data from backup file
491 iRepository->RestoreInstallRepositoryL(repositoryUid, *store, installedSettingsStreamId, *iRestoredRepositoriesArray[repIndex]);
492 // remove the .ini install file (if exists) because it will clash with the restored file
493 TServerResources::DeleteCentrepFileL(repositoryUid, EInstall, EIni);
497 CleanupStack::PopAndDestroy(restoreStreamIndex) ;
498 CleanupStack::PopAndDestroy(&indexStream);
499 CleanupStack::PopAndDestroy(store);
500 // If a debug build - record error
501 TInt fileDeleteErr=iFs.Delete(restoreFilePath.FullName());
503 if (fileDeleteErr != KErrNone)
505 RDebug::Print(_L("CRepositoryBackupClient::RestoreCompleteL (2nd) - Failed to delete file. Error = %d"), fileDeleteErr);
508 UNUSED_VAR(fileDeleteErr);
514 // CRepositoryBackupClient::CompleteOwnerIdLookupTableL
516 // Open each repository in TServerResources::iDataDirectory.
517 // Save the Rep UID and Owner Id of the rep to be used by
518 // InitialiseGetProxyBackupDataL.
519 void CRepositoryBackupClient::CompleteOwnerIdLookupTableL()
522 // Read contents of persist, install, and ROM directories and
523 // use them to build a list of repository candidates.
524 RArray <TUint32> repositoryList ;
525 CleanupClosePushL(repositoryList) ;
527 for (TBackupDirectoryScan scanDir = EScanRom; scanDir <= EScanPersist; scanDir = (TBackupDirectoryScan)(scanDir+1))
529 TPtrC directoryName ;
533 if (TServerResources::iRomDirectory)
535 directoryName.Set(TServerResources::iRomDirectory->Des()) ;
539 // if ROM directory doesn't exist or there are no files, skip scanning
545 directoryName.Set(TServerResources::iInstallDirectory->Des()) ;
549 directoryName.Set(TServerResources::iDataDirectory->Des()) ;
554 CleanupClosePushL(dir);
555 User::LeaveIfError(dir.Open(iFs, directoryName, KEntryAttNormal));
557 TEntryArray dirEntries;
558 TInt readError = KErrNone;
560 while (readError != KErrEof)
562 readError = dir.Read(dirEntries);
564 if(readError != KErrNone && readError != KErrEof)
566 User::Leave(readError);
570 const TInt dirCount = dirEntries.Count();
571 for (TInt i=0; i<dirCount; i++)
573 // Attempt to extract a repository UID from directory entry
576 if (KErrNone == TServerResources::GetUid(const_cast<TEntry&>(dirEntries[i]), uid))
578 insertionError=repositoryList.InsertInUnsignedKeyOrder(uid.iUid) ;
579 // Should leave in all cases other than KErrNone or KErrAlreadyExists
580 if((insertionError != KErrNone) && (insertionError != KErrAlreadyExists ))
582 User::Leave(insertionError);
589 CleanupStack::PopAndDestroy(&dir);
592 // Open all repositories in turn. Save repository UID and owner ID
594 for(TInt i = 0; i<repositoryList.Count(); i++)
596 // Look to see if this repository already has an entry in the owner ID lookup table
597 if ( TServerResources::FindOwnerIdLookupMapping(repositoryList[i]) == KErrNotFound)
599 // Need to TRAP here as otherwise if ANY repository fails to open
600 // (e.g. due to corruption) it would cause the entire backup to
602 TRAPD(err, iRepository->OpenL(TUid::Uid(repositoryList[i]), *iNotifier));
603 if (err == KErrNoMemory)
608 else if (err == KErrNone)
610 // The act of opening a repository will cause it to add itself to the
611 // Repository/Owner UID mapping table so we don't need to do anything
612 // and can close it immediately!
613 iRepository->Close();
618 CleanupStack::PopAndDestroy() ; // repositoryList
621 // CRepositoryBackupClient::InitialiseGetProxyBackupDataL
623 // Prepare data to be backed up. We get the Sid/Uid of the entity whos data
624 // is to be backed up. What we do is to open each repository in turn (identified
625 // by directory listing), check its owner, and if it matches the Sid/Uid we've
626 // been given by secure backup externalise it to a stream within a file store.
628 void CRepositoryBackupClient::InitialiseGetProxyBackupDataL(TSecureId aSID, TDriveNumber /* aDrive */)
630 // Prepare data for backup.
633 TParse backupFilePath ;
634 User::LeaveIfError(backupFilePath.Set(KBackupFileName, TServerResources::iBURDirectory, &KBackupFileExt));
635 CDirectFileStore* store = CDirectFileStore::ReplaceLC(iFs, backupFilePath.FullName(),
636 (EFileWrite | EFileShareExclusive));
637 const TUid uid2 = KNullUid ;
638 store->SetTypeL(TUidType(KDirectFileStoreLayoutUid, uid2, KServerUid3)) ;
640 // Create a Backup Stream index
641 CRepositoryBackupStreamIndex* backupStreamIndex = CRepositoryBackupStreamIndex::NewLC();
643 // Find the reps owned by aSID
644 for(TInt i = 0; i < TServerResources::iOwnerIdLookUpTable.Count(); ++i)
646 const TOwnerIdMapping& lookupTableEntry = TServerResources::iOwnerIdLookUpTable[i];
648 if ( lookupTableEntry.iOwner == aSID )
650 TStreamId settingStreamId(KNullStreamIdValue);
651 TStreamId deletedSettingsStreamId(KNullStreamIdValue);
652 TStreamId installedSettingStreamId(KNullStreamIdValue);
653 // Found one match, open the repository and externalise content.
654 TUid uid = TUid::Uid(lookupTableEntry.iRepUid);
655 TRAPD(err,iRepository->OpenL(uid, *iNotifier));
656 if (err == KErrNoMemory)
660 else if (err == KErrNone)
662 iRepository->FailAllTransactions();
663 // externalise repository contents
664 iRepository->StoreRepositoryContentsL(*store, settingStreamId, deletedSettingsStreamId);
666 iRepository->Close();
669 TBool installExists=TServerResources::InstallFileExistsL(uid);
672 // load existing repository from install directory (default values installed post-build by SWI)
673 // and externalise installed repository contents
674 TRAPD(err, iRepository->BackupInstallRepositoryL(uid, *store, installedSettingStreamId));
675 // We trap and discard most errors to be able to continue backing up other repositories in the list
676 if (err == KErrNoMemory)
680 else if (err != KErrNone)
682 // If for any reason we haven't been able to back up the install repository,
683 // we create an empty stream to preserve the format
684 installedSettingStreamId = KNullStreamIdValue;
687 // Add all to store index
688 backupStreamIndex->AddL(uid, settingStreamId, deletedSettingsStreamId, installedSettingStreamId) ;
692 // Write the stream index/dictionary as root stream within the store
693 // so we can access it when we do a restore later on
694 RStoreWriteStream indexStream ;
695 TStreamId indexStreamId = indexStream.CreateLC(*store) ;
696 backupStreamIndex->ExternalizeL(indexStream) ;
697 indexStream.CommitL() ;
698 CleanupStack::PopAndDestroy(&indexStream) ;
699 CleanupStack::PopAndDestroy (backupStreamIndex) ;
701 // Create the Header and write it as the root stream within the store
702 // so we can access it when we do a restore later on
703 TRepositoryBackupStreamHeader header (indexStreamId) ;
704 RStoreWriteStream rootStream ;
705 TStreamId rootStreamId = rootStream.CreateLC(*store) ;
706 header.ExternalizeL(rootStream) ;
707 rootStream.CommitL() ;
709 CleanupStack::PopAndDestroy(&rootStream) ;
710 store->SetRootL(rootStreamId);
712 CleanupStack::PopAndDestroy(store) ;
714 // Attempt to open file containing store ready to read back and send to
715 // BUR engine as a stream of bytes.
716 User::LeaveIfError(iFile.Open(iFs, backupFilePath.FullName(), (EFileRead | EFileShareExclusive))) ;
723 // CRepositoryBackupClient::InitialiseRestoreProxyBaseDataL
725 // Called when secure backup is about to start sending restore data.
727 void CRepositoryBackupClient::InitialiseRestoreProxyBaseDataL(TSecureId aSID, TDriveNumber /* aDrive*/)
729 // prepare for restore - Don't think we need to do anything here except prepare
730 // data structures to receive incoming data
732 // Save SID so we can check that it corresponds with the owner information
733 // in the restored data.
736 // Open file to receive restored data
737 TParse restoreFilePath ;
738 User::LeaveIfError(restoreFilePath.Set(KRestoreFileName, TServerResources::iBURDirectory, &KRestoreFileExt));
739 User::LeaveIfError(iFile.Replace (iFs, restoreFilePath.FullName(), (EFileWrite | EFileShareExclusive)));
746 // CRepositoryBackupClient::RestoreBaseDataSectionL
748 // Called when secure backup has a chunk of restore data for us. Last data
749 // segment identified by aFinished.
751 void CRepositoryBackupClient::RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished)
753 // Receive a chunk of restore data in aBuffer
754 User::LeaveIfError(iFile.Write (aBuffer)) ;
759 // All restore data recived so we can now recreate the repositories from the
765 void CRepositoryBackupClient::TerminateMultiStageOperation()
767 // Backup/Restore operation aborted!
768 // Tidy up all temporary data.
769 HBufC* burFileName = HBufC::New(KMaxFileName);
770 if(burFileName==NULL)
774 TPtr burFileNamePtr(burFileName->Des());
775 iFile.FullName(burFileNamePtr); //get the full name of the temporary file
776 iFile.Close(); // close the file
777 // If a debug build - record error
778 TInt fileDeleteErr=iFs.Delete(burFileNamePtr);
780 if (fileDeleteErr != KErrNone)
782 RDebug::Print(_L("CRepositoryBackupClient::TerminateMultiStageOperation - Failed to delete file. Error = %d"), fileDeleteErr);
785 UNUSED_VAR(fileDeleteErr);
793 // CRepositoryBackupClient::GetDataChecksum
795 // Not required and we don't implement it.
797 TUint CRepositoryBackupClient::GetDataChecksum(TDriveNumber /* aDrive */)
799 return KArbitraryNumber;
803 // CRepositoryBackupClient::GetSnapshotDataL
805 // Only required for incremental backup (which we don't support
807 void CRepositoryBackupClient::GetSnapshotDataL(TDriveNumber /* aDrive */, TPtr8& /* aBuffer */, TBool& /* aFinished */)
809 User::Leave(KErrNotSupported) ;
813 // CRepositoryBackupClient::InitialiseGetBackupDataL
815 // Used by "normal" active backup to prepare data - we use
816 // InitialiseRestoreProxyBaseDataL so this shouldn't be called!
818 void CRepositoryBackupClient::InitialiseGetBackupDataL(TDriveNumber /* aDrive */)
820 User::Leave(KErrNotSupported) ;
825 void CRepositoryBackupClient::InitialiseRestoreBaseDataL(TDriveNumber /* aDrive */)
827 // Check this! I Don't think this method should get called as we're a proxy
828 // and so implement InitialiseGetProxyBackupDataL!!
829 User::Leave(KErrNotSupported) ;
835 void CRepositoryBackupClient::InitialiseRestoreIncrementDataL(TDriveNumber /* aDrive */)
837 // Check this! I Don't think this method should get called as we're a proxy
838 // so don't do incremental backup!!
839 User::Leave(KErrNotSupported) ;
844 void CRepositoryBackupClient::RestoreIncrementDataSectionL(TDesC8& /* aBuffer */, TBool /* aFinished */)
846 // Check this! I Don't think this method should get called as we're a proxy
847 // so don't do incremental backup!!
848 User::Leave(KErrNotSupported) ;
853 // Incremental backup isn't supported for the proxy data holder model so this
854 // method should never be called.
856 // Not acceptable to leave even though it's an ...L function which we don't implement
857 void CRepositoryBackupClient::AllSnapshotsSuppliedL()
865 // Incremental backup not supported
867 void CRepositoryBackupClient::ReceiveSnapshotDataL(TDriveNumber /* aDrive */, TDesC8& /* aBuffer */, TBool /* aLastSection */)
869 User::Leave(KErrNotSupported) ;
873 Adds a new entry to the restored repository list with the specified repository uid.
875 Creates an object of the CRestoredRepository and inserts it to the list.
876 If a repository of the specified uid is already on the list, the created object will
877 be deleted and no repeated entry will be inserted to the list.
879 @param aUid The uid of the repository to be added to this array.
880 @return The index of the new or existing entry within the list.
882 TInt CRepositoryBackupClient::AddRestoredRepositoryL(TUid aUid)
884 CRestoredRepository* rstRepos = new(ELeave) CRestoredRepository(aUid);
885 CleanupStack::PushL(rstRepos);
886 TInt err = iRestoredRepositoriesArray.InsertInOrder(rstRepos, TLinearOrder<CRestoredRepository>(CRestoredRepository::CompareUids));
887 if(err != KErrNone && err != KErrAlreadyExists)
889 TInt index = iRestoredRepositoriesArray.FindInOrderL(rstRepos, TLinearOrder<CRestoredRepository>(CRestoredRepository::CompareUids));
892 if(err == KErrAlreadyExists)