sl@0
|
1 |
// Copyright (c) 2004-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 |
// RMap template class implementation.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
|
sl@0
|
20 |
Template function that compares two objects of type TPair<KEY, DATA> and
|
sl@0
|
21 |
returns {negative, 0, positive} depending on the comparison result.
|
sl@0
|
22 |
In order the comparison to work, the KEY template parameter has to have
|
sl@0
|
23 |
"-" operation defined - either native or overloaded "-" operator.
|
sl@0
|
24 |
Used by RMap<KEY, DATA> template class.
|
sl@0
|
25 |
Note: This template function works only on objects, which have defined a "-" operation.
|
sl@0
|
26 |
@param aLeft The first TPair<KEY, DATA> to be compared
|
sl@0
|
27 |
@param aRight The second TPair<KEY, DATA> to be compared
|
sl@0
|
28 |
@return An integer value, which is:
|
sl@0
|
29 |
0, if the objects are equal;
|
sl@0
|
30 |
negative number, the first object is bigger than the second object
|
sl@0
|
31 |
positive number, the first object is smaller than the second object
|
sl@0
|
32 |
@internalComponent
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
template <class KEY, class DATA>
|
sl@0
|
35 |
TInt Compare(const TPair<KEY, DATA>& aLeft, const TPair<KEY, DATA>& aRight)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
return aRight.iKey - aLeft.iKey;
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
@param aKey Key part of TPair object
|
sl@0
|
42 |
@param aData Data part of TPair object
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
template <class KEY, class DATA>
|
sl@0
|
45 |
TPair<KEY, DATA>::TPair(const KEY& aKey, const DATA& aData) :
|
sl@0
|
46 |
iKey(aKey),
|
sl@0
|
47 |
iData(aData)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
@param aKey Key part of TPair object
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
template <class KEY, class DATA>
|
sl@0
|
55 |
TPair<KEY, DATA>::TPair(const KEY& aKey) :
|
sl@0
|
56 |
iKey(aKey)
|
sl@0
|
57 |
{
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
template <class KEY, class DATA>
|
sl@0
|
63 |
TPair<KEY, DATA>::TPair()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
@param aOrder An object of TLinearOrder< TPair<KEY, DATA> type, which will be used when
|
sl@0
|
69 |
new elements are inserted into the collection.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
template <class KEY, class DATA>
|
sl@0
|
72 |
RMap<KEY, DATA>::RMap(const TLinearOrder< TPair<KEY, DATA> >& aOrder) :
|
sl@0
|
73 |
iOrder(aOrder)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
Closes RMap instance and destroy all RMap data.
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
template <class KEY, class DATA>
|
sl@0
|
81 |
void RMap<KEY, DATA>::Close()
|
sl@0
|
82 |
{
|
sl@0
|
83 |
iCol.Close();
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
/**
|
sl@0
|
87 |
This method will create and insert new (KEY, DATA) pair in the map.
|
sl@0
|
88 |
If the operation fails, the method will return some of system wide error codes.
|
sl@0
|
89 |
RMap instance does not allow duplicated TPair objects in the collection.
|
sl@0
|
90 |
Actually it dependes on the supplied in the constructor aOrder instance.
|
sl@0
|
91 |
@param aKey The key part of TPair object, which will be inserted
|
sl@0
|
92 |
@param aData The data part of TPair object, which will be inserted
|
sl@0
|
93 |
@return KErrNone if successful, otherwise one of the system-wide error codes
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
template <class KEY, class DATA>
|
sl@0
|
96 |
TInt RMap<KEY, DATA>::Insert(const KEY& aKey, const DATA& aData)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return iCol.InsertInOrder(TPair<KEY, DATA>(aKey, aData), iOrder);
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
/**
|
sl@0
|
102 |
This method removes an element with aKey key from the map.
|
sl@0
|
103 |
If there is no such element in the map, the debug verison of the method will panic.
|
sl@0
|
104 |
The destructor of the object, which is about to be removed, is not called.
|
sl@0
|
105 |
@param aKey The key of TPair object, which has to be removed from the collection.
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
template <class KEY, class DATA>
|
sl@0
|
108 |
void RMap<KEY, DATA>::Remove(const KEY& aKey)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
|
sl@0
|
111 |
index != KErrNotFound ? iCol.Remove(index) : __ASSERT(0);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
/**
|
sl@0
|
115 |
This method performs a search for an element with aKey key in the map.
|
sl@0
|
116 |
If such element exists, the method will return a const reference to the element's data.
|
sl@0
|
117 |
If not, then the method will panic.
|
sl@0
|
118 |
@param aKey The key of TPair object, a reference to which DATA will be returned
|
sl@0
|
119 |
@return A const reference to the matching DATA object.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
template <class KEY, class DATA>
|
sl@0
|
122 |
const DATA& RMap<KEY, DATA>::operator[](const KEY& aKey) const
|
sl@0
|
123 |
{
|
sl@0
|
124 |
TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
|
sl@0
|
125 |
__ASSERT_ALWAYS(index != KErrNotFound, User::Invariant());
|
sl@0
|
126 |
return iCol[index].iData;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
This method performs a search for an element with aKey key in the map.
|
sl@0
|
131 |
If such element exists, the method will set the element's data in aData parameter and
|
sl@0
|
132 |
return KErrNone.
|
sl@0
|
133 |
If not, then the method will return KErrNotFound.
|
sl@0
|
134 |
@param aKey The key of TPair object, a reference to which DATA will be returned in aData
|
sl@0
|
135 |
parameter, if found
|
sl@0
|
136 |
@param aData An output parameter, it references the location, where the found data will be stored.
|
sl@0
|
137 |
@return KErrNone An element with aKey key exists in the map, the data part is stored in aData.
|
sl@0
|
138 |
@return KErrNotFound No map element with aKey key found.
|
sl@0
|
139 |
*/
|
sl@0
|
140 |
template <class KEY, class DATA>
|
sl@0
|
141 |
TInt RMap<KEY, DATA>::Find(const KEY& aKey, DATA& aData) const
|
sl@0
|
142 |
{
|
sl@0
|
143 |
TInt index = iCol.FindInOrder(TPair<KEY, DATA>(aKey), iOrder);
|
sl@0
|
144 |
if(index != KErrNotFound)
|
sl@0
|
145 |
{
|
sl@0
|
146 |
aData = iCol[index].iData;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
return index;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
/**
|
sl@0
|
152 |
This method returns the number of elements in the map.
|
sl@0
|
153 |
@return Map elements count.
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
template <class KEY, class DATA>
|
sl@0
|
156 |
TInt RMap<KEY, DATA>::Count() const
|
sl@0
|
157 |
{
|
sl@0
|
158 |
return iCol.Count();
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
/**
|
sl@0
|
162 |
Initializes TMapIterator instance.
|
sl@0
|
163 |
@param aMap A const reference to the RMap object, which will be iterated.
|
sl@0
|
164 |
*/
|
sl@0
|
165 |
template <class KEY, class DATA>
|
sl@0
|
166 |
TMapIterator<KEY, DATA>::TMapIterator(const RMap<KEY, DATA>& aMap) :
|
sl@0
|
167 |
iMap(aMap),
|
sl@0
|
168 |
iIndex(0)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
Resets TMapIterator iterator for a new scan from the beginning of the controlled map sequence.
|
sl@0
|
174 |
*/
|
sl@0
|
175 |
template <class KEY, class DATA>
|
sl@0
|
176 |
void TMapIterator<KEY, DATA>::Reset()
|
sl@0
|
177 |
{
|
sl@0
|
178 |
iIndex = 0;
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
/**
|
sl@0
|
182 |
If iterator's current position is not beyond the end of the map,
|
sl@0
|
183 |
the iterator will retrieve current map entry into aPair argument, advance iterator position
|
sl@0
|
184 |
by 1 and return ETrue.
|
sl@0
|
185 |
Otherwise the iterator will return EFalse.
|
sl@0
|
186 |
@param aPair An output parameter, which references the location, where the next RMap element will be stored.
|
sl@0
|
187 |
@return ETrue The next RMap element successfully loaded into aPair parameter. This is not the
|
sl@0
|
188 |
end of RMap collection.
|
sl@0
|
189 |
@return EFalse The next RMap element successfully loaded into aPair parameter. This is the
|
sl@0
|
190 |
end of RMap collection. Do not call Next() anymore.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
template <class KEY, class DATA>
|
sl@0
|
193 |
TBool TMapIterator<KEY, DATA>::Next(TPair<KEY, DATA>& aPair) const
|
sl@0
|
194 |
{
|
sl@0
|
195 |
return (iIndex < iMap.iCol.Count()) ? aPair = iMap.iCol[iIndex++], ETrue : EFalse;
|
sl@0
|
196 |
}
|