5 unstable releases

0.3.1 May 17, 2023
0.3.0 May 17, 2023
0.2.1 May 8, 2023
0.2.0 May 3, 2023
0.1.0 Mar 5, 2023

#1036 in Procedural macros

23 downloads per month

Apache-2.0

6KB
74 lines

invoke-witc

Add the crate to the dependencies.

invoke-witc = "0.2"

The usage of this crate is using the following macros to generate polyfill programs. e.g.

invoke_witc::wit_instance!(import("./xxx.wit"));
invoke_witc::wit_runtime!(import("./xxx.wit"));
invoke_witc::wit_runtime!(export("./xxx.wit"));

Let's assume there has a file xxx.wit contains

num : func(a: u32) -> u32

and discuss some special cases

import: instance vs runtime

In instance, if we write

invoke_witc::wit_instance!(import("./xxx.wit"));

then we can just use num(10) to get a u32. But in runtime, due to the limitation, we will have to write

let u = num(&vm, 10);

where vm : Vm.

export in runtime: with & without name

Let's say we are exporting component xxx in runtime, we will need to provide definition of num, like the following.

invoke_witc::wit_runtime!(export("./xxx.wit"));

// An example implementation
fn num(a: u32) -> u32 { a + 1 }

Then we have to register import object to vm : Vm, therefore, we will write

vm.register_import_module(xxx::wit_import_object()?)?

to ensure later wasm instances can use this implementation. A notable thing is that you can define export name:

invoke_witc::wit_runtime!(export(a = "./xxx.wit"));
invoke_witc::wit_runtime!(export(b = "./yyy.wit"));

with export name, the wit_import_object will be wrapped under different module, and hence, we will have:

vm.register_import_module(a::wit_import_object()?)?
  .register_import_module(b::wit_import_object()?)?

Dependencies

~1.5MB
~33K SLoC