fitzgen / witx-bindgen

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

witx-bindgen

A language bindings generator for `witx`

A Bytecode Alliance project

build status supported rustc stable

About

Note: this project is still relatively young and active development with large changes is still happening. If you're considering depending on this at this time it's recommended to reach out to the authors on zulip and get more information first.

This project is a bindings generator framework for WebAssembly programs and embeddings of WebAssembly. This works with *.witx files which describe the interface of a module, either imported or exported. For example this project can be used in cases such as:

  • Your language (say, Rust) is compiled to WebAssembly and you'd like to import WASI. This project will generate Rust bindings to import WASI APIs that are described with *.witx.

  • Your runtime (say, Wasmtime) wants to then provide WASI functionality to guest programs. This project will generate a Rust trait for you to implement for the WASI interface.

  • You're consuming a WebAssembly module (say, in a browser) and you don't want to deal with funky ABI details. You'd use this project to generate JS bindings which give you a TypeScript interface dealing with native JS types for the WebAssembly module described by *.witx.

This project is based on the interface types proposal and the canonical ABI, both of which are at the time of this writing a work in progress. This repository will be following upstream changes. The purpose of witx-bindgen is to provide a forwards-compatible toolchain and story for interface types and a canonical ABI. Generated language bindings all use the canonical ABI for communication, enabling WebAssembly modules to be written in any language with support and for WebAssembly modules to be consumed in any environment with language support.

Demo

View generated bindings online!

If you're curious to poke around and see what generated bindings look like for a given input *.witx, you can explore the generated code online to get an idea of what's being generated and what the glue code looks like.

Installation

At this time a CLI tool is provided mostly for debugging and exploratory purposes. It can be installed with:

$ cargo install --git https://github.com/bytecodealliance/witx-bindgen witx-bindgen-cli

This tool is not necessarily intended to be integrated into toolchains. For example usage in Rust would more likely be done through procedural macros and Cargo dependencies. Usage in a Web application would probably use a version of witx-bindgen compiled to WebAssembly and published to NPM.

For now, though, you can explore what bindings look like in each language through the CLI. Again if you'd like to depend on this if you wouldn't mind please reach out on zulip so we can figure out a better story than relying on the CLI tool for your use case.

Supported Languages

First here's a list of supported languages for generating a WebAssembly binary which uses interface types. This means that these languages support *.witx-defined imports and exports.

  • rust-wasm - this is for Rust compiled to WebAssembly, typically using either the wasm32-wasi or wasm32-unknown-unknown targets depending on your use case. In this mode you'd probably depend on the witx-bindgen-rust crate (located at crates/rust-wasm) and use the import! and export! macros to generate code.

  • c - this is for C compiled to WebAssembly, using either of the targets above for Rust as well. With C the witx-bindgen CLI tool will emit a *.h and a *.c file to be compiled into the wasm module.

This repository also supports a number of host languages/runtimes which can be used to consume WebAssembly modules that use interface types. These modules need to follow the canonical ABI for their exports/imports:

  • wasmtime - this is for Rust users using the wasmtime crate. This generator is used through the witx-bindgen-wasmtime crate (located at crates/wasmtime) and, like the compiled-to-wasm Rust support, has an import! and an export! macro for generating code.

  • js - this is for JavaScript users executing WebAssembly modules. This could be in a browsers, Node.js, or Deno. In theory this covers browser use cases like web workers and such as well. In this mode the witx-bindgen CLI tool will emit a *.js and a *.d.ts file describing the interface and providing necessary runtime support in JS to implement the canonical ABI. Note that the intended long-term integration of this language is to compile witx-bindgen itself to WebAssembly and publish NPM packages for popular JS build systems to integrate witx-bindgen into JS build processes.

  • wasmtime-py - this is for Python users using the wasmtime PyPI package. This uses Wasmtime under the hood but you get to write Python in providing imports to WebAssembly modules or consume modules using interface types. This generates a *.py file which is annotated with types for usage in mypy or other type-checkers.

All generators support the --import and --export flags in the witx-bindgen CLI tool:

$ witx-bindgen js --import browser.witx
$ witx-bindgen rust-wasm --export my-interface.witx
$ witx-bindgen wasmtime --import host-functions.witx

Here "import" means "imported by WebAssembly" and "export" means "exported by WebAssembly". This means that wasm files import APIs with --import, whereas hosts provide imports to wasm modules using --import (the terminology here can be confusing

Finally in a sort of "miscellaneous" category the witx-bindgen CLI also supports:

  • markdown - generates a *.md and a *.html file with readable documentation rendered from the comments in the source *.witx file.

Note that the list of supported languages here is a snapshot in time and is not final. The purpose of the interface-types proposal is to be language agnostic both in how WebAssembly modules are written as well as how they are consumed. If you have a runtime that isn't listed here or you're compiling to WebAssembly and your language isn't listed here, it doesn't mean that it will never be supported! A language binding generator is intended to be not the hardest thing in the world (but unfortunately also not the easiest) to write, and the crates and support in this repository mostly exist to make writing generators as easy as possible.

Some other languages and runtimes, for example, that don't have support in witx-bindgen today but are possible in the future (and may get written here too) are:

  • wasmtime-go - same as for wasmtime-py but for Go. Basically for Go users using the wasmtime-go package who want to work with interface types rather than raw pointers/memories/etc.

  • wasmtime-cpp - again the same as for wasmtime-py, but for users of the wasmtime-cpp header file to use interface types from C++.

  • JS - while host runtime support is provided for JS today it should also be supported for JS-compiled-to-WebAssembly. For example a *.d.ts file could be generated for what JS projects could import and then corresponding glue code for the engine-compiled-to-wasm would also be generated. This means that you could use both JS-in-wasm but also JS as a host (or more realistically another runtime like Wasmtime since if you're running in a JS environment you're probably best off running the JS there instead).

Note that this is not an exclusive list, only intended to give you an idea of what other bindings could look like. There's a plethora of runtimes and languages that compile to WebAssembly, and interface types should be able to work with all of them and it's theoretically just some work-hours away from having support in witx-bindgen.

Format of *.witx files

This repository supports the s-expression-based *.witx format pioneered in the upstream WASI repository, but it is also experimenting with a different syntax that is not based on s-expressions. This new syntax can be seen throughout the tests directory.

About

License:Apache License 2.0


Languages

Language:Rust 91.2%Language:C 3.1%Language:TypeScript 2.6%Language:Python 2.0%Language:WebAssembly 0.8%Language:HTML 0.3%Language:Shell 0.1%Language:JavaScript 0.0%