os/persistentdata/persistentstorage/store/INC/S32PAGE.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
//
sl@0
    15
sl@0
    16
#if !defined(__S32PAGE_H__)
sl@0
    17
#define __S32PAGE_H__
sl@0
    18
#if !defined(__S32STRM_H__)
sl@0
    19
#include <s32strm.h>
sl@0
    20
#endif
sl@0
    21
sl@0
    22
/** Size of the pages in the page pool. */
sl@0
    23
const TInt KPoolPageSize=512;
sl@0
    24
//
sl@0
    25
const TUint32 KNullPageRefValue=0;
sl@0
    26
sl@0
    27
/**
sl@0
    28
 * @publishedAll 
sl@0
    29
 * @released
sl@0
    30
 * Encapsulates a page reference.
sl@0
    31
sl@0
    32
A page reference is an integer value that can be used to identify a page. 
sl@0
    33
 */
sl@0
    34
class TPageRef
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
	/** Default constructor. */
sl@0
    38
	inline TPageRef() {}
sl@0
    39
	inline TPageRef(TUint32 aValue);
sl@0
    40
//
sl@0
    41
	inline TBool operator==(TPageRef aRef) const;
sl@0
    42
	inline TBool operator!=(TPageRef aRef) const;
sl@0
    43
//
sl@0
    44
	inline void ExternalizeL(RWriteStream& aStream) const;
sl@0
    45
	inline void InternalizeL(RReadStream& aStream);
sl@0
    46
//
sl@0
    47
	inline TUint32 Value() const;
sl@0
    48
private:
sl@0
    49
	TUint32 iVal;
sl@0
    50
	};
sl@0
    51
#if defined(__NO_CLASS_CONSTS__)
sl@0
    52
#define KNullPageRef TPageRef(KNullPageRefValue)
sl@0
    53
#else
sl@0
    54
/** Defines a null page reference. */
sl@0
    55
const TPageRef KNullPageRef=TPageRef(KNullPageRefValue);
sl@0
    56
#endif
sl@0
    57
sl@0
    58
class MPagePool;
sl@0
    59
/** Typedef to define a function that abandons pages in page pool. It is used by 
sl@0
    60
MPagePool::AcquireL().
sl@0
    61
sl@0
    62
@see MPagePool::AcquireL() */
sl@0
    63
typedef void (*TPageAbandonFunction)(MPagePool& aPool);
sl@0
    64
sl@0
    65
/** Flags that define how allocated pages can be reclaimed.
sl@0
    66
sl@0
    67
A BTree can locate some pages even when the tree is broken, but not all. The 
sl@0
    68
ones it cannot track must be tracked by the page pool in order to reclaim 
sl@0
    69
the storage if the tree breaks. */
sl@0
    70
enum TPageReclamation 
sl@0
    71
	/** The page can be deleted, but its space not reclaimed.
sl@0
    72
	
sl@0
    73
	The page pool will not track these pages, so to retrieve the space the page 
sl@0
    74
	must be deleted explicitly. */
sl@0
    75
	{EPageDeleteOnly,
sl@0
    76
	/** Page can be reclaimed.
sl@0
    77
	
sl@0
    78
	The page pool will track these pages, and will be able to reclaim the pages 
sl@0
    79
	when, for example, RStorePagePool::ReclaimL() is called. */
sl@0
    80
	EPageReclaimable};
sl@0
    81
sl@0
    82
/** Flags that define how a page should be treated when it is unlocked. */
sl@0
    83
enum TPageChange 
sl@0
    84
	/** Unlock only. */
sl@0
    85
	{EPageNoChange,
sl@0
    86
	/** Mark the page as dirty. */
sl@0
    87
	EPageDirty,
sl@0
    88
	/** Mark the page as needing a safe update. */
sl@0
    89
	EPageUpdate,
sl@0
    90
	/** Discard the page. */
sl@0
    91
	EPageAbandon=-1};
sl@0
    92
sl@0
    93
sl@0
    94
/**
sl@0
    95
 * @publishedAll 
sl@0
    96
 * @released
sl@0
    97
 * Interface to a page pool, the storage abstraction used by the B-trees API. 
sl@0
    98
sl@0
    99
The interface is abstract and handles pages as TAny pointers. It is left to 
sl@0
   100
derived classes to implement page storage in a particular storage medium, 
sl@0
   101
such as memory or disk.  
sl@0
   102
*/
sl@0
   103
