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
// MIT License
//
// Copyright (c) 2018 Lukas Lueg (lukas.lueg@gmail.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
//! A library to generate syntax diagrams for Rust macros.
//!
//! ```
//! let src = r#"macro_rules! vec {
//!                  ( $ elem : expr ; $ n : expr ) => { ... };
//!                  ( $ ( $ x : expr ) , * ) => { ... };
//!                  ( $ ( $ x : expr , ) * ) => { ... };
//!              }
//! "#;
//! let dia = macro_railroad::to_diagram(&src).expect("Failed to parse");
//! assert!(dia.starts_with("<svg"));
//! ```
//!
//! Diagrams are generated directly from code:
//!
//! 1. Parsing the `macro_rules!()`-block.
//! 0. Converting the parser-tree into an intermediate representation and applying
//! transformations as desired.
//! 0. Converting the intermediate representation into a `railroad::Diagram`.
//! Adding CSS to control the graphical representation.
//! 0. Outputting the final `SVG`.
//!
//! ```
//! let src = r#"macro_rules! vec {
//!                  ( $ elem : expr ; $ n : expr ) => { ... };
//!                  ( $ ( $ x : expr ) , * ) => { ... };
//!                  ( $ ( $ x : expr , ) * ) => { ... };
//!              }
//! "#;
//!
//! let parsed = macro_railroad::parser::parse(&src).expect("Failed to parse");
//!
//! let mut ir: macro_railroad::lowering::MacroRules = parsed.into();
//! // Remove `__impl`--rules, which we consider macro-internal here.
//! ir.remove_internal();
//! // Fold common parts in the macro-syntax, making the diagram easier to understand.
//! ir.foldcommontails();
//! // Remove superfluous elements left from parsing and transforming.
//! ir.normalize();
//!
//! // Create a diagram, add a legend
//! let mut dia = macro_railroad::diagram::into_diagram(ir, true);
//! dia.add_default_css();
//!
//! assert!(dia.to_string().starts_with("<svg"));
//! ```
#[macro_use]
extern crate syn;

pub mod diagram;
pub mod lowering;
pub mod parser;

use syn::parse::Result;

/// Create a syntax diagram as an SVG from the given macro_rules!-source.
///
/// # Errors
/// If the input fails to parse as a `macro_rules!`.
pub fn to_diagram(src: &str) -> Result<String> {
    // Parser-tree, basically as rustc sees it
    let macro_rules = parser::parse(src)?;

    // Create simplified tree
    let mut tree = lowering::MacroRules::from(macro_rules);

    // Optimize tree
    tree.remove_internal();
    tree.foldcommontails();
    tree.normalize();

    // create a diagram with a legend
    let dia = diagram::into_diagram(tree, true);

    Ok(dia.to_string())
}

#[cfg(test)]
mod tests {
    use super::*;
    use lowering::{MacroRules, Matcher};

    #[test]
    fn fold_nested_options() {
        // Issue 22, folding a ?-repetition might lead to a nested Option
        // which should be unnested

        let src = r#"macro_rules! isolate_params {
    ($self:ident.$fn:ident(&self $(, $ident:ident: $ty:ty)*)) => ($self.$fn($($ident),*));
    ($self:ident.$fn:ident(&$($lt:tt)? self $(, $ident:ident: $ty:ty)*)) => ($self.$fn($($ident),*));
}"#;
        let mut tree = MacroRules::from(parser::parse(src).unwrap());
        tree.ungroup();
        tree.foldcommontails();
        tree.normalize();
        let needle = Matcher::Optional(Box::new(Matcher::NonTerminal {
            name: "lt".to_owned(),
            fragment: parser::Fragment::Tt,
        }));
        assert!(tree.contains(&needle));
        assert!(!tree.contains(&Matcher::Optional(Box::new(needle))));
    }

    #[test]
    fn issue23() {
        // caused a assertion tripped in the folding pass due to
        // InternalMacroHint being unexpected
        let src = r#"macro_rules! Token {
    (+) => { ... };
    (+=) => { ... };
    (&) => { ... };
    (&&) => { ... };
    (@) => { ... };
}"#;
        let mut tree = MacroRules::from(parser::parse(src).unwrap());
        tree.remove_internal();
        tree.foldcommontails();
    }
}