Skip to content

Commit 1dd8b3d

Browse files
authoredNov 14, 2022
refactor(bindings): Deprecate JsValue::*_serde (#6436)
1 parent cdc1b4c commit 1dd8b3d

File tree

6 files changed

+87
-41
lines changed

6 files changed

+87
-41
lines changed
 

‎Cargo.lock

+14-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bindings/Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎bindings/binding_core_wasm/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ swc_core = { version = "0.43.3", features = [
2929
] }
3030
tracing = { version = "0.1.37", features = ["max_level_off"] }
3131
wasm-bindgen = { version = "0.2.82", features = [
32-
"serde-serialize",
3332
"enable-interning",
3433
] }
34+
serde = { version = "1", features = ["derive"] }
35+
serde-wasm-bindgen = "0.4.5"
3536

3637
[package.metadata.wasm-pack.profile.release]
3738
wasm-opt = false

‎bindings/binding_core_wasm/src/lib.rs

+36-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
use anyhow::Error;
2+
use serde::Serialize;
3+
use serde_wasm_bindgen::Serializer;
24
use swc_core::{
35
base::HandlerOpts,
46
binding_macros::wasm::{
@@ -21,6 +23,12 @@ use swc_core::{
2123
use wasm_bindgen::{prelude::*, JsCast};
2224
mod types;
2325

26+
// A serializer with options to provide backward compat for the input / output
27+
// from the bindgen generated swc interfaces.
28+
const COMPAT_SERIALIZER: Serializer = Serializer::new()
29+
.serialize_maps_as_objects(true)
30+
.serialize_missing_as_null(true);
31+
2432
/// Custom interface definitions for the @swc/wasm's public interface instead of
2533
/// auto generated one, which is not reflecting most of types in detail.
2634
#[wasm_bindgen(typescript_custom_section)]
@@ -81,12 +89,16 @@ pub fn minify_sync(s: JsString, opts: JsValue) -> Result<JsValue, JsValue> {
8189
let opts = if opts.is_null() || opts.is_undefined() {
8290
Default::default()
8391
} else {
84-
anyhow::Context::context(opts.into_serde(), "failed to parse options")?
92+
serde_wasm_bindgen::from_value(opts)
93+
.map_err(|e| anyhow::anyhow!("failed to parse options: {}", e))?
8594
};
8695
let fm = c.cm.new_source_file(FileName::Anon, s.into());
8796
let program =
8897
anyhow::Context::context(c.minify(fm, handler, &opts), "failed to minify file")?;
89-
anyhow::Context::context(JsValue::from_serde(&program), "failed to serialize json")
98+
99+
program
100+
.serialize(&COMPAT_SERIALIZER)
101+
.map_err(|e| anyhow::anyhow!("failed to serialize program: {}", e))
90102
})
91103
})
92104
.map_err(|e| convert_err(e, None))
@@ -106,7 +118,8 @@ pub fn parse_sync(s: JsString, opts: JsValue) -> Result<JsValue, JsValue> {
106118
let opts: ParseOptions = if opts.is_null() || opts.is_undefined() {
107119
Default::default()
108120
} else {
109-
anyhow::Context::context(opts.into_serde(), "failed to parse options")?
121+
serde_wasm_bindgen::from_value(opts)
122+
.map_err(|e| anyhow::anyhow!("failed to parse options: {}", e))?
110123
};
111124
let fm = c.cm.new_source_file(FileName::Anon, s.into());
112125
let cmts = c.comments().clone();
@@ -133,7 +146,9 @@ pub fn parse_sync(s: JsString, opts: JsValue) -> Result<JsValue, JsValue> {
133146
opts.syntax.typescript(),
134147
));
135148

136-
anyhow::Context::context(JsValue::from_serde(&program), "failed to serialize json")
149+
program
150+
.serialize(&COMPAT_SERIALIZER)
151+
.map_err(|e| anyhow::anyhow!("failed to serialize program: {}", e))
137152
})
138153
})
139154
})
@@ -160,9 +175,9 @@ pub fn transform_sync(
160175
let opts: Options = if opts.is_null() || opts.is_undefined() {
161176
Default::default()
162177
} else {
163-
anyhow::Context::context(opts.into_serde(), "failed to parse options")
164-
.map_err(|e| convert_err(e, None))?
178+
serde_wasm_bindgen::from_value(opts)?
165179
};
180+
166181
let error_format = opts.experimental.error_format.unwrap_or_default();
167182
try_with_handler(c.cm.clone(), Default::default(), |handler| {
168183
c.run(|| {
@@ -193,9 +208,13 @@ pub fn transform_sync(
193208
"failed to process js file",
194209
)?
195210
}
196-
Err(v) => unsafe { c.process_js(handler, v.into_serde().expect(""), &opts)? },
211+
Err(v) => {
212+
c.process_js(handler, serde_wasm_bindgen::from_value(v).expect("Should able to deserialize into program"), &opts)?
213+
}
197214
};
198-
anyhow::Context::context(JsValue::from_serde(&out), "failed to serialize json")
215+
216+
out.serialize(&COMPAT_SERIALIZER)
217+
.map_err(|e| anyhow::anyhow!("failed to serialize transform result: {}", e))
199218
})
200219
})
201220
.map_err(|e| convert_err(e, Some(error_format)))
@@ -218,10 +237,13 @@ pub fn print_sync(s: JsValue, opts: JsValue) -> Result<JsValue, JsValue> {
218237
let opts: Options = if opts.is_null() || opts.is_undefined() {
219238
Default::default()
220239
} else {
221-
anyhow::Context::context(opts.into_serde(), "failed to parse options")?
240+
serde_wasm_bindgen::from_value(opts)
241+
.map_err(|e| anyhow::anyhow!("failed to parse options: {}", e))?
222242
};
223-
let program: Program =
224-
anyhow::Context::context(s.into_serde(), "failed to deserialize program")?;
243+
244+
let program: Program = serde_wasm_bindgen::from_value(s)
245+
.map_err(|e| anyhow::anyhow!("failed to deserialize program: {}", e))?;
246+
225247
let s = anyhow::Context::context(
226248
c.print(
227249
&program,
@@ -241,7 +263,9 @@ pub fn print_sync(s: JsValue, opts: JsValue) -> Result<JsValue, JsValue> {
241263
),
242264
"failed to print code",
243265
)?;
244-
anyhow::Context::context(JsValue::from_serde(&s), "failed to serialize json")
266+
267+
serde_wasm_bindgen::to_value(&s)
268+
.map_err(|e| anyhow::anyhow!("failed to serialize json: {}", e))
245269
})
246270
})
247271
.map_err(|e| convert_err(e, None))

