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