Update contrib.
2 #define __S32FILE_H__/*
3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
5 * This component and the accompanying materials are made available
6 * under the terms of the License "Eclipse Public License v1.0"
7 * which accompanies this distribution, and is available
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
33 #define KPermanentFileStoreLayoutUid TUid::Uid(268435536)
34 typedef TUint32 TStreamId;
35 /** The value of the null stream ID. */
36 const TUint32 KNullStreamIdValue=0;
37 const TUint32 KMaxStreamIdValue=0xfffffff;
38 const TUint32 KMaskStreamIdValue=0xfffffff;
39 const TInt KShiftStreamIdValue=28;
41 namespace store_private
51 virtual ~CStreamStore();
52 inline TStreamId ExtendL();
53 IMPORT_C void Delete(TStreamId anId);
54 IMPORT_C void DeleteL(TStreamId anId);
56 virtual void CommitL() = 0;
59 // Internal store emulation functions
61 virtual store_private::MemStreamBuf *CreateStoreWriteStream() = 0;
62 virtual store_private::MemStreamBuf *CreateStoreReadStream(TStreamId aId) const = 0;
63 virtual bool Writable() const = 0;
66 class CPersistentStore : public CStreamStore
70 void SetRootL(TStreamId anId);
75 class CFileStore : public CPersistentStore
78 IMPORT_C void SetTypeL(const TUidType& aType);
82 class CPermanentFileStore : public CFileStore
85 static CFileStore *ReplaceLC(RFs &aFs, const TDesC &aName, TUint aFileMode);
86 static CPermanentFileStore* OpenLC(RFs& aFs, const TDesC& aName, TUint aFileMode);
90 // Internal store emulation functions
92 virtual store_private::MemStreamBuf *CreateStoreWriteStream();
93 virtual store_private::MemStreamBuf *CreateStoreReadStream(TStreamId aId) const;
94 virtual bool Writable() const;
96 CPermanentFileStore(const TDesC &aName, TUint aFileMode);
97 virtual ~CPermanentFileStore();
98 virtual void CommitL();
101 void ReadStreamData(TStreamId aStreamId, TInt aFrameOffset);
104 std::auto_ptr<RReadStream> iFileIn;
105 std::auto_ptr<RWriteStream> iFileOut;
107 TUint32 iLastStreamIdCreated;
108 typedef std::map<TUint32, store_private::MemStreamBuf *> MemStreamBufPtrMap;
109 MemStreamBufPtrMap iStreams;
113 class RStoreWriteStream : public RWriteStream
116 IMPORT_C TStreamId CreateLC(CStreamStore& aStore);
119 class RStoreReadStream : public RReadStream
123 IMPORT_C void OpenLC(const CStreamStore& aStore, TStreamId aId);