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 |
#include "UP_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
19 |
|
sl@0
|
20 |
const TInt KMemPoolGranularity=16;
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C void MPagePool::PushL()
|
sl@0
|
23 |
/** Pushes this object onto the cleanup stack. */
|
sl@0
|
24 |
{
|
sl@0
|
25 |
CleanupStack::PushL(TCleanupItem(REINTERPRET_CAST(TCleanupOperation,AcquireL()),this));
|
sl@0
|
26 |
// platform dependency
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
EXPORT_C void MPagePool::Delete(TPageRef aRef)
|
sl@0
|
30 |
/** Deletes a page, ignoring any errors.
|
sl@0
|
31 |
|
sl@0
|
32 |
@param aRef Reference to the page to delete */
|
sl@0
|
33 |
{
|
sl@0
|
34 |
TRAPD(ignore,DeleteL(aRef));
|
sl@0
|
35 |
UNUSED_VAR(ignore);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
EXPORT_C void MPagePool::DeleteL(TPageRef aRef)
|
sl@0
|
39 |
/** Deletes a page, leaving if an error occurs.
|
sl@0
|
40 |
|
sl@0
|
41 |
@param aRef Reference to the page to delete */
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if (aRef!=KNullPageRef)
|
sl@0
|
44 |
DoDeleteL(aRef);
|
sl@0
|
45 |
}
|
sl@0
|
46 |
|
sl@0
|
47 |
EXPORT_C CMemPagePool* CMemPagePool::NewL()
|
sl@0
|
48 |
/** Allocates and constructs a new CMemPagePool object.
|
sl@0
|
49 |
|
sl@0
|
50 |
@return New CMemPagePool object */
|
sl@0
|
51 |
{
|
sl@0
|
52 |
CMemPagePool* pool=new(ELeave) CMemPagePool;
|
sl@0
|
53 |
return pool;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
EXPORT_C CMemPagePool *CMemPagePool::NewLC()
|
sl@0
|
57 |
/** Allocates and constructs a new CMemPagePool object, and leaves it on the cleanup
|
sl@0
|
58 |
stack.
|
sl@0
|
59 |
|
sl@0
|
60 |
@return New CMemPagePool object */
|
sl@0
|
61 |
{
|
sl@0
|
62 |
CMemPagePool* pool=NewL();
|
sl@0
|
63 |
CleanupStack::PushL(pool);
|
sl@0
|
64 |
return pool;
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
EXPORT_C CMemPagePool::CMemPagePool()
|
sl@0
|
68 |
: iPages(KMemPoolGranularity)
|
sl@0
|
69 |
/** Default constructor. */
|
sl@0
|
70 |
{}
|
sl@0
|
71 |
|
sl@0
|
72 |
EXPORT_C CMemPagePool::~CMemPagePool()
|
sl@0
|
73 |
/** Destructor.
|
sl@0
|
74 |
|
sl@0
|
75 |
On destruction, memory for all pages is freed. */
|
sl@0
|
76 |
{
|
sl@0
|
77 |
for (TInt ii=iPages.Count();--ii>=0;)
|
sl@0
|
78 |
User::Free(iPages[ii]);
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
EXPORT_C TPageAbandonFunction CMemPagePool::AcquireL()
|
sl@0
|
82 |
/** For memory-based pools, there is no need to abandon pages, so the function
|
sl@0
|
83 |
returned does nothing.
|
sl@0
|
84 |
|
sl@0
|
85 |
@return Function that does nothing. */
|
sl@0
|
86 |
{
|
sl@0
|
87 |
return &DoAbandon;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
EXPORT_C TAny* CMemPagePool::AllocL()
|
sl@0
|
91 |
/** Allocates a new unassigned page.
|
sl@0
|
92 |
|
sl@0
|
93 |
@return Newly allocated page. */
|
sl@0
|
94 |
{
|
sl@0
|
95 |
TAny* page=User::AllocLC(KPoolPageSize);
|
sl@0
|
96 |
iPages.AppendL(page);
|
sl@0
|
97 |
CleanupStack::Pop();
|
sl@0
|
98 |
return page;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
EXPORT_C TAny* CMemPagePool::LockL(TPageRef aRef)
|
sl@0
|
102 |
/** Returns a pointer to a specified page.
|
sl@0
|
103 |
|
sl@0
|
104 |
@param aRef Reference to the page to get
|
sl@0
|
105 |
@return Page specified by aRef */
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TAny* page=PageL(aRef);
|
sl@0
|
108 |
if (page==NULL)
|
sl@0
|
109 |
__LEAVE(KErrNotFound);
|
sl@0
|
110 |
//
|
sl@0
|
111 |
return page;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
EXPORT_C TPageRef CMemPagePool::AssignL(const TAny* __DEBUG(aPage),TPageReclamation)
|
sl@0
|
115 |
//
|
sl@0
|
116 |
// Assign a reference to a newly allocated page. Supports only a single unassigned page at a time.
|
sl@0
|
117 |
//
|
sl@0
|
118 |
{
|
sl@0
|
119 |
__ASSERT_DEBUG(iPages[iPages.Count()-1]==aPage,User::Invariant());
|
sl@0
|
120 |
return TPageRef(iPages.Count());
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
EXPORT_C void CMemPagePool::UpdateL(const TAny*)
|
sl@0
|
124 |
//
|
sl@0
|
125 |
// Memory-based pages don't need to be updated.
|
sl@0
|
126 |
//
|
sl@0
|
127 |
{}
|
sl@0
|
128 |
|
sl@0
|
129 |
EXPORT_C void CMemPagePool::Unlock(const TAny*,TPageChange)
|
sl@0
|
130 |
//
|
sl@0
|
131 |
// Memory-based pages don't need to be unlocked.
|
sl@0
|
132 |
//
|
sl@0
|
133 |
{}
|
sl@0
|
134 |
|
sl@0
|
135 |
EXPORT_C void CMemPagePool::DoDeleteL(TPageRef aRef)
|
sl@0
|
136 |
//
|
sl@0
|
137 |
// Delete the page denoted by aRef.
|
sl@0
|
138 |
//
|
sl@0
|
139 |
{
|
sl@0
|
140 |
TAny*& page=PageL(aRef);
|
sl@0
|
141 |
if (page==NULL)
|
sl@0
|
142 |
__LEAVE(KErrNotFound);
|
sl@0
|
143 |
//
|
sl@0
|
144 |
User::Free(page);
|
sl@0
|
145 |
page=NULL;
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
TAny*& CMemPagePool::PageL(TPageRef aRef)
|
sl@0
|
149 |
//
|
sl@0
|
150 |
// Return the page slot at aRef.
|
sl@0
|
151 |
//
|
sl@0
|
152 |
{
|
sl@0
|
153 |
TInt i=aRef.Value()-1;
|
sl@0
|
154 |
if (i<0||i>=iPages.Count())
|
sl@0
|
155 |
__LEAVE(KErrNotFound);
|
sl@0
|
156 |
//
|
sl@0
|
157 |
return iPages[i];
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
void CMemPagePool::DoAbandon(MPagePool&)
|
sl@0
|
161 |
//
|
sl@0
|
162 |
// Abandoning memory-based pages is a no-op.
|
sl@0
|
163 |
//
|
sl@0
|
164 |
{}
|
sl@0
|
165 |
|