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
pub mod lex;
pub mod parse;
use crate::lex::constants;
use crate::lex::nfa;
use crate::lex::Token;
use crate::parse::rdp::parse_expression;
use std::fmt;
#[derive(Debug, Clone)]
pub struct EvalResult {
    pub value: i32,
    pub str: String,
}
pub struct EvalError;
impl fmt::Display for EvalError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "something bad happened")
    }
}
impl fmt::Debug for EvalError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{{ file: {}, line: {} }}", file!(), line!())
    }
}
pub fn eval(src: &String) -> Result<Vec<EvalResult>, EvalError> {
    let mut results: Vec<Result<EvalResult, EvalError>> = Vec::new();
    repeat_eval(&src, &mut results);
    let eval_results: Result<Vec<EvalResult>, EvalError> = results.into_iter().map(|s| s).collect();
    eval_results
}
fn repeat_eval(src: &String, results: &mut Vec<Result<EvalResult, EvalError>>) {
    let mut token: Token = nfa(src, 0);
    while token.ttype == constants::TOKEN_WS {
        token = nfa(src, token.f);
    }
    let mut output = String::from("");
    parse_expression(&mut token, src, &mut output);
    if token.ttype == constants::TOKEN_EOF {
        results.push(Ok(EvalResult {
            value: token.carry,
            str: output,
        }));
    } else {
        results.push(Err(EvalError));
    }
    if token.repeat > 1 {
        let cut: Vec<&str> = src.split("{").collect();
        let expr = cut[0];
        let new_src = String::from(format!("{}{{{}}}", expr, token.repeat - 1).as_str());
        let mut t = nfa(&new_src, 0);
        while t.ttype == constants::TOKEN_WS {
            t = nfa(src, t.f);
        }
        repeat_eval(&new_src, results);
    }
}