‎crates/binding_macros/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ anyhow = { optional = true, version = "1.0.58" }
4040
console_error_panic_hook = { optional = true, version = "0.1.7" }
4141
js-sys = { optional = true, version = "0.3.59" }
4242
once_cell = { optional = true, version = "1.13.0" }
43+
serde = { optional = true, version = "1", features = ["derive"] }
4344
wasm-bindgen = { optional = true, version = "0.2.82", features = [
44-
"serde-serialize",
4545
"enable-interning",
4646
] }
4747
wasm-bindgen-futures = { optional = true, version = "0.4.32" }
48+
serde-wasm-bindgen = { optional = true, version = "0.4.5" }

‎crates/binding_macros/src/wasm.rs

+31-15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ use anyhow::Error;
66
#[doc(hidden)]
77
pub use js_sys;
88
use once_cell::sync::Lazy;
9+
use serde::Serialize;
10+
use serde_wasm_bindgen::Serializer;
911
use swc::{config::ErrorFormat, Compiler};
1012
#[doc(hidden)]
1113
pub use swc::{
@@ -24,6 +26,12 @@ pub use wasm_bindgen::{JsCast, JsValue};
2426
#[doc(hidden)]
2527
pub use wasm_bindgen_futures::future_to_promise;
2628

29+
// A serializer with options to provide backward compat for the input / output
30+
// from the bindgen generated swc interfaces.
31+
const COMPAT_SERIALIZER: Serializer = Serializer::new()
32+
.serialize_maps_as_objects(true)
33+
.serialize_missing_as_null(true);
34+
2735
/// Get global sourcemap
2836
pub fn compiler() -> Arc<Compiler> {
2937
console_error_panic_hook::set_once();
@@ -66,13 +74,16 @@ macro_rules! build_minify_sync {
6674
let opts = if opts.is_null() || opts.is_undefined() {
6775
Default::default()
6876
} else {
69-
$crate::wasm::anyhow::Context::context(opts.into_serde(), "failed to parse options")?
77+
$crate::wasm::serde_wasm_bindgen::from_value(opts)
78+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to parse options: {}", e))?
7079
};
7180

7281
let fm = c.cm.new_source_file($crate::wasm::FileName::Anon, s.into());
7382
let program = $crate::wasm::anyhow::Context::context(c.minify(fm, handler, &opts), "failed to minify file")?;
7483

75-
$crate::wasm::anyhow::Context::context($crate::wasm::JsValue::from_serde(&program), "failed to serialize json")
84+
program
85+
.serialize(&COMPAT_SERIALIZER)
86+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to serialize program: {}", e))
7687
})
7788
},
7889
)
@@ -115,7 +126,8 @@ macro_rules! build_parse_sync {
115126
let opts: $crate::wasm::ParseOptions = if opts.is_null() || opts.is_undefined() {
116127
Default::default()
117128
} else {
118-
$crate::wasm::anyhow::Context::context(opts.into_serde(), "failed to parse options")?
129+
$crate::wasm::serde_wasm_bindgen::from_value(opts)
130+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to parse options: {}", e))?
119131
};
120132

121133
let fm = c.cm.new_source_file($crate::wasm::FileName::Anon, s.into());
@@ -140,7 +152,9 @@ macro_rules! build_parse_sync {
140152
"failed to parse code"
141153
)?;
142154

143-
$crate::wasm::anyhow::Context::context($crate::wasm::JsValue::from_serde(&program), "failed to serialize json")
155+
program
156+
.serialize(&COMPAT_SERIALIZER)
157+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to serialize program: {}", e))
144158
})
145159
},
146160
)
@@ -183,10 +197,12 @@ macro_rules! build_print_sync {
183197
let opts: $crate::wasm::Options = if opts.is_null() || opts.is_undefined() {
184198
Default::default()
185199
} else {
186-
$crate::wasm::anyhow::Context::context(opts.into_serde(), "failed to parse options")?
200+
$crate::wasm::serde_wasm_bindgen::from_value(opts)
201+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to parse options: {}", e))?
187202
};
188203

189-
let program: $crate::wasm::Program = $crate::wasm::anyhow::Context::context(s.into_serde(), "failed to deserialize program")?;
204+
let program: $crate::wasm::Program = $crate::wasm::serde_wasm_bindgen::from_value(s)
205+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to deserialize program: {}", e))?;
190206
let s = $crate::wasm::anyhow::Context::context(c
191207
.print(
192208
&program,
@@ -205,7 +221,9 @@ macro_rules! build_print_sync {
205221
false,
206222
),"failed to print code")?;
207223

208-
$crate::wasm::anyhow::Context::context(JsValue::from_serde(&s), "failed to serialize json")
224+
program
225+
.serialize(&COMPAT_SERIALIZER)
226+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to serialize program: {}", e))
209227
})
210228
},
211229
)
@@ -281,9 +299,7 @@ macro_rules! build_transform_sync {
281299
buffer
282300
};
283301

