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 //#pragma message( __FILE__ " : Find helper function may be less code." )
20 const TInt KStoreMapGranularity=4;
22 EXPORT_C CStoreMap* CStoreMap::NewL(CStreamStore& aStore)
23 /** Allocates and constructs a store map associated with the specified store and
24 returns a pointer to that store map.
26 The function leaves if it cannot complete successfully.
28 @param aStore A reference to the store associated with this store map.
29 @return A pointer to the new store map object. */
31 return new(ELeave) CStoreMap(aStore);
34 EXPORT_C CStoreMap* CStoreMap::NewLC(CStreamStore& aStore)
35 /** Allocates and constructs a store map associated with the specified store, returns
36 a pointer to that store map and puts the pointer onto the cleanup stack.
38 The function leaves if it cannot complete successfully.
40 Placing a pointer to this object onto the cleanup stack allows the object
41 and allocated resources to be cleaned up if a subsequent leave occurs.
43 @param aStore A reference to the store associated with this store map.
44 @return A pointer to the new store map object. */
46 CStoreMap* map=NewL(aStore);
47 CleanupStack::PushL(map);
51 EXPORT_C CStoreMap::CStoreMap(CStreamStore& aStore)
52 : iArray(KStoreMapGranularity),iFree(KNullStreamId),iStore(&aStore)
55 EXPORT_C CStoreMap::~CStoreMap()
56 /** Frees resources owned by the object, prior to its destruction.
58 In particular, the destructor deletes all streams whose stream ids are currently
59 held within the store map and then empties the store map. */
64 EXPORT_C void CStoreMap::BindL(TSwizzleC<TAny> aSwizzle,TStreamId anId)
65 /** Creates an entry in the store map to contain the specified stream id and an
66 associated swizzle. On return from this function, the stream id is said to
67 be bound to the swizzle.
69 If the store map already contains an entry with the same swizzle, then the
70 new entry replaces the existing entry; in effect, knowledge of the original
71 stream id associated with aSwizzle, is lost.
73 Callers of this function can pass any type of swizzle as the first parameter,
74 i.e. any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny>
75 object is constructed from the swizzle passed by the caller.
77 Note that in most applications, callers pass a general swizzle, i.e. an object
78 of type TSwizzle<class T>, where T is the type of object represented by that
81 @param aSwizzle Any swizzle derived from TSwizzleCBase.
82 @param anId The stream id to be bound to the swizzle. */
84 __ASSERT_DEBUG(aSwizzle!=NULL||anId==KNullStreamId,Panic(EStoreMapSwizzleMissing));
88 __ASSERT_DEBUG(anId!=KNullStreamId,Panic(EStoreMapIdMissing));
89 __DEBUG(TSwizzleC<TAny> label=Label(anId));
90 __ASSERT_DEBUG(label==NULL||label==aSwizzle,Panic(EStoreMapIntroducingAlias));
92 entry.swizzle=aSwizzle;
93 TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
95 if (iArray.FindIsq(entry,key,i)==0)
101 __ASSERT_DEBUG(iFree==KNullStreamId,Panic(EStoreMapFreeIdPresent));
103 iArray.InsertL(i,entry);
107 EXPORT_C void CStoreMap::Unbind(TSwizzleC<TAny> aSwizzle)
108 /** Deletes the first entry from the store map corresponding to the specified swizzle.
110 On return from this function, the swizzle is said to be unbound and knowledge
111 of the associated stream id is lost.
113 Callers of this function can pass any type of swizzle as the parameter, i.e.
114 any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny> object
115 is constructed from the swizzle passed by the caller.
119 In most applications, callers pass a general swizzle, i.e. an object of type
120 TSwizzle<class T>, where T is the type of object represented by that swizzle.
122 If no matching entry can be found in the store map, then the store map remains
125 @param aSwizzle Any swizzle derived from TSwizzleCBase. */
128 entry.swizzle=aSwizzle;
129 TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
131 if (iArray.FindIsq(entry,key,i)==0)
135 EXPORT_C void CStoreMap::Forget(TStreamId anId)
136 /** Deletes an entry from the store map. The entry selected is the first one whose
137 stream id matches the specified stream id.
139 On return from this function, the stream id is said to be forgotten and knowledge
140 of that stream id is lost.
142 @param anId The stream id used to identify the entry in the store map to be
153 TKeyArrayFix key(_FOFF(TEntry,id),ECmpTUint32);
155 if (iArray.Find(entry,key,i)==0)
159 EXPORT_C void CStoreMap::Reset()
160 /** Deletes all entries from the store map.
162 It is important that this function is called before deleting the store map,
163 as the destructor attempts to delete all streams whose stream ids are held
170 EXPORT_C void CStoreMap::ResetAndDestroy()
171 /** Deletes all streams whose ids are held within the store map, and then empties
174 iStore->Delete(iFree);
175 for (TIterator iter=Begin(),end=End();iter!=end;++iter)
177 const TEntry& entry=*iter;
178 iStore->Delete(entry.id);
183 EXPORT_C TStreamId CStoreMap::At(TSwizzleC<TAny> aSwizzle) const
184 /** Returns the stream id of the first entry the store map matching the specified
187 Callers of this function can pass any type of swizzle as the first parameter,
188 i.e. any swizzle derived from TSwizzleCBase. The required TSwizzleC<TAny>
189 object is constructed from the swizzle passed by the caller.
191 @param aSwizzle Any type of swizzle derived from TSwizzleCBase.
192 @return The required streamid.KNullStreamId, if no matching entry can be found. */
195 entry.swizzle=aSwizzle;
196 TKeyArrayFix key(_FOFF(TEntry,swizzle),ECmpTUint32);
198 if (iArray.FindIsq(entry,key,i)!=0)
199 return KNullStreamId;
204 EXPORT_C TSwizzleC<TAny> CStoreMap::Label(TStreamId anId) const
205 /** Returns the swizzle in the store map assocated with the specified stream id.
207 @param anId The id of the stream
208 @return The associated swizzle. If there is no matching swizzle, then this
209 is an uninitialized swizzle. */
213 TKeyArrayFix key(_FOFF(TEntry,id),ECmpTUint32);
215 if (iArray.Find(entry,key,i)!=0)
218 return iArray[i].swizzle;
221 EXPORT_C CStoreMap::TIterator CStoreMap::Begin() const
223 // Return the starting iterator for map iteration.
226 return (iArray.Count()==0)?NULL:&iArray[0];
229 EXPORT_C CStoreMap::TIterator CStoreMap::End() const
231 // Return the end iterator for map iteration.
234 return Begin()+iArray.Count();
237 void CStoreMap::ExternalizeL(const TStreamRef& aRef,RWriteStream& aStream) const
239 // Write the stream id bound to aRef to aStream.
242 TSwizzleC<TAny> swizzle=aRef;
243 TStreamId id=At(swizzle);
244 if (id==KNullStreamId&&swizzle!=NULL)
245 __LEAVE(KErrNotFound);