来自read_graphviz_new.hpp 来源:
struct edge_info {
node_and_port source;
node_and_port target;
properties props;
};
node_and_port 看起来像这样:
struct node_and_port {
node_name name;
std::string angle; // Or empty if no angle
std::vector<std::string> location; // Up to two identifiers
// ...
}
我认为(但尚未验证)如果您直接使用以下方式调用解析器,这些结果是可用的:
void parse_graphviz_from_string(const std::string& str, parser_result& result, bool want_directed);
在命名空间boost::read_graphviz_detail。如果您直接使用read_graphviz,它也可能在dynamic_property_map 中可用;它在内部引用read_graphviz_new。
注意:在graphviz.hpp 中,根据#ifdef 选择两个graphviz 解析器之一:
#ifdef BOOST_GRAPH_USE_SPIRIT_PARSER
return read_graphviz_spirit(data.begin(), data.end(), graph, dp, node_id);
#else // Non-Spirit parser
return read_graphviz_new(data,graph,dp,node_id);
#endif
如果我没看错,那么非精神解析器就是你想要的;以精神为基础的看起来像是无视端口。
无论如何,这只是基于快速浏览 boost v. 1.44 的源代码;对我来说,感兴趣的代码位于/usr/include/boost/graph/detail/read_graphviz_new.hpp。我没有对此进行测试,但看起来所有的管道都在那里。