deba@782
|
1 |
// -*- c++ -*-
|
deba@782
|
2 |
#ifndef ARRAY_MAP_FACTORY_H
|
deba@782
|
3 |
#define ARRAY_MAP_FACTORY_H
|
deba@782
|
4 |
|
deba@782
|
5 |
#include <memory>
|
deba@782
|
6 |
|
deba@782
|
7 |
#include <hugo/extended_pair.h>
|
deba@782
|
8 |
|
deba@782
|
9 |
namespace hugo {
|
deba@782
|
10 |
|
deba@782
|
11 |
template <typename MapRegistry> class ArrayMapFactory {
|
deba@782
|
12 |
|
deba@782
|
13 |
public:
|
deba@782
|
14 |
|
deba@782
|
15 |
typedef typename MapRegistry::Graph Graph;
|
deba@782
|
16 |
typedef typename MapRegistry::Key Key;
|
deba@782
|
17 |
typedef typename MapRegistry::KeyIt KeyIt;
|
deba@782
|
18 |
|
deba@782
|
19 |
typedef typename MapRegistry::MapBase MapBase;
|
deba@782
|
20 |
|
deba@782
|
21 |
template <typename V, typename A = std::allocator<V> >
|
deba@782
|
22 |
class Map : public MapBase {
|
deba@782
|
23 |
|
deba@782
|
24 |
public:
|
deba@782
|
25 |
|
deba@782
|
26 |
typedef V Value;
|
deba@783
|
27 |
typedef V ValueType;
|
deba@782
|
28 |
typedef A Allocator;
|
deba@782
|
29 |
|
deba@782
|
30 |
|
deba@782
|
31 |
Map() : values(0), capacity(0) {}
|
deba@782
|
32 |
|
deba@782
|
33 |
Map(const Graph& g, MapRegistry& r) : MapBase(g, r) {
|
deba@782
|
34 |
allocate_memory();
|
deba@782
|
35 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
36 |
int id = MapBase::getGraph()->id(it);
|
deba@782
|
37 |
allocator.construct(&(values[id]), Value());
|
deba@782
|
38 |
}
|
deba@782
|
39 |
}
|
deba@782
|
40 |
|
deba@782
|
41 |
Map(const Graph& g, MapRegistry& r, const Value& v) : MapBase(g, r) {
|
deba@782
|
42 |
allocate_memory();
|
deba@782
|
43 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
44 |
int id = MapBase::getGraph()->id(it);
|
deba@782
|
45 |
allocator.construct(&(values[id]), v);
|
deba@782
|
46 |
}
|
deba@782
|
47 |
}
|
deba@782
|
48 |
|
deba@782
|
49 |
Map(const Map& copy) : MapBase(*copy.graph, *copy.registry) {
|
deba@782
|
50 |
capacity = copy.capacity;
|
deba@782
|
51 |
if (capacity == 0) return;
|
deba@782
|
52 |
values = allocator.allocate(capacity);
|
deba@782
|
53 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
54 |
int id = MapBase::getGraph()->id(it);
|
deba@782
|
55 |
allocator.construct(&(values[id]), copy.values[id]);
|
deba@782
|
56 |
}
|
deba@782
|
57 |
}
|
deba@782
|
58 |
|
deba@782
|
59 |
template <typename CMap> Map(const CMap& copy)
|
deba@783
|
60 |
: MapBase(copy), capacity(0), values(0) {
|
deba@782
|
61 |
if (MapBase::getGraph()) {
|
deba@782
|
62 |
allocate_memory();
|
deba@782
|
63 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
64 |
set(it, copy[it]);
|
deba@782
|
65 |
}
|
deba@782
|
66 |
}
|
deba@782
|
67 |
}
|
deba@782
|
68 |
|
deba@782
|
69 |
Map& operator=(const Map& copy) {
|
deba@782
|
70 |
if (© == this) return *this;
|
deba@782
|
71 |
if (capacity != 0) {
|
deba@782
|
72 |
MapBase::destroy();
|
deba@782
|
73 |
allocator.deallocate(values, capacity);
|
deba@782
|
74 |
}
|
deba@782
|
75 |
capacity = copy.capacity;
|
deba@782
|
76 |
if (capacity == 0) return *this;
|
deba@782
|
77 |
values = allocator.allocate(capacity);
|
deba@782
|
78 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
79 |
int id = MapBase::getGraph()->id(it);
|
deba@782
|
80 |
allocator.construct(&(values[id]), copy.values[id]);
|
deba@782
|
81 |
}
|
deba@782
|
82 |
return *this;
|
deba@782
|
83 |
}
|
deba@782
|
84 |
|
deba@782
|
85 |
template <typename CMap> Map& operator=(const CMap& copy) {
|
deba@782
|
86 |
if (MapBase::getGraph()) {
|
deba@782
|
87 |
MapBase::destroy();
|
deba@782
|
88 |
}
|
deba@782
|
89 |
MapBase::operator=(copy);
|
deba@782
|
90 |
if (MapBase::getGraph()) {
|
deba@782
|
91 |
allocate_memory();
|
deba@782
|
92 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
93 |
set(it, copy[it]);
|
deba@782
|
94 |
}
|
deba@782
|
95 |
}
|
deba@782
|
96 |
return *this;
|
deba@782
|
97 |
}
|
deba@782
|
98 |
|
deba@782
|
99 |
virtual ~Map() {
|
deba@782
|
100 |
if (capacity != 0) {
|
deba@782
|
101 |
MapBase::destroy();
|
deba@782
|
102 |
allocator.deallocate(values, capacity);
|
deba@782
|
103 |
}
|
deba@782
|
104 |
}
|
deba@782
|
105 |
|
deba@782
|
106 |
|
deba@782
|
107 |
Value& operator[](const Key& key) {
|
deba@782
|
108 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
109 |
return values[id];
|
deba@782
|
110 |
}
|
deba@782
|
111 |
|
deba@782
|
112 |
const Value& operator[](const Key& key) const {
|
deba@782
|
113 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
114 |
return values[id];
|
deba@782
|
115 |
}
|
deba@782
|
116 |
|
deba@782
|
117 |
const Value& get(const Key& key) const {
|
deba@782
|
118 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
119 |
return values[id];
|
deba@782
|
120 |
}
|
deba@782
|
121 |
|
deba@782
|
122 |
void set(const Key& key, const Value& val) {
|
deba@782
|
123 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
124 |
values[id] = val;
|
deba@782
|
125 |
}
|
deba@782
|
126 |
|
deba@782
|
127 |
void add(const Key& key) {
|
deba@782
|
128 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
129 |
if (id >= capacity) {
|
deba@782
|
130 |
int new_capacity = (capacity == 0 ? 1 : capacity);
|
deba@782
|
131 |
while (new_capacity <= id) {
|
deba@782
|
132 |
new_capacity <<= 1;
|
deba@782
|
133 |
}
|
deba@782
|
134 |
Value* new_values = allocator.allocate(new_capacity);;
|
deba@782
|
135 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
136 |
int jd = MapBase::getGraph()->id(it);
|
deba@782
|
137 |
if (id != jd) {
|
deba@782
|
138 |
allocator.construct(&(new_values[jd]), values[jd]);
|
deba@782
|
139 |
allocator.destroy(&(values[jd]));
|
deba@782
|
140 |
}
|
deba@782
|
141 |
}
|
deba@782
|
142 |
if (capacity != 0) allocator.deallocate(values, capacity);
|
deba@782
|
143 |
values = new_values;
|
deba@782
|
144 |
capacity = new_capacity;
|
deba@782
|
145 |
}
|
deba@782
|
146 |
allocator.construct(&(values[id]), Value());
|
deba@782
|
147 |
}
|
deba@782
|
148 |
|
deba@782
|
149 |
void erase(const Key& key) {
|
deba@782
|
150 |
int id = MapBase::getGraph()->id(key);
|
deba@782
|
151 |
allocator.destroy(&(values[id]));
|
deba@782
|
152 |
}
|
deba@782
|
153 |
|
deba@782
|
154 |
void clear() {
|
deba@782
|
155 |
if (capacity != 0) {
|
deba@782
|
156 |
MapBase::destroy();
|
deba@782
|
157 |
allocator.deallocate(values, capacity);
|
deba@782
|
158 |
capacity = 0;
|
deba@782
|
159 |
}
|
deba@782
|
160 |
}
|
deba@782
|
161 |
|
deba@782
|
162 |
class iterator {
|
deba@782
|
163 |
friend class Map;
|
deba@782
|
164 |
friend class const_iterator;
|
deba@782
|
165 |
private:
|
deba@782
|
166 |
|
deba@782
|
167 |
/** Private constructor to initalize the the iterators returned
|
deba@782
|
168 |
* by the begin() and end().
|
deba@782
|
169 |
*/
|
deba@782
|
170 |
iterator (Map& pmap, const KeyIt& pit) : map(&pmap), it(pit) {}
|
deba@782
|
171 |
|
deba@782
|
172 |
public:
|
deba@782
|
173 |
|
deba@782
|
174 |
/** Default constructor.
|
deba@782
|
175 |
*/
|
deba@782
|
176 |
iterator() {}
|
deba@782
|
177 |
|
deba@782
|
178 |
typedef extended_pair<const Key&, const Key&,
|
deba@782
|
179 |
Value&, Value&> Reference;
|
deba@782
|
180 |
|
deba@782
|
181 |
/** Dereference operator for map.
|
deba@782
|
182 |
*/
|
deba@782
|
183 |
Reference operator*() {
|
deba@782
|
184 |
return Reference(it, (*map)[it]);
|
deba@782
|
185 |
}
|
deba@782
|
186 |
|
deba@782
|
187 |
class Pointer {
|
deba@782
|
188 |
friend class iterator;
|
deba@782
|
189 |
private:
|
deba@782
|
190 |
Reference data;
|
deba@782
|
191 |
Pointer(const Key& key, Value& val) : data(key, val) {}
|
deba@782
|
192 |
public:
|
deba@782
|
193 |
Reference* operator->() {return &data;}
|
deba@782
|
194 |
};
|
deba@782
|
195 |
|
deba@782
|
196 |
/** Arrow operator for map.
|
deba@782
|
197 |
*/
|
deba@782
|
198 |
Pointer operator->() {
|
deba@782
|
199 |
return Pointer(it, ((*map)[it]));
|
deba@782
|
200 |
}
|
deba@782
|
201 |
|
deba@782
|
202 |
/** The pre increment operator of the map.
|
deba@782
|
203 |
*/
|
deba@782
|
204 |
iterator& operator++() {
|
deba@782
|
205 |
++it;
|
deba@782
|
206 |
return *this;
|
deba@782
|
207 |
}
|
deba@782
|
208 |
|
deba@782
|
209 |
/** The post increment operator of the map.
|
deba@782
|
210 |
*/
|
deba@782
|
211 |
iterator operator++(int) {
|
deba@782
|
212 |
iterator tmp(it);
|
deba@782
|
213 |
++it;
|
deba@782
|
214 |
return tmp;
|
deba@782
|
215 |
}
|
deba@782
|
216 |
|
deba@782
|
217 |
/** The equality operator of the map.
|
deba@782
|
218 |
*/
|
deba@782
|
219 |
bool operator==(const_iterator p_it) {
|
deba@782
|
220 |
return p_it.it == it;
|
deba@782
|
221 |
}
|
deba@782
|
222 |
|
deba@782
|
223 |
/** The not-equality operator of the map.
|
deba@782
|
224 |
*/
|
deba@782
|
225 |
bool operator!=(const_iterator p_it) {
|
deba@782
|
226 |
return !(*this == p_it);
|
deba@782
|
227 |
}
|
deba@782
|
228 |
|
deba@782
|
229 |
|
deba@782
|
230 |
private:
|
deba@782
|
231 |
Map* map;
|
deba@782
|
232 |
KeyIt it;
|
deba@782
|
233 |
};
|
deba@782
|
234 |
|
deba@782
|
235 |
/** Returns the begin iterator of the map.
|
deba@782
|
236 |
*/
|
deba@782
|
237 |
iterator begin() {
|
deba@782
|
238 |
return iterator(*this, KeyIt(*MapBase::getGraph()));
|
deba@782
|
239 |
}
|
deba@782
|
240 |
|
deba@782
|
241 |
/** Returns the end iterator of the map.
|
deba@782
|
242 |
*/
|
deba@782
|
243 |
iterator end() {
|
deba@782
|
244 |
return iterator(*this, INVALID);
|
deba@782
|
245 |
}
|
deba@782
|
246 |
|
deba@782
|
247 |
class const_iterator {
|
deba@782
|
248 |
friend class Map;
|
deba@782
|
249 |
friend class iterator;
|
deba@782
|
250 |
private:
|
deba@782
|
251 |
|
deba@782
|
252 |
/** Private constructor to initalize the the iterators returned
|
deba@782
|
253 |
* by the begin() and end().
|
deba@782
|
254 |
*/
|
deba@782
|
255 |
const_iterator (const Map& pmap, const KeyIt& pit)
|
deba@782
|
256 |
: map(&pmap), it(pit) {}
|
deba@782
|
257 |
|
deba@782
|
258 |
public:
|
deba@782
|
259 |
|
deba@782
|
260 |
/** Default constructor.
|
deba@782
|
261 |
*/
|
deba@782
|
262 |
const_iterator() {}
|
deba@782
|
263 |
|
deba@782
|
264 |
/** Constructor to convert iterator to const_iterator.
|
deba@782
|
265 |
*/
|
deba@782
|
266 |
const_iterator(iterator p_it) : map(p_it.map), it(p_it.it) {}
|
deba@782
|
267 |
|
deba@782
|
268 |
typedef extended_pair<const Key&, const Key&,
|
deba@782
|
269 |
const Value&, const Value&> Reference;
|
deba@782
|
270 |
|
deba@782
|
271 |
/** Dereference operator for map.
|
deba@782
|
272 |
*/
|
deba@782
|
273 |
Reference operator*() {
|
deba@782
|
274 |
return Reference(it, (*map)[it]);
|
deba@782
|
275 |
}
|
deba@782
|
276 |
|
deba@782
|
277 |
|
deba@782
|
278 |
class Pointer {
|
deba@782
|
279 |
friend class const_iterator;
|
deba@782
|
280 |
private:
|
deba@782
|
281 |
Reference data;
|
deba@782
|
282 |
Pointer(const Key& key, const Value& val) : data(key, val) {}
|
deba@782
|
283 |
public:
|
deba@782
|
284 |
Reference* operator->() {return &data;}
|
deba@782
|
285 |
};
|
deba@782
|
286 |
|
deba@782
|
287 |
/** Arrow operator for map.
|
deba@782
|
288 |
*/
|
deba@782
|
289 |
Pointer operator->() {
|
deba@782
|
290 |
return Pointer(it, ((*map)[it]));
|
deba@782
|
291 |
}
|
deba@782
|
292 |
|
deba@782
|
293 |
/** The pre increment operator of the map.
|
deba@782
|
294 |
*/
|
deba@782
|
295 |
const_iterator& operator++() {
|
deba@782
|
296 |
++it;
|
deba@782
|
297 |
return *this;
|
deba@782
|
298 |
}
|
deba@782
|
299 |
|
deba@782
|
300 |
/** The post increment operator of the map.
|
deba@782
|
301 |
*/
|
deba@782
|
302 |
const_iterator operator++(int) {
|
deba@782
|
303 |
const_iterator tmp(it);
|
deba@782
|
304 |
++it;
|
deba@782
|
305 |
return tmp;
|
deba@782
|
306 |
}
|
deba@782
|
307 |
|
deba@782
|
308 |
/** The equality operator of the map.
|
deba@782
|
309 |
*/
|
deba@782
|
310 |
bool operator==(const_iterator p_it) {
|
deba@782
|
311 |
return p_it.it == it;
|
deba@782
|
312 |
}
|
deba@782
|
313 |
|
deba@782
|
314 |
/** The not-equality operator of the map.
|
deba@782
|
315 |
*/
|
deba@782
|
316 |
bool operator!=(const_iterator p_it) {
|
deba@782
|
317 |
return !(*this == p_it);
|
deba@782
|
318 |
}
|
deba@782
|
319 |
|
deba@782
|
320 |
|
deba@782
|
321 |
private:
|
deba@782
|
322 |
const Map* map;
|
deba@782
|
323 |
KeyIt it;
|
deba@782
|
324 |
};
|
deba@782
|
325 |
|
deba@782
|
326 |
/** Returns the begin const_iterator of the map.
|
deba@782
|
327 |
*/
|
deba@782
|
328 |
const_iterator begin() const {
|
deba@782
|
329 |
return const_iterator(*this, KeyIt(*MapBase::getGraph()));
|
deba@782
|
330 |
}
|
deba@782
|
331 |
|
deba@782
|
332 |
/** Returns the end const_iterator of the map.
|
deba@782
|
333 |
*/
|
deba@782
|
334 |
const_iterator end() const {
|
deba@782
|
335 |
return const_iterator(*this, INVALID);
|
deba@782
|
336 |
}
|
deba@782
|
337 |
|
deba@782
|
338 |
private:
|
deba@782
|
339 |
|
deba@782
|
340 |
void allocate_memory() {
|
deba@782
|
341 |
int max_id = -1;
|
deba@782
|
342 |
for (KeyIt it(*MapBase::getGraph()); it != INVALID; ++it) {
|
deba@782
|
343 |
int id = MapBase::getGraph()->id(it);
|
deba@782
|
344 |
if (id > max_id) {
|
deba@782
|
345 |
max_id = id;
|
deba@782
|
346 |
}
|
deba@782
|
347 |
}
|
deba@782
|
348 |
if (max_id == -1) {
|
deba@782
|
349 |
capacity = 0;
|
deba@782
|
350 |
values = 0;
|
deba@782
|
351 |
return;
|
deba@782
|
352 |
}
|
deba@782
|
353 |
capacity = 1;
|
deba@782
|
354 |
while (capacity <= max_id) {
|
deba@782
|
355 |
capacity <<= 1;
|
deba@782
|
356 |
}
|
deba@782
|
357 |
values = allocator.allocate(capacity);
|
deba@782
|
358 |
}
|
deba@782
|
359 |
|
deba@782
|
360 |
int capacity;
|
deba@782
|
361 |
Value* values;
|
deba@782
|
362 |
Allocator allocator;
|
deba@782
|
363 |
};
|
deba@782
|
364 |
};
|
deba@782
|
365 |
}
|
deba@782
|
366 |
|
deba@782
|
367 |
#endif
|