src/work/marci/leda_graph_wrapper.h
author marci
Tue, 16 Mar 2004 15:27:20 +0000
changeset 189 04becc472709
child 198 5cec393baade
permissions -rw-r--r--
LedaGraph -> LedaGraphWrapper
marci@189
     1
// -*- c++ -*-
marci@189
     2
#ifndef HUGO_LEDA_GRAPH_WRAPPER_H
marci@189
     3
#define HUGO_LEDA_GRAPH_WRAPPER_H
marci@189
     4
marci@189
     5
#include <LEDA/graph.h>
marci@189
     6
#include <LEDA/node_array.h>
marci@189
     7
#include <LEDA/edge_array.h>
marci@189
     8
#include <LEDA/node_map.h>
marci@189
     9
#include <LEDA/edge_map.h>
marci@189
    10
//#include <LEDA/graph_alg.h>
marci@189
    11
//#include <LEDA/dimacs.h>
marci@189
    12
marci@189
    13
//#if defined(LEDA_NAMESPACE)
marci@189
    14
//using namespace leda;
marci@189
    15
//#endif
marci@189
    16
marci@189
    17
#include <invalid.h>
marci@189
    18
marci@189
    19
/// The namespace of HugoLib
marci@189
    20
namespace hugo {
marci@189
    21
marci@189
    22
  // @defgroup empty_graph The LedaGraphWrapper class
marci@189
    23
  // @{
marci@189
    24
marci@189
    25
  /// An empty graph class.
marci@189
    26
  
marci@189
    27
  /// This class provides all the common features of a grapf structure,
marci@189
    28
  /// however completely without implementations or real data structures
marci@189
    29
  /// behind the interface.
marci@189
    30
  /// All graph algorithms should compile with this class, but it will not
marci@189
    31
  /// run properly, of course.
marci@189
    32
  ///
marci@189
    33
  /// It can be used for checking the interface compatibility,
marci@189
    34
  /// or it can serve as a skeleton of a new graph structure.
marci@189
    35
  /// 
marci@189
    36
  /// Also, you will find here the full documentation of a certain graph
marci@189
    37
  /// feature, the documentation of a real graph imlementation
marci@189
    38
  /// like @ref ListGraph or
marci@189
    39
  /// @ref SmartGraph will just refer to this structure.
marci@189
    40
  template<typename Graph>
marci@189
    41
  class LedaGraphWrapper
marci@189
    42
  {
marci@189
    43
    Graph* _graph;
marci@189
    44
  public:
marci@189
    45
   
marci@189
    46
        //LedaGraphWrapper() { }
marci@189
    47
    LedaGraphWrapper(Graph& __graph) : _graph(&__graph) { }
marci@189
    48
    LedaGraphWrapper(const LedaGraphWrapper &G) : _graph(G._graph) { }
marci@189
    49
marci@189
    50
    template <typename T> class NodeMap;
marci@189
    51
    template <typename T> class EdgeMap;
marci@189
    52
marci@189
    53
    /// The base type of the node iterators.
marci@189
    54
    class Node {
marci@189
    55
      friend class LedaGraphWrapper;
marci@189
    56
      //friend class Edge;
marci@189
    57
      friend class EdgeIt;
marci@189
    58
      friend class InEdgeIt;
marci@189
    59
      friend class OutEdgeIt;
marci@189
    60
    protected:
marci@189
    61
      template <typename T> friend class NodeMap;
marci@189
    62
      leda_node _n;
marci@189
    63
      Node(leda_node __n) : _n(__n) { } 
marci@189
    64
    public:
marci@189
    65
      /// @warning The default constructor sets the iterator
marci@189
    66
      /// to an undefined value.
marci@189
    67
      Node() {}   //FIXME
marci@189
    68
      /// Initialize the iterator to be invalid
marci@189
    69
      Node(Invalid) : _n(0) { }
marci@189
    70
      //Node(const Node &) {} 
marci@189
    71
      bool operator==(Node n) const { return _n==n._n; } //FIXME
marci@189
    72
      bool operator!=(Node n) const { return _n!=n._n; } //FIXME
marci@189
    73
    };
marci@189
    74
    
marci@189
    75
    /// This iterator goes through each node.
marci@189
    76
    class NodeIt : public Node {
marci@189
    77
    public:
marci@189
    78
      /// @warning The default constructor sets the iterator
marci@189
    79
      /// to an undefined value.
marci@189
    80
      NodeIt() {} //FIXME
marci@189
    81
      /// Initialize the iterator to be invalid
marci@189
    82
      NodeIt(Invalid i) : Node(i) {}
marci@189
    83
      /// Sets the iterator to the first node of \c G.
marci@189
    84
      NodeIt(const LedaGraphWrapper &G) : Node(G._graph->first_node()) { }
marci@189
    85
      //NodeIt(const NodeIt &) {} //FIXME
marci@189
    86
    };
marci@189
    87
    
marci@189
    88
    /// The base type of the edge iterators.
marci@189
    89
    class Edge {
marci@189
    90
      friend class LedaGraphWrapper;
marci@189
    91
    protected:
marci@189
    92
      template <typename T> friend class EdgeMap;
marci@189
    93
      leda_edge _e;
marci@189
    94
      Edge(leda_edge __e) : _e(__e) { } 
marci@189
    95
    public:
marci@189
    96
      /// @warning The default constructor sets the iterator
marci@189
    97
      /// to an undefined value.
marci@189
    98
      Edge() {}   //FIXME
marci@189
    99
      /// Initialize the iterator to be invalid
marci@189
   100
      Edge(Invalid) : _e(0) {}
marci@189
   101
      //Edge(const Edge &) {} 
marci@189
   102
      bool operator==(Edge e) const { return _e==e._e; } //FIXME
marci@189
   103
      bool operator!=(Edge e) const { return _e!=e._e; } //FIXME    
marci@189
   104
    };
marci@189
   105
    
marci@189
   106
    /// This iterator goes trought the outgoing edges of a certain graph.
marci@189
   107
    
marci@189
   108
    class OutEdgeIt : public Edge {
marci@189
   109
    public:
marci@189
   110
      /// @warning The default constructor sets the iterator
marci@189
   111
      /// to an undefined value.
marci@189
   112
      OutEdgeIt() {}
marci@189
   113
      /// Initialize the iterator to be invalid
marci@189
   114
      OutEdgeIt(Invalid i) : Edge(i) {}
marci@189
   115
      /// This constructor sets the iterator to first outgoing edge.
marci@189
   116
    
marci@189
   117
      /// This constructor set the iterator to the first outgoing edge of
marci@189
   118
      /// node
marci@189
   119
      ///@param n the node
marci@189
   120
      ///@param G the graph
marci@189
   121
      OutEdgeIt(const LedaGraphWrapper & G, Node n) : Edge(G._graph->first_adj_edge(n._n)) { }
marci@189
   122
    };
marci@189
   123
marci@189
   124
    class InEdgeIt : public Edge {
marci@189
   125
    public:
marci@189
   126
      /// @warning The default constructor sets the iterator
marci@189
   127
      /// to an undefined value.
marci@189
   128
      InEdgeIt() {}
marci@189
   129
      /// Initialize the iterator to be invalid
marci@189
   130
      InEdgeIt(Invalid i) : Edge(i) {}
marci@189
   131
      InEdgeIt(const LedaGraphWrapper & G, Node n) : Edge(G._graph->first_in_edge(n._n)) { }
marci@189
   132
    };
marci@189
   133
marci@189
   134
    //  class SymEdgeIt : public Edge {};
marci@189
   135
    class EdgeIt : public Edge {
marci@189
   136
    public:
marci@189
   137
      /// @warning The default constructor sets the iterator
marci@189
   138
      /// to an undefined value.
marci@189
   139
      EdgeIt() {}
marci@189
   140
      /// Initialize the iterator to be invalid
marci@189
   141
      EdgeIt(Invalid i) : Edge(i) {}
marci@189
   142
      EdgeIt(const LedaGraphWrapper & G) : Edge(G._graph->first_edge()) { }
marci@189
   143
    };
marci@189
   144
marci@189
   145
    /// First node of the graph.
marci@189
   146
marci@189
   147
    /// \post \c i and the return value will be the first node.
marci@189
   148
    ///
marci@189
   149
    NodeIt &first(NodeIt &i) const { i=NodeIt(*this); return i; }
marci@189
   150
marci@189
   151
    /// The first outgoing edge.
marci@189
   152
    InEdgeIt &first(InEdgeIt &i, Node n) const { 
marci@189
   153
      i=InEdgeIt(*this, n); 
marci@189
   154
      return i;
marci@189
   155
    }
marci@189
   156
    /// The first incoming edge.
marci@189
   157
    OutEdgeIt &first(OutEdgeIt &i, Node n) const { 
marci@189
   158
      i=OutEdgeIt(*this, n); 
marci@189
   159
      return i;
marci@189
   160
    }
marci@189
   161
    //  SymEdgeIt &first(SymEdgeIt &, Node) const { return i;}
marci@189
   162
    /// The first edge of the Graph.
marci@189
   163
    EdgeIt &first(EdgeIt &i) const {      
marci@189
   164
      i=EdgeIt(*this); 
marci@189
   165
      return i; }
marci@189
   166
marci@189
   167
//     Node getNext(Node) const {}
marci@189
   168
//     InEdgeIt getNext(InEdgeIt) const {}
marci@189
   169
//     OutEdgeIt getNext(OutEdgeIt) const {}
marci@189
   170
//     //SymEdgeIt getNext(SymEdgeIt) const {}
marci@189
   171
//     EdgeIt getNext(EdgeIt) const {}
marci@189
   172
marci@189
   173
    /// Go to the next node.
marci@189
   174
    NodeIt &next(NodeIt &i) const { 
marci@189
   175
      i._n=_graph->succ_node(i._n); 
marci@189
   176
      return i; 
marci@189
   177
    }
marci@189
   178
    /// Go to the next incoming edge.
marci@189
   179
    InEdgeIt &next(InEdgeIt &i) const { 
marci@189
   180
      i._e=_graph->in_succ(i._e); 
marci@189
   181
      return i;
marci@189
   182
    }
marci@189
   183
    /// Go to the next outgoing edge.
marci@189
   184
    OutEdgeIt &next(OutEdgeIt &i) const { 
marci@189
   185
      i._e=_graph->adj_succ(i._e); 
marci@189
   186
      return i;
marci@189
   187
    }
marci@189
   188
    //SymEdgeIt &next(SymEdgeIt &) const {}
marci@189
   189
    /// Go to the next edge.
marci@189
   190
    EdgeIt &next(EdgeIt &i) const {      
marci@189
   191
      i._e=_graph->succ_edge(i._e); 
marci@189
   192
      return i; 
marci@189
   193
    }
marci@189
   194
marci@189
   195
    template< typename It >
marci@189
   196
    It first() const { 
marci@189
   197
      It e;
marci@189
   198
      first(e);
marci@189
   199
      return e; 
marci@189
   200
    }
marci@189
   201
marci@189
   202
    template< typename It >
marci@189
   203
    It first(Node v) const { 
marci@189
   204
      It e;
marci@189
   205
      first(e, v);
marci@189
   206
      return e; 
marci@189
   207
    }
marci@189
   208
marci@189
   209
    ///Gives back the head node of an edge.
marci@189
   210
    Node head(Edge e) const { 
marci@189
   211
      return Node(_graph->target(e._e)); 
marci@189
   212
    }
marci@189
   213
    ///Gives back the tail node of an edge.
marci@189
   214
    Node tail(Edge e) const { 
marci@189
   215
      return Node(_graph->source(e._e)); 
marci@189
   216
    }
marci@189
   217
  
marci@189
   218
    Node aNode(InEdgeIt e) const { return head(e); }
marci@189
   219
    Node aNode(OutEdgeIt e) const { return tail(e); }
marci@189
   220
    //   Node aNode(SymEdgeIt) const {}
marci@189
   221
marci@189
   222
    Node bNode(InEdgeIt e) const { return tail(e); }
marci@189
   223
    Node bNode(OutEdgeIt e) const { return head(e); }
marci@189
   224
    //   Node bNode(SymEdgeIt) const {}
marci@189
   225
marci@189
   226
    /// Checks if a node iterator is valid
marci@189
   227
    bool valid(Node n) const { return n._n; }
marci@189
   228
    /// Checks if an edge iterator is valid
marci@189
   229
    bool valid(Edge e) const { return e._e; }
marci@189
   230
marci@189
   231
    ///Gives back the \e id of a node.
marci@189
   232
    int id(Node n) const { return n._n->id(); }
marci@189
   233
    ///Gives back the \e id of an edge.
marci@189
   234
    int id(Edge e) const { return e._e->id(); }
marci@189
   235
marci@189
   236
    //void setInvalid(Node &) const {};
marci@189
   237
    //void setInvalid(Edge &) const {};
marci@189
   238
  
marci@189
   239
    Node addNode() const { return Node(_graph->new_node()); }
marci@189
   240
    Edge addEdge(Node tail, Node head) const { 
marci@189
   241
      return Edge(_graph->new_edge(tail._n, head._n));
marci@189
   242
    }
marci@189
   243
    
marci@189
   244
    void erase(Node n) const { _graph->del_node(n._n); }
marci@189
   245
    void erase(Edge e) const { _graph->del_edge(e._e); }
marci@189
   246
marci@189
   247
    void clear() const { _graph->clear(); }
marci@189
   248
marci@189
   249
    int nodeNum() const { return _graph->number_of_nodes(); }
marci@189
   250
    int edgeNum() const { return _graph->number_of_edges(); }
marci@189
   251
marci@189
   252
    ///Read/write map from the nodes to type \c T.
marci@189
   253
    template<typename T> class NodeMap
marci@189
   254
    {
marci@189
   255
      leda_node_map<T> leda_stuff;
marci@189
   256
    public:
marci@189
   257
      typedef T ValueType;
marci@189
   258
      typedef Node KeyType;
marci@189
   259
marci@189
   260
      NodeMap(const LedaGraphWrapper &G) : leda_stuff(*(G._graph)) {}
marci@189
   261
      NodeMap(const LedaGraphWrapper &G, T t) : leda_stuff(*(G._graph), t) {}
marci@189
   262
marci@189
   263
      void set(Node i, T t) { leda_stuff[i._n]=t; }
marci@189
   264
      T get(Node i) const { return leda_stuff[i._n]; }  //FIXME: Is it necessary
marci@189
   265
      T &operator[](Node i) { return leda_stuff[i._n]; }
marci@189
   266
      const T &operator[](Node i) const { return leda_stuff[i._n]; }
marci@189
   267
marci@189
   268
      void update() { /*leda_stuff.init(leda_stuff.get_graph());*/ }
marci@189
   269
      //void update(T a) { leda_stuff.init(leda_stuff.get_graph()/**(G._graph)*/, a); }   //FIXME: Is it necessary
marci@189
   270
    };
marci@189
   271
marci@189
   272
    ///Read/write map from the edges to type \c T.
marci@189
   273
    template<typename T> class EdgeMap
marci@189
   274
    {
marci@189
   275
      leda_edge_map<T> leda_stuff;
marci@189
   276
    public:
marci@189
   277
      typedef T ValueType;
marci@189
   278
      typedef Edge KeyType;
marci@189
   279
marci@189
   280
      EdgeMap(const LedaGraphWrapper &G) : leda_stuff(*(G._graph)) {}
marci@189
   281
      EdgeMap(const LedaGraphWrapper &G, T t) : leda_stuff(*(G._graph), t) {}
marci@189
   282
marci@189
   283
      void set(Edge i, T t) { leda_stuff[i._e]=t; }
marci@189
   284
      T get(Edge i) const { return leda_stuff[i._e]; }  //FIXME: Is it necessary
marci@189
   285
      T &operator[](Edge i) { return leda_stuff[i._e]; }
marci@189
   286
      const T &operator[](Edge i) const { return leda_stuff[i._e]; }
marci@189
   287
marci@189
   288
      void update() { /*leda_stuff.init(leda_stuff.get_graph());*/ }
marci@189
   289
      //void update(T a) { leda_stuff.init(leda_stuff.get_graph()/**(G._graph)*/, a); }   //FIXME: Is it necessary
marci@189
   290
    };
marci@189
   291
marci@189
   292
  };
marci@189
   293
marci@189
   294
  // @}
marci@189
   295
marci@189
   296
} //namespace hugo
marci@189
   297
marci@189
   298
marci@189
   299
marci@189
   300
// class EmptyBipGraph : public EmptyGraph
marci@189
   301
// {
marci@189
   302
//   class ANode {};
marci@189
   303
//   class BNode {};
marci@189
   304
marci@189
   305
//   ANode &next(ANode &) {}
marci@189
   306
//   BNode &next(BNode &) {}
marci@189
   307
marci@189
   308
//   ANode &getFirst(ANode &) const {}
marci@189
   309
//   BNode &getFirst(BNode &) const {}
marci@189
   310
marci@189
   311
//   enum NodeClass { A = 0, B = 1 };
marci@189
   312
//   NodeClass getClass(Node n) {}
marci@189
   313
marci@189
   314
// }
marci@189
   315
marci@189
   316
#endif // HUGO_LEDA_GRAPH_WRAPPER_H