diff options
author | Nadrieril | 2019-09-10 14:51:37 +0200 |
---|---|---|
committer | Nadrieril | 2019-09-10 14:51:37 +0200 |
commit | 9f41dc5a4680cba3697c64da28855c8d4f437191 (patch) | |
tree | e190bdf29be0a6cf094b8789d0567a12c43ba5b2 /pest_consume/src | |
parent | 97f163475294a12f485a6c398df648ad0eeeca8c (diff) |
Implement parsing in PestConsumer
Diffstat (limited to '')
-rw-r--r-- | pest_consume/src/lib.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pest_consume/src/lib.rs b/pest_consume/src/lib.rs index 8f882a9..1579f81 100644 --- a/pest_consume/src/lib.rs +++ b/pest_consume/src/lib.rs @@ -1,9 +1,12 @@ use pest::error::{Error, ErrorVariant}; use pest::iterators::{Pair, Pairs}; +use pest::Parser as PestParser; use pest::{RuleType, Span}; pub use pest_consume_macros::{make_parser, match_inputs}; +static UNIT: () = (); + /// Carries a pest Pair alongside custom user data. #[derive(Debug)] pub struct ParseInput<'input, 'data, Rule: RuleType, Data> { @@ -76,6 +79,7 @@ impl<'i, 'd, R: RuleType, D> ParseInput<'i, 'd, R, D> { pub fn as_rule_alias<C>(&self) -> String where C: PestConsumer<Rule = R>, + <C as PestConsumer>::Parser: PestParser<R>, { C::rule_alias(self.as_rule()) } @@ -101,6 +105,7 @@ impl<'i, 'd, R: RuleType, D> ParseInputs<'i, 'd, R, D> { pub fn aliased_rules<C>(&self) -> Vec<String> where C: PestConsumer<Rule = R>, + <C as PestConsumer>::Parser: PestParser<R>, { self.clone().map(|p| p.as_rule_alias::<C>()).collect() } @@ -113,8 +118,26 @@ impl<'i, 'd, R: RuleType, D> ParseInputs<'i, 'd, R, D> { /// Used by the macros. pub trait PestConsumer { type Rule: RuleType; + type Parser: PestParser<Self::Rule>; fn rule_alias(rule: Self::Rule) -> String; fn allows_shortcut(rule: Self::Rule) -> bool; + + fn parse_with_userdata<'i, 'd, D>( + rule: Self::Rule, + input_str: &'i str, + user_data: &'d D, + ) -> Result<ParseInputs<'i, 'd, Self::Rule, D>, Error<Self::Rule>> { + let pairs = Self::Parser::parse(rule, input_str)?; + Ok(ParseInputs::new(input_str, pairs, user_data)) + } + + fn parse<'i>( + rule: Self::Rule, + input_str: &'i str, + ) -> Result<ParseInputs<'i, 'static, Self::Rule, ()>, Error<Self::Rule>> + { + Self::parse_with_userdata(rule, input_str, &UNIT) + } } impl<'i, 'd, R: RuleType, D> Iterator for ParseInputs<'i, 'd, R, D> { |