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 "UT_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
#define UNUSED_VAR(a) a = a
|
sl@0
|
19 |
|
sl@0
|
20 |
LOCAL_C TInt runL(MIncrementalCollector* aCollector)
|
sl@0
|
21 |
//
|
sl@0
|
22 |
// Collect synchronously until finished.
|
sl@0
|
23 |
//
|
sl@0
|
24 |
{
|
sl@0
|
25 |
TInt total=0;
|
sl@0
|
26 |
TInt step=0;
|
sl@0
|
27 |
CleanupReleasePushL(*aCollector);
|
sl@0
|
28 |
aCollector->ResetL(step);
|
sl@0
|
29 |
while (step>0)
|
sl@0
|
30 |
aCollector->NextL(step,total);
|
sl@0
|
31 |
CleanupStack::PopAndDestroy();
|
sl@0
|
32 |
return total;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
EXPORT_C void CStreamStore::Delete(TStreamId anId)
|
sl@0
|
36 |
/** Deletes the specified stream from this store.
|
sl@0
|
37 |
|
sl@0
|
38 |
This function is deprecated.
|
sl@0
|
39 |
|
sl@0
|
40 |
If unsuccessful, the function fails silently with no way to return information
|
sl@0
|
41 |
to the user.
|
sl@0
|
42 |
|
sl@0
|
43 |
The function is not supported by the direct file store, CDirectFileStore.
|
sl@0
|
44 |
|
sl@0
|
45 |
@param anId The id of the stream to be deleted. */
|
sl@0
|
46 |
{
|
sl@0
|
47 |
TRAPD(ignore,DeleteL(anId));
|
sl@0
|
48 |
UNUSED_VAR(ignore);
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
EXPORT_C void CStreamStore::DeleteL(TStreamId anId)
|
sl@0
|
52 |
/** Deletes the specified stream from this store, leaving if unsuccessful.
|
sl@0
|
53 |
|
sl@0
|
54 |
The function is not supported by the direct file store, CDirectFileStore.
|
sl@0
|
55 |
|
sl@0
|
56 |
@param anId The id of the stream to be deleted from this store.
|
sl@0
|
57 |
@see CDirectFileStore */
|
sl@0
|
58 |
{
|
sl@0
|
59 |
if (anId!=KNullStreamId)
|
sl@0
|
60 |
DoDeleteL(anId);
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
EXPORT_C TInt CStreamStore::Commit()
|
sl@0
|
64 |
/** Commits changes.
|
sl@0
|
65 |
|
sl@0
|
66 |
This function establishes a new commit point. Typically, this is done after
|
sl@0
|
67 |
changes to new or existing streams are complete and the streams themselves
|
sl@0
|
68 |
have been committed.
|
sl@0
|
69 |
|
sl@0
|
70 |
Establishing a new commit point makes changes to the store permanent. Until
|
sl@0
|
71 |
such changes are committed, they can be rolled back or reverted, effectively
|
sl@0
|
72 |
causing the store to revert back to its state before the changes were made.
|
sl@0
|
73 |
|
sl@0
|
74 |
This ensures that persistent data moves from one consistent state to another
|
sl@0
|
75 |
and guarantees the integrity of persistent store data in the event of failures.
|
sl@0
|
76 |
In particular, if a process terminates or a media failure occurs, the store
|
sl@0
|
77 |
reverts automatically to its state at the last successful commit point.
|
sl@0
|
78 |
|
sl@0
|
79 |
Note that this function is not implemented by the direct file store CDirectFileStore
|
sl@0
|
80 |
and the non-persistent in-memory store CBufStore.
|
sl@0
|
81 |
|
sl@0
|
82 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
83 |
codes.
|
sl@0
|
84 |
@see CDirectFileStore
|
sl@0
|
85 |
@see CBufStore */
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TRAPD(r,CommitL());
|
sl@0
|
88 |
return r;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C void CStreamStore::Revert()
|
sl@0
|
92 |
/** Rolls back the store to its state at the last commit point.
|
sl@0
|
93 |
|
sl@0
|
94 |
This function is deprecated; use RevertL() instead.
|
sl@0
|
95 |
|
sl@0
|
96 |
If unsuccessful, the function fails silently with no way to return information
|
sl@0
|
97 |
to the user.
|
sl@0
|
98 |
|
sl@0
|
99 |
The function is not supported by the direct file store CDirectFileStore and
|
sl@0
|
100 |
the non-persistent in-memory store CBufStore.
|
sl@0
|
101 |
|
sl@0
|
102 |
@see CDirectFileStore
|
sl@0
|
103 |
@see CBufStore */
|
sl@0
|
104 |
{
|
sl@0
|
105 |
TRAPD(ignore,RevertL());
|
sl@0
|
106 |
UNUSED_VAR(ignore);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
EXPORT_C TInt CStreamStore::ReclaimL()
|
sl@0
|
110 |
/** Reclaims space within a store, returning the total amount of free space available
|
sl@0
|
111 |
within that store.
|
sl@0
|
112 |
|
sl@0
|
113 |
The function does not return until the reclamation process is complete. This
|
sl@0
|
114 |
can take an extended amount of time.
|
sl@0
|
115 |
|
sl@0
|
116 |
The function is only supported by the permanent file store, CPermanentFileStore,
|
sl@0
|
117 |
but not by other derived classes, e.g., CDirectFileStore or CBufStore.
|
sl@0
|
118 |
|
sl@0
|
119 |
@return The amount of free space available within the store.
|
sl@0
|
120 |
@see CPermanentFileStore */
|
sl@0
|
121 |
{
|
sl@0
|
122 |
return runL(DoReclaimL());
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
EXPORT_C TInt CStreamStore::CompactL()
|
sl@0
|
126 |
/** Compacts the store. This returns free space to the appropriate system pool,
|
sl@0
|
127 |
for example, the filing system in the case of file-based stores.
|
sl@0
|
128 |
|
sl@0
|
129 |
On completion, the function returns the total amount of free space available
|
sl@0
|
130 |
within the store.
|
sl@0
|
131 |
|
sl@0
|
132 |
The function does not return until the compaction process is complete. This
|
sl@0
|
133 |
can take an extended amount of time.
|
sl@0
|
134 |
|
sl@0
|
135 |
Note:
|
sl@0
|
136 |
|
sl@0
|
137 |
this function is only supported by the permanent file store, CPermanentFileStore,
|
sl@0
|
138 |
and not by CDirectFileStore or CBufStore.
|
sl@0
|
139 |
|
sl@0
|
140 |
Streams must be closed before calling this function.
|
sl@0
|
141 |
|
sl@0
|
142 |
@return The amount of free space available within the store.
|
sl@0
|
143 |
@see CPermanentFileStore */
|
sl@0
|
144 |
{
|
sl@0
|
145 |
return runL(DoCompactL());
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
EXPORT_C TStreamId CStreamStore::DoExtendL()
|
sl@0
|
149 |
/** Generates a new stream within this store, and returns its id. This function
|
sl@0
|
150 |
is intended to create a new stream in advance of being written to.
|
sl@0
|
151 |
|
sl@0
|
152 |
This is called by ExtendL().
|
sl@0
|
153 |
|
sl@0
|
154 |
@return The new stream id.
|
sl@0
|
155 |
@see CStreamStore::ExtendL() */
|
sl@0
|
156 |
{
|
sl@0
|
157 |
__LEAVE(KErrNotSupported);
|
sl@0
|
158 |
return KNullStreamId;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
EXPORT_C void CStreamStore::DoDeleteL(TStreamId)
|
sl@0
|
162 |
//
|
sl@0
|
163 |
// Default implementation failing.
|
sl@0
|
164 |
//
|
sl@0
|
165 |
{
|
sl@0
|
166 |
__LEAVE(KErrNotSupported);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
EXPORT_C MStreamBuf* CStreamStore::DoWriteL(TStreamId)
|
sl@0
|
170 |
//
|
sl@0
|
171 |
// Default implementation failing.
|
sl@0
|
172 |
//
|
sl@0
|
173 |
{
|
sl@0
|
174 |
__LEAVE(KErrNotSupported);
|
sl@0
|
175 |
return NULL;
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
EXPORT_C MStreamBuf* CStreamStore::DoReplaceL(TStreamId)
|
sl@0
|
179 |
//
|
sl@0
|
180 |
// Default implementation failing.
|
sl@0
|
181 |
//
|
sl@0
|
182 |
{
|
sl@0
|
183 |
__LEAVE(KErrNotSupported);
|
sl@0
|
184 |
return NULL;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
EXPORT_C void CStreamStore::DoCommitL()
|
sl@0
|
188 |
/** Commits any changes to the store. For a store that provides atomic updates,
|
sl@0
|
189 |
this writes all of the pending updates to the to the permanent storage medium.
|
sl@0
|
190 |
After committing the store contains all or none of the updates since the last
|
sl@0
|
191 |
commit/revert.
|
sl@0
|
192 |
|
sl@0
|
193 |
This function provides the implementation for the public CommitL() function. */
|
sl@0
|
194 |
{}
|
sl@0
|
195 |
|
sl@0
|
196 |
EXPORT_C void CStreamStore::DoRevertL()
|
sl@0
|
197 |
/** Discards any pending changes to the store. This includes all changes which
|
sl@0
|
198 |
have not been committed to a permanent storage medium.
|
sl@0
|
199 |
|
sl@0
|
200 |
This function provides the implementation for the public Revert() function.
|
sl@0
|
201 |
|
sl@0
|
202 |
Note:
|
sl@0
|
203 |
|
sl@0
|
204 |
The function need only be implemented by stores that provide atomic updates,
|
sl@0
|
205 |
as revert has no meaning for other implementations. */
|
sl@0
|
206 |
{
|
sl@0
|
207 |
__LEAVE(KErrNotSupported);
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
EXPORT_C MIncrementalCollector* CStreamStore::DoReclaimL()
|
sl@0
|
211 |
/** Initialises an object for reclaiming space in the store. This function provides
|
sl@0
|
212 |
the direct implementation for RStoreReclaim::OpenL().
|
sl@0
|
213 |
|
sl@0
|
214 |
Note:
|
sl@0
|
215 |
|
sl@0
|
216 |
Actually reclaiming the space is done by repeated calls to MIncrementalCollector::Next(),
|
sl@0
|
217 |
before releasing the object.
|
sl@0
|
218 |
|
sl@0
|
219 |
@return Pointer to an incremental collector, which implements the interface
|
sl@0
|
220 |
for reclaiming store space. */
|
sl@0
|
221 |
{
|
sl@0
|
222 |
__LEAVE(KErrNotSupported);
|
sl@0
|
223 |
return NULL;
|
sl@0
|
224 |
}
|
sl@0
|
225 |
|
sl@0
|
226 |
EXPORT_C MIncrementalCollector* CStreamStore::DoCompactL()
|
sl@0
|
227 |
/** Initialises an object for compacting space in the store. This function provides
|
sl@0
|
228 |
the direct implementation for RStoreReclaim::CompactL().
|
sl@0
|
229 |
|
sl@0
|
230 |
Note:
|
sl@0
|
231 |
|
sl@0
|
232 |
Actually compacting the space is done by repeated calls to MIncrementalCollector::Next()
|
sl@0
|
233 |
before releasing the object.
|
sl@0
|
234 |
|
sl@0
|
235 |
@return Pointer to an incremental collector, which implements the interface
|
sl@0
|
236 |
for compacting store space. */
|
sl@0
|
237 |
{
|
sl@0
|
238 |
__LEAVE(KErrNotSupported);
|
sl@0
|
239 |
return NULL;
|
sl@0
|
240 |
}
|
sl@0
|
241 |
|
sl@0
|
242 |
EXPORT_C void CPersistentStore::DoSetRootL(TStreamId anId)
|
sl@0
|
243 |
/** Implements the setting of theroot stream.
|
sl@0
|
244 |
|
sl@0
|
245 |
This function is called by SetRootL()
|
sl@0
|
246 |
|
sl@0
|
247 |
@param anId The id of the stream which is to be the root stream of the store.
|
sl@0
|
248 |
@see CPersistentStore::SetRootL() */
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iRoot=anId;
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
EXPORT_C void RStoreReclaim::OpenL(CStreamStore& aStore,TInt& aCount)
|
sl@0
|
254 |
/** Prepares the object to perform space reclamation.
|
sl@0
|
255 |
|
sl@0
|
256 |
@param aStore A reference to the store on which space reclamation or compaction
|
sl@0
|
257 |
is to be performed.
|
sl@0
|
258 |
@param aCount A reference to a control value set by these functions. This value
|
sl@0
|
259 |
is required by all variants of Next() and NextL() (and ResetL(), if used). */
|
sl@0
|
260 |
{
|
sl@0
|
261 |
OpenLC(aStore,aCount);
|
sl@0
|
262 |
CleanupStack::Pop();
|
sl@0
|
263 |
}
|
sl@0
|
264 |
|
sl@0
|
265 |
EXPORT_C void RStoreReclaim::OpenLC(CStreamStore& aStore,TInt& aCount)
|
sl@0
|
266 |
/** Prepares the object to perform space reclamation and puts a pointer onto the
|
sl@0
|
267 |
cleanup stack.
|
sl@0
|
268 |
|
sl@0
|
269 |
Placing a cleanup item for the object onto the cleanup stack allows allocated
|
sl@0
|
270 |
resources to be cleaned up if a subsequent leave occurs.
|
sl@0
|
271 |
|
sl@0
|
272 |
@param aStore A reference to the store on which space reclamation or compaction
|
sl@0
|
273 |
is to be performed.
|
sl@0
|
274 |
@param aCount A reference to a control value set by these functions. This value
|
sl@0
|
275 |
is required by all variants of Next() and NextL() (and ResetL(), if used). */
|
sl@0
|
276 |
{
|
sl@0
|
277 |
iCol=aStore.DoReclaimL();
|
sl@0
|
278 |
CleanupReleasePushL(*this);
|
sl@0
|
279 |
ResetL(aCount);
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
EXPORT_C void RStoreReclaim::CompactL(CStreamStore& aStore,TInt& aCount)
|
sl@0
|
283 |
/** Prepares the object to perform compaction.
|
sl@0
|
284 |
|
sl@0
|
285 |
Streams must be closed before calling this function.
|
sl@0
|
286 |
|
sl@0
|
287 |
@param aStore A reference to the store on which space reclamation or compaction
|
sl@0
|
288 |
is to be performed.
|
sl@0
|
289 |
@param aCount A reference to a control value set by these functions. This value
|
sl@0
|
290 |
is required by all variants of Next() and NextL() (and ResetL(), if used). */
|
sl@0
|
291 |
{
|
sl@0
|
292 |
CompactLC(aStore,aCount);
|
sl@0
|
293 |
CleanupStack::Pop();
|
sl@0
|
294 |
}
|
sl@0
|
295 |
|
sl@0
|
296 |
EXPORT_C void RStoreReclaim::CompactLC(CStreamStore& aStore,TInt& aCount)
|
sl@0
|
297 |
/** Prepares the object to perform compaction, putting a cleanup item onto the
|
sl@0
|
298 |
cleanup stack.
|
sl@0
|
299 |
|
sl@0
|
300 |
P lacing a cleanup item for the object onto the cleanup stack allows allocated
|
sl@0
|
301 |
resources to be cleaned up if a subsequent leave occurs.
|
sl@0
|
302 |
|
sl@0
|
303 |
Streams must be closed before calling this function.
|
sl@0
|
304 |
|
sl@0
|
305 |
@param aStore A reference to the store on which space reclamation or compaction
|
sl@0
|
306 |
is to be performed.
|
sl@0
|
307 |
@param aCount A reference to a control value set by these functions. This value
|
sl@0
|
308 |
is required by all variants of Next() and NextL() (and ResetL(), if used). */
|
sl@0
|
309 |
{
|
sl@0
|
310 |
iCol=aStore.DoCompactL();
|
sl@0
|
311 |
CleanupReleasePushL(*this);
|
sl@0
|
312 |
ResetL(aCount);
|
sl@0
|
313 |
}
|
sl@0
|
314 |
|
sl@0
|
315 |
EXPORT_C void RStoreReclaim::Release()
|
sl@0
|
316 |
/** Releases allocated resources. Any space reclamation or compaction in progress
|
sl@0
|
317 |
is abandoned.
|
sl@0
|
318 |
|
sl@0
|
319 |
Notes:
|
sl@0
|
320 |
|
sl@0
|
321 |
If a cleanup item was placed on the cleanup stack when the RStoreReclaim object
|
sl@0
|
322 |
was prepared for space reclamation or compaction (i.e. by a call to OpenLC()
|
sl@0
|
323 |
or CompactLC()), then this function need not be called explicitly; clean up
|
sl@0
|
324 |
is implicitly done by CleanupStack::PopAndDestroy().
|
sl@0
|
325 |
|
sl@0
|
326 |
The ResetL() member function can be used to restart abandoned space reclamation
|
sl@0
|
327 |
or compaction activity. */
|
sl@0
|
328 |
{
|
sl@0
|
329 |
if (iCol!=NULL)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
iCol->Release();
|
sl@0
|
332 |
iCol=NULL;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
}
|
sl@0
|
335 |
|
sl@0
|
336 |
EXPORT_C void RStoreReclaim::ResetL(TInt& aCount)
|
sl@0
|
337 |
/** Restarts space reclamation or compaction.
|
sl@0
|
338 |
|
sl@0
|
339 |
The value in aCount must be:
|
sl@0
|
340 |
|
sl@0
|
341 |
that which was set by the most recent call to Next() or NextL(), if space
|
sl@0
|
342 |
reclamation or compaction had been started.
|
sl@0
|
343 |
|
sl@0
|
344 |
that which was set by OpenL(), OpenLC(), CompactL() or CompactLC(), if space
|
sl@0
|
345 |
reclamation or compaction had not been started.
|
sl@0
|
346 |
|
sl@0
|
347 |
@param aCount A reference to a control value originally set by OpenL(), OpenLC(),
|
sl@0
|
348 |
CompactL() or CompactLC() and updated by subsequent calls to Next() or NextL(). */
|
sl@0
|
349 |
{
|
sl@0
|
350 |
__ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
|
sl@0
|
351 |
iCol->ResetL(aCount);
|
sl@0
|
352 |
iAvail()=0;
|
sl@0
|
353 |
}
|
sl@0
|
354 |
|
sl@0
|
355 |
EXPORT_C void RStoreReclaim::NextL(TInt& aStep)
|
sl@0
|
356 |
/** Performs the next space reclamation or compaction step synchronous, leaves.
|
sl@0
|
357 |
The function updates the value in aStep, and should only be called while aStep
|
sl@0
|
358 |
is non-zero. Once this value is zero, no further calls should be made.
|
sl@0
|
359 |
|
sl@0
|
360 |
The step is performed synchronously, i.e. the function does not return until
|
sl@0
|
361 |
the step is complete.
|
sl@0
|
362 |
|
sl@0
|
363 |
@param aStep A reference to a control value originally set by OpenL(), OpenLC(),
|
sl@0
|
364 |
CompactL() or CompactLC() and updated by calls to Next() or NextL(). */
|
sl@0
|
365 |
{
|
sl@0
|
366 |
__ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
|
sl@0
|
367 |
iCol->NextL(aStep,iAvail());
|
sl@0
|
368 |
}
|
sl@0
|
369 |
|
sl@0
|
370 |
EXPORT_C void RStoreReclaim::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
|
sl@0
|
371 |
//
|
sl@0
|
372 |
// Perform a reclamation step with guaranteed completion.
|
sl@0
|
373 |
//
|
sl@0
|
374 |
/** Initiates the next space reclamation or compaction step asynchronous,
|
sl@0
|
375 |
non-leaving. The function updates the value in aStep, and should only be called
|
sl@0
|
376 |
while aStep is non-zero. Once this value is zero, no further calls should
|
sl@0
|
377 |
be made.
|
sl@0
|
378 |
|
sl@0
|
379 |
The step itself is performed asynchronously.
|
sl@0
|
380 |
|
sl@0
|
381 |
Note:
|
sl@0
|
382 |
|
sl@0
|
383 |
The RStoreReclaim object should be made part of an active object to simplify
|
sl@0
|
384 |
the handling of the step completion event.
|
sl@0
|
385 |
|
sl@0
|
386 |
@param aStep A reference to a control value constructed from a TInt value
|
sl@0
|
387 |
originally set by OpenL(), OpenLC(), CompactL() or CompactLC().aStep is updated
|
sl@0
|
388 |
by calls to Next() or NextL().
|
sl@0
|
389 |
@param aStatus On completion, contains the request status. If successful contains
|
sl@0
|
390 |
KErrNone. If the function fails during the initiation phase, the failure is
|
sl@0
|
391 |
reported as if the step had started successfully but completed with that error. */
|
sl@0
|
392 |
{
|
sl@0
|
393 |
__ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
|
sl@0
|
394 |
TRAPD(r,iCol->NextL(aStep,aStatus,iAvail));
|
sl@0
|
395 |
if (r!=KErrNone)
|
sl@0
|
396 |
{
|
sl@0
|
397 |
TRequestStatus* stat=&aStatus;
|
sl@0
|
398 |
User::RequestComplete(stat,r);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
}
|
sl@0
|
401 |
|
sl@0
|
402 |
EXPORT_C void RStoreReclaim::NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
|
sl@0
|
403 |
/** Initiates the next space reclamation or compaction step asynchronous,
|
sl@0
|
404 |
leaving. The function updates the value in aStep, and should only be called
|
sl@0
|
405 |
while aStep is non-zero. Once this value is zero, no further calls should
|
sl@0
|
406 |
be made.
|
sl@0
|
407 |
|
sl@0
|
408 |
The step itself is performed asynchronously.
|
sl@0
|
409 |
|
sl@0
|
410 |
Note:
|
sl@0
|
411 |
|
sl@0
|
412 |
The RStoreReclaim object should be made part of an active object to simplify
|
sl@0
|
413 |
the handling of the step completion event.
|
sl@0
|
414 |
|
sl@0
|
415 |
@param aStep A reference to a control value constructed from a TInt value
|
sl@0
|
416 |
originally set by OpenL(), OpenLC(), CompactL() or CompactLC().aStep is updated
|
sl@0
|
417 |
by calls to Next() or NextL().
|
sl@0
|
418 |
@param aStatus On completion, contains the request status. If successful contains
|
sl@0
|
419 |
KErrNone. If the function fails during the initiation phase, the failure is
|
sl@0
|
420 |
reported as if the step had started successfully but completed with that error. */
|
sl@0
|
421 |
{
|
sl@0
|
422 |
__ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
|
sl@0
|
423 |
iCol->NextL(aStep,aStatus,iAvail);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
|
sl@0
|
426 |
EXPORT_C TInt RStoreReclaim::Next(TInt& aStep)
|
sl@0
|
427 |
/** Performs the next space reclamation or compaction step synchronous, non-leaving.
|
sl@0
|
428 |
The function updates the value in aStep, and should only be called while aStep
|
sl@0
|
429 |
is non-zero. Once this value is zero, no further calls should be made.
|
sl@0
|
430 |
|
sl@0
|
431 |
The step is performed synchronously, i.e. the function does not return until
|
sl@0
|
432 |
the step is complete.
|
sl@0
|
433 |
|
sl@0
|
434 |
@param aStep A reference to a control value originally set by OpenL(), OpenLC(),
|
sl@0
|
435 |
CompactL() or CompactLC() and updated by calls to Next() or NextL().
|
sl@0
|
436 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
437 |
codes. */
|
sl@0
|
438 |
{
|
sl@0
|
439 |
__ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
|
sl@0
|
440 |
TRAPD(r,iCol->NextL(aStep,iAvail()));
|
sl@0
|
441 |
return r;
|
sl@0
|
442 |
}
|
sl@0
|
443 |
|