284-
let bytes: Vec<u8> = data
285-
.into_serde()
286-
.expect("Could not read byte from plugin resolver");
302+
let bytes: Vec<u8> = $crate::wasm::serde_wasm_bindgen::from_value(data).expect("Could not read byte from plugin resolver");
287303

288304
// In here we 'inject' externally loaded bytes into the cache, so
289305
// remaining plugin_runner execution path works as much as
@@ -296,8 +312,7 @@ macro_rules! build_transform_sync {
296312
let opts: $crate::wasm::Options = if opts.is_null() || opts.is_undefined() {
297313
Default::default()
298314
} else {
299-
$crate::wasm::anyhow::Context::context(opts.into_serde(), "failed to parse options")
300-
.map_err(|e| $crate::wasm::convert_err(e, None))?
315+
$crate::wasm::serde_wasm_bindgen::from_value(opts)?
301316
};
302317

303318
let error_format = opts.experimental.error_format.unwrap_or_default();
@@ -333,11 +348,12 @@ macro_rules! build_transform_sync {
333348
), "failed to process js file"
334349
)?
335350
}
336-
Err(v) => unsafe { c.process_js(handler, v.into_serde().expect(""), &opts)? },
351+
Err(v) => unsafe { c.process_js(handler, $crate::wasm::serde_wasm_bindgen::from_value(v).expect(""), &opts)? },
337352
};
338353

339-
$crate::wasm::anyhow::Context::context($crate::wasm::JsValue::from_serde(&out),
340-
"failed to serialize json")
354+
out
355+
.serialize(&COMPAT_SERIALIZER)
356+
.map_err(|e| $crate::wasm::anyhow::anyhow!("failed to serialize transform result: {}", e))
341357
})
342358
},
343359
)

