[822] | 1 | // -*- c++ -*- |
---|
| 2 | #ifndef MAP_ITERATOR_H |
---|
| 3 | #define MAP_ITERATOR_H |
---|
| 4 | |
---|
[844] | 5 | #include <iterator> |
---|
| 6 | |
---|
[822] | 7 | #include <hugo/extended_pair.h> |
---|
| 8 | |
---|
[830] | 9 | ///\ingroup graphmaps |
---|
| 10 | ///\file |
---|
| 11 | ///\brief Iterators on the maps. |
---|
| 12 | |
---|
[822] | 13 | namespace hugo { |
---|
| 14 | |
---|
[830] | 15 | /// \addtogroup graphmaps |
---|
| 16 | /// @{ |
---|
| 17 | |
---|
| 18 | /** The base class all of the map iterators. |
---|
| 19 | * The class defines the typedefs of the iterators, |
---|
| 20 | * simple step functions and equality operators. |
---|
| 21 | */ |
---|
[822] | 22 | |
---|
| 23 | template <typename Map> |
---|
[830] | 24 | class MapIteratorBase { |
---|
[822] | 25 | |
---|
[830] | 26 | public: |
---|
[844] | 27 | |
---|
[830] | 28 | /// The key type of the iterator. |
---|
| 29 | typedef typename Map::KeyType KeyType; |
---|
| 30 | /// The iterator to iterate on the keys. |
---|
| 31 | typedef typename Map::KeyIt KeyIt; |
---|
| 32 | |
---|
| 33 | /// The value type of the iterator. |
---|
| 34 | typedef typename Map::ValueType ValueType; |
---|
| 35 | /// The reference type of the iterator. |
---|
| 36 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 37 | /// The pointer type of the iterator. |
---|
| 38 | typedef typename Map::PointerType PointerType; |
---|
| 39 | |
---|
| 40 | /// The const value type of the iterator. |
---|
| 41 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 42 | /// The const reference type of the iterator. |
---|
| 43 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 44 | /// The pointer type of the iterator. |
---|
| 45 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 46 | |
---|
| 47 | protected: |
---|
| 48 | |
---|
| 49 | KeyIt it; |
---|
| 50 | |
---|
| 51 | /// Default constructor. |
---|
| 52 | MapIteratorBase() {} |
---|
| 53 | |
---|
| 54 | /// KeyIt initialized MapIteratorBase constructor. |
---|
| 55 | MapIteratorBase(const KeyIt pit) : it(pit) {} |
---|
| 56 | |
---|
| 57 | public: |
---|
| 58 | |
---|
| 59 | /// Stepping forward in the map. |
---|
| 60 | void increment() { |
---|
| 61 | ++it; |
---|
| 62 | } |
---|
| 63 | |
---|
| 64 | /// The equality operator of the map. |
---|
| 65 | bool operator==(const MapIteratorBase& pit) const { |
---|
| 66 | return pit.it == it; |
---|
| 67 | } |
---|
| 68 | |
---|
| 69 | /// The not-equality operator of the map. |
---|
| 70 | bool operator!=(const MapIteratorBase& pit) const { |
---|
| 71 | return !(*this == pit); |
---|
| 72 | } |
---|
| 73 | }; |
---|
| 74 | |
---|
| 75 | template <typename Map> class MapConstIterator; |
---|
[822] | 76 | |
---|
| 77 | /** Compatible iterator with the stl maps' iterators. |
---|
[830] | 78 | * It iterates on pairs of a key and a value. |
---|
[822] | 79 | */ |
---|
| 80 | template <typename Map> |
---|
[830] | 81 | class MapIterator : public MapIteratorBase<Map> { |
---|
| 82 | |
---|
[822] | 83 | friend class MapConstIterator<Map>; |
---|
| 84 | |
---|
[844] | 85 | |
---|
[822] | 86 | public: |
---|
| 87 | |
---|
[844] | 88 | /// The iterator base class. |
---|
| 89 | typedef MapIteratorBase<Map> Base; |
---|
| 90 | |
---|
[822] | 91 | /// The key type of the iterator. |
---|
| 92 | typedef typename Map::KeyType KeyType; |
---|
| 93 | /// The iterator to iterate on the keys. |
---|
| 94 | typedef typename Map::KeyIt KeyIt; |
---|
| 95 | |
---|
| 96 | /// The value type of the iterator. |
---|
| 97 | typedef typename Map::ValueType ValueType; |
---|
| 98 | /// The reference type of the iterator. |
---|
| 99 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 100 | /// The pointer type of the iterator. |
---|
| 101 | typedef typename Map::PointerType PointerType; |
---|
| 102 | |
---|
| 103 | /// The const value type of the iterator. |
---|
| 104 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 105 | /// The const reference type of the iterator. |
---|
| 106 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 107 | /// The pointer type of the iterator. |
---|
| 108 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 109 | |
---|
| 110 | public: |
---|
| 111 | |
---|
[844] | 112 | /// The value type of the iterator. |
---|
| 113 | typedef extended_pair<KeyType, const KeyType&, |
---|
| 114 | ValueType, const ValueType&> PairValueType; |
---|
| 115 | |
---|
[830] | 116 | /// The reference type of the iterator. |
---|
[822] | 117 | typedef extended_pair<const KeyType&, const KeyType&, |
---|
| 118 | ReferenceType, ReferenceType> PairReferenceType; |
---|
| 119 | |
---|
[830] | 120 | /// Default constructor. |
---|
| 121 | MapIterator() {} |
---|
| 122 | |
---|
| 123 | /// Constructor to initalize the iterators returned |
---|
| 124 | /// by the begin() and end(). |
---|
[844] | 125 | MapIterator(Map& pmap, const KeyIt& pit) : Base(pit), map(&pmap) {} |
---|
[830] | 126 | |
---|
| 127 | /// Dereference operator for the iterator. |
---|
[822] | 128 | PairReferenceType operator*() { |
---|
[844] | 129 | return PairReferenceType(Base::it, (*map)[Base::it]); |
---|
[822] | 130 | } |
---|
| 131 | |
---|
[830] | 132 | /// The pointer type of the iterator. |
---|
[822] | 133 | class PairPointerType { |
---|
| 134 | friend class MapIterator; |
---|
| 135 | private: |
---|
| 136 | PairReferenceType data; |
---|
| 137 | PairPointerType(const KeyType& key, ReferenceType val) |
---|
| 138 | : data(key, val) {} |
---|
| 139 | public: |
---|
| 140 | PairReferenceType* operator->() {return &data;} |
---|
| 141 | }; |
---|
| 142 | |
---|
[830] | 143 | /// Arrow operator for the iterator. |
---|
[822] | 144 | PairPointerType operator->() { |
---|
[844] | 145 | return PairPointerType(Base::it, ((*map)[Base::it])); |
---|
[822] | 146 | } |
---|
[830] | 147 | |
---|
| 148 | /// The pre increment operator of the iterator. |
---|
[822] | 149 | MapIterator& operator++() { |
---|
[844] | 150 | Base::increment(); |
---|
[822] | 151 | return *this; |
---|
| 152 | } |
---|
| 153 | |
---|
[830] | 154 | /// The post increment operator of the iterator. |
---|
[822] | 155 | MapIterator operator++(int) { |
---|
[844] | 156 | MapIterator tmp(*this); |
---|
| 157 | Base::increment(); |
---|
[822] | 158 | return tmp; |
---|
| 159 | } |
---|
| 160 | |
---|
| 161 | private: |
---|
| 162 | Map* map; |
---|
[844] | 163 | |
---|
| 164 | public: |
---|
| 165 | // STL compatibility typedefs. |
---|
| 166 | typedef std::forward_iterator_tag iterator_category; |
---|
| 167 | typedef int difference_type; |
---|
| 168 | typedef PairValueType value_type; |
---|
| 169 | typedef PairReferenceType reference; |
---|
| 170 | typedef PairPointerType pointer; |
---|
[822] | 171 | }; |
---|
| 172 | |
---|
| 173 | /** Compatible iterator with the stl maps' iterators. |
---|
| 174 | * It iterates on pairs of a key and a value. |
---|
| 175 | */ |
---|
| 176 | template <typename Map> |
---|
[830] | 177 | class MapConstIterator : public MapIteratorBase<Map> { |
---|
| 178 | |
---|
[822] | 179 | public: |
---|
| 180 | |
---|
[844] | 181 | /// The iterator base class. |
---|
| 182 | typedef MapIteratorBase<Map> Base; |
---|
| 183 | |
---|
[822] | 184 | /// The key type of the iterator. |
---|
| 185 | typedef typename Map::KeyType KeyType; |
---|
| 186 | /// The iterator to iterate on the keys. |
---|
| 187 | typedef typename Map::KeyIt KeyIt; |
---|
| 188 | |
---|
| 189 | /// The value type of the iterator. |
---|
| 190 | typedef typename Map::ValueType ValueType; |
---|
| 191 | /// The reference type of the iterator. |
---|
| 192 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 193 | /// The pointer type of the iterator. |
---|
| 194 | typedef typename Map::PointerType PointerType; |
---|
| 195 | |
---|
| 196 | /// The const value type of the iterator. |
---|
| 197 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 198 | /// The const reference type of the iterator. |
---|
| 199 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 200 | /// The pointer type of the iterator. |
---|
| 201 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 202 | |
---|
| 203 | public: |
---|
| 204 | |
---|
[830] | 205 | /// Default constructor. |
---|
[822] | 206 | MapConstIterator() {} |
---|
| 207 | |
---|
[830] | 208 | /// Constructor to initalize the the iterators returned |
---|
| 209 | /// by the begin() and end(). |
---|
| 210 | MapConstIterator(const Map& pmap, const KeyIt& pit) |
---|
[844] | 211 | : Base(pit), map(&pmap) {} |
---|
[830] | 212 | |
---|
| 213 | /// Constructor to create const iterator from a non const. |
---|
| 214 | MapConstIterator(const MapIterator<Map>& pit) { |
---|
[844] | 215 | Base::it = pit.Base::it; |
---|
[830] | 216 | map = pit.map; |
---|
| 217 | } |
---|
| 218 | |
---|
[844] | 219 | /// The value type of the iterator. |
---|
| 220 | typedef extended_pair<KeyType, const KeyType&, |
---|
| 221 | ValueType, const ValueType&> PairValueType; |
---|
| 222 | |
---|
[830] | 223 | /// The reference type of map. |
---|
[822] | 224 | typedef extended_pair<const KeyType&, const KeyType&, |
---|
| 225 | ConstReferenceType, ConstReferenceType> PairReferenceType; |
---|
| 226 | |
---|
[830] | 227 | /// Dereference operator for the iterator. |
---|
[822] | 228 | PairReferenceType operator*() { |
---|
[844] | 229 | return PairReferenceType(Base::it, (*map)[Base::it]); |
---|
[822] | 230 | } |
---|
| 231 | |
---|
[830] | 232 | /// The pointer type of the iterator. |
---|
[822] | 233 | class PairPointerType { |
---|
| 234 | friend class MapConstIterator; |
---|
| 235 | private: |
---|
| 236 | PairReferenceType data; |
---|
| 237 | PairPointerType(const KeyType& key, ConstReferenceType val) |
---|
| 238 | : data(key, val) {} |
---|
| 239 | public: |
---|
| 240 | PairReferenceType* operator->() {return &data;} |
---|
| 241 | }; |
---|
| 242 | |
---|
[830] | 243 | /// Arrow operator for the iterator. |
---|
[822] | 244 | PairPointerType operator->() { |
---|
[844] | 245 | return PairPointerType(Base::it, (*map)[Base::it]); |
---|
[822] | 246 | } |
---|
| 247 | |
---|
[830] | 248 | /// The pre increment operator of the iterator. |
---|
[822] | 249 | MapConstIterator& operator++() { |
---|
[844] | 250 | Base::increment(); |
---|
[822] | 251 | return *this; |
---|
| 252 | } |
---|
| 253 | |
---|
[830] | 254 | /// The post increment operator of the iterator. |
---|
[822] | 255 | MapConstIterator operator++(int) { |
---|
[844] | 256 | MapConstIterator tmp(*this); |
---|
| 257 | Base::increment(); |
---|
[822] | 258 | return tmp; |
---|
| 259 | } |
---|
| 260 | |
---|
[830] | 261 | private: |
---|
| 262 | const Map* map; |
---|
[844] | 263 | |
---|
| 264 | public: |
---|
| 265 | // STL compatibility typedefs. |
---|
| 266 | typedef std::input_iterator_tag iterator_category; |
---|
| 267 | typedef int difference_type; |
---|
| 268 | typedef PairValueType value_type; |
---|
| 269 | typedef PairReferenceType reference; |
---|
| 270 | typedef PairPointerType pointer; |
---|
[830] | 271 | }; |
---|
| 272 | |
---|
| 273 | /** The class makes the KeyIt to an stl compatible iterator |
---|
| 274 | * with dereferencing operator. |
---|
| 275 | */ |
---|
| 276 | template <typename Map> |
---|
| 277 | class MapKeyIterator : public MapIteratorBase<Map> { |
---|
| 278 | |
---|
| 279 | public: |
---|
| 280 | |
---|
[844] | 281 | /// The iterator base class. |
---|
| 282 | typedef MapIteratorBase<Map> Base; |
---|
| 283 | |
---|
[830] | 284 | /// The key type of the iterator. |
---|
| 285 | typedef typename Map::KeyType KeyType; |
---|
| 286 | /// The iterator to iterate on the keys. |
---|
| 287 | typedef typename Map::KeyIt KeyIt; |
---|
| 288 | |
---|
| 289 | public: |
---|
| 290 | |
---|
| 291 | /// Default constructor. |
---|
| 292 | MapKeyIterator() {} |
---|
| 293 | |
---|
| 294 | /// KeyIt initialized iterator. |
---|
[844] | 295 | MapKeyIterator(const KeyIt& pit) : Base(pit) {} |
---|
[830] | 296 | |
---|
| 297 | /// The pre increment operator of the iterator. |
---|
| 298 | MapKeyIterator& operator++() { |
---|
[844] | 299 | Base::increment(); |
---|
[830] | 300 | return *this; |
---|
[822] | 301 | } |
---|
| 302 | |
---|
[830] | 303 | /// The post increment operator of the iterator. |
---|
| 304 | MapKeyIterator operator++(int) { |
---|
| 305 | MapKeyIterator tmp(*this); |
---|
[844] | 306 | Base::increment(); |
---|
[830] | 307 | return tmp; |
---|
[822] | 308 | } |
---|
[830] | 309 | |
---|
| 310 | /// The dereferencing operator of the iterator. |
---|
| 311 | KeyType operator*() const { |
---|
[844] | 312 | return static_cast<KeyType>(Base::it); |
---|
[822] | 313 | } |
---|
[844] | 314 | |
---|
| 315 | public: |
---|
| 316 | // STL compatibility typedefs. |
---|
| 317 | typedef std::input_iterator_tag iterator_category; |
---|
| 318 | typedef int difference_type; |
---|
| 319 | typedef KeyType value_type; |
---|
| 320 | typedef const KeyType& reference; |
---|
| 321 | typedef const KeyType* pointer; |
---|
[830] | 322 | }; |
---|
| 323 | |
---|
| 324 | template <typename Map> class MapConstValueIterator; |
---|
| 325 | |
---|
[844] | 326 | /** MapValueIterator creates an stl compatible iterator |
---|
| 327 | * for the values. |
---|
| 328 | */ |
---|
[830] | 329 | template <typename Map> |
---|
| 330 | class MapValueIterator : public MapIteratorBase<Map> { |
---|
| 331 | |
---|
| 332 | friend class MapConstValueIterator<Map>; |
---|
| 333 | |
---|
| 334 | public: |
---|
| 335 | |
---|
[844] | 336 | /// The iterator base class. |
---|
| 337 | typedef MapIteratorBase<Map> Base; |
---|
| 338 | |
---|
[830] | 339 | /// The key type of the iterator. |
---|
| 340 | typedef typename Map::KeyType KeyType; |
---|
| 341 | /// The iterator to iterate on the keys. |
---|
| 342 | typedef typename Map::KeyIt KeyIt; |
---|
| 343 | |
---|
| 344 | |
---|
| 345 | /// The value type of the iterator. |
---|
| 346 | typedef typename Map::ValueType ValueType; |
---|
| 347 | /// The reference type of the iterator. |
---|
| 348 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 349 | /// The pointer type of the iterator. |
---|
| 350 | typedef typename Map::PointerType PointerType; |
---|
| 351 | |
---|
| 352 | /// The const value type of the iterator. |
---|
| 353 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 354 | /// The const reference type of the iterator. |
---|
| 355 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 356 | /// The pointer type of the iterator. |
---|
| 357 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 358 | |
---|
[822] | 359 | private: |
---|
[830] | 360 | |
---|
| 361 | Map* map; |
---|
| 362 | |
---|
| 363 | public: |
---|
| 364 | |
---|
| 365 | /// Default constructor. |
---|
| 366 | MapValueIterator() {} |
---|
| 367 | |
---|
| 368 | /// Map and KeyIt initialized iterator. |
---|
| 369 | MapValueIterator(Map& pmap, const KeyIt& pit) |
---|
[844] | 370 | : Base(pit), map(&pmap) {} |
---|
[830] | 371 | |
---|
| 372 | |
---|
| 373 | /// The pre increment operator of the iterator. |
---|
| 374 | MapValueIterator& operator++() { |
---|
[844] | 375 | Base::increment(); |
---|
[830] | 376 | return *this; |
---|
| 377 | } |
---|
| 378 | |
---|
| 379 | /// The post increment operator of the iterator. |
---|
| 380 | MapValueIterator operator++(int) { |
---|
| 381 | MapValueIterator tmp(*this); |
---|
[844] | 382 | Base::increment(); |
---|
[830] | 383 | return tmp; |
---|
| 384 | } |
---|
| 385 | |
---|
| 386 | /// The dereferencing operator of the iterator. |
---|
| 387 | ReferenceType operator*() const { |
---|
[844] | 388 | return (*map)[Base::it]; |
---|
[830] | 389 | } |
---|
| 390 | |
---|
| 391 | /// The arrow operator of the iterator. |
---|
| 392 | PointerType operator->() const { |
---|
| 393 | return &(operator*()); |
---|
| 394 | } |
---|
| 395 | |
---|
[844] | 396 | public: |
---|
| 397 | // STL compatibility typedefs. |
---|
| 398 | typedef std::forward_iterator_tag iterator_category; |
---|
| 399 | typedef int difference_type; |
---|
| 400 | typedef ValueType value_type; |
---|
| 401 | typedef ReferenceType reference; |
---|
| 402 | typedef PointerType pointer; |
---|
[830] | 403 | }; |
---|
| 404 | |
---|
[844] | 405 | /** MapValueIterator creates an stl compatible iterator |
---|
| 406 | * for the const values. |
---|
| 407 | */ |
---|
[830] | 408 | |
---|
| 409 | template <typename Map> |
---|
| 410 | class MapConstValueIterator : public MapIteratorBase<Map> { |
---|
| 411 | |
---|
| 412 | public: |
---|
| 413 | |
---|
[844] | 414 | /// The iterator base class. |
---|
| 415 | typedef MapIteratorBase<Map> Base; |
---|
| 416 | |
---|
[830] | 417 | /// The key type of the iterator. |
---|
| 418 | typedef typename Map::KeyType KeyType; |
---|
| 419 | /// The iterator to iterate on the keys. |
---|
| 420 | typedef typename Map::KeyIt KeyIt; |
---|
| 421 | |
---|
| 422 | /// The value type of the iterator. |
---|
| 423 | typedef typename Map::ValueType ValueType; |
---|
| 424 | /// The reference type of the iterator. |
---|
| 425 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 426 | /// The pointer type of the iterator. |
---|
| 427 | typedef typename Map::PointerType PointerType; |
---|
| 428 | |
---|
| 429 | /// The const value type of the iterator. |
---|
| 430 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 431 | /// The const reference type of the iterator. |
---|
| 432 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 433 | /// The pointer type of the iterator. |
---|
| 434 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 435 | |
---|
| 436 | private: |
---|
| 437 | |
---|
[822] | 438 | const Map* map; |
---|
[830] | 439 | |
---|
| 440 | public: |
---|
| 441 | |
---|
| 442 | /// Default constructor. |
---|
| 443 | MapConstValueIterator() {} |
---|
| 444 | |
---|
| 445 | /// Constructor to create const iterator from a non const. |
---|
| 446 | MapConstValueIterator(const MapValueIterator<Map>& pit) { |
---|
[844] | 447 | Base::it = pit.Base::it; |
---|
[830] | 448 | map = pit.map; |
---|
| 449 | } |
---|
| 450 | |
---|
| 451 | /// Map and KeyIt initialized iterator. |
---|
| 452 | MapConstValueIterator(const Map& pmap, const KeyIt& pit) |
---|
[844] | 453 | : Base(pit), map(&pmap) {} |
---|
[830] | 454 | |
---|
| 455 | /// The pre increment operator of the iterator. |
---|
| 456 | MapConstValueIterator& operator++() { |
---|
[844] | 457 | Base::increment(); |
---|
[830] | 458 | return *this; |
---|
| 459 | } |
---|
| 460 | |
---|
| 461 | /// The post increment operator of the iterator. |
---|
| 462 | MapConstValueIterator operator++(int) { |
---|
| 463 | MapConstValueIterator tmp(*this); |
---|
[844] | 464 | Base::increment(); |
---|
[830] | 465 | return tmp; |
---|
| 466 | } |
---|
| 467 | |
---|
| 468 | /// The dereferencing operator of the iterator. |
---|
| 469 | ConstReferenceType operator*() const { |
---|
[844] | 470 | return (*map)[Base::it]; |
---|
[830] | 471 | } |
---|
| 472 | |
---|
| 473 | /// The arrow operator of the iterator. |
---|
| 474 | ConstPointerType operator->() const { |
---|
| 475 | return &(operator*()); |
---|
| 476 | } |
---|
| 477 | |
---|
[844] | 478 | public: |
---|
| 479 | // STL compatibility typedefs. |
---|
| 480 | typedef std::input_iterator_tag iterator_category; |
---|
| 481 | typedef int difference_type; |
---|
| 482 | typedef ValueType value_type; |
---|
| 483 | typedef ConstReferenceType reference; |
---|
| 484 | typedef ConstPointerType pointer; |
---|
[822] | 485 | }; |
---|
| 486 | |
---|
[830] | 487 | |
---|
| 488 | /** This class makes from a map an iteratable set |
---|
| 489 | * which contains all the keys of the map. |
---|
| 490 | */ |
---|
| 491 | template <typename Map> |
---|
| 492 | class MapConstKeySet { |
---|
| 493 | |
---|
| 494 | const Map* map; |
---|
| 495 | |
---|
| 496 | public: |
---|
| 497 | |
---|
| 498 | /// The key type of the iterator. |
---|
| 499 | typedef typename Map::KeyType KeyType; |
---|
| 500 | /// The iterator to iterate on the keys. |
---|
| 501 | typedef typename Map::KeyIt KeyIt; |
---|
| 502 | |
---|
[844] | 503 | |
---|
| 504 | /// The value type of the iterator. |
---|
| 505 | typedef typename Map::ValueType ValueType; |
---|
| 506 | /// The reference type of the iterator. |
---|
| 507 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 508 | /// The pointer type of the iterator. |
---|
| 509 | typedef typename Map::PointerType PointerType; |
---|
| 510 | |
---|
| 511 | /// The const value type of the iterator. |
---|
| 512 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 513 | /// The const reference type of the iterator. |
---|
| 514 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 515 | /// The pointer type of the iterator. |
---|
| 516 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 517 | |
---|
[830] | 518 | /// The map initialized const key set. |
---|
| 519 | MapConstKeySet(const Map& pmap) : map(&pmap) {} |
---|
| 520 | |
---|
| 521 | /// The const iterator of the set. |
---|
| 522 | typedef MapKeyIterator<Map> ConstIterator; |
---|
| 523 | |
---|
| 524 | /// It gives back the const iterator pointed to the first element. |
---|
| 525 | ConstIterator begin() const { |
---|
| 526 | return ConstIterator(KeyIt(*map->getGraph())); |
---|
| 527 | } |
---|
| 528 | |
---|
| 529 | /// It gives back the const iterator pointed to the first ivalid element. |
---|
| 530 | ConstIterator end() const { |
---|
| 531 | return ConstIterator(KeyIt(INVALID)); |
---|
| 532 | } |
---|
[844] | 533 | |
---|
| 534 | public: |
---|
| 535 | // STL compatibility typedefs. |
---|
| 536 | typedef ValueType value_type; |
---|
| 537 | typedef ConstIterator const_iterator; |
---|
| 538 | typedef ConstReferenceType const_reference; |
---|
| 539 | typedef ConstPointerType const_pointer; |
---|
| 540 | typedef int difference_type; |
---|
[830] | 541 | }; |
---|
| 542 | |
---|
| 543 | /** This class makes from a map an iteratable set |
---|
| 544 | * which contains all the values of the map. |
---|
| 545 | * The values cannot be modified. |
---|
| 546 | */ |
---|
| 547 | template <typename Map> |
---|
| 548 | class MapConstValueSet { |
---|
| 549 | |
---|
| 550 | const Map* map; |
---|
| 551 | |
---|
| 552 | public: |
---|
| 553 | |
---|
| 554 | /// The key type of the iterator. |
---|
| 555 | typedef typename Map::KeyType KeyType; |
---|
| 556 | /// The iterator to iterate on the keys. |
---|
| 557 | typedef typename Map::KeyIt KeyIt; |
---|
| 558 | |
---|
[844] | 559 | |
---|
| 560 | /// The value type of the iterator. |
---|
| 561 | typedef typename Map::ValueType ValueType; |
---|
| 562 | /// The reference type of the iterator. |
---|
| 563 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 564 | /// The pointer type of the iterator. |
---|
| 565 | typedef typename Map::PointerType PointerType; |
---|
| 566 | |
---|
| 567 | /// The const value type of the iterator. |
---|
| 568 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 569 | /// The const reference type of the iterator. |
---|
| 570 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 571 | /// The pointer type of the iterator. |
---|
| 572 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 573 | |
---|
[830] | 574 | /// The map initialized const value set. |
---|
| 575 | MapConstValueSet(const Map& pmap) : map(&pmap) {} |
---|
| 576 | |
---|
| 577 | /// The const iterator of the set. |
---|
| 578 | typedef MapConstValueIterator<Map> ConstIterator; |
---|
| 579 | |
---|
| 580 | /// It gives back the const iterator pointed to the first element. |
---|
| 581 | ConstIterator begin() const { |
---|
| 582 | return ConstIterator(*map, KeyIt(*map->getGraph())); |
---|
| 583 | } |
---|
| 584 | |
---|
| 585 | /// It gives back the const iterator pointed to the first invalid element. |
---|
| 586 | ConstIterator end() const { |
---|
| 587 | return ConstIterator(*map, KeyIt(INVALID)); |
---|
| 588 | } |
---|
[844] | 589 | |
---|
| 590 | public: |
---|
| 591 | // STL compatibility typedefs. |
---|
| 592 | typedef ValueType value_type; |
---|
| 593 | typedef ConstIterator const_iterator; |
---|
| 594 | typedef ConstReferenceType const_reference; |
---|
| 595 | typedef ConstPointerType const_pointer; |
---|
| 596 | typedef int difference_type; |
---|
[830] | 597 | }; |
---|
| 598 | |
---|
| 599 | |
---|
| 600 | /** This class makes from a map an iteratable set |
---|
| 601 | * which contains all the values of the map. |
---|
| 602 | * The values can be modified. |
---|
| 603 | */ |
---|
| 604 | template <typename Map> |
---|
| 605 | class MapValueSet { |
---|
| 606 | |
---|
| 607 | Map* map; |
---|
| 608 | |
---|
| 609 | public: |
---|
| 610 | |
---|
| 611 | /// The key type of the iterator. |
---|
| 612 | typedef typename Map::KeyType KeyType; |
---|
| 613 | /// The iterator to iterate on the keys. |
---|
| 614 | typedef typename Map::KeyIt KeyIt; |
---|
| 615 | |
---|
[844] | 616 | |
---|
| 617 | /// The value type of the iterator. |
---|
| 618 | typedef typename Map::ValueType ValueType; |
---|
| 619 | /// The reference type of the iterator. |
---|
| 620 | typedef typename Map::ReferenceType ReferenceType; |
---|
| 621 | /// The pointer type of the iterator. |
---|
| 622 | typedef typename Map::PointerType PointerType; |
---|
| 623 | |
---|
| 624 | /// The const value type of the iterator. |
---|
| 625 | typedef typename Map::ConstValueType ConstValueType; |
---|
| 626 | /// The const reference type of the iterator. |
---|
| 627 | typedef typename Map::ConstReferenceType ConstReferenceType; |
---|
| 628 | /// The pointer type of the iterator. |
---|
| 629 | typedef typename Map::ConstPointerType ConstPointerType; |
---|
| 630 | |
---|
[830] | 631 | /// The map initialized value set. |
---|
| 632 | MapValueSet(Map& pmap) : map(&pmap) {} |
---|
| 633 | |
---|
| 634 | /// The const iterator of the set. |
---|
| 635 | typedef MapConstValueIterator<Map> ConstIterator; |
---|
| 636 | |
---|
| 637 | /// It gives back the const iterator pointed to the first element. |
---|
| 638 | ConstIterator begin() const { |
---|
| 639 | return ConstIterator(*map, KeyIt(*map->getGraph())); |
---|
| 640 | } |
---|
| 641 | |
---|
| 642 | /// It gives back the const iterator pointed to the first invalid element. |
---|
| 643 | ConstIterator end() const { |
---|
| 644 | return ConstIterator(*map, KeyIt(INVALID)); |
---|
| 645 | } |
---|
| 646 | |
---|
| 647 | /// The iterator of the set. |
---|
| 648 | typedef MapValueIterator<Map> Iterator; |
---|
| 649 | |
---|
| 650 | /// It gives back the iterator pointed to the first element. |
---|
| 651 | Iterator begin() { |
---|
| 652 | return Iterator(*map, KeyIt(*map->getGraph())); |
---|
| 653 | } |
---|
| 654 | |
---|
| 655 | /// It gives back the iterator pointed to the first invalid element. |
---|
| 656 | Iterator end() { |
---|
| 657 | return Iterator(*map, KeyIt(INVALID)); |
---|
| 658 | } |
---|
| 659 | |
---|
[844] | 660 | public: |
---|
| 661 | // STL compatibility typedefs. |
---|
| 662 | typedef ValueType value_type; |
---|
| 663 | typedef Iterator iterator; |
---|
| 664 | typedef ConstIterator const_iterator; |
---|
| 665 | typedef ReferenceType reference; |
---|
| 666 | typedef ConstReferenceType const_reference; |
---|
| 667 | typedef PointerType pointer; |
---|
| 668 | typedef ConstPointerType const_pointer; |
---|
| 669 | typedef int difference_type; |
---|
| 670 | |
---|
[830] | 671 | }; |
---|
| 672 | |
---|
| 673 | /// @} |
---|
| 674 | |
---|
[822] | 675 | } |
---|
| 676 | |
---|
| 677 | #endif |
---|