#[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>;