📄 read_graphviz.rst
字号:
============================|(logo)|__ ``read_graphviz``============================.. |(logo)| image:: ../../../boost.png :align: middle :alt: Boost.. Copyright (c) 2005 Trustees of Indiana University Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)__ ../../../index.htm:: template <typename MutableGraph> bool read_graphviz(std::istream& in, MutableGraph& graph, dynamic_properties& dp, const std::string& node_id = "node_id"); // Only available if BOOST_GRAPH_READ_GRAPHVIZ_ITERATORS is defined template <typename MultiPassIterator, typename MutableGraph> bool read_graphviz(MultiPassIterator begin, MultiPassIterator end, MutableGraph& graph, dynamic_properties& dp, const std::string& node_id = "node_id"); // Deprecated GraphViz readers void read_graphviz(const std::string& file, GraphvizDigraph& g); void read_graphviz(FILE* file, GraphvizDigraph& g); void read_graphviz(const std::string& file, GraphvizGraph& g); void read_graphviz(FILE* file, GraphvizGraph& g); The ``read_graphviz`` function interprets a graph described using theGraphViz_ DOT language and builds a BGL graph that captures thatdescription. Using this function, you can initialize a graph usingdata stored as text. To use the iterator version of ``read_graphviz``,you will need to define the macro BOOST_GRAPH_READ_GRAPHVIZ_ITERATORSbefore including the header ``<boost/graph/graphviz.hpp>``. Doing somay greatly increase the amount of time required to compile theGraphViz reader.The DOT language can specify both directed and undirected graphs, and``read_graphviz`` differentiates between the two. One must pass``read_graphviz`` an undirected graph when reading an undirected graph;the same is true for directed graphs. Furthermore, ``read_graphviz``will throw an exception if it encounters parallel edges and cannot addthem to the graph.To handle properties expressed in the DOT language, ``read_graphviz``takes a dynamic_properties_ object and operates on its collection ofproperty maps. The reader passes all the properties encountered tothis object, using the GraphViz string keys as the property keys.Furthermore, ``read_graphviz`` stores node identifier names under thevertex property map named node_id. Requirements: - The type of the graph must model the `Mutable Graph`_ concept. - The type of the iterator must model the `Multi-Pass Iterator`_ concept. - The property map value types must be default-constructible... contents::Where Defined-------------``<boost/graph/graphviz.hpp>``Exceptions----------:: struct graph_exception : public std::exception { virtual ~graph_exception() throw(); virtual const char* what() const throw() = 0; }; struct bad_parallel_edge : public graph_exception { std::string from; std::string to; bad_parallel_edge(const std::string&, const std::string&); virtual ~bad_parallel_edge() throw(); const char* what() const throw(); }; struct directed_graph_error : public graph_exception { virtual ~directed_graph_error() throw(); virtual const char* what() const throw(); }; struct undirected_graph_error : public graph_exception { virtual ~undirected_graph_error() throw(); virtual const char* what() const throw(); };Under certain circumstances, ``read_graphviz`` will throw one of theabove exceptions. The three concrete exceptions can all be caughtusing the general ``graph_exception`` moniker when greater precisionis not needed. In addition, all of the above exceptions derive fromthe standard ``std::exception`` for even more generalized errorhandling.The ``bad_parallel_edge`` exception is thrown when an attempt to add aparallel edge to the supplied MutableGraph fails. The DOT languagesupports parallel edges, but some BGL-compatible graph types do not.One example of such a graph is ``boost::adjacency_list<setS,vecS>``,which allows at most one edge can between any two vertices.The ``directed_graph_error`` exception occurs when an undirected graphtype is passed to ``read_graph`` but the textual representation of thegraph is directed, as indicated by the ``digraph`` keyword in the DOTlanguage.The ``undirected_graph_error`` exception occurs when a directed graphtype is passed to ``read_graph`` but the textual representation of thegraph is undirected, as indicated by the ``graph`` keyword in the DOTlanguage.Example-------The following example illustrates a relatively simple use of theGraphViz reader to populate an ``adjacency_list`` graph:: // Vertex properties typedef property < vertex_name_t, std::string, property < vertex_color_t, float > > vertex_p; // Edge properties typedef property < edge_weight_t, double > edge_p; // Graph properties typedef property < graph_name_t, std::string > graph_p; // adjacency_list-based type typedef adjacency_list < vecS, vecS, directedS, vertex_p, edge_p, graph_p > graph_t; // Construct an empty graph and prepare the dynamic_property_maps. graph_t graph(0); dynamic_properties dp; property_map<graph_t, vertex_name_t>::type name = get(vertex_name, graph); dp.property("node_id",name); property_map<graph_t, vertex_color_t>::type mass = get(vertex_color, graph); dp.property("mass",mass); property_map<graph_t, edge_weight_t>::type weight = get(edge_weight, graph); dp.property("weight",weight); // Use ref_property_map to turn a graph property into a property map boost::ref_property_map<graph_t*,std::string> gname(get_property(graph,graph_name)); dp.property("name",gname); // Sample graph as an std::istream; std::istringstream gvgraph("digraph { graph [name=\"graphname\"] a c e [mass = 6.66] }"); bool status = read_graphviz(gvgraph,graph,dp,"node_id");Building the GraphViz Readers-----------------------------To use the GraphViz readers, you will need to build and link againstthe "boost_graph" library. The library can be built by following the`Boost Jam Build Instructions`_ for the subdirectory ``libs/graph/build``.Deprecated Readers------------------The deprecated readers do not provide exceptions on error (theyabort), they require the use of one of the predefined graph types(``GraphvizDigraph`` or ``GraphvizGraph``), and they do not supportarbitrary properties. They will be removed in a future Boost version.Notes----- - The ``read_graphviz`` function does not use any code from the GraphViz distribution to interpret the DOT Language. Rather, the implementation was based on documentation found on the GraphViz web site, as well as experiments run using the dot application. The resulting interpretation may be subtly different from dot for some corner cases that are not well specified. - ``read_graphviz`` treats subgraphs as syntactic sugar. It does not reflect subgraphs as actual entities in the BGL. Rather, they are used to shorten some edge definitions as well as to give a subset of all nodes or edges certain properties. For example, the DOT graphs ``digraph { a -> subgraph {b -> c} -> e }`` and ``digraph { a -> b -> e ; a -> c -> e ; b -> c}`` are equivalent. - Subgraph IDs refer to subgraphs defined earlier in the graph description. Undefined subgraphs behave as empty subgraphs (``{}``). - On successful reading of a graph, every vertex and edge will have an associated value for every respective edge and vertex property encountered while interpreting the graph. These values will be set using the ``dynamic_properties`` object. Some properties may be ``put`` multiple times during the course of reading in order to ensure the same semantics as the GraphViz tools. Those edges and vertices that are not explicitly given a value for a property (and that property has no default) will be given the default constructed value of the value type. **Be sure that property map value types are default constructible.**See Also--------write_graphviz_Future Work----------- - The parser currently does not handle continuation lines as defined in the DOT Language. Some more sophisticated parsing of identifier(so-called "ID" in the source) is required to support this. - Support for optional recognition of subgraphs as distinct entities. .. _GraphViz: http://graphviz.org/.. _`Mutable Graph`: MutableGraph.html.. _`Multi-Pass Iterator`: ../../iterator/index.html.. _dynamic_properties: ../../property_map/doc/dynamic_property_map.html.. _write_graphviz: write-graphviz.html.. _Boost Jam Build Instructions: ../../../more/getting_started.html#Build_Install
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -