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
#[derive(thiserror::Error, Debug)]
#[error(transparent)]
pub struct Error {
kind: Box<ErrorKind>,
}
impl Error {
pub fn new(kind: ErrorKind) -> Self {
kind.into()
}
pub fn parse(err: wasmparser::BinaryReaderError) -> Self {
err.into()
}
pub fn no_mutations_applicable() -> Self {
ErrorKind::NoMutationsApplicable.into()
}
pub fn out_of_fuel() -> Self {
ErrorKind::OutOfFuel.into()
}
pub fn unsupported(msg: impl Into<String>) -> Self {
ErrorKind::Unsupported(msg.into()).into()
}
pub fn other(err: impl Into<String>) -> Self {
ErrorKind::Other(err.into()).into()
}
pub fn kind(&self) -> &ErrorKind {
&*self.kind
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Self {
Error {
kind: Box::new(kind),
}
}
}
impl From<wasmparser::BinaryReaderError> for Error {
fn from(e: wasmparser::BinaryReaderError) -> Self {
ErrorKind::Parse(e).into()
}
}
#[derive(thiserror::Error, Debug)]
pub enum ErrorKind {
#[error("Failed to parse the input Wasm module.")]
Parse(#[from] wasmparser::BinaryReaderError),
#[error("There are not applicable mutations for the input Wasm module.")]
NoMutationsApplicable,
#[error("Out of fuel")]
OutOfFuel,
#[error("Unsupported: {0}")]
Unsupported(String),
#[error("{0}")]
Other(String),
}
pub type Result<T, E = Error> = std::result::Result<T, E>;