First public contribution.
1 // Copyright (c) 1997-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.
25 #include <e32property.h>
26 #include <connect/abclient.h>
28 #include "srvrepos_noc.h"
31 typedef RPointerArray<CRestoredRepository> RRestoredRepositoriesArray ;
33 using namespace conn ;
35 const TUint KArbitraryNumber = 1024 ;
36 const TUint32 KBackupStreamVersion = 1 ;
38 // Bitfield representing backup stream features present in the
39 // incoming backup stream.
40 enum TBackupExtensions
42 ENoBackupExtensions = 0x00000000,
43 EDeletedKeysSupported = 0x00000001,
44 EInstalledKeysSupported = 0x00000002
47 // Backup stream extension features supported by this version of central
48 // repository backup/restore - OR together bitwise values defined in
49 // TBackupExtensions to get correct value!
50 const TUint32 KBackupExtensionsSupported = EDeletedKeysSupported | EInstalledKeysSupported;
52 class TRepositoryBackupStreamHeader
55 inline TRepositoryBackupStreamHeader(TStreamId aIndexStreamId) ;
56 inline TRepositoryBackupStreamHeader();
57 inline void ExternalizeL(RWriteStream& aStream) const;
58 inline void InternalizeL(RReadStream& aStream);
60 inline TStreamId getIndexStreamId() ;
61 inline TUint32 getVersion();
62 inline TUint32 getBackupExtensionsSupported();
65 TUid iBackupStreamUid ;
66 TUint32 iBackupStreamVersion ;
67 TStreamId iIndexStreamId ;
68 TUint32 iBackupExtensionsSupported ;
70 // Reserved for future expansion
78 // Backup stream index class - Used to hold association between a UID (in
79 // our case the UID of a repository) and a stream ID - Can't use CStreamDictionary
80 // because that only lets you retrieve stream IDs by a (previously known) UID rather
81 // than iterate through its contents retrieving UID/StreamID pairs...
84 class TRepositoryBackupStreamIndexElement
88 inline void Set (TUid aUid, TStreamId aSettingsStream, TStreamId aDeletedSettingsStream, TStreamId aInstalledSettingsStream) ;
89 inline void SetDeletedSettingsStream (TStreamId aDeletedSettingsStream) ;
90 inline void Get (TUid& aUid, TStreamId& aSettingsStreamId, TStreamId& aDeletedSettingsStreamId, TStreamId& aInstalledSettingsStream) ;
91 inline void GetDeletedSettingsStream (TStreamId& aDeletedSettingsStream) ;
92 inline void ExternalizeL(RWriteStream& aStream) const;
93 inline void InternalizeL(RReadStream& aStream, TUint32 aBackupStreamExtensions = ENoBackupExtensions);
97 TStreamId iSettingsStream ;
98 TStreamId iDeletedSettingsStream ;
99 TStreamId iInstalledSettingsStream ;
102 class CRepositoryBackupStreamIndex : public CBase
105 inline static CRepositoryBackupStreamIndex* NewL() ;
106 inline static CRepositoryBackupStreamIndex* NewLC();
107 inline ~CRepositoryBackupStreamIndex();
108 inline void Close(void) ;
110 void AddL(TUid aUid, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, TStreamId aInstalledSettingsStreamId) ;
111 TInt GetNext(TUid& aUid, TStreamId& aSettingsStreamId, TStreamId& aDeletedSettingsStreamId, TStreamId& aInstalledSettingsStreamId) ;
113 inline void ExternalizeL(RWriteStream& aStream) const;
114 inline void InternalizeL(RReadStream& aStream, TUint32 aBackupStreamExtensions = ENoBackupExtensions);
117 inline CRepositoryBackupStreamIndex(){} ;
121 RArray<TRepositoryBackupStreamIndexElement> iStreamIndex ;
125 enum TRepositoryBackupState
133 // Backup client class.
135 // Has Active object functionality to monitor the state of the publish and subscribe
136 // flags associated with backup and restore and also implements MActiveBackupDataClient
137 // to perform active backup according to the "proxy data holder" model.
139 class CRepositoryBackupClient : public CActive, public MActiveBackupDataClient
142 static CRepositoryBackupClient* NewL(RFs& aFs);
143 static CRepositoryBackupClient* NewLC(RFs& aFs);
144 inline static TRepositoryBackupState GetBackupStatus(void) {return iBackupStatus;} ;
146 CRepositoryBackupClient(RFs& aFs);
147 ~CRepositoryBackupClient();
152 // Implementations of virtual functions inherited from MActiveBackupDataClient
153 void AllSnapshotsSuppliedL();
154 void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection);
155 TUint GetExpectedDataSize(TDriveNumber aDrive);
156 void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished);
157 void InitialiseGetBackupDataL(TDriveNumber aDrive);
158 void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished);
160 void InitialiseGetProxyBackupDataL(TSecureId aSID, TDriveNumber aDrive) ;
161 void InitialiseRestoreProxyBaseDataL(TSecureId aSID, TDriveNumber aDrive) ;
163 void InitialiseRestoreBaseDataL(TDriveNumber aDrive);
164 void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished);
165 void InitialiseRestoreIncrementDataL(TDriveNumber aDrive);
166 void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished);
167 void RestoreComplete(TDriveNumber aDrive);
169 void TerminateMultiStageOperation();
170 TUint GetDataChecksum(TDriveNumber aDrive);
171 void CompleteOwnerIdLookupTableL();
173 void RestoreRepositoryAndListL(TUid repositoryUid, CDirectFileStore* store, TStreamId settingsStreamId, TStreamId deletedSettingsStreamId,TInt& repIndex);
176 // Usual active object stuff
179 TInt RunError(TInt aError) ;
181 void TestBURstatusL(void) ;
183 // Leaving version of RestoreComplete to make it a bit easier
184 // for us to handle cleanup...
185 void RestoreCompleteL();
187 TInt AddRestoredRepositoryL(TUid aUid);
190 enum TBackupDirectoryScan
198 // Used to open a repository for backup and/or restore
199 CServerRepository* iRepository ;
201 CSessionNotifier* iNotifier ;
203 // Used to subscribe to Backup/Restore flag
204 RProperty iBackupRestoreProperty ;
206 // File server session used to get directory listings
210 // Secure ID being restored
213 // Active backup client to register with BUR engine
214 CActiveBackupClient* iActiveBackupClient ;
217 // Current state (backup in proress, restore in progress, etc, etc, etc)
218 static TRepositoryBackupState iBackupStatus ;
220 // Features supported by Backup Stream
221 TUint32 iBackupExtensionsSupported ;
223 // The list of the restored repositories
224 RRestoredRepositoriesArray iRestoredRepositoriesArray ;
228 #include "backup.inl"