1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/INC/S32FILE.INL Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,603 @@
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 RFileBuf
1.20 +inline void RFileBuf::Reset(TInt aSize)
1.21 +/** Frees the intermediate buffer and changes the size of any future intermediate
1.22 +buffer to the specified value.
1.23 +
1.24 +The intermediate buffer must not contain any outstanding write data, otherwise
1.25 +the function raises a STORE-File 6 panic.
1.26 +
1.27 +@param aSize The size of any future intermediate buffer. */
1.28 + {Reset();iSize=aSize;}
1.29 +inline void RFileBuf::Detach()
1.30 +/** Detaches the file from this stream buffer.
1.31 +
1.32 +The intermediate buffer's read and write marks are not changed, and the stream
1.33 +positions are not changed. This means that the contents of the file should
1.34 +not change while it is detached.
1.35 +
1.36 +@see Attach()
1.37 +@see Reattach() */
1.38 + {iFile=RFile();}
1.39 +inline void RFileBuf::Reattach(RFile& aFile)
1.40 +/** Re-attaches the specified file to this stream buffer.
1.41 +
1.42 +The intermediate buffer's read and write marks are not changed, and the stream
1.43 +positions are not changed.
1.44 +
1.45 +The file should be the one that was detached using the Detach() function.
1.46 +
1.47 +@param aFile The file to be re-attached.
1.48 +@see Attach()
1.49 +@see Detach() */
1.50 + {iFile=aFile;}
1.51 +inline RFile& RFileBuf::File() const
1.52 +/** Gets a reference to the file attached to this stream buffer.
1.53 +
1.54 +@return The file attached to this stream buffer. */
1.55 + {return MUTABLE_CAST(RFile&,iFile);}
1.56 +
1.57 +// Class RFileWriteStream
1.58 +inline RFileWriteStream::RFileWriteStream(const MExternalizer<TStreamRef>& anExter)
1.59 + : RWriteStream(anExter)
1.60 + {}
1.61 +
1.62 +// Class CFileStore
1.63 +inline const TUidType& CFileStore::Type() const
1.64 +/** Gets the UID type of the file store.
1.65 +
1.66 +@return The UID type object containing the file store type.
1.67 +@see TUid */
1.68 + {return iType;}
1.69 +inline void CFileStore::Reset()
1.70 +/** Frees the file store’s buffer space.
1.71 +
1.72 +The buffer space is automatically re-allocated when needed.
1.73 +
1.74 +This function should only be used immediately after a successful call to CommitL()
1.75 +or RevertL().
1.76 +
1.77 +@see CStreamStore::CommitL()
1.78 +@see CStreamStore::RevertL() */
1.79 + {iBuf.Reset();}
1.80 +inline void CFileStore::Reset(TInt aSize)
1.81 +/** Frees the file store’s buffer space and changes the size of future buffer
1.82 +space allocations.
1.83 +
1.84 +The buffer space is automatically re-allocated when needed, using the new
1.85 +size value.
1.86 +
1.87 +This function should only be used immediately after a successful call to CommitL()
1.88 +or RevertL().
1.89 +
1.90 +@param aSize The size of future buffer space allocations.
1.91 +@see CStreamStore::CommitL()
1.92 +@see CStreamStore::RevertL() */
1.93 + {iBuf.Reset(aSize);}
1.94 +inline void CFileStore::Detach()
1.95 +/** Detaches the file store from its associated file.
1.96 +
1.97 +In effect, the file store gives up ownership of the file.
1.98 +
1.99 +Detaching is useful in cases where a file needs to be closed and later re-opened;
1.100 +for example, to give up a write lock for backup purposes.
1.101 +
1.102 +It is very important that the contents of the file should not change while
1.103 +it is detached.
1.104 +
1.105 +@see File()
1.106 +@see Reattach() */
1.107 + {iBuf.Detach();}
1.108 +inline void CFileStore::Reattach(RFile& aFile)
1.109 +/** Reattaches a file to the file store. The file should be the one that was detached
1.110 +using the Detach() function.
1.111 +
1.112 +@param aFile The file to be associated with this file store.
1.113 +@see File() */
1.114 + {iBuf.Reattach(aFile);}
1.115 +inline RFile& CFileStore::File() const
1.116 +/** Gets a reference to the file associated with this file store.
1.117 +
1.118 +This function is called prior to detaching the file store.
1.119 +
1.120 +@return A reference to the associated file.
1.121 +@see Detach() */
1.122 + {return iBuf.File();}
1.123 +inline TStreamExchange& CFileStore::Host() const
1.124 + {return MUTABLE_CAST(TStreamExchange&,iHost);}
1.125 +inline TBool CFileStore::IsHost(const MStreamBuf* aBuf) const
1.126 + {return aBuf==&iBuf;}
1.127 +inline void CFileStore::SetSizeL(TInt aSize)
1.128 + {iBuf.SetSizeL(aSize);}
1.129 +
1.130 +// Class CDirectFileStore
1.131 +inline CDirectFileStore* CDirectFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.132 +/** Opens a file containing a direct file store, and constructs a direct file store
1.133 +object.
1.134 +
1.135 +@param aFs Handle to a file server session.
1.136 +@param aName The full path name of the file containing the store.
1.137 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.138 +defined by the TFileMode type.
1.139 +@return A pointer to the new direct file store object.
1.140 +@see TFileMode */
1.141 + {return STATIC_CAST(CDirectFileStore*,CFileStore::OpenL(aFs,aName,aFileMode,KDirectFileStoreFactoryFunction));}
1.142 +inline CDirectFileStore* CDirectFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.143 +/** Opens a file containing a direct file store, constructs a direct file store
1.144 +object, and places the pointer onto the cleanup stack.
1.145 +
1.146 +@param aFs Handle to a file server session.
1.147 +@param aName The full path name of the file containing the store.
1.148 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.149 +defined by the TFileMode type.
1.150 +@return A pointer to the new direct file store object.
1.151 +@see TFileMode */
1.152 + {return STATIC_CAST(CDirectFileStore*,CFileStore::OpenLC(aFs,aName,aFileMode,KDirectFileStoreFactoryFunction));}
1.153 +inline CDirectFileStore* CDirectFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.154 +/** Creates a new file and constructs a new direct file store object to be associated
1.155 +with this file.
1.156 +
1.157 +@param aFs Handle to a file server session.
1.158 +@param aName The full path name of the new file. A file with this name must
1.159 +not already exist, otherwise the function leaves.
1.160 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.161 +defined by the TFileMode type.
1.162 +@return A pointer to the new direct file store object
1.163 +@see TFileMode */
1.164 + {return STATIC_CAST(CDirectFileStore*,CFileStore::CreateL(aFs,aName,aFileMode,&DoNewL));}
1.165 +inline CDirectFileStore* CDirectFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.166 +/** Creates a new file and constructs a new direct file store object to be associated
1.167 +with this file, and places the pointer onto the cleanup stack.
1.168 +
1.169 +@param aFs Handle to a file server session.
1.170 +@param aName The full path name of the new file. A file with this name must
1.171 +not already exist, otherwise the function leaves.
1.172 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.173 +defined by the TFileMode type.
1.174 +@return A pointer to the new direct file store object
1.175 +@see TFileMode */
1.176 + {return STATIC_CAST(CDirectFileStore*,CFileStore::CreateLC(aFs,aName,aFileMode,&DoNewL));}
1.177 +inline CDirectFileStore* CDirectFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.178 +/** Creates a file and constructs a direct file store object to be associated with
1.179 +it.
1.180 +
1.181 +The file replaces any existing file of the same name.
1.182 +
1.183 +@param aFs Handle to a file server session.
1.184 +@param aName The full path name of the file to be replaced.
1.185 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.186 +defined by the TFileMode type.
1.187 +@return A pointer to the new direct file store object.
1.188 +@see TFileMode */
1.189 + {return STATIC_CAST(CDirectFileStore*,CFileStore::ReplaceL(aFs,aName,aFileMode,&DoNewL));}
1.190 +inline CDirectFileStore* CDirectFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.191 +/** Creates a file, constructs a direct file store object to be associated with
1.192 +it, and places the pointer onto the cleanup stack.
1.193 +
1.194 +The file replaces any existing file of the same name.
1.195 +
1.196 +@param aFs Handle to a file server session.
1.197 +@param aName The full path name of the file to be replaced.
1.198 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.199 +defined by the TFileMode type.
1.200 +@return A pointer to the new direct file store object.
1.201 +@see TFileMode */
1.202 + {return STATIC_CAST(CDirectFileStore*,CFileStore::ReplaceLC(aFs,aName,aFileMode,&DoNewL));}
1.203 +inline CDirectFileStore* CDirectFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
1.204 +/** Creates a temporary file and constructs a direct file store object to be associated
1.205 +with it.
1.206 +
1.207 +The new file is created in the specified path and a unique file name is generated
1.208 +by the file server.
1.209 +
1.210 +Note that the store framework does not delete a temporary file after it is
1.211 +closed.
1.212 +
1.213 +@param aFs Handle to a file server session.
1.214 +@param aPath The path where the new file is to be created.
1.215 +@param aName On return, contains the full path name of the new file.
1.216 +@param aFileMode The mode in which the new file is to be accessed. The mode
1.217 +is defined by the TFileMode type.
1.218 +@return A pointer to the new direct file store object.
1.219 +@see TFileMode */
1.220 + {return STATIC_CAST(CDirectFileStore*,CFileStore::TempL(aFs,aPath,aName,aFileMode,&DoNewL));}
1.221 +inline CDirectFileStore* CDirectFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
1.222 +/** Creates a temporary file, constructs a direct file store object to be associated
1.223 +with it, and places the pointer onto the cleanup stack.
1.224 +
1.225 +The new file is created in the specified path and a unique file name is generated
1.226 +by the file server.
1.227 +
1.228 +Note that the store framework does not delete a temporary file after it is
1.229 +closed.
1.230 +
1.231 +@param aFs Handle to a file server session.
1.232 +@param aPath The path where the new file is to be created.
1.233 +@param aName On return, contains the full path name of the new file.
1.234 +@param aFileMode The mode in which the new file is to be accessed. The mode
1.235 +is defined by the TFileMode type.
1.236 +@return A pointer to the new direct file store object.
1.237 +@see TFileMode */
1.238 + {return STATIC_CAST(CDirectFileStore*,CFileStore::TempLC(aFs,aPath,aName,aFileMode,&DoNewL));}
1.239 +inline CDirectFileStore* CDirectFileStore::FromL(RFile& aFile)
1.240 +/** Constructs a direct file store object from an already opened file.
1.241 +
1.242 +The file must already be open before calling this function.
1.243 +
1.244 +Note that ownership of the file passes to the store. The referenced RFile
1.245 +is cleared and is no longer valid.
1.246 +
1.247 +@param aFile A reference to the opened file.
1.248 +@return A pointer to the new direct file store object. */
1.249 + {return STATIC_CAST(CDirectFileStore*,CFileStore::FromL(aFile,KDirectFileStoreFactoryFunction));}
1.250 +inline CDirectFileStore* CDirectFileStore::FromLC(RFile& aFile)
1.251 +/** Constructs a direct file store object from an already opened file, and places
1.252 +the pointer onto the cleanup stack.
1.253 +
1.254 +The file must already be open before calling this function.
1.255 +
1.256 +Note that ownership of the file passes to the store. The referenced RFile
1.257 +is cleared and is no longer valid.
1.258 +
1.259 +@param aFile A reference to the opened file.
1.260 +@return A pointer to the new direct file store object. */
1.261 + {return STATIC_CAST(CDirectFileStore*,CFileStore::FromLC(aFile,KDirectFileStoreFactoryFunction));}
1.262 +inline CDirectFileStore* CDirectFileStore::NewL(RFile& aFile)
1.263 +/** Constructs a new direct file store object in an already opened file.
1.264 +
1.265 +The file must already be open before calling the function. The existing content
1.266 +of the file is discarded.
1.267 +
1.268 +Note that ownership of the file passes to the store. The referenced RFile
1.269 +is cleared and is no longer valid:
1.270 +
1.271 +@param aFile A reference to the opened file.
1.272 +@return A pointer to the new direct file store object. */
1.273 + {return STATIC_CAST(CDirectFileStore*,CFileStore::NewL(aFile,&DoNewL));}
1.274 +inline CDirectFileStore* CDirectFileStore::NewLC(RFile& aFile)
1.275 +/** Constructs a new direct file store object in an already opened file and places
1.276 +the pointer onto the cleanup stack.
1.277 +
1.278 +The file must already be open before calling the function. The existing content
1.279 +of the file is discarded.
1.280 +
1.281 +Note that ownership of the file passes to the store. The referenced RFile
1.282 +is cleared and is no longer valid:
1.283 +
1.284 +@param aFile A reference to the opened file.
1.285 +@return A pointer to the new direct file store object. */
1.286 + {return STATIC_CAST(CDirectFileStore*,CFileStore::NewLC(aFile,&DoNewL));}
1.287 +
1.288 +// Class CPermanentFileStore
1.289 +inline CPermanentFileStore* CPermanentFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.290 +/** Opens a file containing a permanent file store, and constructs a permanent
1.291 +file store object.
1.292 +
1.293 +@param aFs Handle to a file server session.
1.294 +@param aName The full path name of the file containing the store.
1.295 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.296 +defined by the TFileMode type.
1.297 +@return A pointer to the new permanent file store object.
1.298 +@see TFileMode */
1.299 + {
1.300 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.301 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.302 +
1.303 + if ((aFileMode&EFileWrite) != 0)
1.304 + {
1.305 + aFileMode |= EFileWriteDirectIO;
1.306 + aFileMode &= (~EFileWriteBuffered);
1.307 + }
1.308 + return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenL(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
1.309 + }
1.310 +inline CPermanentFileStore* CPermanentFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.311 +/** Opens a file containing a permanent file store, constructs a permanent file
1.312 +store object, and places the pointer onto the cleanup stack.
1.313 +
1.314 +@param aFs Handle to a file server session.
1.315 +@param aName The full path name of the file containing the store.
1.316 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.317 +defined by the TFileMode type.
1.318 +@return A pointer to the new permanent file store object.
1.319 +@see TFileMode */
1.320 + {
1.321 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.322 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.323 +
1.324 + if ((aFileMode&EFileWrite) != 0)
1.325 + {
1.326 + aFileMode |= EFileWriteDirectIO;
1.327 + aFileMode &= (~EFileWriteBuffered);
1.328 + }
1.329 + return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenLC(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
1.330 + }
1.331 +inline CPermanentFileStore* CPermanentFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.332 +/** Creates a new file and constructs a new permanent file store object to be associated
1.333 +with this file.
1.334 +
1.335 +@param aFs Handle to a file server session.
1.336 +@param aName The full path name of the new file. A file with this name must
1.337 +not already exist, otherwise the function leaves.
1.338 +@param aFileMode The mode in which the new file is to be accessed. This mode
1.339 +is defined by the TFileMode type.
1.340 +@return A pointer to the new permanent file store object.
1.341 +@see TFileMode */
1.342 + {
1.343 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.344 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.345 +
1.346 + if ((aFileMode&EFileWrite) != 0)
1.347 + {
1.348 + aFileMode |= EFileWriteDirectIO;
1.349 + aFileMode &= (~EFileWriteBuffered);
1.350 + }
1.351 + return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateL(aFs,aName,aFileMode,&DoNewL));
1.352 + }
1.353 +inline CPermanentFileStore* CPermanentFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.354 +/** Creates a new file and constructs a new permanent file store object to be associated
1.355 +with this file, and places the pointer onto the cleanup stack.
1.356 +
1.357 +@param aFs Handle to a file server session.
1.358 +@param aName The full path name of the new file. A file with this name must
1.359 +not already exist, otherwise the function leaves.
1.360 +@param aFileMode The mode in which the new file is to be accessed. This mode
1.361 +is defined by the TFileMode type.
1.362 +@return A pointer to the new permanent file store object.
1.363 +@see TFileMode */
1.364 + {
1.365 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.366 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.367 +
1.368 + if ((aFileMode&EFileWrite) != 0)
1.369 + {
1.370 + aFileMode |= EFileWriteDirectIO;
1.371 + aFileMode &= (~EFileWriteBuffered);
1.372 + }
1.373 + return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateLC(aFs,aName,aFileMode,&DoNewL));
1.374 + }
1.375 +inline CPermanentFileStore* CPermanentFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.376 +/** Creates a file, constructs a permanent file store object to be associated with
1.377 +it.
1.378 +
1.379 +This file replaces any existing file of the same name.
1.380 +
1.381 +@param aFs Handle to a file server session.
1.382 +@param aName The full path name of the file to be replaced.
1.383 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.384 +defined by the TFileMode type.
1.385 +@return A pointer to the new permanent file store object.
1.386 +@see TFileMode */
1.387 + {
1.388 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.389 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.390 +
1.391 + if ((aFileMode&EFileWrite) != 0)
1.392 + {
1.393 + aFileMode |= EFileWriteDirectIO;
1.394 + aFileMode &= (~EFileWriteBuffered);
1.395 + }
1.396 + return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceL(aFs,aName,aFileMode,&DoNewL));
1.397 + }
1.398 +inline CPermanentFileStore* CPermanentFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.399 +/** Creates a file, constructs a permanent file store object to be associated with
1.400 +it, and places the pointer onto the cleanup stack.
1.401 +
1.402 +This file replaces any existing file of the same name.
1.403 +
1.404 +@param aFs Handle to a file server session.
1.405 +@param aName The full path name of the file to be replaced.
1.406 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.407 +defined by the TFileMode type.
1.408 +@return A pointer to the new permanent file store object.
1.409 +@see TFileMode */
1.410 + {
1.411 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.412 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.413 +
1.414 + if ((aFileMode&EFileWrite) != 0)
1.415 + {
1.416 + aFileMode |= EFileWriteDirectIO;
1.417 + aFileMode &= (~EFileWriteBuffered);
1.418 + }
1.419 + return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceLC(aFs,aName,aFileMode,&DoNewL));
1.420 + }
1.421 +inline CPermanentFileStore* CPermanentFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
1.422 +/** Creates a temporary file and constructs a permanent file store object to be
1.423 +associated with it.
1.424 +
1.425 +The new file is created in the specified path and a unique file name is generated
1.426 +by the file server.
1.427 +
1.428 +Note that the store framework does not delete a temporary file after it is
1.429 +closed.
1.430 +
1.431 +@param aFs Handle to a file server session.
1.432 +@param aPath The path where the new file is to be created.
1.433 +@param aName On return, contains the full path name of the new file.
1.434 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.435 +defined by the TFileMode type.
1.436 +@return A pointer to the new permanent file store object.
1.437 +@see TFileMode */
1.438 + {
1.439 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.440 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.441 +
1.442 + if ((aFileMode&EFileWrite) != 0)
1.443 + {
1.444 + aFileMode |= EFileWriteDirectIO;
1.445 + aFileMode &= (~EFileWriteBuffered);
1.446 + }
1.447 + return STATIC_CAST(CPermanentFileStore*,CFileStore::TempL(aFs,aPath,aName,aFileMode,&DoNewL));
1.448 + }
1.449 +inline CPermanentFileStore* CPermanentFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
1.450 +/** Creates a temporary file, constructs a permanent file store object to be associated
1.451 +with it, and places the pointer onto the cleanup stack.
1.452 +
1.453 +The new file is created in the specified path and a unique file name is generated
1.454 +by the file server.
1.455 +
1.456 +Note that the store framework does not delete a temporary file after it is
1.457 +closed.
1.458 +
1.459 +@param aFs Handle to a file server session.
1.460 +@param aPath The path where the new file is to be created.
1.461 +@param aName On return, contains the full path name of the new file.
1.462 +@param aFileMode The mode in which the file is to be accessed. The mode is
1.463 +defined by the TFileMode type.
1.464 +@return A pointer to the new permanent file store object.
1.465 +@see TFileMode */
1.466 + {
1.467 +// When the file server write caching is enabled, the order of file write operations is not guaranteed. This could cause data inconsistency in some circumstances,
1.468 +// for example, when the power is lost in the middle of a database transaction. Therefore, the file write caching is disabled for this file to maintain integrity.
1.469 +
1.470 + if ((aFileMode&EFileWrite) != 0)
1.471 + {
1.472 + aFileMode |= EFileWriteDirectIO;
1.473 + aFileMode &= (~EFileWriteBuffered);
1.474 + }
1.475 + return STATIC_CAST(CPermanentFileStore*,CFileStore::TempLC(aFs,aPath,aName,aFileMode,&DoNewL));
1.476 + }
1.477 +inline CPermanentFileStore* CPermanentFileStore::FromL(RFile& aFile)
1.478 +/** Constructs a permanent file store object from an already opened file. It is strongly recommended to set EFileWriteDirectIO
1.479 +bit when opening the file. This is because that when the file server write caching is enabled, the
1.480 +order of file write operations is not guaranteed. This could cause data inconsistency in some
1.481 +circumstances, for example, when the power is lost in the middle of database transaction.
1.482 +Therefore, the file write caching should be switched off to maintain integrity.
1.483 +
1.484 +
1.485 +
1.486 +The file must already be open before calling this function.
1.487 +
1.488 +Note that ownership of the file passes to the store. The referenced RFile
1.489 +is cleared and is no longer valid.
1.490 +
1.491 +
1.492 +@param aFile A reference to the opened file.
1.493 +@return A pointer to the new permanent file store object. */
1.494 + {return STATIC_CAST(CPermanentFileStore*,CFileStore::FromL(aFile,KPermanentFileStoreFactoryFunction));}
1.495 +inline CPermanentFileStore* CPermanentFileStore::FromLC(RFile& aFile)
1.496 +/** Constructs a permanent file store object from an already opened file, and places
1.497 +the pointer onto the cleanup stack.
1.498 +
1.499 +The file must already be open before calling this function. It is strongly recommended to set EFileWriteDirectIO
1.500 +bit when opening the file. This is because that when the file server write caching is enabled, the
1.501 +order of file write operations is not guaranteed. This could cause data inconsistency in some
1.502 +circumstances, for example, when the power is lost in the middle of database transaction.
1.503 +Therefore, the file write caching should be switched off to maintain integrity.
1.504 +
1.505 +Note that ownership of the file passes to the store. The referenced RFile
1.506 +is cleared and is no longer valid.
1.507 +
1.508 +@param aFile A reference to the opened file.
1.509 +@return A pointer to the new permanent file store object. */
1.510 + {return STATIC_CAST(CPermanentFileStore*,CFileStore::FromLC(aFile,KPermanentFileStoreFactoryFunction));}
1.511 +inline CPermanentFileStore* CPermanentFileStore::NewL(RFile& aFile)
1.512 +/** Constructs a new permanent file store object in an already opened file.
1.513 +
1.514 +The file must already be open before calling this function. The existing content
1.515 +of the file is discarded. It is strongly recommended to set EFileWriteDirectIO
1.516 +bit when opening the file. It is because that when the file write caching in file server is on, the
1.517 +order of file writing is not guaranteed which could cause data inconsistency in some
1.518 +circumstances, for example, when the power is lost in the middle of data transaction.
1.519 +Therefore, the file write caching should be switched off to maintain the file integrity.
1.520 +
1.521 +Note that ownership of the file passes to the store. The referenced RFile
1.522 +is cleared and is no longer valid.
1.523 +
1.524 +@param aFile A reference to the opened file.
1.525 +@return A pointer to the new permanent file store object. */
1.526 + {return STATIC_CAST(CPermanentFileStore*,CFileStore::NewL(aFile,&DoNewL));}
1.527 +inline CPermanentFileStore* CPermanentFileStore::NewLC(RFile& aFile)
1.528 +/** Constructs a new permanent file store object in an already opened file and
1.529 +places the pointer onto the cleanup stack.
1.530 +
1.531 +The file must already be open before calling this function.The existing content
1.532 +of the file is discarded. It is strongly recommended to set EFileWriteDirectIO
1.533 +bit when opening the file. It is because that when the write caching in file server is on, the
1.534 +order of file writing is not guaranteed which could cause data inconsistency in some
1.535 +circumstances, for example, when the power is lost in the middle of data transaction.
1.536 +Therefore, the file write caching should be switched off to maintain the file integrity.
1.537 +
1.538 +Note that ownership of the file passes to the store. The referenced RFile
1.539 +is cleared and is no longer valid.
1.540 +
1.541 +@param aFile A reference to the opened file.
1.542 +@return A pointer to the new permanent file store object. */
1.543 + {return STATIC_CAST(CPermanentFileStore*,CFileStore::NewLC(aFile,&DoNewL));}
1.544 +
1.545 +// Class RFilePagePool
1.546 +inline TInt RFilePagePool::Open(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.547 +/** Opens a file to use for the page pool.
1.548 +
1.549 +@param aFs A file server session
1.550 +@param aName The name of the file
1.551 +@param aFileMode The mode in which the file is opened. For more information,
1.552 +see the TFileMode enumeration.
1.553 +@return KErrNone if successful, otherwise another of the system-wide error
1.554 +codes.
1.555 +@see TFileMode */
1.556 + {return iFile.Open(aFs,aName,aFileMode);}
1.557 +inline TInt RFilePagePool::Create(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.558 +/** Creates a new file for the page pool.
1.559 +
1.560 +@param aFs A file server session
1.561 +@param aName The name of the file. Any path components which are not specified
1.562 +here are taken from the session path.
1.563 +@param aFileMode The mode in which the file is opened. For more information
1.564 +see the TFileMode enumeration.
1.565 +@return KErrNone if successful, otherwise another of the system-wide error
1.566 +codes.
1.567 +@see TFileMode */
1.568 + {return iFile.Create(aFs,aName,aFileMode);}
1.569 +inline TInt RFilePagePool::Replace(RFs& aFs,const TDesC& aName,TUint aFileMode)
1.570 +/** Creates or opens a file for the page pool.
1.571 +
1.572 +If there is an existing file with the same name, this function overwrites
1.573 +it. If the file does not already exist, it is created.
1.574 +
1.575 +@param aFs A file server session.
1.576 +@param aName The name of the file. Any path components which are not specified
1.577 +here are taken from the session path.
1.578 +@param aFileMode The mode in which the file is opened. For more information
1.579 +see the TFileMode enumeration.
1.580 +@return KErrNone if successful, otherwise another of the system-wide error
1.581 +codes.
1.582 +@see TFileMode */
1.583 + {return iFile.Replace(aFs,aName,aFileMode);}
1.584 +inline TInt RFilePagePool::Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
1.585 +/** Creates and opens a file for the page pool with a unique name.
1.586 +
1.587 +@param aFs A file server session.
1.588 +@param aPath The directory in which the file should be created.
1.589 +@param aName On return, contains the full path and name of the file. The filename
1.590 +is guaranteed to be unique within the directory specified by aPath.
1.591 +@param aFileMode The mode in which the file is opened. For more information
1.592 +see the TFileMode enumeration.
1.593 +@return KErrNone if successful, otherwise another of the system-wide error
1.594 +codes. */
1.595 + {return iFile.Temp(aFs,aPath,aName,aFileMode);}
1.596 +inline void RFilePagePool::Attach(RFile& aFile)
1.597 +/** Sets an existing file to be used for the page pool.
1.598 +
1.599 +@param aFile File to use for the page pool */
1.600 + {iFile=aFile;}
1.601 +inline void RFilePagePool::Detach()
1.602 +/** Ends the use of the file for the page pool, but does not close the file. */
1.603 + {iFile=RFile();}
1.604 +inline RFile& RFilePagePool::File() const
1.605 + {return MUTABLE_CAST(RFile&,iFile);}
1.606 +