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