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.
19 EXPORT_C RFilePagePool::RFilePagePool()
20 /** Default constructor. */
23 EXPORT_C RFilePagePool::RFilePagePool(CPageCache& aCache)
24 : TCachePagePool(aCache)
25 /** Constructor with a page cache for the pool.
27 @param aCache Page cache for the pool */
30 EXPORT_C void RFilePagePool::Close()
31 /** Flushes cached pages to the file, and closes the file. */
33 TCachePagePool::Flush();
37 EXPORT_C void RFilePagePool::Release()
38 /** Closes the file without flushing the cache. */
44 EXPORT_C TInt RFilePagePool::Flush()
45 /** Flushes the page cache and the file.
47 @return KErrNone if successful, otherwise another of the system-wide error
50 TInt r=TCachePagePool::Flush();
58 EXPORT_C void RFilePagePool::FlushL()
59 /** Flushes the page cache and the file, leaving with a system-wide error code
60 if an error occurs. */
62 TCachePagePool::FlushL();
63 __LEAVE_IF_ERROR(iFile.Flush());
66 EXPORT_C TPageRef RFilePagePool::ExtendL(const TAny* aPage,TPageReclamation)
69 __LEAVE_IF_ERROR(iFile.Seek(ESeekEnd,pos));
70 __ASSERT_DEBUG(pos>=0,User::Invariant());
71 if (pos%KPoolPageSize!=0)
74 __LEAVE_IF_ERROR(iFile.Write(pos,TPtrC8((const TUint8*)aPage,KPoolPageSize)));
75 return TPageRef(pos/KPoolPageSize+1);
78 EXPORT_C void RFilePagePool::WriteL(TPageRef aRef,const TAny* aPage,TPageChange)
80 TInt pos=(aRef.Value()-1)*KPoolPageSize;
81 __LEAVE_IF_ERROR(iFile.Write(pos,TPtrC8((const TUint8*)aPage,KPoolPageSize)));
84 EXPORT_C void RFilePagePool::ReadL(TPageRef aRef,TAny* aPage)
86 TInt pos=(aRef.Value()-1)*KPoolPageSize;
87 TPtr8 ptr((TUint8*)aPage,KPoolPageSize);
88 __LEAVE_IF_ERROR(iFile.Read(pos,ptr));
89 if (ptr.Length()<KPoolPageSize)