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 |
#if !defined(__S32BTREE_H__)
|
sl@0
|
17 |
#define __S32BTREE_H__
|
sl@0
|
18 |
#if !defined(__S32PAGE_H__)
|
sl@0
|
19 |
#include <s32page.h>
|
sl@0
|
20 |
#endif
|
sl@0
|
21 |
|
sl@0
|
22 |
const TInt KMaxBtreeHeight=16;
|
sl@0
|
23 |
/** Maximum length for a B-tree key. */
|
sl@0
|
24 |
const TInt KMaxBtreeKeyLength=255;
|
sl@0
|
25 |
//
|
sl@0
|
26 |
typedef TInt TBtreeHeight;
|
sl@0
|
27 |
/** Buffer to store the result of MBtreeKey::Between(). */
|
sl@0
|
28 |
typedef TBuf8<KMaxBtreeKeyLength> TBtreePivot;
|
sl@0
|
29 |
//
|
sl@0
|
30 |
enum TBtreeMode {EBtreeSecure,EBtreeFast};
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
* @publishedAll
|
sl@0
|
34 |
* @released
|
sl@0
|
35 |
* Encapsulates the persistent parameters for a TBtree.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
class TBtreeToken
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
/** Provides a TBtreeToken initialisation flag. */
|
sl@0
|
41 |
enum TEmpty {EEmpty};
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
/** Default constuctor. */
|
sl@0
|
44 |
TBtreeToken() {}
|
sl@0
|
45 |
inline TBtreeToken(TEmpty);
|
sl@0
|
46 |
inline void Touch();
|
sl@0
|
47 |
//
|
sl@0
|
48 |
inline TBool IsBroken() const;
|
sl@0
|
49 |
inline TBool IsIntact() const;
|
sl@0
|
50 |
inline TBool IsEmpty() const;
|
sl@0
|
51 |
//
|
sl@0
|
52 |
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
53 |
IMPORT_C void InternalizeL(RReadStream& aStream);
|
sl@0
|
54 |
protected:
|
sl@0
|
55 |
IMPORT_C void Clear();
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
inline TBtreeToken(TPageRef aFirst,TPageRef aRoot,TBtreeHeight aHeight);
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
TPageRef iFirst;
|
sl@0
|
60 |
TPageRef iRoot;
|
sl@0
|
61 |
TBtreeHeight iHeight;
|
sl@0
|
62 |
private:
|
sl@0
|
63 |
friend class TBtree;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
#define KEmptyBtreeToken TBtreeToken(TBtreeToken::EEmpty)
|
sl@0
|
66 |
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* @publishedAll
|
sl@0
|
69 |
* @released
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
class TBtreePath
|
sl@0
|
72 |
{
|
sl@0
|
73 |
public:
|
sl@0
|
74 |
inline TBtreePath();
|
sl@0
|
75 |
inline TPageRef Node() const;
|
sl@0
|
76 |
inline TInt Entry() const;
|
sl@0
|
77 |
inline TBool IsLeaf() const;
|
sl@0
|
78 |
inline TBtreeHeight End() const;
|
sl@0
|
79 |
inline void SetEntry(TInt aEntry);
|
sl@0
|
80 |
void GotoRoot(TBtreeHeight aHeight,TPageRef aRoot);
|
sl@0
|
81 |
void Push(TPageRef aRef,TInt aEntry=0);
|
sl@0
|
82 |
inline void Pop();
|
sl@0
|
83 |
private:
|
sl@0
|
84 |
TBtreeHeight iEnd;
|
sl@0
|
85 |
TPageRef iNodes[KMaxBtreeHeight];
|
sl@0
|
86 |
TUint8 iEntries[KMaxBtreeHeight];
|
sl@0
|
87 |
TUint8 iLasts[KMaxBtreeHeight];
|
sl@0
|
88 |
};
|
sl@0
|
89 |
|
sl@0
|
90 |
/**
|
sl@0
|
91 |
* @publishedAll
|
sl@0
|
92 |
* @released
|
sl@0
|
93 |
* Identifies a position in a B-tree.
|
sl@0
|
94 |
|
sl@0
|
95 |
The class has no public members. Clients use it by getting TBtreePos objects
|
sl@0
|
96 |
from some TBtree functions, and passing them into others.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
class TBtreePos
|
sl@0
|
99 |
{
|
sl@0
|
100 |
private:
|
sl@0
|
101 |
TBtreePath iPath;
|
sl@0
|
102 |
private:
|
sl@0
|
103 |
friend class TBtree;
|
sl@0
|
104 |
};
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
* @publishedAll
|
sl@0
|
108 |
* @released
|
sl@0
|
109 |
* An iterator for a B-tree.
|
sl@0
|
110 |
|
sl@0
|
111 |
Functions that use a TBtreeMark are faster than those that use a TBtreePos,
|
sl@0
|
112 |
and can be used with a broken B-tree.
|
sl@0
|
113 |
|
sl@0
|
114 |
The class has no public members. Clients use it by getting TBtreeMark objects
|
sl@0
|
115 |
from some TBtree functions, and passing them into others.
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
class TBtreeMark
|
sl@0
|
118 |
{
|
sl@0
|
119 |
private:
|
sl@0
|
120 |
TPageRef iLeaf;
|
sl@0
|
121 |
TPageRef iLink;
|
sl@0
|
122 |
TUint8 iEntry;
|
sl@0
|
123 |
TUint8 iLast;
|
sl@0
|
124 |
private:
|
sl@0
|
125 |
friend class TBtree;
|
sl@0
|
126 |
};
|
sl@0
|
127 |
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
* @publishedAll
|
sl@0
|
130 |
* @released
|
sl@0
|
131 |
* Interface for ordering and creating keys for entries in a B-tree.
|
sl@0
|
132 |
|
sl@0
|
133 |
Derived classes implement this interface for particular types of key.
|
sl@0
|
134 |
*/
|
sl@0
|
135 |
class MBtreeKey
|
sl@0
|
136 |
{
|
sl@0
|
137 |
public:
|
sl@0
|
138 |
virtual IMPORT_C const TAny* Key(const TAny* anEntry) const;
|
sl@0
|
139 |
|
sl@0
|
140 |
/** Orders two keys.
|
sl@0
|
141 |
|
sl@0
|
142 |
@param aLeft Pointer to first key
|
sl@0
|
143 |
@param aRight Pointer to second key
|
sl@0
|
144 |
@return Positive, if the first key is after the second key; negative, if
|
sl@0
|
145 |
the first key is before the second key; zero, if the keys are equal */
|
sl@0
|
146 |
virtual TInt Compare(const TAny* aLeft,const TAny* aRight) const=0;
|
sl@0
|
147 |
|
sl@0
|
148 |
/** Gets the midpoint between two keys.
|
sl@0
|
149 |
|
sl@0
|
150 |
The generated midpoint will be greater or equal to aLeft (by a comparison
|
sl@0
|
151 |
performed by the Compare() function), and less than aRight.
|
sl@0
|
152 |
|
sl@0
|
153 |
@param aLeft First key
|
sl@0
|
154 |
@param aRight Second key
|
sl@0
|
155 |
@param aPivot On return, the midpoint between the two keys */
|
sl@0
|
156 |
virtual void Between(const TAny* aLeft,const TAny* aRight,TBtreePivot& aPivot) const=0;
|
sl@0
|
157 |
};
|
sl@0
|
158 |
|
sl@0
|
159 |
class MBtreeNodeOrg;
|
sl@0
|
160 |
class MBtreeLeafOrg;
|
sl@0
|
161 |
class MBtreeIndexOrg;
|
sl@0
|
162 |
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
* @publishedAll
|
sl@0
|
165 |
* @released
|
sl@0
|
166 |
* Provides ordering of entries by key value in a B+-tree (balanced tree)
|
sl@0
|
167 |
structure.
|
sl@0
|
168 |
|
sl@0
|
169 |
Entries and keys are handled as untyped TAny* parameters. You specify an entry
|
sl@0
|
170 |
in the tree to manipulate through a position (TBtreePos) variable. You can
|
sl@0
|
171 |
also use iterator functions, which take a TBtreeMark, to move through entries
|
sl@0
|
172 |
in the tree. The tree's settings can be persisted using a TBtreeToken.
|
sl@0
|
173 |
|
sl@0
|
174 |
To use this class, you must provide a page pool, based on MPagePool, in which
|
sl@0
|
175 |
to store entries in the tree, and a key handler, based on MBtreeKey, to provide
|
sl@0
|
176 |
order and keys.
|
sl@0
|
177 |
|
sl@0
|
178 |
@see MBtreeKey
|
sl@0
|
179 |
@see MPagePool
|
sl@0
|
180 |
@see TBtreeMark
|
sl@0
|
181 |
@see TBtreePos
|
sl@0
|
182 |
@see TBtreeToken
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
class TBtree
|
sl@0
|
185 |
{
|
sl@0
|
186 |
public:
|
sl@0
|
187 |
/** Sets the condition for a successful match when calling TBtree::Find(). */
|
sl@0
|
188 |
enum TFind {
|
sl@0
|
189 |
/** Find the first entry greater than or equal to the search target. */
|
sl@0
|
190 |
EGreaterEqual,
|
sl@0
|
191 |
/** Find the first entry equal to the search target. */
|
sl@0
|
192 |
EEqualTo,
|
sl@0
|
193 |
/** Find the last entry less than the search target. */
|
sl@0
|
194 |
ELessThan,
|
sl@0
|
195 |
/** Find the first entry greater than the search target. */
|
sl@0
|
196 |
EGreaterThan,
|
sl@0
|
197 |
/** Find the last entry less than or equal to the search target. */
|
sl@0
|
198 |
ELessEqual};
|
sl@0
|
199 |
public:
|
sl@0
|
200 |
IMPORT_C TBtree(TBtreeMode aMode);
|
sl@0
|
201 |
IMPORT_C TBtree(const TBtreeToken& aToken,TBtreeMode aMode);
|
sl@0
|
202 |
IMPORT_C void Connect(MPagePool* aPool,const MBtreeKey* aKey,const MBtreeLeafOrg* aLeafOrg,const MBtreeIndexOrg* anIndexOrg);
|
sl@0
|
203 |
IMPORT_C void Set(const TBtreeToken& aToken,TBtreeMode aMode);
|
sl@0
|
204 |
IMPORT_C TBtreeToken Token() const;
|
sl@0
|
205 |
//
|
sl@0
|
206 |
inline TBool IsDirty() const;
|
sl@0
|
207 |
inline void MarkCurrent();
|
sl@0
|
208 |
inline void MarkDirty();
|
sl@0
|
209 |
//
|
sl@0
|
210 |
inline TBool IsBroken() const;
|
sl@0
|
211 |
inline TBool IsIntact() const;
|
sl@0
|
212 |
inline void MarkBroken();
|
sl@0
|
213 |
IMPORT_C TInt RepairL();
|
sl@0
|
214 |
//
|
sl@0
|
215 |
inline TBool IsEmpty() const;
|
sl@0
|
216 |
IMPORT_C void ClearL();
|
sl@0
|
217 |
//
|
sl@0
|
218 |
IMPORT_C TBool FirstL(TBtreePos& aPos) const;
|
sl@0
|
219 |
IMPORT_C TBool LastL(TBtreePos& aPos) const;
|
sl@0
|
220 |
IMPORT_C TBool NextL(TBtreePos& aPos) const;
|
sl@0
|
221 |
IMPORT_C TBool PreviousL(TBtreePos& aPos) const;
|
sl@0
|
222 |
//
|
sl@0
|
223 |
IMPORT_C TBool FindL(TBtreePos& aPos,const TAny* aKey,TFind aMode=EEqualTo) const;
|
sl@0
|
224 |
IMPORT_C TBool InsertL(TBtreePos& aPos,const TAny* anEntry,TInt aLength,TAllowDuplicates aDup=ENoDuplicates);
|
sl@0
|
225 |
IMPORT_C TBool DeleteL(const TAny* aKey);
|
sl@0
|
226 |
IMPORT_C void DeleteAtL(TBtreePos& aPos);
|
sl@0
|
227 |
IMPORT_C void ExtractAtL(const TBtreePos& aPos,TAny* anEntry,TInt aMaxLength) const;
|
sl@0
|
228 |
//
|
sl@0
|
229 |
IMPORT_C TBool ResetL(TBtreeMark& aMark) const;
|
sl@0
|
230 |
IMPORT_C TBool NextL(TBtreeMark& aMark) const;
|
sl@0
|
231 |
IMPORT_C void ExtractAtL(const TBtreeMark& aMark,TAny* anEntry,TInt aMaxLength) const;
|
sl@0
|
232 |
private:
|
sl@0
|
233 |
TBool AscendAtLastL(TBtreePath& aPath) const;
|
sl@0
|
234 |
TBool AscendAtFirstL(TBtreePath& aPath) const;
|
sl@0
|
235 |
void DescendFirstL(TBtreePath& aPath) const;
|
sl@0
|
236 |
void DescendLastL(TBtreePath& aPath) const;
|
sl@0
|
237 |
//
|
sl@0
|
238 |
TBool SearchL(TBtreePath& aPath,const TAny* aKey,TBool aAfter=EFalse) const;
|
sl@0
|
239 |
void NewPivot(const TAny* aLeftNode,const TAny* aRightNode,TBtreePivot& aPivot) const;
|
sl@0
|
240 |
void ReplacePivotL(TBtreePath& aPath,TAny* aNode,TBtreePivot& aPivot);
|
sl@0
|
241 |
void InsertAtL(TBtreePath& aPath,const TDesC8& anEntry);
|
sl@0
|
242 |
void InsertAtL(TBtreePath& aPath,TBtreePivot& aPivot,TPageRef aChild);
|
sl@0
|
243 |
TBool InsertAtL(TBtreePath& aPath,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPivot,TPageRef& aPromote);
|
sl@0
|
244 |
void DeleteAtL(TBtreePath& aPath);
|
sl@0
|
245 |
void DeleteIndexSetL();
|
sl@0
|
246 |
void DeleteIndexNodesL(TBtreePath& aPath,TBool aLeadingEdge);
|
sl@0
|
247 |
//
|
sl@0
|
248 |
void NewTreeL();
|
sl@0
|
249 |
void NewRootL();
|
sl@0
|
250 |
//
|
sl@0
|
251 |
void BeginUpdateL();
|
sl@0
|
252 |
void EndUpdate();
|
sl@0
|
253 |
inline void MarkIntact();
|
sl@0
|
254 |
void CheckIntactL() const;
|
sl@0
|
255 |
//
|
sl@0
|
256 |
inline TBool IsRoot(const TBtreePath& aPath) const;
|
sl@0
|
257 |
inline const MBtreeNodeOrg* NodeOrg(TBool aLeaf) const;
|
sl@0
|
258 |
void GotoRoot(TBtreePath& aPath) const;
|
sl@0
|
259 |
//
|
sl@0
|
260 |
TAny* GetNodeL(const TBtreePath& aPath) const;
|
sl@0
|
261 |
void PutNode(TAny* aNode,TBool aLeaf) const;
|
sl@0
|
262 |
//
|
sl@0
|
263 |
TInt LastEntryL(const TBtreePath& aPath) const;
|
sl@0
|
264 |
TPageRef ChildNodeL(const TBtreePath& aPath) const;
|
sl@0
|
265 |
TPageRef LastChildNodeL(TBtreePath& aPath) const;
|
sl@0
|
266 |
TPageRef ChildNodeL(TBtreePath& aPath,TInt aChild) const;
|
sl@0
|
267 |
private:
|
sl@0
|
268 |
enum {ESecure=EBtreeSecure,EFast=EBtreeFast,EBroken=0x40000000,EDirty=0x80000000};
|
sl@0
|
269 |
private:
|
sl@0
|
270 |
MPagePool* iPages;
|
sl@0
|
271 |
const MBtreeKey* iKey;
|
sl@0
|
272 |
const MBtreeLeafOrg* iLeafOrg;
|
sl@0
|
273 |
const MBtreeIndexOrg* iIndexOrg;
|
sl@0
|
274 |
TPageRef iFirst;
|
sl@0
|
275 |
TPageRef iRoot;
|
sl@0
|
276 |
TBtreeHeight iHeight;
|
sl@0
|
277 |
TInt iStatus;
|
sl@0
|
278 |
};
|
sl@0
|
279 |
|
sl@0
|
280 |
/**
|
sl@0
|
281 |
* @publishedAll
|
sl@0
|
282 |
* @released
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
class MBtreeNodeOrg
|
sl@0
|
285 |
{
|
sl@0
|
286 |
public:
|
sl@0
|
287 |
virtual IMPORT_C void Init(TAny* aNode) const;
|
sl@0
|
288 |
virtual TInt LastEntry(const TAny* aNode) const=0;
|
sl@0
|
289 |
virtual TPtrC8 Entry(const TAny* aNode,TInt aPos) const=0;
|
sl@0
|
290 |
virtual const TAny* EntryPtr(const TAny* aNode,TInt aPos) const=0;
|
sl@0
|
291 |
virtual TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const=0;
|
sl@0
|
292 |
virtual TBool Delete(TAny* aNode,TInt aPos) const=0;
|
sl@0
|
293 |
};
|
sl@0
|
294 |
|
sl@0
|
295 |
/**
|
sl@0
|
296 |
* @publishedAll
|
sl@0
|
297 |
* @released
|
sl@0
|
298 |
*/
|
sl@0
|
299 |
class MBtreeLeafOrg : public MBtreeNodeOrg
|
sl@0
|
300 |
{
|
sl@0
|
301 |
public:
|
sl@0
|
302 |
IMPORT_C TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const;
|
sl@0
|
303 |
virtual TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry) const=0;
|
sl@0
|
304 |
virtual IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry) const;
|
sl@0
|
305 |
virtual void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry) const=0;
|
sl@0
|
306 |
virtual TBool Redistribute(TAny* aLeftNode,TAny* aRightNode) const=0;
|
sl@0
|
307 |
virtual void Concatenate(TAny* aLeftNode,const TAny* aRightNode) const=0;
|
sl@0
|
308 |
virtual TPageRef LinkNode(const TAny* aNode) const=0;
|
sl@0
|
309 |
virtual void SetLinkNode(TAny* aNode,TPageRef aNextNode) const=0;
|
sl@0
|
310 |
};
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
* @publishedAll
|
sl@0
|
314 |
* @released
|
sl@0
|
315 |
*/
|
sl@0
|
316 |
class MBtreeIndexOrg : public MBtreeNodeOrg
|
sl@0
|
317 |
{
|
sl@0
|
318 |
public:
|
sl@0
|
319 |
IMPORT_C TBool Search(const TAny* aNode,const TAny* aKey,const MBtreeKey& aComp,TBool aLast,TInt& aPos) const;
|
sl@0
|
320 |
virtual TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild) const=0;
|
sl@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;
|
sl@0
|
322 |
virtual void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPromote) const=0;
|
sl@0
|
323 |
virtual IMPORT_C TBool Update(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
|
sl@0
|
324 |
virtual TBool Redistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot) const=0;
|
sl@0
|
325 |
virtual void Concatenate(TAny* aLeftNode,const TAny* aRightNode,const TDesC8& aPivot) const=0;
|
sl@0
|
326 |
virtual void MakeRoot(TAny* aNode,TPageRef aChild) const=0;
|
sl@0
|
327 |
virtual TPageRef ChildNode(const TAny* aNode,TInt aPos) const=0;
|
sl@0
|
328 |
};
|
sl@0
|
329 |
|
sl@0
|
330 |
/**
|
sl@0
|
331 |
* @publishedAll
|
sl@0
|
332 |
* @released
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
class TBtreeInlineLeafOrg : public MBtreeLeafOrg
|
sl@0
|
335 |
{
|
sl@0
|
336 |
public:
|
sl@0
|
337 |
IMPORT_C TBtreeInlineLeafOrg();
|
sl@0
|
338 |
IMPORT_C void SetEntrySize(TInt aSize);
|
sl@0
|
339 |
//
|
sl@0
|
340 |
IMPORT_C TInt LastEntry(const TAny* aNode) const;
|
sl@0
|
341 |
IMPORT_C TPtrC8 Entry(const TAny* aNode,TInt aPos) const;
|
sl@0
|
342 |
IMPORT_C const TAny* EntryPtr(const TAny* aNode,TInt aPos) const;
|
sl@0
|
343 |
IMPORT_C TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
|
sl@0
|
344 |
IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry) const;
|
sl@0
|
345 |
IMPORT_C void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry) const;
|
sl@0
|
346 |
IMPORT_C TBool Delete(TAny* aNode,TInt aPos) const;
|
sl@0
|
347 |
IMPORT_C TBool Redistribute(TAny* aLeftNode,TAny* aRightNode) const;
|
sl@0
|
348 |
IMPORT_C void Concatenate(TAny* aLeftNode,const TAny* aRightNode) const;
|
sl@0
|
349 |
IMPORT_C TPageRef LinkNode(const TAny* aNode) const;
|
sl@0
|
350 |
IMPORT_C void SetLinkNode(TAny* aNode,TPageRef aNextNode) const;
|
sl@0
|
351 |
private:
|
sl@0
|
352 |
TAny* DoRedistribute(TAny* aLeftNode,TAny* aRightNode,TInt aInsertPos=-1) const;
|
sl@0
|
353 |
struct SHeader
|
sl@0
|
354 |
{
|
sl@0
|
355 |
TInt32 iCount;
|
sl@0
|
356 |
TPageRef iLink;
|
sl@0
|
357 |
};
|
sl@0
|
358 |
struct SNode
|
sl@0
|
359 |
{
|
sl@0
|
360 |
SHeader iHead;
|
sl@0
|
361 |
TUint8 iEntries[KPoolPageSize-sizeof(SHeader)];
|
sl@0
|
362 |
};
|
sl@0
|
363 |
private:
|
sl@0
|
364 |
inline static const SNode* Node(const TAny* aNode);
|
sl@0
|
365 |
inline static SNode* Node(TAny* aNode);
|
sl@0
|
366 |
inline const TUint8* Entry(const SNode* aNode,TInt anEntry) const;
|
sl@0
|
367 |
inline TUint8* Entry(SNode* aNode,TInt anEntry) const;
|
sl@0
|
368 |
private:
|
sl@0
|
369 |
TInt iEntrySize;
|
sl@0
|
370 |
TInt iMaxEntries;
|
sl@0
|
371 |
};
|
sl@0
|
372 |
|
sl@0
|
373 |
/**
|
sl@0
|
374 |
* @publishedAll
|
sl@0
|
375 |
* @released
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
class TBtreeInlineIndexOrg : public MBtreeIndexOrg
|
sl@0
|
378 |
{
|
sl@0
|
379 |
public:
|
sl@0
|
380 |
IMPORT_C TBtreeInlineIndexOrg();
|
sl@0
|
381 |
IMPORT_C void SetEntrySize(TInt aSize);
|
sl@0
|
382 |
//
|
sl@0
|
383 |
IMPORT_C TBool Insert(TAny* aNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild) const;
|
sl@0
|
384 |
IMPORT_C TBool InsertOverflow(TAny* aLeftNode,TAny* aRightNode,TInt aPos,TBool aInsertOnLeft,const TDesC8& anEntry,TPageRef aChild,const TDesC8& aPivot,TBtreePivot& aNewPivot) const;
|
sl@0
|
385 |
IMPORT_C void InsertSplit(TAny* aLeftNode,TAny* aRightNode,TInt aPos,const TDesC8& anEntry,TPageRef aChild,TBtreePivot& aPromote) const;
|
sl@0
|
386 |
IMPORT_C TBool Update(TAny* aNode,TInt aPos,const TDesC8& anEntry) const;
|
sl@0
|
387 |
IMPORT_C TBool Delete(TAny* aNode,TInt aPos) const;
|
sl@0
|
388 |
IMPORT_C TBool Redistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot) const;
|
sl@0
|
389 |
IMPORT_C void Concatenate(TAny* aLeftNode,const TAny* aRightNode,const TDesC8& aPivot) const;
|
sl@0
|
390 |
|
sl@0
|
391 |
IMPORT_C void MakeRoot(TAny* aNode,TPageRef aChild) const;
|
sl@0
|
392 |
IMPORT_C TInt LastEntry(const TAny* aNode) const;
|
sl@0
|
393 |
IMPORT_C TPtrC8 Entry(const TAny* aNode,TInt aPos) const;
|
sl@0
|
394 |
IMPORT_C const TAny* EntryPtr(const TAny* aNode,TInt aPos) const;
|
sl@0
|
395 |
IMPORT_C TPageRef ChildNode(const TAny* aNode,TInt aPos) const;
|
sl@0
|
396 |
private:
|
sl@0
|
397 |
struct SEntry
|
sl@0
|
398 |
{
|
sl@0
|
399 |
TPageRef iChild;
|
sl@0
|
400 |
TUint8 iKey[4]; // at least four bytes of key
|
sl@0
|
401 |
};
|
sl@0
|
402 |
struct SHeader
|
sl@0
|
403 |
{
|
sl@0
|
404 |
TInt32 iCount;
|
sl@0
|
405 |
};
|
sl@0
|
406 |
struct SNode
|
sl@0
|
407 |
{
|
sl@0
|
408 |
SHeader iHead;
|
sl@0
|
409 |
TUint8 iEntries[KPoolPageSize-sizeof(SHeader)];
|
sl@0
|
410 |
};
|
sl@0
|
411 |
SNode* DoRedistribute(TAny* aLeftNode,TAny* aRightNode,const TDesC8& aPivot,TBtreePivot& aNewPivot,TInt aInsertPos=-1) const;
|
sl@0
|
412 |
private:
|
sl@0
|
413 |
inline static const SNode* Node(const TAny* aNode);
|
sl@0
|
414 |
inline static SNode* Node(TAny* aNode);
|
sl@0
|
415 |
inline const SEntry* Entry(const SNode* aNode,TInt anEntry) const;
|
sl@0
|
416 |
inline SEntry* Entry(SNode* aNode,TInt anEntry) const;
|
sl@0
|
417 |
inline TInt KeySize() const;
|
sl@0
|
418 |
private:
|
sl@0
|
419 |
TInt iEntrySize;
|
sl@0
|
420 |
TInt iMaxEntries;
|
sl@0
|
421 |
};
|
sl@0
|
422 |
|
sl@0
|
423 |
/**
|
sl@0
|
424 |
* @publishedAll
|
sl@0
|
425 |
* @released
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
class TBtreeKey : public MBtreeKey
|
sl@0
|
428 |
{
|
sl@0
|
429 |
public:
|
sl@0
|
430 |
IMPORT_C TBtreeKey();
|
sl@0
|
431 |
IMPORT_C TBtreeKey(TInt aLength);
|
sl@0
|
432 |
IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpText aType);
|
sl@0
|
433 |
IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpText aType,TInt aLength);
|
sl@0
|
434 |
IMPORT_C TBtreeKey(TInt anOffset,TKeyCmpNumeric aType);
|
sl@0
|
435 |
//
|
sl@0
|
436 |
IMPORT_C const TAny* Key(const TAny* anEntry) const;
|
sl@0
|
437 |
IMPORT_C TInt Compare(const TAny* aLeft,const TAny* aRight) const;
|
sl@0
|
438 |
IMPORT_C void Between(const TAny* aLeft,const TAny* aRight,TBtreePivot& aPivot) const;
|
sl@0
|
439 |
protected:
|
sl@0
|
440 |
TInt iKeyOffset;
|
sl@0
|
441 |
TInt iCmpType;
|
sl@0
|
442 |
TInt iKeyLength;
|
sl@0
|
443 |
};
|
sl@0
|
444 |
|
sl@0
|
445 |
/**
|
sl@0
|
446 |
* @publishedAll
|
sl@0
|
447 |
* @released
|
sl@0
|
448 |
* Base class for TBtreeFix, which provides a B-tree for fixed sized entries.
|
sl@0
|
449 |
*/
|
sl@0
|
450 |
class TBtreeFixBase : public TBtree
|
sl@0
|
451 |
{
|
sl@0
|
452 |
public:
|
sl@0
|
453 |
IMPORT_C void Connect(MPagePool* aPool,const MBtreeKey* aKey);
|
sl@0
|
454 |
IMPORT_C TBool InsertL(TBtreePos& aPos,const TAny* anEntry,TAllowDuplicates aDup=ENoDuplicates);
|
sl@0
|
455 |
IMPORT_C void ExtractAtL(const TBtreePos& aPos,TAny* anEntry) const;
|
sl@0
|
456 |
IMPORT_C void ExtractAtL(const TBtreeMark& aMark,TAny* anEntry) const;
|
sl@0
|
457 |
protected:
|
sl@0
|
458 |
IMPORT_C TBtreeFixBase(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
|
sl@0
|
459 |
IMPORT_C TBtreeFixBase(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
|
sl@0
|
460 |
private:
|
sl@0
|
461 |
TInt iEntrySize;
|
sl@0
|
462 |
TBtreeInlineLeafOrg iLeafOrgFix;
|
sl@0
|
463 |
TBtreeInlineIndexOrg iIndexOrgFix;
|
sl@0
|
464 |
};
|
sl@0
|
465 |
|
sl@0
|
466 |
/**
|
sl@0
|
467 |
* @publishedAll
|
sl@0
|
468 |
* @released
|
sl@0
|
469 |
* A B-tree for fixed-sized keys and entries.
|
sl@0
|
470 |
|
sl@0
|
471 |
Entry is the type of entry to store. Key defines how items should be ordered:
|
sl@0
|
472 |
there must be a member of this type in the Entry class.
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
template <class Entry,class Key>
|
sl@0
|
475 |
class TBtreeFix : public TBtreeFixBase
|
sl@0
|
476 |
{
|
sl@0
|
477 |
public:
|
sl@0
|
478 |
inline TBtreeFix(TBtreeMode aMode);
|
sl@0
|
479 |
inline TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode);
|
sl@0
|
480 |
//
|
sl@0
|
481 |
inline TBool FindL(TBtreePos& aPos,const Key& aKey,TFind aMode=EEqualTo) const;
|
sl@0
|
482 |
inline TBool InsertL(TBtreePos& aPos,const Entry& anEntry,TAllowDuplicates aDup=ENoDuplicates);
|
sl@0
|
483 |
inline TBool DeleteL(const Key& aKey);
|
sl@0
|
484 |
//
|
sl@0
|
485 |
inline Entry AtL(const TBtreePos& aPos) const;
|
sl@0
|
486 |
inline Entry AtL(const TBtreeMark& aMark) const;
|
sl@0
|
487 |
inline void ExtractAtL(const TBtreePos& aPos,Entry& anEntry) const;
|
sl@0
|
488 |
inline void ExtractAtL(const TBtreeMark& aMark,Entry& anEntry) const;
|
sl@0
|
489 |
};
|
sl@0
|
490 |
|
sl@0
|
491 |
/**
|
sl@0
|
492 |
* @publishedAll
|
sl@0
|
493 |
* @released
|
sl@0
|
494 |
* A specialisation of the B-tree for untyped fixed sized items.
|
sl@0
|
495 |
*/
|
sl@0
|
496 |
TEMPLATE_SPECIALIZATION class TBtreeFix<TAny,TAny> : public TBtreeFixBase
|
sl@0
|
497 |
{
|
sl@0
|
498 |
public:
|
sl@0
|
499 |
inline TBtreeFix(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
|
sl@0
|
500 |
inline TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize);
|
sl@0
|
501 |
};
|
sl@0
|
502 |
|
sl@0
|
503 |
#include <s32btree.inl>
|
sl@0
|
504 |
#endif
|