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 |
// Class TBtreeToken
|
sl@0
|
17 |
inline TBtreeToken::TBtreeToken(TEmpty)
|
sl@0
|
18 |
/** Constructor that intialises the TBtreeToken for an empty B-tree.
|
sl@0
|
19 |
|
sl@0
|
20 |
@param Intialises for an empty B-tree */
|
sl@0
|
21 |
{Clear();}
|
sl@0
|
22 |
inline void TBtreeToken::Touch()
|
sl@0
|
23 |
/** Marks the B-tree as broken. */
|
sl@0
|
24 |
{iHeight=0;}
|
sl@0
|
25 |
inline TBool TBtreeToken::IsBroken() const
|
sl@0
|
26 |
/** Tests if the broken flag has been set on the B-tree.
|
sl@0
|
27 |
|
sl@0
|
28 |
@return True if the B-tree is broken, otherwise false. */
|
sl@0
|
29 |
{return iFirst!=KNullPageRef&&iHeight==0;}
|
sl@0
|
30 |
inline TBool TBtreeToken::IsIntact() const
|
sl@0
|
31 |
/** Tests if the broken flag has not been set on the B-tree .
|
sl@0
|
32 |
|
sl@0
|
33 |
@return True if the B-tree is not broken, otherwise false. */
|
sl@0
|
34 |
{return iFirst==KNullPageRef||iHeight!=0;}
|
sl@0
|
35 |
inline TBool TBtreeToken::IsEmpty() const
|
sl@0
|
36 |
/** Tests if the B-tree is empty.
|
sl@0
|
37 |
|
sl@0
|
38 |
@return True if the B-tree is empty, otherwise false. */
|
sl@0
|
39 |
{return iFirst==KNullPageRef;}
|
sl@0
|
40 |
|
sl@0
|
41 |
// Class TBtreePath
|
sl@0
|
42 |
inline TBtreePath::TBtreePath()
|
sl@0
|
43 |
: iEnd(-1)
|
sl@0
|
44 |
{}
|
sl@0
|
45 |
inline TPageRef TBtreePath::Node() const
|
sl@0
|
46 |
{return iNodes[iEnd];}
|
sl@0
|
47 |
inline TInt TBtreePath::Entry() const
|
sl@0
|
48 |
{return iEntries[iEnd];}
|
sl@0
|
49 |
inline TBool TBtreePath::IsLeaf() const
|
sl@0
|
50 |
{return iEnd==0;}
|
sl@0
|
51 |
inline TBtreeHeight TBtreePath::End() const
|
sl@0
|
52 |
{return iEnd;}
|
sl@0
|
53 |
inline void TBtreePath::SetEntry(TInt aEntry)
|
sl@0
|
54 |
{iEntries[iEnd]=TUint8(aEntry);}
|
sl@0
|
55 |
inline void TBtreePath::Pop()
|
sl@0
|
56 |
{++iEnd;}
|
sl@0
|
57 |
|
sl@0
|
58 |
// Class TBtree
|
sl@0
|
59 |
inline TBool TBtree::IsDirty() const
|
sl@0
|
60 |
/** Tests if the dirty flag has been set on the B-tree.
|
sl@0
|
61 |
|
sl@0
|
62 |
Any updates to the B-tree will set this flag on the TBtree object. Applications
|
sl@0
|
63 |
can use this to determine if they need to flush the page pool and re-save
|
sl@0
|
64 |
the B-tree token, after which they can call MarkCurrent() to indicate that
|
sl@0
|
65 |
the persistent storage is now up-to-date with the TBtree object.
|
sl@0
|
66 |
|
sl@0
|
67 |
@return True if the dirty flag has been set, otherwise false */
|
sl@0
|
68 |
{return iStatus<0;}
|
sl@0
|
69 |
inline void TBtree::MarkCurrent()
|
sl@0
|
70 |
/** Clears the dirty flag. */
|
sl@0
|
71 |
{iStatus&=~EDirty;}
|
sl@0
|
72 |
inline void TBtree::MarkDirty()
|
sl@0
|
73 |
/** Sets the dirty flag. */
|
sl@0
|
74 |
{iStatus|=EDirty;}
|
sl@0
|
75 |
inline TBool TBtree::IsBroken() const
|
sl@0
|
76 |
/** Tests if the broken flag has been set on the B-tree.
|
sl@0
|
77 |
|
sl@0
|
78 |
Any updates to the B-tree that fail will leave this flag set on the TBtree
|
sl@0
|
79 |
object. This indicates that the persistent tree data is broken (corrupt) and
|
sl@0
|
80 |
the tree needs to be repaired. In this state, none of the functions which
|
sl@0
|
81 |
use a TBtreePos will work, only those taking a TBtreeMark.
|
sl@0
|
82 |
|
sl@0
|
83 |
@return True if the B-tree is broken, otherwise false. */
|
sl@0
|
84 |
{return (iStatus&EBroken)!=0;}
|
sl@0
|
85 |
inline TBool TBtree::IsIntact() const
|
sl@0
|
86 |
/** Tests if the broken flag has not been set on the B-tree .
|
sl@0
|
87 |
|
sl@0
|
88 |
@return True if the B-tree is not broken, otherwise false. */
|
sl@0
|
89 |
{return (iStatus&EBroken)==0;}
|
sl@0
|
90 |
inline void TBtree::MarkBroken()
|
sl@0
|
91 |
/** Sets the broken flag. */
|
sl@0
|
92 |
{if (iFirst!=KNullPageRef) iStatus|=EBroken;}
|
sl@0
|
93 |
inline TBool TBtree::IsEmpty() const
|
sl@0
|
94 |
/** Tests if the B-tree is empty.
|
sl@0
|
95 |
|
sl@0
|
96 |
@return True if the B-tree is empty, otherwise false */
|
sl@0
|
97 |
{return iFirst==KNullPageRef;}
|
sl@0
|
98 |
|
sl@0
|
99 |
// Template class TBtreeFix
|
sl@0
|
100 |
template <class Entry,class Key>
|
sl@0
|
101 |
inline TBtreeFix<Entry,Key>::TBtreeFix(TBtreeMode aMode)
|
sl@0
|
102 |
: TBtreeFixBase(aMode,sizeof(Entry),sizeof(Key))
|
sl@0
|
103 |
/** Constructor that sets the B-tree mode.
|
sl@0
|
104 |
|
sl@0
|
105 |
@param aMode B-tree operating mode */
|
sl@0
|
106 |
{}
|
sl@0
|
107 |
template <class Entry,class Key>
|
sl@0
|
108 |
inline TBtreeFix<Entry,Key>::TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode)
|
sl@0
|
109 |
: TBtreeFixBase(aToken,aMode,sizeof(Entry),sizeof(Key))
|
sl@0
|
110 |
/** Constructor that sets the B-tree mode and initialisation parameters.
|
sl@0
|
111 |
|
sl@0
|
112 |
@param aToken Parameters with which to initialise the B-tree
|
sl@0
|
113 |
@param aMode B-tree operating mode */
|
sl@0
|
114 |
{}
|
sl@0
|
115 |
template <class Entry,class Key>
|
sl@0
|
116 |
inline TBool TBtreeFix<Entry,Key>::FindL(TBtreePos& aPos,const Key& aKey,TBtree::TFind aMode) const
|
sl@0
|
117 |
{return TBtreeFixBase::FindL(aPos,&aKey,aMode);}
|
sl@0
|
118 |
template <class Entry,class Key>
|
sl@0
|
119 |
inline TBool TBtreeFix<Entry,Key>::InsertL(TBtreePos& aPos,const Entry& anEntry,TAllowDuplicates aDup)
|
sl@0
|
120 |
/** Inserts an entry into the tree.
|
sl@0
|
121 |
|
sl@0
|
122 |
@param aPos On return, the position of the entry inserted
|
sl@0
|
123 |
@param anEntry Entry to insert
|
sl@0
|
124 |
@param aDup Flag to indicate whether duplicate entries are allowed in the tree
|
sl@0
|
125 |
@return True if successful, false if the entry was a duplicate and aDup was
|
sl@0
|
126 |
set to ENoDuplicates */
|
sl@0
|
127 |
{return TBtreeFixBase::InsertL(aPos,&anEntry,aDup);}
|
sl@0
|
128 |
template <class Entry,class Key>
|
sl@0
|
129 |
inline TBool TBtreeFix<Entry,Key>::DeleteL(const Key& aKey)
|
sl@0
|
130 |
/** Delete an entry.
|
sl@0
|
131 |
|
sl@0
|
132 |
@param aKey Key of the entry to delete
|
sl@0
|
133 |
@return True if successful, false if the entry was not found */
|
sl@0
|
134 |
{return TBtreeFixBase::DeleteL(&aKey);}
|
sl@0
|
135 |
template <class Entry,class Key>
|
sl@0
|
136 |
inline Entry TBtreeFix<Entry,Key>::AtL(const TBtreePos& aPos) const
|
sl@0
|
137 |
/** Gets the entry at the specified position.
|
sl@0
|
138 |
|
sl@0
|
139 |
@param aPos Position of the entry to get
|
sl@0
|
140 |
@return Entry at position aPos */
|
sl@0
|
141 |
{Entry e;TBtreeFixBase::ExtractAtL(aPos,&e);return e;}
|
sl@0
|
142 |
template <class Entry,class Key>
|
sl@0
|
143 |
inline Entry TBtreeFix<Entry,Key>::AtL(const TBtreeMark& aMark) const
|
sl@0
|
144 |
/** Gets the entry at the specified iterator position.
|
sl@0
|
145 |
|
sl@0
|
146 |
@param aMark Iterator to use to get the entry
|
sl@0
|
147 |
@return Entry at current iterator position */
|
sl@0
|
148 |
{Entry e;TBtreeFixBase::ExtractAtL(aMark,&e);return e;}
|
sl@0
|
149 |
template <class Entry,class Key>
|
sl@0
|
150 |
inline void TBtreeFix<Entry,Key>::ExtractAtL(const TBtreePos& aPos,Entry& anEntry) const
|
sl@0
|
151 |
/** Gets the entry at the specified position.
|
sl@0
|
152 |
|
sl@0
|
153 |
@param aPos Position of the entry to get
|
sl@0
|
154 |
@param anEntry On return, the specified entry */
|
sl@0
|
155 |
{TBtreeFixBase::ExtractAtL(aPos,&anEntry);}
|
sl@0
|
156 |
template <class Entry,class Key>
|
sl@0
|
157 |
inline void TBtreeFix<Entry,Key>::ExtractAtL(const TBtreeMark& aMark,Entry& anEntry) const
|
sl@0
|
158 |
/** Gets the entry at the specified iterator position.
|
sl@0
|
159 |
|
sl@0
|
160 |
@param aMark Iterator to use to get the entry
|
sl@0
|
161 |
@param anEntry On return, the specified entry */
|
sl@0
|
162 |
{TBtreeFixBase::ExtractAtL(aMark,&anEntry);}
|
sl@0
|
163 |
inline TBtreeFix<TAny,TAny>::TBtreeFix(TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
|
sl@0
|
164 |
: TBtreeFixBase(aMode,anEntrySize,aKeySize)
|
sl@0
|
165 |
/** Constructor that sets the B-tree mode.
|
sl@0
|
166 |
|
sl@0
|
167 |
@param aMode B-tree operating mode
|
sl@0
|
168 |
@param anEntrySize Entry size
|
sl@0
|
169 |
@param aKeySize Key size for entries */
|
sl@0
|
170 |
{}
|
sl@0
|
171 |
inline TBtreeFix<TAny,TAny>::TBtreeFix(const TBtreeToken& aToken,TBtreeMode aMode,TInt anEntrySize,TInt aKeySize)
|
sl@0
|
172 |
: TBtreeFixBase(aToken,aMode,anEntrySize,aKeySize)
|
sl@0
|
173 |
/** Constructor that sets the B-tree mode and initialisation parameters.
|
sl@0
|
174 |
|
sl@0
|
175 |
@param aToken Parameters with which to initialise the B-tree
|
sl@0
|
176 |
@param aMode B-tree operating mode
|
sl@0
|
177 |
@param anEntrySize Entry size
|
sl@0
|
178 |
@param aKeySize Key size for entries */
|
sl@0
|
179 |
{}
|
sl@0
|
180 |
|