os/persistentdata/persistentstorage/store/INC/S32STOR.INL
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/store/INC/S32STOR.INL	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,228 @@
     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 +// Class CStreamStore
    1.20 +inline TStreamId CStreamStore::ExtendL()
    1.21 +/** Generates a new stream within this store, and returns its id. This function 
    1.22 +can be used to create a new stream in advance of being written to.
    1.23 +
    1.24 +This function is not supported by the direct file store, CDirectFileStore.
    1.25 +
    1.26 +@return The stream id for the newly generated stream.
    1.27 +@see CDirectFileStore */
    1.28 +	{return DoExtendL();}
    1.29 +inline void CStreamStore::CommitL()
    1.30 +/** Commit changes and leaves if unsuccessful.
    1.31 +
    1.32 +@see CStreamStore::Commit() */
    1.33 +	{DoCommitL();}
    1.34 +inline void CStreamStore::RevertL()
    1.35 +/** Rolls back the store to its state at the last commit point and leaves if unsuccessful.
    1.36 +
    1.37 +The function is not supported by the direct file store CDirectFileStore and 
    1.38 +the non-persistent in-memory store CBufStore.
    1.39 +
    1.40 +@see CDirectFileStore
    1.41 +@see CBufStore */
    1.42 +	{DoRevertL();}
    1.43 +
    1.44 +// Class CPersistentStore
    1.45 +inline CPersistentStore::CPersistentStore()
    1.46 +//	: iRoot(KNullStreamId)
    1.47 +	{}
    1.48 +inline TStreamId CPersistentStore::Root() const
    1.49 +/** Returns the stream id of the root stream.
    1.50 +
    1.51 +@return The id of the root stream. */
    1.52 +	{return iRoot;}
    1.53 +inline void CPersistentStore::SetRootL(TStreamId anId)
    1.54 +/** Sets the specified stream as the root stream.
    1.55 +
    1.56 +@param anId The id of the stream which is to be the root stream of this store. */
    1.57 +	{DoSetRootL(anId);}
    1.58 +
    1.59 +// Class RStoreReclaim
    1.60 +inline RStoreReclaim::RStoreReclaim()
    1.61 +	: iCol(NULL)
    1.62 +	{}
    1.63 +inline void RStoreReclaim::Close()
    1.64 +/** Stops space reclamation or compaction. All allocated resources are freed.
    1.65 +
    1.66 +Notes:
    1.67 +
    1.68 +If a cleanup item was placed on the cleanup stack when the RStoreReclaim object 
    1.69 +was prepared for space reclamation or compaction (i.e. by a call to OpenLC() 
    1.70 +or CompactLC()), then this function need not be called explicitly; clean up 
    1.71 +is implicitly done by CleanupStack::PopAndDestroy().
    1.72 +
    1.73 +The ResetL() member function can be used to restart abandoned space reclamation 
    1.74 +or compaction activity. */
    1.75 +	{Release();}
    1.76 +inline TInt RStoreReclaim::Available() const
    1.77 +/** Returns the amount of free space currently available within the store. The 
    1.78 +function may be called at any time during space reclamation or compaction.
    1.79 +
    1.80 +@return The amount of free space currently available within the store. */
    1.81 +	{return CONST_CAST(TPckgBuf<TInt>&,iAvail)();}
    1.82 +
    1.83 +// Class CEmbeddedStore
    1.84 +inline TStreamPos CEmbeddedStore::Position(TStreamId anId)
    1.85 +/** Returns the position of the specified stream, within the host stream.
    1.86 +
    1.87 +@param anId The stream id of the stream in the embedded store whose position 
    1.88 +within the host stream is to be returned.
    1.89 +@return The position of the stream with id anId within the host stream. */
    1.90 +	{return TStreamPos(anId.Value());}
    1.91 +inline void CEmbeddedStore::Reattach(MStreamBuf* aHost)
    1.92 +/** Takes ownership of the specified stream buffer. On return from this function, 
    1.93 +the embedded store assumes this to be the host stream buffer.
    1.94 +
    1.95 +@param aHost A pointer to the stream buffer over which the embedded store 
    1.96 +is to take ownership. */
    1.97 +	{iHost.Share(aHost);}
    1.98 +inline MStreamBuf* CEmbeddedStore::Host() const
    1.99 +/** Returns a pointer to the stream buffer which is acting as host to this embedded 
   1.100 +store. The embedded store retains ownership of the host stream buffer.
   1.101 +
   1.102 +@return A pointer to the stream buffer which is host to this embedded store. */
   1.103 +	{return MUTABLE_CAST(TStreamExchange&,iHost).Host();}
   1.104 +inline TStreamPos CEmbeddedStore::Start() const
   1.105 +/** Returns the start position of this embedded store within the host stream.
   1.106 +
   1.107 +@return The position of the this embedded store within the host stream. */
   1.108 +	{return iStart;}
   1.109 +
   1.110 +// Class RDictionaryWriteStream
   1.111 +inline RDictionaryWriteStream::RDictionaryWriteStream(const MExternalizer<TStreamRef>& anExter)
   1.112 +	: RWriteStream(anExter)
   1.113 +/** Constructs the object with an externaliser. The store map CStoreMap is an example 
   1.114 +of an externaliser.
   1.115 +
   1.116 +@param anExter Specifies an externaliser.
   1.117 +@see CStoreMap */
   1.118 +	{}
   1.119 +
   1.120 +// Class TStorePagePoolToken
   1.121 +inline TStorePagePoolToken::TStorePagePoolToken(TEmpty)
   1.122 +	: iHead(KNullStreamId),iAvail(KNullPageRef)
   1.123 +/** Constructor that intialises the TStorePagePoolToken for an empty page pool.
   1.124 +
   1.125 +@param Intialises for an empty page pool */
   1.126 +	{}
   1.127 +inline void TStorePagePoolToken::Touch()
   1.128 +/** Sets the available pages to 0. */
   1.129 +	{iAvail=KNullPageRef;}
   1.130 +inline TBool TStorePagePoolToken::HasAvailable() const
   1.131 +/** Tests if there is a free page in the pool.
   1.132 +
   1.133 +@return True if there is a free page in the pool, otherwise false */
   1.134 +	{return iAvail!=KNullPageRef;}
   1.135 +inline TBool TStorePagePoolToken::IsEmpty() const
   1.136 +/** Tests if the page pool is empty.
   1.137 +
   1.138 +@return True if the page pool is empty, otherwise false. */
   1.139 +	{return iHead==KNullStreamId;}
   1.140 +
   1.141 +// Class RStorePagePool
   1.142 +inline void RStorePagePool::Release()
   1.143 +/** Purges the page cache and stops using the stream store. */
   1.144 +	{Purge();iStore=NULL;}
   1.145 +inline TBool RStorePagePool::IsDirty() const
   1.146 +/** Tests if the dirty flag has been set on the page pool.
   1.147 +
   1.148 +@return True if the dirty flag has been set, otherwise false */
   1.149 +	{return iDirty;}
   1.150 +inline void RStorePagePool::MarkCurrent()
   1.151 +/** Clears the dirty flag. */
   1.152 +	{iDirty=EFalse;}
   1.153 +inline void RStorePagePool::MarkDirty()	
   1.154 +/** Sets the dirty flag on the pool. */
   1.155 +	{iDirty=ETrue;}
   1.156 +inline TBool RStorePagePool::HasAvailable() const
   1.157 +/** Tests if there is a free page in the pool.
   1.158 +
   1.159 +@return True if there is a free page in the pool, otherwise false */
   1.160 +	{return iAvail!=KNullPageRef;}
   1.161 +inline void RStorePagePool::Discard()
   1.162 +/** Invalidates the list of free pages in the reclaimable set.
   1.163 +
   1.164 +This should be done if there has been a failure in updating the BTree, as 
   1.165 +this list is possibly corrupt now. The reclaimable set can be deleted using 
   1.166 +ReclaimAllL(), and the BTree then repaired. */
   1.167 +	{iAvail=KNullPageRef;}
   1.168 +inline TBool RStorePagePool::IsEmpty() const
   1.169 +/** Tests if the page pool is empty.
   1.170 +
   1.171 +@return True if the page pool is empty, otherwise false */
   1.172 +	{return iHead==KNullStreamId;}
   1.173 +
   1.174 +// Class MIncrementalCollector
   1.175 +inline void MIncrementalCollector::Close()
   1.176 +/** Closes the collector after it is no longer required. The object should not 
   1.177 +be referenced after calling this function. The semantics for this function 
   1.178 +and Release() are effectively the same. */
   1.179 +	{DoRelease();}
   1.180 +inline void MIncrementalCollector::Release()
   1.181 +/** Releases the collector after it is no longer required. The object should not 
   1.182 +be referenced after calling this function. The semantics for this function 
   1.183 +and Close() are effectively the same.
   1.184 +
   1.185 +@see DoRelease() */
   1.186 +	{DoRelease();}
   1.187 +inline void MIncrementalCollector::ResetL(TInt& aCount)
   1.188 +/** Resets the collector. This leaves the collector in a state ready to start or 
   1.189 +restart reclaiming/compacting. On return aCount contains a value that can 
   1.190 +be used to determine the progress of the operation the same value should 
   1.191 +be passed in to subsequent calls to NextL() until it reaches 0.
   1.192 +
   1.193 +@param aCount A progress count for the reclamation/compaction process.
   1.194 +@see DoResetL() */
   1.195 +	{DoResetL(aCount);}
   1.196 +inline void MIncrementalCollector::NextL(TInt& aStep,TInt& aTotal)
   1.197 +/** Does the next step in the reclaim synchronously.
   1.198 +
   1.199 +aStep contains a progress value, which decreases every time the function is 
   1.200 +called. aTotal contains the running total of free-space that remains in the 
   1.201 +store.
   1.202 +
   1.203 +@param aStep The progress value from either the last NextL() increment of 
   1.204 +from ResetL() if the reclamation/compaction was restarted. On return, 
   1.205 +contains the new progress value, which can be used in subsequent calls to 
   1.206 +NextL(). This will be equal to, or less than, the previous value a zero 
   1.207 +value indicates that the operation is complete.
   1.208 +@param aTotal On return, contains the total amount of free space in the store. 
   1.209 +This should increase every time the function is called.
   1.210 +@see DoNextL() */
   1.211 +	{DoNextL(aStep,aTotal);}
   1.212 +inline void MIncrementalCollector::NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal)
   1.213 +/** Does the next step in the reclaim asynchronously. 
   1.214 +
   1.215 +aStep contains a progress value, which decreases every time the function is 
   1.216 +called. aTotal contains the running total of free-space that remains in the 
   1.217 +store. These parameters are asynchronous equivalents of the other NextL() 
   1.218 +overload.
   1.219 +
   1.220 +@param aStep The progress value from either the last NextL() increment of 
   1.221 +from ResetL() if the reclamation/compaction was restarted. On return, 
   1.222 +contains the new progress value, which can be used in subsequent calls to 
   1.223 +NextL(). This will be equal to, or less than, the previous value a zero 
   1.224 +value indicates that the operation is complete.
   1.225 +@param aStatus A status variable. KErrNone on successful completion, otherwise 
   1.226 +another of the system-wide error codes.
   1.227 +@param aTotal On return, contains the total amount of free space in the store. 
   1.228 +This should increase every time the function is called.
   1.229 +@see DoNextL() */
   1.230 +	{DoNextL(aStep,aStatus,aTotal);}
   1.231 +