sl@0
|
1 |
// Copyright (c) 2004-2010 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 |
// RSqlMap template class implementation.
|
sl@0
|
15 |
// //////////////////// TSqlPair implementation //////////////////////////////////
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
|
sl@0
|
21 |
Initializes TSqlPair data members using the supplied parameter values.
|
sl@0
|
22 |
|
sl@0
|
23 |
@param aKey Key part of TSqlPair object
|
sl@0
|
24 |
@param aData Data part of TSqlPair object
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
template <class KEY, class DATA, class REFCNTR>
|
sl@0
|
27 |
TSqlPair<KEY, DATA, REFCNTR>::TSqlPair(const KEY& aKey, const DATA& aData) :
|
sl@0
|
28 |
iKey(aKey),
|
sl@0
|
29 |
iData(aData)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
}
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Initializes TSqlPair data members using the supplied parameter value.
|
sl@0
|
35 |
|
sl@0
|
36 |
@param aKey Key part of TSqlPair object
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
template <class KEY, class DATA, class REFCNTR>
|
sl@0
|
39 |
TSqlPair<KEY, DATA, REFCNTR>::TSqlPair(const KEY& aKey) :
|
sl@0
|
40 |
iKey(aKey)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
Initializes TSqlPair data members with their default values.
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
template <class KEY, class DATA, class REFCNTR>
|
sl@0
|
48 |
TSqlPair<KEY, DATA, REFCNTR>::TSqlPair()
|
sl@0
|
49 |
{
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
53 |
/////////////////////// RSqlMap implementation ///////////////////////////////////
|
sl@0
|
54 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
@param aOrder An object of TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> > type, which will be used when
|
sl@0
|
58 |
new elements are inserted into the collection (to determine their order).
|
sl@0
|
59 |
@param aDestructor An object of TSqlPairDestructor<KEY, DATA> type which will be used for the destruction of
|
sl@0
|
60 |
KEY and DATA TSqlPair data members.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
63 |
RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::RSqlMap(const TLinearOrder< TSqlPair<KEY, DATA, REFCNTR> >& aOrder, const DESTRUCTOR& aDestructor) :
|
sl@0
|
64 |
iOrder(aOrder),
|
sl@0
|
65 |
iDestructor(aDestructor)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
Closes RSqlMap instance and destroys all RSqlMap data.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
73 |
void RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Close()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
TInt idx = iSet.Count();
|
sl@0
|
76 |
while(--idx >= 0)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
TSqlPair<KEY, DATA, REFCNTR>& pair = iSet[idx];
|
sl@0
|
79 |
iDestructor.Destroy(pair.iKey, pair.iData);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
iSet.Close();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
This method will create and insert new (KEY, DATA, REFCNTR) pair in the map.
|
sl@0
|
86 |
|
sl@0
|
87 |
RSqlMap class maintains a set of reference counted objects.
|
sl@0
|
88 |
If an object with aKey key is already in the map, no insertion will occur, the reference counter
|
sl@0
|
89 |
of the existing object will be incremented.
|
sl@0
|
90 |
|
sl@0
|
91 |
@param aKey The key part of TSqlPair object, which will be inserted
|
sl@0
|
92 |
@param aData The data part of TSqlPair object, which will be inserted
|
sl@0
|
93 |
|
sl@0
|
94 |
@return System-wide error code if the insertion fails, reference counter value otherwise.
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
97 |
TInt RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Insert(const KEY& aKey, const DATA& aData)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
|
sl@0
|
100 |
if(idx >= 0)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
return iSet[idx].iRefCounter.Increment();
|
sl@0
|
103 |
}
|
sl@0
|
104 |
else
|
sl@0
|
105 |
{
|
sl@0
|
106 |
TInt err = iSet.InsertInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey, aData), iOrder);
|
sl@0
|
107 |
return err == KErrNone ? 1 : err;
|
sl@0
|
108 |
}
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
This method removes an element with aKey key from the map.
|
sl@0
|
113 |
|
sl@0
|
114 |
If there is no such element in the map, the debug verison of the method will panic.
|
sl@0
|
115 |
|
sl@0
|
116 |
RSqlMap class maintains a set of reference counted objects.
|
sl@0
|
117 |
If an object with aKey key is in the map, the reference counter of the object will be decremented.
|
sl@0
|
118 |
If the object's reference counter reaches 0 then the object will be destroyed.
|
sl@0
|
119 |
|
sl@0
|
120 |
@param aKey The key of TSqlPair object, which has to be removed from the collection.
|
sl@0
|
121 |
|
sl@0
|
122 |
@panic 7 In _DEBUG mode if there is no entry with aKey key in the RSqlMap container.
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
125 |
void RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Remove(const KEY& aKey)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
|
sl@0
|
128 |
if(idx != KErrNotFound)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
TSqlPair<KEY, DATA, REFCNTR>& pair = iSet[idx];
|
sl@0
|
131 |
if(pair.iRefCounter.Decrement() == 0)
|
sl@0
|
132 |
{
|
sl@0
|
133 |
iDestructor.Destroy(pair.iKey, pair.iData);
|
sl@0
|
134 |
iSet.Remove(idx);
|
sl@0
|
135 |
#ifdef _DEBUG
|
sl@0
|
136 |
//This is used prevent the failure of the resource allocation checking in debug mode.
|
sl@0
|
137 |
if(iSet.Count() == 0)
|
sl@0
|
138 |
{
|
sl@0
|
139 |
iSet.Reset();
|
sl@0
|
140 |
}
|
sl@0
|
141 |
#endif
|
sl@0
|
142 |
}
|
sl@0
|
143 |
return;
|
sl@0
|
144 |
}
|
sl@0
|
145 |
__ASSERT_DEBUG(EFalse, __SQLPANIC(ESqlPanicInternalError));
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
/**
|
sl@0
|
149 |
This method performs a search for an element with aKey key in the map.
|
sl@0
|
150 |
If such element exists, the method will return a pointer to it.
|
sl@0
|
151 |
If not, then the method will return NULL.
|
sl@0
|
152 |
|
sl@0
|
153 |
@param aKey The search key.
|
sl@0
|
154 |
|
sl@0
|
155 |
@return A pointer to the found element or NULL.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
158 |
TSqlPair<KEY, DATA, REFCNTR>* RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>::Entry(const KEY& aKey)
|
sl@0
|
159 |
{
|
sl@0
|
160 |
TInt idx = iSet.FindInOrder(TSqlPair<KEY, DATA, REFCNTR>(aKey), iOrder);
|
sl@0
|
161 |
return idx == KErrNotFound ? NULL : &iSet[idx];
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
165 |
/////////////////////// TSqlMapIterator implementation ////////////////////////////////
|
sl@0
|
166 |
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
167 |
|
sl@0
|
168 |
/**
|
sl@0
|
169 |
Initializes TSqlMapIterator instance.
|
sl@0
|
170 |
|
sl@0
|
171 |
@param aMap A const reference to the RSqlMap object, which will be iterated.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
174 |
TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>::TSqlMapIterator(const RSqlMap<KEY, DATA, REFCNTR, DESTRUCTOR>& aMap) :
|
sl@0
|
175 |
iMap(aMap),
|
sl@0
|
176 |
iIndex(0)
|
sl@0
|
177 |
{
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
/**
|
sl@0
|
181 |
If iterator's current position is not beyond the end of the map,
|
sl@0
|
182 |
the iterator will retrieve current map entry into aPair argument, advance iterator position
|
sl@0
|
183 |
by 1 and return ETrue.
|
sl@0
|
184 |
|
sl@0
|
185 |
Otherwise the iterator will return EFalse.
|
sl@0
|
186 |
|
sl@0
|
187 |
@param aPair An output parameter, which references the location, where the next RSqlMap element will be stored.
|
sl@0
|
188 |
|
sl@0
|
189 |
@return ETrue The next RSqlMap element successfully loaded into aPair parameter. This is not the
|
sl@0
|
190 |
end of RSqlMap collection.
|
sl@0
|
191 |
@return EFalse The next RSqlMap element successfully loaded into aPair parameter. This is the
|
sl@0
|
192 |
end of RSqlMap collection. Do not call Next() anymore.
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
template <class KEY, class DATA, class REFCNTR, class DESTRUCTOR>
|
sl@0
|
195 |
TBool TSqlMapIterator<KEY, DATA, REFCNTR, DESTRUCTOR>::Next(TSqlPair<KEY, DATA, REFCNTR>& aPair) const
|
sl@0
|
196 |
{
|
sl@0
|
197 |
return (iIndex < iMap.iSet.Count()) ? aPair = iMap.iSet[iIndex++], ETrue : EFalse;
|
sl@0
|
198 |
}
|