| use crate::ast; |
| use crate::encode; |
| use crate::encode::EncodeChunk; |
| use crate::Diagnostic; |
| use once_cell::sync::Lazy; |
| use proc_macro2::{Ident, Span, TokenStream}; |
| use quote::format_ident; |
| use quote::quote_spanned; |
| use quote::{quote, ToTokens}; |
| use std::collections::{HashMap, HashSet}; |
| use std::sync::Mutex; |
| use syn::parse_quote; |
| use syn::spanned::Spanned; |
| use wasm_bindgen_shared as shared; |
| |
| /// A trait for converting AST structs into Tokens and adding them to a TokenStream, |
| /// or providing a diagnostic if conversion fails. |
| pub trait TryToTokens { |
| /// Attempt to convert a `Self` into tokens and add it to the `TokenStream` |
| fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic>; |
| |
| /// Attempt to convert a `Self` into a new `TokenStream` |
| fn try_to_token_stream(&self) -> Result<TokenStream, Diagnostic> { |
| let mut tokens = TokenStream::new(); |
| self.try_to_tokens(&mut tokens)?; |
| Ok(tokens) |
| } |
| } |
| |
| impl TryToTokens for ast::Program { |
| // Generate wrappers for all the items that we've found |
| fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic> { |
| let mut errors = Vec::new(); |
| for export in self.exports.iter() { |
| if let Err(e) = export.try_to_tokens(tokens) { |
| errors.push(e); |
| } |
| } |
| for s in self.structs.iter() { |
| s.to_tokens(tokens); |
| } |
| let mut types = HashMap::new(); |
| for i in self.imports.iter() { |
| if let ast::ImportKind::Type(t) = &i.kind { |
| types.insert(t.rust_name.to_string(), t.rust_name.clone()); |
| } |
| } |
| for i in self.imports.iter() { |
| DescribeImport { |
| kind: &i.kind, |
| wasm_bindgen: &self.wasm_bindgen, |
| } |
| .to_tokens(tokens); |
| |
| // If there is a js namespace, check that name isn't a type. If it is, |
| // this import might be a method on that type. |
| if let Some(nss) = &i.js_namespace { |
| // When the namespace is `A.B`, the type name should be `B`. |
| if let Some(ns) = nss.last().and_then(|t| types.get(t)) { |
| if i.kind.fits_on_impl() { |
| let kind = match i.kind.try_to_token_stream() { |
| Ok(kind) => kind, |
| Err(e) => { |
| errors.push(e); |
| continue; |
| } |
| }; |
| (quote! { |
| #[automatically_derived] |
| impl #ns { #kind } |
| }) |
| .to_tokens(tokens); |
| continue; |
| } |
| } |
| } |
| |
| if let Err(e) = i.kind.try_to_tokens(tokens) { |
| errors.push(e); |
| } |
| } |
| for e in self.enums.iter() { |
| e.to_tokens(tokens); |
| } |
| |
| Diagnostic::from_vec(errors)?; |
| |
| // Generate a static which will eventually be what lives in a custom section |
| // of the wasm executable. For now it's just a plain old static, but we'll |
| // eventually have it actually in its own section. |
| |
| // See comments in `crates/cli-support/src/lib.rs` about what this |
| // `schema_version` is. |
| let prefix_json = format!( |
| r#"{{"schema_version":"{}","version":"{}"}}"#, |
| shared::SCHEMA_VERSION, |
| shared::version() |
| ); |
| |
| let wasm_bindgen = &self.wasm_bindgen; |
| |
| let encoded = encode::encode(self)?; |
| |
| let encoded_chunks: Vec<_> = encoded |
| .custom_section |
| .iter() |
| .map(|chunk| match chunk { |
| EncodeChunk::EncodedBuf(buf) => { |
| let buf = syn::LitByteStr::new(buf.as_slice(), Span::call_site()); |
| quote!(#buf) |
| } |
| EncodeChunk::StrExpr(expr) => { |
| // encode expr as str |
| quote!({ |
| use #wasm_bindgen::__rt::{encode_u32_to_fixed_len_bytes}; |
| const _STR_EXPR: &str = #expr; |
| const _STR_EXPR_BYTES: &[u8] = _STR_EXPR.as_bytes(); |
| const _STR_EXPR_BYTES_LEN: usize = _STR_EXPR_BYTES.len() + 5; |
| const _ENCODED_BYTES: [u8; _STR_EXPR_BYTES_LEN] = flat_byte_slices([ |
| &encode_u32_to_fixed_len_bytes(_STR_EXPR_BYTES.len() as u32), |
| _STR_EXPR_BYTES, |
| ]); |
| &_ENCODED_BYTES |
| }) |
| } |
| }) |
| .collect(); |
| |
| let chunk_len = encoded_chunks.len(); |
| |
| // concatenate all encoded chunks and write the length in front of the chunk; |
| let encode_bytes = quote!({ |
| const _CHUNK_SLICES: [&[u8]; #chunk_len] = [ |
| #(#encoded_chunks,)* |
| ]; |
| const _CHUNK_LEN: usize = flat_len(_CHUNK_SLICES); |
| const _CHUNKS: [u8; _CHUNK_LEN] = flat_byte_slices(_CHUNK_SLICES); |
| |
| const _LEN_BYTES: [u8; 4] = (_CHUNK_LEN as u32).to_le_bytes(); |
| const _ENCODED_BYTES_LEN: usize = _CHUNK_LEN + 4; |
| const _ENCODED_BYTES: [u8; _ENCODED_BYTES_LEN] = flat_byte_slices([&_LEN_BYTES, &_CHUNKS]); |
| &_ENCODED_BYTES |
| }); |
| |
| // We already consumed the contents of included files when generating |
| // the custom section, but we want to make sure that updates to the |
| // generated files will cause this macro to rerun incrementally. To do |
| // that we use `include_str!` to force rustc to think it has a |
| // dependency on these files. That way when the file changes Cargo will |
| // automatically rerun rustc which will rerun this macro. Other than |
| // this we don't actually need the results of the `include_str!`, so |
| // it's just shoved into an anonymous static. |
| let file_dependencies = encoded.included_files.iter().map(|file| { |
| let file = file.to_str().unwrap(); |
| quote! { include_str!(#file) } |
| }); |
| |
| let len = prefix_json.len() as u32; |
| let prefix_json_bytes = [&len.to_le_bytes()[..], prefix_json.as_bytes()].concat(); |
| let prefix_json_bytes = syn::LitByteStr::new(&prefix_json_bytes, Span::call_site()); |
| |
| (quote! { |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| #[automatically_derived] |
| const _: () = { |
| use #wasm_bindgen::__rt::{flat_len, flat_byte_slices}; |
| |
| static _INCLUDED_FILES: &[&str] = &[#(#file_dependencies),*]; |
| |
| const _ENCODED_BYTES: &[u8] = #encode_bytes; |
| const _PREFIX_JSON_BYTES: &[u8] = #prefix_json_bytes; |
| const _ENCODED_BYTES_LEN: usize = _ENCODED_BYTES.len(); |
| const _PREFIX_JSON_BYTES_LEN: usize = _PREFIX_JSON_BYTES.len(); |
| const _LEN: usize = _PREFIX_JSON_BYTES_LEN + _ENCODED_BYTES_LEN; |
| |
| #[link_section = "__wasm_bindgen_unstable"] |
| static _GENERATED: [u8; _LEN] = flat_byte_slices([_PREFIX_JSON_BYTES, _ENCODED_BYTES]); |
| }; |
| }) |
| .to_tokens(tokens); |
| |
| Ok(()) |
| } |
| } |
| |
| impl TryToTokens for ast::LinkToModule { |
| fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic> { |
| let mut program = TokenStream::new(); |
| self.0.try_to_tokens(&mut program)?; |
| let link_function_name = self.0.link_function_name(0); |
| let name = Ident::new(&link_function_name, Span::call_site()); |
| let wasm_bindgen = &self.0.wasm_bindgen; |
| let abi_ret = quote! { #wasm_bindgen::convert::WasmRet<<#wasm_bindgen::__rt::alloc::string::String as #wasm_bindgen::convert::FromWasmAbi>::Abi> }; |
| let extern_fn = extern_fn(&name, &[], &[], &[], abi_ret); |
| (quote! { |
| { |
| #program |
| #extern_fn |
| |
| static __VAL: #wasm_bindgen::__rt::Lazy<String> = #wasm_bindgen::__rt::Lazy::new(|| unsafe { |
| <#wasm_bindgen::__rt::alloc::string::String as #wasm_bindgen::convert::FromWasmAbi>::from_abi(#name().join()) |
| }); |
| |
| #wasm_bindgen::__rt::alloc::string::String::clone(&__VAL) |
| } |
| }) |
| .to_tokens(tokens); |
| Ok(()) |
| } |
| } |
| |
| impl ToTokens for ast::Struct { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| let name = &self.rust_name; |
| let name_str = self.js_name.to_string(); |
| let name_len = name_str.len() as u32; |
| let name_chars: Vec<u32> = name_str.chars().map(|c| c as u32).collect(); |
| let new_fn = Ident::new(&shared::new_function(&name_str), Span::call_site()); |
| let free_fn = Ident::new(&shared::free_function(&name_str), Span::call_site()); |
| let unwrap_fn = Ident::new(&shared::unwrap_function(&name_str), Span::call_site()); |
| let wasm_bindgen = &self.wasm_bindgen; |
| (quote! { |
| #[automatically_derived] |
| impl #wasm_bindgen::describe::WasmDescribe for #name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe() { |
| use #wasm_bindgen::__wbindgen_if_not_std; |
| use #wasm_bindgen::describe::*; |
| inform(RUST_STRUCT); |
| inform(#name_len); |
| #(inform(#name_chars);)* |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::IntoWasmAbi for #name { |
| type Abi = u32; |
| |
| fn into_abi(self) -> u32 { |
| use #wasm_bindgen::__rt::alloc::rc::Rc; |
| use #wasm_bindgen::__rt::WasmRefCell; |
| Rc::into_raw(Rc::new(WasmRefCell::new(self))) as u32 |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::FromWasmAbi for #name { |
| type Abi = u32; |
| |
| unsafe fn from_abi(js: u32) -> Self { |
| use #wasm_bindgen::__rt::alloc::rc::Rc; |
| use #wasm_bindgen::__rt::core::result::Result::{Ok, Err}; |
| use #wasm_bindgen::__rt::{assert_not_null, WasmRefCell}; |
| |
| let ptr = js as *mut WasmRefCell<#name>; |
| assert_not_null(ptr); |
| let rc = Rc::from_raw(ptr); |
| match Rc::try_unwrap(rc) { |
| Ok(cell) => cell.into_inner(), |
| Err(_) => #wasm_bindgen::throw_str( |
| "attempted to take ownership of Rust value while it was borrowed" |
| ), |
| } |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::__rt::core::convert::From<#name> for |
| #wasm_bindgen::JsValue |
| { |
| fn from(value: #name) -> Self { |
| let ptr = #wasm_bindgen::convert::IntoWasmAbi::into_abi(value); |
| |
| #[link(wasm_import_module = "__wbindgen_placeholder__")] |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| extern "C" { |
| fn #new_fn(ptr: u32) -> u32; |
| } |
| |
| #[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))] |
| unsafe fn #new_fn(_: u32) -> u32 { |
| panic!("cannot convert to JsValue outside of the wasm target") |
| } |
| |
| unsafe { |
| <#wasm_bindgen::JsValue as #wasm_bindgen::convert::FromWasmAbi> |
| ::from_abi(#new_fn(ptr)) |
| } |
| } |
| } |
| |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| #[automatically_derived] |
| const _: () = { |
| #[no_mangle] |
| #[doc(hidden)] |
| // `allow_delayed` is whether it's ok to not actually free the `ptr` immediately |
| // if it's still borrowed. |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| pub unsafe extern "C" fn #free_fn(ptr: u32, allow_delayed: u32) { |
| use #wasm_bindgen::__rt::alloc::rc::Rc; |
| |
| if allow_delayed != 0 { |
| // Just drop the implicit `Rc` owned by JS, and then if the value is still |
| // referenced it'll be kept alive by its other `Rc`s. |
| let ptr = ptr as *mut #wasm_bindgen::__rt::WasmRefCell<#name>; |
| #wasm_bindgen::__rt::assert_not_null(ptr); |
| drop(Rc::from_raw(ptr)); |
| } else { |
| // Claim ownership of the value, which will panic if it's borrowed. |
| let _ = <#name as #wasm_bindgen::convert::FromWasmAbi>::from_abi(ptr); |
| } |
| } |
| }; |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::RefFromWasmAbi for #name { |
| type Abi = u32; |
| type Anchor = #wasm_bindgen::__rt::RcRef<#name>; |
| |
| unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor { |
| use #wasm_bindgen::__rt::alloc::rc::Rc; |
| |
| let js = js as *mut #wasm_bindgen::__rt::WasmRefCell<#name>; |
| #wasm_bindgen::__rt::assert_not_null(js); |
| |
| Rc::increment_strong_count(js); |
| let rc = Rc::from_raw(js); |
| #wasm_bindgen::__rt::RcRef::new(rc) |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::RefMutFromWasmAbi for #name { |
| type Abi = u32; |
| type Anchor = #wasm_bindgen::__rt::RcRefMut<#name>; |
| |
| unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor { |
| use #wasm_bindgen::__rt::alloc::rc::Rc; |
| |
| let js = js as *mut #wasm_bindgen::__rt::WasmRefCell<#name>; |
| #wasm_bindgen::__rt::assert_not_null(js); |
| |
| Rc::increment_strong_count(js); |
| let rc = Rc::from_raw(js); |
| #wasm_bindgen::__rt::RcRefMut::new(rc) |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::LongRefFromWasmAbi for #name { |
| type Abi = u32; |
| type Anchor = #wasm_bindgen::__rt::RcRef<#name>; |
| |
| unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor { |
| <Self as #wasm_bindgen::convert::RefFromWasmAbi>::ref_from_abi(js) |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionIntoWasmAbi for #name { |
| #[inline] |
| fn none() -> Self::Abi { 0 } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionFromWasmAbi for #name { |
| #[inline] |
| fn is_none(abi: &Self::Abi) -> bool { *abi == 0 } |
| } |
| |
| #[allow(clippy::all)] |
| impl #wasm_bindgen::convert::TryFromJsValue for #name { |
| type Error = #wasm_bindgen::JsValue; |
| |
| fn try_from_js_value(value: #wasm_bindgen::JsValue) |
| -> #wasm_bindgen::__rt::core::result::Result<Self, Self::Error> { |
| let idx = #wasm_bindgen::convert::IntoWasmAbi::into_abi(&value); |
| |
| #[link(wasm_import_module = "__wbindgen_placeholder__")] |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| extern "C" { |
| fn #unwrap_fn(ptr: u32) -> u32; |
| } |
| |
| #[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))] |
| unsafe fn #unwrap_fn(_: u32) -> u32 { |
| panic!("cannot convert from JsValue outside of the wasm target") |
| } |
| |
| let ptr = unsafe { #unwrap_fn(idx) }; |
| if ptr == 0 { |
| #wasm_bindgen::__rt::core::result::Result::Err(value) |
| } else { |
| // Don't run `JsValue`'s destructor, `unwrap_fn` already did that for us. |
| #[allow(clippy::mem_forget)] |
| #wasm_bindgen::__rt::core::mem::forget(value); |
| unsafe { |
| #wasm_bindgen::__rt::core::result::Result::Ok( |
| <Self as #wasm_bindgen::convert::FromWasmAbi>::from_abi(ptr) |
| ) |
| } |
| } |
| } |
| } |
| |
| impl #wasm_bindgen::describe::WasmDescribeVector for #name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe_vector() { |
| use #wasm_bindgen::describe::*; |
| inform(VECTOR); |
| inform(NAMED_EXTERNREF); |
| inform(#name_len); |
| #(inform(#name_chars);)* |
| } |
| } |
| |
| impl #wasm_bindgen::convert::VectorIntoWasmAbi for #name { |
| type Abi = < |
| #wasm_bindgen::__rt::alloc::boxed::Box<[#wasm_bindgen::JsValue]> |
| as #wasm_bindgen::convert::IntoWasmAbi |
| >::Abi; |
| |
| fn vector_into_abi( |
| vector: #wasm_bindgen::__rt::alloc::boxed::Box<[#name]> |
| ) -> Self::Abi { |
| #wasm_bindgen::convert::js_value_vector_into_abi(vector) |
| } |
| } |
| |
| impl #wasm_bindgen::convert::VectorFromWasmAbi for #name { |
| type Abi = < |
| #wasm_bindgen::__rt::alloc::boxed::Box<[#wasm_bindgen::JsValue]> |
| as #wasm_bindgen::convert::FromWasmAbi |
| >::Abi; |
| |
| unsafe fn vector_from_abi( |
| js: Self::Abi |
| ) -> #wasm_bindgen::__rt::alloc::boxed::Box<[#name]> { |
| #wasm_bindgen::convert::js_value_vector_from_abi(js) |
| } |
| } |
| |
| impl #wasm_bindgen::__rt::VectorIntoJsValue for #name { |
| fn vector_into_jsvalue(vector: #wasm_bindgen::__rt::alloc::boxed::Box<[#name]>) -> #wasm_bindgen::JsValue { |
| #wasm_bindgen::__rt::js_value_vector_into_jsvalue(vector) |
| } |
| } |
| }) |
| .to_tokens(tokens); |
| |
| for field in self.fields.iter() { |
| field.to_tokens(tokens); |
| } |
| } |
| } |
| |
| impl ToTokens for ast::StructField { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| let rust_name = &self.rust_name; |
| let struct_name = &self.struct_name; |
| let ty = &self.ty; |
| let getter = &self.getter; |
| let setter = &self.setter; |
| |
| let maybe_assert_copy = if self.getter_with_clone.is_some() { |
| quote! {} |
| } else { |
| quote! { assert_copy::<#ty>() } |
| }; |
| let maybe_assert_copy = respan(maybe_assert_copy, ty); |
| |
| // Split this out so that it isn't affected by `quote_spanned!`. |
| // |
| // If we don't do this, it might end up being unable to reference `js` |
| // properly because it doesn't have the same span. |
| // |
| // See https://github.com/rustwasm/wasm-bindgen/pull/3725. |
| let js_token = quote! { js }; |
| let mut val = quote_spanned!(self.rust_name.span()=> (*#js_token).borrow().#rust_name); |
| if let Some(span) = self.getter_with_clone { |
| val = quote_spanned!(span=> <#ty as Clone>::clone(&#val) ); |
| } |
| |
| let wasm_bindgen = &self.wasm_bindgen; |
| |
| (quote! { |
| #[automatically_derived] |
| const _: () = { |
| #[cfg_attr(all(target_arch = "wasm32", target_os = "unknown"), no_mangle)] |
| #[doc(hidden)] |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| pub unsafe extern "C" fn #getter(js: u32) |
| -> #wasm_bindgen::convert::WasmRet<<#ty as #wasm_bindgen::convert::IntoWasmAbi>::Abi> |
| { |
| use #wasm_bindgen::__rt::{WasmRefCell, assert_not_null}; |
| use #wasm_bindgen::convert::IntoWasmAbi; |
| |
| fn assert_copy<T: Copy>(){} |
| #maybe_assert_copy; |
| |
| let js = js as *mut WasmRefCell<#struct_name>; |
| assert_not_null(js); |
| let val = #val; |
| <#ty as IntoWasmAbi>::into_abi(val).into() |
| } |
| }; |
| }) |
| .to_tokens(tokens); |
| |
| Descriptor { |
| ident: getter, |
| inner: quote! { |
| <#ty as WasmDescribe>::describe(); |
| }, |
| attrs: vec![], |
| wasm_bindgen: &self.wasm_bindgen, |
| } |
| .to_tokens(tokens); |
| |
| if self.readonly { |
| return; |
| } |
| |
| let abi = quote! { <#ty as #wasm_bindgen::convert::FromWasmAbi>::Abi }; |
| let (args, names) = splat(wasm_bindgen, &Ident::new("val", rust_name.span()), &abi); |
| |
| (quote! { |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| #[automatically_derived] |
| const _: () = { |
| #[no_mangle] |
| #[doc(hidden)] |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| pub unsafe extern "C" fn #setter( |
| js: u32, |
| #(#args,)* |
| ) { |
| use #wasm_bindgen::__rt::{WasmRefCell, assert_not_null}; |
| use #wasm_bindgen::convert::FromWasmAbi; |
| |
| let js = js as *mut WasmRefCell<#struct_name>; |
| assert_not_null(js); |
| let val = <#abi as #wasm_bindgen::convert::WasmAbi>::join(#(#names),*); |
| let val = <#ty as FromWasmAbi>::from_abi(val); |
| (*js).borrow_mut().#rust_name = val; |
| } |
| }; |
| }) |
| .to_tokens(tokens); |
| } |
| } |
| |
| impl TryToTokens for ast::Export { |
| fn try_to_tokens(self: &ast::Export, into: &mut TokenStream) -> Result<(), Diagnostic> { |
| let generated_name = self.rust_symbol(); |
| let export_name = self.export_name(); |
| let mut args = vec![]; |
| let mut arg_conversions = vec![]; |
| let mut converted_arguments = vec![]; |
| let ret = Ident::new("_ret", Span::call_site()); |
| |
| let offset = if self.method_self.is_some() { |
| args.push(quote! { me: u32 }); |
| 1 |
| } else { |
| 0 |
| }; |
| |
| let name = &self.rust_name; |
| let wasm_bindgen = &self.wasm_bindgen; |
| let wasm_bindgen_futures = &self.wasm_bindgen_futures; |
| let receiver = match self.method_self { |
| Some(ast::MethodSelf::ByValue) => { |
| let class = self.rust_class.as_ref().unwrap(); |
| arg_conversions.push(quote! { |
| let me = unsafe { |
| <#class as #wasm_bindgen::convert::FromWasmAbi>::from_abi(me) |
| }; |
| }); |
| quote! { me.#name } |
| } |
| Some(ast::MethodSelf::RefMutable) => { |
| let class = self.rust_class.as_ref().unwrap(); |
| arg_conversions.push(quote! { |
| let mut me = unsafe { |
| <#class as #wasm_bindgen::convert::RefMutFromWasmAbi> |
| ::ref_mut_from_abi(me) |
| }; |
| let me = &mut *me; |
| }); |
| quote! { me.#name } |
| } |
| Some(ast::MethodSelf::RefShared) => { |
| let class = self.rust_class.as_ref().unwrap(); |
| let (trait_, func, borrow) = if self.function.r#async { |
| ( |
| quote!(LongRefFromWasmAbi), |
| quote!(long_ref_from_abi), |
| quote!( |
| <<#class as #wasm_bindgen::convert::LongRefFromWasmAbi> |
| ::Anchor as #wasm_bindgen::__rt::core::borrow::Borrow<#class>> |
| ::borrow(&me) |
| ), |
| ) |
| } else { |
| (quote!(RefFromWasmAbi), quote!(ref_from_abi), quote!(&*me)) |
| }; |
| arg_conversions.push(quote! { |
| let me = unsafe { |
| <#class as #wasm_bindgen::convert::#trait_>::#func(me) |
| }; |
| let me = #borrow; |
| }); |
| quote! { me.#name } |
| } |
| None => match &self.rust_class { |
| Some(class) => quote! { #class::#name }, |
| None => quote! { #name }, |
| }, |
| }; |
| |
| let mut argtys = Vec::new(); |
| for (i, arg) in self.function.arguments.iter().enumerate() { |
| argtys.push(&*arg.ty); |
| let i = i + offset; |
| let ident = Ident::new(&format!("arg{}", i), Span::call_site()); |
| fn unwrap_nested_types(ty: &syn::Type) -> &syn::Type { |
| match &ty { |
| syn::Type::Group(syn::TypeGroup { ref elem, .. }) => unwrap_nested_types(elem), |
| syn::Type::Paren(syn::TypeParen { ref elem, .. }) => unwrap_nested_types(elem), |
| _ => ty, |
| } |
| } |
| let ty = unwrap_nested_types(&arg.ty); |
| |
| match &ty { |
| syn::Type::Reference(syn::TypeReference { |
| mutability: Some(_), |
| elem, |
| .. |
| }) => { |
| let abi = quote! { <#elem as #wasm_bindgen::convert::RefMutFromWasmAbi>::Abi }; |
| let (prim_args, prim_names) = splat(wasm_bindgen, &ident, &abi); |
| args.extend(prim_args); |
| arg_conversions.push(quote! { |
| let mut #ident = unsafe { |
| <#elem as #wasm_bindgen::convert::RefMutFromWasmAbi> |
| ::ref_mut_from_abi( |
| <#abi as #wasm_bindgen::convert::WasmAbi>::join(#(#prim_names),*) |
| ) |
| }; |
| let #ident = &mut *#ident; |
| }); |
| } |
| syn::Type::Reference(syn::TypeReference { elem, .. }) => { |
| if self.function.r#async { |
| let abi = |
| quote! { <#elem as #wasm_bindgen::convert::LongRefFromWasmAbi>::Abi }; |
| let (prim_args, prim_names) = splat(wasm_bindgen, &ident, &abi); |
| args.extend(prim_args); |
| arg_conversions.push(quote! { |
| let #ident = unsafe { |
| <#elem as #wasm_bindgen::convert::LongRefFromWasmAbi> |
| ::long_ref_from_abi( |
| <#abi as #wasm_bindgen::convert::WasmAbi>::join(#(#prim_names),*) |
| ) |
| }; |
| let #ident = <<#elem as #wasm_bindgen::convert::LongRefFromWasmAbi> |
| ::Anchor as core::borrow::Borrow<#elem>> |
| ::borrow(&#ident); |
| }); |
| } else { |
| let abi = quote! { <#elem as #wasm_bindgen::convert::RefFromWasmAbi>::Abi }; |
| let (prim_args, prim_names) = splat(wasm_bindgen, &ident, &abi); |
| args.extend(prim_args); |
| arg_conversions.push(quote! { |
| let #ident = unsafe { |
| <#elem as #wasm_bindgen::convert::RefFromWasmAbi> |
| ::ref_from_abi( |
| <#abi as #wasm_bindgen::convert::WasmAbi>::join(#(#prim_names),*) |
| ) |
| }; |
| let #ident = &*#ident; |
| }); |
| } |
| } |
| _ => { |
| let abi = quote! { <#ty as #wasm_bindgen::convert::FromWasmAbi>::Abi }; |
| let (prim_args, prim_names) = splat(wasm_bindgen, &ident, &abi); |
| args.extend(prim_args); |
| arg_conversions.push(quote! { |
| let #ident = unsafe { |
| <#ty as #wasm_bindgen::convert::FromWasmAbi> |
| ::from_abi( |
| <#abi as #wasm_bindgen::convert::WasmAbi>::join(#(#prim_names),*) |
| ) |
| }; |
| }); |
| } |
| } |
| converted_arguments.push(quote! { #ident }); |
| } |
| let syn_unit = syn::Type::Tuple(syn::TypeTuple { |
| elems: Default::default(), |
| paren_token: Default::default(), |
| }); |
| let syn_ret = self.function.ret.as_ref().unwrap_or(&syn_unit); |
| if let syn::Type::Reference(_) = syn_ret { |
| bail_span!(syn_ret, "cannot return a borrowed ref with #[wasm_bindgen]",) |
| } |
| |
| // For an `async` function we always run it through `future_to_promise` |
| // since we're returning a promise to JS, and this will implicitly |
| // require that the function returns a `Future<Output = Result<...>>` |
| let (ret_ty, inner_ret_ty, ret_expr) = if self.function.r#async { |
| if self.start { |
| ( |
| quote! { () }, |
| quote! { () }, |
| quote! { |
| <#syn_ret as #wasm_bindgen::__rt::Start>::start(#ret.await) |
| }, |
| ) |
| } else { |
| ( |
| quote! { #wasm_bindgen::JsValue }, |
| quote! { #syn_ret }, |
| quote! { |
| <#syn_ret as #wasm_bindgen::__rt::IntoJsResult>::into_js_result(#ret.await) |
| }, |
| ) |
| } |
| } else if self.start { |
| ( |
| quote! { () }, |
| quote! { () }, |
| quote! { <#syn_ret as #wasm_bindgen::__rt::Start>::start(#ret) }, |
| ) |
| } else { |
| (quote! { #syn_ret }, quote! { #syn_ret }, quote! { #ret }) |
| }; |
| |
| let mut call = quote! { |
| { |
| #(#arg_conversions)* |
| let #ret = #receiver(#(#converted_arguments),*); |
| #ret_expr |
| } |
| }; |
| |
| if self.function.r#async { |
| if self.start { |
| call = quote! { |
| #wasm_bindgen_futures::spawn_local(async move { |
| #call |
| }) |
| } |
| } else { |
| call = quote! { |
| #wasm_bindgen_futures::future_to_promise(async move { |
| #call |
| }).into() |
| } |
| } |
| } |
| |
| let projection = quote! { <#ret_ty as #wasm_bindgen::convert::ReturnWasmAbi> }; |
| let convert_ret = quote! { #projection::return_abi(#ret).into() }; |
| let describe_ret = quote! { |
| <#ret_ty as WasmDescribe>::describe(); |
| <#inner_ret_ty as WasmDescribe>::describe(); |
| }; |
| let nargs = self.function.arguments.len() as u32; |
| let attrs = &self.function.rust_attrs; |
| |
| let start_check = if self.start { |
| quote! { const _ASSERT: fn() = || -> #projection::Abi { loop {} }; } |
| } else { |
| quote! {} |
| }; |
| |
| (quote! { |
| #[automatically_derived] |
| const _: () = { |
| #(#attrs)* |
| #[cfg_attr( |
| all(target_arch = "wasm32", target_os = "unknown"), |
| export_name = #export_name, |
| )] |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| pub unsafe extern "C" fn #generated_name(#(#args),*) -> #wasm_bindgen::convert::WasmRet<#projection::Abi> { |
| #start_check |
| |
| let #ret = #call; |
| #convert_ret |
| } |
| }; |
| }) |
| .to_tokens(into); |
| |
| let describe_args: TokenStream = argtys |
| .iter() |
| .map(|ty| match ty { |
| syn::Type::Reference(reference) |
| if self.function.r#async && reference.mutability.is_none() => |
| { |
| let inner = &reference.elem; |
| quote! { |
| inform(LONGREF); |
| <#inner as WasmDescribe>::describe(); |
| } |
| } |
| _ => quote! { <#ty as WasmDescribe>::describe(); }, |
| }) |
| .collect(); |
| |
| // In addition to generating the shim function above which is what |
| // our generated JS will invoke, we *also* generate a "descriptor" |
| // shim. This descriptor shim uses the `WasmDescribe` trait to |
| // programmatically describe the type signature of the generated |
| // shim above. This in turn is then used to inform the |
| // `wasm-bindgen` CLI tool exactly what types and such it should be |
| // using in JS. |
| // |
| // Note that this descriptor function is a purely an internal detail |
| // of `#[wasm_bindgen]` and isn't intended to be exported to anyone |
| // or actually part of the final was binary. Additionally, this is |
| // literally executed when the `wasm-bindgen` tool executes. |
| // |
| // In any case, there's complications in `wasm-bindgen` to handle |
| // this, but the tl;dr; is that this is stripped from the final wasm |
| // binary along with anything it references. |
| let export = Ident::new(&export_name, Span::call_site()); |
| Descriptor { |
| ident: &export, |
| inner: quote! { |
| inform(FUNCTION); |
| inform(0); |
| inform(#nargs); |
| #describe_args |
| #describe_ret |
| }, |
| attrs: attrs.clone(), |
| wasm_bindgen: &self.wasm_bindgen, |
| } |
| .to_tokens(into); |
| |
| Ok(()) |
| } |
| } |
| |
| impl TryToTokens for ast::ImportKind { |
| fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic> { |
| match *self { |
| ast::ImportKind::Function(ref f) => f.try_to_tokens(tokens)?, |
| ast::ImportKind::Static(ref s) => s.to_tokens(tokens), |
| ast::ImportKind::String(ref s) => s.to_tokens(tokens), |
| ast::ImportKind::Type(ref t) => t.to_tokens(tokens), |
| ast::ImportKind::Enum(ref e) => e.to_tokens(tokens), |
| } |
| |
| Ok(()) |
| } |
| } |
| |
| impl ToTokens for ast::ImportType { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| let vis = &self.vis; |
| let rust_name = &self.rust_name; |
| let attrs = &self.attrs; |
| let doc_comment = match &self.doc_comment { |
| None => "", |
| Some(comment) => comment, |
| }; |
| let instanceof_shim = Ident::new(&self.instanceof_shim, Span::call_site()); |
| |
| let wasm_bindgen = &self.wasm_bindgen; |
| let internal_obj = match self.extends.first() { |
| Some(target) => { |
| quote! { #target } |
| } |
| None => { |
| quote! { #wasm_bindgen::JsValue } |
| } |
| }; |
| |
| let description = if let Some(typescript_type) = &self.typescript_type { |
| let typescript_type_len = typescript_type.len() as u32; |
| let typescript_type_chars = typescript_type.chars().map(|c| c as u32); |
| quote! { |
| use #wasm_bindgen::describe::*; |
| inform(NAMED_EXTERNREF); |
| inform(#typescript_type_len); |
| #(inform(#typescript_type_chars);)* |
| } |
| } else { |
| quote! { |
| JsValue::describe() |
| } |
| }; |
| |
| let is_type_of = self.is_type_of.as_ref().map(|is_type_of| { |
| quote! { |
| #[inline] |
| fn is_type_of(val: &JsValue) -> bool { |
| let is_type_of: fn(&JsValue) -> bool = #is_type_of; |
| is_type_of(val) |
| } |
| } |
| }); |
| |
| let no_deref = self.no_deref; |
| |
| let doc = if doc_comment.is_empty() { |
| quote! {} |
| } else { |
| quote! { |
| #[doc = #doc_comment] |
| } |
| }; |
| |
| (quote! { |
| #[automatically_derived] |
| #(#attrs)* |
| #doc |
| #[repr(transparent)] |
| #vis struct #rust_name { |
| obj: #internal_obj |
| } |
| |
| #[automatically_derived] |
| const _: () = { |
| use #wasm_bindgen::convert::TryFromJsValue; |
| use #wasm_bindgen::convert::{IntoWasmAbi, FromWasmAbi}; |
| use #wasm_bindgen::convert::{OptionIntoWasmAbi, OptionFromWasmAbi}; |
| use #wasm_bindgen::convert::{RefFromWasmAbi, LongRefFromWasmAbi}; |
| use #wasm_bindgen::describe::WasmDescribe; |
| use #wasm_bindgen::{JsValue, JsCast, JsObject}; |
| use #wasm_bindgen::__rt::core; |
| |
| impl WasmDescribe for #rust_name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe() { |
| #description |
| } |
| } |
| |
| impl IntoWasmAbi for #rust_name { |
| type Abi = <JsValue as IntoWasmAbi>::Abi; |
| |
| #[inline] |
| fn into_abi(self) -> Self::Abi { |
| self.obj.into_abi() |
| } |
| } |
| |
| impl OptionIntoWasmAbi for #rust_name { |
| #[inline] |
| fn none() -> Self::Abi { |
| 0 |
| } |
| } |
| |
| impl<'a> OptionIntoWasmAbi for &'a #rust_name { |
| #[inline] |
| fn none() -> Self::Abi { |
| 0 |
| } |
| } |
| |
| impl FromWasmAbi for #rust_name { |
| type Abi = <JsValue as FromWasmAbi>::Abi; |
| |
| #[inline] |
| unsafe fn from_abi(js: Self::Abi) -> Self { |
| #rust_name { |
| obj: JsValue::from_abi(js).into(), |
| } |
| } |
| } |
| |
| impl OptionFromWasmAbi for #rust_name { |
| #[inline] |
| fn is_none(abi: &Self::Abi) -> bool { *abi == 0 } |
| } |
| |
| impl<'a> IntoWasmAbi for &'a #rust_name { |
| type Abi = <&'a JsValue as IntoWasmAbi>::Abi; |
| |
| #[inline] |
| fn into_abi(self) -> Self::Abi { |
| (&self.obj).into_abi() |
| } |
| } |
| |
| impl RefFromWasmAbi for #rust_name { |
| type Abi = <JsValue as RefFromWasmAbi>::Abi; |
| type Anchor = core::mem::ManuallyDrop<#rust_name>; |
| |
| #[inline] |
| unsafe fn ref_from_abi(js: Self::Abi) -> Self::Anchor { |
| let tmp = <JsValue as RefFromWasmAbi>::ref_from_abi(js); |
| core::mem::ManuallyDrop::new(#rust_name { |
| obj: core::mem::ManuallyDrop::into_inner(tmp).into(), |
| }) |
| } |
| } |
| |
| impl LongRefFromWasmAbi for #rust_name { |
| type Abi = <JsValue as LongRefFromWasmAbi>::Abi; |
| type Anchor = #rust_name; |
| |
| #[inline] |
| unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor { |
| let tmp = <JsValue as LongRefFromWasmAbi>::long_ref_from_abi(js); |
| #rust_name { obj: tmp.into() } |
| } |
| } |
| |
| // TODO: remove this on the next major version |
| impl From<JsValue> for #rust_name { |
| #[inline] |
| fn from(obj: JsValue) -> #rust_name { |
| #rust_name { obj: obj.into() } |
| } |
| } |
| |
| impl AsRef<JsValue> for #rust_name { |
| #[inline] |
| fn as_ref(&self) -> &JsValue { self.obj.as_ref() } |
| } |
| |
| impl AsRef<#rust_name> for #rust_name { |
| #[inline] |
| fn as_ref(&self) -> &#rust_name { self } |
| } |
| |
| |
| impl From<#rust_name> for JsValue { |
| #[inline] |
| fn from(obj: #rust_name) -> JsValue { |
| obj.obj.into() |
| } |
| } |
| |
| impl JsCast for #rust_name { |
| fn instanceof(val: &JsValue) -> bool { |
| #[link(wasm_import_module = "__wbindgen_placeholder__")] |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| extern "C" { |
| fn #instanceof_shim(val: u32) -> u32; |
| } |
| #[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))] |
| unsafe fn #instanceof_shim(_: u32) -> u32 { |
| panic!("cannot check instanceof on non-wasm targets"); |
| } |
| unsafe { |
| let idx = val.into_abi(); |
| #instanceof_shim(idx) != 0 |
| } |
| } |
| |
| #is_type_of |
| |
| #[inline] |
| fn unchecked_from_js(val: JsValue) -> Self { |
| #rust_name { obj: val.into() } |
| } |
| |
| #[inline] |
| fn unchecked_from_js_ref(val: &JsValue) -> &Self { |
| // Should be safe because `#rust_name` is a transparent |
| // wrapper around `val` |
| unsafe { &*(val as *const JsValue as *const #rust_name) } |
| } |
| } |
| |
| impl JsObject for #rust_name {} |
| }; |
| }) |
| .to_tokens(tokens); |
| |
| if !no_deref { |
| (quote! { |
| #[automatically_derived] |
| impl core::ops::Deref for #rust_name { |
| type Target = #internal_obj; |
| |
| #[inline] |
| fn deref(&self) -> &#internal_obj { |
| &self.obj |
| } |
| } |
| }) |
| .to_tokens(tokens); |
| } |
| |
| for superclass in self.extends.iter() { |
| (quote! { |
| #[automatically_derived] |
| impl From<#rust_name> for #superclass { |
| #[inline] |
| fn from(obj: #rust_name) -> #superclass { |
| use #wasm_bindgen::JsCast; |
| #superclass::unchecked_from_js(obj.into()) |
| } |
| } |
| |
| #[automatically_derived] |
| impl AsRef<#superclass> for #rust_name { |
| #[inline] |
| fn as_ref(&self) -> &#superclass { |
| use #wasm_bindgen::JsCast; |
| #superclass::unchecked_from_js_ref(self.as_ref()) |
| } |
| } |
| }) |
| .to_tokens(tokens); |
| } |
| } |
| } |
| |
| impl ToTokens for ast::StringEnum { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| let vis = &self.vis; |
| let enum_name = &self.name; |
| let name_str = enum_name.to_string(); |
| let name_len = name_str.len() as u32; |
| let name_chars = name_str.chars().map(u32::from); |
| let variants = &self.variants; |
| let variant_count = self.variant_values.len() as u32; |
| let variant_values = &self.variant_values; |
| let variant_indices = (0..variant_count).collect::<Vec<_>>(); |
| let invalid = variant_count; |
| let hole = variant_count + 1; |
| let attrs = &self.rust_attrs; |
| |
| let invalid_to_str_msg = format!( |
| "Converting an invalid string enum ({}) back to a string is currently not supported", |
| enum_name |
| ); |
| |
| // A vector of EnumName::VariantName tokens for this enum |
| let variant_paths: Vec<TokenStream> = self |
| .variants |
| .iter() |
| .map(|v| quote!(#enum_name::#v).into_token_stream()) |
| .collect(); |
| |
| // Borrow variant_paths because we need to use it multiple times inside the quote! macro |
| let variant_paths_ref = &variant_paths; |
| |
| let wasm_bindgen = &self.wasm_bindgen; |
| |
| let describe_variants = self.variant_values.iter().map(|variant_value| { |
| let length = variant_value.len() as u32; |
| let chars = variant_value.chars().map(u32::from); |
| quote! { |
| inform(#length); |
| #(inform(#chars);)* |
| } |
| }); |
| |
| (quote! { |
| #(#attrs)* |
| #[non_exhaustive] |
| #[repr(u32)] |
| #vis enum #enum_name { |
| #(#variants = #variant_indices,)* |
| #[automatically_derived] |
| #[doc(hidden)] |
| __Invalid |
| } |
| |
| #[automatically_derived] |
| impl #enum_name { |
| fn from_str(s: &str) -> Option<#enum_name> { |
| match s { |
| #(#variant_values => Some(#variant_paths_ref),)* |
| _ => None, |
| } |
| } |
| |
| fn to_str(&self) -> &'static str { |
| match self { |
| #(#variant_paths_ref => #variant_values,)* |
| #enum_name::__Invalid => panic!(#invalid_to_str_msg), |
| } |
| } |
| |
| #vis fn from_js_value(obj: &#wasm_bindgen::JsValue) -> Option<#enum_name> { |
| obj.as_string().and_then(|obj_str| Self::from_str(obj_str.as_str())) |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::IntoWasmAbi for #enum_name { |
| type Abi = u32; |
| |
| #[inline] |
| fn into_abi(self) -> u32 { |
| self as u32 |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::FromWasmAbi for #enum_name { |
| type Abi = u32; |
| |
| unsafe fn from_abi(val: u32) -> Self { |
| match val { |
| #(#variant_indices => #variant_paths_ref,)* |
| #invalid => #enum_name::__Invalid, |
| _ => unreachable!("The JS binding should only ever produce a valid value or the specific 'invalid' value"), |
| } |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionFromWasmAbi for #enum_name { |
| #[inline] |
| fn is_none(val: &u32) -> bool { *val == #hole } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionIntoWasmAbi for #enum_name { |
| #[inline] |
| fn none() -> Self::Abi { #hole } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::describe::WasmDescribe for #enum_name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe() { |
| use #wasm_bindgen::describe::*; |
| inform(STRING_ENUM); |
| inform(#name_len); |
| #(inform(#name_chars);)* |
| inform(#variant_count); |
| #(#describe_variants)* |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::__rt::core::convert::From<#enum_name> for |
| #wasm_bindgen::JsValue |
| { |
| fn from(val: #enum_name) -> Self { |
| #wasm_bindgen::JsValue::from_str(val.to_str()) |
| } |
| } |
| }) |
| .to_tokens(tokens); |
| } |
| } |
| |
| impl TryToTokens for ast::ImportFunction { |
| fn try_to_tokens(&self, tokens: &mut TokenStream) -> Result<(), Diagnostic> { |
| let mut class_ty = None; |
| let mut is_method = false; |
| match self.kind { |
| ast::ImportFunctionKind::Method { |
| ref ty, ref kind, .. |
| } => { |
| if let ast::MethodKind::Operation(ast::Operation { |
| is_static: false, .. |
| }) = kind |
| { |
| is_method = true; |
| } |
| class_ty = Some(ty); |
| } |
| ast::ImportFunctionKind::Normal => {} |
| } |
| let vis = &self.function.rust_vis; |
| let ret = match &self.function.ret { |
| Some(ty) => quote! { -> #ty }, |
| None => quote!(), |
| }; |
| |
| let mut abi_argument_names = Vec::new(); |
| let mut abi_arguments = Vec::new(); |
| let mut arg_conversions = Vec::new(); |
| let mut arguments = Vec::new(); |
| let ret_ident = Ident::new("_ret", Span::call_site()); |
| let wasm_bindgen = &self.wasm_bindgen; |
| let wasm_bindgen_futures = &self.wasm_bindgen_futures; |
| |
| for (i, arg) in self.function.arguments.iter().enumerate() { |
| let ty = &arg.ty; |
| let name = match &*arg.pat { |
| syn::Pat::Ident(syn::PatIdent { |
| by_ref: None, |
| ident, |
| subpat: None, |
| .. |
| }) => ident.clone(), |
| syn::Pat::Wild(_) => syn::Ident::new(&format!("__genarg_{}", i), Span::call_site()), |
| _ => bail_span!( |
| arg.pat, |
| "unsupported pattern in #[wasm_bindgen] imported function", |
| ), |
| }; |
| |
| let abi = quote! { <#ty as #wasm_bindgen::convert::IntoWasmAbi>::Abi }; |
| let (prim_args, prim_names) = splat(wasm_bindgen, &name, &abi); |
| abi_arguments.extend(prim_args); |
| abi_argument_names.extend(prim_names.iter().cloned()); |
| |
| let var = if i == 0 && is_method { |
| quote! { self } |
| } else { |
| arguments.push(quote! { #name: #ty }); |
| quote! { #name } |
| }; |
| arg_conversions.push(quote! { |
| let #name = <#ty as #wasm_bindgen::convert::IntoWasmAbi> |
| ::into_abi(#var); |
| let (#(#prim_names),*) = <#abi as #wasm_bindgen::convert::WasmAbi>::split(#name); |
| }); |
| } |
| let abi_ret; |
| let mut convert_ret; |
| match &self.js_ret { |
| Some(syn::Type::Reference(_)) => { |
| bail_span!( |
| self.js_ret, |
| "cannot return references in #[wasm_bindgen] imports yet" |
| ); |
| } |
| Some(ref ty) => { |
| if self.function.r#async { |
| abi_ret = quote! { |
| #wasm_bindgen::convert::WasmRet<<#wasm_bindgen_futures::js_sys::Promise as #wasm_bindgen::convert::FromWasmAbi>::Abi> |
| }; |
| let future = quote! { |
| #wasm_bindgen_futures::JsFuture::from( |
| <#wasm_bindgen_futures::js_sys::Promise as #wasm_bindgen::convert::FromWasmAbi> |
| ::from_abi(#ret_ident.join()) |
| ).await |
| }; |
| convert_ret = if self.catch { |
| quote! { Ok(#wasm_bindgen::JsCast::unchecked_from_js(#future?)) } |
| } else { |
| quote! { #wasm_bindgen::JsCast::unchecked_from_js(#future.expect("unexpected exception")) } |
| }; |
| } else { |
| abi_ret = quote! { |
| #wasm_bindgen::convert::WasmRet<<#ty as #wasm_bindgen::convert::FromWasmAbi>::Abi> |
| }; |
| convert_ret = quote! { |
| <#ty as #wasm_bindgen::convert::FromWasmAbi> |
| ::from_abi(#ret_ident.join()) |
| }; |
| } |
| } |
| None => { |
| if self.function.r#async { |
| abi_ret = quote! { |
| #wasm_bindgen::convert::WasmRet<<#wasm_bindgen_futures::js_sys::Promise as #wasm_bindgen::convert::FromWasmAbi>::Abi> |
| }; |
| let future = quote! { |
| #wasm_bindgen_futures::JsFuture::from( |
| <#wasm_bindgen_futures::js_sys::Promise as #wasm_bindgen::convert::FromWasmAbi> |
| ::from_abi(#ret_ident.join()) |
| ).await |
| }; |
| convert_ret = if self.catch { |
| quote! { #future?; Ok(()) } |
| } else { |
| quote! { #future.expect("uncaught exception"); } |
| }; |
| } else { |
| abi_ret = quote! { () }; |
| convert_ret = quote! { () }; |
| } |
| } |
| } |
| |
| let mut exceptional_ret = quote!(); |
| if self.catch && !self.function.r#async { |
| convert_ret = quote! { Ok(#convert_ret) }; |
| exceptional_ret = quote! { |
| #wasm_bindgen::__rt::take_last_exception()?; |
| }; |
| } |
| |
| let rust_name = &self.rust_name; |
| let import_name = &self.shim; |
| let attrs = &self.function.rust_attrs; |
| let arguments = &arguments; |
| let abi_arguments = &abi_arguments[..]; |
| let abi_argument_names = &abi_argument_names[..]; |
| |
| let doc = if self.doc_comment.is_empty() { |
| quote! {} |
| } else { |
| let doc_comment = &self.doc_comment; |
| quote! { #[doc = #doc_comment] } |
| }; |
| let me = if is_method { |
| quote! { &self, } |
| } else { |
| quote!() |
| }; |
| |
| // Route any errors pointing to this imported function to the identifier |
| // of the function we're imported from so we at least know what function |
| // is causing issues. |
| // |
| // Note that this is where type errors like "doesn't implement |
| // FromWasmAbi" or "doesn't implement IntoWasmAbi" currently get routed. |
| // I suspect that's because they show up in the signature via trait |
| // projections as types of arguments, and all that needs to typecheck |
| // before the body can be typechecked. Due to rust-lang/rust#60980 (and |
| // probably related issues) we can't really get a precise span. |
| // |
| // Ideally what we want is to point errors for particular types back to |
| // the specific argument/type that generated the error, but it looks |
| // like rustc itself doesn't do great in that regard so let's just do |
| // the best we can in the meantime. |
| let extern_fn = respan( |
| extern_fn( |
| import_name, |
| attrs, |
| abi_arguments, |
| abi_argument_names, |
| abi_ret, |
| ), |
| &self.rust_name, |
| ); |
| |
| let maybe_unsafe = if self.function.r#unsafe { |
| Some(quote! {unsafe}) |
| } else { |
| None |
| }; |
| let maybe_async = if self.function.r#async { |
| Some(quote! {async}) |
| } else { |
| None |
| }; |
| let invocation = quote! { |
| // This is due to `#[automatically_derived]` attribute cannot be |
| // placed onto bare functions. |
| #[allow(nonstandard_style)] |
| #[allow(clippy::all, clippy::nursery, clippy::pedantic, clippy::restriction)] |
| #(#attrs)* |
| #doc |
| #vis #maybe_async #maybe_unsafe fn #rust_name(#me #(#arguments),*) #ret { |
| #extern_fn |
| |
| unsafe { |
| let #ret_ident = { |
| #(#arg_conversions)* |
| #import_name(#(#abi_argument_names),*) |
| }; |
| #exceptional_ret |
| #convert_ret |
| } |
| } |
| }; |
| |
| if let Some(class) = class_ty { |
| (quote! { |
| #[automatically_derived] |
| impl #class { |
| #invocation |
| } |
| }) |
| .to_tokens(tokens); |
| } else { |
| invocation.to_tokens(tokens); |
| } |
| |
| Ok(()) |
| } |
| } |
| |
| // See comment above in ast::Export for what's going on here. |
| struct DescribeImport<'a> { |
| kind: &'a ast::ImportKind, |
| wasm_bindgen: &'a syn::Path, |
| } |
| |
| impl<'a> ToTokens for DescribeImport<'a> { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| let f = match *self.kind { |
| ast::ImportKind::Function(ref f) => f, |
| ast::ImportKind::Static(_) => return, |
| ast::ImportKind::String(_) => return, |
| ast::ImportKind::Type(_) => return, |
| ast::ImportKind::Enum(_) => return, |
| }; |
| let argtys = f.function.arguments.iter().map(|arg| &arg.ty); |
| let nargs = f.function.arguments.len() as u32; |
| let inform_ret = match &f.js_ret { |
| Some(ref t) => quote! { <#t as WasmDescribe>::describe(); }, |
| // async functions always return a JsValue, even if they say to return () |
| None if f.function.r#async => quote! { <JsValue as WasmDescribe>::describe(); }, |
| None => quote! { <() as WasmDescribe>::describe(); }, |
| }; |
| |
| Descriptor { |
| ident: &f.shim, |
| inner: quote! { |
| inform(FUNCTION); |
| inform(0); |
| inform(#nargs); |
| #(<#argtys as WasmDescribe>::describe();)* |
| #inform_ret |
| #inform_ret |
| }, |
| attrs: f.function.rust_attrs.clone(), |
| wasm_bindgen: self.wasm_bindgen, |
| } |
| .to_tokens(tokens); |
| } |
| } |
| |
| impl ToTokens for ast::Enum { |
| fn to_tokens(&self, into: &mut TokenStream) { |
| let enum_name = &self.rust_name; |
| let name_str = self.js_name.to_string(); |
| let name_len = name_str.len() as u32; |
| let name_chars = name_str.chars().map(|c| c as u32); |
| let hole = &self.hole; |
| let cast_clauses = self.variants.iter().map(|variant| { |
| let variant_name = &variant.name; |
| quote! { |
| if js == #enum_name::#variant_name as u32 { |
| #enum_name::#variant_name |
| } |
| } |
| }); |
| let try_from_cast_clauses = cast_clauses.clone(); |
| let wasm_bindgen = &self.wasm_bindgen; |
| (quote! { |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::IntoWasmAbi for #enum_name { |
| type Abi = u32; |
| |
| #[inline] |
| fn into_abi(self) -> u32 { |
| self as u32 |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::FromWasmAbi for #enum_name { |
| type Abi = u32; |
| |
| #[inline] |
| unsafe fn from_abi(js: u32) -> Self { |
| #(#cast_clauses else)* { |
| #wasm_bindgen::throw_str("invalid enum value passed") |
| } |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionFromWasmAbi for #enum_name { |
| #[inline] |
| fn is_none(val: &u32) -> bool { *val == #hole } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::convert::OptionIntoWasmAbi for #enum_name { |
| #[inline] |
| fn none() -> Self::Abi { #hole } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::describe::WasmDescribe for #enum_name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe() { |
| use #wasm_bindgen::describe::*; |
| inform(ENUM); |
| inform(#name_len); |
| #(inform(#name_chars);)* |
| inform(#hole); |
| } |
| } |
| |
| #[automatically_derived] |
| impl #wasm_bindgen::__rt::core::convert::From<#enum_name> for |
| #wasm_bindgen::JsValue |
| { |
| fn from(value: #enum_name) -> Self { |
| #wasm_bindgen::JsValue::from_f64((value as u32).into()) |
| } |
| } |
| |
| #[allow(clippy::all)] |
| impl #wasm_bindgen::convert::TryFromJsValue for #enum_name { |
| type Error = #wasm_bindgen::JsValue; |
| |
| fn try_from_js_value(value: #wasm_bindgen::JsValue) |
| -> #wasm_bindgen::__rt::core::result::Result<Self, <#enum_name as #wasm_bindgen::convert::TryFromJsValue>::Error> { |
| use #wasm_bindgen::__rt::core::convert::TryFrom; |
| let js = f64::try_from(&value)? as u32; |
| |
| #wasm_bindgen::__rt::core::result::Result::Ok( |
| #(#try_from_cast_clauses else)* { |
| return #wasm_bindgen::__rt::core::result::Result::Err(value) |
| } |
| ) |
| } |
| } |
| |
| impl #wasm_bindgen::describe::WasmDescribeVector for #enum_name { |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| fn describe_vector() { |
| use #wasm_bindgen::describe::*; |
| inform(VECTOR); |
| <#wasm_bindgen::JsValue as #wasm_bindgen::describe::WasmDescribe>::describe(); |
| } |
| } |
| |
| impl #wasm_bindgen::convert::VectorIntoWasmAbi for #enum_name { |
| type Abi = < |
| #wasm_bindgen::__rt::alloc::boxed::Box<[#wasm_bindgen::JsValue]> |
| as #wasm_bindgen::convert::IntoWasmAbi |
| >::Abi; |
| |
| fn vector_into_abi( |
| vector: #wasm_bindgen::__rt::alloc::boxed::Box<[#enum_name]> |
| ) -> Self::Abi { |
| #wasm_bindgen::convert::js_value_vector_into_abi(vector) |
| } |
| } |
| |
| impl #wasm_bindgen::convert::VectorFromWasmAbi for #enum_name { |
| type Abi = < |
| #wasm_bindgen::__rt::alloc::boxed::Box<[#wasm_bindgen::JsValue]> |
| as #wasm_bindgen::convert::FromWasmAbi |
| >::Abi; |
| |
| unsafe fn vector_from_abi( |
| js: Self::Abi |
| ) -> #wasm_bindgen::__rt::alloc::boxed::Box<[#enum_name]> { |
| #wasm_bindgen::convert::js_value_vector_from_abi(js) |
| } |
| } |
| |
| impl #wasm_bindgen::__rt::VectorIntoJsValue for #enum_name { |
| fn vector_into_jsvalue(vector: #wasm_bindgen::__rt::alloc::boxed::Box<[#enum_name]>) -> #wasm_bindgen::JsValue { |
| #wasm_bindgen::__rt::js_value_vector_into_jsvalue(vector) |
| } |
| } |
| }) |
| .to_tokens(into); |
| } |
| } |
| |
| impl ToTokens for ast::ImportStatic { |
| fn to_tokens(&self, into: &mut TokenStream) { |
| let ty = &self.ty; |
| |
| if self.thread_local { |
| thread_local_import( |
| &self.vis, |
| &self.rust_name, |
| &self.wasm_bindgen, |
| ty, |
| ty, |
| &self.shim, |
| ) |
| .to_tokens(into) |
| } else { |
| let vis = &self.vis; |
| let name = &self.rust_name; |
| let wasm_bindgen = &self.wasm_bindgen; |
| let ty = &self.ty; |
| let shim_name = &self.shim; |
| let init = static_init(wasm_bindgen, ty, shim_name); |
| |
| into.extend(quote! { |
| #[automatically_derived] |
| #[deprecated = "use with `#[wasm_bindgen(thread_local)]` instead"] |
| }); |
| into.extend( |
| quote_spanned! { name.span() => #vis static #name: #wasm_bindgen::JsStatic<#ty> = { |
| fn init() -> #ty { |
| #init |
| } |
| thread_local!(static _VAL: #ty = init();); |
| #wasm_bindgen::JsStatic { |
| __inner: &_VAL, |
| } |
| }; |
| }, |
| ); |
| } |
| |
| Descriptor { |
| ident: &self.shim, |
| inner: quote! { |
| <#ty as WasmDescribe>::describe(); |
| }, |
| attrs: vec![], |
| wasm_bindgen: &self.wasm_bindgen, |
| } |
| .to_tokens(into); |
| } |
| } |
| |
| impl ToTokens for ast::ImportString { |
| fn to_tokens(&self, into: &mut TokenStream) { |
| let js_sys = &self.js_sys; |
| let actual_ty: syn::Type = parse_quote!(#js_sys::JsString); |
| |
| thread_local_import( |
| &self.vis, |
| &self.rust_name, |
| &self.wasm_bindgen, |
| &actual_ty, |
| &self.ty, |
| &self.shim, |
| ) |
| .to_tokens(into); |
| } |
| } |
| |
| fn thread_local_import( |
| vis: &syn::Visibility, |
| name: &Ident, |
| wasm_bindgen: &syn::Path, |
| actual_ty: &syn::Type, |
| ty: &syn::Type, |
| shim_name: &Ident, |
| ) -> TokenStream { |
| let init = static_init(wasm_bindgen, ty, shim_name); |
| |
| quote! { |
| thread_local! { |
| #[automatically_derived] |
| #vis static #name: #actual_ty = { |
| #init |
| }; |
| } |
| } |
| } |
| |
| fn static_init(wasm_bindgen: &syn::Path, ty: &syn::Type, shim_name: &Ident) -> TokenStream { |
| let abi_ret = quote! { |
| #wasm_bindgen::convert::WasmRet<<#ty as #wasm_bindgen::convert::FromWasmAbi>::Abi> |
| }; |
| quote! { |
| #[link(wasm_import_module = "__wbindgen_placeholder__")] |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| extern "C" { |
| fn #shim_name() -> #abi_ret; |
| } |
| |
| #[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))] |
| unsafe fn #shim_name() -> #abi_ret { |
| panic!("cannot access imported statics on non-wasm targets") |
| } |
| |
| unsafe { |
| <#ty as #wasm_bindgen::convert::FromWasmAbi>::from_abi(#shim_name().join()) |
| } |
| } |
| } |
| |
| /// Emits the necessary glue tokens for "descriptor", generating an appropriate |
| /// symbol name as well as attributes around the descriptor function itself. |
| struct Descriptor<'a, T> { |
| ident: &'a Ident, |
| inner: T, |
| attrs: Vec<syn::Attribute>, |
| wasm_bindgen: &'a syn::Path, |
| } |
| |
| impl<'a, T: ToTokens> ToTokens for Descriptor<'a, T> { |
| fn to_tokens(&self, tokens: &mut TokenStream) { |
| // It's possible for the same descriptor to be emitted in two different |
| // modules (aka a value imported twice in a crate, each in a separate |
| // module). In this case no need to emit duplicate descriptors (which |
| // leads to duplicate symbol errors), instead just emit one. |
| // |
| // It's up to the descriptors themselves to ensure they have unique |
| // names for unique items imported, currently done via `ShortHash` and |
| // hashing appropriate data into the symbol name. |
| static DESCRIPTORS_EMITTED: Lazy<Mutex<HashSet<String>>> = Lazy::new(Default::default); |
| |
| let ident = self.ident; |
| |
| if !DESCRIPTORS_EMITTED |
| .lock() |
| .unwrap() |
| .insert(ident.to_string()) |
| { |
| return; |
| } |
| |
| let name = Ident::new(&format!("__wbindgen_describe_{}", ident), ident.span()); |
| let inner = &self.inner; |
| let attrs = &self.attrs; |
| let wasm_bindgen = &self.wasm_bindgen; |
| (quote! { |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| #[automatically_derived] |
| const _: () = { |
| #(#attrs)* |
| #[no_mangle] |
| #[doc(hidden)] |
| #[cfg_attr(wasm_bindgen_unstable_test_coverage, coverage(off))] |
| pub extern "C" fn #name() { |
| use #wasm_bindgen::describe::*; |
| // See definition of `link_mem_intrinsics` for what this is doing |
| #wasm_bindgen::__rt::link_mem_intrinsics(); |
| #inner |
| } |
| }; |
| }) |
| .to_tokens(tokens); |
| } |
| } |
| |
| fn extern_fn( |
| import_name: &Ident, |
| attrs: &[syn::Attribute], |
| abi_arguments: &[TokenStream], |
| abi_argument_names: &[Ident], |
| abi_ret: TokenStream, |
| ) -> TokenStream { |
| quote! { |
| #[cfg(all(target_arch = "wasm32", target_os = "unknown"))] |
| #(#attrs)* |
| #[link(wasm_import_module = "__wbindgen_placeholder__")] |
| extern "C" { |
| fn #import_name(#(#abi_arguments),*) -> #abi_ret; |
| } |
| |
| #[cfg(not(all(target_arch = "wasm32", target_os = "unknown")))] |
| unsafe fn #import_name(#(#abi_arguments),*) -> #abi_ret { |
| #( |
| drop(#abi_argument_names); |
| )* |
| panic!("cannot call wasm-bindgen imported functions on \ |
| non-wasm targets"); |
| } |
| } |
| } |
| |
| /// Splats an argument with the given name and ABI type into 4 arguments, one |
| /// for each primitive that the ABI type splits into. |
| /// |
| /// Returns an `(args, names)` pair, where `args` is the list of arguments to |
| /// be inserted into the function signature, and `names` is a list of the names |
| /// of those arguments. |
| fn splat( |
| wasm_bindgen: &syn::Path, |
| name: &Ident, |
| abi: &TokenStream, |
| ) -> (Vec<TokenStream>, Vec<Ident>) { |
| let mut args = Vec::new(); |
| let mut names = Vec::new(); |
| |
| for n in 1_u32..=4 { |
| let arg_name = format_ident!("{}_{}", name, n); |
| let prim_name = format_ident!("Prim{}", n); |
| args.push(quote! { |
| #arg_name: <#abi as #wasm_bindgen::convert::WasmAbi>::#prim_name |
| }); |
| names.push(arg_name); |
| } |
| |
| (args, names) |
| } |
| |
| /// Converts `span` into a stream of tokens, and attempts to ensure that `input` |
| /// has all the appropriate span information so errors in it point to `span`. |
| fn respan(input: TokenStream, span: &dyn ToTokens) -> TokenStream { |
| let mut first_span = Span::call_site(); |
| let mut last_span = Span::call_site(); |
| let mut spans = TokenStream::new(); |
| span.to_tokens(&mut spans); |
| |
| for (i, token) in spans.into_iter().enumerate() { |
| if i == 0 { |
| first_span = token.span(); |
| } |
| last_span = token.span(); |
| } |
| |
| let mut new_tokens = Vec::new(); |
| for (i, mut token) in input.into_iter().enumerate() { |
| if i == 0 { |
| token.set_span(first_span); |
| } else { |
| token.set_span(last_span); |
| } |
| new_tokens.push(token); |
| } |
| new_tokens.into_iter().collect() |
| } |