os/persistentdata/persistentstorage/store/INC/S32STOR.INL
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 // Class CStreamStore
    17 inline TStreamId CStreamStore::ExtendL()
    18 /** Generates a new stream within this store, and returns its id. This function 
    19 can be used to create a new stream in advance of being written to.
    20 
    21 This function is not supported by the direct file store, CDirectFileStore.
    22 
    23 @return The stream id for the newly generated stream.
    24 @see CDirectFileStore */
    25 	{return DoExtendL();}
    26 inline void CStreamStore::CommitL()
    27 /** Commit changes and leaves if unsuccessful.
    28 
    29 @see CStreamStore::Commit() */
    30 	{DoCommitL();}
    31 inline void CStreamStore::RevertL()
    32 /** Rolls back the store to its state at the last commit point and leaves if unsuccessful.
    33 
    34 The function is not supported by the direct file store CDirectFileStore and 
    35 the non-persistent in-memory store CBufStore.
    36 
    37 @see CDirectFileStore
    38 @see CBufStore */
    39 	{DoRevertL();}
    40 
    41 // Class CPersistentStore
    42 inline CPersistentStore::CPersistentStore()
    43 //	: iRoot(KNullStreamId)
    44 	{}
    45 inline TStreamId CPersistentStore::Root() const
    46 /** Returns the stream id of the root stream.
    47 
    48 @return The id of the root stream. */
    49 	{return iRoot;}
    50 inline void CPersistentStore::SetRootL(TStreamId anId)
    51 /** Sets the specified stream as the root stream.
    52 
    53 @param anId The id of the stream which is to be the root stream of this store. */
    54 	{DoSetRootL(anId);}
    55 
    56 // Class RStoreReclaim
    57 inline RStoreReclaim::RStoreReclaim()
    58 	: iCol(NULL)
    59 	{}
    60 inline void RStoreReclaim::Close()
    61 /** Stops space reclamation or compaction. All allocated resources are freed.
    62 
    63 Notes:
    64 
    65 If a cleanup item was placed on the cleanup stack when the RStoreReclaim object 
    66 was prepared for space reclamation or compaction (i.e. by a call to OpenLC() 
    67 or CompactLC()), then this function need not be called explicitly; clean up 
    68 is implicitly done by CleanupStack::PopAndDestroy().
    69 
    70 The ResetL() member function can be used to restart abandoned space reclamation 
    71 or compaction activity. */
    72 	{Release();}
    73 inline TInt RStoreReclaim::Available() const
    74 /** Returns the amount of free space currently available within the store. The 
    75 function may be called at any time during space reclamation or compaction.
    76 
    77 @return The amount of free space currently available within the store. */
    78 	{return CONST_CAST(TPckgBuf<TInt>&,iAvail)();}
    79 
    80 // Class CEmbeddedStore
    81 inline TStreamPos CEmbeddedStore::Position(TStreamId anId)
    82 /** Returns the position of the specified stream, within the host stream.
    83 
    84 @param anId The stream id of the stream in the embedded store whose position 
    85 within the host stream is to be returned.
    86 @return The position of the stream with id anId within the host stream. */
    87 	{return TStreamPos(anId.Value());}
    88 inline void CEmbeddedStore::Reattach(MStreamBuf* aHost)
    89 /** Takes ownership of the specified stream buffer. On return from this function, 
    90 the embedded store assumes this to be the host stream buffer.
    91 
    92 @param aHost A pointer to the stream buffer over which the embedded store 
    93 is to take ownership. */
    94 	{iHost.Share(aHost);}
    95 inline MStreamBuf* CEmbeddedStore::Host() const
    96 /** Returns a pointer to the stream buffer which is acting as host to this embedded 
    97 store. The embedded store retains ownership of the host stream buffer.
    98 
    99 @return A pointer to the stream buffer which is host to this embedded store. */
   100 	{return MUTABLE_CAST(TStreamExchange&,iHost).Host();}
   101 inline TStreamPos CEmbeddedStore::Start() const
   102 /** Returns the start position of this embedded store within the host stream.
   103 
   104 @return The position of the this embedded store within the host stream. */
   105 	{return iStart;}
   106 
   107 // Class RDictionaryWriteStream
   108 inline RDictionaryWriteStream::RDictionaryWriteStream(const MExternalizer<TStreamRef>& anExter)
   109 	: RWriteStream(anExter)
   110 /** Constructs the object with an externaliser. The store map CStoreMap is an example 
   111 of an externaliser.
   112 
   113 @param anExter Specifies an externaliser.
   114 @see CStoreMap */
   115 	{}
   116 
   117 // Class TStorePagePoolToken
   118 inline TStorePagePoolToken::TStorePagePoolToken(TEmpty)
   119 	: iHead(KNullStreamId),iAvail(KNullPageRef)
   120 /** Constructor that intialises the TStorePagePoolToken for an empty page pool.
   121 
   122 @param Intialises for an empty page pool */
   123 	{}
   124 inline void TStorePagePoolToken::Touch()
   125 /** Sets the available pages to 0. */
   126 	{iAvail=KNullPageRef;}
   127 inline TBool TStorePagePoolToken::HasAvailable() const
   128 /** Tests if there is a free page in the pool.
   129 
   130 @return True if there is a free page in the pool, otherwise false */
   131 	{return iAvail!=KNullPageRef;}
   132 inline TBool TStorePagePoolToken::IsEmpty() const
   133 /** Tests if the page pool is empty.
   134 
   135 @return True if the page pool is empty, otherwise false. */
   136 	{return iHead==KNullStreamId;}
   137 
   138 // Class RStorePagePool
   139 inline void RStorePagePool::Release()
   140 /** Purges the page cache and stops using the stream store. */
   141 	{Purge();iStore=NULL;}
   142 inline TBool RStorePagePool::IsDirty() const
   143 /** Tests if the dirty flag has been set on the page pool.
   144 
   145 @return True if the dirty flag has been set, otherwise false */
   146 	{return iDirty;}
   147 inline void RStorePagePool::MarkCurrent()
   148 /** Clears the dirty flag. */
   149 	{iDirty=EFalse;}
   150 inline void RStorePagePool::MarkDirty()	
   151 /** Sets the dirty flag on the pool. */
   152 	{iDirty=ETrue;}
   153 inline TBool RStorePagePool::HasAvailable() const
   154 /** Tests if there is a free page in the pool.
   155 
   156 @return True if there is a free page in the pool, otherwise false */
   157 	{return iAvail!=KNullPageRef;}
   158 inline void RStorePagePool::Discard()
   159 /** Invalidates the list of free pages in the reclaimable set.
   160 
   161 This should be done if there has been a failure in updating the BTree, as 
   162 this list is possibly corrupt now. The reclaimable set can be deleted using 
   163 ReclaimAllL(), and the BTree then repaired. */
   164 	{iAvail=KNullPageRef;}
   165 inline TBool RStorePagePool::IsEmpty() const
   166 /** Tests if the page pool is empty.
   167 
   168 @return True if the page pool is empty, otherwise false */
   169 	{return iHead==KNullStreamId;}
   170 
   171 // Class MIncrementalCollector
   172 inline void MIncrementalCollector::Close()
   173 /** Closes the collector after it is no longer required. The object should not 
   174 be referenced after calling this function. The semantics for this function 
   175 and Release() are effectively the same. */
   176 	{DoRelease();}
   177 inline void MIncrementalCollector::Release()
   178 /** Releases the collector after it is no longer required. The object should not 
   179 be referenced after calling this function. The semantics for this function 
   180 and Close() are effectively the same.
   181 
   182 @see DoRelease() */
   183 	{DoRelease();}
   184 inline void MIncrementalCollector::ResetL(TInt& aCount)
   185 /** Resets the collector. This leaves the collector in a state ready to start or 
   186 restart reclaiming/compacting. On return aCount contains a value that can 
   187 be used to determine the progress of the operation the same value should 
   188 be passed in to subsequent calls to NextL() until it reaches 0.
   189 
   190 @param aCount A progress count for the reclamation/compaction process.
   191 @see DoResetL() */
   192 	{DoResetL(aCount);}
   193 inline void MIncrementalCollector::NextL(TInt& aStep,TInt& aTotal)
   194 /** Does the next step in the reclaim synchronously.
   195 
   196 aStep contains a progress value, which decreases every time the function is 
   197 called. aTotal contains the running total of free-space that remains in the 
   198 store.
   199 
   200 @param aStep The progress value from either the last NextL() increment of 
   201 from ResetL() if the reclamation/compaction was restarted. On return, 
   202 contains the new progress value, which can be used in subsequent calls to 
   203 NextL(). This will be equal to, or less than, the previous value a zero 
   204 value indicates that the operation is complete.
   205 @param aTotal On return, contains the total amount of free space in the store. 
   206 This should increase every time the function is called.
   207 @see DoNextL() */
   208 	{DoNextL(aStep,aTotal);}
   209 inline void MIncrementalCollector::NextL(TPckgBuf<TInt>& aStep,TRequestStatus& aStatus,TPckgBuf<TInt>& aTotal)
   210 /** Does the next step in the reclaim asynchronously. 
   211 
   212 aStep contains a progress value, which decreases every time the function is 
   213 called. aTotal contains the running total of free-space that remains in the 
   214 store. These parameters are asynchronous equivalents of the other NextL() 
   215 overload.
   216 
   217 @param aStep The progress value from either the last NextL() increment of 
   218 from ResetL() if the reclamation/compaction was restarted. On return, 
   219 contains the new progress value, which can be used in subsequent calls to 
   220 NextL(). This will be equal to, or less than, the previous value a zero 
   221 value indicates that the operation is complete.
   222 @param aStatus A status variable. KErrNone on successful completion, otherwise 
   223 another of the system-wide error codes.
   224 @param aTotal On return, contains the total amount of free space in the store. 
   225 This should increase every time the function is called.
   226 @see DoNextL() */
   227 	{DoNextL(aStep,aStatus,aTotal);}
   228