2017-12-19 01:49:04 +03:00
|
|
|
# wasm-bindgen
|
|
|
|
|
2018-02-02 19:14:05 +03:00
|
|
|
A project for facilitating high-level interactions between wasm modules and JS.
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
[host]: https://github.com/WebAssembly/host-bindings
|
2017-12-19 01:49:04 +03:00
|
|
|
|
|
|
|
[![Build Status](https://travis-ci.org/alexcrichton/wasm-bindgen.svg?branch=master)](https://travis-ci.org/alexcrichton/wasm-bindgen)
|
|
|
|
[![Build status](https://ci.appveyor.com/api/projects/status/559c0lj5oh271u4c?svg=true)](https://ci.appveyor.com/project/alexcrichton/wasm-bindgen)
|
|
|
|
|
2018-02-02 19:14:05 +03:00
|
|
|
This project is sort of half polyfill for features like the [host bindings
|
|
|
|
proposal][host] and half features for empowering high-level interactions between
|
|
|
|
JS and wasm-compiled code (currently mostly from Rust). More specifically this
|
|
|
|
project allows JS/wasm to communicate with strings, JS objects, classes, etc, as
|
|
|
|
opposed to purely integers and floats. Using `wasm-bindgen` for example you can
|
|
|
|
define a JS class in Rust or take a string from JS or return one. The
|
|
|
|
functionality is growing as well!
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
Currently this tool is Rust-focused but the underlying foundation is
|
|
|
|
language-independent, and it's hoping that over time as this tool stabilizes
|
|
|
|
that it can be used for languages like C/C++!
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
Notable features of this project includes:
|
|
|
|
|
2018-03-23 05:14:37 +03:00
|
|
|
* Importing JS functionality in to Rust such as [DOM manipulation][dom-ex],
|
|
|
|
[console logging][console-log], or [performance monitoring][perf-ex].
|
2018-03-29 02:20:19 +03:00
|
|
|
* [Exporting Rust functionality][smorg-ex] to JS such as classes, functions, etc.
|
2018-03-23 05:14:37 +03:00
|
|
|
* Working with rich types like strings, numbers, classes, and objects rather
|
|
|
|
than simply `u32` and floats.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-03-23 05:14:37 +03:00
|
|
|
This project is still relatively new but feedback is of course always
|
2018-02-07 06:04:12 +03:00
|
|
|
welcome! If you're curious about the design plus even more information about
|
|
|
|
what this crate can do, check out the [design doc].
|
|
|
|
|
|
|
|
[design doc]: https://github.com/alexcrichton/wasm-bindgen/blob/master/DESIGN.md
|
2018-03-23 05:14:37 +03:00
|
|
|
[dom-ex]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/dom
|
|
|
|
[console-log]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/console_log
|
|
|
|
[perf-ex]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/performance
|
|
|
|
[smorg-ex]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/smorgasboard
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
## Basic usage
|
|
|
|
|
|
|
|
Let's implement the equivalent of "Hello, world!" for this crate.
|
|
|
|
|
|
|
|
> **Note:** Currently this projects uses *nightly Rust* which you can acquire
|
|
|
|
> through [rustup] and configure with `rustup default nightly`
|
|
|
|
|
|
|
|
[rustup]: https://rustup.rs
|
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
First up, let's install the tools we need
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
$ rustup target add wasm32-unknown-unknown
|
2018-03-06 07:27:34 +03:00
|
|
|
$ cargo install wasm-bindgen-cli
|
2018-03-03 07:11:30 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
The first command here installs the wasm target so you can compile to it, and
|
|
|
|
the latter will install the `wasm-bindgen` CLI tool we'll be using later.
|
|
|
|
|
|
|
|
Next up let's make our project
|
|
|
|
|
|
|
|
```
|
2018-03-23 05:08:53 +03:00
|
|
|
$ cargo new js-hello-world --lib
|
2017-12-19 03:35:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Now let's add a dependency on this project inside `Cargo.toml` as well as
|
|
|
|
configuring our build output:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-04-04 00:04:23 +03:00
|
|
|
wasm-bindgen = "0.2"
|
2017-12-19 03:35:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Next up our actual code! We'll write this in `src/lib.rs`:
|
|
|
|
|
|
|
|
```rust
|
2018-03-15 00:33:53 +03:00
|
|
|
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
#[wasm_bindgen]
|
|
|
|
extern {
|
|
|
|
fn alert(s: &str);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
2018-03-06 01:25:15 +03:00
|
|
|
pub fn greet(name: &str) {
|
2018-02-08 03:41:33 +03:00
|
|
|
alert(&format!("Hello, {}!", name));
|
2017-12-19 03:35:36 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
And that's it! If we were to write the `greet` function naively without the
|
|
|
|
`#[wasm_bindgen]` attribute then JS wouldn't be able to communicate with the
|
|
|
|
types like `str`, so slapping a `#[wasm_bindgen]` on the function and the import
|
|
|
|
of `alert` ensures that the right shims are generated.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
Next up let's build our project:
|
|
|
|
|
|
|
|
```
|
2018-03-23 05:10:00 +03:00
|
|
|
$ cargo build --target wasm32-unknown-unknown
|
2017-12-19 03:35:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
After this you'll have a wasm file at
|
2018-03-23 05:10:00 +03:00
|
|
|
`target/wasm32-unknown-unknown/debug/js_hello_world.wasm`. Don't be alarmed at
|
|
|
|
the size, this is an unoptimized program!
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
Now that we've generated the wasm module it's time to run the bindgen tool
|
2018-03-03 07:11:30 +03:00
|
|
|
itself! This tool will postprocess the wasm file rustc generated, generating a
|
|
|
|
new wasm file and a set of JS bindings as well. Let's invoke it!
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
```
|
2018-03-23 05:10:00 +03:00
|
|
|
$ wasm-bindgen target/wasm32-unknown-unknown/debug/js_hello_world.wasm \
|
2018-01-30 08:20:38 +03:00
|
|
|
--out-dir .
|
2017-12-19 03:35:36 +03:00
|
|
|
```
|
|
|
|
|
2018-01-30 08:20:38 +03:00
|
|
|
This is the main point where the magic happens. The `js_hello_world.wasm` file
|
|
|
|
emitted by rustc contains *descriptors* of how to communicate via richer types
|
|
|
|
than wasm currently supports. The `wasm-bindgen` tool will interpret this
|
|
|
|
information, emitting a **replacement module** for the wasm file.
|
|
|
|
|
|
|
|
The previous `js_hello_world.wasm` file is interpreted as if it were an ES6
|
|
|
|
module. The `js_hello_world.js` file emitted by `wasm-bindgen` should have the
|
|
|
|
intended interface of the wasm file, notably with rich types like strings,
|
|
|
|
classes, etc.
|
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
The `wasm-bindgen` tool also emits a few other files needed to implement this
|
2018-03-06 00:25:14 +03:00
|
|
|
module. For example `js_hello_world_bg.wasm` is the original wasm file but
|
|
|
|
postprocessed a bit. It's intended that the `js_hello_world_bg.wasm` file,
|
2018-04-03 17:58:12 +03:00
|
|
|
like before, acts like an ES6 module.
|
2018-01-30 08:20:38 +03:00
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
At this point you'll probably plug these files into a larger build system.
|
|
|
|
Files emitted by `wasm-bindgen` act like normal ES6 modules (one just happens to
|
2018-01-30 08:20:38 +03:00
|
|
|
be wasm). As of the time of this writing there's unfortunately not a lot of
|
2018-03-03 07:11:30 +03:00
|
|
|
tools that natively do this, but Webpack's 4.0 beta release has native wasm
|
|
|
|
support!. Let's take a look at that and see how it works.
|
2018-01-30 08:20:38 +03:00
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
First create an `index.js` file:
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
```js
|
2018-03-03 07:11:30 +03:00
|
|
|
const js = import("./js_hello_world");
|
2018-01-30 08:20:38 +03:00
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
js.then(js => {
|
|
|
|
js.greet("World!");
|
2018-01-30 08:20:38 +03:00
|
|
|
});
|
2017-12-20 06:06:48 +03:00
|
|
|
```
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
Note that we're using `import(..)` here because Webpack [doesn't
|
|
|
|
support][webpack-issue] synchronously importing modules from the main chunk just
|
|
|
|
yet.
|
|
|
|
|
|
|
|
[webpack-issue]: https://github.com/webpack/webpack/issues/6615
|
|
|
|
|
|
|
|
Next our JS dependencies by creating a `package.json`:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"scripts": {
|
|
|
|
"serve": "webpack-dev-server"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"webpack": "^4.0.1",
|
|
|
|
"webpack-cli": "^2.0.10",
|
|
|
|
"webpack-dev-server": "^3.1.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
and our webpack configuration
|
|
|
|
|
|
|
|
```js
|
|
|
|
// webpack.config.js
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: "./index.js",
|
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, "dist"),
|
|
|
|
filename: "index.js",
|
|
|
|
},
|
|
|
|
mode: "development"
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
|
|
|
Our corresponding `index.html`:
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
```html
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-01-30 08:20:38 +03:00
|
|
|
<script src='./index.js'></script>
|
2017-12-19 03:35:36 +03:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
And finally:
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
```
|
2018-03-03 07:11:30 +03:00
|
|
|
$ npm run serve
|
2018-01-30 08:20:38 +03:00
|
|
|
```
|
|
|
|
|
2018-03-03 07:11:30 +03:00
|
|
|
If you open https://localhost:8080 in a browser you should see a `Hello, world!`
|
2018-03-03 21:46:43 +03:00
|
|
|
dialog pop up! This works in Firefox out of the box but not in Chrome due to a
|
|
|
|
webpack issue. See [the hello_world README][hello-readme] for a workaround.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-03-03 07:19:39 +03:00
|
|
|
If that was all a bit much, no worries! You can [follow along
|
|
|
|
online][hello-tree] to see all the files necessary as well as a script to set it
|
|
|
|
all up.
|
|
|
|
|
|
|
|
[hello-tree]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/hello_world
|
2018-03-03 21:46:43 +03:00
|
|
|
[hello-readme]: https://github.com/alexcrichton/wasm-bindgen/tree/master/examples/hello_world/README.md
|
2018-03-03 07:19:39 +03:00
|
|
|
|
2017-12-19 03:35:36 +03:00
|
|
|
## What just happened?
|
|
|
|
|
|
|
|
Phew! That was a lot of words and a lot ended up happening along the way. There
|
2018-02-08 03:41:33 +03:00
|
|
|
were two main pieces of magic happening: the `#[wasm_bindgen]` attribute and the
|
2017-12-19 03:35:36 +03:00
|
|
|
`wasm-bindgen` CLI tool.
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
**The `#[wasm_bindgen]` attribute**
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
This attribute, exported from the `wasm-bindgen` crate, is the entrypoint to
|
2017-12-19 03:35:36 +03:00
|
|
|
exposing Rust functions to JS. This is a procedural macro (hence requiring the
|
2018-02-08 03:41:33 +03:00
|
|
|
nightly Rust toolchain) which will generate the appropriate shims in Rust to
|
|
|
|
translate from your type signature to one that JS can interface with. Finally
|
|
|
|
the attribute also serializes some information to the output artifact which
|
|
|
|
`wasm-bindgen`-the-tool will discard after it parses.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
There's a more thorough explanation below of the various bits and pieces of the
|
2018-02-08 03:41:33 +03:00
|
|
|
attribute, but it suffices for now to say that you can attach it to free
|
|
|
|
functions, structs, impl blocks for those structs and `extern { ... }` blocks.
|
|
|
|
Some Rust features like generics, lifetime parameters, etc, aren't supported on
|
|
|
|
functions tagged with `#[wasm_bindgen]` right now.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
**The `wasm-bindgen` CLI tool**
|
|
|
|
|
|
|
|
The next half of what happened here was all in the `wasm-bindgen` tool. This
|
|
|
|
tool opened up the wasm module that rustc generated and found an encoded
|
2018-02-08 03:41:33 +03:00
|
|
|
description of what was passed to the `#[wasm_bindgen]` attribute. You can
|
|
|
|
think of this as the `#[wasm_bindgen]` attribute created a special section of
|
|
|
|
the output module which `wasm-bindgen` strips and processes.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
This information gave `wasm-bindgen` all it needed to know to generate the JS
|
|
|
|
file that we then imported. The JS file wraps instantiating the underlying wasm
|
|
|
|
module (aka calling `WebAssembly.instantiate`) and then provides wrappers for
|
|
|
|
classes/functions within.
|
|
|
|
|
|
|
|
## What else can we do?
|
|
|
|
|
2018-01-30 08:20:38 +03:00
|
|
|
Much more! Here's a taste of various features you can use in this project:
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
```rust
|
|
|
|
// src/lib.rs
|
2018-03-15 00:33:53 +03:00
|
|
|
#![feature(proc_macro, wasm_custom_section, wasm_import_module)]
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
extern crate wasm_bindgen;
|
|
|
|
|
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
// Strings can both be passed in and received
|
|
|
|
#[wasm_bindgen]
|
2018-03-06 01:25:15 +03:00
|
|
|
pub fn concat(a: &str, b: &str) -> String {
|
2018-02-08 03:41:33 +03:00
|
|
|
let mut a = a.to_string();
|
|
|
|
a.push_str(b);
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
|
|
|
// A struct will show up as a class on the JS side of things
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub struct Foo {
|
|
|
|
contents: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Foo {
|
|
|
|
Foo { contents: 0 }
|
2017-12-19 03:35:36 +03:00
|
|
|
}
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
// Methods can be defined with `&mut self` or `&self`, and arguments you
|
|
|
|
// can pass to a normal free function also all work in methods.
|
|
|
|
pub fn add(&mut self, amt: u32) -> u32 {
|
|
|
|
self.contents += amt;
|
|
|
|
return self.contents
|
2017-12-19 03:35:36 +03:00
|
|
|
}
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
// You can also take a limited set of references to other types as well.
|
|
|
|
pub fn add_other(&mut self, bar: &Bar) {
|
|
|
|
self.contents += bar.contents;
|
|
|
|
}
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
// Ownership can work too!
|
|
|
|
pub fn consume_other(&mut self, bar: Bar) {
|
|
|
|
self.contents += bar.contents;
|
|
|
|
}
|
|
|
|
}
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
#[wasm_bindgen]
|
|
|
|
pub struct Bar {
|
|
|
|
contents: u32,
|
|
|
|
opaque: JsValue, // defined in `wasm_bindgen`, imported via prelude
|
|
|
|
}
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
#[wasm_bindgen(module = "./index")] // what ES6 module to import from
|
|
|
|
extern {
|
|
|
|
fn bar_on_reset(to: &str, opaque: &JsValue);
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
// We can import classes and annotate functionality on those classes as well
|
|
|
|
type Awesome;
|
|
|
|
#[wasm_bindgen(constructor)]
|
|
|
|
fn new() -> Awesome;
|
|
|
|
#[wasm_bindgen(method)]
|
|
|
|
fn get_internal(this: &Awesome) -> u32;
|
|
|
|
}
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
#[wasm_bindgen]
|
|
|
|
impl Bar {
|
|
|
|
pub fn from_str(s: &str, opaque: JsValue) -> Bar {
|
2018-03-03 07:19:39 +03:00
|
|
|
let contents = s.parse().unwrap_or_else(|_| {
|
2018-02-08 03:41:33 +03:00
|
|
|
Awesome::new().get_internal()
|
|
|
|
});
|
|
|
|
Bar { contents, opaque }
|
2017-12-19 08:43:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
pub fn reset(&mut self, s: &str) {
|
|
|
|
if let Ok(n) = s.parse() {
|
|
|
|
bar_on_reset(s, &self.opaque);
|
|
|
|
self.contents = n;
|
2017-12-19 03:35:36 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-01-16 02:12:38 +03:00
|
|
|
The generated JS bindings for this invocation of the macro [look like
|
2018-01-20 21:20:01 +03:00
|
|
|
this][bindings]. You can view them in action like so:
|
2018-01-20 20:47:44 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
[bindings]: https://gist.github.com/alexcrichton/3d85c505e785fb8ff32e2c1cf9618367
|
2018-01-30 08:20:38 +03:00
|
|
|
|
|
|
|
and our corresponding `index.js`:
|
2017-12-19 20:33:47 +03:00
|
|
|
|
2018-01-30 08:53:33 +03:00
|
|
|
```js
|
2018-01-30 08:20:38 +03:00
|
|
|
import { Foo, Bar, concat } from "./js_hello_world";
|
|
|
|
import { booted } from "./js_hello_world_wasm";
|
|
|
|
|
|
|
|
export function bar_on_reset(s, token) {
|
|
|
|
console.log(token);
|
|
|
|
console.log(`this instance of bar was reset to ${s}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
function assertEq(a, b) {
|
|
|
|
if (a !== b)
|
|
|
|
throw new Error(`${a} != ${b}`);
|
|
|
|
console.log(`found ${a} === ${b}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
assertEq(concat('a', 'b'), 'ab');
|
|
|
|
|
|
|
|
// Note the `new Foo()` syntax cannot be used, static function
|
|
|
|
// constructors must be used instead. Additionally objects allocated
|
|
|
|
// corresponding to Rust structs will need to be deallocated on the
|
|
|
|
// Rust side of things with an explicit call to `free`.
|
|
|
|
let foo = Foo.new();
|
|
|
|
assertEq(foo.add(10), 10);
|
|
|
|
foo.free();
|
|
|
|
|
|
|
|
// Pass objects to one another
|
|
|
|
let foo1 = Foo.new();
|
|
|
|
let bar = Bar.from_str("22", { opaque: 'object' });
|
|
|
|
foo1.add_other(bar);
|
|
|
|
|
|
|
|
// We also don't have to `free` the `bar` variable as this function is
|
|
|
|
// transferring ownership to `foo1`
|
|
|
|
bar.reset('34');
|
|
|
|
foo1.consume_other(bar);
|
|
|
|
|
|
|
|
assertEq(foo1.add(2), 22 + 34 + 2);
|
|
|
|
foo1.free();
|
|
|
|
|
|
|
|
alert('all passed!')
|
|
|
|
}
|
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
export class Awesome {
|
|
|
|
constructor() {
|
|
|
|
this.internal = 32;
|
|
|
|
}
|
|
|
|
|
|
|
|
get_internal() {
|
|
|
|
return this.internal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 08:20:38 +03:00
|
|
|
booted.then(main);
|
2017-12-19 03:35:36 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
## Feature reference
|
|
|
|
|
|
|
|
Here this section will attempt to be a reference for the various features
|
2018-01-30 08:54:52 +03:00
|
|
|
implemented in this project. This is likely not exhaustive but the [tests]
|
|
|
|
should also be a great place to look for examples.
|
|
|
|
|
|
|
|
[tests]: https://github.com/alexcrichton/wasm-bindgen/tree/master/tests
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-08 03:41:33 +03:00
|
|
|
The `#[wasm_bindgen]` attribute can be attached to functions, structs,
|
|
|
|
impls, and foreign modules. Impls can only contain functions, and the attribute
|
|
|
|
cannot be attached to functions in an impl block or functions in a foreign
|
|
|
|
module. No lifetime parameters or type parameters are allowed on any of these
|
|
|
|
types. Foreign modules must have the `"C"` abi (or none listed). Free functions
|
2018-03-06 07:27:34 +03:00
|
|
|
with `#[wasm_bindgen]` might no have the `"C"` abi or none listed and also not
|
2018-03-06 01:25:15 +03:00
|
|
|
needed to annotate with the `#[no_mangle]` attribute.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
All structs referenced through arguments to functions should be defined in the
|
2018-02-08 03:41:33 +03:00
|
|
|
macro itself. Arguments allowed implement the `WasmBoundary` trait, and examples
|
|
|
|
are:
|
2017-12-19 03:35:36 +03:00
|
|
|
|
|
|
|
* Integers (not u64/i64)
|
|
|
|
* Floats
|
|
|
|
* Borrowed strings (`&str`)
|
|
|
|
* Owned strings (`String`)
|
2018-02-08 03:41:33 +03:00
|
|
|
* Exported structs (`Foo`, annotated with `#[wasm_bindgen]`)
|
2018-02-27 02:32:07 +03:00
|
|
|
* Exported C-like enums (`Foo`, annotated with `#[wasm_bindgen]`)
|
2018-02-08 03:41:33 +03:00
|
|
|
* Imported types in a foreign module annotated with `#[wasm_bindgen]`
|
|
|
|
* Borrowed exported structs (`&Foo` or `&mut Bar`)
|
2018-02-07 02:04:46 +03:00
|
|
|
* The `JsValue` type and `&JsValue` (not mutable references)
|
2018-02-28 19:29:40 +03:00
|
|
|
* Vectors and slices of supported integer types and of the `JsValue` type.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-02-28 19:33:16 +03:00
|
|
|
All of the above can also be returned except borrowed references. Passing
|
|
|
|
`Vec<JsValue>` as an argument to a function is not currently supported. Strings are
|
2017-12-19 03:35:36 +03:00
|
|
|
implemented with shim functions to copy data in/out of the Rust heap. That is, a
|
|
|
|
string passed to Rust from JS is copied to the Rust heap (using a generated shim
|
|
|
|
to malloc some space) and then will be freed appropriately.
|
|
|
|
|
|
|
|
Owned values are implemented through boxes. When you return a `Foo` it's
|
|
|
|
actually turned into `Box<RefCell<Foo>>` under the hood and returned to JS as a
|
|
|
|
pointer. The pointer is to have a defined ABI, and the `RefCell` is to ensure
|
|
|
|
safety with reentrancy and aliasing in JS. In general you shouldn't see
|
|
|
|
`RefCell` panics with normal usage.
|
|
|
|
|
2017-12-19 20:30:57 +03:00
|
|
|
JS-values-in-Rust are implemented through indexes that index a table generated
|
|
|
|
as part of the JS bindings. This table is managed via the ownership specified in
|
2018-02-08 03:41:33 +03:00
|
|
|
Rust and through the bindings that we're returning. More information about this
|
|
|
|
can be found in the [design doc].
|
2017-12-19 20:30:57 +03:00
|
|
|
|
2017-12-19 03:35:36 +03:00
|
|
|
All of these constructs currently create relatively straightforward code on the
|
2018-01-16 02:12:38 +03:00
|
|
|
JS side of things, mostly having a 1:1 match in Rust with JS.
|
2017-12-19 03:35:36 +03:00
|
|
|
|
2018-04-03 17:58:12 +03:00
|
|
|
## CLI Reference
|
|
|
|
|
|
|
|
The `wasm-bindgen` tool has a number of options available to it to tweak the JS
|
|
|
|
that is generated. By default the generated JS uses ES modules and is compatible
|
|
|
|
with both Node and browsers (but will likely require a bundler for both use
|
|
|
|
cases).
|
|
|
|
|
|
|
|
Supported flags of the CLI tool can be learned via `wasm-bindgen --help`, but
|
|
|
|
some notable options are:
|
|
|
|
|
|
|
|
* `--nodejs` - this flag will tailor output for Node instead of browsers,
|
|
|
|
allowing for native usage of `require` of the generated JS and internally
|
|
|
|
using `require` instead of ES modules. When using this flag no further
|
|
|
|
postprocessing (aka a bundler) should be necessary to work with the wasm.
|
|
|
|
|
|
|
|
* `--browser` - this flag will tailor the output specifically for browsers,
|
|
|
|
making it incompatible with Node. This will basically make the generated JS a
|
|
|
|
tiny bit smaller as runtime checks for Node won't be necessary.
|
|
|
|
|
|
|
|
* `--typescript` - when passed a `*.d.ts` file will be generated for the
|
|
|
|
generated JS file. This should allow hooking into TypeScript projects to
|
|
|
|
ensure everything still typechecks.
|
|
|
|
|
|
|
|
* `--debug` - generates a bit more JS and wasm in "debug mode" to help catch
|
|
|
|
programmer errors, but this output isn't intended to be shipped to production
|
|
|
|
|
2017-12-19 01:49:04 +03:00
|
|
|
# License
|
|
|
|
|
|
|
|
This project is licensed under either of
|
|
|
|
|
|
|
|
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
http://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
at your option.
|
|
|
|
|
|
|
|
### Contribution
|
|
|
|
|
|
|
|
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
|
|
for inclusion in this project by you, as defined in the Apache-2.0 license,
|
|
|
|
shall be dual licensed as above, without any additional terms or conditions.
|
2018-02-23 16:52:45 +03:00
|
|
|
|
|
|
|
### Tests
|
|
|
|
|
2018-03-07 01:35:12 +03:00
|
|
|
In order to run the tests you will need [node.js](https://nodejs.org/) version
|
2018-02-23 16:52:45 +03:00
|
|
|
8.9.4 or above. Running the tests is done by running `cargo test`.
|