* Add Wasmtime-specific C API functions to return errors This commit adds new `wasmtime_*` symbols to the C API, many of which mirror the existing counterparts in the `wasm.h` header. These APIs are enhanced in a number of respects: * Detailed error information is now available through a `wasmtime_error_t`. Currently this only exposes one function which is to extract a string version of the error. * There is a distinction now between traps and errors during instantiation and function calling. Traps only happen if wasm traps, and errors can happen for things like runtime type errors when interacting with the API. * APIs have improved safety with respect to embedders where the lengths of arrays are now taken as explicit parameters rather than assumed from other parameters. * Handle trap updates * Update C examples * Fix memory.c compile on MSVC * Update test assertions * Refactor C slightly * Bare-bones .NET update * Remove bogus nul handling
78 lines
1.4 KiB
Rust
78 lines
1.4 KiB
Rust
//! This file defines the extern "C" API, which is compatible with the
|
|
//! [Wasm C API](https://github.com/WebAssembly/wasm-c-api).
|
|
|
|
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
|
|
|
|
// TODO complete the C API
|
|
|
|
mod config;
|
|
mod engine;
|
|
mod error;
|
|
mod r#extern;
|
|
mod func;
|
|
mod global;
|
|
mod instance;
|
|
mod linker;
|
|
mod memory;
|
|
mod module;
|
|
mod r#ref;
|
|
mod store;
|
|
mod table;
|
|
mod trap;
|
|
mod types;
|
|
mod val;
|
|
mod vec;
|
|
|
|
pub use crate::config::*;
|
|
pub use crate::engine::*;
|
|
pub use crate::error::*;
|
|
pub use crate::func::*;
|
|
pub use crate::global::*;
|
|
pub use crate::instance::*;
|
|
pub use crate::linker::*;
|
|
pub use crate::memory::*;
|
|
pub use crate::module::*;
|
|
pub use crate::r#extern::*;
|
|
pub use crate::r#ref::*;
|
|
pub use crate::store::*;
|
|
pub use crate::table::*;
|
|
pub use crate::trap::*;
|
|
pub use crate::types::*;
|
|
pub use crate::val::*;
|
|
pub use crate::vec::*;
|
|
|
|
#[cfg(feature = "wasi")]
|
|
mod wasi;
|
|
#[cfg(feature = "wasi")]
|
|
pub use crate::wasi::*;
|
|
|
|
#[cfg(feature = "wat")]
|
|
mod wat2wasm;
|
|
#[cfg(feature = "wat")]
|
|
pub use crate::wat2wasm::*;
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone)]
|
|
pub struct wasm_foreign_t {
|
|
_unused: [u8; 0],
|
|
}
|
|
|
|
#[repr(C)]
|
|
#[derive(Clone)]
|
|
pub struct wasm_shared_module_t {
|
|
_unused: [u8; 0],
|
|
}
|
|
|
|
struct HostInfoState {
|
|
info: *mut std::ffi::c_void,
|
|
finalizer: Option<extern "C" fn(arg1: *mut std::ffi::c_void)>,
|
|
}
|
|
|
|
impl Drop for HostInfoState {
|
|
fn drop(&mut self) {
|
|
if let Some(f) = &self.finalizer {
|
|
f(self.info);
|
|
}
|
|
}
|
|
}
|