1use dot_structures::*;
49
50#[macro_export]
52macro_rules! port {
53 () => {Port(None,None)};
54 ( , $str:expr) => { Port(None,Some($str.to_string()))};
55 ( $id:expr , $str:expr) => {Port(Some($id),Some($str.to_string()))};
56 ( $id:expr) => {Port(Some($id),None)};
57}
58#[macro_export]
61macro_rules! node_id {
62 () => { NodeId(id!(),None) };
63 ($e:expr) => { NodeId(id!($e),None) };
64 ($e:expr, $p:expr) => { NodeId(id!($e),Some($p)) };
65 ($i:ident $e:expr) => { NodeId(id!($i$e),None) };
66 ($i:ident $e:expr, $p:expr) => { NodeId(id!($i$e),Some($p)) };
67}
68
69#[macro_export]
86macro_rules! id {
87 () => { Id::Anonymous("".to_string()) };
88 (html$e:expr) => { Id::Html(format!("{}",$e))};
89 (esc$e:expr) => { Id::Escaped(format!("\"{}\"",$e))};
90 ($e:expr) => { Id::Plain(format!("{}",$e))};
91}
92
93#[macro_export]
105macro_rules! attr {
106 ($ik:ident $k:expr,$iv:ident $v:expr) => {Attribute(id!($k),id!($iv $v))};
107 ($ik:ident $k:expr,$v:expr) => {Attribute(id!($ik $k),id!($v))};
108 ($k:expr, $iv:ident $v:expr) => {Attribute(id!($k),id!($iv $v))};
109 ($k:expr,$v:expr) => {Attribute(id!($k),id!($v))}
110}
111
112#[macro_export]
124macro_rules! stmt {
125 ($k:expr) => {Stmt::from($k)};
126}
127
128#[macro_export]
144macro_rules! subgraph {
145 () => {Subgraph{id:id!(),stmts:vec![]}};
146 ($id:expr) => {Subgraph{id:id!($id),stmts:vec![]}};
147 ($i:ident $id:expr) => {Subgraph{id:id!($i$id),stmts:vec![]}};
148 ($id:expr, $stmts:expr) => {Subgraph{id:id!($id),stmts:$stmts}};
149 ($i:ident $id:expr, $stmts:expr) => {Subgraph{id:id!($i$id),stmts:$stmts}};
150 ($i:ident $id:expr; $($stmts:expr),+ ) => {{
151 let mut stmts_vec = Vec::new();
152 $( stmts_vec.push(stmt!($stmts)) ; )+
153 Subgraph{id:id!($i$id),stmts:stmts_vec}
154 }};
155 ($id:expr; $($stmts:expr),+ ) => {{
156 let mut stmts_vec = Vec::new();
157 $( stmts_vec.push(stmt!($stmts)) ; )+
158 Subgraph{id:id!($id),stmts:stmts_vec}
159 }};
160 (; $($stmts:expr),+ ) => {{
161 let mut stmts_vec = Vec::new();
162 $( stmts_vec.push(stmt!($stmts)) ; )+
163 Subgraph{id:id!(),stmts:stmts_vec}
164 }};
165
166}
167
168#[macro_export]
188macro_rules! node {
189 () => {Node::new(NodeId(id!(), None), vec![])};
190 ($i:ident $id:expr) => {Node::new(NodeId(id!($i$id), None), vec![])};
191 ($id:expr) => {Node::new(NodeId(id!($id), None), vec![])};
192 ($i:ident $id:expr; $($attr:expr),+ ) => {{
193 let mut attrs = Vec::new();
194 $( attrs.push($attr) ; )+
195 Node::new(NodeId(id!($i$id), None), attrs)
196 }};
197 ($i:ident $id:expr, $attrs:expr ) => {
198 Node::new(NodeId(id!($i$id), None), $attrs)
199 };
200 ($id:expr, $attrs:expr ) => {
201 Node::new(NodeId(id!($id), None), $attrs)
202 };
203 ( $id:expr; $($attr:expr),+ ) => {{
204 let mut attrs = Vec::new();
205 $( attrs.push($attr) ; )+
206 Node::new(NodeId(id!( $id), None), attrs)
207 }};
208 ($i:ident $id:expr => $p:expr, $attrs:expr ) => {
209 Node::new(NodeId(id!($i$id), Some($p)), $attrs)
210 };
211 ($i:ident $id:expr => $p:expr; $($attr:expr),+ ) => {{
212 let mut attrs = Vec::new();
213 $( attrs.push($attr) ; )+
214 Node::new(NodeId(id!($i$id), Some($p)), attrs)
215 }};
216 ( $id:expr => $p:expr, $attrs:expr ) => {
217 Node::new(NodeId(id!($id), Some($p)), $attrs)
218 };
219 ( $id:expr => $p:expr; $($attr:expr),+ ) => {{
220 let mut attrs = Vec::new();
221 $( attrs.push($attr) ; )+
222 Node::new(NodeId(id!($id), Some($p)), attrs)
223 }};
224}
225
226#[macro_export]
252macro_rules! edge {
253 ($l:expr => $r:expr) => {
254 Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: vec![] }
255 };
256 ($l:expr => $r:expr $(=> $nexts:expr)+) => {{
257 let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)];
258 $( edges_vec.push(Vertex::from($nexts)) ; )+
259
260 Edge{ ty: EdgeTy::Chain(edges_vec), attributes: vec![] }
261 }};
262
263 ($l:expr => $r:expr, $attrs:expr) => {
264 Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: $attrs };
265 };
266 ($l:expr => $r:expr; $($attrs:expr),+) => {{
267 let mut attrs_vec = Vec::new();
268 $( attrs_vec.push($attrs) ; )+
269 Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: attrs_vec }
270 }};
271 ($l:expr => $r:expr $(=> $nexts:expr)+; $($attrs:expr),+) => {{
272 let mut attrs_vec = Vec::new();
273 $( attrs_vec.push($attrs) ; )+
274
275 let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)];
276 $( edges_vec.push(Vertex::from($nexts)) ; )+
277
278 Edge{ ty: EdgeTy::Chain(edges_vec), attributes: attrs_vec }
279 }};
280 ($l:expr => $r:expr $(=> $nexts:expr)+ , $attrs:expr) => {{
281
282 let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)]
283 $( edges_vec.push(Vertex::from($nexts)) ; )+
284
285 Edge{ ty: EdgeTy::Chain(edges_vec), attributes: $attrs }
286 }};
287}
288
289#[macro_export]
309macro_rules! graph {
310 (strict $id:expr) => {
311 Graph::Graph { id: $id, strict: true, stmts: vec![] }
312 };
313 ($id:expr) => {
314 Graph::Graph { id: $id, strict: false, stmts: vec![] }
315 };
316 (strict di $id:expr) => {
317 Graph::DiGraph { id: id!($id), strict: true, stmts: vec![] }
318 };
319 (di $id:expr) => {
320 Graph::DiGraph { id: id!($id), strict: false, stmts: vec![] }
321 };
322 (strict $id:expr, $stmts:expr) => {
323 Graph::Graph { id: $id, strict: true, stmts: $stmts }
324 };
325 ($id:expr, $stmts:expr) => {
326 Graph::Graph { id: $id, strict: false, stmts: $stmts }
327 };
328 (strict di $id:expr, $stmts:expr) => {
329 Graph::DiGraph { id: $id, strict: true, stmts: $stmts }
330 };
331 (di $id:expr, $stmts:expr) => {
332 Graph::DiGraph { id: $id, strict: false, stmts: $stmts }
333 };
334
335 (strict $id:expr; $($stmts:expr),+) => {{
336 let mut stmts = vec![];
337 $( stmts.push(stmt!($stmts)) ; )+
338 Graph::Graph { id: $id, strict: true, stmts: stmts }
339 }};
340 ($id:expr; $($stmts:expr),+) => {{
341 let mut stmts = vec![];
342 $( stmts.push(stmt!($stmts)) ; )+
343 Graph::Graph { id: $id, strict: false, stmts: stmts }
344 }};
345 (strict di $id:expr; $($stmts:expr),+) => {{
346 let mut stmts = vec![];
347 $( stmts.push(stmt!($stmts)) ; )+
348 Graph::DiGraph { id: $id, strict: true, stmts: stmts }
349 }};
350 (di $id:expr; $($stmts:expr),+) => {{
351 let mut stmts = vec![];
352 $( stmts.push(stmt!($stmts)) ; )+
353 Graph::DiGraph { id: $id, strict: false, stmts: stmts }
354 }};
355
356}
357
358#[cfg(test)]
359mod tests {
360 use dot_structures::*;
361
362 #[test]
363 fn graph_test() {
364 assert_eq!(
365 graph!(strict di id!("abc")),
366 Graph::DiGraph { id: id!("abc"), strict: true, stmts: vec![] }
367 );
368 assert_eq!(
369 graph!(strict di id!("abc");stmt!(node!("abc"))),
370 Graph::DiGraph { id: id!("abc"), strict: true, stmts: vec![stmt!(node!("abc"))] }
371 );
372 }
373
374 #[test]
375 fn edge_test() {
376 assert_eq!(
377 edge!(node_id!("1") => node_id!("2")),
378 Edge { ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))), attributes: vec![] }
379 );
380 assert_eq!(
381 edge!(node_id!("1") => node_id!("2") => subgraph!("a")),
382 Edge { ty: EdgeTy::Chain(vec![Vertex::N(node_id!("1")), Vertex::N(node_id!("2")), Vertex::S(subgraph!("a"))]), attributes: vec![] }
383 );
384 assert_eq!(
385 edge!(node_id!("1") => node_id!("2"), vec![attr!("a","b")]),
386 Edge { ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))), attributes: vec![attr!("a","b")] }
387 );
388 assert_eq!(
389 edge!(node_id!("1") => node_id!("2"); attr!("a","b")),
390 Edge { ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))), attributes: vec![attr!("a","b")] }
391 );
392 }
393
394 #[test]
395 fn stmt_test() {
396 assert_eq!(stmt!(node!()), Stmt::Node(Node::new(NodeId(id!(), None), vec![])));
397 }
398
399 #[test]
400 fn subgraph_test() {
401 assert_eq!(subgraph!(), Subgraph { id: Id::Anonymous("".to_string()), stmts: vec![] });
402 assert_eq!(subgraph!("abc";node!()),
403 Subgraph {
404 id: Id::Plain("abc".to_string()),
405 stmts: vec![stmt!(node!())],
406 });
407 }
408
409 #[test]
410 fn node_test() {
411 assert_eq!(node!(), Node::new(NodeId(id!(), None), vec![]));
412 assert_eq!(node!(html "abc"; attr!("a","a")),
413 Node::new(NodeId(id!(html "abc"), None),
414 vec![attr!("a","a")]));
415 assert_eq!(node!(html "abc" ; attr!("a","a")),
416 Node::new(NodeId(id!(html "abc"), None),
417 vec![attr!("a","a")]));
418 assert_eq!(node!("abc" ; attr!("a","a"),attr!("a","a")),
419 Node::new(NodeId(id!( "abc"), None),
420 vec![attr!("a","a"), attr!("a","a")]))
421 }
422
423 #[test]
424 fn attr_test() {
425 assert_eq!(attr!("a","1"), Attribute(id!("a"), id!("1")));
426 assert_eq!(attr!(html "a","1"), Attribute(id!(html "a"), id!("1")))
427 }
428
429 #[test]
430 fn id_test() {
431 assert_eq!(id!(), Id::Anonymous("".to_string()));
432 assert_eq!(id!(html "<<abc>>"), Id::Html("<<abc>>".to_string()));
433 assert_eq!(id!("abc"), Id::Plain("abc".to_string()));
434 assert_eq!(id!(esc "ab\\\"c"), Id::Escaped("\"ab\\\"c\"".to_string()));
435 }
436}