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
#[macro_export]
macro_rules! gen_parser_to_node {
    () => {
        fn parse_to_node(code: &str) -> crate::ParserResult<Expr> {
            let res = Self::parse(Rule::expression, &code)?.next().unwrap();
            let res: crate::ast::expr::Expr = res.try_into()?;
            Ok(res)
        }
    };
}

#[macro_export]
macro_rules! gen_parser {
    ($class_name:ident) => {
        impl<'i> std::convert::TryFrom<pest::iterators::Pair<'i, Rule>>
            for crate::ast::comparison::Comparison
        {
            type Error = crate::error::ParserError;

            fn try_from(
                value: pest::iterators::Pair<Rule>,
            ) -> std::result::Result<Self, Self::Error> {
                match value.as_rule() {
                    Rule::comparison => {
                        let comp_name = value.as_str();
                        if let Some(&comp) = $class_name::default_comparisons().get(comp_name) {
                            Ok(comp.clone())
                        } else {
                            Err(crate::error::ParserError::InvalidComparison(comp_name.to_string()))
                        }
                    },
                    _ => crate::error::ParserError::invalid_pair_rule()?,
                }
            }
        }

        impl<'i> std::convert::TryFrom<pest::iterators::Pair<'i, Rule>>
            for crate::ast::constraint::Constraint
        {
            type Error = crate::error::ParserError;

            fn try_from(
                value: pest::iterators::Pair<'i, Rule>,
            ) -> std::result::Result<Self, Self::Error> {
                let mut selector_opt: std::option::Option<String> = None;
                let mut comparison_opt: std::option::Option<Comparison> = None;
                let mut arguments_opt: std::option::Option<Arguments> = None;

                match value.as_rule() {
                    Rule::constraint => {
                        for item in value.into_inner() {
                            match item.as_rule() {
                                Rule::selector => selector_opt = Some(item.as_str().to_string()),
                                Rule::comparison => comparison_opt = item.try_into().ok(),
                                Rule::argument => arguments_opt = item.try_into().ok(),
                                _ => {},
                            }
                        }
                        let selector = if let Some(selector) = selector_opt {
                            selector
                        } else {
                            return Err(ParserError::LackOfField {
                                ty: "Constraint".to_string(),
                                field: "selector".to_string(),
                            });
                        };
                        let comparison = if let Some(comparison) = comparison_opt {
                            comparison
                        } else {
                            return Err(ParserError::LackOfField {
                                ty: "Constraint".to_string(),
                                field: "comparison".to_string(),
                            });
                        };
                        let arguments = if let Some(arguments) = arguments_opt {
                            arguments
                        } else {
                            return Err(ParserError::LackOfField {
                                ty: "Constraint".to_string(),
                                field: "arguments".to_string(),
                            });
                        };

                        Ok(crate::ast::constraint::Constraint { selector, comparison, arguments })
                    },
                    _ => crate::error::ParserError::invalid_pair_rule()?,
                }
            }
        }

        impl<'i> std::convert::TryFrom<pest::iterators::Pair<'i, Rule>> for crate::ast::Operator {
            type Error = crate::error::ParserError;

            fn try_from(
                value: pest::iterators::Pair<'i, Rule>,
            ) -> std::result::Result<Self, Self::Error> {
                match value.as_rule() {
                    Rule::operator => match value.into_inner().next() {
                        Some(pair) if pair.as_rule() == Rule::and_op => {
                            Ok(crate::ast::Operator::And)
                        },
                        Some(pair) if pair.as_rule() == Rule::or_op => Ok(crate::ast::Operator::Or),
                        _ => ParserError::invalid_pair_rule()?,
                    },
                    _ => ParserError::invalid_pair_rule()?,
                }
            }
        }

        impl<'i> std::convert::TryFrom<pest::iterators::Pair<'i, Rule>> for crate::ast::expr::Expr {
            type Error = crate::error::ParserError;

            fn try_from(
                value: pest::iterators::Pair<'i, Rule>,
            ) -> std::result::Result<Self, Self::Error> {
                let mut op_vec: std::vec::Vec<crate::ast::Operator> = vec![];
                let mut expr_vec: std::vec::Vec<Expr> = vec![];

                let mut parse_op =
                    |pair: pest::iterators::Pair<'i, Rule>| -> crate::ParserResult<()> {
                        match pair.as_rule() {
                            Rule::operator if vec![";", "and"].contains(&pair.as_str()) => {
                                op_vec.push(crate::ast::Operator::And)
                            },
                            Rule::operator if vec![",", "or"].contains(&pair.as_str()) => {
                                op_vec.push(crate::ast::Operator::Or)
                            },
                            _ => crate::error::ParserError::invalid_pair_rule()?,
                        }
                        Ok(())
                    };

                match value.as_rule() {
                    Rule::expression => {
                        for expr_item in value.into_inner() {
                            match expr_item.as_rule() {
                                Rule::constraint => {
                                    expr_vec.push(Expr::Item(expr_item.try_into()?))
                                },
                                Rule::group => expr_vec.push(Expr::try_from(expr_item)?),
                                Rule::operator => parse_op(expr_item)?,
                                _ => crate::error::ParserError::invalid_pair_rule()?,
                            }
                        }
                    },
                    Rule::group => {
                        for group_item in value.into_inner() {
                            match group_item.as_rule() {
                                Rule::expression => expr_vec.push(Expr::try_from(group_item)?),
                                Rule::operator => parse_op(group_item)?,
                                _ => crate::error::ParserError::invalid_pair_rule()?,
                            }
                        }
                    },
                    _ => crate::error::ParserError::invalid_pair_rule()?,
                }

                while let Some(top_op) = op_vec.pop() {
                    if expr_vec.len() < 2 {
                        crate::error::ParserError::invalid_pair_rule()?
                    } else {
                        let right = expr_vec.pop().unwrap();
                        let left = expr_vec.pop().unwrap();
                        expr_vec.push(crate::ast::expr::Expr::Node(
                            top_op,
                            Box::new(left),
                            Box::new(right),
                        ));
                    }
                }

                if op_vec.is_empty() && expr_vec.len() == 1 {
                    Ok(expr_vec.pop().unwrap())
                } else {
                    crate::error::ParserError::invalid_pair_rule()?
                }
            }
        }
    };
}