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
use std::borrow::Cow;
use std::fmt;
use std::fmt::Formatter;
#[derive(Debug, PartialEq)]
pub enum Error {
InvalidInput(String),
Eval(EvalError),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
use Error::*;
match self {
InvalidInput(msg) => write!(f, "invalid input: {}", msg),
Eval(err) => write!(f, "{}", err),
}
}
}
impl std::error::Error for Error {}
#[derive(Debug)]
pub(crate) struct InvalidOperatorError<'a> {
raw: Cow<'a, str>,
}
impl<'a> InvalidOperatorError<'a> {
pub(crate) fn new(op: impl Into<Cow<'a, str>>) -> Self {
InvalidOperatorError { raw: op.into() }
}
}
impl<'a> fmt::Display for InvalidOperatorError<'a> {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(
f,
"invalid operator '{}' currently ['+', '-', '*', '/'] supported",
self.raw
)
}
}
impl<'a> std::error::Error for InvalidOperatorError<'a> {}
#[derive(Debug, PartialEq)]
pub enum EvalError {
DivisionByZero,
UndefinedFunction { ident: String },
ArgCountDoesNotMatch {
ident: &'static str,
expected: usize,
actual: usize,
},
}
impl EvalError {
pub(crate) fn arg_count_does_not_match(
ident: &'static str,
expected: usize,
actual: usize,
) -> Self {
EvalError::ArgCountDoesNotMatch {
ident,
expected,
actual,
}
}
}
impl fmt::Display for EvalError {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
use EvalError::*;
match self {
DivisionByZero => write!(f, "divided by zero"),
UndefinedFunction { ident } => write!(f, "function '{ident}' undefined"),
ArgCountDoesNotMatch {
ident,
expected,
actual,
} => write!(
f,
"function '{ident}' arg count does not match. {actual} vs {expected}."
),
}
}
}
impl std::error::Error for EvalError {}