Port graph_to_eps() and Color from svn -r3482.
     3  * This file is a part of LEMON, a generic C++ optimization library
 
     5  * Copyright (C) 2003-2008
 
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
 
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
 
     9  * Permission to use, modify and distribute this software is granted
 
    10  * provided that this copyright notice appears in all copies. For
 
    11  * precise terms see the accompanying LICENSE file.
 
    13  * This software is provided "AS IS" with no warranty of any kind,
 
    14  * express or implied, and with no claim as to its suitability for any
 
    19 #ifndef LEMON_BITS_ALTERATION_NOTIFIER_H
 
    20 #define LEMON_BITS_ALTERATION_NOTIFIER_H
 
    25 #include <lemon/bits/utility.h>
 
    29 ///\brief Observer notifier for graph alteration observers.
 
    33   /// \ingroup graphbits
 
    35   /// \brief Notifier class to notify observes about alterations in 
 
    38   /// The simple graph's can be refered as two containers, one node container
 
    39   /// and one edge container. But they are not standard containers they
 
    40   /// does not store values directly they are just key continars for more
 
    41   /// value containers which are the node and edge maps.
 
    43   /// The graph's node and edge sets can be changed as we add or erase
 
    44   /// nodes and edges in the graph. Lemon would like to handle easily
 
    45   /// that the node and edge maps should contain values for all nodes or
 
    46   /// edges. If we want to check on every indicing if the map contains
 
    47   /// the current indicing key that cause a drawback in the performance
 
    48   /// in the library. We use another solution we notify all maps about
 
    49   /// an alteration in the graph, which cause only drawback on the
 
    50   /// alteration of the graph.
 
    52   /// This class provides an interface to the container. The \e first() and \e 
 
    53   /// next() member functions make possible to iterate on the keys of the
 
    54   /// container. The \e id() function returns an integer id for each key.
 
    55   /// The \e maxId() function gives back an upper bound of the ids.
 
    57   /// For the proper functonality of this class, we should notify it
 
    58   /// about each alteration in the container. The alterations have four type
 
    59   /// as \e add(), \e erase(), \e build() and \e clear(). The \e add() and
 
    60   /// \e erase() signals that only one or few items added or erased to or
 
    61   /// from the graph. If all items are erased from the graph or from an empty
 
    62   /// graph a new graph is builded then it can be signaled with the
 
    63   /// clear() and build() members. Important rule that if we erase items 
 
    64   /// from graph we should first signal the alteration and after that erase
 
    65   /// them from the container, on the other way on item addition we should
 
    66   /// first extend the container and just after that signal the alteration.
 
    68   /// The alteration can be observed with a class inherited from the
 
    69   /// \e ObserverBase nested class. The signals can be handled with
 
    70   /// overriding the virtual functions defined in the base class.  The
 
    71   /// observer base can be attached to the notifier with the 
 
    72   /// \e attach() member and can be detached with detach() function. The
 
    73   /// alteration handlers should not call any function which signals
 
    74   /// an other alteration in the same notifier and should not
 
    75   /// detach any observer from the notifier.
 
    77   /// Alteration observers try to be exception safe. If an \e add() or
 
    78   /// a \e clear() function throws an exception then the remaining
 
    79   /// observeres will not be notified and the fulfilled additions will
 
    80   /// be rolled back by calling the \e erase() or \e clear()
 
    81   /// functions. Thence the \e erase() and \e clear() should not throw
 
    82   /// exception. Actullay, it can be throw only 
 
    83   /// \ref AlterationObserver::ImmediateDetach ImmediateDetach
 
    84   /// exception which detach the observer from the notifier.
 
    86   /// There are some place when the alteration observing is not completly
 
    87   /// reliable. If we want to carry out the node degree in the graph
 
    88   /// as in the \ref InDegMap and we use the reverseEdge that cause 
 
    89   /// unreliable functionality. Because the alteration observing signals
 
    90   /// only erasing and adding but not the reversing it will stores bad
 
    91   /// degrees. The sub graph adaptors cannot signal the alterations because
 
    92   /// just a setting in the filter map can modify the graph and this cannot
 
    93   /// be watched in any way.
 
    95   /// \param _Container The container which is observed.
 
    96   /// \param _Item The item type which is obserbved.
 
    98   /// \author Balazs Dezso
 
   100   template <typename _Container, typename _Item>
 
   101   class AlterationNotifier {
 
   104     typedef True Notifier;
 
   106     typedef _Container Container;
 
   109     /// \brief Exception which can be called from \e clear() and 
 
   112     /// From the \e clear() and \e erase() function only this
 
   113     /// exception is allowed to throw. The exception immediatly
 
   114     /// detaches the current observer from the notifier. Because the
 
   115     /// \e clear() and \e erase() should not throw other exceptions
 
   116     /// it can be used to invalidate the observer.
 
   117     struct ImmediateDetach {};
 
   119     /// \brief ObserverBase is the base class for the observers.
 
   121     /// ObserverBase is the abstract base class for the observers.
 
   122     /// It will be notified about an item was inserted into or
 
   123     /// erased from the graph.
 
   125     /// The observer interface contains some pure virtual functions
 
   126     /// to override. The add() and erase() functions are
 
   127     /// to notify the oberver when one item is added or
 
   130     /// The build() and clear() members are to notify the observer
 
   131     /// about the container is built from an empty container or
 
   132     /// is cleared to an empty container. 
 
   134     /// \author Balazs Dezso
 
   138       typedef AlterationNotifier Notifier;
 
   140       friend class AlterationNotifier;
 
   142       /// \brief Default constructor.
 
   144       /// Default constructor for ObserverBase.
 
   146       ObserverBase() : _notifier(0) {}
 
   148       /// \brief Constructor which attach the observer into notifier.
 
   150       /// Constructor which attach the observer into notifier.
 
   151       ObserverBase(AlterationNotifier& nf) {
 
   155       /// \brief Constructor which attach the obserever to the same notifier.
 
   157       /// Constructor which attach the obserever to the same notifier as
 
   158       /// the other observer is attached to. 
 
   159       ObserverBase(const ObserverBase& copy) {
 
   160 	if (copy.attached()) {
 
   161           attach(*copy.notifier());
 
   165       /// \brief Destructor
 
   166       virtual ~ObserverBase() {
 
   172       /// \brief Attaches the observer into an AlterationNotifier.
 
   174       /// This member attaches the observer into an AlterationNotifier.
 
   176       void attach(AlterationNotifier& nf) {
 
   180       /// \brief Detaches the observer into an AlterationNotifier.
 
   182       /// This member detaches the observer from an AlterationNotifier.
 
   185         _notifier->detach(*this);
 
   188       /// \brief Gives back a pointer to the notifier which the map 
 
   191       /// This function gives back a pointer to the notifier which the map
 
   194       Notifier* notifier() const { return const_cast<Notifier*>(_notifier); }
 
   196       /// Gives back true when the observer is attached into a notifier.
 
   197       bool attached() const { return _notifier != 0; }
 
   201       ObserverBase& operator=(const ObserverBase& copy);
 
   206       typename std::list<ObserverBase*>::iterator _index;
 
   208       /// \brief The member function to notificate the observer about an
 
   209       /// item is added to the container.
 
   211       /// The add() member function notificates the observer about an item
 
   212       /// is added to the container. It have to be overrided in the
 
   214       virtual void add(const Item&) = 0;
 
   216       /// \brief The member function to notificate the observer about 
 
   217       /// more item is added to the container.
 
   219       /// The add() member function notificates the observer about more item
 
   220       /// is added to the container. It have to be overrided in the
 
   222       virtual void add(const std::vector<Item>& items) = 0;
 
   224       /// \brief The member function to notificate the observer about an
 
   225       /// item is erased from the container.
 
   227       /// The erase() member function notificates the observer about an
 
   228       /// item is erased from the container. It have to be overrided in
 
   230       virtual void erase(const Item&) = 0;
 
   232       /// \brief The member function to notificate the observer about 
 
   233       /// more item is erased from the container.
 
   235       /// The erase() member function notificates the observer about more item
 
   236       /// is erased from the container. It have to be overrided in the
 
   238       virtual void erase(const std::vector<Item>& items) = 0;
 
   240       /// \brief The member function to notificate the observer about the
 
   241       /// container is built.
 
   243       /// The build() member function notificates the observer about the
 
   244       /// container is built from an empty container. It have to be
 
   245       /// overrided in the subclasses.
 
   247       virtual void build() = 0;
 
   249       /// \brief The member function to notificate the observer about all
 
   250       /// items are erased from the container.
 
   252       /// The clear() member function notificates the observer about all
 
   253       /// items are erased from the container. It have to be overrided in
 
   255       virtual void clear() = 0;
 
   261     const Container* container;
 
   263     typedef std::list<ObserverBase*> Observers; 
 
   264     Observers _observers;
 
   269     /// \brief Default constructor.
 
   271     /// The default constructor of the AlterationNotifier. 
 
   272     /// It creates an empty notifier.
 
   276     /// \brief Constructor.
 
   278     /// Constructor with the observed container parameter.
 
   279     AlterationNotifier(const Container& _container) 
 
   280       : container(&_container) {}
 
   282     /// \brief Copy Constructor of the AlterationNotifier. 
 
   284     /// Copy constructor of the AlterationNotifier. 
 
   285     /// It creates only an empty notifier because the copiable
 
   286     /// notifier's observers have to be registered still into that notifier.
 
   287     AlterationNotifier(const AlterationNotifier& _notifier) 
 
   288       : container(_notifier.container) {}
 
   290     /// \brief Destructor.
 
   292     /// Destructor of the AlterationNotifier.
 
   294     ~AlterationNotifier() {
 
   295       typename Observers::iterator it;
 
   296       for (it = _observers.begin(); it != _observers.end(); ++it) {
 
   297 	(*it)->_notifier = 0;
 
   301     /// \brief Sets the container.
 
   303     /// Sets the container.
 
   304     void setContainer(const Container& _container) {
 
   305       container = &_container;
 
   310     AlterationNotifier& operator=(const AlterationNotifier&);
 
   316     /// \brief First item in the container.
 
   318     /// Returns the first item in the container. It is
 
   319     /// for start the iteration on the container.
 
   320     void first(Item& item) const {
 
   321       container->first(item);
 
   324     /// \brief Next item in the container.
 
   326     /// Returns the next item in the container. It is
 
   327     /// for iterate on the container.
 
   328     void next(Item& item) const {
 
   329       container->next(item);
 
   332     /// \brief Returns the id of the item.
 
   334     /// Returns the id of the item provided by the container.
 
   335     int id(const Item& item) const {
 
   336       return container->id(item);
 
   339     /// \brief Returns the maximum id of the container.
 
   341     /// Returns the maximum id of the container.
 
   343       return container->maxId(Item());
 
   348     void attach(ObserverBase& observer) {
 
   349       observer._index = _observers.insert(_observers.begin(), &observer);
 
   350       observer._notifier = this;
 
   353     void detach(ObserverBase& observer) {
 
   354       _observers.erase(observer._index);
 
   355       observer._index = _observers.end();
 
   356       observer._notifier = 0;
 
   361     /// \brief Notifies all the registed observers about an item added to 
 
   364     /// It notifies all the registed observers about an item added to 
 
   367     void add(const Item& item) {
 
   368       typename Observers::reverse_iterator it;
 
   370         for (it = _observers.rbegin(); it != _observers.rend(); ++it) {
 
   374         typename Observers::iterator jt;
 
   375         for (jt = it.base(); jt != _observers.end(); ++jt) {
 
   382     /// \brief Notifies all the registed observers about more item added to 
 
   385     /// It notifies all the registed observers about more item added to 
 
   388     void add(const std::vector<Item>& items) {
 
   389       typename Observers::reverse_iterator it;
 
   391         for (it = _observers.rbegin(); it != _observers.rend(); ++it) {
 
   395         typename Observers::iterator jt;
 
   396         for (jt = it.base(); jt != _observers.end(); ++jt) {
 
   403     /// \brief Notifies all the registed observers about an item erased from 
 
   406     /// It notifies all the registed observers about an item erased from 
 
   409     void erase(const Item& item) throw() {
 
   410       typename Observers::iterator it = _observers.begin();
 
   411       while (it != _observers.end()) {
 
   415         } catch (const ImmediateDetach&) {
 
   416           it = _observers.erase(it);
 
   417           (*it)->_index = _observers.end();
 
   418           (*it)->_notifier = 0;
 
   423     /// \brief Notifies all the registed observers about more item erased  
 
   424     /// from the container.
 
   426     /// It notifies all the registed observers about more item erased from 
 
   429     void erase(const std::vector<Item>& items) {
 
   430       typename Observers::iterator it = _observers.begin();
 
   431       while (it != _observers.end()) {
 
   435         } catch (const ImmediateDetach&) {
 
   436           it = _observers.erase(it);
 
   437           (*it)->_index = _observers.end();
 
   438           (*it)->_notifier = 0;
 
   443     /// \brief Notifies all the registed observers about the container is 
 
   446     /// Notifies all the registed observers about the container is built
 
   447     /// from an empty container.
 
   449       typename Observers::reverse_iterator it;
 
   451         for (it = _observers.rbegin(); it != _observers.rend(); ++it) {
 
   455         typename Observers::iterator jt;
 
   456         for (jt = it.base(); jt != _observers.end(); ++jt) {
 
   463     /// \brief Notifies all the registed observers about all items are 
 
   466     /// Notifies all the registed observers about all items are erased
 
   467     /// from the container.
 
   469       typename Observers::iterator it = _observers.begin();
 
   470       while (it != _observers.end()) {
 
   474         } catch (const ImmediateDetach&) {
 
   475           it = _observers.erase(it);
 
   476           (*it)->_index = _observers.end();
 
   477           (*it)->_notifier = 0;