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.
18 const TInt KBaseOffset=KFileStoreStartOffset-KPermanentStoreHeaderOffset;
19 #if defined(__NO_CLASS_CONSTS__)
20 #define KBase TStreamPos(KBaseOffset)
22 const TStreamPos KBase=TStreamPos(KBaseOffset);
25 EXPORT_C TUid CPermanentFileStore::Layout() const
26 /** Gets the UID that uniquely identifies this file store as a permanent file store.
28 @return KPermanentFileStoreLayoutUid. */
30 return KPermanentFileStoreLayoutUid;
33 EXPORT_C CPermanentFileStore::CPermanentFileStore(RFile& aFile)
35 // Constructor creating a new file store.
37 : CFileStore(aFile)/*,iCoord(NULL)*/
40 EXPORT_C CPermanentFileStore::CPermanentFileStore(RFileBuf& aBuf,const TUidType& aType)
42 // Constructor opening an existing file store.
44 : CFileStore(aBuf,aType)/*,iCoord(NULL)*/
47 EXPORT_C void CPermanentFileStore::MarshalL()
49 __ASSERT_DEBUG(iCoord==NULL,User::Invariant());
50 iCoord=new(ELeave) CPermanentStoreCoord(KBase,Host());
51 CFileStore::MarshalL();
52 iRoot=Coord().PrimaryL();
55 EXPORT_C CPermanentFileStore::~CPermanentFileStore()
56 /** Frees resources owned by the object, prior to its destruction. */
62 EXPORT_C MStreamBuf* CPermanentFileStore::DoReadL(TStreamId anId) const
65 __LEAVE(KErrNotFound);
67 return HPermanentStoreBuf::OpenL(CoordL(),anId,HPermanentStoreBuf::ERead);
70 EXPORT_C MStreamBuf* CPermanentFileStore::DoCreateL(TStreamId& anId)
72 return HPermanentStoreBuf::CreateL(TrimL(),anId);
75 EXPORT_C MStreamBuf* CPermanentFileStore::DoWriteL(TStreamId anId)
78 __LEAVE(KErrNotFound);
80 return HPermanentStoreBuf::OpenL(CoordL(),anId);
83 EXPORT_C MStreamBuf* CPermanentFileStore::DoReplaceL(TStreamId anId)
86 __LEAVE(KErrNotFound);
88 return HPermanentStoreBuf::ReplaceL(TrimL(),anId);
91 EXPORT_C void CPermanentFileStore::ExternalizeL(RWriteStream& aStream) const
93 // Externalize this store's structure, during construction only.
96 __ASSERT_DEBUG(!Host().IsActive()&&iCoord==NULL,User::Invariant());
97 TUint8 buf[-KPermanentStoreHeaderOffset];
98 Mem::FillZ(buf,sizeof(buf));
99 aStream.WriteL(buf,sizeof(buf));
102 EXPORT_C void CPermanentFileStore::InternalizeL(RReadStream& aStream)
104 // Internalize this store's structure, during marshalling or refreshment.
107 __ASSERT_DEBUG(!Host().IsActive(),User::Invariant());
108 Coord().InternalizeL(aStream);
111 EXPORT_C void CPermanentFileStore::DoSetRootL(TStreamId anId)
113 // Set the root stream id.
120 EXPORT_C TStreamId CPermanentFileStore::DoExtendL()
122 return CoordL().ExtendL();
125 EXPORT_C void CPermanentFileStore::DoDeleteL(TStreamId anId)
128 __LEAVE(KErrNotFound);
130 CoordL().DeleteL(anId);
133 EXPORT_C void CPermanentFileStore::DoCommitL()
135 // Establish a new commit point, committing changes made since the last one.
138 if (iCoord!=NULL&&TrimL().CommitL(iRoot))
146 EXPORT_C void CPermanentFileStore::DoRevertL()
148 // Roll back to the state at the last commit point.
151 CPermanentStoreCoord* coord=iCoord;
152 if (coord!=NULL&&coord->RevertL(iRoot))
158 EXPORT_C MIncrementalCollector* CPermanentFileStore::DoReclaimL()
160 return CPermanentStoreCollector::ReclaimerL(CoordL());
163 EXPORT_C MIncrementalCollector* CPermanentFileStore::DoCompactL()
165 return CPermanentStoreCollector::CompactorL(TrimL());
168 CPermanentStoreCoord& CPermanentFileStore::CoordL() const
170 CPermanentStoreCoord* coord=iCoord;
173 coord=new(ELeave) CPermanentStoreCoord(KBase,Host());
174 MUTABLE_CAST(CPermanentStoreCoord*&,iCoord)=coord;
176 else if (!Host().IsActive())
177 CONST_CAST(CPermanentFileStore*,this)->RefreshL();
181 CPermanentStoreCoord& CPermanentFileStore::TrimL()
183 CPermanentStoreCoord& coord=CoordL();
186 TInt lim=coord.LimitL().Offset(); // it can be slightly smaller than this
187 TInt size=Host().HostL()->SizeL();
195 EXPORT_C CFileStore* CPermanentFileStore::DoNewL(RFile& aFile)
197 // Factory function creating a new file.
200 return new(ELeave) CPermanentFileStore(aFile);