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
// pest. Smart PEGs in Rust
// Copyright (C) 2016  Dragoș Tiselice
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

use super::super::Input;
use super::super::Parser;

/// A `macro` useful for implementing the `Rdp` `trait`.
///
/// # Examples
///
/// ```
/// # #[macro_use] extern crate pest;
/// # use pest::Input;
/// # use pest::StringInput;
/// # use pest::Rdp;
///
/// # fn main() {
/// impl_rdp!(MyRdp);
///
/// let input = Box::new(StringInput::new("asdasdf"));
/// let mut parser = MyRdp::new(input);
///
/// assert!(parser.matches("asd"));
/// assert!(parser.matches("asdf"));
/// # }
/// ```
#[macro_export]
macro_rules! impl_rdp {
    ( $name:ident ) => {
        pub struct $name {
            input: Box<Input>
        }

        impl Rdp for $name {
            fn new(input: Box<Input>) -> $name {
                $name {
                    input: input
                }
            }

            fn input(&mut self) -> &mut Box<Input> {
                &mut self.input
            }
        }
    };
}

/// A `trait` that implements a recursive descent parser on a `struct` containing an `Input`.
pub trait Rdp {
    /// Creates a new `Rdp::Self` instance.
    ///
    /// Is subject to change in order to enhance flexibility.
    fn new(input: Box<Input>) -> Self;

    /// Returns `&mut Box<Input>` in order for the parser to have access to its input.
    fn input(&mut self) -> &mut Box<Input>;

    fn matches(&mut self, string: &str) -> bool {
        self.input().matches(string)
    }

    fn try(&mut self, rule: Box<Fn(&mut Self) -> bool>) -> bool {
        let pos = self.input().pos();
        let result = rule(self);

        if !result {
            self.input().set_pos(pos);
        }

        result
    }

    fn end(&mut self) -> bool {
        self.input().len() == self.input().pos()
    }

    fn reset(&mut self) {
        self.input().set_pos(0);
    }
}

#[cfg(test)]
mod tests {
    use super::Rdp;
    use super::super::super::Parser;
    use super::super::super::Input;
    use super::super::super::StringInput;

    impl_rdp!(MyRdp);

    #[test]
    fn matches() {
        let input = Box::new(StringInput::new("asdasdf"));
        let mut parser = MyRdp::new(input);

        assert!(parser.matches("asd"));
        assert!(parser.matches("asdf"));
        assert!(parser.matches(""));
        assert!(!parser.matches("a"));
    }

    #[test]
    fn try() {
        let input = Box::new(StringInput::new("asdasdf"));
        let mut parser = MyRdp::new(input);

        assert!(parser.matches("asd"));

        assert!(!parser.try(Box::new(|parser| {
            parser.matches("as") && parser.matches("dd")
        })));

        assert!(parser.try(Box::new(|parser| {
            parser.matches("as") && parser.matches("df")
        })));
    }

    #[test]
    fn end() {
        let input = Box::new(StringInput::new("asdasdf"));
        let mut parser = MyRdp::new(input);

        assert!(parser.matches("asdasdf"));
        assert!(parser.end());
    }

    #[test]
    fn reset() {
        let input = Box::new(StringInput::new("asdasdf"));
        let mut parser = MyRdp::new(input);

        assert!(parser.matches("asdasdf"));

        parser.reset();

        assert!(parser.matches("asdasdf"));
    }
}