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(__S32STD_H__)
|
sl@0
|
17 |
#define __S32STD_H__
|
sl@0
|
18 |
#if !defined(__S32STRM_H__)
|
sl@0
|
19 |
#include <s32strm.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
|
sl@0
|
22 |
/** The value of the null stream ID. */
|
sl@0
|
23 |
const TUint32 KNullStreamIdValue=0;
|
sl@0
|
24 |
const TUint32 KMaxStreamIdValue=0xfffffff;
|
sl@0
|
25 |
const TUint32 KMaskStreamIdValue=0xfffffff;
|
sl@0
|
26 |
const TInt KShiftStreamIdValue=28;
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
* @publishedAll
|
sl@0
|
30 |
* @released
|
sl@0
|
31 |
* Provides unique identification for stream within a store.
|
sl@0
|
32 |
|
sl@0
|
33 |
A store always assigns a new id and constructs and returns an associated TStreamId
|
sl@0
|
34 |
object when a new stream is created.
|
sl@0
|
35 |
|
sl@0
|
36 |
@see RStoreWriteStream::CreateL()
|
sl@0
|
37 |
@see RStoreWriteStream::CreateLC()
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
class TStreamId
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
/** Constructs an uninitialised object. It is necessary because there are also
|
sl@0
|
43 |
non-default constructors in this class. */
|
sl@0
|
44 |
TStreamId() {}
|
sl@0
|
45 |
inline TStreamId(TUint32 aValue);
|
sl@0
|
46 |
//
|
sl@0
|
47 |
inline TBool operator==(TStreamId anId) const;
|
sl@0
|
48 |
inline TBool operator!=(TStreamId anId) const;
|
sl@0
|
49 |
//
|
sl@0
|
50 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
51 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
52 |
//
|
sl@0
|
53 |
inline TUint32 Value() const;
|
sl@0
|
54 |
private:
|
sl@0
|
55 |
TUint32 iVal;
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
IMPORT_C static void __DbgChkRange(TUint32 aValue);
|
sl@0
|
58 |
};
|
sl@0
|
59 |
#if defined(__NO_CLASS_CONSTS__)
|
sl@0
|
60 |
#define KNullStreamId TStreamId(KNullStreamIdValue)
|
sl@0
|
61 |
#else
|
sl@0
|
62 |
/** The null stream ID; this is a stream ID which is guaranteed not to exist. */
|
sl@0
|
63 |
const TStreamId KNullStreamId=TStreamId(KNullStreamIdValue);
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
//
|
sl@0
|
66 |
class CStreamStore;
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
* @publishedAll
|
sl@0
|
70 |
* @released
|
sl@0
|
71 |
* Supports the opening and manipulation of an existing stream in a store.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
class RStoreReadStream : public RReadStream
|
sl@0
|
74 |
{
|
sl@0
|
75 |
public:
|
sl@0
|
76 |
IMPORT_C void OpenL(const CStreamStore& aStore,TStreamId anId);
|
sl@0
|
77 |
IMPORT_C void OpenLC(const CStreamStore& aStore,TStreamId anId);
|
sl@0
|
78 |
};
|
sl@0
|
79 |
|
sl@0
|
80 |
/**
|
sl@0
|
81 |
* @publishedAll
|
sl@0
|
82 |
* @released
|
sl@0
|
83 |
* Supports the writing of a stream to a store.
|
sl@0
|
84 |
|
sl@0
|
85 |
The class allows:
|
sl@0
|
86 |
|
sl@0
|
87 |
creation of a new stream
|
sl@0
|
88 |
|
sl@0
|
89 |
overwriting of an existing stream
|
sl@0
|
90 |
|
sl@0
|
91 |
replacement of an existing stream
|
sl@0
|
92 |
|
sl@0
|
93 |
appending to an existing stream
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
class RStoreWriteStream : public RWriteStream
|
sl@0
|
96 |
{
|
sl@0
|
97 |
public:
|
sl@0
|
98 |
/** Constructs an uninitialised object. It is necessary because there are also
|
sl@0
|
99 |
non-default constructors in this class. */
|
sl@0
|
100 |
RStoreWriteStream() {}
|
sl@0
|
101 |
inline RStoreWriteStream(const MExternalizer<TStreamRef>& anExter);
|
sl@0
|
102 |
IMPORT_C TStreamId CreateL(CStreamStore& aStore);
|
sl@0
|
103 |
IMPORT_C TStreamId CreateLC(CStreamStore& aStore);
|
sl@0
|
104 |
IMPORT_C void OpenL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
105 |
IMPORT_C void OpenLC(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
106 |
IMPORT_C void ReplaceL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
107 |
IMPORT_C void ReplaceLC(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
108 |
IMPORT_C void AppendL(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
109 |
IMPORT_C void AppendLC(CStreamStore& aStore,TStreamId anId);
|
sl@0
|
110 |
};
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
* @publishedAll
|
sl@0
|
114 |
* @released
|
sl@0
|
115 |
* Base class for swizzles.
|
sl@0
|
116 |
|
sl@0
|
117 |
A swizzle maintains a dual representation for an object:
|
sl@0
|
118 |
|
sl@0
|
119 |
by stream id, if the object is not in memory (the stream contains the external
|
sl@0
|
120 |
representation of that object).
|
sl@0
|
121 |
|
sl@0
|
122 |
by pointer, if the object is in memory.
|
sl@0
|
123 |
|
sl@0
|
124 |
The class is not intended for instantiation.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
class TSwizzleCBase
|
sl@0
|
127 |
{
|
sl@0
|
128 |
public:
|
sl@0
|
129 |
inline TBool operator==(const TSwizzleCBase& aSwizzle) const;
|
sl@0
|
130 |
inline TBool operator==(const TAny* aPtr) const;
|
sl@0
|
131 |
inline TBool operator!=(const TSwizzleCBase& aSwizzle) const;
|
sl@0
|
132 |
inline TBool operator!=(const TAny* aPtr) const;
|
sl@0
|
133 |
//
|
sl@0
|
134 |
inline TBool IsPtr() const;
|
sl@0
|
135 |
inline TBool IsId() const;
|
sl@0
|
136 |
IMPORT_C TStreamId AsId() const;
|
sl@0
|
137 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
138 |
protected:
|
sl@0
|
139 |
TSwizzleCBase() {}
|
sl@0
|
140 |
inline TSwizzleCBase(const TAny* aPtr);
|
sl@0
|
141 |
IMPORT_C TSwizzleCBase(TStreamId anId);
|
sl@0
|
142 |
inline TSwizzleCBase(TStreamRef aRef);
|
sl@0
|
143 |
inline const TAny* Ptr() const;
|
sl@0
|
144 |
IMPORT_C void DoExternalizeL(RWriteStream& aStream,TExternalizer<TAny> anExter) const;
|
sl@0
|
145 |
private:
|
sl@0
|
146 |
IMPORT_C static TBool IsPtrRep(const TAny* aPtr);
|
sl@0
|
147 |
IMPORT_C static TBool IsIdRep(const TAny* aPtr);
|
sl@0
|
148 |
private:
|
sl@0
|
149 |
const TAny* iPtr;
|
sl@0
|
150 |
private:
|
sl@0
|
151 |
IMPORT_C static void __DbgChkPtr(const TAny* aPtr);
|
sl@0
|
152 |
IMPORT_C static void __DbgChkRef(TStreamRef aRef);
|
sl@0
|
153 |
};
|
sl@0
|
154 |
inline TBool operator==(const TAny* aPtr,const TSwizzleCBase& aSwizzle);
|
sl@0
|
155 |
inline TBool operator!=(const TAny* aPtr,const TSwizzleCBase& aSwizzle);
|
sl@0
|
156 |
|
sl@0
|
157 |
/**
|
sl@0
|
158 |
* @publishedAll
|
sl@0
|
159 |
* @released
|
sl@0
|
160 |
* Implementation class for swizzles.
|
sl@0
|
161 |
|
sl@0
|
162 |
Although part of the class hierarchy, no function or data members in this
|
sl@0
|
163 |
class form part of the public application programming interface.
|
sl@0
|
164 |
|
sl@0
|
165 |
The class is not intended for instantiation.
|
sl@0
|
166 |
|
sl@0
|
167 |
@see TSwizzle
|
sl@0
|
168 |
*/
|
sl@0
|
169 |
class TSwizzleBase : public TSwizzleCBase
|
sl@0
|
170 |
{
|
sl@0
|
171 |
protected:
|
sl@0
|
172 |
TSwizzleBase() {}
|
sl@0
|
173 |
inline TSwizzleBase(TAny* aPtr);
|
sl@0
|
174 |
inline TSwizzleBase(TStreamId anId);
|
sl@0
|
175 |
inline TAny* Ptr() const;
|
sl@0
|
176 |
};
|
sl@0
|
177 |
|
sl@0
|
178 |
/**
|
sl@0
|
179 |
* @publishedAll
|
sl@0
|
180 |
* @released
|
sl@0
|
181 |
* Maintains a dual representation for an object. The representation is:
|
sl@0
|
182 |
|
sl@0
|
183 |
by stream id, if the object is not in memory (the stream contains the external
|
sl@0
|
184 |
representation of that object).
|
sl@0
|
185 |
|
sl@0
|
186 |
by pointer, if the object is in memory.
|
sl@0
|
187 |
|
sl@0
|
188 |
The template class defines the type of object for which the swizzle is a representation.
|
sl@0
|
189 |
Full access to the represented object is available through the swizzle.
|
sl@0
|
190 |
|
sl@0
|
191 |
Maintaining a dual representation for an object allows the loading of objects
|
sl@0
|
192 |
into memory from a store to be deferred; this is particularly important in
|
sl@0
|
193 |
complex applications.
|
sl@0
|
194 |
*/
|
sl@0
|
195 |
template <class T>
|
sl@0
|
196 |
class TSwizzle : public TSwizzleBase
|
sl@0
|
197 |
{
|
sl@0
|
198 |
public:
|
sl@0
|
199 |
/** Constructs an uninitialised swizzle. It is necessary because there are also
|
sl@0
|
200 |
non-default constructors in this class. */
|
sl@0
|
201 |
TSwizzle() {}
|
sl@0
|
202 |
inline TSwizzle(T* aPtr);
|
sl@0
|
203 |
inline TSwizzle(TStreamId anId);
|
sl@0
|
204 |
inline TSwizzle<T>& operator=(T* aPtr);
|
sl@0
|
205 |
inline T* AsPtr() const;
|
sl@0
|
206 |
inline operator T*() const;
|
sl@0
|
207 |
inline T& operator*() const;
|
sl@0
|
208 |
inline T* operator->() const;
|
sl@0
|
209 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
210 |
};
|
sl@0
|
211 |
|
sl@0
|
212 |
/**
|
sl@0
|
213 |
* @publishedAll
|
sl@0
|
214 |
* @released
|
sl@0
|
215 |
* A specific instantiation of the family of TSwizzle<class T> classes that maintains
|
sl@0
|
216 |
the representation of an untyped object as a non-const pointer or as a stream
|
sl@0
|
217 |
id.
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
TEMPLATE_SPECIALIZATION class TSwizzle<TAny> : public TSwizzleBase
|
sl@0
|
220 |
{
|
sl@0
|
221 |
public:
|
sl@0
|
222 |
/** Default constructor.
|
sl@0
|
223 |
|
sl@0
|
224 |
Constructs an uninitialised swizzle. */
|
sl@0
|
225 |
TSwizzle() {}
|
sl@0
|
226 |
inline TSwizzle(TAny* aPtr);
|
sl@0
|
227 |
inline TSwizzle(TStreamId anId);
|
sl@0
|
228 |
inline TSwizzle(const TSwizzleBase& aSwizzle);
|
sl@0
|
229 |
inline TSwizzle<TAny>& operator=(TAny* aPtr);
|
sl@0
|
230 |
inline TSwizzle<TAny>& operator=(const TSwizzleBase& aSwizzle);
|
sl@0
|
231 |
inline TAny* AsPtr() const;
|
sl@0
|
232 |
inline operator TAny*() const;
|
sl@0
|
233 |
};
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
* @publishedAll
|
sl@0
|
237 |
* @released
|
sl@0
|
238 |
* Maintains a dual representation for a constant object. The representation is:
|
sl@0
|
239 |
|
sl@0
|
240 |
by stream id, if the object is not in memory (the stream contains the external
|
sl@0
|
241 |
representation of that object).
|
sl@0
|
242 |
|
sl@0
|
243 |
by pointer, if the object is in memory.
|
sl@0
|
244 |
|
sl@0
|
245 |
The template class defines the type of object for which the swizzle is a representation.
|
sl@0
|
246 |
Access to the to the represented object is available through the swizzle,
|
sl@0
|
247 |
but is limited. The represented object cannot be changed.
|
sl@0
|
248 |
|
sl@0
|
249 |
Maintaining a dual representation for an object allows the loading of objects
|
sl@0
|
250 |
into memory from a store to be deferred; this is particularly important in
|
sl@0
|
251 |
complex applications.
|
sl@0
|
252 |
*/
|
sl@0
|
253 |
template <class T>
|
sl@0
|
254 |
class TSwizzleC : public TSwizzleCBase
|
sl@0
|
255 |
{
|
sl@0
|
256 |
public:
|
sl@0
|
257 |
/** Constructs an uninitialised swizzle. It is necessary because there are also
|
sl@0
|
258 |
non-default constructors in this class. */
|
sl@0
|
259 |
TSwizzleC() {}
|
sl@0
|
260 |
inline TSwizzleC(const T* aPtr);
|
sl@0
|
261 |
inline TSwizzleC(TStreamId anId);
|
sl@0
|
262 |
inline TSwizzleC(TSwizzle<T> aSwizzle);
|
sl@0
|
263 |
inline TSwizzleC<T>& operator=(const T* aPtr);
|
sl@0
|
264 |
inline const T* AsPtr() const;
|
sl@0
|
265 |
inline operator const T*() const;
|
sl@0
|
266 |
inline const T& operator*() const;
|
sl@0
|
267 |
inline const T* operator->() const;
|
sl@0
|
268 |
inline void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
269 |
};
|
sl@0
|
270 |
|
sl@0
|
271 |
/**
|
sl@0
|
272 |
* @publishedAll
|
sl@0
|
273 |
* @released
|
sl@0
|
274 |
* A specific instantiation of the family of TSwizzleC<class T> classes that maintains
|
sl@0
|
275 |
the representation of an untyped object as a const pointer or as a stream id.
|
sl@0
|
276 |
*/
|
sl@0
|
277 |
TEMPLATE_SPECIALIZATION class TSwizzleC<TAny> : public TSwizzleCBase
|
sl@0
|
278 |
{
|
sl@0
|
279 |
public:
|
sl@0
|
280 |
/** Default constructor.
|
sl@0
|
281 |
|
sl@0
|
282 |
Constructs an uninitialised swizzle. */
|
sl@0
|
283 |
TSwizzleC() {}
|
sl@0
|
284 |
inline TSwizzleC(const TAny* aPtr);
|
sl@0
|
285 |
inline TSwizzleC(TStreamId anId);
|
sl@0
|
286 |
inline TSwizzleC(const TSwizzleCBase& aSwizzle);
|
sl@0
|
287 |
inline TSwizzleC(TStreamRef aRef);
|
sl@0
|
288 |
inline TSwizzleC<TAny>& operator=(const TAny* aPtr);
|
sl@0
|
289 |
inline TSwizzleC<TAny>& operator=(const TSwizzleCBase& aSwizzle);
|
sl@0
|
290 |
inline const TAny* AsPtr() const;
|
sl@0
|
291 |
inline operator const TAny*() const;
|
sl@0
|
292 |
};
|
sl@0
|
293 |
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
* @publishedAll
|
sl@0
|
296 |
* @released
|
sl@0
|
297 |
* Store map used when externalising swizzled in-memory objects.
|
sl@0
|
298 |
|
sl@0
|
299 |
It has three main characteristics:
|
sl@0
|
300 |
|
sl@0
|
301 |
it acts as an in-memory repository of stream ids and associated swizzles
|
sl@0
|
302 |
|
sl@0
|
303 |
it acts as an externaliser for swizzles
|
sl@0
|
304 |
|
sl@0
|
305 |
it offers cleanup support
|
sl@0
|
306 |
*/
|
sl@0
|
307 |
class CStoreMap : public CBase,public MExternalizer<TStreamRef>
|
sl@0
|
308 |
{
|
sl@0
|
309 |
public:
|
sl@0
|
310 |
/**
|
sl@0
|
311 |
* @publishedAll
|
sl@0
|
312 |
* @released
|
sl@0
|
313 |
*/
|
sl@0
|
314 |
struct TEntry {TSwizzleC<TAny> swizzle;TStreamId id;};
|
sl@0
|
315 |
typedef const TEntry* TIterator;
|
sl@0
|
316 |
public:
|
sl@0
|
317 |
IMPORT_C static CStoreMap* NewL(CStreamStore& aStore);
|
sl@0
|
318 |
IMPORT_C static CStoreMap* NewLC(CStreamStore& aStore);
|
sl@0
|
319 |
IMPORT_C CStoreMap(CStreamStore& aStore);
|
sl@0
|
320 |
IMPORT_C ~CStoreMap();
|
sl@0
|
321 |
//
|
sl@0
|
322 |
IMPORT_C void BindL(TSwizzleC<TAny> aSwizzle,TStreamId anId);
|
sl@0
|
323 |
IMPORT_C void Unbind(TSwizzleC<TAny> aSwizzle);
|
sl@0
|
324 |
IMPORT_C void Forget(TStreamId anId);
|
sl@0
|
325 |
IMPORT_C void Reset();
|
sl@0
|
326 |
IMPORT_C void ResetAndDestroy();
|
sl@0
|
327 |
//
|
sl@0
|
328 |
IMPORT_C TStreamId At(TSwizzleC<TAny> aSwizzle) const;
|
sl@0
|
329 |
IMPORT_C TSwizzleC<TAny> Label(TStreamId anId) const;
|
sl@0
|
330 |
IMPORT_C TIterator Begin() const;
|
sl@0
|
331 |
IMPORT_C TIterator End() const;
|
sl@0
|
332 |
private:
|
sl@0
|
333 |
void ExternalizeL(const TStreamRef& aRef,RWriteStream& aStream) const;
|
sl@0
|
334 |
private:
|
sl@0
|
335 |
CArrayFixFlat<TEntry> iArray;
|
sl@0
|
336 |
TStreamId iFree;
|
sl@0
|
337 |
CStreamStore* iStore;
|
sl@0
|
338 |
};
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
* @publishedAll
|
sl@0
|
342 |
* @released
|
sl@0
|
343 |
* Maintains two way associations between a UID (a TUid type) and a stream id
|
sl@0
|
344 |
(a TStreamId type) .
|
sl@0
|
345 |
|
sl@0
|
346 |
Each UID and stream id pair forms an entry in an array. The class provides
|
sl@0
|
347 |
member functions to manage these entries, for example, to add a new entry
|
sl@0
|
348 |
or to change the stream id associated with a UID.
|
sl@0
|
349 |
|
sl@0
|
350 |
@see TUid
|
sl@0
|
351 |
@see TStreamId
|
sl@0
|
352 |
@see CDictionaryStore
|
sl@0
|
353 |
*/
|
sl@0
|
354 |
class CStreamDictionary : public CBase
|
sl@0
|
355 |
{
|
sl@0
|
356 |
public:
|
sl@0
|
357 |
IMPORT_C static CStreamDictionary* NewL();
|
sl@0
|
358 |
IMPORT_C static CStreamDictionary* NewLC();
|
sl@0
|
359 |
IMPORT_C CStreamDictionary();
|
sl@0
|
360 |
IMPORT_C ~CStreamDictionary();
|
sl@0
|
361 |
//
|
sl@0
|
362 |
IMPORT_C void AssignL(TUid aUid,TStreamId anId);
|
sl@0
|
363 |
IMPORT_C void Remove(TUid aUid);
|
sl@0
|
364 |
IMPORT_C TStreamId At(TUid aUid) const;
|
sl@0
|
365 |
IMPORT_C TBool IsNull() const;
|
sl@0
|
366 |
//
|
sl@0
|
367 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
368 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
369 |
private:
|
sl@0
|
370 |
|
sl@0
|
371 |
class TEntry
|
sl@0
|
372 |
{
|
sl@0
|
373 |
public:
|
sl@0
|
374 |
TEntry() {}
|
sl@0
|
375 |
inline TEntry(TUid aUid,TStreamId anId);
|
sl@0
|
376 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
377 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
378 |
public:
|
sl@0
|
379 |
TUid iUid;
|
sl@0
|
380 |
TStreamId iId;
|
sl@0
|
381 |
};
|
sl@0
|
382 |
private:
|
sl@0
|
383 |
CArrayFixSeg<TEntry> iArray;
|
sl@0
|
384 |
};
|
sl@0
|
385 |
|
sl@0
|
386 |
#include <s32std.inl>
|
sl@0
|
387 |
#endif
|