sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "UB_STD.H"
|
sl@0
|
17 |
|
sl@0
|
18 |
EXPORT_C TBtreeFixBase::TBtreeFixBase(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
|
sl@0
|
19 |
: TBtree(aMode),iEntrySize(anEntrySize)
|
sl@0
|
20 |
{
|
sl@0
|
21 |
iLeafOrgFix.SetEntrySize(anEntrySize);
|
sl@0
|
22 |
iIndexOrgFix.SetEntrySize(aKeySize);
|
sl@0
|
23 |
}
|
sl@0
|
24 |
|
sl@0
|
25 |
EXPORT_C TBtreeFixBase::TBtreeFixBase(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
|
sl@0
|
26 |
: TBtree(aToken,aMode),iEntrySize(anEntrySize)
|
sl@0
|
27 |
{
|
sl@0
|
28 |
iLeafOrgFix.SetEntrySize(anEntrySize);
|
sl@0
|
29 |
iIndexOrgFix.SetEntrySize(aKeySize);
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C void TBtreeFixBase::Connect(MPagePool *aPool,const MBtreeKey *aKey)
|
sl@0
|
33 |
/** Initalises the B-tree with a page pool and key handler.
|
sl@0
|
34 |
|
sl@0
|
35 |
@param aPool Page pool to provide storage for the B-tree
|
sl@0
|
36 |
@param aKey Key handler for the B-tree */
|
sl@0
|
37 |
{
|
sl@0
|
38 |
TBtree::Connect(aPool,aKey,&iLeafOrgFix,&iIndexOrgFix);
|
sl@0
|
39 |
}
|
sl@0
|
40 |
|
sl@0
|
41 |
EXPORT_C TBool TBtreeFixBase::InsertL(TBtreePos& aPos,const TAny* anEntry,TAllowDuplicates aDup)
|
sl@0
|
42 |
/** Inserts an entry into the tree.
|
sl@0
|
43 |
|
sl@0
|
44 |
@param aPos On return, the position of the entry inserted
|
sl@0
|
45 |
@param anEntry Pointer to the entry to insert
|
sl@0
|
46 |
@param aDup Flag to indicate whether duplicate entries are allowed in the tree
|
sl@0
|
47 |
@return True if successful, false if the entry was a duplicate and aDup was
|
sl@0
|
48 |
set to ENoDuplicates */
|
sl@0
|
49 |
{
|
sl@0
|
50 |
return TBtree::InsertL(aPos,anEntry,iEntrySize,aDup);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreePos& aPos,TAny* anEntry) const
|
sl@0
|
54 |
/** Gets the entry at the specified position.
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aPos Position of the entry to get
|
sl@0
|
57 |
@param anEntry Buffer into which to copy the entry. */
|
sl@0
|
58 |
{
|
sl@0
|
59 |
TBtree::ExtractAtL(aPos,anEntry,iEntrySize);
|
sl@0
|
60 |
}
|
sl@0
|
61 |
|
sl@0
|
62 |
EXPORT_C void TBtreeFixBase::ExtractAtL(const TBtreeMark& aMark,TAny* anEntry) const
|
sl@0
|
63 |
/** Gets the entry at the specified iterator position.
|
sl@0
|
64 |
|
sl@0
|
65 |
@param aMark Position of the entry to get
|
sl@0
|
66 |
@param anEntry Buffer into which to copy the entry. */
|
sl@0
|
67 |
{
|
sl@0
|
68 |
TBtree::ExtractAtL(aMark,anEntry,iEntrySize);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|