aboutsummaryrefslogtreecommitdiff
path: root/examples/arithmetic/main.rs
blob: 94a17d85d96775d77ec660a44e949a598eb6f35c (plain)
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
use winnow::prelude::*;

mod parser;
mod parser_ast;

fn main() -> Result<(), lexopt::Error> {
    let args = Args::parse()?;

    let input = args.input.as_deref().unwrap_or("1 + 1");

    println!("{} =", input);
    match args.implementation {
        Impl::Eval => match parser::expr.parse(input) {
            Ok(result) => {
                println!("  {}", result);
            }
            Err(err) => {
                println!("  {}", err);
            }
        },
        Impl::Ast => match parser_ast::expr.parse(input) {
            Ok(result) => {
                println!("  {:#?}", result);
            }
            Err(err) => {
                println!("  {}", err);
            }
        },
    }

    Ok(())
}

#[derive(Default)]
struct Args {
    input: Option<String>,
    implementation: Impl,
}

enum Impl {
    Eval,
    Ast,
}

impl Default for Impl {
    fn default() -> Self {
        Self::Eval
    }
}

impl Args {
    fn parse() -> Result<Self, lexopt::Error> {
        use lexopt::prelude::*;

        let mut res = Args::default();

        let mut args = lexopt::Parser::from_env();
        while let Some(arg) = args.next()? {
            match arg {
                Long("impl") => {
                    res.implementation = args.value()?.parse_with(|s| match s {
                        "eval" => Ok(Impl::Eval),
                        "ast" => Ok(Impl::Ast),
                        _ => Err("expected `eval`, `ast`"),
                    })?;
                }
                Value(input) => {
                    res.input = Some(input.string()?);
                }
                _ => return Err(arg.unexpected()),
            }
        }
        Ok(res)
    }
}