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
#[macro_use]
extern crate error_chain;
extern crate lalrpop_util;
extern crate reproto_ast as ast;
extern crate reproto_path_lexer as path_lexer;

pub mod errors;
mod parser;

use self::errors::{ErrorKind, Result};
use ast::PathSpec;

pub fn parse(input: &str) -> Result<PathSpec> {
    use lalrpop_util::ParseError::*;
    use self::ErrorKind::*;
    use self::path_lexer::Error::*;

    let lexer = path_lexer::path_lex(input);

    match parser::parse_path(lexer) {
        Ok(file) => Ok(file),
        Err(e) => {
            match e {
                InvalidToken { location } => Err(Syntax(Some((location, location)), vec![]).into()),
                UnrecognizedToken { token, expected } => {
                    let pos = token.map(|(start, _, end)| (start, end));
                    Err(Syntax(pos, expected).into())
                }
                User { error } => {
                    match error {
                        Unexpected { pos } => {
                            return Err(Parse(Some((pos, pos)), "unexpected input").into());
                        }
                    }
                }
                _ => Err(Parse(None, "parse error").into()),
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_basic_path() {
        let spec = parse("/foo\\//{bar}_baz\\{\\}").unwrap();
        println!("spec = {:?}", spec);
    }
}