os/persistentdata/persistentstorage/store/INC/S32FILE.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 // Class RFileBuf
    17 inline void RFileBuf::Reset(TInt aSize)
    18 /** Frees the intermediate buffer and changes the size of any future intermediate 
    19 buffer to the specified value.
    20 
    21 The intermediate buffer must not contain any outstanding write data, otherwise 
    22 the function raises a STORE-File 6 panic.
    23 
    24 @param aSize The size of any future intermediate buffer. */
    25 	{Reset();iSize=aSize;}
    26 inline void RFileBuf::Detach()
    27 /** Detaches the file from this stream buffer.
    28 
    29 The intermediate buffer's read and write marks are not changed, and the stream 
    30 positions are not changed. This means that the contents of the file should 
    31 not change while it is detached. 
    32 
    33 @see Attach()
    34 @see Reattach() */
    35 	{iFile=RFile();}
    36 inline void RFileBuf::Reattach(RFile& aFile)
    37 /** Re-attaches the specified file to this stream buffer.
    38 
    39 The intermediate buffer's read and write marks are not changed, and the stream 
    40 positions are not changed.
    41 
    42 The file should be the one that was detached using the Detach() function.
    43 
    44 @param aFile The file to be re-attached.
    45 @see Attach()
    46 @see Detach() */
    47 	{iFile=aFile;}
    48 inline RFile& RFileBuf::File() const
    49 /** Gets a reference to the file attached to this stream buffer.
    50 
    51 @return The file attached to this stream buffer. */
    52 	{return MUTABLE_CAST(RFile&,iFile);}
    53 
    54 // Class RFileWriteStream
    55 inline RFileWriteStream::RFileWriteStream(const MExternalizer<TStreamRef>& anExter)
    56 	: RWriteStream(anExter)
    57 	{}
    58 
    59 // Class CFileStore
    60 inline const TUidType& CFileStore::Type() const
    61 /** Gets the UID type of the file store.
    62 
    63 @return The UID type object containing the file store type. 
    64 @see TUid */
    65 	{return iType;}
    66 inline void CFileStore::Reset()
    67 /** Frees the file store’s buffer space.
    68 
    69 The buffer space is automatically re-allocated when needed.
    70 
    71 This function should only be used immediately after a successful call to CommitL() 
    72 or RevertL().
    73 
    74 @see CStreamStore::CommitL()
    75 @see CStreamStore::RevertL() */
    76 	{iBuf.Reset();}
    77 inline void CFileStore::Reset(TInt aSize)
    78 /** Frees the file store’s buffer space and changes the size of future buffer 
    79 space allocations.
    80 
    81 The buffer space is automatically re-allocated when needed, using the new 
    82 size value.
    83 
    84 This function should only be used immediately after a successful call to CommitL() 
    85 or RevertL().
    86 
    87 @param aSize The size of future buffer space allocations. 
    88 @see CStreamStore::CommitL()
    89 @see CStreamStore::RevertL() */
    90 	{iBuf.Reset(aSize);}
    91 inline void CFileStore::Detach()
    92 /** Detaches the file store from its associated file. 
    93 
    94 In effect, the file store gives up ownership of the file.
    95 
    96 Detaching is useful in cases where a file needs to be closed and later re-opened; 
    97 for example, to give up a write lock for backup purposes.
    98 
    99 It is very important that the contents of the file should not change while 
   100 it is detached.
   101 
   102 @see File()
   103 @see Reattach() */
   104 	{iBuf.Detach();}
   105 inline void CFileStore::Reattach(RFile& aFile)
   106 /** Reattaches a file to the file store. The file should be the one that was detached 
   107 using the Detach() function.
   108 
   109 @param aFile The file to be associated with this file store. 
   110 @see File() */
   111 	{iBuf.Reattach(aFile);}
   112 inline RFile& CFileStore::File() const
   113 /** Gets a reference to the file associated with this file store.
   114 
   115 This function is called prior to detaching the file store.
   116 
   117 @return A reference to the associated file. 
   118 @see Detach() */
   119 	{return iBuf.File();}
   120 inline TStreamExchange& CFileStore::Host() const
   121 	{return MUTABLE_CAST(TStreamExchange&,iHost);}
   122 inline TBool CFileStore::IsHost(const MStreamBuf* aBuf) const
   123 	{return aBuf==&iBuf;}
   124 inline void CFileStore::SetSizeL(TInt aSize)
   125 	{iBuf.SetSizeL(aSize);}
   126 
   127 // Class CDirectFileStore
   128 inline CDirectFileStore* CDirectFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   129 /** Opens a file containing a direct file store, and constructs a direct file store 
   130 object.
   131 
   132 @param aFs Handle to a file server session. 
   133 @param aName The full path name of the file containing the store. 
   134 @param aFileMode The mode in which the file is to be accessed. The mode is 
   135 defined by the TFileMode type.
   136 @return A pointer to the new direct file store object.
   137 @see TFileMode */
   138 	{return STATIC_CAST(CDirectFileStore*,CFileStore::OpenL(aFs,aName,aFileMode,KDirectFileStoreFactoryFunction));}
   139 inline CDirectFileStore* CDirectFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   140 /** Opens a file containing a direct file store, constructs a direct file store 
   141 object, and places the pointer onto the cleanup stack.
   142 
   143 @param aFs Handle to a file server session.
   144 @param aName The full path name of the file containing the store. 
   145 @param aFileMode The mode in which the file is to be accessed. The mode is 
   146 defined by the TFileMode type.
   147 @return A pointer to the new direct file store object. 
   148 @see TFileMode */
   149 	{return STATIC_CAST(CDirectFileStore*,CFileStore::OpenLC(aFs,aName,aFileMode,KDirectFileStoreFactoryFunction));}
   150 inline CDirectFileStore* CDirectFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   151 /** Creates a new file and constructs a new direct file store object to be associated 
   152 with this file.
   153 
   154 @param aFs Handle to a file server session.
   155 @param aName The full path name of the new file. A file with this name must 
   156 not already exist, otherwise the function leaves.
   157 @param aFileMode The mode in which the file is to be accessed. The mode is 
   158 defined by the TFileMode type. 
   159 @return A pointer to the new direct file store object 
   160 @see TFileMode */
   161 	{return STATIC_CAST(CDirectFileStore*,CFileStore::CreateL(aFs,aName,aFileMode,&DoNewL));}
   162 inline CDirectFileStore* CDirectFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   163 /** Creates a new file and constructs a new direct file store object to be associated 
   164 with this file, and places the pointer onto the cleanup stack.
   165 
   166 @param aFs Handle to a file server session. 
   167 @param aName The full path name of the new file. A file with this name must 
   168 not already exist, otherwise the function leaves.
   169 @param aFileMode The mode in which the file is to be accessed. The mode is 
   170 defined by the TFileMode type. 
   171 @return A pointer to the new direct file store object 
   172 @see TFileMode */
   173 	{return STATIC_CAST(CDirectFileStore*,CFileStore::CreateLC(aFs,aName,aFileMode,&DoNewL));}
   174 inline CDirectFileStore* CDirectFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   175 /** Creates a file and constructs a direct file store object to be associated with 
   176 it.
   177 
   178 The file replaces any existing file of the same name.
   179 
   180 @param aFs Handle to a file server session. 
   181 @param aName The full path name of the file to be replaced. 
   182 @param aFileMode The mode in which the file is to be accessed. The mode is 
   183 defined by the TFileMode type.
   184 @return A pointer to the new direct file store object. 
   185 @see TFileMode */
   186 	{return STATIC_CAST(CDirectFileStore*,CFileStore::ReplaceL(aFs,aName,aFileMode,&DoNewL));}
   187 inline CDirectFileStore* CDirectFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   188 /** Creates a file, constructs a direct file store object to be associated with 
   189 it, and places the pointer onto the cleanup stack.
   190 
   191 The file replaces any existing file of the same name.
   192 
   193 @param aFs Handle to a file server session. 
   194 @param aName The full path name of the file to be replaced.
   195 @param aFileMode The mode in which the file is to be accessed. The mode is 
   196 defined by the TFileMode type.
   197 @return A pointer to the new direct file store object. 
   198 @see TFileMode */
   199 	{return STATIC_CAST(CDirectFileStore*,CFileStore::ReplaceLC(aFs,aName,aFileMode,&DoNewL));}
   200 inline CDirectFileStore* CDirectFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
   201 /** Creates a temporary file and constructs a direct file store object to be associated 
   202 with it.
   203 
   204 The new file is created in the specified path and a unique file name is generated 
   205 by the file server.
   206 
   207 Note that the store framework does not delete a temporary file after it is 
   208 closed.
   209 
   210 @param aFs Handle to a file server session.
   211 @param aPath The path where the new file is to be created. 
   212 @param aName On return, contains the full path name of the new file.
   213 @param aFileMode The mode in which the new file is to be accessed. The mode 
   214 is defined by the TFileMode type.
   215 @return A pointer to the new direct file store object. 
   216 @see TFileMode */
   217 	{return STATIC_CAST(CDirectFileStore*,CFileStore::TempL(aFs,aPath,aName,aFileMode,&DoNewL));}
   218 inline CDirectFileStore* CDirectFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
   219 /** Creates a temporary file, constructs a direct file store object to be associated 
   220 with it, and places the pointer onto the cleanup stack.
   221 
   222 The new file is created in the specified path and a unique file name is generated 
   223 by the file server.
   224 
   225 Note that the store framework does not delete a temporary file after it is 
   226 closed.
   227 
   228 @param aFs Handle to a file server session.
   229 @param aPath The path where the new file is to be created. 
   230 @param aName On return, contains the full path name of the new file.
   231 @param aFileMode The mode in which the new file is to be accessed. The mode 
   232 is defined by the TFileMode type.
   233 @return A pointer to the new direct file store object. 
   234 @see TFileMode */
   235 	{return STATIC_CAST(CDirectFileStore*,CFileStore::TempLC(aFs,aPath,aName,aFileMode,&DoNewL));}
   236 inline CDirectFileStore* CDirectFileStore::FromL(RFile& aFile)
   237 /** Constructs a direct file store object from an already opened file.
   238 
   239 The file must already be open before calling this function.
   240 
   241 Note that ownership of the file passes to the store. The referenced RFile 
   242 is cleared and is no longer valid.
   243 
   244 @param aFile A reference to the opened file.
   245 @return A pointer to the new direct file store object. */
   246 	{return STATIC_CAST(CDirectFileStore*,CFileStore::FromL(aFile,KDirectFileStoreFactoryFunction));}
   247 inline CDirectFileStore* CDirectFileStore::FromLC(RFile& aFile)
   248 /** Constructs a direct file store object from an already opened file, and places 
   249 the pointer onto the cleanup stack.
   250 
   251 The file must already be open before calling this function.
   252 
   253 Note that ownership of the file passes to the store. The referenced RFile 
   254 is cleared and is no longer valid.
   255 
   256 @param aFile A reference to the opened file. 
   257 @return A pointer to the new direct file store object. */
   258 	{return STATIC_CAST(CDirectFileStore*,CFileStore::FromLC(aFile,KDirectFileStoreFactoryFunction));}
   259 inline CDirectFileStore* CDirectFileStore::NewL(RFile& aFile)
   260 /** Constructs a new direct file store object in an already opened file.
   261 
   262 The file must already be open before calling the function. The existing content 
   263 of the file is discarded.
   264 
   265 Note that ownership of the file passes to the store. The referenced RFile 
   266 is cleared and is no longer valid:
   267 
   268 @param aFile A reference to the opened file. 
   269 @return A pointer to the new direct file store object. */
   270 	{return STATIC_CAST(CDirectFileStore*,CFileStore::NewL(aFile,&DoNewL));}
   271 inline CDirectFileStore* CDirectFileStore::NewLC(RFile& aFile)
   272 /** Constructs a new direct file store object in an already opened file and places 
   273 the pointer onto the cleanup stack.
   274 
   275 The file must already be open before calling the function. The existing content 
   276 of the file is discarded.
   277 
   278 Note that ownership of the file passes to the store. The referenced RFile 
   279 is cleared and is no longer valid:
   280 
   281 @param aFile A reference to the opened file. 
   282 @return A pointer to the new direct file store object. */
   283 	{return STATIC_CAST(CDirectFileStore*,CFileStore::NewLC(aFile,&DoNewL));}
   284 
   285 // Class CPermanentFileStore
   286 inline CPermanentFileStore* CPermanentFileStore::OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   287 /** Opens a file containing a permanent file store, and constructs a permanent 
   288 file store object.
   289 
   290 @param aFs Handle to a file server session.
   291 @param aName The full path name of the file containing the store. 
   292 @param aFileMode The mode in which the file is to be accessed. The mode is 
   293 defined by the TFileMode type. 
   294 @return A pointer to the new permanent file store object.
   295 @see TFileMode */
   296 	{
   297 //  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,
   298 //  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.
   299 	
   300     if ((aFileMode&EFileWrite) != 0)
   301         {
   302         aFileMode |= EFileWriteDirectIO;
   303         aFileMode &= (~EFileWriteBuffered);
   304         }
   305     return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenL(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
   306 	}
   307 inline CPermanentFileStore* CPermanentFileStore::OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   308 /** Opens a file containing a permanent file store, constructs a permanent file 
   309 store object, and places the pointer onto the cleanup stack.
   310 
   311 @param aFs Handle to a file server session. 
   312 @param aName The full path name of the file containing the store. 
   313 @param aFileMode The mode in which the file is to be accessed. The mode is 
   314 defined by the TFileMode type. 
   315 @return A pointer to the new permanent file store object.
   316 @see TFileMode */
   317 	{
   318 //  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,
   319 //  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.
   320 	
   321     if ((aFileMode&EFileWrite) != 0)
   322         {
   323         aFileMode |= EFileWriteDirectIO;
   324         aFileMode &= (~EFileWriteBuffered);
   325         }
   326     return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenLC(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
   327 	}
   328 inline CPermanentFileStore* CPermanentFileStore::CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   329 /** Creates a new file and constructs a new permanent file store object to be associated 
   330 with this file.
   331 
   332 @param aFs Handle to a file server session.
   333 @param aName The full path name of the new file. A file with this name must 
   334 not already exist, otherwise the function leaves.
   335 @param aFileMode The mode in which the new file is to be accessed. This mode 
   336 is defined by the TFileMode type. 
   337 @return A pointer to the new permanent file store object.
   338 @see TFileMode */
   339 	{
   340 //  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,
   341 //  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.
   342 	
   343     if ((aFileMode&EFileWrite) != 0)
   344         {
   345         aFileMode |= EFileWriteDirectIO;
   346         aFileMode &= (~EFileWriteBuffered);
   347         }
   348     return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateL(aFs,aName,aFileMode,&DoNewL));
   349 	}
   350 inline CPermanentFileStore* CPermanentFileStore::CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   351 /** Creates a new file and constructs a new permanent file store object to be associated 
   352 with this file, and places the pointer onto the cleanup stack.
   353 
   354 @param aFs Handle to a file server session. 
   355 @param aName The full path name of the new file. A file with this name must 
   356 not already exist, otherwise the function leaves.
   357 @param aFileMode The mode in which the new file is to be accessed. This mode 
   358 is defined by the TFileMode type. 
   359 @return A pointer to the new permanent file store object. 
   360 @see TFileMode */
   361 	{
   362 //  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,
   363 //  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.
   364 	
   365     if ((aFileMode&EFileWrite) != 0)
   366         {
   367         aFileMode |= EFileWriteDirectIO;
   368         aFileMode &= (~EFileWriteBuffered);
   369         }
   370     return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateLC(aFs,aName,aFileMode,&DoNewL));
   371 	}
   372 inline CPermanentFileStore* CPermanentFileStore::ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode)
   373 /** Creates a file, constructs a permanent file store object to be associated with 
   374 it.
   375 
   376 This file replaces any existing file of the same name.
   377 
   378 @param aFs Handle to a file server session. 
   379 @param aName The full path name of the file to be replaced.
   380 @param aFileMode The mode in which the file is to be accessed. The mode is 
   381 defined by the TFileMode type.
   382 @return A pointer to the new permanent file store object.
   383 @see TFileMode */
   384 	{
   385 //  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,
   386 //  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.
   387 	
   388     if ((aFileMode&EFileWrite) != 0)
   389         {
   390         aFileMode |= EFileWriteDirectIO;
   391         aFileMode &= (~EFileWriteBuffered);
   392         }
   393     return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceL(aFs,aName,aFileMode,&DoNewL));
   394 	}
   395 inline CPermanentFileStore* CPermanentFileStore::ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode)
   396 /** Creates a file, constructs a permanent file store object to be associated with 
   397 it, and places the pointer onto the cleanup stack.
   398 
   399 This file replaces any existing file of the same name.
   400 
   401 @param aFs Handle to a file server session. 
   402 @param aName The full path name of the file to be replaced.
   403 @param aFileMode The mode in which the file is to be accessed. The mode is 
   404 defined by the TFileMode type.
   405 @return A pointer to the new permanent file store object. 
   406 @see TFileMode */
   407 	{
   408 //  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,
   409 //  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.
   410     
   411     if ((aFileMode&EFileWrite) != 0)
   412         {
   413         aFileMode |= EFileWriteDirectIO;
   414         aFileMode &= (~EFileWriteBuffered);
   415         }
   416     return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceLC(aFs,aName,aFileMode,&DoNewL));
   417 	}
   418 inline CPermanentFileStore* CPermanentFileStore::TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
   419 /** Creates a temporary file and constructs a permanent file store object to be 
   420 associated with it.
   421 
   422 The new file is created in the specified path and a unique file name is generated 
   423 by the file server.
   424 
   425 Note that the store framework does not delete a temporary file after it is 
   426 closed.
   427 
   428 @param aFs Handle to a file server session.
   429 @param aPath The path where the new file is to be created.
   430 @param aName On return, contains the full path name of the new file.
   431 @param aFileMode The mode in which the file is to be accessed. The mode is 
   432 defined by the TFileMode type.
   433 @return A pointer to the new permanent file store object.
   434 @see TFileMode */
   435 	{
   436 //  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,
   437 //  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.
   438 	
   439     if ((aFileMode&EFileWrite) != 0)
   440         {
   441         aFileMode |= EFileWriteDirectIO;
   442         aFileMode &= (~EFileWriteBuffered);
   443         }
   444     return STATIC_CAST(CPermanentFileStore*,CFileStore::TempL(aFs,aPath,aName,aFileMode,&DoNewL));
   445 	}
   446 inline CPermanentFileStore* CPermanentFileStore::TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
   447 /** Creates a temporary file, constructs a permanent file store object to be associated 
   448 with it, and places the pointer onto the cleanup stack.
   449 
   450 The new file is created in the specified path and a unique file name is generated 
   451 by the file server.
   452 
   453 Note that the store framework does not delete a temporary file after it is 
   454 closed.
   455 
   456 @param aFs Handle to a file server session. 
   457 @param aPath The path where the new file is to be created.
   458 @param aName On return, contains the full path name of the new file.
   459 @param aFileMode The mode in which the file is to be accessed. The mode is 
   460 defined by the TFileMode type. 
   461 @return A pointer to the new permanent file store object.
   462 @see TFileMode */
   463 	{
   464 //  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,
   465 //  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.
   466 	
   467     if ((aFileMode&EFileWrite) != 0)
   468         {
   469         aFileMode |= EFileWriteDirectIO;
   470         aFileMode &= (~EFileWriteBuffered);
   471         }
   472     return STATIC_CAST(CPermanentFileStore*,CFileStore::TempLC(aFs,aPath,aName,aFileMode,&DoNewL));
   473 	}
   474 inline CPermanentFileStore* CPermanentFileStore::FromL(RFile& aFile)
   475 /** Constructs a permanent file store object from an already opened file. It is strongly recommended to set EFileWriteDirectIO
   476 bit when opening the file. This is because that when the file server write caching is enabled, the
   477 order of file write operations is not guaranteed. This could cause data inconsistency in some
   478 circumstances, for example, when the power is lost in the middle of database transaction.
   479 Therefore, the file write caching should be switched off to maintain integrity.
   480    
   481 
   482 
   483 The file must already be open before calling this function.
   484 
   485 Note that ownership of the file passes to the store. The referenced RFile 
   486 is cleared and is no longer valid.
   487 
   488 
   489 @param aFile A reference to the opened file. 
   490 @return A pointer to the new permanent file store object. */
   491 	{return STATIC_CAST(CPermanentFileStore*,CFileStore::FromL(aFile,KPermanentFileStoreFactoryFunction));}
   492 inline CPermanentFileStore* CPermanentFileStore::FromLC(RFile& aFile)
   493 /** Constructs a permanent file store object from an already opened file, and places 
   494 the pointer onto the cleanup stack.
   495 
   496 The file must already be open before calling this function. It is strongly recommended to set EFileWriteDirectIO
   497 bit when opening the file. This is because that when the file server write caching is enabled, the
   498 order of file write operations is not guaranteed. This could cause data inconsistency in some
   499 circumstances, for example, when the power is lost in the middle of database transaction.
   500 Therefore, the file write caching should be switched off to maintain integrity.
   501 
   502 Note that ownership of the file passes to the store. The referenced RFile 
   503 is cleared and is no longer valid.
   504 
   505 @param aFile A reference to the opened file. 
   506 @return A pointer to the new permanent file store object. */
   507 	{return STATIC_CAST(CPermanentFileStore*,CFileStore::FromLC(aFile,KPermanentFileStoreFactoryFunction));}
   508 inline CPermanentFileStore* CPermanentFileStore::NewL(RFile& aFile)
   509 /** Constructs a new permanent file store object in an already opened file.
   510 
   511 The file must already be open before calling this function. The existing content 
   512 of the file is discarded. It is strongly recommended to set EFileWriteDirectIO
   513 bit when opening the file. It is because that when the file write caching in file server is on, the
   514 order of file writing is not guaranteed which could cause data inconsistency in some
   515 circumstances, for example, when the power is lost in the middle of data transaction.
   516 Therefore, the file write caching should be switched off to maintain the file integrity.
   517 
   518 Note that ownership of the file passes to the store. The referenced RFile 
   519 is cleared and is no longer valid.
   520 
   521 @param aFile A reference to the opened file. 
   522 @return A pointer to the new permanent file store object. */
   523 	{return STATIC_CAST(CPermanentFileStore*,CFileStore::NewL(aFile,&DoNewL));}
   524 inline CPermanentFileStore* CPermanentFileStore::NewLC(RFile& aFile)
   525 /** Constructs a new permanent file store object in an already opened file and 
   526 places the pointer onto the cleanup stack.
   527 
   528 The file must already be open before calling this function.The existing content 
   529 of the file is discarded. It is strongly recommended to set EFileWriteDirectIO
   530 bit when opening the file. It is because that when the write caching in file server is on, the
   531 order of file writing is not guaranteed which could cause data inconsistency in some
   532 circumstances, for example, when the power is lost in the middle of data transaction.
   533 Therefore, the file write caching should be switched off to maintain the file integrity.
   534 
   535 Note that ownership of the file passes to the store. The referenced RFile 
   536 is cleared and is no longer valid.
   537 
   538 @param aFile A reference to the opened file. 
   539 @return A pointer to the new permanent file store object. */
   540 	{return STATIC_CAST(CPermanentFileStore*,CFileStore::NewLC(aFile,&DoNewL));}
   541 
   542 // Class RFilePagePool
   543 inline TInt RFilePagePool::Open(RFs& aFs,const TDesC& aName,TUint aFileMode)
   544 /** Opens a file to use for the page pool.
   545 
   546 @param aFs A file server session
   547 @param aName The name of the file
   548 @param aFileMode The mode in which the file is opened. For more information, 
   549 see the TFileMode enumeration. 
   550 @return KErrNone if successful, otherwise another of the system-wide error 
   551 codes.
   552 @see TFileMode */
   553 	{return iFile.Open(aFs,aName,aFileMode);}
   554 inline TInt RFilePagePool::Create(RFs& aFs,const TDesC& aName,TUint aFileMode)
   555 /** Creates a new file for the page pool.
   556 
   557 @param aFs A file server session
   558 @param aName The name of the file. Any path components which are not specified 
   559 here are taken from the session path.
   560 @param aFileMode The mode in which the file is opened. For more information 
   561 see the TFileMode enumeration. 
   562 @return KErrNone if successful, otherwise another of the system-wide error 
   563 codes.
   564 @see TFileMode */
   565 	{return iFile.Create(aFs,aName,aFileMode);}
   566 inline TInt RFilePagePool::Replace(RFs& aFs,const TDesC& aName,TUint aFileMode)
   567 /** Creates or opens a file for the page pool. 
   568 
   569 If there is an existing file with the same name, this function overwrites 
   570 it. If the file does not already exist, it is created.
   571 
   572 @param aFs A file server session.
   573 @param aName The name of the file. Any path components which are not specified 
   574 here are taken from the session path.
   575 @param aFileMode The mode in which the file is opened. For more information 
   576 see the TFileMode enumeration. 
   577 @return KErrNone if successful, otherwise another of the system-wide error 
   578 codes.
   579 @see TFileMode */
   580 	{return iFile.Replace(aFs,aName,aFileMode);}
   581 inline TInt RFilePagePool::Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode)
   582 /** Creates and opens a file for the page pool with a unique name.
   583 
   584 @param aFs A file server session.
   585 @param aPath The directory in which the file should be created.
   586 @param aName On return, contains the full path and name of the file. The filename 
   587 is guaranteed to be unique within the directory specified by aPath.
   588 @param aFileMode The mode in which the file is opened. For more information 
   589 see the TFileMode enumeration.
   590 @return KErrNone if successful, otherwise another of the system-wide error 
   591 codes. */
   592 	{return iFile.Temp(aFs,aPath,aName,aFileMode);}
   593 inline void RFilePagePool::Attach(RFile& aFile)
   594 /** Sets an existing file to be used for the page pool.
   595 
   596 @param aFile File to use for the page pool */
   597 	{iFile=aFile;}
   598 inline void RFilePagePool::Detach()
   599 /** Ends the use of the file for the page pool, but does not close the file. */
   600 	{iFile=RFile();}
   601 inline RFile& RFilePagePool::File() const
   602 	{return MUTABLE_CAST(RFile&,iFile);}
   603