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