mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-12 22:05:33 +00:00
29 lines
919 B
Rust
29 lines
919 B
Rust
use wasmer_runtime::{func, imports, instantiate};
|
|
use wasmer_runtime_core::vm::Ctx;
|
|
use wasmer_wasi::generate_import_object;
|
|
|
|
static PLUGIN_WASM: &'static [u8] = include_bytes!("plugin-for-example.wasm");
|
|
|
|
fn it_works(_ctx: &mut Ctx) -> i32 {
|
|
println!("Hello from outside WASI");
|
|
5
|
|
}
|
|
|
|
fn main() {
|
|
// WASI imports
|
|
let mut base_imports = generate_import_object(vec![], vec![], vec![]);
|
|
// env is the default namespace for extern functions
|
|
let custom_imports = imports! {
|
|
"env" => {
|
|
"it_works" => func!(it_works),
|
|
},
|
|
};
|
|
base_imports.extend(custom_imports);
|
|
let instance =
|
|
instantiate(PLUGIN_WASM, &base_imports).expect("failed to instantiate wasm module");
|
|
|
|
let entry_point = instance.func::<(i32), i32>("plugin_entrypoint").unwrap();
|
|
let result = entry_point.call(2).expect("failed to execute plugin");
|
|
println!("result: {}", result);
|
|
}
|