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.
16 #if !defined(__S32STD_H__)
18 #if !defined(__S32STRM_H__)
22 /** The value of the null stream ID. */
23 const TUint32 KNullStreamIdValue=0;
24 const TUint32 KMaxStreamIdValue=0xfffffff;
25 const TUint32 KMaskStreamIdValue=0xfffffff;
26 const TInt KShiftStreamIdValue=28;
31 * Provides unique identification for stream within a store.
33 A store always assigns a new id and constructs and returns an associated TStreamId
34 object when a new stream is created.
36 @see RStoreWriteStream::CreateL()
37 @see RStoreWriteStream::CreateLC()
42 /** Constructs an uninitialised object. It is necessary because there are also
43 non-default constructors in this class. */
45 inline TStreamId(TUint32 aValue);
47 inline TBool operator==(TStreamId anId) const;
48 inline TBool operator!=(TStreamId anId) const;
50 inline void ExternalizeL(RWriteStream& aStream) const;
51 IMPORT_C void InternalizeL(RReadStream& aStream);
53 inline TUint32 Value() const;
57 IMPORT_C static void __DbgChkRange(TUint32 aValue);
59 #if defined(__NO_CLASS_CONSTS__)
60 #define KNullStreamId TStreamId(KNullStreamIdValue)
62 /** The null stream ID; this is a stream ID which is guaranteed not to exist. */
63 const TStreamId KNullStreamId=TStreamId(KNullStreamIdValue);
71 * Supports the opening and manipulation of an existing stream in a store.
73 class RStoreReadStream : public RReadStream
76 IMPORT_C void OpenL(const CStreamStore& aStore,TStreamId anId);
77 IMPORT_C void OpenLC(const CStreamStore& aStore,TStreamId anId);
83 * Supports the writing of a stream to a store.
87 creation of a new stream
89 overwriting of an existing stream
91 replacement of an existing stream
93 appending to an existing stream
95 class RStoreWriteStream : public RWriteStream
98 /** Constructs an uninitialised object. It is necessary because there are also
99 non-default constructors in this class. */
100 RStoreWriteStream() {}
101 inline RStoreWriteStream(const MExternalizer<TStreamRef>& anExter);
102 IMPORT_C TStreamId CreateL(CStreamStore& aStore);
103 IMPORT_C TStreamId CreateLC(CStreamStore& aStore);
104 IMPORT_C void OpenL(CStreamStore& aStore,TStreamId anId);
105 IMPORT_C void OpenLC(CStreamStore& aStore,TStreamId anId);
106 IMPORT_C void ReplaceL(CStreamStore& aStore,TStreamId anId);
107 IMPORT_C void ReplaceLC(CStreamStore& aStore,TStreamId anId);
108 IMPORT_C void AppendL(CStreamStore& aStore,TStreamId anId);
109 IMPORT_C void AppendLC(CStreamStore& aStore,TStreamId anId);
115 * Base class for swizzles.
117 A swizzle maintains a dual representation for an object:
119 by stream id, if the object is not in memory (the stream contains the external
120 representation of that object).
122 by pointer, if the object is in memory.
124 The class is not intended for instantiation.
129 inline TBool operator==(const TSwizzleCBase& aSwizzle) const;
130 inline TBool operator==(const TAny* aPtr) const;
131 inline TBool operator!=(const TSwizzleCBase& aSwizzle) const;
132 inline TBool operator!=(const TAny* aPtr) const;
134 inline TBool IsPtr() const;
135 inline TBool IsId() const;
136 IMPORT_C TStreamId AsId() const;
137 IMPORT_C void InternalizeL(RReadStream& aStream);
140 inline TSwizzleCBase(const TAny* aPtr);
141 IMPORT_C TSwizzleCBase(TStreamId anId);
142 inline TSwizzleCBase(TStreamRef aRef);
143 inline const TAny* Ptr() const;
144 IMPORT_C void DoExternalizeL(RWriteStream& aStream,TExternalizer<TAny> anExter) const;
146 IMPORT_C static TBool IsPtrRep(const TAny* aPtr);
147 IMPORT_C static TBool IsIdRep(const TAny* aPtr);
151 IMPORT_C static void __DbgChkPtr(const TAny* aPtr);
152 IMPORT_C static void __DbgChkRef(TStreamRef aRef);
154 inline TBool operator==(const TAny* aPtr,const TSwizzleCBase& aSwizzle);
155 inline TBool operator!=(const TAny* aPtr,const TSwizzleCBase& aSwizzle);
160 * Implementation class for swizzles.
162 Although part of the class hierarchy, no function or data members in this
163 class form part of the public application programming interface.
165 The class is not intended for instantiation.
169 class TSwizzleBase : public TSwizzleCBase
173 inline TSwizzleBase(TAny* aPtr);
174 inline TSwizzleBase(TStreamId anId);
175 inline TAny* Ptr() const;
181 * Maintains a dual representation for an object. The representation is:
183 by stream id, if the object is not in memory (the stream contains the external
184 representation of that object).
186 by pointer, if the object is in memory.
188 The template class defines the type of object for which the swizzle is a representation.
189 Full access to the represented object is available through the swizzle.
191 Maintaining a dual representation for an object allows the loading of objects
192 into memory from a store to be deferred; this is particularly important in
193 complex applications.
196 class TSwizzle : public TSwizzleBase
199 /** Constructs an uninitialised swizzle. It is necessary because there are also
200 non-default constructors in this class. */
202 inline TSwizzle(T* aPtr);
203 inline TSwizzle(TStreamId anId);
204 inline TSwizzle<T>& operator=(T* aPtr);
205 inline T* AsPtr() const;
206 inline operator T*() const;
207 inline T& operator*() const;
208 inline T* operator->() const;
209 inline void ExternalizeL(RWriteStream& aStream) const;
215 * A specific instantiation of the family of TSwizzle<class T> classes that maintains
216 the representation of an untyped object as a non-const pointer or as a stream
219 TEMPLATE_SPECIALIZATION class TSwizzle<TAny> : public TSwizzleBase
222 /** Default constructor.
224 Constructs an uninitialised swizzle. */
226 inline TSwizzle(TAny* aPtr);
227 inline TSwizzle(TStreamId anId);
228 inline TSwizzle(const TSwizzleBase& aSwizzle);
229 inline TSwizzle<TAny>& operator=(TAny* aPtr);
230 inline TSwizzle<TAny>& operator=(const TSwizzleBase& aSwizzle);
231 inline TAny* AsPtr() const;
232 inline operator TAny*() const;
238 * Maintains a dual representation for a constant object. The representation is:
240 by stream id, if the object is not in memory (the stream contains the external
241 representation of that object).
243 by pointer, if the object is in memory.
245 The template class defines the type of object for which the swizzle is a representation.
246 Access to the to the represented object is available through the swizzle,
247 but is limited. The represented object cannot be changed.
249 Maintaining a dual representation for an object allows the loading of objects
250 into memory from a store to be deferred; this is particularly important in
251 complex applications.
254 class TSwizzleC : public TSwizzleCBase
257 /** Constructs an uninitialised swizzle. It is necessary because there are also
258 non-default constructors in this class. */
260 inline TSwizzleC(const T* aPtr);
261 inline TSwizzleC(TStreamId anId);
262 inline TSwizzleC(TSwizzle<T> aSwizzle);
263 inline TSwizzleC<T>& operator=(const T* aPtr);
264 inline const T* AsPtr() const;
265 inline operator const T*() const;
266 inline const T& operator*() const;
267 inline const T* operator->() const;
268 inline void ExternalizeL(RWriteStream& aStream) const;
274 * A specific instantiation of the family of TSwizzleC<class T> classes that maintains
275 the representation of an untyped object as a const pointer or as a stream id.
277 TEMPLATE_SPECIALIZATION class TSwizzleC<TAny> : public TSwizzleCBase
280 /** Default constructor.
282 Constructs an uninitialised swizzle. */
284 inline TSwizzleC(const TAny* aPtr);
285 inline TSwizzleC(TStreamId anId);
286 inline TSwizzleC(const TSwizzleCBase& aSwizzle);
287 inline TSwizzleC(TStreamRef aRef);
288 inline TSwizzleC<TAny>& operator=(const TAny* aPtr);
289 inline TSwizzleC<TAny>& operator=(const TSwizzleCBase& aSwizzle);
290 inline const TAny* AsPtr() const;
291 inline operator const TAny*() const;
297 * Store map used when externalising swizzled in-memory objects.
299 It has three main characteristics:
301 it acts as an in-memory repository of stream ids and associated swizzles
303 it acts as an externaliser for swizzles
305 it offers cleanup support
307 class CStoreMap : public CBase,public MExternalizer<TStreamRef>
314 struct TEntry {TSwizzleC<TAny> swizzle;TStreamId id;};
315 typedef const TEntry* TIterator;
317 IMPORT_C static CStoreMap* NewL(CStreamStore& aStore);
318 IMPORT_C static CStoreMap* NewLC(CStreamStore& aStore);
319 IMPORT_C CStoreMap(CStreamStore& aStore);
320 IMPORT_C ~CStoreMap();
322 IMPORT_C void BindL(TSwizzleC<TAny> aSwizzle,TStreamId anId);
323 IMPORT_C void Unbind(TSwizzleC<TAny> aSwizzle);
324 IMPORT_C void Forget(TStreamId anId);
325 IMPORT_C void Reset();
326 IMPORT_C void ResetAndDestroy();
328 IMPORT_C TStreamId At(TSwizzleC<TAny> aSwizzle) const;
329 IMPORT_C TSwizzleC<TAny> Label(TStreamId anId) const;
330 IMPORT_C TIterator Begin() const;
331 IMPORT_C TIterator End() const;
333 void ExternalizeL(const TStreamRef& aRef,RWriteStream& aStream) const;
335 CArrayFixFlat<TEntry> iArray;
337 CStreamStore* iStore;
343 * Maintains two way associations between a UID (a TUid type) and a stream id
346 Each UID and stream id pair forms an entry in an array. The class provides
347 member functions to manage these entries, for example, to add a new entry
348 or to change the stream id associated with a UID.
352 @see CDictionaryStore
354 class CStreamDictionary : public CBase
357 IMPORT_C static CStreamDictionary* NewL();
358 IMPORT_C static CStreamDictionary* NewLC();
359 IMPORT_C CStreamDictionary();
360 IMPORT_C ~CStreamDictionary();
362 IMPORT_C void AssignL(TUid aUid,TStreamId anId);
363 IMPORT_C void Remove(TUid aUid);
364 IMPORT_C TStreamId At(TUid aUid) const;
365 IMPORT_C TBool IsNull() const;
367 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
368 IMPORT_C void InternalizeL(RReadStream& aStream);
375 inline TEntry(TUid aUid,TStreamId anId);
376 void ExternalizeL(RWriteStream& aStream) const;
377 void InternalizeL(RReadStream& aStream);
383 CArrayFixSeg<TEntry> iArray;
386 #include <s32std.inl>