os/ossrv/genericservices/taskscheduler/SCHSVR/SCHSTORE.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1998-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
// SCHSTORE
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SCHSTORE_H__
sl@0
    19
#define __SCHSTORE_H__
sl@0
    20
sl@0
    21
// System includes
sl@0
    22
#include <s32file.h>
sl@0
    23
sl@0
    24
// Classes referenced
sl@0
    25
class CSchScheduleIndex;
sl@0
    26
class CSchClientIndex;
sl@0
    27
class CClientProxy;
sl@0
    28
class CSchLogManager;
sl@0
    29
class CSchedule;
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
@internalComponent
sl@0
    34
*/
sl@0
    35
class SchBackupManagerUtils
sl@0
    36
	{
sl@0
    37
public:
sl@0
    38
	enum TSchStorePanic
sl@0
    39
		{
sl@0
    40
		ESchBackupManagerScheduleStreamToReplaceNotFound,
sl@0
    41
		ESchBackupManagerScheduleStreamToDeleteNotFound,
sl@0
    42
		//
sl@0
    43
		ESchBackupManagerLast
sl@0
    44
		};
sl@0
    45
sl@0
    46
public:
sl@0
    47
	static void Panic(TSchStorePanic aPanic);
sl@0
    48
	};
sl@0
    49
sl@0
    50
sl@0
    51
/**
sl@0
    52
Schedule server backup file name.
sl@0
    53
@internalComponent
sl@0
    54
*/
sl@0
    55
_LIT(KSchsvrBackupFileName, "_:\\Private\\10005399\\SchedulesBackup.dat");
sl@0
    56
/**
sl@0
    57
Buffer descriptor to hold complete backup file name.
sl@0
    58
@internalComponent
sl@0
    59
*/
sl@0
    60
typedef TBuf<40> TBackupFileName;
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
/**
sl@0
    65
@internalComponent
sl@0
    66
*/
sl@0
    67
NONSHARABLE_CLASS(CSchBackupManager) : public CActive
sl@0
    68
	{
sl@0
    69
public:
sl@0
    70
	enum TSchBackupOperation
sl@0
    71
		{
sl@0
    72
		ESchBackupOperationAdd,
sl@0
    73
		ESchBackupOperationEdit,
sl@0
    74
		ESchBackupOperationDelete
sl@0
    75
		};
sl@0
    76
sl@0
    77
public:
sl@0
    78
	CSchBackupManager(RFs& aFsSession);
sl@0
    79
	~CSchBackupManager();
sl@0
    80
	void ConstructL();
sl@0
    81
sl@0
    82
public:
sl@0
    83
	void RestoreL(TPriQue<CClientProxy>& aClients, 
sl@0
    84
				TSglQue<CSchedule>& aTimeSchedules,
sl@0
    85
				CSchLogManager& aSchLogManager,TBool aBUR=EFalse);
sl@0
    86
	void CreateEmptyBackupL();
sl@0
    87
	//
sl@0
    88
	void PerformStoreOperationL(TSchBackupOperation aAction, const CSchedule& aSchedule);
sl@0
    89
	void PerformStoreOperationL(TSchBackupOperation aAction, const CClientProxy& aClient);
sl@0
    90
sl@0
    91
private:
sl@0
    92
	// The backup manager need to compact the store every now and then. It does
sl@0
    93
	// this as an idle operation and therefore needs to be CActive-based.
sl@0
    94
	void RunL();
sl@0
    95
	void DoCancel();
sl@0
    96
	void DoCreateEmptyBackupL();
sl@0
    97
sl@0
    98
private:
sl@0
    99
	void StoreChangedL();
sl@0
   100
	inline TInt RecordStoreChange() { return ++iStoreChangeCount; }
sl@0
   101
	inline void ResetStoreChanges() { iStoreChangeCount = 0; }
sl@0
   102
sl@0
   103
private:
sl@0
   104
	CPermanentFileStore* OpenBackupStoreLC();
sl@0
   105
	CPermanentFileStore* OpenOrCreateBackupStoreLC();
sl@0
   106
	//
sl@0
   107
	void CleanupRevertPushLC(CStreamStore& aStore);
sl@0
   108
	static void RevertStore(TAny* aStore);
sl@0
   109
	//
sl@0
   110
	void WriteRootStreamL(CStreamStore& aStore);
sl@0
   111
sl@0
   112
private:
sl@0
   113
sl@0
   114
	RFs& iFsSession;
sl@0
   115
	
sl@0
   116
	// The number of times the store has changed since it was last
sl@0
   117
	// compacted.
sl@0
   118
	TInt iStoreChangeCount;
sl@0
   119
sl@0
   120
	// Used to compact the store.
sl@0
   121
	RStoreReclaim iStoreReclaimer;
sl@0
   122
sl@0
   123
	// Used internally by the reclaimer to judge how much work is left to do.
sl@0
   124
	TPckgBuf<TInt> iStoreReclaimerCount;
sl@0
   125
sl@0
   126
	// A pointer to the store that has been opened for compaction purposes.
sl@0
   127
	// During normal operation of the backup manager, this pointer will
sl@0
   128
	// be NULL. However, when performing compaction, the store must be
sl@0
   129
	// open at all times and since processing is carried out as a series of
sl@0
   130
	// active object steps, we need to anchor it to the class.
sl@0
   131
	CStreamStore* iStoreOpenForCompaction;
sl@0
   132
sl@0
   133
	// The index to the schedule stream
sl@0
   134
	TStreamId iIndexStreamSchedules;
sl@0
   135
sl@0
   136
	// The index to the client stream
sl@0
   137
	TStreamId iIndexStreamClients;
sl@0
   138
	
sl@0
   139
	// The two pseudo-dictionary classes that manage mappings between
sl@0
   140
	// (clients and streams) and (schedules and streams).
sl@0
   141
	CSchClientIndex* iClientIndex;
sl@0
   142
	CSchScheduleIndex* iScheduleIndex;
sl@0
   143
	
sl@0
   144
	// backup file name
sl@0
   145
	TBackupFileName iBackupFileName;
sl@0
   146
	};
