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 #define UNUSED_VAR(a) a = a
20 const TInt KMemPoolGranularity=16;
22 EXPORT_C void MPagePool::PushL()
23 /** Pushes this object onto the cleanup stack. */
25 CleanupStack::PushL(TCleanupItem(REINTERPRET_CAST(TCleanupOperation,AcquireL()),this));
26 // platform dependency
29 EXPORT_C void MPagePool::Delete(TPageRef aRef)
30 /** Deletes a page, ignoring any errors.
32 @param aRef Reference to the page to delete */
34 TRAPD(ignore,DeleteL(aRef));
38 EXPORT_C void MPagePool::DeleteL(TPageRef aRef)
39 /** Deletes a page, leaving if an error occurs.
41 @param aRef Reference to the page to delete */
43 if (aRef!=KNullPageRef)
47 EXPORT_C CMemPagePool* CMemPagePool::NewL()
48 /** Allocates and constructs a new CMemPagePool object.
50 @return New CMemPagePool object */
52 CMemPagePool* pool=new(ELeave) CMemPagePool;
56 EXPORT_C CMemPagePool *CMemPagePool::NewLC()
57 /** Allocates and constructs a new CMemPagePool object, and leaves it on the cleanup
60 @return New CMemPagePool object */
62 CMemPagePool* pool=NewL();
63 CleanupStack::PushL(pool);
67 EXPORT_C CMemPagePool::CMemPagePool()
68 : iPages(KMemPoolGranularity)
69 /** Default constructor. */
72 EXPORT_C CMemPagePool::~CMemPagePool()
75 On destruction, memory for all pages is freed. */
77 for (TInt ii=iPages.Count();--ii>=0;)
78 User::Free(iPages[ii]);
81 EXPORT_C TPageAbandonFunction CMemPagePool::AcquireL()
82 /** For memory-based pools, there is no need to abandon pages, so the function
83 returned does nothing.
85 @return Function that does nothing. */
90 EXPORT_C TAny* CMemPagePool::AllocL()
91 /** Allocates a new unassigned page.
93 @return Newly allocated page. */
95 TAny* page=User::AllocLC(KPoolPageSize);
101 EXPORT_C TAny* CMemPagePool::LockL(TPageRef aRef)
102 /** Returns a pointer to a specified page.
104 @param aRef Reference to the page to get
105 @return Page specified by aRef */
107 TAny* page=PageL(aRef);
109 __LEAVE(KErrNotFound);
114 EXPORT_C TPageRef CMemPagePool::AssignL(const TAny* __DEBUG(aPage),TPageReclamation)
116 // Assign a reference to a newly allocated page. Supports only a single unassigned page at a time.
119 __ASSERT_DEBUG(iPages[iPages.Count()-1]==aPage,User::Invariant());
120 return TPageRef(iPages.Count());
123 EXPORT_C void CMemPagePool::UpdateL(const TAny*)
125 // Memory-based pages don't need to be updated.
129 EXPORT_C void CMemPagePool::Unlock(const TAny*,TPageChange)
131 // Memory-based pages don't need to be unlocked.
135 EXPORT_C void CMemPagePool::DoDeleteL(TPageRef aRef)
137 // Delete the page denoted by aRef.
140 TAny*& page=PageL(aRef);
142 __LEAVE(KErrNotFound);
148 TAny*& CMemPagePool::PageL(TPageRef aRef)
150 // Return the page slot at aRef.
153 TInt i=aRef.Value()-1;
154 if (i<0||i>=iPages.Count())
155 __LEAVE(KErrNotFound);
160 void CMemPagePool::DoAbandon(MPagePool&)
162 // Abandoning memory-based pages is a no-op.