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 |
#if !defined(__S32FILE_H__)
|
sl@0
|
17 |
#define __S32FILE_H__
|
sl@0
|
18 |
#if !defined(__F32FILE_H__)
|
sl@0
|
19 |
#include <f32file.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
#if !defined(__S32STOR_H__)
|
sl@0
|
22 |
#include <s32stor.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
|
sl@0
|
26 |
#include <s32filebufsize.h>
|
sl@0
|
27 |
#endif
|
sl@0
|
28 |
|
sl@0
|
29 |
template <class T>
|
sl@0
|
30 |
class TCapture;
|
sl@0
|
31 |
class RPermanentFileStoreIter;
|
sl@0
|
32 |
|
sl@0
|
33 |
/** A stream buffer hosted by a file.
|
sl@0
|
34 |
* @publishedAll
|
sl@0
|
35 |
* @released
|
sl@0
|
36 |
|
sl@0
|
37 |
Instances of this class are used by file based persistent stores, i.e. CFileStore
|
sl@0
|
38 |
type objects. An RFileBuf object is associated with a file and the file is
|
sl@0
|
39 |
said to be attached to the stream buffer.
|
sl@0
|
40 |
|
sl@0
|
41 |
An RFileBuf object is also used by RFileReadStream and RFileWriteStream objects
|
sl@0
|
42 |
to provide buffered file I/O.
|
sl@0
|
43 |
|
sl@0
|
44 |
The stream buffer has intermediate buffering capabilities.
|
sl@0
|
45 |
|
sl@0
|
46 |
When used as the basis for a file store, it hosts multiple streams through
|
sl@0
|
47 |
the TStreamExchange and RShareBuf classes.
|
sl@0
|
48 |
|
sl@0
|
49 |
Open(), Close(), Attach(), Detach(), File() and Reattach() usage patterns:
|
sl@0
|
50 |
|
sl@0
|
51 |
Pattern 1: RFileBuf owns the file
|
sl@0
|
52 |
step 1a: Open()/Create()/Temp() is used to connect the buffer to a file
|
sl@0
|
53 |
step 1b: Use the file buffer
|
sl@0
|
54 |
step 1c: Close() releases this resource.
|
sl@0
|
55 |
|
sl@0
|
56 |
Pattern 2: RFile is opened elsewhere and ownership is handed over to RFileBuf
|
sl@0
|
57 |
This may happen if the file is already opened by another API, or from another process for example
|
sl@0
|
58 |
step 2a: Attach() is used to hand ownership of the opened file to the buffer. After Attach() the supplied file handle is NULLed.
|
sl@0
|
59 |
step 2b: Use the file buffer
|
sl@0
|
60 |
step 2c: Close() releases the file resource.
|
sl@0
|
61 |
|
sl@0
|
62 |
Pattern 3: RFileBuf is used transiently to manage an existing opened file:
|
sl@0
|
63 |
step 3a: Attach() is used to bind the buffer to the already open file. After Attach() the supplied file handle is NULLed.
|
sl@0
|
64 |
step 3b: Use the file buffer
|
sl@0
|
65 |
step 3c: RFileBuf::File() is used to retrieve the file handle again, then Detach() is called to disconnect the buffer from the file.
|
sl@0
|
66 |
At this point, the destruction of the file buffer will have no effect on the file. The retrieved file handle in step 3c must be used to close the file.
|
sl@0
|
67 |
|
sl@0
|
68 |
Pattern 4: Transient direct file access to a buffered file
|
sl@0
|
69 |
step 4a: RFileBuf::File() is used to retrieve the file handle. [Optional: Detach() is used to disconnect the file buffer]
|
sl@0
|
70 |
step 4b: Use the file directly. Note that writing to the file may cause coherency problems with the RFileBuf buffer - in which case you need to Reset() the buffer as well.
|
sl@0
|
71 |
step 4c: [Optional: Reattach() is used to hand the file back to the buffer]. Use of the buffer is resumed
|
sl@0
|
72 |
|
sl@0
|
73 |
@see CFileStore
|
sl@0
|
74 |
@see RFileReadStream
|
sl@0
|
75 |
@see RFileWriteStream */
|
sl@0
|
76 |
class RFileBuf : public TStreamBuf
|
sl@0
|
77 |
{
|
sl@0
|
78 |
public:
|
sl@0
|
79 |
IMPORT_C RFileBuf();
|
sl@0
|
80 |
IMPORT_C RFileBuf(TInt aSize);
|
sl@0
|
81 |
RFileBuf(TCapture<RFileBuf> aCapture);
|
sl@0
|
82 |
IMPORT_C void Reset();
|
sl@0
|
83 |
inline void Reset(TInt aSize);
|
sl@0
|
84 |
//
|
sl@0
|
85 |
IMPORT_C TInt Open(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
86 |
IMPORT_C TInt Create(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
87 |
IMPORT_C TInt Replace(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
88 |
IMPORT_C TInt Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
89 |
IMPORT_C void Attach(RFile& aFile,TInt aPos=0);
|
sl@0
|
90 |
IMPORT_C void Close();
|
sl@0
|
91 |
inline void Detach();
|
sl@0
|
92 |
inline void Reattach(RFile& aFile);
|
sl@0
|
93 |
//
|
sl@0
|
94 |
IMPORT_C void SetSizeL(TInt aSize);
|
sl@0
|
95 |
inline RFile& File() const;
|
sl@0
|
96 |
protected:
|
sl@0
|
97 |
IMPORT_C TInt UnderflowL(TInt aMaxLength);
|
sl@0
|
98 |
IMPORT_C void OverflowL();
|
sl@0
|
99 |
IMPORT_C void DoRelease();
|
sl@0
|
100 |
IMPORT_C void DoSynchL();
|
sl@0
|
101 |
IMPORT_C TInt DoReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
102 |
IMPORT_C TInt DoReadL(TDes8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
103 |
IMPORT_C void DoWriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
104 |
IMPORT_C TInt DoWriteL(const TDesC8& aDes,TInt aMaxLength,TRequestStatus& aStatus);
|
sl@0
|
105 |
IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
|
sl@0
|
106 |
//
|
sl@0
|
107 |
inline void SetBuf(TRead,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
108 |
inline void SetBuf(TWrite,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
109 |
inline void SetBuf(TArea anArea,TUint8* aPtr,TUint8* anEnd);
|
sl@0
|
110 |
private:
|
sl@0
|
111 |
TUint8* AllocL();
|
sl@0
|
112 |
void Free();
|
sl@0
|
113 |
//
|
sl@0
|
114 |
void SetPos(TMark aMark,TInt aPos);
|
sl@0
|
115 |
inline void SetPos(TRead,TInt aPos);
|
sl@0
|
116 |
inline void SetPos(TWrite,TInt aPos);
|
sl@0
|
117 |
inline TInt Pos(TRead) const;
|
sl@0
|
118 |
inline TInt Pos(TWrite) const;
|
sl@0
|
119 |
inline TInt MovePos(TRead,TInt anOffset);
|
sl@0
|
120 |
inline TInt MovePos(TWrite,TInt anOffset);
|
sl@0
|
121 |
TInt FileReadL(TAny* aPtr,TInt aMaxLength);
|
sl@0
|
122 |
void FileWriteL(const TAny* aPtr,TInt aLength,TInt aSeek);
|
sl@0
|
123 |
void FileWriteL(const TAny* aPtr,TInt aLength);
|
sl@0
|
124 |
TInt EndL();
|
sl@0
|
125 |
//
|
sl@0
|
126 |
inline TInt Lag(TRead) const;
|
sl@0
|
127 |
inline TInt Lag(TWrite) const;
|
sl@0
|
128 |
TInt Mark(TMark aMark) const;
|
sl@0
|
129 |
inline TInt Mark(TRead) const;
|
sl@0
|
130 |
inline TInt Mark(TWrite) const;
|
sl@0
|
131 |
inline TUint8* Limit(TWrite) const;
|
sl@0
|
132 |
inline void SetLimit(TWrite,TUint8* aLimit);
|
sl@0
|
133 |
inline TInt Span(TWrite) const;
|
sl@0
|
134 |
inline TInt Reach(TWrite) const;
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
TUint8* iBase;
|
sl@0
|
137 |
TInt iSize;
|
sl@0
|
138 |
__MUTABLE RFile iFile;
|
sl@0
|
139 |
TInt iRPos;
|
sl@0
|
140 |
TInt iWPos;
|
sl@0
|
141 |
TInt iExt;
|
sl@0
|
142 |
TUint8* iWLim;
|
sl@0
|
143 |
friend class CFileStore;
|
sl@0
|
144 |
};
|
sl@0
|
145 |
|
sl@0
|
146 |
/**
|
sl@0
|
147 |
* @publishedAll
|
sl@0
|
148 |
* @released
|
sl@0
|
149 |
* Supports the reading of a stream from a file.
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
class RFileReadStream : public RReadStream
|
sl@0
|
152 |
{
|
sl@0
|
153 |
public:
|
sl@0
|
154 |
/** Constructs an empty read stream object. */
|
sl@0
|
155 |
RFileReadStream() {}
|
sl@0
|
156 |
IMPORT_C RFileReadStream(RFile& aFile,TInt aPos=0);
|
sl@0
|
157 |
IMPORT_C TInt Open(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
158 |
IMPORT_C void Attach(RFile& aFile,TInt aPos=0);
|
sl@0
|
159 |
private:
|
sl@0
|
160 |
RFileBuf iSource;
|
sl@0
|
161 |
};
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
* @publishedAll
|
sl@0
|
165 |
* @released
|
sl@0
|
166 |
* Supports the writing of a stream to a file.
|
sl@0
|
167 |
*/
|
sl@0
|
168 |
class RFileWriteStream : public RWriteStream
|
sl@0
|
169 |
{
|
sl@0
|
170 |
public:
|
sl@0
|
171 |
/** Constructs an empty write stream object. */
|
sl@0
|
172 |
RFileWriteStream() {}
|
sl@0
|
173 |
inline RFileWriteStream(const MExternalizer<TStreamRef>& anExter);
|
sl@0
|
174 |
IMPORT_C RFileWriteStream(RFile& aFile,TInt aPos=0);
|
sl@0
|
175 |
IMPORT_C TInt Open(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
176 |
IMPORT_C TInt Create(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
177 |
IMPORT_C TInt Replace(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
178 |
IMPORT_C TInt Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
179 |
IMPORT_C void Attach(RFile& aFile,TInt aPos=0);
|
sl@0
|
180 |
private:
|
sl@0
|
181 |
RFileBuf iSink;
|
sl@0
|
182 |
};
|
sl@0
|
183 |
//
|
sl@0
|
184 |
class CFileStore;
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
* @publishedAll
|
sl@0
|
188 |
* @released
|
sl@0
|
189 |
* A class containing a set of factory functions for opening an existing direct
|
sl@0
|
190 |
file store and an existing permanent file store identified using a Uidtype.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
class FileStoreFactory
|
sl@0
|
193 |
{
|
sl@0
|
194 |
public:
|
sl@0
|
195 |
IMPORT_C static CFileStore* DirectLC(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
196 |
IMPORT_C static CFileStore* PermanentLC(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
197 |
};
|
sl@0
|
198 |
//
|
sl@0
|
199 |
const TInt KDirectFileStoreLayoutUidValue=268435511;
|
sl@0
|
200 |
/** The value of the KPermanentFileStoreLayoutUidValue UID. */
|
sl@0
|
201 |
const TInt KPermanentFileStoreLayoutUidValue=268435536;
|
sl@0
|
202 |
/** The UID that identifies a file store as being a direct file store. */
|
sl@0
|
203 |
const TUid KDirectFileStoreLayoutUid={KDirectFileStoreLayoutUidValue};
|
sl@0
|
204 |
/** The UID that identifies a file store as being a permanent file store. */
|
sl@0
|
205 |
const TUid KPermanentFileStoreLayoutUid={KPermanentFileStoreLayoutUidValue};
|
sl@0
|
206 |
//
|
sl@0
|
207 |
typedef CFileStore* (*TFileStoreFactoryFunction)(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
208 |
//
|
sl@0
|
209 |
#define KDirectFileStoreFactoryFunction (&FileStoreFactory::DirectLC)
|
sl@0
|
210 |
#define KPermanentFileStoreFactoryFunction (&FileStoreFactory::PermanentLC)
|
sl@0
|
211 |
|
sl@0
|
212 |
/**
|
sl@0
|
213 |
* @publishedAll
|
sl@0
|
214 |
* @released
|
sl@0
|
215 |
* File based persistent store abstract base class.
|
sl@0
|
216 |
|
sl@0
|
217 |
The class encapsulates the basic behaviour of file based stores. File based
|
sl@0
|
218 |
stores are persistent stores, i.e. they have the ability to keep the external
|
sl@0
|
219 |
representation of objects for longer than the lifetime of the applications
|
sl@0
|
220 |
which created those objects.
|
sl@0
|
221 |
|
sl@0
|
222 |
The class forms the base for the direct file store, CDirectFileStore, and
|
sl@0
|
223 |
the permanent file store, CPermanentFileStore. In general, it is sufficient
|
sl@0
|
224 |
for pointers to file based store objects to be of type CFileStore, rather
|
sl@0
|
225 |
than of the concrete file store type.
|
sl@0
|
226 |
|
sl@0
|
227 |
Existing file stores can be opened using the member functions OpenL(), OpenLC(),
|
sl@0
|
228 |
FromL() and FromLC(). New file stores, however, must be created using the
|
sl@0
|
229 |
appropriate member function of the concrete type.
|
sl@0
|
230 |
*/
|
sl@0
|
231 |
class CFileStore : public CPersistentStore
|
sl@0
|
232 |
{
|
sl@0
|
233 |
public:
|
sl@0
|
234 |
IMPORT_C static CFileStore* OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
235 |
IMPORT_C static CFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
236 |
IMPORT_C static CFileStore* FromL(RFile& aFile);
|
sl@0
|
237 |
IMPORT_C static CFileStore* FromLC(RFile& aFile);
|
sl@0
|
238 |
//
|
sl@0
|
239 |
IMPORT_C static CFileStore* OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[]);
|
sl@0
|
240 |
IMPORT_C static CFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,const TFileStoreFactoryFunction aFactory[]);
|
sl@0
|
241 |
IMPORT_C static CFileStore* FromL(RFile& aFile,const TFileStoreFactoryFunction aFactory[]);
|
sl@0
|
242 |
IMPORT_C static CFileStore* FromLC(RFile& aFile,const TFileStoreFactoryFunction aFactory[]);
|
sl@0
|
243 |
//
|
sl@0
|
244 |
inline const TUidType& Type() const;
|
sl@0
|
245 |
IMPORT_C void SetTypeL(const TUidType& aType);
|
sl@0
|
246 |
/** Gets the UID that uniquely identifies the specific type of this file store.
|
sl@0
|
247 |
|
sl@0
|
248 |
This function must be defined and implemented by classes derived from CFileStore.
|
sl@0
|
249 |
The direct file store, CDirectFileStore and the permanent file store, CPermanentFileStore
|
sl@0
|
250 |
both implement suitable functions.
|
sl@0
|
251 |
|
sl@0
|
252 |
@return The UID that uniquely identifies the specific type of file store.
|
sl@0
|
253 |
@see KDirectFileStoreLayoutUid
|
sl@0
|
254 |
@see KPermanentFileStoreLayoutUid */
|
sl@0
|
255 |
virtual TUid Layout() const=0;
|
sl@0
|
256 |
//
|
sl@0
|
257 |
inline void Reset();
|
sl@0
|
258 |
inline void Reset(TInt aSize);
|
sl@0
|
259 |
inline void Detach();
|
sl@0
|
260 |
inline void Reattach(RFile& aFile);
|
sl@0
|
261 |
inline RFile& File() const;
|
sl@0
|
262 |
//
|
sl@0
|
263 |
IMPORT_C void MarshalL();
|
sl@0
|
264 |
IMPORT_C ~CFileStore();
|
sl@0
|
265 |
protected:
|
sl@0
|
266 |
typedef CFileStore* (*TNewFunction)(RFile& aFile);
|
sl@0
|
267 |
protected:
|
sl@0
|
268 |
IMPORT_C static CFileStore* OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction);
|
sl@0
|
269 |
IMPORT_C static CFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TFileStoreFactoryFunction aFunction);
|
sl@0
|
270 |
IMPORT_C static CFileStore* CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
271 |
IMPORT_C static CFileStore* CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
272 |
IMPORT_C static CFileStore* ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
273 |
IMPORT_C static CFileStore* ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
274 |
IMPORT_C static CFileStore* TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
275 |
IMPORT_C static CFileStore* TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode,TNewFunction aFunction);
|
sl@0
|
276 |
//
|
sl@0
|
277 |
IMPORT_C static CFileStore* FromL(RFile& aFile,TFileStoreFactoryFunction aFunction);
|
sl@0
|
278 |
IMPORT_C static CFileStore* FromLC(RFile& aFile,TFileStoreFactoryFunction aFunction);
|
sl@0
|
279 |
IMPORT_C static CFileStore* NewL(RFile& aFile,TNewFunction aFunction);
|
sl@0
|
280 |
IMPORT_C static CFileStore* NewLC(RFile& aFile,TNewFunction aFunction);
|
sl@0
|
281 |
//
|
sl@0
|
282 |
IMPORT_C CFileStore(RFile& aFile);
|
sl@0
|
283 |
IMPORT_C CFileStore(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
284 |
IMPORT_C void Destruct();
|
sl@0
|
285 |
//
|
sl@0
|
286 |
inline TStreamExchange& Host() const;
|
sl@0
|
287 |
inline TBool IsHost(const MStreamBuf* aBuf) const;
|
sl@0
|
288 |
IMPORT_C void SynchL();
|
sl@0
|
289 |
inline void SetSizeL(TInt aSize);
|
sl@0
|
290 |
IMPORT_C void ChangedL();
|
sl@0
|
291 |
IMPORT_C void RefreshL();
|
sl@0
|
292 |
//
|
sl@0
|
293 |
IMPORT_C void DoCommitL();
|
sl@0
|
294 |
IMPORT_C void DoRevertL();
|
sl@0
|
295 |
private:
|
sl@0
|
296 |
virtual void ExternalizeL(RWriteStream& aStream) const=0;
|
sl@0
|
297 |
virtual void InternalizeL(RReadStream& aStream)=0;
|
sl@0
|
298 |
//
|
sl@0
|
299 |
static CFileStore* DoNewL(RFile& aFile,TNewFunction aFunction);
|
sl@0
|
300 |
private:
|
sl@0
|
301 |
RFileBuf iBuf;
|
sl@0
|
302 |
TUidType iType;
|
sl@0
|
303 |
__MUTABLE TStreamExchange iHost;
|
sl@0
|
304 |
};
|
sl@0
|
305 |
const TInt KFileStoreStartOffset=sizeof(TCheckedUid);
|
sl@0
|
306 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
307 |
#define KFileStoreStart TStreamPos(KFileStoreStartOffset)
|
sl@0
|
308 |
#else
|
sl@0
|
309 |
const TStreamPos KFileStoreStart=TStreamPos(KFileStoreStartOffset);
|
sl@0
|
310 |
#endif
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
* @publishedAll
|
sl@0
|
314 |
* @released
|
sl@0
|
315 |
* Direct file store.
|
sl@0
|
316 |
|
sl@0
|
317 |
A direct file store implements a subset of the operations defined by the store
|
sl@0
|
318 |
abstract framework. Direct file stores allow streams to be created and objects
|
sl@0
|
319 |
externalised to them however once the streams have been committed and
|
sl@0
|
320 |
closed, they cannot subsequently be changed, i.e. streams cannot be replaced,
|
sl@0
|
321 |
deleted, extended or changed in any way.
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
class CDirectFileStore : public CFileStore
|
sl@0
|
324 |
{
|
sl@0
|
325 |
public:
|
sl@0
|
326 |
inline static CDirectFileStore* OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
327 |
inline static CDirectFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
328 |
inline static CDirectFileStore* CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
329 |
inline static CDirectFileStore* CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
330 |
inline static CDirectFileStore* ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
331 |
inline static CDirectFileStore* ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
332 |
inline static CDirectFileStore* TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
333 |
inline static CDirectFileStore* TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
334 |
//
|
sl@0
|
335 |
inline static CDirectFileStore* FromL(RFile& aFile);
|
sl@0
|
336 |
inline static CDirectFileStore* FromLC(RFile& aFile);
|
sl@0
|
337 |
inline static CDirectFileStore* NewL(RFile& aFile);
|
sl@0
|
338 |
inline static CDirectFileStore* NewLC(RFile& aFile);
|
sl@0
|
339 |
//
|
sl@0
|
340 |
IMPORT_C TUid Layout() const;
|
sl@0
|
341 |
//
|
sl@0
|
342 |
IMPORT_C CDirectFileStore(RFile& aFile);
|
sl@0
|
343 |
IMPORT_C CDirectFileStore(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
344 |
protected:
|
sl@0
|
345 |
IMPORT_C MStreamBuf* DoReadL(TStreamId anId) const;
|
sl@0
|
346 |
IMPORT_C MStreamBuf* DoCreateL(TStreamId& anId);
|
sl@0
|
347 |
private:
|
sl@0
|
348 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
349 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
350 |
IMPORT_C void DoSetRootL(TStreamId anId);
|
sl@0
|
351 |
//
|
sl@0
|
352 |
IMPORT_C static CFileStore* DoNewL(RFile& aFile);
|
sl@0
|
353 |
};
|
sl@0
|
354 |
//
|
sl@0
|
355 |
class CPermanentStoreCoord;
|
sl@0
|
356 |
|
sl@0
|
357 |
/**
|
sl@0
|
358 |
* @publishedAll
|
sl@0
|
359 |
* @released
|
sl@0
|
360 |
* Permanent file store.
|
sl@0
|
361 |
|
sl@0
|
362 |
This type of store supports full manipulation of store contents. Existing
|
sl@0
|
363 |
streams within this type of store can be changed.
|
sl@0
|
364 |
*/
|
sl@0
|
365 |
class CPermanentFileStore : public CFileStore
|
sl@0
|
366 |
{
|
sl@0
|
367 |
friend class RPermanentFileStoreIter;
|
sl@0
|
368 |
public:
|
sl@0
|
369 |
inline static CPermanentFileStore* OpenL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
370 |
inline static CPermanentFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
371 |
inline static CPermanentFileStore* CreateL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
372 |
inline static CPermanentFileStore* CreateLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
373 |
inline static CPermanentFileStore* ReplaceL(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
374 |
inline static CPermanentFileStore* ReplaceLC(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
375 |
inline static CPermanentFileStore* TempL(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
376 |
inline static CPermanentFileStore* TempLC(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
377 |
//
|
sl@0
|
378 |
inline static CPermanentFileStore* FromL(RFile& aFile);
|
sl@0
|
379 |
inline static CPermanentFileStore* FromLC(RFile& aFile);
|
sl@0
|
380 |
inline static CPermanentFileStore* NewL(RFile& aFile);
|
sl@0
|
381 |
inline static CPermanentFileStore* NewLC(RFile& aFile);
|
sl@0
|
382 |
//
|
sl@0
|
383 |
IMPORT_C TUid Layout() const;
|
sl@0
|
384 |
//
|
sl@0
|
385 |
IMPORT_C CPermanentFileStore(RFile& aFile);
|
sl@0
|
386 |
IMPORT_C CPermanentFileStore(RFileBuf& aBuf,const TUidType& aType);
|
sl@0
|
387 |
IMPORT_C void MarshalL();
|
sl@0
|
388 |
IMPORT_C ~CPermanentFileStore();
|
sl@0
|
389 |
protected:
|
sl@0
|
390 |
IMPORT_C MStreamBuf* DoReadL(TStreamId anId) const;
|
sl@0
|
391 |
IMPORT_C MStreamBuf* DoCreateL(TStreamId& anId);
|
sl@0
|
392 |
IMPORT_C MStreamBuf* DoWriteL(TStreamId anId);
|
sl@0
|
393 |
IMPORT_C MStreamBuf* DoReplaceL(TStreamId anId);
|
sl@0
|
394 |
private:
|
sl@0
|
395 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
396 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
397 |
IMPORT_C void DoSetRootL(TStreamId anId);
|
sl@0
|
398 |
IMPORT_C TStreamId DoExtendL();
|
sl@0
|
399 |
IMPORT_C void DoDeleteL(TStreamId anId);
|
sl@0
|
400 |
IMPORT_C void DoCommitL();
|
sl@0
|
401 |
IMPORT_C void DoRevertL();
|
sl@0
|
402 |
IMPORT_C MIncrementalCollector* DoReclaimL();
|
sl@0
|
403 |
IMPORT_C MIncrementalCollector* DoCompactL();
|
sl@0
|
404 |
//
|
sl@0
|
405 |
inline CPermanentStoreCoord& Coord() const;
|
sl@0
|
406 |
CPermanentStoreCoord& CoordL() const;
|
sl@0
|
407 |
CPermanentStoreCoord& TrimL();
|
sl@0
|
408 |
//
|
sl@0
|
409 |
IMPORT_C static CFileStore* DoNewL(RFile& aFile);
|
sl@0
|
410 |
private:
|
sl@0
|
411 |
__MUTABLE CPermanentStoreCoord* iCoord;
|
sl@0
|
412 |
};
|
sl@0
|
413 |
|
sl@0
|
414 |
/**
|
sl@0
|
415 |
* @publishedAll
|
sl@0
|
416 |
* @released
|
sl@0
|
417 |
* File based dictionary store.
|
sl@0
|
418 |
|
sl@0
|
419 |
A dictionary store is a store where a stream is accessed by UID, rather than
|
sl@0
|
420 |
directly by stream ID. A dictionary store contains streams in the usual way
|
sl@0
|
421 |
but, in addition, the root stream is a stream dictionary, i.e. a CStreamDictionary
|
sl@0
|
422 |
type.
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
class CDictionaryFileStore : public CDictionaryStore
|
sl@0
|
425 |
{
|
sl@0
|
426 |
public:
|
sl@0
|
427 |
IMPORT_C static CDictionaryFileStore* SystemL(RFs& aFs);
|
sl@0
|
428 |
IMPORT_C static CDictionaryFileStore* SystemLC(RFs& aFs);
|
sl@0
|
429 |
IMPORT_C static CDictionaryFileStore* OpenL(RFs& aFs,const TDesC& aName,TUid aUid3);
|
sl@0
|
430 |
IMPORT_C static CDictionaryFileStore* OpenLC(RFs& aFs,const TDesC& aName,TUid aUid3);
|
sl@0
|
431 |
private:
|
sl@0
|
432 |
void ConstructL(RFs& aFs,const TDesC& aName,TUid aUid3);
|
sl@0
|
433 |
void CreateStoreL(RFile& aFile,const TUidType& aType);
|
sl@0
|
434 |
};
|
sl@0
|
435 |
|
sl@0
|
436 |
/**
|
sl@0
|
437 |
* @publishedAll
|
sl@0
|
438 |
* @released
|
sl@0
|
439 |
* Uses a file directly to implement the page pool interface MPagePool.
|
sl@0
|
440 |
|
sl@0
|
441 |
The pages are written sequentially through the file. You should call Close()
|
sl@0
|
442 |
to release the file resource after CreateL(), OpenL(), ReplaceL() or Temp().
|
sl@0
|
443 |
|
sl@0
|
444 |
A file page pool uses a cache to store pages in-memory and to cache frequently
|
sl@0
|
445 |
accessed pages. You should provide a cache object (CPageCache) to the pool
|
sl@0
|
446 |
for this purpose.
|
sl@0
|
447 |
|
sl@0
|
448 |
@see CPageCache
|
sl@0
|
449 |
@see RFile
|
sl@0
|
450 |
*/
|
sl@0
|
451 |
class RFilePagePool : public TCachePagePool
|
sl@0
|
452 |
{
|
sl@0
|
453 |
public:
|
sl@0
|
454 |
IMPORT_C RFilePagePool();
|
sl@0
|
455 |
IMPORT_C RFilePagePool(CPageCache& aCache);
|
sl@0
|
456 |
//
|
sl@0
|
457 |
inline TInt Open(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
458 |
inline TInt Create(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
459 |
inline TInt Replace(RFs& aFs,const TDesC& aName,TUint aFileMode);
|
sl@0
|
460 |
inline TInt Temp(RFs& aFs,const TDesC& aPath,TFileName& aName,TUint aFileMode);
|
sl@0
|
461 |
inline void Attach(RFile& aFile);
|
sl@0
|
462 |
IMPORT_C void Close();
|
sl@0
|
463 |
IMPORT_C void Release();
|
sl@0
|
464 |
IMPORT_C TInt Flush();
|
sl@0
|
465 |
IMPORT_C void FlushL();
|
sl@0
|
466 |
inline void Detach();
|
sl@0
|
467 |
//
|
sl@0
|
468 |
inline RFile& File() const;
|
sl@0
|
469 |
protected:
|
sl@0
|
470 |
IMPORT_C TPageRef ExtendL(const TAny* aPage,TPageReclamation aReclamation);
|
sl@0
|
471 |
IMPORT_C void WriteL(TPageRef aRef,const TAny* aPage,TPageChange aChange);
|
sl@0
|
472 |
IMPORT_C void ReadL(TPageRef aRef,TAny* aPage);
|
sl@0
|
473 |
private:
|
sl@0
|
474 |
__MUTABLE RFile iFile;
|
sl@0
|
475 |
};
|
sl@0
|
476 |
|
sl@0
|
477 |
#include <s32file.inl>
|
sl@0
|
478 |
#endif
|