#wasi #module #process #wasmer #stdio #io #伪进程

wasi-process

一个将 wasi 模块作为伪进程运行的库

6 个版本

0.3.2 2021年6月4日
0.3.1 2021年4月12日
0.3.0 2021年1月23日
0.2.1 2021年1月6日
0.1.0 2020年6月27日

#584 in 操作系统

MIT 许可证

22KB
509

一个将 wasi 模块作为伪进程运行的库。

use wasmer_wasi::{WasiEnv, WasiState, WasiVersion};
use wasi_process::WasiProcess;
let store = wasmer::Store::default();
let wasm = include_bytes!("../helloworld.wasm"); // just write(1, "Hello, World!\n", 14)
let module = wasmer::Module::new(&store, wasm)?;
let mut state = WasiState::new("progg");
wasi_process::add_stdio(&mut state);
state.args(&["foo", "bar"]);
let imports = wasmer_wasi::generate_import_object_from_env(
    &store,
    WasiEnv::new(state.build()?),
    wasmer_wasi::get_wasi_version(&module, false).unwrap_or(WasiVersion::Latest),
);
let instance = wasmer::Instance::new(&module, &imports)?;
let mut wasi = WasiProcess::new(&instance, wasi_process::MaxBufSize::default())?;
let mut stdout = wasi.stdout.take().unwrap();
wasi.spawn();
let mut out = String::new();
stdout.read_to_string(&mut out).await?;
assert_eq!(out, "Hello, World!\n");

依赖

~14MB
~260K SLoC