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.
16 #if !defined(__S32PAGE_H__)
18 #if !defined(__S32STRM_H__)
22 /** Size of the pages in the page pool. */
23 const TInt KPoolPageSize=512;
25 const TUint32 KNullPageRefValue=0;
30 * Encapsulates a page reference.
32 A page reference is an integer value that can be used to identify a page.
37 /** Default constructor. */
39 inline TPageRef(TUint32 aValue);
41 inline TBool operator==(TPageRef aRef) const;
42 inline TBool operator!=(TPageRef aRef) const;
44 inline void ExternalizeL(RWriteStream& aStream) const;
45 inline void InternalizeL(RReadStream& aStream);
47 inline TUint32 Value() const;
51 #if defined(__NO_CLASS_CONSTS__)
52 #define KNullPageRef TPageRef(KNullPageRefValue)
54 /** Defines a null page reference. */
55 const TPageRef KNullPageRef=TPageRef(KNullPageRefValue);
59 /** Typedef to define a function that abandons pages in page pool. It is used by
60 MPagePool::AcquireL().
62 @see MPagePool::AcquireL() */
63 typedef void (*TPageAbandonFunction)(MPagePool& aPool);
65 /** Flags that define how allocated pages can be reclaimed.
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. */
71 /** The page can be deleted, but its space not reclaimed.
73 The page pool will not track these pages, so to retrieve the space the page
74 must be deleted explicitly. */
76 /** Page can be reclaimed.
78 The page pool will track these pages, and will be able to reclaim the pages
79 when, for example, RStorePagePool::ReclaimL() is called. */
82 /** Flags that define how a page should be treated when it is unlocked. */
86 /** Mark the page as dirty. */
88 /** Mark the page as needing a safe update. */
90 /** Discard the page. */
97 * Interface to a page pool, the storage abstraction used by the B-trees API.
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.
106 IMPORT_C void PushL();
109 /** Returns a function that abandons all locked pages for this page pool.
111 @return A function that abandons all locked pages for this page pool. */
112 virtual TPageAbandonFunction AcquireL()=0;
114 virtual TAny* AllocL()=0;
116 /** Locks a page and returns a pointer to it.
118 @param aRef Reference to the page to lock
119 @return Locked page */
120 virtual TAny* LockL(TPageRef aRef)=0;
122 virtual TPageRef AssignL(const TAny* aPage,TPageReclamation aReclamation=EPageDeleteOnly)=0;
126 This can be used for cached pages that may have become outdated.
128 @param aPage Page to update */
129 virtual void UpdateL(const TAny* aPage)=0;
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;
137 IMPORT_C void Delete(TPageRef aRef);
138 IMPORT_C void DeleteL(TPageRef aRef);
140 virtual void DoDeleteL(TPageRef aRef)=0;
146 * Uses memory to implement the MPagePool page pool interface.
148 The class allocates pages from the default heap, storing them in an array.
149 This pool is not persistent.
151 class CMemPagePool : public CBase,public MPagePool
154 IMPORT_C static CMemPagePool* NewL();
155 IMPORT_C static CMemPagePool* NewLC();
156 IMPORT_C CMemPagePool();
157 IMPORT_C ~CMemPagePool();
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);
166 IMPORT_C void DoDeleteL(TPageRef aRef);
168 TAny*& PageL(TPageRef aRef);
169 static void DoAbandon(MPagePool& aPool);
171 CArrayFixSeg<TAny*> iPages;
174 #if defined(_DEBUG)&&!defined(__PAGE_CACHE_STATS)
175 //#define __PAGE_CACHE_STATS
180 class TCachePagePool;
185 * Provides a cache for page pools.
187 Persistent page pools rely on a cache to provide in-memory space for their
188 pages and to cache frequently accessed pages.
190 class CPageCache : public CBase
193 enum {EDefaultPages=20};
194 #if defined(__PAGE_CACHE_STATS)
203 inline TInt Requests() const;
204 inline TInt Hits() const;
205 inline TInt Misses() const;
214 friend class CPageCache;
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();
224 #if defined(__PAGE_CACHE_STATS)
225 inline TStats& Stats();
226 inline const TStats& Stats() const;
229 TCachePage* Find(TCachePagePool* aPool,TPageRef aRef);
233 TDblQue<TCachePage> iFree;
234 #if defined(__PAGE_CACHE_STATS)
238 friend class TCachePagePool;
244 * Provides a page pool with cached pages.
246 It is an intermediary class, used in the definition of page pools that use
247 a cache, such as RFilePagePool and RStorePagePool.
252 class TCachePagePool : public MPagePool
255 inline void Set(CPageCache& aCache);
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);
264 IMPORT_C TInt Flush();
265 IMPORT_C void FlushL();
266 IMPORT_C void Purge();
268 inline TCachePagePool();
269 inline TCachePagePool(CPageCache& aCache);
270 IMPORT_C void DoDeleteL(TPageRef aRef);
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;
276 static void DoAbandon(MPagePool& aPool);
277 static TCachePage* DoAllocL(CPageCache& aCache);
282 #include <s32page.inl>