Migrate `wasm-bindgen` to using `walrus`
This commit moves `wasm-bindgen` the CLI tool from internally using
`parity-wasm` for wasm parsing/serialization to instead use `walrus`.
The `walrus` crate is something we've been working on recently with an
aim to replace the usage of `parity-wasm` in `wasm-bindgen` to make the
current CLI tool more maintainable as well as more future-proof.
The `walrus` crate provides a much nicer AST to work with as well as a
structured `Module`, whereas `parity-wasm` provides a very raw interface
to the wasm module which isn't really appropriate for our use case. The
many transformations and tweaks that wasm-bindgen does have a huge
amount of ad-hoc index management to carefully craft a final wasm
binary, but this is all entirely taken care for us with the `walrus`
crate.
Additionally, `wasm-bindgen` will ingest and rewrite the wasm file,
often changing the binary offsets of functions. Eventually with DWARF
debug information we'll need to be sure to preserve the debug
information throughout the transformations that `wasm-bindgen` does
today. This is practically impossible to do with the `parity-wasm`
architecture, but `walrus` was designed from the get-go to solve this
problem transparently in the `walrus` crate itself. (it doesn't today,
but this is planned work)
It is the intention that this does not end up regressing any
`wasm-bindgen` use cases, neither in functionality or in speed. As a
large change and refactoring, however, it's likely that at least
something will arise! We'll want to continue to remain vigilant to any
issues that come up with this commit.
Note that the `gc` crate has been deleted as part of this change, as the
`gc` crate is no longer necessary since `walrus` does it automatically.
Additionally the `gc` crate was one of the main problems with preserving
debug information as it often deletes wasm items!
Finally, this also starts moving crates to the 2018 edition where
necessary since `walrus` requires the 2018 edition, and in general it's
more pleasant to work within the 2018 edition!
2019-01-31 09:54:23 -08:00
|
|
|
use docopt::Docopt;
|
|
|
|
use failure::{Error, ResultExt};
|
|
|
|
use serde::Deserialize;
|
2018-07-25 16:06:47 -07:00
|
|
|
use std::fs;
|
2018-01-29 21:20:38 -08:00
|
|
|
use std::path::PathBuf;
|
2018-04-25 11:42:22 -07:00
|
|
|
use std::process;
|
2018-01-29 21:20:38 -08:00
|
|
|
|
2018-10-17 19:15:09 -07:00
|
|
|
// no need for jemalloc bloat in this binary (and we don't need speed)
|
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: std::alloc::System = std::alloc::System;
|
|
|
|
|
2018-01-29 21:20:38 -08:00
|
|
|
const USAGE: &'static str = "
|
|
|
|
Converts a wasm file to an ES6 JS module
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
wasm2es6js [options] <input>
|
|
|
|
wasm2es6js -h | --help
|
|
|
|
|
|
|
|
Options:
|
|
|
|
-h --help Show this screen.
|
|
|
|
-o --output FILE File to place output in
|
2018-11-29 11:52:23 -08:00
|
|
|
--out-dir DIR Directory to place ouptut in
|
2018-01-30 07:47:49 -08:00
|
|
|
--typescript Output a `*.d.ts` file next to the JS output
|
2018-01-29 21:20:38 -08:00
|
|
|
--base64 Inline the wasm module using base64 encoding
|
2018-04-23 09:04:30 -05:00
|
|
|
--fetch PATH Load module by passing the PATH argument to `fetch()`
|
2018-02-02 08:17:04 -08:00
|
|
|
|
|
|
|
Note that this is not intended to produce a production-ready output module
|
|
|
|
but rather is intended purely as a temporary \"hack\" until it's standard in
|
|
|
|
bundlers for working with wasm. Use this program with care!
|
2018-01-29 21:20:38 -08:00
|
|
|
";
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
struct Args {
|
|
|
|
flag_output: Option<PathBuf>,
|
2018-11-29 11:52:23 -08:00
|
|
|
flag_out_dir: Option<PathBuf>,
|
2018-01-30 07:47:49 -08:00
|
|
|
flag_typescript: bool,
|
2018-01-29 21:20:38 -08:00
|
|
|
flag_base64: bool,
|
2018-04-23 09:04:30 -05:00
|
|
|
flag_fetch: Option<String>,
|
2018-01-29 21:20:38 -08:00
|
|
|
arg_input: PathBuf,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let args: Args = Docopt::new(USAGE)
|
|
|
|
.and_then(|d| d.deserialize())
|
|
|
|
.unwrap_or_else(|e| e.exit());
|
2018-04-25 11:42:22 -07:00
|
|
|
let err = match rmain(&args) {
|
|
|
|
Ok(()) => return,
|
|
|
|
Err(e) => e,
|
|
|
|
};
|
2018-04-30 13:24:29 -07:00
|
|
|
eprintln!("error: {}", err);
|
2018-08-01 16:15:09 -05:00
|
|
|
for cause in err.iter_causes() {
|
2018-04-30 13:24:29 -07:00
|
|
|
eprintln!("\tcaused by: {}", cause);
|
2018-04-25 11:42:22 -07:00
|
|
|
}
|
|
|
|
process::exit(1);
|
|
|
|
}
|
2018-01-29 21:20:38 -08:00
|
|
|
|
2018-04-25 11:42:22 -07:00
|
|
|
fn rmain(args: &Args) -> Result<(), Error> {
|
2018-07-25 16:06:47 -07:00
|
|
|
let wasm = fs::read(&args.arg_input)
|
2018-04-25 11:42:22 -07:00
|
|
|
.with_context(|_| format!("failed to read `{}`", args.arg_input.display()))?;
|
2018-01-29 21:20:38 -08:00
|
|
|
|
|
|
|
let object = wasm_bindgen_cli_support::wasm2es6js::Config::new()
|
|
|
|
.base64(args.flag_base64)
|
2018-04-25 11:42:22 -07:00
|
|
|
.fetch(args.flag_fetch.clone())
|
|
|
|
.generate(&wasm)?;
|
2018-01-30 07:45:36 -08:00
|
|
|
|
2018-01-30 07:47:49 -08:00
|
|
|
if args.flag_typescript {
|
Migrate `wasm-bindgen` to using `walrus`
This commit moves `wasm-bindgen` the CLI tool from internally using
`parity-wasm` for wasm parsing/serialization to instead use `walrus`.
The `walrus` crate is something we've been working on recently with an
aim to replace the usage of `parity-wasm` in `wasm-bindgen` to make the
current CLI tool more maintainable as well as more future-proof.
The `walrus` crate provides a much nicer AST to work with as well as a
structured `Module`, whereas `parity-wasm` provides a very raw interface
to the wasm module which isn't really appropriate for our use case. The
many transformations and tweaks that wasm-bindgen does have a huge
amount of ad-hoc index management to carefully craft a final wasm
binary, but this is all entirely taken care for us with the `walrus`
crate.
Additionally, `wasm-bindgen` will ingest and rewrite the wasm file,
often changing the binary offsets of functions. Eventually with DWARF
debug information we'll need to be sure to preserve the debug
information throughout the transformations that `wasm-bindgen` does
today. This is practically impossible to do with the `parity-wasm`
architecture, but `walrus` was designed from the get-go to solve this
problem transparently in the `walrus` crate itself. (it doesn't today,
but this is planned work)
It is the intention that this does not end up regressing any
`wasm-bindgen` use cases, neither in functionality or in speed. As a
large change and refactoring, however, it's likely that at least
something will arise! We'll want to continue to remain vigilant to any
issues that come up with this commit.
Note that the `gc` crate has been deleted as part of this change, as the
`gc` crate is no longer necessary since `walrus` does it automatically.
Additionally the `gc` crate was one of the main problems with preserving
debug information as it often deletes wasm items!
Finally, this also starts moving crates to the 2018 edition where
necessary since `walrus` requires the 2018 edition, and in general it's
more pleasant to work within the 2018 edition!
2019-01-31 09:54:23 -08:00
|
|
|
let ts = object.typescript()?;
|
2018-11-29 11:52:23 -08:00
|
|
|
write(&args, "d.ts", ts.as_bytes(), false)?;
|
2018-01-30 07:45:36 -08:00
|
|
|
}
|
|
|
|
|
2018-11-29 11:52:23 -08:00
|
|
|
let (js, wasm) = object.js_and_wasm()?;
|
2018-01-29 21:20:38 -08:00
|
|
|
|
2018-11-29 11:52:23 -08:00
|
|
|
write(args, "js", js.as_bytes(), false)?;
|
|
|
|
if let Some(wasm) = wasm {
|
|
|
|
write(args, "wasm", &wasm, false)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-11-30 13:04:05 -08:00
|
|
|
fn write(args: &Args, extension: &str, contents: &[u8], print_fallback: bool) -> Result<(), Error> {
|
2018-11-29 11:52:23 -08:00
|
|
|
if let Some(p) = &args.flag_output {
|
|
|
|
let dst = p.with_extension(extension);
|
2018-11-30 13:04:05 -08:00
|
|
|
fs::write(&dst, contents)
|
|
|
|
.with_context(|_| format!("failed to write `{}`", dst.display()))?;
|
2018-11-29 11:52:23 -08:00
|
|
|
} else if let Some(p) = &args.flag_out_dir {
|
|
|
|
let filename = args.arg_input.file_name().unwrap();
|
|
|
|
let dst = p.join(filename).with_extension(extension);
|
2018-11-30 13:04:05 -08:00
|
|
|
fs::write(&dst, contents)
|
|
|
|
.with_context(|_| format!("failed to write `{}`", dst.display()))?;
|
2018-11-29 11:52:23 -08:00
|
|
|
} else if print_fallback {
|
|
|
|
println!("{}", String::from_utf8_lossy(contents))
|
2018-01-29 21:20:38 -08:00
|
|
|
}
|
2018-04-25 11:42:22 -07:00
|
|
|
|
|
|
|
Ok(())
|
2018-01-29 21:20:38 -08:00
|
|
|
}
|