class MPagePool
sl@0
   104
	{
sl@0
   105
public:
sl@0
   106
	IMPORT_C void PushL();
sl@0
   107
	inline void Pop();
sl@0
   108
sl@0
   109
	/** Returns a function that abandons all locked pages for this page pool. 
sl@0
   110
	
sl@0
   111
	@return A function that abandons all locked pages for this page pool. */
sl@0
   112
	virtual TPageAbandonFunction AcquireL()=0;
sl@0
   113
//
sl@0
   114
	virtual TAny* AllocL()=0;
sl@0
   115
sl@0
   116
	/** Locks a page and returns a pointer to it.
sl@0
   117
	
sl@0
   118
	@param aRef Reference to the page to lock
sl@0
   119
	@return Locked page */
sl@0
   120
	virtual TAny* LockL(TPageRef aRef)=0;
sl@0
   121
//
sl@0
   122
	virtual TPageRef AssignL(const TAny* aPage,TPageReclamation aReclamation=EPageDeleteOnly)=0;
sl@0
   123
sl@0
   124
	/** Updates a page. 
sl@0
   125
	
sl@0
   126
	This can be used for cached pages that may have become outdated.
sl@0
   127
	
sl@0
   128
	@param aPage Page to update */
sl@0
   129
	virtual void UpdateL(const TAny* aPage)=0;
sl@0
   130
sl@0
   131
	/** Unlocks a page.
sl@0
   132
	
sl@0
   133
	@param aPage Page to unlock
sl@0
   134
	@param aChange How the page should be treated once it is unlocked */
sl@0
   135
	virtual void Unlock(const TAny* aPage,TPageChange aChange=EPageNoChange)=0;
sl@0
   136
//
sl@0
   137
	IMPORT_C void Delete(TPageRef aRef);
sl@0
   138
	IMPORT_C void DeleteL(TPageRef aRef);
sl@0
   139
protected:
sl@0
   140
	virtual void DoDeleteL(TPageRef aRef)=0;
sl@0
   141
	};
sl@0
   142
sl@0
   143
/**
sl@0
   144
 * @publishedAll 
sl@0
   145
 * @released
sl@0
   146
 * Uses memory to implement the MPagePool page pool interface.
sl@0
   147
sl@0
   148
The class allocates pages from the default heap, storing them in an array. 
sl@0
   149
This pool is not persistent.
sl@0
   150
 */
sl@0
   151
class CMemPagePool : public CBase,public MPagePool
sl@0
   152
	{
sl@0
   153
public:
sl@0
   154
	IMPORT_C static CMemPagePool* NewL();
sl@0
   155
	IMPORT_C static CMemPagePool* NewLC();
sl@0
   156
	IMPORT_C CMemPagePool();
sl@0
   157
	IMPORT_C ~CMemPagePool();
sl@0
   158
//
sl@0
   159
	IMPORT_C TPageAbandonFunction AcquireL();
sl@0
   160
	IMPORT_C TAny* AllocL();
sl@0
   161
	IMPORT_C TAny* LockL(TPageRef aRef);
sl@0
   162
	IMPORT_C TPageRef AssignL(const TAny* aPage,TPageReclamation aReclamation=EPageDeleteOnly);
sl@0
   163
	IMPORT_C void UpdateL(const TAny* aPage);
sl@0
   164
	IMPORT_C void Unlock(const TAny* aPage,TPageChange aChange=EPageNoChange);
sl@0
   165
protected:
sl@0
   166
	IMPORT_C void DoDeleteL(TPageRef aRef);
sl@0
   167
private:
sl@0
   168
	TAny*& PageL(TPageRef aRef);
sl@0
   169
	static void DoAbandon(MPagePool& aPool);
sl@0
   170
private:
sl@0
   171
	CArrayFixSeg<TAny*> iPages;
sl@0
   172
	};
sl@0
   173
//
sl@0
   174
#if defined(_DEBUG)&&!defined(__PAGE_CACHE_STATS)
sl@0
   175
//#define __PAGE_CACHE_STATS
sl@0
   176
#endif
sl@0
   177
//
sl@0
   178
class TCachePage;
sl@0
   179
struct SCachePage;
sl@0
   180
class TCachePagePool;
sl@0
   181
sl@0
   182
/**
sl@0
   183
 * @publishedAll 
sl@0
   184
 * @released
sl@0
   185
 * Provides a cache for page pools. 
sl@0
   186
sl@0
   187
Persistent page pools rely on a cache to provide in-memory space for their 
sl@0
   188
pages and to cache frequently accessed pages.  
sl@0
   189
*/
sl@0
   190
