use crate::types::{FuncSig, GlobalDesc, Memory, MemoryIndex, Table, TableIndex, Type}; pub type Result = std::result::Result>; pub type CompileResult = std::result::Result>; pub type LinkResult = std::result::Result>; pub type RuntimeResult = std::result::Result>; pub type CallResult = std::result::Result>; /// This is returned when the chosen compiler is unable to /// successfully compile the provided webassembly module into /// a `Module`. #[derive(Debug, Clone)] pub enum CompileError { ValidationError { msg: String }, InternalError { msg: String }, } /// This is returned when the runtime is unable to /// correctly link the module with the provided imports. #[derive(Debug, Clone)] pub enum LinkError { IncorrectImportType { namespace: String, name: String, expected: String, found: String, }, IncorrectImportSignature { namespace: String, name: String, expected: FuncSig, found: FuncSig, }, ImportNotFound { namespace: String, name: String, }, IncorrectMemoryDescription { namespace: String, name: String, expected: Memory, found: Memory, }, IncorrectTableDescription { namespace: String, name: String, expected: Table, found: Table, }, IncorrectGlobalDescription { namespace: String, name: String, expected: GlobalDesc, found: GlobalDesc, }, } /// This is the error type returned when calling /// a webassembly function. /// /// The main way to do this is `Instance.call`. #[derive(Debug, Clone)] pub enum RuntimeError { OutOfBoundsAccess { memory: MemoryIndex, addr: u32 }, IndirectCallSignature { table: TableIndex }, IndirectCallToNull { table: TableIndex }, Unknown { msg: String }, } /// This error type is produced by calling a wasm function /// exported from a module. /// /// If the module traps in some way while running, this will /// be the `CallError::Runtime(RuntimeError)` variant. #[derive(Debug, Clone)] pub enum CallError { Signature { expected: FuncSig, found: Vec }, NoSuchExport { name: String }, ExportNotFunc { name: String }, Runtime(Box), } /// The amalgamation of all errors that can occur /// during the compilation, instantiation, or execution /// of a webassembly module. #[derive(Debug, Clone)] pub enum Error { CompileError(Box), LinkError(Box), RuntimeError(Box), CallError(Box), } impl From> for Box { fn from(compile_err: Box) -> Self { Box::new(Error::CompileError(compile_err)) } } impl From> for Box { fn from(link_err: Box) -> Self { Box::new(Error::LinkError(link_err)) } } impl From> for Box { fn from(runtime_err: Box) -> Self { Box::new(Error::RuntimeError(runtime_err)) } } impl From> for Box { fn from(call_err: Box) -> Self { Box::new(Error::CallError(call_err)) } }