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 void MBtreeNodeOrg::Init(TAny* aNode) const
20 // Default node initialisation just zero filling.
23 Mem::FillZ(aNode,KPoolPageSize);
26 EXPORT_C TBool MBtreeLeafOrg::Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const
28 // Default to using a binary search through the node, using KeyAt and the key's comparison.
29 // if aLast is 1, aEntry is the first > the key, return true if previous entry is a match
30 // if aLast is 0, aEntry is the first entry >= the key, return true is current entry is a match
34 TInt rr=LastEntry(aNode)-1;
36 __ASSERT_DEBUG(rr>=-1,Panic(EBadEntryCount));
40 TInt res=aComp.Compare(aKey,aComp.Key(EntryPtr(aNode,mm)));
44 rr=mm-1; // compare < 0 or match and aLast=0
46 ll=mm+1; // compare > 0 or match and aLast=1
52 EXPORT_C TBool MBtreeLeafOrg::InsertOverflow(TAny*,TAny*,TInt,TBool,const TDesC8&) const
54 // For simple implementations allow this to be unimplemented. Report failure
60 EXPORT_C TBool MBtreeIndexOrg::Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const
62 // Default to using a binary search through the node, using KeyAt and the key's comparison.
63 // if aLast is 1, aEntry is the first > the key
64 // if aLast is 0, aEntry is the first entry >= the key
67 TInt rr=LastEntry(aNode);
69 __ASSERT_DEBUG(rr>0,Panic(EBadEntryCount));
73 if (aComp.Compare(aKey,EntryPtr(aNode,mm))+aLast<=0)
74 rr=mm; // compare < 0 or match and aLast=0
76 ll=mm; // compare > 0 or match and aLast=1
79 return EFalse; // return not used
82 EXPORT_C TBool MBtreeIndexOrg::InsertOverflow(TAny*,TAny*,TInt,TBool,const TDesC8&,TPageRef,const TDesC8&,TBtreePivot&) const
84 // For simple implementations allow this to be unimplemented. Report failure.
90 EXPORT_C TBool MBtreeIndexOrg::Update(TAny*,TInt,const TDesC8&) const
92 // Allow to be unimplemented. Return failure.