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 EXPORT_C TBtreeFixBase::TBtreeFixBase(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
19 : TBtree(aMode),iEntrySize(anEntrySize)
21 iLeafOrgFix.SetEntrySize(anEntrySize);
22 iIndexOrgFix.SetEntrySize(aKeySize);
25 EXPORT_C TBtreeFixBase::TBtreeFixBase(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
26 : TBtree(aToken,aMode),iEntrySize(anEntrySize)
28 iLeafOrgFix.SetEntrySize(anEntrySize);
29 iIndexOrgFix.SetEntrySize(aKeySize);
32 EXPORT_C void TBtreeFixBase::Connect(MPagePool *aPool,const MBtreeKey *aKey)
33 /** Initalises the B-tree with a page pool and key handler.
35 @param aPool Page pool to provide storage for the B-tree
36 @param aKey Key handler for the B-tree */
38 TBtree::Connect(aPool,aKey,&iLeafOrgFix,&iIndexOrgFix);
41 EXPORT_C TBool TBtreeFixBase::InsertL(TBtreePos& aPos,const TAny* anEntry,TAllowDuplicates aDup)
42 /** Inserts an entry into the tree.
44 @param aPos On return, the position of the entry inserted
45 @param anEntry Pointer to the entry to insert
46 @param aDup Flag to indicate whether duplicate entries are allowed in the tree
47 @return True if successful, false if the entry was a duplicate and aDup was
48 set to ENoDuplicates */
50 return TBtree::InsertL(aPos,anEntry,iEntrySize,aDup);
53 EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreePos& aPos,TAny* anEntry) const
54 /** Gets the entry at the specified position.
56 @param aPos Position of the entry to get
57 @param anEntry Buffer into which to copy the entry. */
59 TBtree::ExtractAtL(aPos,anEntry,iEntrySize);
62 EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreeMark& aMark,TAny* anEntry) const
63 /** Gets the entry at the specified iterator position.
65 @param aMark Position of the entry to get
66 @param anEntry Buffer into which to copy the entry. */
68 TBtree::ExtractAtL(aMark,anEntry,iEntrySize);