1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
#ifndef DOTIO_H
#define DOTIO_H 1
#include "ContigID.h" // for g_contigNames.lock
#include "Graph/Options.h"
#include "IOUtil.h"
#include <boost/graph/graph_traits.hpp>
#include <cassert>
#include <cstdlib> // for exit
#include <istream>
#include <ostream>
using boost::graph_traits;
template <typename Graph, typename VertexProp>
void write_vertex(std::ostream& out, const Graph& g,
typename graph_traits<Graph>::vertex_descriptor u,
const VertexProp*)
{
out << '"' << get(vertex_name, g, u) << "\""
" [" << get(vertex_bundle, g, u) << "]\n";
}
template <typename Graph>
void write_vertex(std::ostream&, const Graph&,
typename graph_traits<Graph>::vertex_descriptor,
const no_property*)
{
}
template <typename Graph, typename EdgeProp>
void write_edges(std::ostream& out, const Graph& g,
typename graph_traits<Graph>::vertex_descriptor u,
const EdgeProp*)
{
typedef typename graph_traits<Graph>::out_edge_iterator
out_edge_iterator;
typedef typename edge_property<Graph>::type edge_property_type;
std::pair<out_edge_iterator, out_edge_iterator>
adj = out_edges(u, g);
for (out_edge_iterator e = adj.first; e != adj.second; ++e) {
assert(!get(vertex_removed, g, target(*e, g)));
out << get(edge_name, g, *e);
const edge_property_type& ep = get(edge_bundle, g, e);
if (!(ep == edge_property_type()))
out << " [" << ep << ']';
out << '\n';
}
}
template <typename Graph>
void write_edges(std::ostream& out, const Graph& g,
typename graph_traits<Graph>::vertex_descriptor u,
const no_property*)
{
typedef typename graph_traits<Graph>::adjacency_iterator
adjacency_iterator;
unsigned outdeg = out_degree(u, g);
if (outdeg == 0)
return;
out << '"' << get(vertex_name, g, u) << "\" ->";
if (outdeg > 1)
out << " {";
std::pair<adjacency_iterator, adjacency_iterator>
adj = adjacent_vertices(u, g);
for (adjacency_iterator v = adj.first; v != adj.second; ++v)
out << " \"" << get(vertex_name, g, *v) << '"';
if (outdeg > 1)
out << " }";
out << '\n';
}
/** Output a GraphViz dot graph. */
template <typename Graph>
std::ostream& write_dot(std::ostream& out, const Graph& g)
{
return write_dot(out, g, "adj");
}
/** Output a GraphViz dot graph. */
template <typename Graph>
std::ostream& write_dot(std::ostream& out, const Graph& g,
const std::string& graphName)
{
typedef typename graph_traits<Graph>::vertex_iterator
vertex_iterator;
typedef typename vertex_property<Graph>::type
vertex_property_type;
typedef typename edge_property<Graph>::type edge_property_type;
out << "digraph " << graphName << " {\n";
// Graph properties
if (opt::k > 0)
out << "graph [k=" << opt::k << "]\n"
"edge [d=" << -int(opt::k - 1) << "]\n";
// Vertices
std::pair<vertex_iterator, vertex_iterator> vit = vertices(g);
for (vertex_iterator u = vit.first; u != vit.second; ++u) {
if (get(vertex_removed, g, *u))
continue;
write_vertex(out, g, *u, (vertex_property_type*)NULL);
}
// Edges
for (vertex_iterator u = vit.first; u != vit.second; ++u) {
if (get(vertex_removed, g, *u))
continue;
write_edges(out, g, *u, (edge_property_type*)NULL);
}
return out << "}\n";
}
/** Output a GraphViz dot graph. */
template <typename Graph>
struct DotWriter
{
const Graph& g;
DotWriter(const Graph& g) : g(g) { }
friend std::ostream& operator<<(std::ostream& out,
const DotWriter& o)
{
return write_dot<Graph>(out, o.g);
}
};
/** Output a GraphViz dot graph. */
template <typename Graph>
DotWriter<Graph> dot_writer(const Graph& g)
{
return DotWriter<Graph>(g);
}
/** Read a string delimited by double quotes. */
static inline
std::istream& read_dot_name(std::istream& in, std::string& s)
{
if (in >> std::ws && in.peek() == '"') {
in.get();
getline(in, s, '"');
} else
in.clear(std::ios::failbit);
return in;
}
/** Read a vertex descriptor delimited by double quotes. */
template <typename Graph>
std::istream& read_dot_id(std::istream& in, const Graph& g,
typename graph_traits<Graph>::vertex_descriptor& u)
{
std::string s;
if (read_dot_name(in, s))
u = find_vertex(s, g);
return in;
}
/** Read a GraphViz dot graph.
* @param betterEP handle parallel edges
*/
template <typename Graph, typename BetterEP>
std::istream& read_dot(std::istream& in, Graph& g, BetterEP betterEP)
{
assert(in);
typedef typename graph_traits<Graph>::vertex_descriptor
vertex_descriptor;
typedef typename vertex_property<Graph>::type
vertex_property_type;
typedef typename graph_traits<Graph>::edge_descriptor
edge_descriptor;
typedef typename edge_property<Graph>::type edge_property_type;
typedef typename graph_traits<Graph>::directed_category
directed_category;
bool isDirectedGraph = boost::detail::is_directed(directed_category());
// Add vertices if this graph is empty.
bool addVertices = num_vertices(g) == 0;
// Graph properties
in >> expect(isDirectedGraph ? "digraph" : "graph");
in >> Ignore('{');
assert(in);
edge_property_type defaultEdgeProp;
for (bool done = false; !done && in >> std::ws;) {
switch (in.peek()) {
case 'g': {
// Graph Properties
in >> expect("graph [ ");
if (in.peek() == 'k') {
unsigned k;
in >> expect("k =") >> k;
assert(in);
if (opt::k > 0)
assert(k == opt::k);
opt::k = k;
}
in >> Ignore(']');
break;
}
case 'e': // edge
// Default edge properties
in >> expect("edge [") >> defaultEdgeProp >> Ignore(']');
assert(in);
break;
default:
done = true;
break;
}
if (in >> std::ws && in.peek() == ';')
in.get();
}
for (std::string uname; read_dot_name(in, uname);) {
char c;
in >> c;
assert(in);
if (c == ';') {
// Vertex
if (addVertices) {
vertex_descriptor u = add_vertex(g);
put(vertex_name, g, u, uname);
} else {
vertex_descriptor u = find_vertex(uname, g);
assert(get(vertex_index, g, u) < num_vertices(g));
(void)u;
}
} else if (c == '[') {
// Vertex properties
vertex_property_type vp;
in >> vp >> Ignore(']');
assert(in);
if (addVertices) {
vertex_descriptor u = add_vertex(vp, g);
put(vertex_name, g, u, uname);
} else {
vertex_descriptor u = find_vertex(uname, g);
assert(get(vertex_index, g, u) < num_vertices(g));
if (g[u] != vp) {
std::cerr << "error: "
"vertex properties do not agree: "
"\"" << uname << "\" "
"[" << g[u] << "] [" << vp << "]\n";
exit(EXIT_FAILURE);
}
}
} else if (c == '-') {
// Edge
in >> expect(isDirectedGraph ? ">" : "-");
assert(in);
g_contigNames.lock();
vertex_descriptor u = find_vertex(uname, g);
if (in >> std::ws && in.peek() == '{') {
// Subgraph
in >> expect("{");
for (vertex_descriptor v; read_dot_id(in, g, v);)
add_edge(u, v, defaultEdgeProp, g);
if (in.fail())
in.clear();
in >> expect(" }");
assert(in);
} else {
vertex_descriptor v;
if (!read_dot_id(in, g, v)) {
in.clear();
std::cerr << "error: Expected `\"' and saw `"
<< (char)in.peek() << "'.\n";
exit(EXIT_FAILURE);
}
assert(in);
edge_property_type ep = defaultEdgeProp;
if (in >> std::ws && in.peek() == '[') {
// Edge properties
in >> expect("[") >> ep >> Ignore(']');
assert(in);
}
edge_descriptor e;
bool found;
boost::tie(e, found) = edge(u, v, g);
if (found) {
// Parallel edge
edge_property_type& ref = g[e];
ref = betterEP(ref, ep);
} else
add_edge(u, v, ep, g);
}
} else {
std::cerr << "error: Expected `[' or `->' and saw `"
<< c << "'.\n";
exit(EXIT_FAILURE);
}
if (in >> std::ws && in.peek() == ';')
in.get();
}
if (in.fail())
in.clear();
// Check for the closing brace.
in >> expect("}") >> std::ws;
assert(in.eof());
assert(num_vertices(g) > 0);
return in;
}
#endif
|