-
Notifications
You must be signed in to change notification settings - Fork 399
/
map.h
357 lines (330 loc) · 12.5 KB
/
map.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
////////////////////////////////////////////////////////////////////////////////
//
// Visual Leak Detector - Lightweight STL-like Map Template
// Copyright (c) 2006 Dan Moulding
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
// See COPYING.txt for the full terms of the GNU Lesser General Public License.
//
////////////////////////////////////////////////////////////////////////////////
#pragma once
#ifndef VLDBUILD
#error \
"This header should only be included by Visual Leak Detector when building it from source. \
Applications should never include this header."
#endif
#include "tree.h" // Provides access to the Tree template class.
////////////////////////////////////////////////////////////////////////////////
//
// The Pair Template Class
//
// This is a lightweight STL-like pair template, for use with the lightweight
// Map class template.
//
// Note that while this is a STL-like class, it is not a full STL-compliant
// implementation of the STL pair utility class. It provides just the bare
// minimum functionality required by the Visual Leak Detector Map template
// class below.
//
template <typename Tf, typename Ts>
class Pair {
public:
// Constructor
Pair ()
{
first = Tf();
second = Ts();
}
// Constructor with initializers.
Pair (const Tf &f, const Ts &s)
{
first = f;
second = s;
}
// Less-than operator - Compares this Pair with another Pair to determine
// if this Pair is less than the other Pair. The Pair with the smallest
// "first" value is the lesser Pair.
//
// - other (IN): The other pair to compare against.
//
// Return Value:
//
// Returns true if this Pair is less than the other Pair. Otherwise
// returns false.
//
BOOL operator < (const Pair &other) const
{
return (first < other.first);
}
// Public data.
Tf first; // The first value of the pair.
Ts second; // The second value of the pair.
};
////////////////////////////////////////////////////////////////////////////////
//
// The Map Template Class
//
// This is a lightweidht STL-like map template. It makes use of the Tree class
// template to enable fast insert, find, and erase operations.
//
// Note that while this is a STL-like class, it is not a full STL-compliant
// implementation of the STL map container. It contains just the bare minimum
// functionality required by Visual Leak Detector. Because of its "lightweight"
// nature, this map class has a noticeable performance advantage over some
// other standard STL map implementations.
//
template <typename Tk, typename Tv>
class Map {
public:
class Iterator {
public:
// Constructor
Iterator ()
{
// Plainly constructed iterators don't reference anything.
m_node = NULL;
m_tree = NULL;
}
// operator != - Inequality operator for Map Iterators. Two Map
// Iterators are considered equal if and only if they both reference
// the same key/value pair in the same Map.
//
// - other (IN): The other Map Iterator to compare against.
//
// Return Value:
//
// Returns true if the specified Map Iterator is not equal to this
// Map Iterator; otherwise, returns false.
//
BOOL operator != (const Iterator &other) const
{
return ((m_tree != other.m_tree) || (m_node != other.m_node));
}
// operator * - Dereference operator for Map Iterators.
//
// Note: The reference returned by this function is "const", so the
// value referenced by the Iterator may not be modified through the
// Iterator. This is a departure from STL iterator behavior.
//
// Also, dereferencing an Iterator which does not reference a valid
// value in the Map is undefined and will almost certainly cause a
// crash.
//
// Return Value:
//
// Returns a const reference to the key/value pair in the Map
// referenced by the Iterator.
//
const Pair<Tk, Tv>& operator * () const
{
return m_node->key;
}
// operator ++ - Prefix increment operator for Map Iterators. Causes the
// Iterator to reference the in-oder successor of the key/value pair
// currently referenced by the Iterator. If the Iterator is currently
// referencing the largest key/value pair in the Map, then the
// resulting Iterator will reference the Map's end (the NULL pair).
//
// Note: Incrementing an Iterator which does not reference a valid
// key/value pair in the Map is undefined and will almost certainly
// cause a crash.
//
// Return Value:
//
// Returns the Iterator after it has been incremented.
//
Iterator& operator ++ (int)
{
m_node = m_tree->next(m_node);
return *this;
}
// operator ++ - Postfix increment operator for Map Iterators. Causes
// the Iterator to reference the in-order successor of the key/value
// pair currently referenced by the Iterator. If the Iterator is
// currently referencing the largest key/value pair in the Map, then
// the resulting Iterator will reference the Map's end (the NULL
// pair).
//
// Note: Incrementing an Iterator which does not reference a valid
// key/value pair in the Map is undefined and will almost certainly
// cause a crash.
//
// Return Value:
//
// Returns the Iterator before it has been incremented.
//
Iterator operator ++ ()
{
typename Tree<Pair<Tk, Tv> >::node_t *cur = m_node;
m_node = m_tree->next(m_node);
return Iterator(m_tree, cur);
}
// operator - - Subtraction operator for Map Iterators. Causes the
// the Iterator to reference a key/value pair that is an in-order
// predecessor of the currently refereced key/value pair.
//
// - num (IN): Number indicating the number of preceding key/value
// pairs to decrement the iterator.
//
// Return Value:
//
// Returns an Iterator referencing the key/value pair that precedes
// the original Iterator by "num" pairs.
//
Iterator operator - (SIZE_T num) const
{
SIZE_T count;
typename Tree<Pair<Tk, Tv> >::node_t *cur = m_node;
cur = m_tree->prev(m_node);
for (count = 0; count < num; count++) {
cur = m_tree->prev(m_node);
if (cur == NULL) {
return Iterator(m_tree, NULL);
}
}
return Iterator(m_tree, cur);
}
// operator == - Equality operator for Map Iterators. Map Iterators are
// considered equal if and only if they both refernce the same
// key/value pair in the same Map.
//
// - other (IN): The other Map Iterator to compare against.
//
// Return Value:
//
// Returns true if the specified Map Iterator is equal to this Map
// Iterator; otherwise returns false.
//
BOOL operator == (const Iterator &other) const
{
return ((m_tree == other.m_tree) && (m_node == other.m_node));
}
private:
// Private constructor. Only the Map class itself may use this
// constructor. It is used for constructing Iterators which reference
// specific nodes in the internal tree's structure.
Iterator (const Tree<Pair<Tk, Tv> > *tree, typename Tree<Pair<Tk, Tv> >::node_t *node)
{
m_node = node;
m_tree = tree;
}
typename Tree<Pair<Tk, Tv> >::node_t *m_node; // Pointer to the node referenced by the Map Iterator.
const Tree<Pair<Tk, Tv> > *m_tree; // Pointer to the tree containing the referenced node.
// The Map class is a friend of Map Iterators.
friend class Map<Tk, Tv>;
};
// begin - Obtains an Iterator referencing the beginning of the Map (i.e.
// the lowest key/value pair currently stored in the Map).
//
// Return Value:
//
// Returns an Iterator referencing the first key/value pair in the Map.
// If no key/value pairs are currenly stored in the map, returns the
// "NULL" Iterator.
//
Iterator begin () const
{
return Iterator(&m_tree, m_tree.begin());
}
// end - Obtains an Iterator referencing the end of the Map. The end of
// the map does not reference an actual key/value pair. Instead it
// represents a "null" key/value pair which signifies the end (i.e. just
// beyond largest key/value pair currently stored in the Map). Also
// known as the "NULL" Iterator.
//
// Return Value:
//
// Returns the "NULL" Iterator, signifying the end of the Map.
//
Iterator end () const
{
return Iterator(&m_tree, NULL);
}
// erase - Erases a key/value pair from the map.
//
// - it (IN): Iterator referencing the key/value pair to be erased from
// the map.
//
// Return Value:
//
// None.
//
VOID erase (Iterator& it)
{
m_tree.erase(it.m_node);
}
// erase - Erases a key/value pair from the map.
//
// - key (IN): The key corresponding to the key/value pair to be erased
// from the map.
//
// Return Value:
//
// None.
//
VOID erase (const Tk &key)
{
m_tree.erase(Pair<Tk, Tv>(key, Tv()));
}
// find - Finds a key/value pair in the map.
//
// - key (IN): The key corresponding to the key/value pair to be found.
//
// Return Value:
//
// Returns an Iterator referencing the found key/value pair. If no
// key/value pair with the specified key could be found, then the "NULL"
// Iterator is returned.
//
Iterator find (const Tk &key) const
{
return Iterator(&m_tree, m_tree.find(Pair<Tk, Tv>(key, Tv())));
}
// insert - Inserts a key/value pair into the map.
//
// - key (IN): The key of the key/value pair to be inserted.
//
// - data (IN): The value of the key/value pair to be inserted.
//
// Return Value:
//
// Returns an Iterator referencing the resulting key/value pair after
// if has been inserted into the map.
//
Iterator insert (const Tk &key, const Tv &data)
{
return Iterator(&m_tree, m_tree.insert(Pair<Tk, Tv>(key, data)));
}
// reserve - Sets the reserve size of the map. The reserve size is the
// number of key/value pairs for which space should be pre-allocated
// to avoid frequent heap hits when inserting new key/value pairs into
// the map.
//
// - count (IN): The number of key/value pairs for which to reserve space
// in advance.
//
// Return Value:
//
// Returns the reserve size previously in use by the map.
//
size_t reserve (size_t count)
{
return m_tree.reserve(count);
}
private:
// Private data
Tree<Pair<Tk, Tv> > m_tree; // The key/value pairs are actually stored in a tree.
};