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 "UF_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
const TFileStoreFactoryFunction KDefaultFileStoreFactory[]=
|
sl@0
|
19 |
{
|
sl@0
|
20 |
KDirectFileStoreFactoryFunction,
|
sl@0
|
21 |
KPermanentFileStoreFactoryFunction,
|
sl@0
|
22 |
NULL
|
sl@0
|
23 |
};
|
sl@0
|
24 |
|
sl@0
|
25 |
EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
26 |
/** Opens a file containing a store and constructs an appropriate file store object.
|
sl@0
|
27 |
|
sl@0
|
28 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
29 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
30 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
31 |
it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
|
sl@0
|
32 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
33 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
34 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
@param aFs Handle to a file server session.
|
sl@0
|
38 |
@param aName The full path name of the file containing the store.
|
sl@0
|
39 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
40 |
defined by the TFileMode type.
|
sl@0
|
41 |
@return A pointer to the new file store object.
|
sl@0
|
42 |
@see TFileMode
|
sl@0
|
43 |
@see CFileStore::Layout() */
|
sl@0
|
44 |
{
|
sl@0
|
45 |
return OpenL(aFs,aName,aFileMode,KDefaultFileStoreFactory);
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
|
sl@0
|
49 |
/** Opens a file containing a store, constructs an appropriate file store object
|
sl@0
|
50 |
and places the pointer onto the cleanup stack.
|
sl@0
|
51 |
|
sl@0
|
52 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
53 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
54 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
55 |
it is strongly recommended to set EFileWriteDirectIO bit when opening the file. This is because that
|
sl@0
|
56 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
57 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
58 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
@param aFs Handle to a file server session.
|
sl@0
|
62 |
@param aName The full path name of the file containing the store.
|
sl@0
|
63 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
64 |
defined by the TFileMode type.
|
sl@0
|
65 |
@return A pointer to the new file store object.
|
sl@0
|
66 |
@see TFileMode
|
sl@0
|
67 |
@see CFileStore::Layout() */
|
sl@0
|
68 |
{
|
sl@0
|
69 |
return OpenLC(aFs,aName,aFileMode,KDefaultFileStoreFactory);
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile)
|
sl@0
|
73 |
/** Constructs a file store object from an opened file.
|
sl@0
|
74 |
|
sl@0
|
75 |
The file must already be open before calling this function.
|
sl@0
|
76 |
|
sl@0
|
77 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
78 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
79 |
held in the file store.
|
sl@0
|
80 |
|
sl@0
|
81 |
Note that ownership of the file passes to the store. The referenced RFile
|
sl@0
|
82 |
is cleared and is no longer valid:
|
sl@0
|
83 |
|
sl@0
|
84 |
@param aFile A reference to the opened file.
|
sl@0
|
85 |
@return A pointer to the new file store object.
|
sl@0
|
86 |
@see CFileStore::Layout() */
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return FromL(aFile,KDefaultFileStoreFactory);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile)
|
sl@0
|
92 |
/** Constructs a file store object from an opened file, and places the pointer
|
sl@0
|
93 |
onto the cleanup stack.
|
sl@0
|
94 |
|
sl@0
|
95 |
The file must already be open before calling this function.
|
sl@0
|
96 |
|
sl@0
|
97 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
98 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
99 |
held in the file store.
|
sl@0
|
100 |
|
sl@0
|
101 |
Note that ownership of the file passes to the store. The referenced RFile
|
sl@0
|
102 |
is cleared and is no longer valid:
|
sl@0
|
103 |
|
sl@0
|
104 |
@param aFile A reference to the opened file.
|
sl@0
|
105 |
@return A pointer to the new file store object.
|
sl@0
|
106 |
@see CFileStore::Layout() */
|
sl@0
|
107 |
{
|
sl@0
|
108 |
return FromLC(aFile,KDefaultFileStoreFactory);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/** Opens a file containing a store and constructs an appropriate file store object.
|
sl@0
|
112 |
|
sl@0
|
113 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
114 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
115 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
116 |
it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
|
sl@0
|
117 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
118 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
119 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
@param aFs Handle to a file server session.
|
sl@0
|
123 |
@param aName The full path name of the file containing the store.
|
sl@0
|
124 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
125 |
defined by the TFileMode type.
|
sl@0
|
126 |
@param TFileStoreFactoryFunction An array of file store factory function.
|
sl@0
|
127 |
@return A pointer to the new file store object.
|
sl@0
|
128 |
@see TFileMode
|
sl@0
|
129 |
@see TFileStoreFactoryFunction
|
sl@0
|
130 |
*/
|
sl@0
|
131 |
EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
|
sl@0
|
132 |
//
|
sl@0
|
133 |
// Open a file store of any of the types supported by aFactory.
|
sl@0
|
134 |
//
|
sl@0
|
135 |
{
|
sl@0
|
136 |
RFile file;
|
sl@0
|
137 |
__LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
|
sl@0
|
138 |
return FromL(file,aFactory);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
/** Opens a file containing a store and constructs an appropriate file store object.
|
sl@0
|
142 |
|
sl@0
|
143 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
144 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
145 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
146 |
it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
|
sl@0
|
147 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
148 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
149 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
150 |
|
sl@0
|
151 |
|
sl@0
|
152 |
@param aFs Handle to a file server session.
|
sl@0
|
153 |
@param aName The full path name of the file containing the store.
|
sl@0
|
154 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
155 |
defined by the TFileMode type.
|
sl@0
|
156 |
@param TFileStoreFactoryFunction An array of file store factory function.
|
sl@0
|
157 |
@return A pointer to the new file store object.
|
sl@0
|
158 |
@see TFileMode
|
sl@0
|
159 |
@see TFileStoreFactoryFunction
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
|
sl@0
|
162 |
//
|
sl@0
|
163 |
// Open and leave on cleanup stack.
|
sl@0
|
164 |
//
|
sl@0
|
165 |
{
|
sl@0
|
166 |
CFileStore* store=OpenL(aFs,aName,aFileMode,aFactory);
|
sl@0
|
167 |
CleanupStack::PushL(store);
|
sl@0
|
168 |
return store;
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
|
sl@0
|
172 |
//
|
sl@0
|
173 |
// Read the file header and let every factory function in turn try to open it.
|
sl@0
|
174 |
//
|
sl@0
|
175 |
{
|
sl@0
|
176 |
RFileBuf buf;
|
sl@0
|
177 |
buf.Attach(aFile);
|
sl@0
|
178 |
buf.PushL();
|
sl@0
|
179 |
RReadStream stream(&buf);
|
sl@0
|
180 |
TCheckedUid chk;
|
sl@0
|
181 |
stream>>chk;
|
sl@0
|
182 |
if (chk.UidType().IsValid())
|
sl@0
|
183 |
{
|
sl@0
|
184 |
const TFileStoreFactoryFunction* iter=&aFactory[0];
|
sl@0
|
185 |
TFileStoreFactoryFunction func;
|
sl@0
|
186 |
while ((func=*iter++)!=NULL)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
CFileStore* store=(*func)(buf,chk.UidType());
|
sl@0
|
189 |
if (store!=NULL)
|
sl@0
|
190 |
{
|
sl@0
|
191 |
CleanupStack::Pop(2);
|
sl@0
|
192 |
return store;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
}
|
sl@0
|
195 |
}
|
sl@0
|
196 |
//
|
sl@0
|
197 |
__LEAVE(KErrNotSupported);
|
sl@0
|
198 |
return NULL;
|
sl@0
|
199 |
}
|
sl@0
|
200 |
|
sl@0
|
201 |
EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
|
sl@0
|
202 |
//
|
sl@0
|
203 |
// Open and leave on cleanup stack.
|
sl@0
|
204 |
//
|
sl@0
|
205 |
{
|
sl@0
|
206 |
CFileStore* store=FromL(aFile,aFactory);
|
sl@0
|
207 |
CleanupStack::PushL(store);
|
sl@0
|
208 |
return store;
|
sl@0
|
209 |
}
|
sl@0
|
210 |
|
sl@0
|
211 |
EXPORT_C void CFileStore::SetTypeL(const TUidType& aType)
|
sl@0
|
212 |
/** Sets the UID type of the file store.
|
sl@0
|
213 |
|
sl@0
|
214 |
The first UID, i.e. the first TUid component, of the TUidType must be the
|
sl@0
|
215 |
file store type as returned by CFileStore::Layout(), otherwise the function
|
sl@0
|
216 |
raises a STORE-File 9 panic.
|
sl@0
|
217 |
|
sl@0
|
218 |
@param aType The UID type object containing the file store type.
|
sl@0
|
219 |
@see TUid */
|
sl@0
|
220 |
{
|
sl@0
|
221 |
__ASSERT_ALWAYS(aType[0]==Layout(),Panic(EFileStoreBadType));
|
sl@0
|
222 |
TCheckedUid chk(aType);
|
sl@0
|
223 |
if (iHost.IsActive())
|
sl@0
|
224 |
{
|
sl@0
|
225 |
RShareWriteStream stream(iHost);
|
sl@0
|
226 |
stream.PushL();
|
sl@0
|
227 |
stream<<chk; // failure may mean the file's type information is lost
|
sl@0
|
228 |
CleanupStack::PopAndDestroy();
|
sl@0
|
229 |
}
|
sl@0
|
230 |
else
|
sl@0
|
231 |
{
|
sl@0
|
232 |
TInt size=iBuf.SizeL();
|
sl@0
|
233 |
RWriteStream stream(&iBuf);
|
sl@0
|
234 |
stream<<chk;
|
sl@0
|
235 |
if (size==0)
|
sl@0
|
236 |
{
|
sl@0
|
237 |
ExternalizeL(stream);
|
sl@0
|
238 |
iHost.Share(&iBuf);
|
sl@0
|
239 |
}
|
sl@0
|
240 |
}
|
sl@0
|
241 |
iType=aType;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
|
sl@0
|
244 |
EXPORT_C void CFileStore::MarshalL()
|
sl@0
|
245 |
//
|
sl@0
|
246 |
// Second-phase construction for opening existing file stores.
|
sl@0
|
247 |
//
|
sl@0
|
248 |
{
|
sl@0
|
249 |
__ASSERT_DEBUG(!iHost.IsActive()&&(!iType.IsValid()||iType[0]==Layout()),User::Invariant());
|
sl@0
|
250 |
RReadStream stream(&iBuf);
|
sl@0
|
251 |
InternalizeL(stream);
|
sl@0
|
252 |
iHost.Share(&iBuf);
|
sl@0
|
253 |
}
|
sl@0
|
254 |
|
sl@0
|
255 |
EXPORT_C CFileStore::~CFileStore()
|
sl@0
|
256 |
/** Frees resources owned by the object, prior to its destruction. In particular,
|
sl@0
|
257 |
it closes the associated file. */
|
sl@0
|
258 |
{
|
sl@0
|
259 |
Destruct();
|
sl@0
|
260 |
iBuf.Close();
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
/** Opens a file containing a store and constructs an appropriate file store object.
|
sl@0
|
264 |
|
sl@0
|
265 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
266 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
267 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
268 |
it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
|
sl@0
|
269 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
270 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
271 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
272 |
|
sl@0
|
273 |
|
sl@0
|
274 |
@param aFs Handle to a file server session.
|
sl@0
|
275 |
@param aName The full path name of the file containing the store.
|
sl@0
|
276 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
277 |
defined by the TFileMode type.
|
sl@0
|
278 |
@param TFileStoreFactoryFunction A file store factory function.
|
sl@0
|
279 |
@return A pointer to the new file store object.
|
sl@0
|
280 |
@see TFileMode
|
sl@0
|
281 |
@see TFileStoreFactoryFunction
|
sl@0
|
282 |
*/
|
sl@0
|
283 |
EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
|
sl@0
|
284 |
//
|
sl@0
|
285 |
// Open a file store using aFunction.
|
sl@0
|
286 |
//
|
sl@0
|
287 |
{
|
sl@0
|
288 |
RFile file;
|
sl@0
|
289 |
__LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
|
sl@0
|
290 |
return FromL(file,aFunction);
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
/** Opens a file containing a store and constructs an appropriate file store object.
|
sl@0
|
294 |
|
sl@0
|
295 |
The resulting file store object is of concrete type, i.e. either CDirectFileStore
|
sl@0
|
296 |
or CPermanentFileStore. The specific type is determined from the layout information
|
sl@0
|
297 |
held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
|
sl@0
|
298 |
it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
|
sl@0
|
299 |
when the file server write caching is enabled, the order of file write operations is not guaranteed.
|
sl@0
|
300 |
This could cause data inconsistency in some circumstances, for example, when the power is lost in
|
sl@0
|
301 |
the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
|
sl@0
|
302 |
|
sl@0
|
303 |
|
sl@0
|
304 |
@param aFs Handle to a file server session.
|
sl@0
|
305 |
@param aName The full path name of the file containing the store.
|
sl@0
|
306 |
@param aFileMode The mode in which the file is to be accessed. The mode is
|
sl@0
|
307 |
defined by the TFileMode type.
|
sl@0
|
308 |
@param TFileStoreFactoryFunction A file store factory function.
|
sl@0
|
309 |
@return A pointer to the new file store object.
|
sl@0
|
310 |
@see TFileMode
|
sl@0
|
311 |
@see TFileStoreFactoryFunction
|
sl@0
|
312 |
*/
|
sl@0
|
313 |
EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
|
sl@0
|
314 |
//
|
sl@0
|
315 |
// Open and leave on cleanup stack.
|
sl@0
|
316 |
//
|
sl@0
|
317 |
{
|
sl@0
|
318 |
CFileStore* store=OpenL(aFs,aName,aFileMode,aFunction);
|
sl@0
|
319 |
CleanupStack::PushL(store);
|
sl@0
|
320 |
return store;
|
sl@0
|
321 |
}
|
sl@0
|
322 |
|
sl@0
|
323 |
EXPORT_C CFileStore* CFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
324 |
//
|
sl@0
|
325 |
// Create a file store using aFunction. Must not already exist.
|
sl@0
|
326 |
//
|
sl@0
|
327 |
{
|
sl@0
|
328 |
RFile file;
|
sl@0
|
329 |
__LEAVE_IF_ERROR(file.Create(aFs,aName,aFileMode));
|
sl@0
|
330 |
return DoNewL(file,aFunction);
|
sl@0
|
331 |
}
|
sl@0
|
332 |
|
sl@0
|
333 |
EXPORT_C CFileStore* CFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
334 |
//
|
sl@0
|
335 |
// Create and leave on cleanup stack.
|
sl@0
|
336 |
//
|
sl@0
|
337 |
{
|
sl@0
|
338 |
CFileStore* store=CreateL(aFs,aName,aFileMode,aFunction);
|
sl@0
|
339 |
CleanupStack::PushL(store);
|
sl@0
|
340 |
return store;
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
EXPORT_C CFileStore* CFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
344 |
//
|
sl@0
|
345 |
// Replace a file store using aFunction. May exist already.
|
sl@0
|
346 |
//
|
sl@0
|
347 |
{
|
sl@0
|
348 |
RFile file;
|
sl@0
|
349 |
__LEAVE_IF_ERROR(file.Replace(aFs,aName,aFileMode));
|
sl@0
|
350 |
return DoNewL(file,aFunction);
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
EXPORT_C CFileStore* CFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
354 |
//
|
sl@0
|
355 |
// Replace and leave on cleanup stack.
|
sl@0
|
356 |
//
|
sl@0
|
357 |
{
|
sl@0
|
358 |
CFileStore* store=ReplaceL(aFs,aName,aFileMode,aFunction);
|
sl@0
|
359 |
CleanupStack::PushL(store);
|
sl@0
|
360 |
return store;
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
EXPORT_C CFileStore* CFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
364 |
//
|
sl@0
|
365 |
// Create a temporary file store using aFunction.
|
sl@0
|
366 |
//
|
sl@0
|
367 |
{
|
sl@0
|
368 |
RFile file;
|
sl@0
|
369 |
__LEAVE_IF_ERROR(file.Temp(aFs,aPath,aName,aFileMode));
|
sl@0
|
370 |
return DoNewL(file,aFunction);
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
EXPORT_C CFileStore* CFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
|
sl@0
|
374 |
//
|
sl@0
|
375 |
// Create temporary and leave on cleanup stack.
|
sl@0
|
376 |
//
|
sl@0
|
377 |
{
|
sl@0
|
378 |
CFileStore* store=TempL(aFs,aPath,aName,aFileMode,aFunction);
|
sl@0
|
379 |
CleanupStack::PushL(store);
|
sl@0
|
380 |
return store;
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,TFileStoreFactoryFunction aFunction)
|
sl@0
|
384 |
//
|
sl@0
|
385 |
// Open a file store using aFunction, given its file handle.
|
sl@0
|
386 |
//
|
sl@0
|
387 |
{
|
sl@0
|
388 |
RFileBuf buf;
|
sl@0
|
389 |
buf.Attach(aFile);
|
sl@0
|
390 |
buf.PushL();
|
sl@0
|
391 |
RReadStream stream(&buf);
|
sl@0
|
392 |
TCheckedUid chk;
|
sl@0
|
393 |
stream>>chk;
|
sl@0
|
394 |
CFileStore* store=(*aFunction)(buf,chk.UidType());
|
sl@0
|
395 |
if (store==NULL)
|
sl@0
|
396 |
{
|
sl@0
|
397 |
aFile.Close();
|
sl@0
|
398 |
__LEAVE(KErrNotSupported);
|
sl@0
|
399 |
}
|
sl@0
|
400 |
//
|
sl@0
|
401 |
CleanupStack::Pop(2);
|
sl@0
|
402 |
return store;
|
sl@0
|
403 |
}
|
sl@0
|
404 |
|
sl@0
|
405 |
EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,TFileStoreFactoryFunction aFunction)
|
sl@0
|
406 |
//
|
sl@0
|
407 |
// Open and leave on cleanup stack.
|
sl@0
|
408 |
//
|
sl@0
|
409 |
{
|
sl@0
|
410 |
CFileStore* store=FromL(aFile,aFunction);
|
sl@0
|
411 |
CleanupStack::PushL(store);
|
sl@0
|
412 |
return store;
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
EXPORT_C CFileStore* CFileStore::NewL(RFile& aFile,TNewFunction aFunction)
|
sl@0
|
416 |
//
|
sl@0
|
417 |
// Create a file store using aFunction, given its file handle.
|
sl@0
|
418 |
//
|
sl@0
|
419 |
{
|
sl@0
|
420 |
TInt r=aFile.SetSize(0);
|
sl@0
|
421 |
if (r!=KErrNone)
|
sl@0
|
422 |
{
|
sl@0
|
423 |
aFile.Close();
|
sl@0
|
424 |
__LEAVE(r);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
return DoNewL(aFile,aFunction);
|
sl@0
|
427 |
}
|
sl@0
|
428 |
|
sl@0
|
429 |
EXPORT_C CFileStore* CFileStore::NewLC(RFile& aFile,TNewFunction aFunction)
|
sl@0
|
430 |
//
|
sl@0
|
431 |
// Create and leave on cleanup stack.
|
sl@0
|
432 |
//
|
sl@0
|
433 |
{
|
sl@0
|
434 |
CFileStore* store=NewL(aFile,aFunction);
|
sl@0
|
435 |
CleanupStack::PushL(store);
|
sl@0
|
436 |
return store;
|
sl@0
|
437 |
}
|
sl@0
|
438 |
|
sl@0
|
439 |
EXPORT_C CFileStore::CFileStore(RFile& aFile)
|
sl@0
|
440 |
//
|
sl@0
|
441 |
// Constructor creating a new file store.
|
sl@0
|
442 |
//
|
sl@0
|
443 |
{
|
sl@0
|
444 |
iBuf.Attach(aFile);
|
sl@0
|
445 |
iBuf.iExt = 0;
|
sl@0
|
446 |
}
|
sl@0
|
447 |
|
sl@0
|
448 |
EXPORT_C CFileStore::CFileStore(RFileBuf& aBuf,const TUidType& aType)
|
sl@0
|
449 |
//
|
sl@0
|
450 |
// Constructor opening an existing file store.
|
sl@0
|
451 |
//
|
sl@0
|
452 |
: iBuf(Capture(aBuf)),iType(aType)
|
sl@0
|
453 |
{}
|
sl@0
|
454 |
|
sl@0
|
455 |
EXPORT_C void CFileStore::Destruct()
|
sl@0
|
456 |
//
|
sl@0
|
457 |
// Early destruction, for derived classes overriding DoRevertL().
|
sl@0
|
458 |
//
|
sl@0
|
459 |
{
|
sl@0
|
460 |
if (iHost.IsActive())
|
sl@0
|
461 |
{
|
sl@0
|
462 |
iHost.Release();
|
sl@0
|
463 |
}
|
sl@0
|
464 |
}
|
sl@0
|
465 |
|
sl@0
|
466 |
EXPORT_C void CFileStore::SynchL()
|
sl@0
|
467 |
//
|
sl@0
|
468 |
// Synchronise this file store's file buffer.
|
sl@0
|
469 |
//
|
sl@0
|
470 |
{
|
sl@0
|
471 |
TStreamExchange& host=iHost;
|
sl@0
|
472 |
if (host.IsActive())
|
sl@0
|
473 |
{
|
sl@0
|
474 |
MStreamBuf* buf=host.HostL();
|
sl@0
|
475 |
__ASSERT_DEBUG(IsHost(buf),User::Invariant());
|
sl@0
|
476 |
host.Release(); // make sure no writes fail silently by shutting down on failure
|
sl@0
|
477 |
buf->SynchL();
|
sl@0
|
478 |
host.Share(buf);
|
sl@0
|
479 |
}
|
sl@0
|
480 |
else
|
sl@0
|
481 |
iBuf.SynchL();
|
sl@0
|
482 |
}
|
sl@0
|
483 |
|
sl@0
|
484 |
EXPORT_C void CFileStore::ChangedL()
|
sl@0
|
485 |
//
|
sl@0
|
486 |
// Re-write this file store's structure.
|
sl@0
|
487 |
//
|
sl@0
|
488 |
{
|
sl@0
|
489 |
__ASSERT_DEBUG(iHost.IsActive(),User::Invariant());
|
sl@0
|
490 |
RShareWriteStream stream(iHost,KFileStoreStart);
|
sl@0
|
491 |
stream.PushL();
|
sl@0
|
492 |
ExternalizeL(stream);
|
sl@0
|
493 |
CleanupStack::PopAndDestroy();
|
sl@0
|
494 |
}
|
sl@0
|
495 |
|
sl@0
|
496 |
EXPORT_C void CFileStore::RefreshL()
|
sl@0
|
497 |
//
|
sl@0
|
498 |
// Re-read this file store's structure.
|
sl@0
|
499 |
//
|
sl@0
|
500 |
{
|
sl@0
|
501 |
if (iHost.IsActive())
|
sl@0
|
502 |
{
|
sl@0
|
503 |
RShareReadStream stream(iHost,KFileStoreStart);
|
sl@0
|
504 |
stream.PushL();
|
sl@0
|
505 |
InternalizeL(stream);
|
sl@0
|
506 |
CleanupStack::PopAndDestroy();
|
sl@0
|
507 |
}
|
sl@0
|
508 |
else
|
sl@0
|
509 |
{
|
sl@0
|
510 |
iBuf.SeekL(iBuf.ERead,KFileStoreStart);
|
sl@0
|
511 |
MarshalL();
|
sl@0
|
512 |
}
|
sl@0
|
513 |
}
|
sl@0
|
514 |
|
sl@0
|
515 |
EXPORT_C void CFileStore::DoCommitL()
|
sl@0
|
516 |
//
|
sl@0
|
517 |
// Default implementation just synchronising.
|
sl@0
|
518 |
//
|
sl@0
|
519 |
{
|
sl@0
|
520 |
SynchL();
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|
sl@0
|
523 |
EXPORT_C void CFileStore::DoRevertL()
|
sl@0
|
524 |
//
|
sl@0
|
525 |
// Default implementation failing after synchronisation.
|
sl@0
|
526 |
//
|
sl@0
|
527 |
{
|
sl@0
|
528 |
SynchL();
|
sl@0
|
529 |
__LEAVE(KErrNotSupported);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
CFileStore* CFileStore::DoNewL(RFile& aFile,TNewFunction aFunction)
|
sl@0
|
533 |
{
|
sl@0
|
534 |
CleanupClosePushL(aFile);
|
sl@0
|
535 |
CFileStore* store=(*aFunction)(aFile);
|
sl@0
|
536 |
CleanupStack::Pop();
|
sl@0
|
537 |
return store;
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|