sl@0
   147
sl@0
   148
sl@0
   149
sl@0
   150
sl@0
   151
/**
sl@0
   152
@internalComponent
sl@0
   153
*/
sl@0
   154
class CSchScheduleIndex : public CBase
sl@0
   155
	{
sl@0
   156
public:
sl@0
   157
	static CSchScheduleIndex* NewL();
sl@0
   158
sl@0
   159
private:
sl@0
   160
	CSchScheduleIndex();
sl@0
   161
sl@0
   162
public:
sl@0
   163
	void RestoreSchedulesL(TSglQue<CSchedule>& aTimeSchedules, 
sl@0
   164
						CStreamStore& aStore, 
sl@0
   165
						TStreamId aDictionaryStreamId);
sl@0
   166
	TStreamId CreateEmptyIndexL(CStreamStore& aStore) const;
sl@0
   167
	//
sl@0
   168
	void AddL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
sl@0
   169
	void EditL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
sl@0
   170
	void DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CSchedule& aSchedule);
sl@0
   171
sl@0
   172
public:
sl@0
   173
	class TSchScheduleMapplet
sl@0
   174
		{
sl@0
   175
	public:
sl@0
   176
		inline TSchScheduleMapplet() { }
sl@0
   177
		inline TSchScheduleMapplet(TInt aKey, TStreamId aStream) : iKey(aKey), iStream(aStream) { }
sl@0
   178
sl@0
   179
	public:
sl@0
   180
		void InternalizeL(RReadStream& aStream) { iKey = aStream.ReadInt32L(); aStream >> iStream; }
sl@0
   181
		void ExternalizeL(RWriteStream& aStream) const { aStream.WriteInt32L(iKey); aStream << iStream; }
sl@0
   182
sl@0
   183
	public:
sl@0
   184
		inline void SetStream(TStreamId aStream) { iStream = aStream; }
sl@0
   185
		inline TStreamId Stream() const { return iStream; }
sl@0
   186
sl@0
   187
	public:
sl@0
   188
		inline static TInt KeyOffset() { return _FOFF(TSchScheduleMapplet, iKey); }
sl@0
   189
sl@0
   190
	private:
sl@0
   191
		TInt iKey;
sl@0
   192
		TStreamId iStream;
sl@0
   193
		};
sl@0
   194
	
sl@0
   195
private:
sl@0
   196
sl@0
   197
	NONSHARABLE_CLASS(CSchScheduleDictionary) : public CBase
sl@0
   198
		{
sl@0
   199
	public:
sl@0
   200
		static CSchScheduleDictionary* NewLC();
sl@0
   201
		~CSchScheduleDictionary();
sl@0
   202
sl@0
   203
	private:
sl@0
   204
		CSchScheduleDictionary();
sl@0
   205
		void ConstructL();
sl@0
   206
sl@0
   207
	public:
sl@0
   208
		void AssignL(TInt aKey, TStreamId aId);
sl@0
   209
		void Remove(TInt aKey);
sl@0
   210
		TInt Count() const;
sl@0
   211
		//
sl@0
   212
		TStreamId At(TInt aKey) const;
sl@0
   213
		TStreamId AtIndex(TInt aIndex) const;
sl@0
   214
		//
sl@0
   215
		void InternalizeL(RReadStream& aStream);
sl@0
   216
		void ExternalizeL(RWriteStream& aStream) const;
sl@0
   217
sl@0
   218
	private:
sl@0
   219
		CArrayFix<TSchScheduleMapplet>* iMappings;
sl@0
   220
		};
