~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/vertex.h

  • Committer: Lee Bieber
  • Date: 2011-01-25 20:11:28 UTC
  • mfrom: (2114.1.5 build)
  • Revision ID: kalebral@gmail.com-20110125201128-zhhu9kgcmmv2p11y
Merge Lee - 706121: innodb.innodb_bug53756.test relies on functionality not provided by test-run.pl
Merge Monty - Added inter-plugin dependencies for controlling plugin load order
Merge Marisa - 684803: Need to update Drizzledump documentation with migration conversions / caveats
Merge Marisa - 686641: Need to document removal of multi-table update/delete from Drizzle

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2011 Monty Taylor
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of the GNU General Public License as published by
 
8
 *  the Free Software Foundation; version 2 of the License.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef DRIZZLED_MODULE_VERTEX_H
 
21
#define DRIZZLED_MODULE_VERTEX_H
 
22
 
 
23
#include <string>
 
24
 
 
25
#define BOOST_NO_HASH 1
 
26
#include <boost/graph/graph_traits.hpp>
 
27
#include <boost/graph/adjacency_list.hpp>
 
28
#include <boost/graph/topological_sort.hpp>
 
29
 
 
30
namespace drizzled
 
31
{
 
32
  enum vertex_properties_t { vertex_properties };
 
33
}
 
34
 
 
35
namespace boost
 
36
{
 
37
  template <> struct property_kind<drizzled::vertex_properties_t>
 
38
  {
 
39
    typedef vertex_property_tag type;
 
40
  };
 
41
}
 
42
 
 
43
namespace drizzled
 
44
{
 
45
 
 
46
namespace module
 
47
{
 
48
class Module;
 
49
 
 
50
class Vertex
 
51
{
 
52
  std::string name_;
 
53
  Module *module_;
 
54
public:
 
55
  Vertex() :
 
56
    name_(""),
 
57
    module_(NULL)
 
58
  { }
 
59
  explicit Vertex(const std::string& name) :
 
60
    name_(name),
 
61
    module_(NULL)
 
62
  { }
 
63
  Vertex(const std::string& name, Module *module) :
 
64
    name_(name),
 
65
    module_(module)
 
66
  { }
 
67
  Vertex(const Vertex& old) :
 
68
    name_(old.name_),
 
69
    module_(old.module_)
 
70
  { }
 
71
  Vertex& operator=(const Vertex& old)
 
72
  {
 
73
    name_= old.name_;
 
74
    module_= old.module_;
 
75
    return *this;
 
76
  }
 
77
  const std::string &getName() const
 
78
  {
 
79
    return name_;
 
80
  }
 
81
  void setModule(Module *module)
 
82
  {
 
83
    module_= module;
 
84
  }
 
85
  Module* getModule()
 
86
  {
 
87
    return module_;
 
88
  }
 
89
};
 
90
 
 
91
typedef std::pair<std::string, std::string> ModuleEdge;
 
92
typedef boost::adjacency_list<boost::vecS,
 
93
        boost::vecS,
 
94
        boost::bidirectionalS, 
 
95
        boost::property<boost::vertex_color_t,
 
96
        boost::default_color_type,
 
97
        boost::property<vertex_properties_t, Vertex> >
 
98
          > VertexGraph;
 
99
typedef boost::graph_traits<VertexGraph>::vertex_descriptor VertexDesc;
 
100
typedef std::vector<VertexDesc> VertexList;
 
101
 
 
102
typedef boost::graph_traits<VertexGraph>::vertex_iterator vertex_iter;
 
103
 
 
104
} /* namespace module */
 
105
} /* namespace vertex */
 
106
 
 
107
#endif /* DRIZZLED_MODULE_VERTEX_H */