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
use std::fmt::Display;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone)]
pub enum Error {
Null,
InvalidBlockName(String),
DuplicatedBlockName(String),
InvalidStoreName(String),
DuplicatedStoreName(String),
DuplicatedCommandName(String),
Error(String),
}
impl Default for Error {
fn default() -> Self {
Self::Null
}
}
impl std::fmt::Debug for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.display())
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
None
}
fn cause(&self) -> Option<&dyn std::error::Error> {
self.source()
}
}
impl Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.display())
}
}
impl Error {
pub fn raise(msg: String) -> Self {
Self::Error(msg)
}
pub fn display(&self) -> String {
match self {
Error::Null => {
panic!("Can not use Error::Null")
}
Error::InvalidBlockName(name) => {
format!("Invalid block name {}", name)
}
Error::DuplicatedBlockName(name) => {
format!("Duplicated block name {}", name)
}
Error::InvalidStoreName(name) => {
format!("Invalid store name {}", name)
}
Error::DuplicatedStoreName(name) => {
format!("Duplicated store name {}", name)
}
Error::DuplicatedCommandName(name) => {
format!("Duplicated command name {}", name)
}
Error::Error(msg) => msg.clone(),
}
}
}