sl@0
   221
sl@0
   222
private:
sl@0
   223
	CSchScheduleDictionary* DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream);
sl@0
   224
	void StoreDictionaryL(CStreamStore& aStore, const CSchScheduleDictionary& aDictionary, TStreamId aStreamToReplace);
sl@0
   225
	};
sl@0
   226
sl@0
   227
sl@0
   228
/**
sl@0
   229
@internalComponent
sl@0
   230
*/
sl@0
   231
class CSchClientIndex : public CBase
sl@0
   232
	{
sl@0
   233
public:
sl@0
   234
	static CSchClientIndex* NewL(RFs& aFsSession);
sl@0
   235
	
sl@0
   236
private:
sl@0
   237
	CSchClientIndex(RFs& aFsSession);
sl@0
   238
sl@0
   239
public:
sl@0
   240
	void RestoreClientsL(TPriQue<CClientProxy>& aClients, 
sl@0
   241
							CStreamStore& aStore, 
sl@0
   242
							TStreamId aIndexStream,
sl@0
   243
							CSchLogManager& aSchLogManager,TBool aBUR=EFalse);
sl@0
   244
	TStreamId CreateEmptyIndexL(CStreamStore& aStore) const;
sl@0
   245
	void AppendClientToListL(TPriQue<CClientProxy>& aClients, CClientProxy* aClient);
sl@0
   246
public:
sl@0
   247
	void AddL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
sl@0
   248
	void EditL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
sl@0
   249
	void DeleteL(TStreamId aIndexStream, CStreamStore& aStore, const CClientProxy& aClient);
sl@0
   250
sl@0
   251
public:
sl@0
   252
	NONSHARABLE_CLASS(CSchClientMapplet) : public CBase
sl@0
   253
		{
sl@0
   254
	public:
sl@0
   255
		static CSchClientMapplet* NewLC(RReadStream& aStream);
sl@0
   256
		static CSchClientMapplet* NewLC(const TDesC& aKey, TStreamId aStream);
sl@0
   257
		~CSchClientMapplet();
sl@0
   258
sl@0
   259
	public:
sl@0
   260
		void InternalizeL(RReadStream& aStream);
sl@0
   261
		void ExternalizeL(RWriteStream& aStream) const;
sl@0
   262
sl@0
   263
	public:
sl@0
   264
		inline const TDesC& Key() const { return *iKey; }
sl@0
   265
		inline TStreamId Stream() const { return iStream; }
sl@0
   266
		//
sl@0
   267
		inline void SetStream(TStreamId aStream) { iStream = aStream; }
sl@0
   268
		//
sl@0
   269
		inline static TInt KeyOffset() { return _FOFF(CSchClientMapplet, iStream); }
sl@0
   270
sl@0
   271
	private:
sl@0
   272
		HBufC* iKey;
sl@0
   273
		TStreamId iStream;
sl@0
   274
		};
sl@0
   275
sl@0
   276
private:
sl@0
   277
	NONSHARABLE_CLASS(CSchClientDictionary) : public CBase
sl@0
   278
		{
sl@0
   279
	public:
sl@0
   280
		static CSchClientDictionary* NewLC();
sl@0
   281
		~CSchClientDictionary();
sl@0
   282
sl@0
   283
	private:
sl@0
   284
		CSchClientDictionary();
sl@0
   285
		void ConstructL();
sl@0
   286
sl@0
   287
	public:
sl@0
   288
		void AssignL(const TDesC& aKey, TStreamId aId);
sl@0
   289
		void RemoveL(const TDesC& aKey);
sl@0
   290
		TInt Count() const;
sl@0
   291
		TStreamId AtL(const TDesC& aKey) const;
sl@0
   292
		TStreamId AtIndex(TInt aIndex) const;
sl@0
   293
sl@0
   294
	public:
sl@0
   295
		void InternalizeL(RReadStream& aStream);
sl@0
   296
		void ExternalizeL(RWriteStream& aStream) const;
sl@0
   297
sl@0
   298
	private:
sl@0
   299
		CArrayPtr<CSchClientMapplet>* iMappings;
sl@0
   300
		};
sl@0
   301
sl@0
   302
private:
sl@0
   303
	CSchClientDictionary* DictionaryLC(CStreamStore& aStore, TStreamId aIndexStream);
sl@0
   304
	void StoreDictionaryL(CStreamStore& aStore, const CSchClientDictionary& aDictionary, TStreamId aStreamToReplace);
sl@0
   305
sl@0
   306
private:
sl@0
   307
	RFs& iFsSession;
sl@0
   308
	};
sl@0
   309
sl@0
   310
sl@0
   311
#endif