Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 const TFileStoreFactoryFunction KDefaultFileStoreFactory[]=
20 KDirectFileStoreFactoryFunction,
21 KPermanentFileStoreFactoryFunction,
25 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
26 /** Opens a file containing a store and constructs an appropriate file store object.
28 The resulting file store object is of concrete type, i.e. either CDirectFileStore
29 or CPermanentFileStore. The specific type is determined from the layout information
30 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
31 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
32 when the file server write caching is enabled, the order of file write operations is not guaranteed.
33 This could cause data inconsistency in some circumstances, for example, when the power is lost in
34 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
37 @param aFs Handle to a file server session.
38 @param aName The full path name of the file containing the store.
39 @param aFileMode The mode in which the file is to be accessed. The mode is
40 defined by the TFileMode type.
41 @return A pointer to the new file store object.
43 @see CFileStore::Layout() */
45 return OpenL(aFs,aName,aFileMode,KDefaultFileStoreFactory);
48 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
49 /** Opens a file containing a store, constructs an appropriate file store object
50 and places the pointer onto the cleanup stack.
52 The resulting file store object is of concrete type, i.e. either CDirectFileStore
53 or CPermanentFileStore. The specific type is determined from the layout information
54 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
55 it is strongly recommended to set EFileWriteDirectIO bit when opening the file. This is because that
56 when the file server write caching is enabled, the order of file write operations is not guaranteed.
57 This could cause data inconsistency in some circumstances, for example, when the power is lost in
58 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
61 @param aFs Handle to a file server session.
62 @param aName The full path name of the file containing the store.
63 @param aFileMode The mode in which the file is to be accessed. The mode is
64 defined by the TFileMode type.
65 @return A pointer to the new file store object.
67 @see CFileStore::Layout() */
69 return OpenLC(aFs,aName,aFileMode,KDefaultFileStoreFactory);
72 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile)
73 /** Constructs a file store object from an opened file.
75 The file must already be open before calling this function.
77 The resulting file store object is of concrete type, i.e. either CDirectFileStore
78 or CPermanentFileStore. The specific type is determined from the layout information
79 held in the file store.
81 Note that ownership of the file passes to the store. The referenced RFile
82 is cleared and is no longer valid:
84 @param aFile A reference to the opened file.
85 @return A pointer to the new file store object.
86 @see CFileStore::Layout() */
88 return FromL(aFile,KDefaultFileStoreFactory);
91 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile)
92 /** Constructs a file store object from an opened file, and places the pointer
93 onto the cleanup stack.
95 The file must already be open before calling this function.
97 The resulting file store object is of concrete type, i.e. either CDirectFileStore
98 or CPermanentFileStore. The specific type is determined from the layout information
99 held in the file store.
101 Note that ownership of the file passes to the store. The referenced RFile
102 is cleared and is no longer valid:
104 @param aFile A reference to the opened file.
105 @return A pointer to the new file store object.
106 @see CFileStore::Layout() */
108 return FromLC(aFile,KDefaultFileStoreFactory);
111 /** Opens a file containing a store and constructs an appropriate file store object.
113 The resulting file store object is of concrete type, i.e. either CDirectFileStore
114 or CPermanentFileStore. The specific type is determined from the layout information
115 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
116 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
117 when the file server write caching is enabled, the order of file write operations is not guaranteed.
118 This could cause data inconsistency in some circumstances, for example, when the power is lost in
119 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
122 @param aFs Handle to a file server session.
123 @param aName The full path name of the file containing the store.
124 @param aFileMode The mode in which the file is to be accessed. The mode is
125 defined by the TFileMode type.
126 @param TFileStoreFactoryFunction An array of file store factory function.
127 @return A pointer to the new file store object.
129 @see TFileStoreFactoryFunction
131 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
133 // Open a file store of any of the types supported by aFactory.
137 __LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
138 return FromL(file,aFactory);
141 /** Opens a file containing a store and constructs an appropriate file store object.
143 The resulting file store object is of concrete type, i.e. either CDirectFileStore
144 or CPermanentFileStore. The specific type is determined from the layout information
145 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
146 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
147 when the file server write caching is enabled, the order of file write operations is not guaranteed.
148 This could cause data inconsistency in some circumstances, for example, when the power is lost in
149 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
152 @param aFs Handle to a file server session.
153 @param aName The full path name of the file containing the store.
154 @param aFileMode The mode in which the file is to be accessed. The mode is
155 defined by the TFileMode type.
156 @param TFileStoreFactoryFunction An array of file store factory function.
157 @return A pointer to the new file store object.
159 @see TFileStoreFactoryFunction
161 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[])
163 // Open and leave on cleanup stack.
166 CFileStore* store=OpenL(aFs,aName,aFileMode,aFactory);
167 CleanupStack::PushL(store);
171 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
173 // Read the file header and let every factory function in turn try to open it.
179 RReadStream stream(&buf);
182 if (chk.UidType().IsValid())
184 const TFileStoreFactoryFunction* iter=&aFactory[0];
185 TFileStoreFactoryFunction func;
186 while ((func=*iter++)!=NULL)
188 CFileStore* store=(*func)(buf,chk.UidType());
191 CleanupStack::Pop(2);
197 __LEAVE(KErrNotSupported);
201 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,const TFileStoreFactoryFunction aFactory[])
203 // Open and leave on cleanup stack.
206 CFileStore* store=FromL(aFile,aFactory);
207 CleanupStack::PushL(store);
211 EXPORT_C void CFileStore::SetTypeL(const TUidType& aType)
212 /** Sets the UID type of the file store.
214 The first UID, i.e. the first TUid component, of the TUidType must be the
215 file store type as returned by CFileStore::Layout(), otherwise the function
216 raises a STORE-File 9 panic.
218 @param aType The UID type object containing the file store type.
221 __ASSERT_ALWAYS(aType[0]==Layout(),Panic(EFileStoreBadType));
222 TCheckedUid chk(aType);
223 if (iHost.IsActive())
225 RShareWriteStream stream(iHost);
227 stream<<chk; // failure may mean the file's type information is lost
228 CleanupStack::PopAndDestroy();
232 TInt size=iBuf.SizeL();
233 RWriteStream stream(&iBuf);
237 ExternalizeL(stream);
244 EXPORT_C void CFileStore::MarshalL()
246 // Second-phase construction for opening existing file stores.
249 __ASSERT_DEBUG(!iHost.IsActive()&&(!iType.IsValid()||iType[0]==Layout()),User::Invariant());
250 RReadStream stream(&iBuf);
251 InternalizeL(stream);
255 EXPORT_C CFileStore::~CFileStore()
256 /** Frees resources owned by the object, prior to its destruction. In particular,
257 it closes the associated file. */
263 /** Opens a file containing a store and constructs an appropriate file store object.
265 The resulting file store object is of concrete type, i.e. either CDirectFileStore
266 or CPermanentFileStore. The specific type is determined from the layout information
267 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
268 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
269 when the file server write caching is enabled, the order of file write operations is not guaranteed.
270 This could cause data inconsistency in some circumstances, for example, when the power is lost in
271 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
274 @param aFs Handle to a file server session.
275 @param aName The full path name of the file containing the store.
276 @param aFileMode The mode in which the file is to be accessed. The mode is
277 defined by the TFileMode type.
278 @param TFileStoreFactoryFunction A file store factory function.
279 @return A pointer to the new file store object.
281 @see TFileStoreFactoryFunction
283 EXPORT_C CFileStore* CFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
285 // Open a file store using aFunction.
289 __LEAVE_IF_ERROR(file.Open(aFs,aName,aFileMode));
290 return FromL(file,aFunction);
293 /** Opens a file containing a store and constructs an appropriate file store object.
295 The resulting file store object is of concrete type, i.e. either CDirectFileStore
296 or CPermanentFileStore. The specific type is determined from the layout information
297 held in the file store. Note that if the store object is CPermanentFileStore and the file is writable,
298 it is strongly recommended to set EFileWriteDirectIO bit in aFileMode. This is because that
299 when the file server write caching is enabled, the order of file write operations is not guaranteed.
300 This could cause data inconsistency in some circumstances, for example, when the power is lost in
301 the middle of database transaction. Therefore, the file write caching should be switched off to maintain integrity.
304 @param aFs Handle to a file server session.
305 @param aName The full path name of the file containing the store.
306 @param aFileMode The mode in which the file is to be accessed. The mode is
307 defined by the TFileMode type.
308 @param TFileStoreFactoryFunction A file store factory function.
309 @return A pointer to the new file store object.
311 @see TFileStoreFactoryFunction
313 EXPORT_C CFileStore* CFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction)
315 // Open and leave on cleanup stack.
318 CFileStore* store=OpenL(aFs,aName,aFileMode,aFunction);
319 CleanupStack::PushL(store);
323 EXPORT_C CFileStore* CFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
325 // Create a file store using aFunction. Must not already exist.
329 __LEAVE_IF_ERROR(file.Create(aFs,aName,aFileMode));
330 return DoNewL(file,aFunction);
333 EXPORT_C CFileStore* CFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
335 // Create and leave on cleanup stack.
338 CFileStore* store=CreateL(aFs,aName,aFileMode,aFunction);
339 CleanupStack::PushL(store);
343 EXPORT_C CFileStore* CFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
345 // Replace a file store using aFunction. May exist already.
349 __LEAVE_IF_ERROR(file.Replace(aFs,aName,aFileMode));
350 return DoNewL(file,aFunction);
353 EXPORT_C CFileStore* CFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction)
355 // Replace and leave on cleanup stack.
358 CFileStore* store=ReplaceL(aFs,aName,aFileMode,aFunction);
359 CleanupStack::PushL(store);
363 EXPORT_C CFileStore* CFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
365 // Create a temporary file store using aFunction.
369 __LEAVE_IF_ERROR(file.Temp(aFs,aPath,aName,aFileMode));
370 return DoNewL(file,aFunction);
373 EXPORT_C CFileStore* CFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction)
375 // Create temporary and leave on cleanup stack.
378 CFileStore* store=TempL(aFs,aPath,aName,aFileMode,aFunction);
379 CleanupStack::PushL(store);
383 EXPORT_C CFileStore* CFileStore::FromL(RFile& aFile,TFileStoreFactoryFunction aFunction)
385 // Open a file store using aFunction, given its file handle.
391 RReadStream stream(&buf);
394 CFileStore* store=(*aFunction)(buf,chk.UidType());
398 __LEAVE(KErrNotSupported);
401 CleanupStack::Pop(2);
405 EXPORT_C CFileStore* CFileStore::FromLC(RFile& aFile,TFileStoreFactoryFunction aFunction)
407 // Open and leave on cleanup stack.
410 CFileStore* store=FromL(aFile,aFunction);
411 CleanupStack::PushL(store);
415 EXPORT_C CFileStore* CFileStore::NewL(RFile& aFile,TNewFunction aFunction)
417 // Create a file store using aFunction, given its file handle.
420 TInt r=aFile.SetSize(0);
426 return DoNewL(aFile,aFunction);
429 EXPORT_C CFileStore* CFileStore::NewLC(RFile& aFile,TNewFunction aFunction)
431 // Create and leave on cleanup stack.
434 CFileStore* store=NewL(aFile,aFunction);
435 CleanupStack::PushL(store);
439 EXPORT_C CFileStore::CFileStore(RFile& aFile)
441 // Constructor creating a new file store.
448 EXPORT_C CFileStore::CFileStore(RFileBuf& aBuf,const TUidType& aType)
450 // Constructor opening an existing file store.
452 : iBuf(Capture(aBuf)),iType(aType)
455 EXPORT_C void CFileStore::Destruct()
457 // Early destruction, for derived classes overriding DoRevertL().
460 if (iHost.IsActive())
466 EXPORT_C void CFileStore::SynchL()
468 // Synchronise this file store's file buffer.
471 TStreamExchange& host=iHost;
474 MStreamBuf* buf=host.HostL();
475 __ASSERT_DEBUG(IsHost(buf),User::Invariant());
476 host.Release(); // make sure no writes fail silently by shutting down on failure
484 EXPORT_C void CFileStore::ChangedL()
486 // Re-write this file store's structure.
489 __ASSERT_DEBUG(iHost.IsActive(),User::Invariant());
490 RShareWriteStream stream(iHost,KFileStoreStart);
492 ExternalizeL(stream);
493 CleanupStack::PopAndDestroy();
496 EXPORT_C void CFileStore::RefreshL()
498 // Re-read this file store's structure.
501 if (iHost.IsActive())
503 RShareReadStream stream(iHost,KFileStoreStart);
505 InternalizeL(stream);
506 CleanupStack::PopAndDestroy();
510 iBuf.SeekL(iBuf.ERead,KFileStoreStart);
515 EXPORT_C void CFileStore::DoCommitL()
517 // Default implementation just synchronising.
523 EXPORT_C void CFileStore::DoRevertL()
525 // Default implementation failing after synchronisation.
529 __LEAVE(KErrNotSupported);
532 CFileStore* CFileStore::DoNewL(RFile& aFile,TNewFunction aFunction)
534 CleanupClosePushL(aFile);
535 CFileStore* store=(*aFunction)(aFile);