Update contrib.
1 // Copyright (c) 2003-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.
26 const TUint16* tuint16;
27 const TUint32* tuint32;
30 EXPORT_C const TAny* MBtreeKey::Key(const TAny* anEntry) const
31 /** Gets the key value for an entry.
33 @param anEntry Object for which to get the key value
34 @return Pointer to the key value */
39 EXPORT_C TBtreeKey::TBtreeKey(TInt aLength)
41 // Discriminating key. Does a raw memory comparison on given length
43 : iKeyOffset(0),iCmpType(ECmpNormal8),iKeyLength(aLength)
46 EXPORT_C TBtreeKey::TBtreeKey()
48 // Discriminating key. Does a raw memory comparison on variable length (byte counted)
50 : iKeyOffset(0),iCmpType(ECmpCollated16+1+ECmpNormal8)
53 EXPORT_C TBtreeKey::TBtreeKey(TInt anOffset,TKeyCmpText aType)
55 // Used to specify a variable length text key, the first character is a count of the actual character data that follows
57 : iKeyOffset(anOffset),iCmpType(ECmpCollated16+aType+1)
64 Panic(EInvalidKeyComparison);
70 EXPORT_C TBtreeKey::TBtreeKey(TInt anOffset,TKeyCmpText aType,TInt aLength)
72 // Used for fixed length charecter data. the length is the character count, not the byte size
74 : iKeyOffset(anOffset),iCmpType(aType),iKeyLength(aLength)
81 Panic(EInvalidKeyComparison);
87 EXPORT_C TBtreeKey::TBtreeKey(TInt anOffset,TKeyCmpNumeric aType)
88 : iKeyOffset(anOffset),iCmpType(aType)
94 Panic(EInvalidKeyComparison);
100 EXPORT_C const TAny* TBtreeKey::Key(const TAny* anEntry) const
102 return PtrAdd(anEntry,iKeyOffset);
105 EXPORT_C TInt TBtreeKey::Compare(const TAny* aLeft,const TAny* aRight) const
107 // do the right thing
117 return Mem::Compare(left.tuint8,iKeyLength,right.tuint8,iKeyLength);
119 return Mem::CompareF(left.tuint8,iKeyLength,right.tuint8,iKeyLength);
121 return Mem::CompareC(left.tuint8,iKeyLength,right.tuint8,iKeyLength);
123 return Mem::Compare(left.tuint16,iKeyLength,right.tuint16,iKeyLength);
125 return Mem::CompareF(left.tuint16,iKeyLength,right.tuint16,iKeyLength);
127 return Mem::CompareC(left.tuint16,iKeyLength,right.tuint16,iKeyLength);
128 case ECmpCollated16+ECmpNormal8+1:
129 return Mem::Compare(left.tuint8+1,*left.tuint8,right.tuint8+1,*right.tuint8);
130 case ECmpCollated16+ECmpFolded8+1:
131 return Mem::CompareF(left.tuint8+1,*left.tuint8,right.tuint8+1,*right.tuint8);
132 case ECmpCollated16+ECmpCollated8+1:
133 return Mem::CompareC(left.tuint8+1,*left.tuint8,right.tuint8+1,*right.tuint8);
134 case ECmpCollated16+ECmpNormal16+1:
135 return Mem::Compare(left.tuint16+1,*left.tuint16,right.tuint16+1,*right.tuint16);
136 case ECmpCollated16+ECmpFolded16+1:
137 return Mem::CompareF(left.tuint16+1,*left.tuint16,right.tuint16+1,*right.tuint16);
138 case ECmpCollated16+ECmpCollated16+1:
139 return Mem::CompareC(left.tuint16+1,*left.tuint16,right.tuint16+1,*right.tuint16);
141 return *left.tint8-*right.tint8;
143 return TInt(*left.tuint8)-TInt(*right.tuint8);
145 return *left.tint16-*right.tint16;
147 return TInt(*left.tuint16)-TInt(*right.tuint16);
149 if (*left.tint32<*right.tint32)
151 if (*left.tint32>*right.tint32)
155 if (*left.tuint32<*right.tuint32)
157 if (*left.tuint32>*right.tuint32)
161 if (*left.tint64<*right.tint64)
163 if (*left.tint64>*right.tint64)
172 EXPORT_C void TBtreeKey::Between(const TAny* aLeft,const TAny* /*aRight*/,TBtreePivot& aPivot) const
174 //#pragma message( __FILE__ " : 'TBtreeKey::Between()' whizzy pivot generation not implemented" )
177 // UPTR right=(UPTR)aRight;
183 aPivot.Copy(left.tuint8,iKeyLength);
188 aPivot.Copy(left.tuint8,iKeyLength<<1);
190 case ECmpCollated16+ECmpNormal8+1:
191 case ECmpCollated16+ECmpFolded8+1:
192 case ECmpCollated16+ECmpCollated8+1:
193 aPivot.Copy(left.tuint8,1+*left.tuint8); // include length count
195 case ECmpCollated16+ECmpNormal16+1:
196 case ECmpCollated16+ECmpFolded16+1:
197 case ECmpCollated16+ECmpCollated16+1:
198 aPivot.Copy(left.tuint8,(1+*left.tuint16)<<1); // include length count
201 aPivot.Copy(left.tuint8,sizeof(TInt8));
204 aPivot.Copy(left.tuint8,sizeof(TUint8));
207 aPivot.Copy(left.tuint8,sizeof(TInt16));
210 aPivot.Copy(left.tuint8,sizeof(TUint16));
213 aPivot.Copy(left.tuint8,sizeof(TInt16));
216 aPivot.Copy(left.tuint8,sizeof(TUint32));
219 aPivot.Copy(left.tuint8,sizeof(TInt64));