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(__S32CONT_H__)
18 #if !defined(__S32BTREE_H__)
26 class TPagedSetToken : public TBtreeToken
30 inline TPagedSetToken(TEmpty);
32 inline TInt Count() const;
34 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
35 IMPORT_C void InternalizeL(RReadStream& aStream);
37 IMPORT_C void Clear();
39 inline TPagedSetToken(const TBtreeToken& aTree,TInt aCount);
43 friend class TPagedSetBase;
45 #define KEmptyPagedSetToken TPagedSetToken(TPagedSetToken::EEmpty)
54 IMPORT_C void Connect(MPagePool* aPool);
55 IMPORT_C void Set(const TPagedSetToken& aToken);
56 IMPORT_C TPagedSetToken Token() const;
58 inline TBool IsDirty() const;
59 inline void MarkCurrent();
60 inline void MarkDirty();
62 inline TBool IsBroken() const;
63 inline TBool IsIntact() const;
64 inline void MarkBroken();
65 IMPORT_C TInt RepairL();
67 inline TInt Count() const;
68 inline TBool IsEmpty() const;
69 IMPORT_C void ClearL();
71 IMPORT_C TBool ContainsL(const TAny* aPtr) const;
72 IMPORT_C void InsertL(const TAny* aPtr);
73 IMPORT_C void DeleteL(const TAny* aPtr);
75 IMPORT_C TPagedSetBase(TInt anEntrySize);
76 IMPORT_C TPagedSetBase(const TPagedSetToken& aToken,TInt anEntrySize);
77 IMPORT_C void InsertAllowDuplicatesL(const TAny* aPtr);
79 TBtreeFix<TAny,TAny> iTree;
83 friend class TPagedSetIterBase;
84 friend class TPagedSetBiIterBase;
91 class TPagedMultisetBase : public TPagedSetBase
94 inline void InsertL(const TAny* aPtr);
96 inline TPagedMultisetBase(TInt anEntrySize);
97 inline TPagedMultisetBase(const TPagedSetToken& aToken,TInt anEntrySize);
105 class TPagedSet : public TPagedSetBase
109 inline TPagedSet(const TPagedSetToken& aToken);
111 inline TBool ContainsL(const T& anObject) const;
112 inline void InsertL(const T& anObject);
113 inline void DeleteL(const T& anObject);
120 TEMPLATE_SPECIALIZATION class TPagedSet<TAny> : public TPagedSetBase
123 inline TPagedSet(TInt anEntrySize);
124 inline TPagedSet(const TPagedSetToken& aToken,TInt anEntrySize);
132 class TPagedMultiset : public TPagedMultisetBase
135 inline TPagedMultiset();
136 inline TPagedMultiset(const TPagedSetToken& aToken);
138 inline TBool ContainsL(const T& anObject) const;
139 inline void InsertL(const T& anObject);
140 inline void DeleteL(const T& anObject);
147 TEMPLATE_SPECIALIZATION class TPagedMultiset<TAny> : public TPagedMultisetBase
150 inline TPagedMultiset(TInt anEntrySize);
151 inline TPagedMultiset(const TPagedSetToken& aToken,TInt anEntrySize);
158 class TPagedSetIterBase
161 IMPORT_C TBool ResetL();
162 IMPORT_C TBool NextL();
163 IMPORT_C void ExtractAtL(TAny* aPtr) const;
165 inline TPagedSetIterBase(const TPagedSetBase& aSet);
167 const TBtreeFixBase* iTree;
176 class TPagedSetIter : public TPagedSetIterBase
179 inline TPagedSetIter(const TPagedSet<T>& aSet);
180 inline TPagedSetIter(const TPagedMultiset<T>& aSet);
181 inline T AtL() const;
182 inline void ExtractAtL(T& anObject) const;
189 TEMPLATE_SPECIALIZATION class TPagedSetIter<TAny> : public TPagedSetIterBase
192 inline TPagedSetIter(const TPagedSetBase& aSet);
199 class TPagedSetBiIterBase
202 IMPORT_C TBool FirstL();
203 IMPORT_C TBool LastL();
204 IMPORT_C TBool NextL();
205 IMPORT_C TBool PreviousL();
206 IMPORT_C void ExtractAtL(TAny* aPtr) const;
208 inline TPagedSetBiIterBase(const TPagedSetBase& aSet);
210 const TBtreeFixBase* iTree;
219 class TPagedSetBiIter : public TPagedSetBiIterBase
222 inline TPagedSetBiIter(const TPagedSet<T>& aSet);
223 inline TPagedSetBiIter(const TPagedMultiset<T>& aSet);
224 inline T AtL() const;
225 inline void ExtractAtL(T& anObject) const;
232 TEMPLATE_SPECIALIZATION class TPagedSetBiIter<TAny> : public TPagedSetBiIterBase
235 inline TPagedSetBiIter(const TPagedSetBase& aSet);
242 class TPagedSetRIterBase
245 inline TBool ResetL();
246 inline TBool NextL();
247 inline void ExtractAtL(TAny* aPtr) const;
249 inline TPagedSetRIterBase(const TPagedSetBase& aSet);
251 TPagedSetBiIter<TAny> iIter;
259 class TPagedSetRIter : public TPagedSetRIterBase
262 inline TPagedSetRIter(const TPagedSet<T>& aSet);
263 inline TPagedSetRIter(const TPagedMultiset<T>& aSet);
264 inline T AtL() const;
265 inline void ExtractAtL(T& anObject) const;
272 TEMPLATE_SPECIALIZATION class TPagedSetRIter<TAny> : public TPagedSetRIterBase
275 inline TPagedSetRIter(const TPagedSetBase& aSet);
278 #include <s32cont.inl>