class CPageCache : public CBase
sl@0
   191
	{
sl@0
   192
public:
sl@0
   193
	enum {EDefaultPages=20};
sl@0
   194
#if defined(__PAGE_CACHE_STATS)
sl@0
   195
	
sl@0
   196
	/**
sl@0
   197
	 * @publishedAll 
sl@0
   198
	 * @released
sl@0
   199
	 */
sl@0
   200
	class TStats
sl@0
   201
		{
sl@0
   202
	public:
sl@0
   203
		inline TInt Requests() const;
sl@0
   204
		inline TInt Hits() const;
sl@0
   205
		inline TInt Misses() const;
sl@0
   206
		inline void Reset();
sl@0
   207
	private:
sl@0
   208
		inline void Hit();
sl@0
   209
		inline void Miss();
sl@0
   210
	private:
sl@0
   211
		TInt iRequests;
sl@0
   212
		TInt iMisses;
sl@0
   213
	private:
sl@0
   214
		friend class CPageCache;
sl@0
   215
		};
sl@0
   216
#endif
sl@0
   217
public:
sl@0
   218
	IMPORT_C static CPageCache* NewL(TInt aPages=EDefaultPages);
sl@0
   219
	IMPORT_C static CPageCache* NewLC(TInt aPages=EDefaultPages);
sl@0
   220
	IMPORT_C CPageCache();
sl@0
   221
	IMPORT_C void ConstructL(TInt aPages=EDefaultPages);
sl@0
   222
	IMPORT_C ~CPageCache();
sl@0
   223
//
sl@0
   224
#if defined(__PAGE_CACHE_STATS)
sl@0
   225
	inline TStats& Stats();
sl@0
   226
	inline const TStats& Stats() const;
sl@0
   227
#endif
sl@0
   228
private:
sl@0
   229
	TCachePage* Find(TCachePagePool* aPool,TPageRef aRef);
sl@0
   230
private:
sl@0
   231
	SCachePage* iPages;
sl@0
   232
	SCachePage* iEnd;
sl@0
   233
	TDblQue<TCachePage> iFree;
sl@0
   234
#if defined(__PAGE_CACHE_STATS)
sl@0
   235
	TStats iStats;
sl@0
   236
#endif
sl@0
   237
private:
sl@0
   238
	friend class TCachePagePool;
sl@0
   239
	};
sl@0
   240
sl@0
   241
/**
sl@0
   242
 * @publishedAll 
sl@0
   243
 * @released
sl@0
   244
 * Provides a page pool with cached pages.
sl@0
   245
sl@0
   246
It is an intermediary class, used in the definition of page pools that use 
sl@0
   247
a cache, such as RFilePagePool and RStorePagePool.
sl@0
   248
sl@0
   249
@see RFilePagePool
sl@0
   250
@see RStorePagePool  
sl@0
   251
*/
sl@0
   252
class TCachePagePool : public MPagePool
sl@0
   253
	{
sl@0
   254
public:
sl@0
   255
	inline void Set(CPageCache& aCache);
sl@0
   256
//
sl@0
   257
	IMPORT_C TPageAbandonFunction AcquireL();
sl@0
   258
	IMPORT_C TAny* AllocL();
sl@0
   259
	IMPORT_C TAny* LockL(TPageRef aRef);
sl@0
   260
	IMPORT_C TPageRef AssignL(const TAny* aPage,TPageReclamation aReclamation=EPageDeleteOnly);
sl@0
   261
	IMPORT_C void UpdateL(const TAny* aPage);
sl@0
   262
	IMPORT_C void Unlock(const TAny* aPage,TPageChange aChange=EPageNoChange);
sl@0
   263
//
sl@0
   264
	IMPORT_C TInt Flush();
sl@0
   265
	IMPORT_C void FlushL();
sl@0
   266
	IMPORT_C void Purge();
sl@0
   267
protected:
sl@0
   268
	inline TCachePagePool();
sl@0
   269
	inline TCachePagePool(CPageCache& aCache);
sl@0
   270
	IMPORT_C void DoDeleteL(TPageRef aRef);
sl@0
   271
private:
sl@0
   272
	virtual TPageRef ExtendL(const TAny* aPage,TPageReclamation aReclamation)=0;
sl@0
   273
	virtual void WriteL(TPageRef aRef,const TAny* aPage,TPageChange aChange)=0;
sl@0
   274
	virtual void ReadL(TPageRef aRef,TAny* aPage)=0;
sl@0
   275
//
sl@0
   276
	static void DoAbandon(MPagePool& aPool);
sl@0
   277
	static TCachePage* DoAllocL(CPageCache& aCache);
sl@0
   278
private:
sl@0
   279
	CPageCache* iCache;
sl@0
   280
	};
sl@0
   281
sl@0
   282
#include <s32page.inl>
sl@0
   283
#endif