deba@57: /* -*- C++ -*- deba@57: * deba@57: * This file is a part of LEMON, a generic C++ optimization library deba@57: * deba@57: * Copyright (C) 2003-2007 deba@57: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport deba@57: * (Egervary Research Group on Combinatorial Optimization, EGRES). deba@57: * deba@57: * Permission to use, modify and distribute this software is granted deba@57: * provided that this copyright notice appears in all copies. For deba@57: * precise terms see the accompanying LICENSE file. deba@57: * deba@57: * This software is provided "AS IS" with no warranty of any kind, deba@57: * express or implied, and with no claim as to its suitability for any deba@57: * purpose. deba@57: * deba@57: */ deba@57: deba@57: #ifndef LEMON_BITS_ARRAY_MAP_H deba@57: #define LEMON_BITS_ARRAY_MAP_H deba@57: deba@57: #include deba@57: deba@57: #include deba@57: #include deba@57: #include deba@57: #include deba@57: deba@57: /// \ingroup graphbits deba@57: /// \file deba@57: /// \brief Graph map based on the array storage. deba@57: deba@57: namespace lemon { deba@57: deba@57: /// \ingroup graphbits deba@57: /// deba@57: /// \brief Graph map based on the array storage. deba@57: /// deba@57: /// The ArrayMap template class is graph map structure what deba@57: /// automatically updates the map when a key is added to or erased from deba@57: /// the map. This map uses the allocators to implement deba@57: /// the container functionality. deba@57: /// deba@57: /// The template parameters are the Graph the current Item type and deba@57: /// the Value type of the map. deba@57: template deba@57: class ArrayMap deba@57: : public ItemSetTraits<_Graph, _Item>::ItemNotifier::ObserverBase { deba@57: public: deba@57: /// The graph type of the maps. deba@57: typedef _Graph Graph; deba@57: /// The item type of the map. deba@57: typedef _Item Item; deba@57: /// The reference map tag. deba@57: typedef True ReferenceMapTag; deba@57: deba@57: /// The key type of the maps. deba@57: typedef _Item Key; deba@57: /// The value type of the map. deba@57: typedef _Value Value; deba@57: deba@57: /// The const reference type of the map. deba@57: typedef const _Value& ConstReference; deba@57: /// The reference type of the map. deba@57: typedef _Value& Reference; deba@57: deba@57: /// The notifier type. deba@57: typedef typename ItemSetTraits<_Graph, _Item>::ItemNotifier Notifier; deba@57: deba@57: /// The MapBase of the Map which imlements the core regisitry function. deba@57: typedef typename Notifier::ObserverBase Parent; deba@57: deba@57: private: deba@57: typedef std::allocator Allocator; deba@57: deba@57: public: deba@57: deba@57: /// \brief Graph initialized map constructor. deba@57: /// deba@57: /// Graph initialized map constructor. deba@57: explicit ArrayMap(const Graph& graph) { deba@57: Parent::attach(graph.notifier(Item())); deba@57: allocate_memory(); deba@57: Notifier* nf = Parent::notifier(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it);; deba@57: allocator.construct(&(values[id]), Value()); deba@57: } deba@57: } deba@57: deba@57: /// \brief Constructor to use default value to initialize the map. deba@57: /// deba@57: /// It constructs a map and initialize all of the the map. deba@57: ArrayMap(const Graph& graph, const Value& value) { deba@57: Parent::attach(graph.notifier(Item())); deba@57: allocate_memory(); deba@57: Notifier* nf = Parent::notifier(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it);; deba@57: allocator.construct(&(values[id]), value); deba@57: } deba@57: } deba@57: deba@57: /// \brief Constructor to copy a map of the same map type. deba@57: /// deba@57: /// Constructor to copy a map of the same map type. deba@57: ArrayMap(const ArrayMap& copy) : Parent() { deba@57: if (copy.attached()) { deba@57: attach(*copy.notifier()); deba@57: } deba@57: capacity = copy.capacity; deba@57: if (capacity == 0) return; deba@57: values = allocator.allocate(capacity); deba@57: Notifier* nf = Parent::notifier(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it);; deba@57: allocator.construct(&(values[id]), copy.values[id]); deba@57: } deba@57: } deba@57: deba@57: /// \brief Assign operator. deba@57: /// deba@57: /// This operator assigns for each item in the map the deba@57: /// value mapped to the same item in the copied map. deba@57: /// The parameter map should be indiced with the same deba@57: /// itemset because this assign operator does not change deba@57: /// the container of the map. deba@57: ArrayMap& operator=(const ArrayMap& cmap) { deba@57: return operator=(cmap); deba@57: } deba@57: deba@57: deba@57: /// \brief Template assign operator. deba@57: /// deba@57: /// The given parameter should be conform to the ReadMap deba@57: /// concecpt and could be indiced by the current item set of deba@57: /// the NodeMap. In this case the value for each item deba@57: /// is assigned by the value of the given ReadMap. deba@57: template deba@57: ArrayMap& operator=(const CMap& cmap) { deba@57: checkConcept, CMap>(); deba@57: const typename Parent::Notifier* nf = Parent::notifier(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: set(it, cmap[it]); deba@57: } deba@57: return *this; deba@57: } deba@57: deba@57: /// \brief The destructor of the map. deba@57: /// deba@57: /// The destructor of the map. deba@57: virtual ~ArrayMap() { deba@57: if (attached()) { deba@57: clear(); deba@57: detach(); deba@57: } deba@57: } deba@57: deba@57: protected: deba@57: deba@57: using Parent::attach; deba@57: using Parent::detach; deba@57: using Parent::attached; deba@57: deba@57: public: deba@57: deba@57: /// \brief The subscript operator. deba@57: /// deba@57: /// The subscript operator. The map can be subscripted by the deba@57: /// actual keys of the graph. deba@57: Value& operator[](const Key& key) { deba@57: int id = Parent::notifier()->id(key); deba@57: return values[id]; deba@57: } deba@57: deba@57: /// \brief The const subscript operator. deba@57: /// deba@57: /// The const subscript operator. The map can be subscripted by the deba@57: /// actual keys of the graph. deba@57: const Value& operator[](const Key& key) const { deba@57: int id = Parent::notifier()->id(key); deba@57: return values[id]; deba@57: } deba@57: deba@57: /// \brief Setter function of the map. deba@57: /// deba@57: /// Setter function of the map. Equivalent with map[key] = val. deba@57: /// This is a compatibility feature with the not dereferable maps. deba@57: void set(const Key& key, const Value& val) { deba@57: (*this)[key] = val; deba@57: } deba@57: deba@57: protected: deba@57: deba@57: /// \brief Adds a new key to the map. deba@57: /// deba@57: /// It adds a new key to the map. It called by the observer notifier deba@57: /// and it overrides the add() member function of the observer base. deba@57: virtual void add(const Key& key) { deba@57: Notifier* nf = Parent::notifier(); deba@57: int id = nf->id(key); deba@57: if (id >= capacity) { deba@57: int new_capacity = (capacity == 0 ? 1 : capacity); deba@57: while (new_capacity <= id) { deba@57: new_capacity <<= 1; deba@57: } deba@57: Value* new_values = allocator.allocate(new_capacity); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int jd = nf->id(it);; deba@57: if (id != jd) { deba@57: allocator.construct(&(new_values[jd]), values[jd]); deba@57: allocator.destroy(&(values[jd])); deba@57: } deba@57: } deba@57: if (capacity != 0) allocator.deallocate(values, capacity); deba@57: values = new_values; deba@57: capacity = new_capacity; deba@57: } deba@57: allocator.construct(&(values[id]), Value()); deba@57: } deba@57: deba@57: /// \brief Adds more new keys to the map. deba@57: /// deba@57: /// It adds more new keys to the map. It called by the observer notifier deba@57: /// and it overrides the add() member function of the observer base. deba@57: virtual void add(const std::vector& keys) { deba@57: Notifier* nf = Parent::notifier(); deba@57: int max_id = -1; deba@57: for (int i = 0; i < int(keys.size()); ++i) { deba@57: int id = nf->id(keys[i]); deba@57: if (id > max_id) { deba@57: max_id = id; deba@57: } deba@57: } deba@57: if (max_id >= capacity) { deba@57: int new_capacity = (capacity == 0 ? 1 : capacity); deba@57: while (new_capacity <= max_id) { deba@57: new_capacity <<= 1; deba@57: } deba@57: Value* new_values = allocator.allocate(new_capacity); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it); deba@57: bool found = false; deba@57: for (int i = 0; i < int(keys.size()); ++i) { deba@57: int jd = nf->id(keys[i]); deba@57: if (id == jd) { deba@57: found = true; deba@57: break; deba@57: } deba@57: } deba@57: if (found) continue; deba@57: allocator.construct(&(new_values[id]), values[id]); deba@57: allocator.destroy(&(values[id])); deba@57: } deba@57: if (capacity != 0) allocator.deallocate(values, capacity); deba@57: values = new_values; deba@57: capacity = new_capacity; deba@57: } deba@57: for (int i = 0; i < int(keys.size()); ++i) { deba@57: int id = nf->id(keys[i]); deba@57: allocator.construct(&(values[id]), Value()); deba@57: } deba@57: } deba@57: deba@57: /// \brief Erase a key from the map. deba@57: /// deba@57: /// Erase a key from the map. It called by the observer notifier deba@57: /// and it overrides the erase() member function of the observer base. deba@57: virtual void erase(const Key& key) { deba@57: int id = Parent::notifier()->id(key); deba@57: allocator.destroy(&(values[id])); deba@57: } deba@57: deba@57: /// \brief Erase more keys from the map. deba@57: /// deba@57: /// Erase more keys from the map. It called by the observer notifier deba@57: /// and it overrides the erase() member function of the observer base. deba@57: virtual void erase(const std::vector& keys) { deba@57: for (int i = 0; i < int(keys.size()); ++i) { deba@57: int id = Parent::notifier()->id(keys[i]); deba@57: allocator.destroy(&(values[id])); deba@57: } deba@57: } deba@57: deba@57: /// \brief Buildes the map. deba@57: /// deba@57: /// It buildes the map. It called by the observer notifier deba@57: /// and it overrides the build() member function of the observer base. deba@57: virtual void build() { deba@57: Notifier* nf = Parent::notifier(); deba@57: allocate_memory(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it);; deba@57: allocator.construct(&(values[id]), Value()); deba@57: } deba@57: } deba@57: deba@57: /// \brief Clear the map. deba@57: /// deba@57: /// It erase all items from the map. It called by the observer notifier deba@57: /// and it overrides the clear() member function of the observer base. deba@57: virtual void clear() { deba@57: Notifier* nf = Parent::notifier(); deba@57: if (capacity != 0) { deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: int id = nf->id(it); deba@57: allocator.destroy(&(values[id])); deba@57: } deba@57: allocator.deallocate(values, capacity); deba@57: capacity = 0; deba@57: } deba@57: } deba@57: deba@57: private: deba@57: deba@57: void allocate_memory() { deba@57: int max_id = Parent::notifier()->maxId(); deba@57: if (max_id == -1) { deba@57: capacity = 0; deba@57: values = 0; deba@57: return; deba@57: } deba@57: capacity = 1; deba@57: while (capacity <= max_id) { deba@57: capacity <<= 1; deba@57: } deba@57: values = allocator.allocate(capacity); deba@57: } deba@57: deba@57: int capacity; deba@57: Value* values; deba@57: Allocator allocator; deba@57: deba@57: }; deba@57: deba@57: } deba@57: deba@57: #endif