Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
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.
21 The intermediate buffer must not contain any outstanding write data, otherwise
22 the function raises a STORE-File 6 panic.
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.
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.
36 inline void RFileBuf::Reattach(RFile& aFile)
37 /** Re-attaches the specified file to this stream buffer.
39 The intermediate buffer's read and write marks are not changed, and the stream
40 positions are not changed.
42 The file should be the one that was detached using the Detach() function.
44 @param aFile The file to be re-attached.
48 inline RFile& RFileBuf::File() const
49 /** Gets a reference to the file attached to this stream buffer.
51 @return The file attached to this stream buffer. */
52 {return MUTABLE_CAST(RFile&,iFile);}
54 // Class RFileWriteStream
55 inline RFileWriteStream::RFileWriteStream(const MExternalizer<TStreamRef>& anExter)
56 : RWriteStream(anExter)
60 inline const TUidType& CFileStore::Type() const
61 /** Gets the UID type of the file store.
63 @return The UID type object containing the file store type.
66 inline void CFileStore::Reset()
67 /** Frees the file store’s buffer space.
69 The buffer space is automatically re-allocated when needed.
71 This function should only be used immediately after a successful call to CommitL()
74 @see CStreamStore::CommitL()
75 @see CStreamStore::RevertL() */
77 inline void CFileStore::Reset(TInt aSize)
78 /** Frees the file store’s buffer space and changes the size of future buffer
81 The buffer space is automatically re-allocated when needed, using the new
84 This function should only be used immediately after a successful call to CommitL()
87 @param aSize The size of future buffer space allocations.
88 @see CStreamStore::CommitL()
89 @see CStreamStore::RevertL() */
91 inline void CFileStore::Detach()
92 /** Detaches the file store from its associated file.
94 In effect, the file store gives up ownership of the file.
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.
99 It is very important that the contents of the file should not change while
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.
109 @param aFile The file to be associated with this file store.
111 {iBuf.Reattach(aFile);}
112 inline RFile& CFileStore::File() const
113 /** Gets a reference to the file associated with this file store.
115 This function is called prior to detaching the file store.
117 @return A reference to the associated file.
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);}
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
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.
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.
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.
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
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
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.
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
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
178 The file replaces any existing file of the same name.
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.
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.
191 The file replaces any existing file of the same name.
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.
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
204 The new file is created in the specified path and a unique file name is generated
207 Note that the store framework does not delete a temporary file after it is
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.
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.
222 The new file is created in the specified path and a unique file name is generated
225 Note that the store framework does not delete a temporary file after it is
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.
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.
239 The file must already be open before calling this function.
241 Note that ownership of the file passes to the store. The referenced RFile
242 is cleared and is no longer valid.
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.
251 The file must already be open before calling this function.
253 Note that ownership of the file passes to the store. The referenced RFile
254 is cleared and is no longer valid.
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.
262 The file must already be open before calling the function. The existing content
263 of the file is discarded.
265 Note that ownership of the file passes to the store. The referenced RFile
266 is cleared and is no longer valid:
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.
275 The file must already be open before calling the function. The existing content
276 of the file is discarded.
278 Note that ownership of the file passes to the store. The referenced RFile
279 is cleared and is no longer valid:
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));}
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
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.
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.
300 if ((aFileMode&EFileWrite) != 0)
302 aFileMode |= EFileWriteDirectIO;
303 aFileMode &= (~EFileWriteBuffered);
305 return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenL(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
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.
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.
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.
321 if ((aFileMode&EFileWrite) != 0)
323 aFileMode |= EFileWriteDirectIO;
324 aFileMode &= (~EFileWriteBuffered);
326 return STATIC_CAST(CPermanentFileStore*,CFileStore::OpenLC(aFs,aName,aFileMode,KPermanentFileStoreFactoryFunction));
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
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.
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.
343 if ((aFileMode&EFileWrite) != 0)
345 aFileMode |= EFileWriteDirectIO;
346 aFileMode &= (~EFileWriteBuffered);
348 return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateL(aFs,aName,aFileMode,&DoNewL));
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.
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.
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.
365 if ((aFileMode&EFileWrite) != 0)
367 aFileMode |= EFileWriteDirectIO;
368 aFileMode &= (~EFileWriteBuffered);
370 return STATIC_CAST(CPermanentFileStore*,CFileStore::CreateLC(aFs,aName,aFileMode,&DoNewL));
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
376 This file replaces any existing file of the same name.
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.
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.
388 if ((aFileMode&EFileWrite) != 0)
390 aFileMode |= EFileWriteDirectIO;
391 aFileMode &= (~EFileWriteBuffered);
393 return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceL(aFs,aName,aFileMode,&DoNewL));
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.
399 This file replaces any existing file of the same name.
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.
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.
411 if ((aFileMode&EFileWrite) != 0)
413 aFileMode |= EFileWriteDirectIO;
414 aFileMode &= (~EFileWriteBuffered);
416 return STATIC_CAST(CPermanentFileStore*,CFileStore::ReplaceLC(aFs,aName,aFileMode,&DoNewL));
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
422 The new file is created in the specified path and a unique file name is generated
425 Note that the store framework does not delete a temporary file after it is
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.
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.
439 if ((aFileMode&EFileWrite) != 0)
441 aFileMode |= EFileWriteDirectIO;
442 aFileMode &= (~EFileWriteBuffered);
444 return STATIC_CAST(CPermanentFileStore*,CFileStore::TempL(aFs,aPath,aName,aFileMode,&DoNewL));
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.
450 The new file is created in the specified path and a unique file name is generated
453 Note that the store framework does not delete a temporary file after it is
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.
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.
467 if ((aFileMode&EFileWrite) != 0)
469 aFileMode |= EFileWriteDirectIO;
470 aFileMode &= (~EFileWriteBuffered);
472 return STATIC_CAST(CPermanentFileStore*,CFileStore::TempLC(aFs,aPath,aName,aFileMode,&DoNewL));
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.
483 The file must already be open before calling this function.
485 Note that ownership of the file passes to the store. The referenced RFile
486 is cleared and is no longer valid.
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.
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.
502 Note that ownership of the file passes to the store. The referenced RFile
503 is cleared and is no longer valid.
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.
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.
518 Note that ownership of the file passes to the store. The referenced RFile
519 is cleared and is no longer valid.
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.
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.
535 Note that ownership of the file passes to the store. The referenced RFile
536 is cleared and is no longer valid.
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));}
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.
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
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.
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
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.
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.
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
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.
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
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.
596 @param aFile File to use for the page pool */
598 inline void RFilePagePool::Detach()
599 /** Ends the use of the file for the page pool, but does not close the file. */
601 inline RFile& RFilePagePool::File() const
602 {return MUTABLE_CAST(RFile&,iFile);}