src/hugo/vector_map_factory.h
author alpar
Fri, 03 Sep 2004 14:26:03 +0000
changeset 797 a76d8d52b25c
parent 785 a9b0863c2265
child 798 6d1abeb62dd3
permissions -rw-r--r--
Skeleton for paths.
deba@782
     1
// -*- c++ -*-
deba@782
     2
#ifndef VECTOR_MAP_H
deba@782
     3
#define VECTOR_MAP_H
deba@782
     4
deba@782
     5
#include <vector>
deba@782
     6
deba@782
     7
#include <hugo/extended_pair.h>
deba@782
     8
alpar@785
     9
///\ingroup graphmapfactory
alpar@785
    10
///\file
alpar@785
    11
///\brief Vector based graph maps.
alpar@785
    12
deba@782
    13
namespace hugo {
alpar@785
    14
  
alpar@785
    15
  /// \addtogroup graphmapfactory
alpar@785
    16
  /// @{
alpar@785
    17
  
deba@782
    18
  /** The VectorMapFactory template class is a factory class
deba@782
    19
   *  to create maps for the edge and nodes. This map factory
deba@782
    20
   *  use the std::vector to implement the container function.
deba@782
    21
   *
deba@782
    22
   *  The template parameter is the MapRegistry that the maps
deba@782
    23
   *  will belong to.
deba@782
    24
   */
deba@782
    25
	
deba@782
    26
  template <typename MapRegistry>
deba@782
    27
  class VectorMapFactory {
deba@782
    28
  public:
deba@782
    29
		
deba@782
    30
    /// The graph type of the maps. 
deba@782
    31
    typedef typename MapRegistry::Graph Graph;
deba@782
    32
    /// The key type of the maps.
alpar@786
    33
    typedef typename MapRegistry::KeyType KeyType;
deba@782
    34
    /// The iterator to iterate on the keys.
deba@782
    35
    typedef typename MapRegistry::KeyIt KeyIt;
deba@782
    36
deba@782
    37
    /// The MapBase of the Map which imlements the core regisitry function.
deba@782
    38
    typedef typename MapRegistry::MapBase MapBase;
deba@782
    39
deba@782
    40
		
deba@782
    41
    /** The template Map type.
deba@782
    42
     */
deba@782
    43
    template <typename V> 
deba@782
    44
    class Map : public MapBase {
deba@782
    45
    public:
deba@782
    46
deba@782
    47
      /// The value type of the map.
deba@782
    48
      typedef V Value;
deba@782
    49
deba@782
    50
      typedef std::vector<Value> Container;	
deba@782
    51
deba@782
    52
      /** Default constructor for the map.
deba@782
    53
       */
deba@782
    54
      Map() {}
deba@782
    55
		
deba@782
    56
      /** Graph and Registry initialized map constructor.
deba@782
    57
       */
deba@782
    58
      Map(const Graph& g, MapRegistry& r) : MapBase(g, r) {
deba@782
    59
	init();
deba@782
    60
      }
deba@782
    61
deba@782
    62
      /** Constructor to use default value to initialize the map. 
deba@782
    63
       */
deba@782
    64
      Map(const Graph& g, MapRegistry& r, const Value& v) : MapBase(g, r) {
deba@782
    65
	for (KeyIt it(*getGraph()); it != INVALID; ++it) {
deba@782
    66
          int id = getGraph()->id(it);
deba@782
    67
	  if (id >= container.size()) {
deba@782
    68
	    container.resize(id + 1);
deba@782
    69
	  }
deba@782
    70
	  set(it, v);
deba@782
    71
        }
deba@782
    72
      }
deba@782
    73
deba@782
    74
      /** Constructor to copy a map of an other map type.
deba@782
    75
       */
deba@782
    76
      template <typename CMap> Map(const CMap& copy) : MapBase(copy) {
deba@782
    77
	if (getGraph()) {
deba@782
    78
	  for (KeyIt it(*getGraph()); it != INVALID; ++it) {
deba@782
    79
	    int id = getGraph()->id(it);
deba@782
    80
	    if (id >= container.size()) {
deba@782
    81
	      container.resize(id + 1);
deba@782
    82
	    }
deba@782
    83
	    set(it, copy[it]);
deba@782
    84
	  }
deba@782
    85
	}
deba@782
    86
      }
deba@782
    87
deba@782
    88
      /** Assign operator to copy a map an other map type.
deba@782
    89
       */
deba@782
    90
      template <typename CMap> Map& operator=(const CMap& copy) {
deba@782
    91
	if (getGraph()) {
deba@782
    92
	  destroy();
deba@782
    93
	} 
deba@782
    94
	this->MapBase::operator=(copy);
deba@782
    95
	if (getGraph()) {
deba@782
    96
	  for (KeyIt it(*getGraph()); it != INVALID; ++it) {
deba@782
    97
	    int id = getGraph()->id(it);
deba@782
    98
	    if (id >= container.size()) {
deba@782
    99
	      container.resize(id + 1);
deba@782
   100
	    }
deba@782
   101
	    set(it, copy[it]);
deba@782
   102
	  }
deba@782
   103
	}
deba@782
   104
      }
deba@782
   105
deba@782
   106
      /** The destructor of the map.
deba@782
   107
       */
deba@782
   108
      virtual ~Map() {
deba@782
   109
      }
deba@782
   110
		
deba@782
   111
      /**
deba@782
   112
       * The subscript operator. The map can be subscripted by the
deba@782
   113
       * actual keys of the graph. 
deba@782
   114
       */
alpar@786
   115
      typename Container::reference operator[](const KeyType& key) {
deba@782
   116
	int id = getGraph()->id(key);
deba@782
   117
	return container[id];
deba@782
   118
      } 
deba@782
   119
		
deba@782
   120
      /**
deba@782
   121
       * The const subscript operator. The map can be subscripted by the
deba@782
   122
       * actual keys of the graph. 
deba@782
   123
       */
alpar@786
   124
      typename Container::const_reference operator[](const KeyType& key) const {
deba@782
   125
	int id = getGraph()->id(key);
deba@782
   126
	return container[id];
deba@782
   127
      }
deba@782
   128
deba@782
   129
      /** Setter function of the map. Equivalent with map[key] = val.
deba@782
   130
       *  This is a compatibility feature with the not dereferable maps.
deba@782
   131
       */
alpar@786
   132
      void set(const KeyType& key, const Value& val) {
deba@782
   133
	int id = getGraph()->id(key);
deba@782
   134
	container[id] = val;
deba@782
   135
      }
deba@782
   136
		
deba@782
   137
      /** Add a new key to the map. It called by the map registry.
deba@782
   138
       */
alpar@786
   139
      void add(const KeyType& key) {
deba@782
   140
	int id = getGraph()->id(key);
deba@782
   141
	if (id >= container.size()) {
deba@782
   142
	  container.resize(id + 1);
deba@782
   143
	}
deba@782
   144
      }
deba@782
   145
		
deba@782
   146
      /** Erase a key from the map. It called by the map registry.
deba@782
   147
       */
alpar@786
   148
      void erase(const KeyType& key) {}
deba@782
   149
deba@782
   150
      /** Clear the data structure.
deba@782
   151
       */
deba@782
   152
      void clear() { 
deba@782
   153
	container.clear();
deba@782
   154
      }
deba@782
   155
deba@782
   156
      /** Compatible iterator with the stl maps' iterators.
deba@782
   157
       *  It iterates on pairs of a key and a value.
deba@782
   158
       */
deba@782
   159
      class iterator {
deba@782
   160
	friend class Map;
deba@782
   161
	friend class const_iterator;
deba@782
   162
      private:
deba@782
   163
deba@782
   164
	/** Private constructor to initalize the the iterators returned
deba@782
   165
	 *  by the begin() and end().
deba@782
   166
	 */
deba@782
   167
	iterator (Map& pmap, const KeyIt& pit) : map(&pmap), it(pit) {}
deba@782
   168
deba@782
   169
      public:
deba@782
   170
deba@782
   171
	/** Default constructor. 
deba@782
   172
	 */
deba@782
   173
	iterator() {}
deba@782
   174
alpar@786
   175
	typedef extended_pair<const KeyType&, const KeyType&, 
deba@782
   176
			      Value&, Value&> Reference;
deba@782
   177
deba@782
   178
	/** Dereference operator for map.
deba@782
   179
	 */	 
deba@782
   180
	Reference operator*() {
deba@782
   181
	  return Reference(it, (*map)[it]);
deba@782
   182
	}
deba@782
   183
deba@782
   184
	class Pointer {
deba@782
   185
	  friend class iterator;
deba@782
   186
	private:
deba@782
   187
	  Reference data;
alpar@786
   188
	  Pointer(const KeyType& key, Value& val) : data(key, val) {}
deba@782
   189
	public:
deba@782
   190
	  Reference* operator->() {return &data;}
deba@782
   191
	};
deba@782
   192
deba@782
   193
	/** Arrow operator for map.
deba@782
   194
	 */	 
deba@782
   195
	Pointer operator->() {
deba@782
   196
	  return Pointer(it, ((*map)[it])); 
deba@782
   197
	}
deba@782
   198
deba@782
   199
	/** The pre increment operator of the map.
deba@782
   200
	 */
deba@782
   201
	iterator& operator++() { 
deba@782
   202
	  ++it; 
deba@782
   203
	  return *this; 
deba@782
   204
	}
deba@782
   205
deba@782
   206
	/** The post increment operator of the map.
deba@782
   207
	 */
deba@782
   208
	iterator operator++(int) { 
deba@782
   209
	  iterator tmp(it); 
deba@782
   210
	  ++it; 
deba@782
   211
	  return tmp; 
deba@782
   212
	}
deba@782
   213
deba@782
   214
	/** The equality operator of the map.
deba@782
   215
	 */
deba@782
   216
	bool operator==(const_iterator p_it) {
deba@782
   217
	  return p_it.it == it;
deba@782
   218
	}
deba@782
   219
	
deba@782
   220
	/** The not-equality operator of the map.
deba@782
   221
	 */
deba@782
   222
	bool operator!=(const_iterator p_it) {
deba@782
   223
	  return !(*this == p_it);
deba@782
   224
	}
deba@782
   225
deba@782
   226
	
deba@782
   227
      private:
deba@782
   228
	Map* map;
deba@782
   229
	KeyIt it;
deba@782
   230
      };
deba@782
   231
deba@782
   232
      /** Returns the begin iterator of the map.
deba@782
   233
       */
deba@782
   234
      iterator begin() {
deba@782
   235
	return iterator(*this, KeyIt(*getGraph()));
deba@782
   236
      }
deba@782
   237
deba@782
   238
      /** Returns the end iterator of the map.
deba@782
   239
       */
deba@782
   240
      iterator end() {
deba@782
   241
	return iterator(*this, INVALID);
deba@782
   242
      }
deba@782
   243
deba@782
   244
      class const_iterator {
deba@782
   245
	friend class Map;
deba@782
   246
	friend class iterator;
deba@782
   247
      private:
deba@782
   248
deba@782
   249
	/** Private constructor to initalize the the iterators returned
deba@782
   250
	 *  by the begin() and end().
deba@782
   251
	 */
deba@782
   252
	const_iterator (const Map& pmap, const KeyIt& pit) 
deba@782
   253
	  : map(&pmap), it(pit) {}
deba@782
   254
deba@782
   255
      public:
deba@782
   256
deba@782
   257
	/** Default constructor. 
deba@782
   258
	 */
deba@782
   259
	const_iterator() {}
deba@782
   260
deba@782
   261
	/** Constructor to convert iterator to const_iterator.
deba@782
   262
	 */
deba@782
   263
	const_iterator(iterator p_it) : map(p_it.map), it(p_it.it) {}
deba@782
   264
      
alpar@786
   265
	typedef extended_pair<const KeyType&, const KeyType&, 
deba@782
   266
	  const Value&, const Value&> Reference;
deba@782
   267
deba@782
   268
	/** Dereference operator for map.
deba@782
   269
	 */	 
deba@782
   270
	Reference operator*() {
deba@782
   271
	  return Reference(it, (*map)[it]);
deba@782
   272
	}
deba@782
   273
deba@782
   274
deba@782
   275
	class Pointer {
deba@782
   276
	  friend class const_iterator;
deba@782
   277
	private:
deba@782
   278
	  Reference data;
alpar@786
   279
	  Pointer(const KeyType& key, const Value& val) : data(key, val) {}
deba@782
   280
	public:
deba@782
   281
	  Reference* operator->() {return &data;}
deba@782
   282
	};
deba@782
   283
deba@782
   284
	/** Arrow operator for map.
deba@782
   285
	 */	 
deba@782
   286
	Pointer operator->() {
deba@782
   287
	  return Pointer(it, ((*map)[it])); 
deba@782
   288
	}
deba@782
   289
deba@782
   290
	/** The pre increment operator of the map.
deba@782
   291
	 */
deba@782
   292
	const_iterator& operator++() { 
deba@782
   293
	  ++it; 
deba@782
   294
	  return *this; 
deba@782
   295
	}
deba@782
   296
deba@782
   297
	/** The post increment operator of the map.
deba@782
   298
	 */
deba@782
   299
	const_iterator operator++(int) { 
deba@782
   300
	  const_iterator tmp(it); 
deba@782
   301
	  ++it; 
deba@782
   302
	  return tmp; 
deba@782
   303
	}
deba@782
   304
deba@782
   305
	/** The equality operator of the map.
deba@782
   306
	 */
deba@782
   307
	bool operator==(const_iterator p_it) {
deba@782
   308
	  return p_it.it == it;
deba@782
   309
	}
deba@782
   310
	
deba@782
   311
	/** The not-equality operator of the map.
deba@782
   312
	 */
deba@782
   313
	bool operator!=(const_iterator p_it) {
deba@782
   314
	  return !(*this == p_it);
deba@782
   315
	}
deba@782
   316
	
deba@782
   317
deba@782
   318
      private:
deba@782
   319
	const Map* map;
deba@782
   320
	KeyIt it;
deba@782
   321
      };
deba@782
   322
deba@782
   323
      /** Returns the begin const_iterator of the map.
deba@782
   324
       */
deba@782
   325
      const_iterator begin() const {
deba@782
   326
	return const_iterator(*this, KeyIt(*getGraph()));
deba@782
   327
      }
deba@782
   328
deba@782
   329
      /** Returns the end const_iterator of the map.
deba@782
   330
       */
deba@782
   331
      const_iterator end() const {
deba@782
   332
	return const_iterator(*this, INVALID);
deba@782
   333
      }
deba@782
   334
deba@782
   335
      private:
deba@782
   336
		
deba@782
   337
      Container container;
deba@782
   338
deba@782
   339
    };
deba@782
   340
		
deba@782
   341
  };
deba@782
   342
alpar@785
   343
  
alpar@785
   344
  /// @}
alpar@785
   345
  
alpar@785
   346
deba@782
   347
}
deba@782
   348
deba@782
   349
#endif