sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@internalTechnology
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef BACKUP_H
|
sl@0
|
21 |
#define BACKUP_H
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <e32base.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <e32property.h>
|
sl@0
|
26 |
#include <connect/abclient.h>
|
sl@0
|
27 |
#include "sessnotf.h"
|
sl@0
|
28 |
#include "srvrepos_noc.h"
|
sl@0
|
29 |
#include "rstrepos.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
typedef RPointerArray<CRestoredRepository> RRestoredRepositoriesArray ;
|
sl@0
|
32 |
|
sl@0
|
33 |
using namespace conn ;
|
sl@0
|
34 |
|
sl@0
|
35 |
const TUint KArbitraryNumber = 1024 ;
|
sl@0
|
36 |
const TUint32 KBackupStreamVersion = 1 ;
|
sl@0
|
37 |
|
sl@0
|
38 |
// Bitfield representing backup stream features present in the
|
sl@0
|
39 |
// incoming backup stream.
|
sl@0
|
40 |
enum TBackupExtensions
|
sl@0
|
41 |
{
|
sl@0
|
42 |
ENoBackupExtensions = 0x00000000,
|
sl@0
|
43 |
EDeletedKeysSupported = 0x00000001,
|
sl@0
|
44 |
EInstalledKeysSupported = 0x00000002
|
sl@0
|
45 |
};
|
sl@0
|
46 |
|
sl@0
|
47 |
// Backup stream extension features supported by this version of central
|
sl@0
|
48 |
// repository backup/restore - OR together bitwise values defined in
|
sl@0
|
49 |
// TBackupExtensions to get correct value!
|
sl@0
|
50 |
const TUint32 KBackupExtensionsSupported = EDeletedKeysSupported | EInstalledKeysSupported;
|
sl@0
|
51 |
|
sl@0
|
52 |
class TRepositoryBackupStreamHeader
|
sl@0
|
53 |
{
|
sl@0
|
54 |
public :
|
sl@0
|
55 |
inline TRepositoryBackupStreamHeader(TStreamId aIndexStreamId) ;
|
sl@0
|
56 |
inline TRepositoryBackupStreamHeader();
|
sl@0
|
57 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
58 |
inline void InternalizeL(RReadStream& aStream);
|
sl@0
|
59 |
inline TUid getUid();
|
sl@0
|
60 |
inline TStreamId getIndexStreamId() ;
|
sl@0
|
61 |
inline TUint32 getVersion();
|
sl@0
|
62 |
inline TUint32 getBackupExtensionsSupported();
|
sl@0
|
63 |
|
sl@0
|
64 |
private :
|
sl@0
|
65 |
TUid iBackupStreamUid ;
|
sl@0
|
66 |
TUint32 iBackupStreamVersion ;
|
sl@0
|
67 |
TStreamId iIndexStreamId ;
|
sl@0
|
68 |
TUint32 iBackupExtensionsSupported ;
|
sl@0
|
69 |
|
sl@0
|
70 |
// Reserved for future expansion
|
sl@0
|
71 |
TUint32 iReserved1 ;
|
sl@0
|
72 |
TUint32 iReserved2 ;
|
sl@0
|
73 |
TUint32 iReserved3 ;
|
sl@0
|
74 |
TUint32 iReserved4 ;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
//
|
sl@0
|
78 |
// Backup stream index class - Used to hold association between a UID (in
|
sl@0
|
79 |
// our case the UID of a repository) and a stream ID - Can't use CStreamDictionary
|
sl@0
|
80 |
// because that only lets you retrieve stream IDs by a (previously known) UID rather
|
sl@0
|
81 |
// than iterate through its contents retrieving UID/StreamID pairs...
|
sl@0
|
82 |
//
|
sl@0
|
83 |
|
sl@0
|
84 |
class TRepositoryBackupStreamIndexElement
|
sl@0
|
85 |
{
|
sl@0
|
86 |
|
sl@0
|
87 |
public :
|
sl@0
|
88 |
inline void Set (TUid aUid, TStreamId aSettingsStream, TStreamId aDeletedSettingsStream, TStreamId aInstalledSettingsStream) ;
|
sl@0
|
89 |
inline void SetDeletedSettingsStream (TStreamId aDeletedSettingsStream) ;
|
sl@0
|
90 |
inline void Get (TUid& aUid, TStreamId& aSettingsStreamId, TStreamId& aDeletedSettingsStreamId, TStreamId& aInstalledSettingsStream) ;
|
sl@0
|
91 |
inline void GetDeletedSettingsStream (TStreamId& aDeletedSettingsStream) ;
|
sl@0
|
92 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
93 |
inline void InternalizeL(RReadStream& aStream, TUint32 aBackupStreamExtensions = ENoBackupExtensions);
|
sl@0
|
94 |
|
sl@0
|
95 |
private:
|
sl@0
|
96 |
TUid iUid ;
|
sl@0
|
97 |
TStreamId iSettingsStream ;
|
sl@0
|
98 |
TStreamId iDeletedSettingsStream ;
|
sl@0
|
99 |
TStreamId iInstalledSettingsStream ;
|
sl@0
|
100 |
};
|
sl@0
|
101 |
|
sl@0
|
102 |
class CRepositoryBackupStreamIndex : public CBase
|
sl@0
|
103 |
{
|
sl@0
|
104 |
public:
|
sl@0
|
105 |
inline static CRepositoryBackupStreamIndex* NewL() ;
|
sl@0
|
106 |
inline static CRepositoryBackupStreamIndex* NewLC();
|
sl@0
|
107 |
inline ~CRepositoryBackupStreamIndex();
|
sl@0
|
108 |
inline void Close(void) ;
|
sl@0
|
109 |
|
sl@0
|
110 |
void AddL(TUid aUid, TStreamId aSettingStreamId, TStreamId aDeletedSettingsStreamId, TStreamId aInstalledSettingsStreamId) ;
|
sl@0
|
111 |
TInt GetNext(TUid& aUid, TStreamId& aSettingsStreamId, TStreamId& aDeletedSettingsStreamId, TStreamId& aInstalledSettingsStreamId) ;
|
sl@0
|
112 |
inline void Reset();
|
sl@0
|
113 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
114 |
inline void InternalizeL(RReadStream& aStream, TUint32 aBackupStreamExtensions = ENoBackupExtensions);
|
sl@0
|
115 |
|
sl@0
|
116 |
private:
|
sl@0
|
117 |
inline CRepositoryBackupStreamIndex(){} ;
|
sl@0
|
118 |
|
sl@0
|
119 |
private:
|
sl@0
|
120 |
TInt iIndex ;
|
sl@0
|
121 |
RArray<TRepositoryBackupStreamIndexElement> iStreamIndex ;
|
sl@0
|
122 |
};
|
sl@0
|
123 |
|
sl@0
|
124 |
|
sl@0
|
125 |
enum TRepositoryBackupState
|
sl@0
|
126 |
{
|
sl@0
|
127 |
ENoBackupActivty,
|
sl@0
|
128 |
EBackupInProgress,
|
sl@0
|
129 |
ERestoreInProgress
|
sl@0
|
130 |
};
|
sl@0
|
131 |
|
sl@0
|
132 |
//
|
sl@0
|
133 |
// Backup client class.
|
sl@0
|
134 |
//
|
sl@0
|
135 |
// Has Active object functionality to monitor the state of the publish and subscribe
|
sl@0
|
136 |
// flags associated with backup and restore and also implements MActiveBackupDataClient
|
sl@0
|
137 |
// to perform active backup according to the "proxy data holder" model.
|
sl@0
|
138 |
//
|
sl@0
|
139 |
class CRepositoryBackupClient : public CActive, public MActiveBackupDataClient
|
sl@0
|
140 |
{
|
sl@0
|
141 |
public:
|
sl@0
|
142 |
static CRepositoryBackupClient* NewL(RFs& aFs);
|
sl@0
|
143 |
static CRepositoryBackupClient* NewLC(RFs& aFs);
|
sl@0
|
144 |
inline static TRepositoryBackupState GetBackupStatus(void) {return iBackupStatus;} ;
|
sl@0
|
145 |
|
sl@0
|
146 |
CRepositoryBackupClient(RFs& aFs);
|
sl@0
|
147 |
~CRepositoryBackupClient();
|
sl@0
|
148 |
void ConstructL();
|
sl@0
|
149 |
void StartL();
|
sl@0
|
150 |
void NotifyChange();
|
sl@0
|
151 |
|
sl@0
|
152 |
// Implementations of virtual functions inherited from MActiveBackupDataClient
|
sl@0
|
153 |
void AllSnapshotsSuppliedL();
|
sl@0
|
154 |
void ReceiveSnapshotDataL(TDriveNumber aDrive, TDesC8& aBuffer, TBool aLastSection);
|
sl@0
|
155 |
TUint GetExpectedDataSize(TDriveNumber aDrive);
|
sl@0
|
156 |
void GetSnapshotDataL(TDriveNumber aDrive, TPtr8& aBuffer, TBool& aFinished);
|
sl@0
|
157 |
void InitialiseGetBackupDataL(TDriveNumber aDrive);
|
sl@0
|
158 |
void GetBackupDataSectionL(TPtr8& aBuffer, TBool& aFinished);
|
sl@0
|
159 |
|
sl@0
|
160 |
void InitialiseGetProxyBackupDataL(TSecureId aSID, TDriveNumber aDrive) ;
|
sl@0
|
161 |
void InitialiseRestoreProxyBaseDataL(TSecureId aSID, TDriveNumber aDrive) ;
|
sl@0
|
162 |
|
sl@0
|
163 |
void InitialiseRestoreBaseDataL(TDriveNumber aDrive);
|
sl@0
|
164 |
void RestoreBaseDataSectionL(TDesC8& aBuffer, TBool aFinished);
|
sl@0
|
165 |
void InitialiseRestoreIncrementDataL(TDriveNumber aDrive);
|
sl@0
|
166 |
void RestoreIncrementDataSectionL(TDesC8& aBuffer, TBool aFinished);
|
sl@0
|
167 |
void RestoreComplete(TDriveNumber aDrive);
|
sl@0
|
168 |
|
sl@0
|
169 |
void TerminateMultiStageOperation();
|
sl@0
|
170 |
TUint GetDataChecksum(TDriveNumber aDrive);
|
sl@0
|
171 |
void CompleteOwnerIdLookupTableL();
|
sl@0
|
172 |
|
sl@0
|
173 |
void RestoreRepositoryAndListL(TUid repositoryUid, CDirectFileStore* store, TStreamId settingsStreamId, TStreamId deletedSettingsStreamId,TInt& repIndex);
|
sl@0
|
174 |
|
sl@0
|
175 |
private:
|
sl@0
|
176 |
// Usual active object stuff
|
sl@0
|
177 |
void RunL() ;
|
sl@0
|
178 |
void DoCancel() ;
|
sl@0
|
179 |
TInt RunError(TInt aError) ;
|
sl@0
|
180 |
|
sl@0
|
181 |
void TestBURstatusL(void) ;
|
sl@0
|
182 |
|
sl@0
|
183 |
// Leaving version of RestoreComplete to make it a bit easier
|
sl@0
|
184 |
// for us to handle cleanup...
|
sl@0
|
185 |
void RestoreCompleteL();
|
sl@0
|
186 |
|
sl@0
|
187 |
TInt AddRestoredRepositoryL(TUid aUid);
|
sl@0
|
188 |
|
sl@0
|
189 |
private:
|
sl@0
|
190 |
enum TBackupDirectoryScan
|
sl@0
|
191 |
{
|
sl@0
|
192 |
EScanRom,
|
sl@0
|
193 |
EScanInstall,
|
sl@0
|
194 |
EScanPersist
|
sl@0
|
195 |
};
|
sl@0
|
196 |
|
sl@0
|
197 |
private:
|
sl@0
|
198 |
// Used to open a repository for backup and/or restore
|
sl@0
|
199 |
CServerRepository* iRepository ;
|
sl@0
|
200 |
|
sl@0
|
201 |
CSessionNotifier* iNotifier ;
|
sl@0
|
202 |
|
sl@0
|
203 |
// Used to subscribe to Backup/Restore flag
|
sl@0
|
204 |
RProperty iBackupRestoreProperty ;
|
sl@0
|
205 |
|
sl@0
|
206 |
// File server session used to get directory listings
|
sl@0
|
207 |
RFs& iFs;
|
sl@0
|
208 |
RFile iFile ;
|
sl@0
|
209 |
|
sl@0
|
210 |
// Secure ID being restored
|
sl@0
|
211 |
TSecureId iSid ;
|
sl@0
|
212 |
|
sl@0
|
213 |
// Active backup client to register with BUR engine
|
sl@0
|
214 |
CActiveBackupClient* iActiveBackupClient ;
|
sl@0
|
215 |
|
sl@0
|
216 |
TBool iRomScanDone;
|
sl@0
|
217 |
// Current state (backup in proress, restore in progress, etc, etc, etc)
|
sl@0
|
218 |
static TRepositoryBackupState iBackupStatus ;
|
sl@0
|
219 |
|
sl@0
|
220 |
// Features supported by Backup Stream
|
sl@0
|
221 |
TUint32 iBackupExtensionsSupported ;
|
sl@0
|
222 |
|
sl@0
|
223 |
// The list of the restored repositories
|
sl@0
|
224 |
RRestoredRepositoriesArray iRestoredRepositoriesArray ;
|
sl@0
|
225 |
};
|
sl@0
|
226 |
|
sl@0
|
227 |
|
sl@0
|
228 |
#include "backup.inl"
|
sl@0
|
229 |
|
sl@0
|
230 |
#endif // BACKUP_H
|