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