Helper library that provides a macro to create plugins for gut.
The gut plugin system loads plugins that are written in wasm
that are located in the gut directory $HOME/.gut
.
Create a new library using cargo
sh
$ cargo new my_gut_plugin --lib
Add the following to the Cargo.toml
:
```toml
[lib]
name = "gut_myplugin"
crate-type = ["cdylib"]
[dependencies] gut-plugin = "0.1.0" ```
// gutexport!([names], [descriptions]) // names: [&str] - the names of the functions to export. // descriptions: [&str] - the descriptions of the functions to export. gutplugin::gutexport!( ["myplugin"], ["Prints the provided string"] );
// all exported functions must have this signature: // // #[nomangle] // fnname(ptr: i32, len: i32) // // this is becuase gut will invoke the function and pass a string if one is provided. // example: // $ gut my_plugin "world"
fn myplugin(ptr: i32, len: i32) { let slice = unsafe { slice::fromrawparts(ptr as _, len as _) }; let stringfromhost = str::fromutf8(&slice).unwrap();
println!("Hello {}!", stringfromhost) } ```
$ rustup target add wasm32-wasi
$ cargo build --target wasm32-wasi --release
$ cp target/wasm32-wasi/release/gut_myplugin.wasm $HOME/.gut/ ```