forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.rs
More file actions
106 lines (88 loc) · 2.86 KB
/
Copy patherror.rs
File metadata and controls
106 lines (88 loc) · 2.86 KB
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
96
97
98
99
100
101
102
103
104
105
106
/// An error encountered when choosing or applying a Wasm mutation.
#[derive(thiserror::Error, Debug)]
#[error(transparent)]
pub struct Error {
kind: Box<ErrorKind>,
}
impl Error {
/// Construct a new `Error` from an `ErrorKind`.
pub fn new(kind: ErrorKind) -> Self {
kind.into()
}
/// Construct a new parse error.
pub fn parse(err: wasmparser::BinaryReaderError) -> Self {
err.into()
}
/// Construct a "no mutations applicable" error.
pub fn no_mutations_applicable() -> Self {
ErrorKind::NoMutationsApplicable.into()
}
/// Construct an "out of fuel" error.
pub fn out_of_fuel() -> Self {
ErrorKind::OutOfFuel.into()
}
/// Construct an unsupported error.
pub fn unsupported(msg: impl Into<String>) -> Self {
ErrorKind::Unsupported(msg.into()).into()
}
/// Construct another kind of `Error`.
pub fn other(err: impl Into<String>) -> Self {
ErrorKind::Other(err.into()).into()
}
/// Get the kind of error that this is.
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()
}
}
impl<E> From<wasm_encoder::reencode::Error<E>> for Error
where
E: Into<Error> + std::fmt::Display,
{
fn from(e: wasm_encoder::reencode::Error<E>) -> Self {
match e {
wasm_encoder::reencode::Error::ParseError(e) => Error::parse(e),
wasm_encoder::reencode::Error::UserError(e) => e.into(),
other => Error::other(other.to_string()),
}
}
}
impl From<std::convert::Infallible> for Error {
fn from(i: std::convert::Infallible) -> Error {
match i {}
}
}
/// The kind of error.
#[derive(thiserror::Error, Debug)]
pub enum ErrorKind {
/// Failed to parse the input Wasm module.
#[error("Failed to parse the input Wasm module.")]
Parse(#[from] wasmparser::BinaryReaderError),
/// None of the available mutators are applicable to the input Wasm module
#[error("There are not applicable mutations for the input Wasm module.")]
NoMutationsApplicable,
/// Ran out of fuel before a mutation could be applied successfully.
#[error("Out of fuel")]
OutOfFuel,
/// The Wasm is using an unsupported feature.
#[error("Unsupported: {0}")]
Unsupported(String),
/// Another error.
#[error("{0}")]
Other(String),
}
/// A `Result` type that is either `Ok(T)` or `Err(wasm_mutate::Error)`.
pub type Result<T, E = Error> = std::result::Result<T, E>;
/// A `Result` type for use with `wasm_encoder::reencode`
pub type ReencodeResult<T, E = Error> = Result<T, wasm_encoder::reencode::Error<E>>;