-
Notifications
You must be signed in to change notification settings - Fork 9
/
lib.rs
897 lines (865 loc) · 30 KB
/
lib.rs
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
//! # The set of macros helping to generate the elements of graphviz
//! The set helps to generate the major components of the graphviz dot notation
//! endeavouring to follow comparatively close to the language [`notation`]
//!
//! [`notation`]: https://graphviz.org/doc/info/lang.html
//! # Description:
//! In overall, the format of macros is the following one:
//! - name or id or any other markers
//! - list of vec with a prefix , or seq of elems with a prefix ;
//!
//! # Note:
//! - for the list of items the way to pass vec is the following one: element(.. , vec of items)
//! - for the seq of items the way to pass several items is the following one: element(.. ; items+)
//!
//! # Examples:
//! ```rust
//! use dot_generator::*;
//! use dot_structures::*;
//!
//! let g = r#"
//! strict digraph t {
//! aa[color=green]
//! subgraph v {
//! aa[shape=square]
//! subgraph vv{a2 -> b2}
//! aaa[color=red]
//! aaa -> bbb
//! }
//! aa -> be -> subgraph v { d -> aaa}
//! aa -> aaa -> v
//! }
//! "#;
//!
//! graph!(strict di id!("t");
//! node!("aa";attr!("color","green")),
//! subgraph!("v";
//! node!("aa"; attr!("shape","square")),
//! subgraph!("vv"; edge!(node_id!("a2") => node_id!("b2"))),
//! node!("aaa";attr!("color","red")),
//! edge!(node_id!("aaa") => node_id!("bbb"))
//! ),
//! edge!(node_id!("aa") => node_id!("be") => subgraph!("v"; edge!(node_id!("d") => node_id!("aaa")))),
//! edge!(node_id!("aa") => node_id!("aaa") => node_id!("v"))
//! );
//! ```
use dot_structures::*;
/// Constructs a port.
/// Port consists of two parts: id and directions
/// The both can be optional.
///
/// # Arguments:
/// - id: accepts id of the port. Can be constructed with id!. Can be omitted, like `port!(, "x")`
/// - direction: accepts string. Can be omitted
///
/// # Examples
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
/// assert_eq!(
/// port!(),
/// Port(None,None)
/// );
/// assert_eq!(
/// port!(,""),
/// Port(None,Some("".to_string()))
/// );
/// assert_eq!(
/// port!(id!(),""),
/// Port(Some( Id::Anonymous("".to_string())),Some("".to_string()))
/// );
/// assert_eq!(
/// port!(id!()),
/// Port(Some( Id::Anonymous("".to_string())),None)
/// );
/// ```
#[macro_export]
macro_rules! port {
() => {
Port(None, None)
};
(, $str:expr) => {
Port(None, Some($str.to_string()))
};
($id:expr, $str:expr) => {
Port(Some($id), Some($str.to_string()))
};
($id:expr) => {
Port(Some($id), None)
};
}
/// Constructs a node id.
/// In short, it is a pair of id and port.
///
/// # Arguments
/// - id: id of the node, can be omitted. To construct id it accepts
/// - ident (optional): `esc` or `html` prefix
/// - Should be an expression with a result that can be transformed to string (with Display)
/// - port: expects a `Port`. Can be constructed with `port!`
///
/// # Examples
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// node_id!(),
/// NodeId(Id::Anonymous("".to_owned()), None)
/// );
///
/// assert_eq!(
/// node_id!("plain"),
/// NodeId(Id::Plain("plain".to_owned()), None)
/// );
///
/// assert_eq!(
/// node_id!("plain", port!()),
/// NodeId(Id::Plain("plain".to_owned()), Some(Port(None,None)))
/// );
///
/// assert_eq!(
/// node_id!(esc "escaped"),
/// NodeId(Id::Escaped("\"escaped\"".to_owned()),None)
/// );
/// assert_eq!(
/// node_id!(html "</br>escaped"),
/// NodeId(Id::Html("</br>escaped".to_owned()),None)
/// );
/// ```
#[macro_export]
macro_rules! node_id {
() => { NodeId(id!(),None) };
($e:expr) => { NodeId(id!($e),None) };
($e:expr, $p:expr) => { NodeId(id!($e),Some($p)) };
($i:ident $e:expr) => { NodeId(id!($i$e),None) };
($i:ident $e:expr, $p:expr) => { NodeId(id!($i$e),Some($p)) };
}
/// Constructs an id for node or subgraph.
/// # Arguments:
/// - prefix (optional):
/// - html: defines the id has html tags in the name
/// - esc: encompasses the given name with quotes and denotes the string has escaped quotes
/// - can be omitted. In that case, the plain id will be created.
/// - Should be an expression with a result that can be transformed to string (with Display)
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(id!(), Id::Anonymous("".to_string()));
/// assert_eq!(id!(html "<<abc>>"), Id::Html("<<abc>>".to_string()));
/// assert_eq!(id!("abc"), Id::Plain("abc".to_string()));
/// assert_eq!(id!(esc "ab\"c"), Id::Escaped("\"ab\"c\"".to_string()));
/// ```
#[macro_export]
macro_rules! id {
() => {
Id::Anonymous("".to_string())
};
(html $e:expr) => {
Id::Html(format!("{}", $e))
};
(esc $e:expr) => {
Id::Escaped(format!("\"{}\"", $e))
};
($e:expr) => {
Id::Plain(format!("{}", $e))
};
}
/// Constructs an attribute.
/// Essentially it is a pair of key, value separated with `=`
/// This macro composes internal parts of 2 ids
///
/// # Arguments
/// - key prefix (optional): esc or html or empty. See `id!` macro
/// - id value for key. Should be an expression with a result that can be transformed to string
/// - value prefix (optional): esc or html or empty. See `id!` macro
/// - id value for value. Should be an expression with a result that can be transformed to string
///
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(attr!("a","1"), Attribute(id!("a"), id!("1")));
/// assert_eq!(attr!(html "a","1"), Attribute(id!(html "a"), id!("1")));
/// assert_eq!(attr!(esc "a","1"), Attribute(id!(esc "a"), id!("1")));
/// assert_eq!(attr!(esc "a",esc "1"), Attribute(id!(esc "a"), id!(esc "1")));
/// assert_eq!(attr!("a",esc "1"), Attribute(id!("a"), id!(esc "1")))
/// ```
#[macro_export]
macro_rules! attr {
($ik:ident $k:expr,$iv:ident $v:expr) => {Attribute(id!($ik $k),id!($iv $v))};
($ik:ident $k:expr,$v:expr) => {Attribute(id!($ik $k),id!($v))};
($k:expr, $iv:ident $v:expr) => {Attribute(id!($k),id!($iv $v))};
($k:expr,$v:expr) => {Attribute(id!($k),id!($v))}
}
/// Constructs one of the elements of the graph:
/// - Node : node in the graph
/// - Subgraph: subgraph in the graph
/// - Attribute: attribute of an element
/// - GAttribute: attribute for the given graph or subgraph
/// - Edge: edge in the graph
///
/// # Argument:
/// - one of the aforementioned items.
///
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// stmt!(node!(esc "id")), // if the id has escaped string or needs to be placed in the quotes
/// Stmt::Node(Node::new(NodeId(id!(esc "id"), None), vec![]))
/// );
/// assert_eq!(
/// stmt!(attr!("a","1")),
/// Stmt::Attribute(Attribute(id!("a"), id!("1")))
/// );
/// assert_eq!(
/// stmt!(attr!("a",esc "format")),
/// Stmt::Attribute(Attribute(id!("a"), id!(esc "format")))
/// );
/// assert_eq!(
/// stmt!(GraphAttributes::new("graph", vec![attr!("a",esc "format")])),
/// Stmt::GAttribute(GraphAttributes::Graph(vec![attr!("a",esc "format")]))
/// );
/// assert_eq!(
/// stmt!(edge!(node_id!("a") => node_id!("b"))),
/// Stmt::Edge(edge!(node_id!("a") => node_id!("b")))
/// );
/// ```
#[macro_export]
macro_rules! stmt {
($k:expr) => {
Stmt::from($k)
};
}
/// Constructs a subgraph.
///
/// # Arguments:
/// - prefix for id (optional): esc or html
/// - id: id of the graph. Can be omitted but the separation needs to be left in like `; ...`
/// - a collection of statements or variadic arguments but the delegates from the statement
///
/// Therefore, the macros accepts two different forms where the first separator denotes it:
/// - `subgraph!(id, vec![statement])` where statement can be constructed using the `stmt!` macro
/// - `subgraph!(id; statement_delegate, statement_delegate2, ...)
/// where the delegates are undertaking structures. See `stmt! macro
///
/// # Note:
/// - id can be left empty with varargs like that `subgraph!(; statement1, ...)`
/// - the macros expects the statement delegates, e.g. nodes, edges, attributes. See `stmt!` macro
///
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// subgraph!(),
/// Subgraph { id: Id::Anonymous("".to_string()), stmts: vec![] }
/// );
///
/// assert_eq!(
/// subgraph!(
/// "abc";
/// node!("node1"),
/// node!("node2"),
/// edge!(node_id!("node1") => node_id!("node2"))
/// ),
/// Subgraph {
/// id: id!("abc"),
/// stmts: vec![
/// node!("node1").into(),
/// node!("node2").into(),
/// edge!(node_id!("node1") => node_id!("node2")).into()
/// ],
/// });
/// assert_eq!(
/// subgraph!(
/// "abc",
/// vec![stmt!(node!("node1")), stmt!(attr!("a","b"))]),
/// Subgraph {
/// id: id!("abc"),
/// stmts: vec![
/// node!("node1").into(),
/// attr!("a","b").into()
/// ],
/// });
/// assert_eq!(
/// subgraph!(
/// esc "abc";
/// edge!(node_id!("left") => node_id!("right"))),
/// Subgraph {
/// id: id!(esc "abc"),
/// stmts: vec![
/// edge!(node_id!("left") => node_id!("right")).into()
/// ],
/// });
/// assert_eq!(subgraph!(; edge!(node_id!("left") => node_id!("right"))),
/// Subgraph {
/// id: Id::Anonymous("".to_string()),
/// stmts: vec![
/// edge!(node_id!("left") => node_id!("right")).into()
/// ],
/// });
/// ```
#[macro_export]
macro_rules! subgraph {
() => {Subgraph{id:id!(),stmts:vec![]}};
($id:expr) => {Subgraph{id:id!($id),stmts:vec![]}};
($i:ident $id:expr) => {Subgraph{id:id!($i$id),stmts:vec![]}};
($id:expr, $stmts:expr) => {Subgraph{id:id!($id),stmts:$stmts}};
($i:ident $id:expr, $stmts:expr) => {Subgraph{id:id!($i$id),stmts:$stmts}};
($i:ident $id:expr; $($stmts:expr),+ ) => {{
let mut stmts_vec = Vec::new();
$( stmts_vec.push(stmt!($stmts)) ; )+
Subgraph{id:id!($i$id),stmts:stmts_vec}
}};
($id:expr; $($stmts:expr),+ ) => {{
let mut stmts_vec = Vec::new();
$( stmts_vec.push(stmt!($stmts)) ; )+
Subgraph{id:id!($id),stmts:stmts_vec}
}};
(; $($stmts:expr),+ ) => {{
let mut stmts_vec = Vec::new();
$( stmts_vec.push(stmt!($stmts)) ; )+
Subgraph{id:id!(),stmts:stmts_vec}
}};
}
/// Constructs `GraphAttributes`
///
/// The GraphAttributes can be either a graph based, edge based or node based.
///
/// # Arguments:
/// - prefix: graph, edge, node
/// - a collection of attributes or variadic arguments of attributes
///
/// Therefore, the macros accepts two different forms where the first separator denotes it:
/// - `attrs!(prefix, vec![attrs])` where attr can be constructed using the `attr!` macro
/// - `attrs!(prefix; attr1, attr2, ...)`
///
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// attrs!(),
/// GraphAttributes::new("graph", vec![])
/// );
/// assert_eq!(
/// attrs!(edge vec![attr!("a","b")]),
/// GraphAttributes::new("edge", vec![attr!("a","b")])
/// );
/// assert_eq!(
/// attrs!(graph vec![attr!("a","b")]),
/// GraphAttributes::new("graph", vec![attr!("a","b")])
/// );
/// assert_eq!(
/// attrs!(node vec![attr!("a","b")]),
/// GraphAttributes::new("node", vec![attr!("a","b")])
/// );
/// assert_eq!(
/// attrs!(node; attr!("a","b"), attr!("c","d")),
/// GraphAttributes::new("node", vec![attr!("a","b"),attr!("c","d")])
/// );
/// ```
#[macro_export]
macro_rules! attrs {
() => {GraphAttributes::Graph(vec![])};
(graph $attrs:expr) => {GraphAttributes::Graph($attrs)};
(node $attrs:expr) => {GraphAttributes::Node($attrs)};
(edge $attrs:expr) => {GraphAttributes::Edge($attrs)};
(graph; $($attrs:expr),+ ) => {{
let mut attrs_vec = Vec::new();
$( attrs_vec.push($attrs) ; )+
GraphAttributes::Graph(attrs_vec)
}};
(node; $($attrs:expr),+ ) => {{
let mut attrs_vec = Vec::new();
$( attrs_vec.push($attrs) ; )+
GraphAttributes::Node(attrs_vec)
}};
(edge; $($attrs:expr),+ ) => {{
let mut attrs_vec = Vec::new();
$( attrs_vec.push($attrs) ; )+
GraphAttributes::Edge(attrs_vec)
}};
}
/// Constructs a node.
///
/// # Arguments:
/// - prefix for id (optional): esc or html
/// - id(optional): the id for the node
/// - port(optional): the port of the node in a format `id => port`
/// - attributes(optional): either a vec of attributes or attributes in a form of variadic arguments
///
///
/// # Examples:
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(node!(), Node::new(NodeId(id!(), None), vec![]));
///
/// assert_eq!(node!(html "abc"; attr!("a","a")),
/// Node::new(NodeId(id!(html "abc"), None),
/// vec![attr!("a","a")]));
///
/// assert_eq!(node!(esc "abc"; attr!("a","a")),
/// Node::new(NodeId(id!(esc "abc"), None),
/// vec![attr!("a","a")]));
///
/// assert_eq!(node!("abc" ; attr!("a","a"), attr!("b","b")),
/// Node::new(
/// NodeId(id!("abc"), None),
/// vec![attr!("a","a"),attr!("b","b")]
/// )
/// );
///
/// assert_eq!(node!("abc" , vec![attr!("a","a"),attr!("a","a")]),
/// Node::new(NodeId(id!( "abc"), None),
/// vec![attr!("a","a"), attr!("a","a")])
/// );
///
/// assert_eq!(
/// node!("abc" => port!(,"id") ; attr!("a","a"),attr!("a","a")),
/// Node::new(
/// NodeId(id!( "abc"), Some(Port(None,Some("id".to_string())))),
/// vec![attr!("a","a"), attr!("a","a")])
/// );
///
/// assert_eq!(
/// node!(esc "abc" => port!(id!("port_id")) ;
/// attr!("a","a"),attr!("a","a")),
/// Node::new(NodeId(id!(esc "abc"), Some(port!(id!("port_id")))),
/// vec![attr!("a","a"), attr!("a","a")])
/// );
/// ```
#[macro_export]
macro_rules! node {
() => {Node::new(NodeId(id!(), None), vec![])};
($i:ident $id:expr) => {Node::new(NodeId(id!($i$id), None), vec![])};
($id:expr) => {Node::new(NodeId(id!($id), None), vec![])};
($i:ident $id:expr; $($attr:expr),+ ) => {{
let mut attrs = Vec::new();
$( attrs.push($attr) ; )+
Node::new(NodeId(id!($i$id), None), attrs)
}};
($i:ident $id:expr, $attrs:expr ) => {
Node::new(NodeId(id!($i$id), None), $attrs)
};
($id:expr, $attrs:expr ) => {
Node::new(NodeId(id!($id), None), $attrs)
};
( $id:expr; $($attr:expr),+ ) => {{
let mut attrs = Vec::new();
$( attrs.push($attr) ; )+
Node::new(NodeId(id!( $id), None), attrs)
}};
($i:ident $id:expr => $p:expr, $attrs:expr ) => {
Node::new(NodeId(id!($i$id), Some($p)), $attrs)
};
($i:ident $id:expr => $p:expr; $($attr:expr),+ ) => {{
let mut attrs = Vec::new();
$( attrs.push($attr) ; )+
Node::new(NodeId(id!($i$id), Some($p)), attrs)
}};
( $id:expr => $p:expr, $attrs:expr ) => {
Node::new(NodeId(id!($id), Some($p)), $attrs)
};
( $id:expr => $p:expr; $($attr:expr),+ ) => {{
let mut attrs = Vec::new();
$( attrs.push($attr) ; )+
Node::new(NodeId(id!($id), Some($p)), attrs)
}};
}
/// Constructs an edge.
///
/// # Arguments:
/// - chain of edges separated by `=>`: the edge expects either `node_id!` or `subgraph!`
/// - attributes: either a vec of attributes or attributes in a form of variadic arguments
///
/// # Examples:
///
/// ```rust
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// edge!(node_id!("1") => node_id!("2")),
/// Edge {
/// ty: EdgeTy::Pair(
/// Vertex::N(node_id!("1")),
/// Vertex::N(node_id!("2"))
/// ),
/// attributes: vec![]
/// }
/// );
///
/// assert_eq!(
/// edge!(
/// node_id!("1") => node_id!("2") => subgraph!("a")
/// ),
/// Edge {
/// ty: EdgeTy::Chain(vec![
/// Vertex::N(node_id!("1")),
/// Vertex::N(node_id!("2")),
/// Vertex::S(subgraph!("a"))]),
/// attributes: vec![] }
/// );
///
/// assert_eq!(
/// edge!(
/// node_id!("1") => node_id!("2"), vec![attr!("a","b")]
/// ),
/// Edge {
/// ty: EdgeTy::Pair(
/// Vertex::N(node_id!("1")),
/// Vertex::N(node_id!("2"))
/// ),
/// attributes: vec![attr!("a","b")] }
/// );
///
/// assert_eq!(
/// edge!(node_id!("1") => node_id!("2");
/// attr!("a","b"), attr!("a1","b1")),
/// Edge {
/// ty: EdgeTy::Pair(
/// Vertex::N(node_id!("1")),
/// Vertex::N(node_id!("2"))
/// ),
/// attributes: vec![attr!("a","b"), attr!("a1","b1")] }
/// );
/// ```
#[macro_export]
macro_rules! edge {
($l:expr => $r:expr) => {
Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: vec![] }
};
($l:expr => $r:expr $(=> $nexts:expr)+) => {{
let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)];
$( edges_vec.push(Vertex::from($nexts)) ; )+
Edge{ ty: EdgeTy::Chain(edges_vec), attributes: vec![] }
}};
($l:expr => $r:expr, $attrs:expr) => {
Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: $attrs };
};
($l:expr => $r:expr; $($attrs:expr),+) => {{
let mut attrs_vec = Vec::new();
$( attrs_vec.push($attrs) ; )+
Edge{ ty: EdgeTy::Pair(Vertex::from($l),Vertex::from($r)), attributes: attrs_vec }
}};
($l:expr => $r:expr $(=> $nexts:expr)+; $($attrs:expr),+) => {{
let mut attrs_vec = Vec::new();
$( attrs_vec.push($attrs) ; )+
let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)];
$( edges_vec.push(Vertex::from($nexts)) ; )+
Edge{ ty: EdgeTy::Chain(edges_vec), attributes: attrs_vec }
}};
($l:expr => $r:expr $(=> $nexts:expr)+ , $attrs:expr) => {{
let mut edges_vec = vec![Vertex::from($l),Vertex::from($r)]
$( edges_vec.push(Vertex::from($nexts)) ; )+
Edge{ ty: EdgeTy::Chain(edges_vec), attributes: $attrs }
}};
}
/// Constructs a graph.
///
/// # Arguments
/// - prefix strict(optional): the prefix defines the strictness of the graph
/// - prefix di(optional): the prefix defines the graph is a digraph
/// - id: id of the graph. Can be constructed using `id!` macros
/// - a collection of statements or variadic arguments but the delegates from the statement
///
/// Therefore, the macros accepts two different forms where the first separator denotes it:
/// - `graph!(id, vec![statement])` where statement can be constructed using the `stmt!` macro
/// - `graph!(id; statement_delegate, statement_delegate2, ...)
/// where the delegates are undertaking structures. See `stmt! macro
///
/// # Note:
/// - the macros expects the statement delegates, e.g. nodes, edges, attributes. See `stmt!` macro
///
/// # Examples:
/// ```
/// use dot_generator::*;
/// use dot_structures::*;
///
/// assert_eq!(
/// graph!(strict di id!("abc")),
/// Graph::DiGraph { id: id!("abc"), strict: true, stmts: vec![] }
/// );
///
/// assert_eq!(
/// graph!(strict di id!("abc");
/// node!("abc"),
/// node!("cde")
/// ),
/// Graph::DiGraph {
/// id: id!("abc"),
/// strict: true,
/// stmts: vec![stmt!(node!("abc")),stmt!(node!("cde"))] }
/// );
///
/// assert_eq!(
/// graph!(di id!("abc");
/// edge!(node_id!("a") => node_id!("b"); attr!("a","b")),
/// subgraph!(
/// "abc",
/// vec![stmt!(node!("node1")), stmt!(attr!("a","b"))]
/// )
/// ),
/// Graph::DiGraph {
/// id: id!("abc"),
/// strict: false,
/// stmts: vec![
/// edge!(node_id!("a") => node_id!("b"); attr!("a","b")).into(),
/// subgraph!(
/// "abc",
/// vec![stmt!(node!("node1")), stmt!(attr!("a","b"))]
/// ).into()
/// ]
/// });
///
/// assert_eq!(
/// graph!(di id!("abc"),
/// vec![
/// stmt!(edge!(node_id!("a") => node_id!("b"); attr!("a","b"))),
/// stmt!(node!("e")),
/// stmt!(attr!("attr","val")),
/// ]
/// ),
/// Graph::DiGraph {
/// id: id!("abc"),
/// strict: false,
/// stmts: vec![
/// edge!(node_id!("a") => node_id!("b"); attr!("a","b")).into(),
/// node!("e").into(),
/// attr!("attr","val").into()
/// ] }
/// );
///
/// assert_eq!(
/// graph!(di id!("abc"),
/// vec![
/// stmt!(edge!(node_id!("a") => node_id!("b"); attr!("a","b"))),
/// stmt!(node!("e")),
/// stmt!(attr!("attr","val")),
/// stmt!(attrs!(graph; attr!("attr","val"))),
/// ]
/// ),
/// Graph::DiGraph {
/// id: id!("abc"),
/// strict: false,
/// stmts: vec![
/// edge!(node_id!("a") => node_id!("b"); attr!("a","b")).into(),
/// node!("e").into(),
/// attr!("attr","val").into(),
/// attrs!(graph; attr!("attr","val")).into()
/// ] }
/// );
/// ```
#[macro_export]
macro_rules! graph {
(strict $id:expr) => {
Graph::Graph { id: $id, strict: true, stmts: vec![] }
};
($id:expr) => {
Graph::Graph { id: $id, strict: false, stmts: vec![] }
};
(strict di $id:expr) => {
Graph::DiGraph { id: id!($id), strict: true, stmts: vec![] }
};
(di $id:expr) => {
Graph::DiGraph { id: id!($id), strict: false, stmts: vec![] }
};
(strict $id:expr, $stmts:expr) => {
Graph::Graph { id: $id, strict: true, stmts: $stmts }
};
($id:expr, $stmts:expr) => {
Graph::Graph { id: $id, strict: false, stmts: $stmts }
};
(strict di $id:expr, $stmts:expr) => {
Graph::DiGraph { id: $id, strict: true, stmts: $stmts }
};
(di $id:expr, $stmts:expr) => {
Graph::DiGraph { id: $id, strict: false, stmts: $stmts }
};
(strict $id:expr; $($stmts:expr),+) => {{
let mut stmts = vec![];
$( stmts.push(stmt!($stmts)) ; )+
Graph::Graph { id: $id, strict: true, stmts: stmts }
}};
($id:expr; $($stmts:expr),+) => {{
let mut stmts = vec![];
$( stmts.push(stmt!($stmts)) ; )+
Graph::Graph { id: $id, strict: false, stmts: stmts }
}};
(strict di $id:expr; $($stmts:expr),+) => {{
let mut stmts = vec![];
$( stmts.push(stmt!($stmts)) ; )+
Graph::DiGraph { id: $id, strict: true, stmts: stmts }
}};
(di $id:expr; $($stmts:expr),+) => {{
let mut stmts = vec![];
$( stmts.push(stmt!($stmts)) ; )+
Graph::DiGraph { id: $id, strict: false, stmts: stmts }
}};
}
#[cfg(test)]
mod tests {
use dot_structures::*;
#[test]
fn port_test() {
assert_eq!(
port!(),
Port(None, None)
);
assert_eq!(
port!(,""),
Port(None, Some("".to_string()))
);
assert_eq!(
port!(id!(),""),
Port(Some(Id::Anonymous("".to_string())), Some("".to_string()))
);
assert_eq!(
port!(id!()),
Port(Some(Id::Anonymous("".to_string())), None)
);
}
#[test]
fn node_id_test() {
assert_eq!(
node_id!(),
NodeId(Id::Anonymous("".to_owned()), None)
);
assert_eq!(
node_id!("plain"),
NodeId(Id::Plain("plain".to_owned()), None)
);
assert_eq!(
node_id!("plain", port!()),
NodeId(Id::Plain("plain".to_owned()), Some(Port(None, None)))
);
assert_eq!(
node_id!(esc "escaped"),
NodeId(Id::Escaped("\"escaped\"".to_owned()), None)
);
assert_eq!(
node_id!(html "</br>escaped"),
NodeId(Id::Html("</br>escaped".to_owned()), None)
);
}
#[test]
fn graph_test() {
assert_eq!(
graph!(strict di id!("abc")),
Graph::DiGraph {
id: id!("abc"),
strict: true,
stmts: vec![],
}
);
assert_eq!(
graph!(strict di id!("abc");stmt!(node!("abc"))),
Graph::DiGraph {
id: id!("abc"),
strict: true,
stmts: vec![stmt!(node!("abc"))],
}
);
}
#[test]
fn edge_test() {
assert_eq!(
edge!(node_id!("1") => node_id!("2")),
Edge {
ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))),
attributes: vec![],
}
);
assert_eq!(
edge!(node_id!("1") => node_id!("2") => subgraph!("a")),
Edge {
ty: EdgeTy::Chain(vec![
Vertex::N(node_id!("1")),
Vertex::N(node_id!("2")),
Vertex::S(subgraph!("a")),
]),
attributes: vec![],
}
);
assert_eq!(
edge!(node_id!("1") => node_id!("2"), vec![attr!("a","b")]),
Edge {
ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))),
attributes: vec![attr!("a", "b")],
}
);
assert_eq!(
edge!(node_id!("1") => node_id!("2"); attr!("a","b")),
Edge {
ty: EdgeTy::Pair(Vertex::N(node_id!("1")), Vertex::N(node_id!("2"))),
attributes: vec![attr!("a", "b")],
}
);
}
#[test]
fn stmt_test() {
assert_eq!(
stmt!(node!()),
Stmt::Node(Node::new(NodeId(id!(), None), vec![]))
);
}
#[test]
fn subgraph_test() {
assert_eq!(
subgraph!(),
Subgraph {
id: Id::Anonymous("".to_string()),
stmts: vec![],
}
);
assert_eq!(
subgraph!("abc";node!()),
Subgraph {
id: Id::Plain("abc".to_string()),
stmts: vec![stmt!(node!())],
}
);
}
#[test]
fn node_test() {
assert_eq!(node!(), Node::new(NodeId(id!(), None), vec![]));
assert_eq!(
node!(html "abc"; attr!("a","a")),
Node::new(NodeId(id!(html "abc"), None), vec![attr!("a", "a")])
);
assert_eq!(
node!(html "abc" ; attr!("a","a")),
Node::new(NodeId(id!(html "abc"), None), vec![attr!("a", "a")])
);
assert_eq!(
node!("abc" ; attr!("a","a"),attr!("a","a")),
Node::new(
NodeId(id!("abc"), None),
vec![attr!("a", "a"), attr!("a", "a")],
)
)
}
#[test]
fn attr_test() {
assert_eq!(attr!("a", "1"), Attribute(id!("a"), id!("1")));
assert_eq!(attr!(html "a","1"), Attribute(id!(html "a"), id!("1")))
}
#[test]
fn id_test() {
assert_eq!(id!(), Id::Anonymous("".to_string()));
assert_eq!(id!(html "<<abc>>"), Id::Html("<<abc>>".to_string()));
assert_eq!(id!("abc"), Id::Plain("abc".to_string()));
assert_eq!(id!(esc "ab\\\"c"), Id::Escaped("\"ab\\\"c\"".to_string()));
}
}