Update contrib.
1 // Copyright (c) 1998-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.
18 #ifndef __SCHSTORE_H__
19 #define __SCHSTORE_H__
25 class CSchScheduleIndex;
26 class CSchClientIndex;
35 class SchBackupManagerUtils
40 ESchBackupManagerScheduleStreamToReplaceNotFound,
41 ESchBackupManagerScheduleStreamToDeleteNotFound,
47 static void Panic(TSchStorePanic aPanic);
52 Schedule server backup file name.
55 _LIT(KSchsvrBackupFileName, "_:\\Private\\10005399\\SchedulesBackup.dat");
57 Buffer descriptor to hold complete backup file name.
60 typedef TBuf<40> TBackupFileName;
67 NONSHARABLE_CLASS(CSchBackupManager) : public CActive
70 enum TSchBackupOperation
72 ESchBackupOperationAdd,
73 ESchBackupOperationEdit,
74 ESchBackupOperationDelete
78 CSchBackupManager(RFs& aFsSession);
83 void RestoreL(TPriQue<CClientProxy>& aClients,
84 TSglQue<CSchedule>& aTimeSchedules,
85 CSchLogManager& aSchLogManager,TBool aBUR=EFalse);
86 void CreateEmptyBackupL();
88 void PerformStoreOperationL(TSchBackupOperation aAction, const CSchedule& aSchedule);
89 void PerformStoreOperationL(TSchBackupOperation aAction, const CClientProxy& aClient);
92 // The backup manager need to compact the store every now and then. It does
93 // this as an idle operation and therefore needs to be CActive-based.
96 void DoCreateEmptyBackupL();
100 inline TInt RecordStoreChange() { return ++iStoreChangeCount; }
101 inline void ResetStoreChanges() { iStoreChangeCount = 0; }
104 CPermanentFileStore* OpenBackupStoreLC();
105 CPermanentFileStore* OpenOrCreateBackupStoreLC();
107 void CleanupRevertPushLC(CStreamStore& aStore);
108 static void RevertStore(TAny* aStore);
110 void WriteRootStreamL(CStreamStore& aStore);
116 // The number of times the store has changed since it was last
118 TInt iStoreChangeCount;
120 // Used to compact the store.
121 RStoreReclaim iStoreReclaimer;
123 // Used internally by the reclaimer to judge how much work is left to do.
124 TPckgBuf<TInt> iStoreReclaimerCount;
126 // A pointer to the store that has been opened for compaction purposes.
127 // During normal operation of the backup manager, this pointer will
128 // be NULL. However, when performing compaction, the store must be
129 // open at all times and since processing is carried out as a series of
130 // active object steps, we need to anchor it to the class.
131 CStreamStore* iStoreOpenForCompaction;
133 // The index to the schedule stream
134 TStreamId iIndexStreamSchedules;
136 // The index to the client stream
137 TStreamId iIndexStreamClients;
139 // The two pseudo-dictionary classes that manage mappings between
140 // (clients and streams) and (schedules and streams).
141 CSchClientIndex* iClientIndex;
142 CSchScheduleIndex* iScheduleIndex;
145 TBackupFileName iBackupFileName;
154 class CSchScheduleIndex : public CBase
157 static CSchScheduleIndex* NewL();
163 void RestoreSchedulesL(TSglQue<CSchedule>& aTimeSchedules,
164 CStreamStore& aStore,
165 TStreamId aDictionaryStreamId);
166 TStreamId CreateEmptyIndexL(CStreamStore& aStore) const;
168 void AddL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
169 void EditL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
170 void DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
173 class TSchScheduleMapplet
176 inline TSchScheduleMapplet() { }
177 inline TSchScheduleMapplet(TInt aKey, TStreamId aStream) : iKey(aKey), iStream(aStream) { }
180 void InternalizeL(RReadStream& aStream) { iKey = aStream.ReadInt32L(); aStream >> iStream; }
181 void ExternalizeL(RWriteStream& aStream) const { aStream.WriteInt32L(iKey); aStream << iStream; }
184 inline void SetStream(TStreamId aStream) { iStream = aStream; }
185 inline TStreamId Stream() const { return iStream; }
188 inline static TInt KeyOffset() { return _FOFF(TSchScheduleMapplet, iKey); }
197 NONSHARABLE_CLASS(CSchScheduleDictionary) : public CBase
200 static CSchScheduleDictionary* NewLC();
201 ~CSchScheduleDictionary();
204 CSchScheduleDictionary();
208 void AssignL(TInt aKey, TStreamId aId);
209 void Remove(TInt aKey);
212 TStreamId At(TInt aKey) const;
213 TStreamId AtIndex(TInt aIndex) const;
215 void InternalizeL(RReadStream& aStream);
216 void ExternalizeL(RWriteStream& aStream) const;
219 CArrayFix<TSchScheduleMapplet>* iMappings;
223 CSchScheduleDictionary* DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream);
224 void StoreDictionaryL(CStreamStore& aStore, const CSchScheduleDictionary& aDictionary, TStreamId aStreamToReplace);
231 class CSchClientIndex : public CBase
234 static CSchClientIndex* NewL(RFs& aFsSession);
237 CSchClientIndex(RFs& aFsSession);
240 void RestoreClientsL(TPriQue<CClientProxy>& aClients,
241 CStreamStore& aStore,
242 TStreamId aIndexStream,
243 CSchLogManager& aSchLogManager,TBool aBUR=EFalse);
244 TStreamId CreateEmptyIndexL(CStreamStore& aStore) const;
245 void AppendClientToListL(TPriQue<CClientProxy>& aClients, CClientProxy* aClient);
247 void AddL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
248 void EditL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
249 void DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
252 NONSHARABLE_CLASS(CSchClientMapplet) : public CBase
255 static CSchClientMapplet* NewLC(RReadStream& aStream);
256 static CSchClientMapplet* NewLC(const TDesC& aKey, TStreamId aStream);
257 ~CSchClientMapplet();
260 void InternalizeL(RReadStream& aStream);
261 void ExternalizeL(RWriteStream& aStream) const;
264 inline const TDesC& Key() const { return *iKey; }
265 inline TStreamId Stream() const { return iStream; }
267 inline void SetStream(TStreamId aStream) { iStream = aStream; }
269 inline static TInt KeyOffset() { return _FOFF(CSchClientMapplet, iStream); }
277 NONSHARABLE_CLASS(CSchClientDictionary) : public CBase
280 static CSchClientDictionary* NewLC();
281 ~CSchClientDictionary();
284 CSchClientDictionary();
288 void AssignL(const TDesC& aKey, TStreamId aId);
289 void RemoveL(const TDesC& aKey);
291 TStreamId AtL(const TDesC& aKey) const;
292 TStreamId AtIndex(TInt aIndex) const;
295 void InternalizeL(RReadStream& aStream);
296 void ExternalizeL(RWriteStream& aStream) const;
299 CArrayPtr<CSchClientMapplet>* iMappings;
303 CSchClientDictionary* DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream);
304 void StoreDictionaryL(CStreamStore& aStore, const CSchClientDictionary& aDictionary, TStreamId aStreamToReplace);