wasm3-provider

Crates.iowasm3-provider
lib.rswasm3-provider
version1.1.0
sourcesrc
created_at2020-09-23 16:55:06.934132
updated_at2023-03-23 14:34:47.186969
descriptionA wasm3 engine provider for the waPC host
homepagehttps://wapc.io
repository
max_upload_size
id292127
size48,124
Phil Kedy (pkedy)

documentation

https://docs.rs/wasm3-provider

README

Wasm3 Engine Provider

crates.io license

This is a pluggable engine provider for the waPC RPC exchange protocol. This engine implements WebAssemblyEngineProvider for the wasm3 C-based, interpreted WebAssembly runtime.

Running the demo

$ cargo run -p wasm3-provider --example wasm3-demo ./wasm/crates/wasm-basic/build/wasm_basic.wasm ping "hi"

Example

use wasm3_provider::Wasm3EngineProvider;
use wapc::WapcHost;
use std::error::Error;

pub fn main() -> Result<(), Box<dyn Error>> {

  // Sample host callback that prints the operation a WASM module requested.
  let host_callback = |id: u64, bd: &str, ns: &str, op: &str, payload: &[u8]| {
    println!("Guest {} invoked '{}->{}:{}' with a {} byte payload",
    id, bd, ns, op, payload.len());
    // Return success with zero-byte payload.
    Ok(vec![])
  };

  let file = "../../wasm/crates/wasm-basic/build/wasm_basic.wasm";
  let module_bytes = std::fs::read(file)?;

  let engine = Wasm3EngineProvider::new(&module_bytes);
  let host = WapcHost::new(Box::new(engine), Some(Box::new(host_callback)))?;

  let res = host.call("ping", b"payload bytes")?;
  assert_eq!(res, b"payload bytes");

  Ok(())
}

See also

Commit count: 0

cargo fmt