2017-12-14 19:31:01 -08:00
|
|
|
extern crate parity_wasm;
|
|
|
|
extern crate wasm_bindgen_shared as shared;
|
|
|
|
extern crate serde_json;
|
2018-02-06 08:58:15 -08:00
|
|
|
extern crate wasm_gc;
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-02-06 16:06:21 -08:00
|
|
|
use std::char;
|
2018-03-29 01:47:44 -07:00
|
|
|
use std::collections::BTreeSet;
|
2017-12-14 19:31:01 -08:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
2017-12-24 15:32:40 -08:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-02-06 16:06:21 -08:00
|
|
|
use std::slice;
|
2017-12-14 19:31:01 -08:00
|
|
|
|
|
|
|
use parity_wasm::elements::*;
|
|
|
|
|
2018-01-29 21:20:38 -08:00
|
|
|
mod js;
|
|
|
|
pub mod wasm2es6js;
|
2017-12-18 12:39:14 -08:00
|
|
|
|
2017-12-14 19:31:01 -08:00
|
|
|
pub struct Bindgen {
|
|
|
|
path: Option<PathBuf>,
|
2017-12-14 21:55:21 -08:00
|
|
|
nodejs: bool,
|
2018-03-28 07:37:56 -07:00
|
|
|
browser: bool,
|
2017-12-19 09:25:41 -08:00
|
|
|
debug: bool,
|
2018-01-29 21:20:38 -08:00
|
|
|
typescript: bool,
|
2017-12-14 19:31:01 -08:00
|
|
|
}
|
|
|
|
|
2018-03-05 19:25:50 -08:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Error(String);
|
|
|
|
|
|
|
|
impl<E: std::error::Error> From<E> for Error {
|
|
|
|
fn from(e: E) -> Error {
|
|
|
|
Error(e.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 19:31:01 -08:00
|
|
|
impl Bindgen {
|
|
|
|
pub fn new() -> Bindgen {
|
|
|
|
Bindgen {
|
|
|
|
path: None,
|
2017-12-14 21:55:21 -08:00
|
|
|
nodejs: false,
|
2018-03-28 07:37:56 -07:00
|
|
|
browser: false,
|
2017-12-19 09:25:41 -08:00
|
|
|
debug: false,
|
2018-01-29 21:20:38 -08:00
|
|
|
typescript: false,
|
2017-12-14 19:31:01 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn input_path<P: AsRef<Path>>(&mut self, path: P) -> &mut Bindgen {
|
|
|
|
self.path = Some(path.as_ref().to_path_buf());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-12-14 21:55:21 -08:00
|
|
|
pub fn nodejs(&mut self, node: bool) -> &mut Bindgen {
|
|
|
|
self.nodejs = node;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-03-28 07:37:56 -07:00
|
|
|
pub fn browser(&mut self, browser: bool) -> &mut Bindgen {
|
|
|
|
self.browser = browser;
|
2018-03-07 08:50:56 -08:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2017-12-19 09:25:41 -08:00
|
|
|
pub fn debug(&mut self, debug: bool) -> &mut Bindgen {
|
|
|
|
self.debug = debug;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:20:38 -08:00
|
|
|
pub fn typescript(&mut self, typescript: bool) -> &mut Bindgen {
|
|
|
|
self.typescript = typescript;
|
2017-12-24 15:32:40 -08:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:20:38 -08:00
|
|
|
pub fn generate<P: AsRef<Path>>(&mut self, path: P) -> Result<(), Error> {
|
|
|
|
self._generate(path.as_ref())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn _generate(&mut self, out_dir: &Path) -> Result<(), Error> {
|
2017-12-14 19:31:01 -08:00
|
|
|
let input = match self.path {
|
|
|
|
Some(ref path) => path,
|
|
|
|
None => panic!("must have a path input for now"),
|
|
|
|
};
|
2018-01-29 21:20:38 -08:00
|
|
|
let stem = input.file_stem().unwrap().to_str().unwrap();
|
2017-12-14 19:31:01 -08:00
|
|
|
let mut module = parity_wasm::deserialize_file(input).map_err(|e| {
|
2018-03-05 19:25:50 -08:00
|
|
|
Error(format!("{:?}", e))
|
2017-12-14 19:31:01 -08:00
|
|
|
})?;
|
2018-02-06 15:52:44 -08:00
|
|
|
let programs = extract_programs(&mut module);
|
|
|
|
|
|
|
|
let (js, ts) = {
|
|
|
|
let mut cx = js::Context {
|
|
|
|
globals: String::new(),
|
|
|
|
imports: String::new(),
|
2018-03-29 01:47:44 -07:00
|
|
|
footer: String::new(),
|
2018-02-06 15:52:44 -08:00
|
|
|
typescript: format!("/* tslint:disable */\n"),
|
|
|
|
exposed_globals: Default::default(),
|
|
|
|
required_internal_exports: Default::default(),
|
2018-02-06 16:06:21 -08:00
|
|
|
custom_type_names: Default::default(),
|
2018-02-07 16:41:33 -08:00
|
|
|
imported_names: Default::default(),
|
|
|
|
exported_classes: Default::default(),
|
2018-02-06 15:52:44 -08:00
|
|
|
config: &self,
|
|
|
|
module: &mut module,
|
|
|
|
};
|
2018-02-06 16:06:21 -08:00
|
|
|
for program in programs.iter() {
|
|
|
|
cx.add_custom_type_names(program);
|
|
|
|
}
|
2018-02-06 15:52:44 -08:00
|
|
|
for program in programs.iter() {
|
|
|
|
js::SubContext {
|
|
|
|
program,
|
|
|
|
cx: &mut cx,
|
|
|
|
}.generate();
|
|
|
|
}
|
|
|
|
cx.finalize(stem)
|
|
|
|
};
|
2018-01-29 21:20:38 -08:00
|
|
|
|
|
|
|
let js_path = out_dir.join(stem).with_extension("js");
|
|
|
|
File::create(&js_path).unwrap()
|
|
|
|
.write_all(js.as_bytes()).unwrap();
|
|
|
|
|
|
|
|
if self.typescript {
|
|
|
|
let ts_path = out_dir.join(stem).with_extension("d.ts");
|
|
|
|
File::create(&ts_path).unwrap()
|
|
|
|
.write_all(ts.as_bytes()).unwrap();
|
|
|
|
}
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-03-05 22:25:14 +01:00
|
|
|
let wasm_path = out_dir.join(format!("{}_bg", stem)).with_extension("wasm");
|
2018-03-29 01:47:44 -07:00
|
|
|
|
|
|
|
if self.nodejs {
|
|
|
|
let js_path = wasm_path.with_extension("js");
|
|
|
|
let shim = self.generate_node_wasm_import(&module, &wasm_path);
|
|
|
|
File::create(&js_path)?.write_all(shim.as_bytes())?;
|
|
|
|
}
|
|
|
|
|
2018-02-06 08:58:15 -08:00
|
|
|
let wasm_bytes = parity_wasm::serialize(module).map_err(|e| {
|
2018-03-05 19:25:50 -08:00
|
|
|
Error(format!("{:?}", e))
|
2017-12-14 19:31:01 -08:00
|
|
|
})?;
|
2018-02-06 08:58:15 -08:00
|
|
|
let bytes = wasm_gc::Config::new()
|
|
|
|
.demangle(false)
|
|
|
|
.gc(&wasm_bytes)?;
|
|
|
|
File::create(&wasm_path)?.write_all(&bytes)?;
|
2017-12-14 19:31:01 -08:00
|
|
|
Ok(())
|
|
|
|
}
|
2018-03-29 01:47:44 -07:00
|
|
|
|
|
|
|
fn generate_node_wasm_import(&self, m: &Module, path: &Path) -> String {
|
|
|
|
let mut imports = BTreeSet::new();
|
|
|
|
if let Some(i) = m.import_section() {
|
|
|
|
for i in i.entries() {
|
|
|
|
imports.insert(i.module());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut shim = String::new();
|
|
|
|
shim.push_str("let imports = {};\n");
|
|
|
|
for module in imports {
|
|
|
|
shim.push_str(&format!("imports['{0}'] = require('{0}');\n", module));
|
|
|
|
}
|
|
|
|
|
|
|
|
shim.push_str(&format!("
|
|
|
|
const bytes = require('fs').readFileSync('{}');
|
|
|
|
const wasmModule = new WebAssembly.Module(bytes);
|
|
|
|
const wasmInstance = new WebAssembly.Instance(wasmModule, imports);
|
|
|
|
module.exports = wasmInstance.exports;
|
|
|
|
", path.file_name().unwrap().to_str().unwrap()));
|
|
|
|
|
|
|
|
shim
|
|
|
|
}
|
2017-12-14 19:31:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-06 15:52:44 -08:00
|
|
|
fn extract_programs(module: &mut Module) -> Vec<shared::Program> {
|
2018-03-01 19:32:05 -08:00
|
|
|
let version = shared::version();
|
2018-02-06 15:52:44 -08:00
|
|
|
let mut ret = Vec::new();
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-03-14 14:33:53 -07:00
|
|
|
#[repr(packed)]
|
|
|
|
struct Unaligned(u32);
|
|
|
|
|
|
|
|
module.sections_mut().retain(|s| {
|
|
|
|
let custom = match *s {
|
|
|
|
Section::Custom(ref s) => s,
|
|
|
|
_ => return true,
|
|
|
|
};
|
|
|
|
if custom.name() != "__wasm_bindgen_unstable" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(custom.payload().len() % 4 == 0);
|
|
|
|
let mut payload = unsafe {
|
|
|
|
slice::from_raw_parts(custom.payload().as_ptr() as *const Unaligned,
|
|
|
|
custom.payload().len() / 4)
|
|
|
|
};
|
|
|
|
|
|
|
|
while payload.len() > 0 {
|
|
|
|
let len = payload[0].0.to_le();
|
|
|
|
assert!(len % 4 == 0);
|
|
|
|
let (a, b) = payload[1..].split_at((len / 4) as usize);
|
|
|
|
payload = b;
|
|
|
|
let json = a.iter()
|
|
|
|
.map(|i| char::from_u32(i.0.to_le()).unwrap())
|
2018-02-06 16:06:21 -08:00
|
|
|
.collect::<String>();
|
2018-03-01 19:32:05 -08:00
|
|
|
let p: shared::Program = match serde_json::from_str(&json) {
|
2017-12-14 19:31:01 -08:00
|
|
|
Ok(f) => f,
|
2018-02-06 07:56:14 -08:00
|
|
|
Err(e) => {
|
|
|
|
panic!("failed to decode what looked like wasm-bindgen data: {}", e)
|
|
|
|
}
|
2017-12-14 19:31:01 -08:00
|
|
|
};
|
2018-03-05 20:05:44 -08:00
|
|
|
if p.schema_version != shared::SCHEMA_VERSION {
|
2018-03-01 19:32:05 -08:00
|
|
|
panic!("
|
|
|
|
|
|
|
|
it looks like the Rust project used to create this wasm file was linked against
|
|
|
|
a different version of wasm-bindgen than this binary:
|
|
|
|
|
|
|
|
rust wasm file: {}
|
|
|
|
this binary: {}
|
|
|
|
|
|
|
|
Currently the bindgen format is unstable enough that these two version must
|
|
|
|
exactly match, so it's required that these two version are kept in sync by
|
|
|
|
either updating the wasm-bindgen dependency or this binary. You should be able
|
|
|
|
to update the wasm-bindgen dependency with:
|
|
|
|
|
|
|
|
cargo update -p wasm-bindgen
|
|
|
|
|
|
|
|
or you can update the binary with
|
|
|
|
|
|
|
|
cargo install -f --git https://github.com/alexcrichton/wasm-bindgen
|
|
|
|
|
|
|
|
if this warning fails to go away though and you're not sure what to do feel free
|
|
|
|
to open an issue at https://github.com/alexcrichton/wasm-bindgen/issues!
|
|
|
|
",
|
|
|
|
p.version, version);
|
|
|
|
}
|
2018-02-06 15:52:44 -08:00
|
|
|
ret.push(p);
|
2018-03-09 16:09:07 -08:00
|
|
|
}
|
2018-03-14 10:50:12 -07:00
|
|
|
|
2018-03-14 14:33:53 -07:00
|
|
|
false
|
|
|
|
});
|
|
|
|
return ret
|
2018-02-06 16:06:21 -08:00
|
|
|
}
|