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(__S32BTREE_H__)
17 #define __S32BTREE_H__
18 #if !defined(__S32PAGE_H__)
22 const TInt KMaxBtreeHeight=16;
23 /** Maximum length for a B-tree key. */
24 const TInt KMaxBtreeKeyLength=255;
26 typedef TInt TBtreeHeight;
27 /** Buffer to store the result of MBtreeKey::Between(). */
28 typedef TBuf8<KMaxBtreeKeyLength> TBtreePivot;
30 enum TBtreeMode {EBtreeSecure,EBtreeFast};
35 * Encapsulates the persistent parameters for a TBtree.
40 /** Provides a TBtreeToken initialisation flag. */
43 /** Default constuctor. */
45 inline TBtreeToken(TEmpty);
48 inline TBool IsBroken() const;
49 inline TBool IsIntact() const;
50 inline TBool IsEmpty() const;
52 IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
53 IMPORT_C void InternalizeL(RReadStream& aStream);
55 IMPORT_C void Clear();
57 inline TBtreeToken(TPageRef aFirst,TPageRef aRoot,TBtreeHeight aHeight);
65 #define KEmptyBtreeToken TBtreeToken(TBtreeToken::EEmpty)
75 inline TPageRef Node() const;
76 inline TInt Entry() const;
77 inline TBool IsLeaf() const;
78 inline TBtreeHeight End() const;
79 inline void SetEntry(TInt aEntry);
80 void GotoRoot(TBtreeHeight aHeight,TPageRef aRoot);
81 void Push(TPageRef aRef,TInt aEntry=0);
85 TPageRef iNodes[KMaxBtreeHeight];
86 TUint8 iEntries[KMaxBtreeHeight];
87 TUint8 iLasts[KMaxBtreeHeight];
93 * Identifies a position in a B-tree.
95 The class has no public members. Clients use it by getting TBtreePos objects
96 from some TBtree functions, and passing them into others.
109 * An iterator for a B-tree.
111 Functions that use a TBtreeMark are faster than those that use a TBtreePos,
112 and can be used with a broken B-tree.
114 The class has no public members. Clients use it by getting TBtreeMark objects
115 from some TBtree functions, and passing them into others.
131 * Interface for ordering and creating keys for entries in a B-tree.
133 Derived classes implement this interface for particular types of key.
138 virtual IMPORT_C const TAny* Key(const TAny* anEntry) const;
142 @param aLeft Pointer to first key
143 @param aRight Pointer to second key
144 @return Positive, if the first key is after the second key; negative, if
145 the first key is before the second key; zero, if the keys are equal */
146 virtual TInt Compare(const TAny* aLeft,const TAny* aRight) const=0;
148 /** Gets the midpoint between two keys.
150 The generated midpoint will be greater or equal to aLeft (by a comparison
151 performed by the Compare() function), and less than aRight.
153 @param aLeft First key
154 @param aRight Second key
155 @param aPivot On return, the midpoint between the two keys */
156 virtual void Between(const TAny* aLeft,const TAny* aRight,TBtreePivot& aPivot) const=0;
161 class MBtreeIndexOrg;
166 * Provides ordering of entries by key value in a B+-tree (balanced tree)
169 Entries and keys are handled as untyped TAny* parameters. You specify an entry
170 in the tree to manipulate through a position (TBtreePos) variable. You can
171 also use iterator functions, which take a TBtreeMark, to move through entries
172 in the tree. The tree's settings can be persisted using a TBtreeToken.
174 To use this class, you must provide a page pool, based on MPagePool, in which
175 to store entries in the tree, and a key handler, based on MBtreeKey, to provide
187 /** Sets the condition for a successful match when calling TBtree::Find(). */
189 /** Find the first entry greater than or equal to the search target. */
191 /** Find the first entry equal to the search target. */
193 /** Find the last entry less than the search target. */
195 /** Find the first entry greater than the search target. */
197 /** Find the last entry less than or equal to the search target. */
200 IMPORT_C TBtree(TBtreeMode aMode);
201 IMPORT_C TBtree(const TBtreeToken& aToken,TBtreeMode aMode);
202 IMPORT_C void Connect(MPagePool* aPool,const MBtreeKey* aKey,const MBtreeLeafOrg* aLeafOrg,const MBtreeIndexOrg* anIndexOrg);
203 IMPORT_C void Set(const TBtreeToken& aToken,TBtreeMode aMode);
204 IMPORT_C TBtreeToken Token() const;
206 inline TBool IsDirty() const;
207 inline void MarkCurrent();
208 inline void MarkDirty();
210 inline TBool IsBroken() const;
211 inline TBool IsIntact() const;
212 inline void MarkBroken();
213 IMPORT_C TInt RepairL();
215 inline TBool IsEmpty() const;
216 IMPORT_C void ClearL();
218 IMPORT_C TBool FirstL(TBtreePos& aPos) const;
219 IMPORT_C TBool LastL(TBtreePos& aPos) const;
220 IMPORT_C TBool NextL(TBtreePos& aPos) const;
221 IMPORT_C TBool PreviousL(TBtreePos& aPos) const;
223 IMPORT_C TBool FindL(TBtreePos& aPos,const TAny* aKey,TFind aMode=EEqualTo) const;
224 IMPORT_C TBool InsertL(TBtreePos& aPos,const TAny* anEntry,TInt aLength,TAllowDuplicates aDup=ENoDuplicates);
225 IMPORT_C TBool DeleteL(const TAny* aKey);
226 IMPORT_C void DeleteAtL(TBtreePos& aPos);
227 IMPORT_C void ExtractAtL(const TBtreePos& aPos,TAny* anEntry,TInt aMaxLength) const;
229 IMPORT_C TBool ResetL(TBtreeMark& aMark) const;
230 IMPORT_C TBool NextL(TBtreeMark& aMark) const;
231 IMPORT_C void ExtractAtL(const TBtreeMark& aMark,TAny* anEntry,TInt aMaxLength) const;
233 TBool AscendAtLastL(TBtreePath& aPath) const;
234 TBool AscendAtFirstL(TBtreePath& aPath) const;
235 void DescendFirstL(TBtreePath& aPath) const;
236 void DescendLastL(TBtreePath& aPath) const;
238 TBool SearchL(TBtreePath& aPath,const TAny* aKey,TBool aAfter=EFalse) const;
239 void NewPivot(const TAny* aLeftNode,const TAny* aRightNode,TBtreePivot& aPivot) const;
240 void ReplacePivotL(TBtreePath& aPath,TAny* aNode,TBtreePivot& aPivot);
241 void InsertAtL(TBtreePath& aPath,const TDesC8& anEntry);
242 void InsertAtL(TBtreePath& aPath,TBtreePivot& aPivot,TPageRef aChild);
243 TBool InsertAtL(TBtreePath& aPath,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPivot,TPageRef& aPromote);
244 void DeleteAtL(TBtreePath& aPath);
245 void DeleteIndexSetL();
246 void DeleteIndexNodesL(TBtreePath& aPath,TBool aLeadingEdge);
253 inline void MarkIntact();
254 void CheckIntactL() const;
256 inline TBool IsRoot(const TBtreePath& aPath) const;
257 inline const MBtreeNodeOrg* NodeOrg(TBool aLeaf) const;
258 void GotoRoot(TBtreePath& aPath) const;
260 TAny* GetNodeL(const TBtreePath& aPath) const;
261 void PutNode(TAny* aNode,TBool aLeaf) const;
263 TInt LastEntryL(const TBtreePath& aPath) const;
264 TPageRef ChildNodeL(const TBtreePath& aPath) const;
265 TPageRef LastChildNodeL(TBtreePath& aPath) const;
266 TPageRef ChildNodeL(TBtreePath& aPath,TInt aChild) const;
268 enum {ESecure=EBtreeSecure,EFast=EBtreeFast,EBroken=0x40000000,EDirty=0x80000000};
271 const MBtreeKey* iKey;
272 const MBtreeLeafOrg* iLeafOrg;
273 const MBtreeIndexOrg* iIndexOrg;
276 TBtreeHeight iHeight;
287 virtual IMPORT_C void Init(TAny* aNode) const;
288 virtual TInt LastEntry(const TAny* aNode) const=0;
289 virtual TPtrC8 Entry(const TAny* aNode,TInt aPos) const=0;
290 virtual const TAny* EntryPtr(const TAny* aNode,TInt aPos) const=0;
291 virtual TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const=0;
292 virtual TBool Delete(TAny* aNode,TInt aPos) const=0;
299 class MBtreeLeafOrg : public MBtreeNodeOrg
302 IMPORT_C TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const;
303 virtual TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry) const=0;
304 virtual IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry) const;
305 virtual void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry) const=0;
306 virtual TBool Redistribute(TAny* aLeftNode,TAny* aRightNode) const=0;
307 virtual void Concatenate(TAny* aLeftNode,const TAny* aRightNode) const=0;
308 virtual TPageRef LinkNode(const TAny* aNode) const=0;
309 virtual void SetLinkNode(TAny* aNode,TPageRef aNextNode) const=0;
316 class MBtreeIndexOrg : public MBtreeNodeOrg
319 IMPORT_C TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const;
320 virtual TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild) const=0;
321 virtual IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry,TPageRef aChild,const TDesC8& aPivot,TBtreePivot& aNewPivot) const;
322 virtual void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPromote) const=0;
323 virtual IMPORT_C TBool Update(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
324 virtual TBool Redistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot) const=0;
325 virtual void Concatenate(TAny* aLeftNode,const TAny* aRightNode,const TDesC8& aPivot) const=0;
326 virtual void MakeRoot(TAny* aNode,TPageRef aChild) const=0;
327 virtual TPageRef ChildNode(const TAny* aNode,TInt aPos) const=0;
334 class TBtreeInlineLeafOrg : public MBtreeLeafOrg
337 IMPORT_C TBtreeInlineLeafOrg();
338 IMPORT_C void SetEntrySize(TInt aSize);
340 IMPORT_C TInt LastEntry(const TAny* aNode) const;
341 IMPORT_C TPtrC8 Entry(const TAny* aNode,TInt aPos) const;
342 IMPORT_C const TAny* EntryPtr(const TAny* aNode,TInt aPos) const;
343 IMPORT_C TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
344 IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry) const;
345 IMPORT_C void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry) const;
346 IMPORT_C TBool Delete(TAny* aNode,TInt aPos) const;
347 IMPORT_C TBool Redistribute(TAny* aLeftNode,TAny* aRightNode) const;
348 IMPORT_C void Concatenate(TAny* aLeftNode,const TAny* aRightNode) const;
349 IMPORT_C TPageRef LinkNode(const TAny* aNode) const;
350 IMPORT_C void SetLinkNode(TAny* aNode,TPageRef aNextNode) const;
352 TAny* DoRedistribute(TAny* aLeftNode,TAny* aRightNode,TInt aInsertPos=-1) const;
361 TUint8 iEntries[KPoolPageSize-sizeof(SHeader)];
364 inline static const SNode* Node(const TAny* aNode);
365 inline static SNode* Node(TAny* aNode);
366 inline const TUint8* Entry(const SNode* aNode,TInt anEntry) const;
367 inline TUint8* Entry(SNode* aNode,TInt anEntry) const;
377 class TBtreeInlineIndexOrg : public MBtreeIndexOrg
380 IMPORT_C TBtreeInlineIndexOrg();
381 IMPORT_C void SetEntrySize(TInt aSize);
383 IMPORT_C TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild) const;
384 IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry,TPageRef aChild,const TDesC8& aPivot,TBtreePivot& aNewPivot) const;
385 IMPORT_C void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPromote) const;
386 IMPORT_C TBool Update(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
387 IMPORT_C TBool Delete(TAny* aNode,TInt aPos) const;
388 IMPORT_C TBool Redistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot) const;
389 IMPORT_C void Concatenate(TAny* aLeftNode,const TAny* aRightNode,const TDesC8& aPivot) const;
391 IMPORT_C void MakeRoot(TAny* aNode,TPageRef aChild) const;
392 IMPORT_C TInt LastEntry(const TAny* aNode) const;
393 IMPORT_C TPtrC8 Entry(const TAny* aNode,TInt aPos) const;
394 IMPORT_C const TAny* EntryPtr(const TAny* aNode,TInt aPos) const;
395 IMPORT_C TPageRef ChildNode(const TAny* aNode,TInt aPos) const;
400 TUint8 iKey[4]; // at least four bytes of key
409 TUint8 iEntries[KPoolPageSize-sizeof(SHeader)];
411 SNode* DoRedistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot,TInt aInsertPos=-1) const;
413 inline static const SNode* Node(const TAny* aNode);
414 inline static SNode* Node(TAny* aNode);
415 inline const SEntry* Entry(const SNode* aNode,TInt anEntry) const;
416 inline SEntry* Entry(SNode* aNode,TInt anEntry) const;
417 inline TInt KeySize() const;
427 class TBtreeKey : public MBtreeKey
430 IMPORT_C TBtreeKey();
431 IMPORT_C TBtreeKey(TInt aLength);
432 IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpText aType);
433 IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpText aType,TInt aLength);
434 IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpNumeric aType);
436 IMPORT_C const TAny* Key(const TAny* anEntry) const;
437 IMPORT_C TInt Compare(const TAny* aLeft,const TAny* aRight) const;
438 IMPORT_C void Between(const TAny* aLeft,const TAny* aRight,TBtreePivot& aPivot) const;
448 * Base class for TBtreeFix, which provides a B-tree for fixed sized entries.
450 class TBtreeFixBase : public TBtree
453 IMPORT_C void Connect(MPagePool* aPool,const MBtreeKey* aKey);
454 IMPORT_C TBool InsertL(TBtreePos& aPos,const TAny* anEntry,TAllowDuplicates aDup=ENoDuplicates);
455 IMPORT_C void ExtractAtL(const TBtreePos& aPos,TAny* anEntry) const;
456 IMPORT_C void ExtractAtL(const TBtreeMark& aMark,TAny* anEntry) const;
458 IMPORT_C TBtreeFixBase(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
459 IMPORT_C TBtreeFixBase(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
462 TBtreeInlineLeafOrg iLeafOrgFix;
463 TBtreeInlineIndexOrg iIndexOrgFix;
469 * A B-tree for fixed-sized keys and entries.
471 Entry is the type of entry to store. Key defines how items should be ordered:
472 there must be a member of this type in the Entry class.
474 template <class Entry,class Key>
475 class TBtreeFix : public TBtreeFixBase
478 inline TBtreeFix(TBtreeMode aMode);
479 inline TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode);
481 inline TBool FindL(TBtreePos& aPos,const Key& aKey,TFind aMode=EEqualTo) const;
482 inline TBool InsertL(TBtreePos& aPos,const Entry& anEntry,TAllowDuplicates aDup=ENoDuplicates);
483 inline TBool DeleteL(const Key& aKey);
485 inline Entry AtL(const TBtreePos& aPos) const;
486 inline Entry AtL(const TBtreeMark& aMark) const;
487 inline void ExtractAtL(const TBtreePos& aPos,Entry& anEntry) const;
488 inline void ExtractAtL(const TBtreeMark& aMark,Entry& anEntry) const;
494 * A specialisation of the B-tree for untyped fixed sized items.
496 TEMPLATE_SPECIALIZATION class TBtreeFix<TAny,TAny> : public TBtreeFixBase
499 inline TBtreeFix(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
500 inline TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
503 #include <s32btree.inl>