graphviz.hpp 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958
  1. //=======================================================================
  2. // Copyright 2001 University of Notre Dame.
  3. // Copyright 2003 Jeremy Siek
  4. // Authors: Lie-Quan Lee, Jeremy Siek, and Douglas Gregor
  5. //
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //=======================================================================
  10. #ifndef BOOST_GRAPHVIZ_HPP
  11. #define BOOST_GRAPHVIZ_HPP
  12. #include <boost/config.hpp>
  13. #include <string>
  14. #include <map>
  15. #include <iostream>
  16. #include <fstream>
  17. #include <stdio.h> // for FILE
  18. #include <boost/property_map/property_map.hpp>
  19. #include <boost/tuple/tuple.hpp>
  20. #include <boost/graph/graph_traits.hpp>
  21. #include <boost/graph/properties.hpp>
  22. #include <boost/graph/subgraph.hpp>
  23. #include <boost/graph/adjacency_list.hpp>
  24. #include <boost/property_map/dynamic_property_map.hpp>
  25. #include <boost/graph/overloading.hpp>
  26. #include <boost/graph/dll_import_export.hpp>
  27. #include <boost/graph/compressed_sparse_row_graph.hpp>
  28. #include <boost/graph/iteration_macros.hpp>
  29. #include <boost/spirit/include/classic_multi_pass.hpp>
  30. #include <boost/lexical_cast.hpp>
  31. #include <boost/static_assert.hpp>
  32. #include <boost/algorithm/string/replace.hpp>
  33. #include <boost/xpressive/xpressive_static.hpp>
  34. #include <boost/foreach.hpp>
  35. namespace boost {
  36. template <typename directed_category>
  37. struct graphviz_io_traits {
  38. static std::string name() {
  39. return "digraph";
  40. }
  41. static std::string delimiter() {
  42. return "->";
  43. } };
  44. template <>
  45. struct graphviz_io_traits <undirected_tag> {
  46. static std::string name() {
  47. return "graph";
  48. }
  49. static std::string delimiter() {
  50. return "--";
  51. }
  52. };
  53. struct default_writer {
  54. void operator()(std::ostream&) const {
  55. }
  56. template <class VorE>
  57. void operator()(std::ostream&, const VorE&) const {
  58. }
  59. };
  60. template <typename T>
  61. inline std::string escape_dot_string(const T& obj) {
  62. using namespace boost::xpressive;
  63. static sregex valid_unquoted_id = (((alpha | '_') >> *_w) | (!as_xpr('-') >> (('.' >> *_d) | (+_d >> !('.' >> *_d)))));
  64. std::string s(boost::lexical_cast<std::string>(obj));
  65. if (regex_match(s, valid_unquoted_id)) {
  66. return s;
  67. } else {
  68. boost::algorithm::replace_all(s, "\"", "\\\"");
  69. return "\"" + s + "\"";
  70. }
  71. }
  72. template <class Name>
  73. class label_writer {
  74. public:
  75. label_writer(Name _name) : name(_name) {}
  76. template <class VertexOrEdge>
  77. void operator()(std::ostream& out, const VertexOrEdge& v) const {
  78. out << "[label=" << escape_dot_string(get(name, v)) << "]";
  79. }
  80. private:
  81. Name name;
  82. };
  83. template <class Name>
  84. inline label_writer<Name>
  85. make_label_writer(Name n) {
  86. return label_writer<Name>(n);
  87. }
  88. enum edge_attribute_t { edge_attribute = 1111 };
  89. enum vertex_attribute_t { vertex_attribute = 2222 };
  90. enum graph_graph_attribute_t { graph_graph_attribute = 3333 };
  91. enum graph_vertex_attribute_t { graph_vertex_attribute = 4444 };
  92. enum graph_edge_attribute_t { graph_edge_attribute = 5555 };
  93. BOOST_INSTALL_PROPERTY(edge, attribute);
  94. BOOST_INSTALL_PROPERTY(vertex, attribute);
  95. BOOST_INSTALL_PROPERTY(graph, graph_attribute);
  96. BOOST_INSTALL_PROPERTY(graph, vertex_attribute);
  97. BOOST_INSTALL_PROPERTY(graph, edge_attribute);
  98. template <class Attribute>
  99. inline void write_attributes(const Attribute& attr, std::ostream& out) {
  100. typename Attribute::const_iterator i, iend;
  101. i = attr.begin();
  102. iend = attr.end();
  103. while ( i != iend ) {
  104. out << i->first << "=" << escape_dot_string(i->second);
  105. ++i;
  106. if ( i != iend )
  107. out << ", ";
  108. }
  109. }
  110. template<typename Attributes>
  111. inline void write_all_attributes(Attributes attributes,
  112. const std::string& name,
  113. std::ostream& out)
  114. {
  115. typename Attributes::const_iterator i = attributes.begin(),
  116. end = attributes.end();
  117. if (i != end) {
  118. out << name << " [\n";
  119. write_attributes(attributes, out);
  120. out << "];\n";
  121. }
  122. }
  123. inline void write_all_attributes(detail::error_property_not_found,
  124. const std::string&,
  125. std::ostream&)
  126. {
  127. // Do nothing - no attributes exist
  128. }
  129. template <typename GraphGraphAttributes,
  130. typename GraphNodeAttributes,
  131. typename GraphEdgeAttributes>
  132. struct graph_attributes_writer
  133. {
  134. graph_attributes_writer(GraphGraphAttributes gg,
  135. GraphNodeAttributes gn,
  136. GraphEdgeAttributes ge)
  137. : g_attributes(gg), n_attributes(gn), e_attributes(ge) { }
  138. void operator()(std::ostream& out) const {
  139. write_all_attributes(g_attributes, "graph", out);
  140. write_all_attributes(n_attributes, "node", out);
  141. write_all_attributes(e_attributes, "edge", out);
  142. }
  143. GraphGraphAttributes g_attributes;
  144. GraphNodeAttributes n_attributes;
  145. GraphEdgeAttributes e_attributes;
  146. };
  147. template <typename GAttrMap, typename NAttrMap, typename EAttrMap>
  148. graph_attributes_writer<GAttrMap, NAttrMap, EAttrMap>
  149. make_graph_attributes_writer(const GAttrMap& g_attr, const NAttrMap& n_attr,
  150. const EAttrMap& e_attr) {
  151. return graph_attributes_writer<GAttrMap, NAttrMap, EAttrMap>
  152. (g_attr, n_attr, e_attr);
  153. }
  154. template <typename Graph>
  155. graph_attributes_writer
  156. <typename graph_property<Graph, graph_graph_attribute_t>::type,
  157. typename graph_property<Graph, graph_vertex_attribute_t>::type,
  158. typename graph_property<Graph, graph_edge_attribute_t>::type>
  159. make_graph_attributes_writer(const Graph& g)
  160. {
  161. typedef typename graph_property<Graph, graph_graph_attribute_t>::type
  162. GAttrMap;
  163. typedef typename graph_property<Graph, graph_vertex_attribute_t>::type
  164. NAttrMap;
  165. typedef typename graph_property<Graph, graph_edge_attribute_t>::type
  166. EAttrMap;
  167. GAttrMap gam = get_property(g, graph_graph_attribute);
  168. NAttrMap nam = get_property(g, graph_vertex_attribute);
  169. EAttrMap eam = get_property(g, graph_edge_attribute);
  170. graph_attributes_writer<GAttrMap, NAttrMap, EAttrMap> writer(gam, nam, eam);
  171. return writer;
  172. }
  173. template <typename AttributeMap>
  174. struct attributes_writer {
  175. attributes_writer(AttributeMap attr)
  176. : attributes(attr) { }
  177. template <class VorE>
  178. void operator()(std::ostream& out, const VorE& e) const {
  179. this->write_attribute(out, attributes[e]);
  180. }
  181. private:
  182. template<typename AttributeSequence>
  183. void write_attribute(std::ostream& out,
  184. const AttributeSequence& seq) const
  185. {
  186. if (!seq.empty()) {
  187. out << "[";
  188. write_attributes(seq, out);
  189. out << "]";
  190. }
  191. }
  192. void write_attribute(std::ostream&,
  193. detail::error_property_not_found) const
  194. {
  195. }
  196. AttributeMap attributes;
  197. };
  198. template <typename Graph>
  199. attributes_writer
  200. <typename property_map<Graph, edge_attribute_t>::const_type>
  201. make_edge_attributes_writer(const Graph& g)
  202. {
  203. typedef typename property_map<Graph, edge_attribute_t>::const_type
  204. EdgeAttributeMap;
  205. return attributes_writer<EdgeAttributeMap>(get(edge_attribute, g));
  206. }
  207. template <typename Graph>
  208. attributes_writer
  209. <typename property_map<Graph, vertex_attribute_t>::const_type>
  210. make_vertex_attributes_writer(const Graph& g)
  211. {
  212. typedef typename property_map<Graph, vertex_attribute_t>::const_type
  213. VertexAttributeMap;
  214. return attributes_writer<VertexAttributeMap>(get(vertex_attribute, g));
  215. }
  216. template <typename Graph, typename VertexPropertiesWriter,
  217. typename EdgePropertiesWriter, typename GraphPropertiesWriter,
  218. typename VertexID>
  219. inline void
  220. write_graphviz
  221. (std::ostream& out, const Graph& g,
  222. VertexPropertiesWriter vpw,
  223. EdgePropertiesWriter epw,
  224. GraphPropertiesWriter gpw,
  225. VertexID vertex_id
  226. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  227. {
  228. BOOST_CONCEPT_ASSERT((EdgeListGraphConcept<Graph>));
  229. typedef typename graph_traits<Graph>::directed_category cat_type;
  230. typedef graphviz_io_traits<cat_type> Traits;
  231. std::string name = "G";
  232. out << Traits::name() << " " << escape_dot_string(name) << " {" << std::endl;
  233. gpw(out); //print graph properties
  234. typename graph_traits<Graph>::vertex_iterator i, end;
  235. for(boost::tie(i,end) = vertices(g); i != end; ++i) {
  236. out << escape_dot_string(get(vertex_id, *i));
  237. vpw(out, *i); //print vertex attributes
  238. out << ";" << std::endl;
  239. }
  240. typename graph_traits<Graph>::edge_iterator ei, edge_end;
  241. for(boost::tie(ei, edge_end) = edges(g); ei != edge_end; ++ei) {
  242. out << escape_dot_string(get(vertex_id, source(*ei, g))) << Traits::delimiter() << escape_dot_string(get(vertex_id, target(*ei, g))) << " ";
  243. epw(out, *ei); //print edge attributes
  244. out << ";" << std::endl;
  245. }
  246. out << "}" << std::endl;
  247. }
  248. template <typename Graph, typename VertexPropertiesWriter,
  249. typename EdgePropertiesWriter, typename GraphPropertiesWriter>
  250. inline void
  251. write_graphviz(std::ostream& out, const Graph& g,
  252. VertexPropertiesWriter vpw,
  253. EdgePropertiesWriter epw,
  254. GraphPropertiesWriter gpw
  255. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  256. { write_graphviz(out, g, vpw, epw, gpw, get(vertex_index, g)); }
  257. template <typename Graph>
  258. inline void
  259. write_graphviz(std::ostream& out, const Graph& g
  260. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  261. {
  262. default_writer dw;
  263. default_writer gw;
  264. write_graphviz(out, g, dw, dw, gw);
  265. }
  266. template <typename Graph, typename VertexWriter>
  267. inline void
  268. write_graphviz(std::ostream& out, const Graph& g, VertexWriter vw
  269. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  270. {
  271. default_writer dw;
  272. default_writer gw;
  273. write_graphviz(out, g, vw, dw, gw);
  274. }
  275. template <typename Graph, typename VertexWriter, typename EdgeWriter>
  276. inline void
  277. write_graphviz(std::ostream& out, const Graph& g,
  278. VertexWriter vw, EdgeWriter ew
  279. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  280. {
  281. default_writer gw;
  282. write_graphviz(out, g, vw, ew, gw);
  283. }
  284. namespace detail {
  285. template <class Graph_, class RandomAccessIterator, class VertexID>
  286. void write_graphviz_subgraph (std::ostream& out,
  287. const subgraph<Graph_>& g,
  288. RandomAccessIterator vertex_marker,
  289. RandomAccessIterator edge_marker,
  290. VertexID vertex_id)
  291. {
  292. typedef subgraph<Graph_> Graph;
  293. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  294. typedef typename graph_traits<Graph>::directed_category cat_type;
  295. typedef graphviz_io_traits<cat_type> Traits;
  296. typedef typename graph_property<Graph, graph_name_t>::type NameType;
  297. const NameType& g_name = get_property(g, graph_name);
  298. if ( g.is_root() )
  299. out << Traits::name() ;
  300. else
  301. out << "subgraph";
  302. out << " " << escape_dot_string(g_name) << " {" << std::endl;
  303. typename Graph::const_children_iterator i_child, j_child;
  304. //print graph/node/edge attributes
  305. make_graph_attributes_writer(g)(out);
  306. //print subgraph
  307. for ( boost::tie(i_child,j_child) = g.children();
  308. i_child != j_child; ++i_child )
  309. write_graphviz_subgraph(out, *i_child, vertex_marker, edge_marker,
  310. vertex_id);
  311. // Print out vertices and edges not in the subgraphs.
  312. typename graph_traits<Graph>::vertex_iterator i, end;
  313. typename graph_traits<Graph>::edge_iterator ei, edge_end;
  314. for(boost::tie(i,end) = vertices(g); i != end; ++i) {
  315. Vertex v = g.local_to_global(*i);
  316. int pos = get(vertex_id, v);
  317. if ( vertex_marker[pos] ) {
  318. vertex_marker[pos] = false;
  319. out << escape_dot_string(pos);
  320. make_vertex_attributes_writer(g.root())(out, v);
  321. out << ";" << std::endl;
  322. }
  323. }
  324. for (boost::tie(ei, edge_end) = edges(g); ei != edge_end; ++ei) {
  325. Vertex u = g.local_to_global(source(*ei,g)),
  326. v = g.local_to_global(target(*ei, g));
  327. int pos = get(get(edge_index, g.root()), g.local_to_global(*ei));
  328. if ( edge_marker[pos] ) {
  329. edge_marker[pos] = false;
  330. out << escape_dot_string(get(vertex_id, u)) << " " << Traits::delimiter()
  331. << " " << escape_dot_string(get(vertex_id, v));
  332. make_edge_attributes_writer(g)(out, *ei); //print edge properties
  333. out << ";" << std::endl;
  334. }
  335. }
  336. out << "}" << std::endl;
  337. }
  338. } // namespace detail
  339. // requires graph_name graph property
  340. template <typename Graph>
  341. void write_graphviz(std::ostream& out, const subgraph<Graph>& g) {
  342. std::vector<bool> edge_marker(num_edges(g), true);
  343. std::vector<bool> vertex_marker(num_vertices(g), true);
  344. detail::write_graphviz_subgraph(out, g,
  345. vertex_marker.begin(),
  346. edge_marker.begin(),
  347. get(vertex_index, g));
  348. }
  349. template <typename Graph>
  350. void write_graphviz(const std::string& filename, const subgraph<Graph>& g) {
  351. std::ofstream out(filename.c_str());
  352. std::vector<bool> edge_marker(num_edges(g), true);
  353. std::vector<bool> vertex_marker(num_vertices(g), true);
  354. detail::write_graphviz_subgraph(out, g,
  355. vertex_marker.begin(),
  356. edge_marker.begin(),
  357. get(vertex_index, g));
  358. }
  359. template <typename Graph, typename VertexID>
  360. void write_graphviz(std::ostream& out, const subgraph<Graph>& g,
  361. VertexID vertex_id)
  362. {
  363. std::vector<bool> edge_marker(num_edges(g), true);
  364. std::vector<bool> vertex_marker(num_vertices(g), true);
  365. detail::write_graphviz_subgraph(out, g,
  366. vertex_marker.begin(),
  367. edge_marker.begin(),
  368. vertex_id);
  369. }
  370. template <typename Graph, typename VertexID>
  371. void write_graphviz(const std::string& filename, const subgraph<Graph>& g,
  372. VertexID vertex_id)
  373. {
  374. std::ofstream out(filename.c_str());
  375. std::vector<bool> edge_marker(num_edges(g), true);
  376. std::vector<bool> vertex_marker(num_vertices(g), true);
  377. detail::write_graphviz_subgraph(out, g,
  378. vertex_marker.begin(),
  379. edge_marker.begin(),
  380. vertex_id);
  381. }
  382. #if 0
  383. // This interface has not worked for a long time
  384. typedef std::map<std::string, std::string> GraphvizAttrList;
  385. typedef property<vertex_attribute_t, GraphvizAttrList>
  386. GraphvizVertexProperty;
  387. typedef property<edge_attribute_t, GraphvizAttrList,
  388. property<edge_index_t, int> >
  389. GraphvizEdgeProperty;
  390. typedef property<graph_graph_attribute_t, GraphvizAttrList,
  391. property<graph_vertex_attribute_t, GraphvizAttrList,
  392. property<graph_edge_attribute_t, GraphvizAttrList,
  393. property<graph_name_t, std::string> > > >
  394. GraphvizGraphProperty;
  395. typedef subgraph<adjacency_list<vecS,
  396. vecS, directedS,
  397. GraphvizVertexProperty,
  398. GraphvizEdgeProperty,
  399. GraphvizGraphProperty> >
  400. GraphvizDigraph;
  401. typedef subgraph<adjacency_list<vecS,
  402. vecS, undirectedS,
  403. GraphvizVertexProperty,
  404. GraphvizEdgeProperty,
  405. GraphvizGraphProperty> >
  406. GraphvizGraph;
  407. // These four require linking the BGL-Graphviz library: libbgl-viz.a
  408. // from the /src directory.
  409. // Library has not existed for a while
  410. extern void read_graphviz(const std::string& file, GraphvizDigraph& g);
  411. extern void read_graphviz(FILE* file, GraphvizDigraph& g);
  412. extern void read_graphviz(const std::string& file, GraphvizGraph& g);
  413. extern void read_graphviz(FILE* file, GraphvizGraph& g);
  414. #endif
  415. class dynamic_properties_writer
  416. {
  417. public:
  418. dynamic_properties_writer(const dynamic_properties& dp) : dp(&dp) { }
  419. template<typename Descriptor>
  420. void operator()(std::ostream& out, Descriptor key) const
  421. {
  422. bool first = true;
  423. for (dynamic_properties::const_iterator i = dp->begin();
  424. i != dp->end(); ++i) {
  425. if (typeid(key) == i->second->key()) {
  426. if (first) out << " [";
  427. else out << ", ";
  428. first = false;
  429. out << i->first << "=" << escape_dot_string(i->second->get_string(key));
  430. }
  431. }
  432. if (!first) out << "]";
  433. }
  434. private:
  435. const dynamic_properties* dp;
  436. };
  437. class dynamic_vertex_properties_writer
  438. {
  439. public:
  440. dynamic_vertex_properties_writer(const dynamic_properties& dp,
  441. const std::string& node_id)
  442. : dp(&dp), node_id(&node_id) { }
  443. template<typename Descriptor>
  444. void operator()(std::ostream& out, Descriptor key) const
  445. {
  446. bool first = true;
  447. for (dynamic_properties::const_iterator i = dp->begin();
  448. i != dp->end(); ++i) {
  449. if (typeid(key) == i->second->key()
  450. && i->first != *node_id) {
  451. if (first) out << " [";
  452. else out << ", ";
  453. first = false;
  454. out << i->first << "=" << escape_dot_string(i->second->get_string(key));
  455. }
  456. }
  457. if (!first) out << "]";
  458. }
  459. private:
  460. const dynamic_properties* dp;
  461. const std::string* node_id;
  462. };
  463. template <typename Graph>
  464. class dynamic_graph_properties_writer
  465. {
  466. public:
  467. dynamic_graph_properties_writer(const dynamic_properties& dp, const Graph& g) : g(&g), dp(&dp) { }
  468. void operator()(std::ostream& out) const
  469. {
  470. for (dynamic_properties::const_iterator i = dp->begin();
  471. i != dp->end(); ++i) {
  472. if (typeid(Graph*) == i->second->key()) {
  473. // const_cast here is to match interface used in read_graphviz
  474. out << i->first << "=" << escape_dot_string(i->second->get_string(const_cast<Graph*>(g))) << ";\n";
  475. }
  476. }
  477. }
  478. private:
  479. const Graph* g;
  480. const dynamic_properties* dp;
  481. };
  482. namespace graph { namespace detail {
  483. template<typename Vertex>
  484. struct node_id_property_map
  485. {
  486. typedef std::string value_type;
  487. typedef value_type reference;
  488. typedef Vertex key_type;
  489. typedef readable_property_map_tag category;
  490. node_id_property_map() {}
  491. node_id_property_map(const dynamic_properties& dp,
  492. const std::string& node_id)
  493. : dp(&dp), node_id(&node_id) { }
  494. const dynamic_properties* dp;
  495. const std::string* node_id;
  496. };
  497. template<typename Vertex>
  498. inline std::string
  499. get(node_id_property_map<Vertex> pm,
  500. typename node_id_property_map<Vertex>::key_type v)
  501. { return get(*pm.node_id, *pm.dp, v); }
  502. } } // end namespace graph::detail
  503. template<typename Graph>
  504. inline void
  505. write_graphviz_dp(std::ostream& out, const Graph& g,
  506. const dynamic_properties& dp,
  507. const std::string& node_id = "node_id"
  508. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  509. {
  510. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  511. write_graphviz_dp(out, g, dp, node_id,
  512. graph::detail::node_id_property_map<Vertex>(dp, node_id));
  513. }
  514. template<typename Graph, typename VertexID>
  515. void
  516. write_graphviz_dp(std::ostream& out, const Graph& g,
  517. const dynamic_properties& dp, const std::string& node_id,
  518. VertexID id
  519. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph,vertex_list_graph_tag))
  520. {
  521. write_graphviz
  522. (out, g,
  523. /*vertex_writer=*/dynamic_vertex_properties_writer(dp, node_id),
  524. /*edge_writer=*/dynamic_properties_writer(dp),
  525. /*graph_writer=*/dynamic_graph_properties_writer<Graph>(dp, g),
  526. id);
  527. }
  528. /////////////////////////////////////////////////////////////////////////////
  529. // Graph reader exceptions
  530. /////////////////////////////////////////////////////////////////////////////
  531. struct graph_exception : public std::exception {
  532. virtual ~graph_exception() throw() {}
  533. virtual const char* what() const throw() = 0;
  534. };
  535. struct bad_parallel_edge : public graph_exception {
  536. std::string from;
  537. std::string to;
  538. mutable std::string statement;
  539. bad_parallel_edge(const std::string& i, const std::string& j) :
  540. from(i), to(j) {}
  541. virtual ~bad_parallel_edge() throw() {}
  542. const char* what() const throw() {
  543. if(statement.empty())
  544. statement =
  545. std::string("Failed to add parallel edge: (")
  546. + from + "," + to + ")\n";
  547. return statement.c_str();
  548. }
  549. };
  550. struct directed_graph_error : public graph_exception {
  551. virtual ~directed_graph_error() throw() {}
  552. virtual const char* what() const throw() {
  553. return
  554. "read_graphviz: "
  555. "Tried to read a directed graph into an undirected graph.";
  556. }
  557. };
  558. struct undirected_graph_error : public graph_exception {
  559. virtual ~undirected_graph_error() throw() {}
  560. virtual const char* what() const throw() {
  561. return
  562. "read_graphviz: "
  563. "Tried to read an undirected graph into a directed graph.";
  564. }
  565. };
  566. struct bad_graphviz_syntax: public graph_exception {
  567. std::string errmsg;
  568. bad_graphviz_syntax(const std::string& errmsg)
  569. : errmsg(errmsg) {}
  570. const char* what() const throw () {return errmsg.c_str();}
  571. ~bad_graphviz_syntax() throw () {};
  572. };
  573. namespace detail { namespace graph {
  574. typedef std::string id_t;
  575. typedef id_t node_t;
  576. // edges are not uniquely determined by adjacent nodes
  577. class edge_t {
  578. int idx_;
  579. explicit edge_t(int i) : idx_(i) {}
  580. public:
  581. static edge_t new_edge() {
  582. static int idx = 0;
  583. return edge_t(idx++);
  584. };
  585. bool operator==(const edge_t& rhs) const {
  586. return idx_ == rhs.idx_;
  587. }
  588. bool operator<(const edge_t& rhs) const {
  589. return idx_ < rhs.idx_;
  590. }
  591. };
  592. class mutate_graph
  593. {
  594. public:
  595. virtual ~mutate_graph() {}
  596. virtual bool is_directed() const = 0;
  597. virtual void do_add_vertex(const node_t& node) = 0;
  598. virtual void
  599. do_add_edge(const edge_t& edge, const node_t& source, const node_t& target)
  600. = 0;
  601. virtual void
  602. set_node_property(const id_t& key, const node_t& node, const id_t& value) = 0;
  603. virtual void
  604. set_edge_property(const id_t& key, const edge_t& edge, const id_t& value) = 0;
  605. virtual void // RG: need new second parameter to support BGL subgraphs
  606. set_graph_property(const id_t& key, const id_t& value) = 0;
  607. virtual void
  608. finish_building_graph() = 0;
  609. };
  610. template<typename MutableGraph>
  611. class mutate_graph_impl : public mutate_graph
  612. {
  613. typedef typename graph_traits<MutableGraph>::vertex_descriptor bgl_vertex_t;
  614. typedef typename graph_traits<MutableGraph>::edge_descriptor bgl_edge_t;
  615. public:
  616. mutate_graph_impl(MutableGraph& graph, dynamic_properties& dp,
  617. std::string node_id_prop)
  618. : graph_(graph), dp_(dp), node_id_prop_(node_id_prop) { }
  619. ~mutate_graph_impl() {}
  620. bool is_directed() const
  621. {
  622. return
  623. boost::is_convertible<
  624. typename boost::graph_traits<MutableGraph>::directed_category,
  625. boost::directed_tag>::value;
  626. }
  627. virtual void do_add_vertex(const node_t& node)
  628. {
  629. // Add the node to the graph.
  630. bgl_vertex_t v = add_vertex(graph_);
  631. // Set up a mapping from name to BGL vertex.
  632. bgl_nodes.insert(std::make_pair(node, v));
  633. // node_id_prop_ allows the caller to see the real id names for nodes.
  634. put(node_id_prop_, dp_, v, node);
  635. }
  636. void
  637. do_add_edge(const edge_t& edge, const node_t& source, const node_t& target)
  638. {
  639. std::pair<bgl_edge_t, bool> result =
  640. add_edge(bgl_nodes[source], bgl_nodes[target], graph_);
  641. if(!result.second) {
  642. // In the case of no parallel edges allowed
  643. boost::throw_exception(bad_parallel_edge(source, target));
  644. } else {
  645. bgl_edges.insert(std::make_pair(edge, result.first));
  646. }
  647. }
  648. void
  649. set_node_property(const id_t& key, const node_t& node, const id_t& value)
  650. {
  651. put(key, dp_, bgl_nodes[node], value);
  652. }
  653. void
  654. set_edge_property(const id_t& key, const edge_t& edge, const id_t& value)
  655. {
  656. put(key, dp_, bgl_edges[edge], value);
  657. }
  658. void
  659. set_graph_property(const id_t& key, const id_t& value)
  660. {
  661. /* RG: pointer to graph prevents copying */
  662. put(key, dp_, &graph_, value);
  663. }
  664. void finish_building_graph() {}
  665. protected:
  666. MutableGraph& graph_;
  667. dynamic_properties& dp_;
  668. std::string node_id_prop_;
  669. std::map<node_t, bgl_vertex_t> bgl_nodes;
  670. std::map<edge_t, bgl_edge_t> bgl_edges;
  671. };
  672. template<typename Directed,
  673. typename VertexProperty,
  674. typename EdgeProperty,
  675. typename GraphProperty,
  676. typename Vertex,
  677. typename EdgeIndex>
  678. class mutate_graph_impl<compressed_sparse_row_graph<Directed, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex> >
  679. : public mutate_graph
  680. {
  681. typedef compressed_sparse_row_graph<Directed, VertexProperty, EdgeProperty, GraphProperty, Vertex, EdgeIndex> CSRGraph;
  682. typedef typename graph_traits<CSRGraph>::vertices_size_type bgl_vertex_t;
  683. typedef typename graph_traits<CSRGraph>::edges_size_type bgl_edge_t;
  684. typedef typename graph_traits<CSRGraph>::edge_descriptor edge_descriptor;
  685. public:
  686. mutate_graph_impl(CSRGraph& graph, dynamic_properties& dp,
  687. std::string node_id_prop)
  688. : graph_(graph), dp_(dp), vertex_count(0), node_id_prop_(node_id_prop) { }
  689. ~mutate_graph_impl() {}
  690. void finish_building_graph() {
  691. typedef compressed_sparse_row_graph<directedS, no_property, bgl_edge_t, GraphProperty, Vertex, EdgeIndex> TempCSRGraph;
  692. TempCSRGraph temp(edges_are_unsorted_multi_pass,
  693. edges_to_add.begin(), edges_to_add.end(),
  694. counting_iterator<bgl_edge_t>(0),
  695. vertex_count);
  696. set_property(temp, graph_all, get_property(graph_, graph_all));
  697. graph_.assign(temp); // Copies structure, not properties
  698. std::vector<edge_descriptor> edge_permutation_from_sorting(num_edges(temp));
  699. BGL_FORALL_EDGES_T(e, temp, TempCSRGraph) {
  700. edge_permutation_from_sorting[temp[e]] = e;
  701. }
  702. typedef boost::tuple<id_t, bgl_vertex_t, id_t> v_prop;
  703. BOOST_FOREACH(const v_prop& t, vertex_props) {
  704. put(boost::get<0>(t), dp_, boost::get<1>(t), boost::get<2>(t));
  705. }
  706. typedef boost::tuple<id_t, bgl_edge_t, id_t> e_prop;
  707. BOOST_FOREACH(const e_prop& t, edge_props) {
  708. put(boost::get<0>(t), dp_, edge_permutation_from_sorting[boost::get<1>(t)], boost::get<2>(t));
  709. }
  710. }
  711. bool is_directed() const
  712. {
  713. return
  714. boost::is_convertible<
  715. typename boost::graph_traits<CSRGraph>::directed_category,
  716. boost::directed_tag>::value;
  717. }
  718. virtual void do_add_vertex(const node_t& node)
  719. {
  720. // Add the node to the graph.
  721. bgl_vertex_t v = vertex_count++;
  722. // Set up a mapping from name to BGL vertex.
  723. bgl_nodes.insert(std::make_pair(node, v));
  724. // node_id_prop_ allows the caller to see the real id names for nodes.
  725. vertex_props.push_back(boost::make_tuple(node_id_prop_, v, node));
  726. }
  727. void
  728. do_add_edge(const edge_t& edge, const node_t& source, const node_t& target)
  729. {
  730. bgl_edge_t result = edges_to_add.size();
  731. edges_to_add.push_back(std::make_pair(bgl_nodes[source], bgl_nodes[target]));
  732. bgl_edges.insert(std::make_pair(edge, result));
  733. }
  734. void
  735. set_node_property(const id_t& key, const node_t& node, const id_t& value)
  736. {
  737. vertex_props.push_back(boost::make_tuple(key, bgl_nodes[node], value));
  738. }
  739. void
  740. set_edge_property(const id_t& key, const edge_t& edge, const id_t& value)
  741. {
  742. edge_props.push_back(boost::make_tuple(key, bgl_edges[edge], value));
  743. }
  744. void
  745. set_graph_property(const id_t& key, const id_t& value)
  746. {
  747. /* RG: pointer to graph prevents copying */
  748. put(key, dp_, &graph_, value);
  749. }
  750. protected:
  751. CSRGraph& graph_;
  752. dynamic_properties& dp_;
  753. bgl_vertex_t vertex_count;
  754. std::string node_id_prop_;
  755. std::vector<boost::tuple<id_t, bgl_vertex_t, id_t> > vertex_props;
  756. std::vector<boost::tuple<id_t, bgl_edge_t, id_t> > edge_props;
  757. std::vector<std::pair<bgl_vertex_t, bgl_vertex_t> > edges_to_add;
  758. std::map<node_t, bgl_vertex_t> bgl_nodes;
  759. std::map<edge_t, bgl_edge_t> bgl_edges;
  760. };
  761. } } } // end namespace boost::detail::graph
  762. #ifdef BOOST_GRAPH_USE_SPIRIT_PARSER
  763. # ifndef BOOST_GRAPH_READ_GRAPHVIZ_ITERATORS
  764. # define BOOST_GRAPH_READ_GRAPHVIZ_ITERATORS
  765. # endif
  766. # include <boost/graph/detail/read_graphviz_spirit.hpp>
  767. #else // New default parser
  768. # include <boost/graph/detail/read_graphviz_new.hpp>
  769. #endif // BOOST_GRAPH_USE_SPIRIT_PARSER
  770. namespace boost {
  771. // Parse the passed string as a GraphViz dot file.
  772. template <typename MutableGraph>
  773. bool read_graphviz(const std::string& data,
  774. MutableGraph& graph,
  775. dynamic_properties& dp,
  776. std::string const& node_id = "node_id") {
  777. #ifdef BOOST_GRAPH_USE_SPIRIT_PARSER
  778. return read_graphviz_spirit(data.begin(), data.end(), graph, dp, node_id);
  779. #else // Non-Spirit parser
  780. return read_graphviz_new(data,graph,dp,node_id);
  781. #endif
  782. }
  783. // Parse the passed iterator range as a GraphViz dot file.
  784. template <typename InputIterator, typename MutableGraph>
  785. bool read_graphviz(InputIterator user_first,
  786. InputIterator user_last,
  787. MutableGraph& graph,
  788. dynamic_properties& dp,
  789. std::string const& node_id = "node_id") {
  790. #ifdef BOOST_GRAPH_USE_SPIRIT_PARSER
  791. typedef InputIterator is_t;
  792. typedef boost::spirit::classic::multi_pass<is_t> iterator_t;
  793. iterator_t first(boost::spirit::classic::make_multi_pass(user_first));
  794. iterator_t last(boost::spirit::classic::make_multi_pass(user_last));
  795. return read_graphviz_spirit(first, last, graph, dp, node_id);
  796. #else // Non-Spirit parser
  797. return read_graphviz_new(std::string(user_first, user_last), graph, dp, node_id);
  798. #endif
  799. }
  800. // Parse the passed stream as a GraphViz dot file.
  801. template <typename MutableGraph>
  802. bool read_graphviz(std::istream& in, MutableGraph& graph,
  803. dynamic_properties& dp,
  804. std::string const& node_id = "node_id")
  805. {
  806. typedef std::istream_iterator<char> is_t;
  807. in >> std::noskipws;
  808. return read_graphviz(is_t(in), is_t(), graph, dp, node_id);
  809. }
  810. } // namespace boost
  811. #ifdef BOOST_GRAPH_USE_MPI
  812. # include <boost/graph/distributed/graphviz.hpp>
  813. #endif
  814. #endif // BOOST_GRAPHVIZ_HPP