mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-16 22:11:45 +03:00
894b479213
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!
174 lines
3.7 KiB
Rust
174 lines
3.7 KiB
Rust
use js_sys::{Uint8Array, WebAssembly};
|
|
use wasm_bindgen::prelude::*;
|
|
use wasm_bindgen::{self, JsCast};
|
|
use wasm_bindgen_test::*;
|
|
|
|
#[wasm_bindgen(module = "tests/wasm/api.js")]
|
|
extern "C" {
|
|
fn js_works();
|
|
fn js_eq_works();
|
|
fn assert_null(v: JsValue);
|
|
fn debug_values() -> JsValue;
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn works() {
|
|
js_works();
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_foo() -> JsValue {
|
|
JsValue::from("foo")
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_bar(s: &str) -> JsValue {
|
|
JsValue::from(s)
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_baz() -> JsValue {
|
|
JsValue::from(1.0)
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_baz2(a: &JsValue, b: &JsValue) {
|
|
assert_eq!(a.as_f64(), Some(2.0));
|
|
assert_eq!(b.as_f64(), None);
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_js_null() -> JsValue {
|
|
JsValue::null()
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_js_undefined() -> JsValue {
|
|
JsValue::undefined()
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_test_is_null_undefined(a: &JsValue, b: &JsValue, c: &JsValue) {
|
|
assert!(a.is_null());
|
|
assert!(!a.is_undefined());
|
|
|
|
assert!(!b.is_null());
|
|
assert!(b.is_undefined());
|
|
|
|
assert!(!c.is_null());
|
|
assert!(!c.is_undefined());
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_get_true() -> JsValue {
|
|
JsValue::from(true)
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_get_false() -> JsValue {
|
|
JsValue::from(false)
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_test_bool(a: &JsValue, b: &JsValue, c: &JsValue) {
|
|
assert_eq!(a.as_bool(), Some(true));
|
|
assert_eq!(format!("{:?}", a), "JsValue(true)");
|
|
assert_eq!(b.as_bool(), Some(false));
|
|
assert_eq!(c.as_bool(), None);
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_mk_symbol() -> JsValue {
|
|
let a = JsValue::symbol(None);
|
|
assert!(a.is_symbol());
|
|
assert_eq!(format!("{:?}", a), "JsValue(Symbol)");
|
|
return a;
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_mk_symbol2(s: &str) -> JsValue {
|
|
let a = JsValue::symbol(Some(s));
|
|
assert!(a.is_symbol());
|
|
return a;
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_assert_symbols(a: &JsValue, b: &JsValue) {
|
|
assert!(a.is_symbol());
|
|
assert!(!b.is_symbol());
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_acquire_string(a: &JsValue, b: &JsValue) {
|
|
assert_eq!(a.as_string().unwrap(), "foo");
|
|
assert_eq!(format!("{:?}", a), "JsValue(\"foo\")");
|
|
assert_eq!(b.as_string(), None);
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn api_acquire_string2(a: &JsValue) -> String {
|
|
a.as_string().unwrap_or("wrong".to_string())
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn eq_works() {
|
|
js_eq_works();
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn eq_test(a: &JsValue, b: &JsValue) -> bool {
|
|
a == b
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn eq_test1(a: &JsValue) -> bool {
|
|
a == a
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn null_keeps_working() {
|
|
assert_null(JsValue::null());
|
|
assert_null(JsValue::null());
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn memory_accessor_appears_to_work() {
|
|
let data = 3u32;
|
|
let ptr = &data as *const u32 as u32;
|
|
|
|
let my_mem = wasm_bindgen::memory();
|
|
let mem = my_mem.dyn_into::<WebAssembly::Memory>().unwrap();
|
|
let buf = mem.buffer();
|
|
let slice = Uint8Array::new(&buf);
|
|
let mut v = Vec::new();
|
|
slice
|
|
.subarray(ptr, ptr + 4)
|
|
.for_each(&mut |val, _, _| v.push(val));
|
|
assert_eq!(v, [3, 0, 0, 0]);
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn debug_output() {
|
|
let test_iter = debug_values()
|
|
.dyn_into::<js_sys::Array>()
|
|
.unwrap()
|
|
.values()
|
|
.into_iter();
|
|
let expecteds = vec![
|
|
"JsValue(null)",
|
|
"JsValue(undefined)",
|
|
"JsValue(0)",
|
|
"JsValue(1)",
|
|
"JsValue(true)",
|
|
"JsValue([1, 2, 3])",
|
|
"JsValue(\"string\")",
|
|
"JsValue(Object({\"test\":\"object\"}))",
|
|
"JsValue([1, [2, 3]])",
|
|
"JsValue(Function)",
|
|
"JsValue(Set)",
|
|
];
|
|
for (test, expected) in test_iter.zip(expecteds) {
|
|
assert_eq!(format!("{:?}", test.unwrap()), expected);
|
|
}
|
|
}
|