1 commit comments

Comments
 (1)

github-actions[bot] commented on Nov 15, 2022

@github-actions[bot]

Benchmark

Benchmark suite Current: 1dd8b3d Previous: 81a4bb3 Ratio
es/full/bugs-1 359764 ns/iter (± 35638) 347052 ns/iter (± 20512) 1.04
es/full/minify/libraries/antd 1859260645 ns/iter (± 50064656) 1923725849 ns/iter (± 40306160) 0.97
es/full/minify/libraries/d3 407449725 ns/iter (± 22362328) 439671932 ns/iter (± 31729477) 0.93
es/full/minify/libraries/echarts 1612858764 ns/iter (± 52492529) 1643646581 ns/iter (± 58778615) 0.98
es/full/minify/libraries/jquery 100909663 ns/iter (± 11908356) 114105698 ns/iter (± 7923322) 0.88
es/full/minify/libraries/lodash 134324510 ns/iter (± 10291658) 133984446 ns/iter (± 21300946) 1.00
es/full/minify/libraries/moment 67175152 ns/iter (± 8010933) 60560367 ns/iter (± 3894269) 1.11
es/full/minify/libraries/react 21767308 ns/iter (± 633949) 20593417 ns/iter (± 2786835) 1.06
es/full/minify/libraries/terser 318945153 ns/iter (± 12126350) 345732662 ns/iter (± 19628473) 0.92
es/full/minify/libraries/three 575525366 ns/iter (± 33154379) 582607608 ns/iter (± 29822859) 0.99
es/full/minify/libraries/typescript 3525404089 ns/iter (± 93756360) 3587011200 ns/iter (± 259198665) 0.98
es/full/minify/libraries/victory 854009311 ns/iter (± 18508124) 945429374 ns/iter (± 75184631) 0.90
es/full/minify/libraries/vue 186769157 ns/iter (± 10795873) 179476890 ns/iter (± 14293493) 1.04
es/full/codegen/es3 35987 ns/iter (± 2947) 35156 ns/iter (± 3929) 1.02
es/full/codegen/es5 35271 ns/iter (± 2919) 34958 ns/iter (± 2512) 1.01
es/full/codegen/es2015 35398 ns/iter (± 2191) 34488 ns/iter (± 1564) 1.03
es/full/codegen/es2016 35354 ns/iter (± 3173) 34127 ns/iter (± 1825) 1.04
es/full/codegen/es2017 35284 ns/iter (± 2622) 34442 ns/iter (± 3106) 1.02
es/full/codegen/es2018 35578 ns/iter (± 4212) 34504 ns/iter (± 4328) 1.03
es/full/codegen/es2019 35800 ns/iter (± 3202) 34753 ns/iter (± 3736) 1.03
es/full/codegen/es2020 35466 ns/iter (± 3811) 34691 ns/iter (± 5722) 1.02
es/full/all/es3 217580563 ns/iter (± 21596484) 232540296 ns/iter (± 30431077) 0.94
es/full/all/es5 185495295 ns/iter (± 15440090) 216932331 ns/iter (± 44851067) 0.86
es/full/all/es2015 162503849 ns/iter (± 17551828) 168650590 ns/iter (± 28210961) 0.96
es/full/all/es2016 155546701 ns/iter (± 21213081) 184085282 ns/iter (± 33544797) 0.84
es/full/all/es2017 165784208 ns/iter (± 18397331) 176378828 ns/iter (± 32859530) 0.94
es/full/all/es2018 160782944 ns/iter (± 18813240) 170432604 ns/iter (± 15447414) 0.94
es/full/all/es2019 149664700 ns/iter (± 11898224) 173107005 ns/iter (± 26194868) 0.86
es/full/all/es2020 147589823 ns/iter (± 12281102) 176772997 ns/iter (± 24962885) 0.83
es/full/parser 752944 ns/iter (± 74353) 793736 ns/iter (± 112062) 0.95
es/full/base/fixer 27952 ns/iter (± 3623) 30184 ns/iter (± 5813) 0.93
es/full/base/resolver_and_hygiene 95506 ns/iter (± 8627) 95874 ns/iter (± 19630) 1.00
serialization of ast node 215 ns/iter (± 3) 221 ns/iter (± 20) 0.97
serialization of serde 228 ns/iter (± 24) 235 ns/iter (± 28) 0.97

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.