1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/USTOR/UT_STOR.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,443 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include "UT_STD.H"
1.20 +
1.21 +#define UNUSED_VAR(a) a = a
1.22 +
1.23 +LOCAL_C TInt runL(MIncrementalCollector* aCollector)
1.24 +//
1.25 +// Collect synchronously until finished.
1.26 +//
1.27 + {
1.28 + TInt total=0;
1.29 + TInt step=0;
1.30 + CleanupReleasePushL(*aCollector);
1.31 + aCollector->ResetL(step);
1.32 + while (step>0)
1.33 + aCollector->NextL(step,total);
1.34 + CleanupStack::PopAndDestroy();
1.35 + return total;
1.36 + }
1.37 +
1.38 +EXPORT_C void CStreamStore::Delete(TStreamId anId)
1.39 +/** Deletes the specified stream from this store.
1.40 +
1.41 +This function is deprecated.
1.42 +
1.43 +If unsuccessful, the function fails silently with no way to return information
1.44 +to the user.
1.45 +
1.46 +The function is not supported by the direct file store, CDirectFileStore.
1.47 +
1.48 +@param anId The id of the stream to be deleted. */
1.49 + {
1.50 + TRAPD(ignore,DeleteL(anId));
1.51 + UNUSED_VAR(ignore);
1.52 + }
1.53 +
1.54 +EXPORT_C void CStreamStore::DeleteL(TStreamId anId)
1.55 +/** Deletes the specified stream from this store, leaving if unsuccessful.
1.56 +
1.57 +The function is not supported by the direct file store, CDirectFileStore.
1.58 +
1.59 +@param anId The id of the stream to be deleted from this store.
1.60 +@see CDirectFileStore */
1.61 + {
1.62 + if (anId!=KNullStreamId)
1.63 + DoDeleteL(anId);
1.64 + }
1.65 +
1.66 +EXPORT_C TInt CStreamStore::Commit()
1.67 +/** Commits changes.
1.68 +
1.69 +This function establishes a new commit point. Typically, this is done after
1.70 +changes to new or existing streams are complete and the streams themselves
1.71 +have been committed.
1.72 +
1.73 +Establishing a new commit point makes changes to the store permanent. Until
1.74 +such changes are committed, they can be rolled back or reverted, effectively
1.75 +causing the store to revert back to its state before the changes were made.
1.76 +
1.77 +This ensures that persistent data moves from one consistent state to another
1.78 +and guarantees the integrity of persistent store data in the event of failures.
1.79 +In particular, if a process terminates or a media failure occurs, the store
1.80 +reverts automatically to its state at the last successful commit point.
1.81 +
1.82 +Note that this function is not implemented by the direct file store CDirectFileStore
1.83 +and the non-persistent in-memory store CBufStore.
1.84 +
1.85 +@return KErrNone if successful, otherwise another of the system-wide error
1.86 +codes.
1.87 +@see CDirectFileStore
1.88 +@see CBufStore */
1.89 + {
1.90 + TRAPD(r,CommitL());
1.91 + return r;
1.92 + }
1.93 +
1.94 +EXPORT_C void CStreamStore::Revert()
1.95 +/** Rolls back the store to its state at the last commit point.
1.96 +
1.97 +This function is deprecated; use RevertL() instead.
1.98 +
1.99 +If unsuccessful, the function fails silently with no way to return information
1.100 +to the user.
1.101 +
1.102 +The function is not supported by the direct file store CDirectFileStore and
1.103 +the non-persistent in-memory store CBufStore.
1.104 +
1.105 +@see CDirectFileStore
1.106 +@see CBufStore */
1.107 + {
1.108 + TRAPD(ignore,RevertL());
1.109 + UNUSED_VAR(ignore);
1.110 + }
1.111 +
1.112 +EXPORT_C TInt CStreamStore::ReclaimL()
1.113 +/** Reclaims space within a store, returning the total amount of free space available
1.114 +within that store.
1.115 +
1.116 +The function does not return until the reclamation process is complete. This
1.117 +can take an extended amount of time.
1.118 +
1.119 +The function is only supported by the permanent file store, CPermanentFileStore,
1.120 +but not by other derived classes, e.g., CDirectFileStore or CBufStore.
1.121 +
1.122 +@return The amount of free space available within the store.
1.123 +@see CPermanentFileStore */
1.124 + {
1.125 + return runL(DoReclaimL());
1.126 + }
1.127 +
1.128 +EXPORT_C TInt CStreamStore::CompactL()
1.129 +/** Compacts the store. This returns free space to the appropriate system pool,
1.130 +for example, the filing system in the case of file-based stores.
1.131 +
1.132 +On completion, the function returns the total amount of free space available
1.133 +within the store.
1.134 +
1.135 +The function does not return until the compaction process is complete. This
1.136 +can take an extended amount of time.
1.137 +
1.138 +Note:
1.139 +
1.140 +this function is only supported by the permanent file store, CPermanentFileStore,
1.141 +and not by CDirectFileStore or CBufStore.
1.142 +
1.143 +Streams must be closed before calling this function.
1.144 +
1.145 +@return The amount of free space available within the store.
1.146 +@see CPermanentFileStore */
1.147 + {
1.148 + return runL(DoCompactL());
1.149 + }
1.150 +
1.151 +EXPORT_C TStreamId CStreamStore::DoExtendL()
1.152 +/** Generates a new stream within this store, and returns its id. This function
1.153 +is intended to create a new stream in advance of being written to.
1.154 +
1.155 +This is called by ExtendL().
1.156 +
1.157 +@return The new stream id.
1.158 +@see CStreamStore::ExtendL() */
1.159 + {
1.160 + __LEAVE(KErrNotSupported);
1.161 + return KNullStreamId;
1.162 + }
1.163 +
1.164 +EXPORT_C void CStreamStore::DoDeleteL(TStreamId)
1.165 +//
1.166 +// Default implementation failing.
1.167 +//
1.168 + {
1.169 + __LEAVE(KErrNotSupported);
1.170 + }
1.171 +
1.172 +EXPORT_C MStreamBuf* CStreamStore::DoWriteL(TStreamId)
1.173 +//
1.174 +// Default implementation failing.
1.175 +//
1.176 + {
1.177 + __LEAVE(KErrNotSupported);
1.178 + return NULL;
1.179 + }
1.180 +
1.181 +EXPORT_C MStreamBuf* CStreamStore::DoReplaceL(TStreamId)
1.182 +//
1.183 +// Default implementation failing.
1.184 +//
1.185 + {
1.186 + __LEAVE(KErrNotSupported);
1.187 + return NULL;
1.188 + }
1.189 +
1.190 +EXPORT_C void CStreamStore::DoCommitL()
1.191 +/** Commits any changes to the store. For a store that provides atomic updates,
1.192 +this writes all of the pending updates to the to the permanent storage medium.
1.193 +After committing the store contains all or none of the updates since the last
1.194 +commit/revert.
1.195 +
1.196 +This function provides the implementation for the public CommitL() function. */
1.197 + {}
1.198 +
1.199 +EXPORT_C void CStreamStore::DoRevertL()
1.200 +/** Discards any pending changes to the store. This includes all changes which
1.201 +have not been committed to a permanent storage medium.
1.202 +
1.203 +This function provides the implementation for the public Revert() function.
1.204 +
1.205 +Note:
1.206 +
1.207 +The function need only be implemented by stores that provide atomic updates,
1.208 +as revert has no meaning for other implementations. */
1.209 + {
1.210 + __LEAVE(KErrNotSupported);
1.211 + }
1.212 +
1.213 +EXPORT_C MIncrementalCollector* CStreamStore::DoReclaimL()
1.214 +/** Initialises an object for reclaiming space in the store. This function provides
1.215 +the direct implementation for RStoreReclaim::OpenL().
1.216 +
1.217 +Note:
1.218 +
1.219 +Actually reclaiming the space is done by repeated calls to MIncrementalCollector::Next(),
1.220 +before releasing the object.
1.221 +
1.222 +@return Pointer to an incremental collector, which implements the interface
1.223 +for reclaiming store space. */
1.224 + {
1.225 + __LEAVE(KErrNotSupported);
1.226 + return NULL;
1.227 + }
1.228 +
1.229 +EXPORT_C MIncrementalCollector* CStreamStore::DoCompactL()
1.230 +/** Initialises an object for compacting space in the store. This function provides
1.231 +the direct implementation for RStoreReclaim::CompactL().
1.232 +
1.233 +Note:
1.234 +
1.235 +Actually compacting the space is done by repeated calls to MIncrementalCollector::Next()
1.236 +before releasing the object.
1.237 +
1.238 +@return Pointer to an incremental collector, which implements the interface
1.239 +for compacting store space. */
1.240 + {
1.241 + __LEAVE(KErrNotSupported);
1.242 + return NULL;
1.243 + }
1.244 +
1.245 +EXPORT_C void CPersistentStore::DoSetRootL(TStreamId anId)
1.246 +/** Implements the setting of theroot stream.
1.247 +
1.248 +This function is called by SetRootL()
1.249 +
1.250 +@param anId The id of the stream which is to be the root stream of the store.
1.251 +@see CPersistentStore::SetRootL() */
1.252 + {
1.253 + iRoot=anId;
1.254 + }
1.255 +
1.256 +EXPORT_C void RStoreReclaim::OpenL(CStreamStore& aStore,TInt& aCount)
1.257 +/** Prepares the object to perform space reclamation.
1.258 +
1.259 +@param aStore A reference to the store on which space reclamation or compaction
1.260 +is to be performed.
1.261 +@param aCount A reference to a control value set by these functions. This value
1.262 +is required by all variants of Next() and NextL() (and ResetL(), if used). */
1.263 + {
1.264 + OpenLC(aStore,aCount);
1.265 + CleanupStack::Pop();
1.266 + }
1.267 +
1.268 +EXPORT_C void RStoreReclaim::OpenLC(CStreamStore& aStore,TInt& aCount)
1.269 +/** Prepares the object to perform space reclamation and puts a pointer onto the
1.270 +cleanup stack.
1.271 +
1.272 +Placing a cleanup item for the object onto the cleanup stack allows allocated
1.273 +resources to be cleaned up if a subsequent leave occurs.
1.274 +
1.275 +@param aStore A reference to the store on which space reclamation or compaction
1.276 +is to be performed.
1.277 +@param aCount A reference to a control value set by these functions. This value
1.278 +is required by all variants of Next() and NextL() (and ResetL(), if used). */
1.279 + {
1.280 + iCol=aStore.DoReclaimL();
1.281 + CleanupReleasePushL(*this);
1.282 + ResetL(aCount);
1.283 + }
1.284 +
1.285 +EXPORT_C void RStoreReclaim::CompactL(CStreamStore& aStore,TInt& aCount)
1.286 +/** Prepares the object to perform compaction.
1.287 +
1.288 +Streams must be closed before calling this function.
1.289 +
1.290 +@param aStore A reference to the store on which space reclamation or compaction
1.291 +is to be performed.
1.292 +@param aCount A reference to a control value set by these functions. This value
1.293 +is required by all variants of Next() and NextL() (and ResetL(), if used). */
1.294 + {
1.295 + CompactLC(aStore,aCount);
1.296 + CleanupStack::Pop();
1.297 + }
1.298 +
1.299 +EXPORT_C void RStoreReclaim::CompactLC(CStreamStore& aStore,TInt& aCount)
1.300 +/** Prepares the object to perform compaction, putting a cleanup item onto the
1.301 +cleanup stack.
1.302 +
1.303 +P lacing a cleanup item for the object onto the cleanup stack allows allocated
1.304 +resources to be cleaned up if a subsequent leave occurs.
1.305 +
1.306 +Streams must be closed before calling this function.
1.307 +
1.308 +@param aStore A reference to the store on which space reclamation or compaction
1.309 +is to be performed.
1.310 +@param aCount A reference to a control value set by these functions. This value
1.311 +is required by all variants of Next() and NextL() (and ResetL(), if used). */
1.312 + {
1.313 + iCol=aStore.DoCompactL();
1.314 + CleanupReleasePushL(*this);
1.315 + ResetL(aCount);
1.316 + }
1.317 +
1.318 +EXPORT_C void RStoreReclaim::Release()
1.319 +/** Releases allocated resources. Any space reclamation or compaction in progress
1.320 +is abandoned.
1.321 +
1.322 +Notes:
1.323 +
1.324 +If a cleanup item was placed on the cleanup stack when the RStoreReclaim object
1.325 +was prepared for space reclamation or compaction (i.e. by a call to OpenLC()
1.326 +or CompactLC()), then this function need not be called explicitly; clean up
1.327 +is implicitly done by CleanupStack::PopAndDestroy().
1.328 +
1.329 +The ResetL() member function can be used to restart abandoned space reclamation
1.330 +or compaction activity. */
1.331 + {
1.332 + if (iCol!=NULL)
1.333 + {
1.334 + iCol->Release();
1.335 + iCol=NULL;
1.336 + }
1.337 + }
1.338 +
1.339 +EXPORT_C void RStoreReclaim::ResetL(TInt& aCount)
1.340 +/** Restarts space reclamation or compaction.
1.341 +
1.342 +The value in aCount must be:
1.343 +
1.344 +that which was set by the most recent call to Next() or NextL(), if space
1.345 +reclamation or compaction had been started.
1.346 +
1.347 +that which was set by OpenL(), OpenLC(), CompactL() or CompactLC(), if space
1.348 +reclamation or compaction had not been started.
1.349 +
1.350 +@param aCount A reference to a control value originally set by OpenL(), OpenLC(),
1.351 +CompactL() or CompactLC() and updated by subsequent calls to Next() or NextL(). */
1.352 + {
1.353 + __ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
1.354 + iCol->ResetL(aCount);
1.355 + iAvail()=0;
1.356 + }
1.357 +
1.358 +EXPORT_C void RStoreReclaim::NextL(TInt& aStep)
1.359 +/** Performs the next space reclamation or compaction step synchronous, leaves.
1.360 +The function updates the value in aStep, and should only be called while aStep
1.361 +is non-zero. Once this value is zero, no further calls should be made.
1.362 +
1.363 +The step is performed synchronously, i.e. the function does not return until
1.364 +the step is complete.
1.365 +
1.366 +@param aStep A reference to a control value originally set by OpenL(), OpenLC(),
1.367 +CompactL() or CompactLC() and updated by calls to Next() or NextL(). */
1.368 + {
1.369 + __ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
1.370 + iCol->NextL(aStep,iAvail());
1.371 + }
1.372 +
1.373 +EXPORT_C void RStoreReclaim::Next(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
1.374 +//
1.375 +// Perform a reclamation step with guaranteed completion.
1.376 +//
1.377 +/** Initiates the next space reclamation or compaction step asynchronous,
1.378 +non-leaving. The function updates the value in aStep, and should only be called
1.379 +while aStep is non-zero. Once this value is zero, no further calls should
1.380 +be made.
1.381 +
1.382 +The step itself is performed asynchronously.
1.383 +
1.384 +Note:
1.385 +
1.386 +The RStoreReclaim object should be made part of an active object to simplify
1.387 +the handling of the step completion event.
1.388 +
1.389 +@param aStep A reference to a control value constructed from a TInt value
1.390 +originally set by OpenL(), OpenLC(), CompactL() or CompactLC().aStep is updated
1.391 +by calls to Next() or NextL().
1.392 +@param aStatus On completion, contains the request status. If successful contains
1.393 +KErrNone. If the function fails during the initiation phase, the failure is
1.394 +reported as if the step had started successfully but completed with that error. */
1.395 + {
1.396 + __ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
1.397 + TRAPD(r,iCol->NextL(aStep,aStatus,iAvail));
1.398 + if (r!=KErrNone)
1.399 + {
1.400 + TRequestStatus* stat=&aStatus;
1.401 + User::RequestComplete(stat,r);
1.402 + }
1.403 + }
1.404 +
1.405 +EXPORT_C void RStoreReclaim::NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus)
1.406 +/** Initiates the next space reclamation or compaction step asynchronous,
1.407 +leaving. The function updates the value in aStep, and should only be called
1.408 +while aStep is non-zero. Once this value is zero, no further calls should
1.409 +be made.
1.410 +
1.411 +The step itself is performed asynchronously.
1.412 +
1.413 +Note:
1.414 +
1.415 +The RStoreReclaim object should be made part of an active object to simplify
1.416 +the handling of the step completion event.
1.417 +
1.418 +@param aStep A reference to a control value constructed from a TInt value
1.419 +originally set by OpenL(), OpenLC(), CompactL() or CompactLC().aStep is updated
1.420 +by calls to Next() or NextL().
1.421 +@param aStatus On completion, contains the request status. If successful contains
1.422 +KErrNone. If the function fails during the initiation phase, the failure is
1.423 +reported as if the step had started successfully but completed with that error. */
1.424 + {
1.425 + __ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
1.426 + iCol->NextL(aStep,aStatus,iAvail);
1.427 + }
1.428 +
1.429 +EXPORT_C TInt RStoreReclaim::Next(TInt& aStep)
1.430 +/** Performs the next space reclamation or compaction step synchronous, non-leaving.
1.431 +The function updates the value in aStep, and should only be called while aStep
1.432 +is non-zero. Once this value is zero, no further calls should be made.
1.433 +
1.434 +The step is performed synchronously, i.e. the function does not return until
1.435 +the step is complete.
1.436 +
1.437 +@param aStep A reference to a control value originally set by OpenL(), OpenLC(),
1.438 +CompactL() or CompactLC() and updated by calls to Next() or NextL().
1.439 +@return KErrNone if successful, otherwise another of the system-wide error
1.440 +codes. */
1.441 + {
1.442 + __ASSERT_DEBUG(iCol!=NULL,Panic(EStoreNotOpen));
1.443 + TRAPD(r,iCol->NextL(aStep,iAvail()));
1.444 + return r;
1.445 + }
1.446 +