mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 10:51:09 +00:00
This commit adds a new attribute to `#[wasm_bindgen]`: `start`. The `start` attribute can be used to indicate that a function should be executed when the module is loaded, configuring the `start` function of the wasm executable. While this doesn't necessarily literally configure the `start` section, it does its best! Only one crate in a crate graph may indicate `#[wasm_bindgen(start)]`, so it's not recommended to be used in libraries but only end-user applications. Currently this still must be used with the `crate-type = ["cdylib"]` annotation in `Cargo.toml`. The implementation here is somewhat tricky because of the circular dependency between our generated JS and the wasm file that we emit. This circular dependency makes running initialization routines (like the `start` shim) particularly fraught with complications because one may need to run before the other but bundlers may not necessarily respect it. Workarounds have been implemented for various emission strategies, for example calling the start function directly after exports are wired up with `--no-modules` and otherwise working around what appears to be a Webpack bug with initializers running in a different order than we'd like. In any case, this in theory doesn't show up to the end user! Closes #74
173 lines
4.3 KiB
Rust
173 lines
4.3 KiB
Rust
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-shared/0.2")]
|
|
|
|
// The schema is so unstable right now we just force it to change whenever this
|
|
// package's version changes, which happens on all publishes.
|
|
pub const SCHEMA_VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
#[macro_export]
|
|
macro_rules! shared_api {
|
|
($mac:ident) => {
|
|
$mac! {
|
|
struct Program<'a> {
|
|
exports: Vec<Export<'a>>,
|
|
enums: Vec<Enum<'a>>,
|
|
imports: Vec<Import<'a>>,
|
|
structs: Vec<Struct<'a>>,
|
|
typescript_custom_sections: Vec<&'a str>,
|
|
// version: &'a str,
|
|
// schema_version: &'a str,
|
|
}
|
|
|
|
struct Import<'a> {
|
|
module: Option<&'a str>,
|
|
js_namespace: Option<&'a str>,
|
|
kind: ImportKind<'a>,
|
|
}
|
|
|
|
enum ImportKind<'a> {
|
|
Function(ImportFunction<'a>),
|
|
Static(ImportStatic<'a>),
|
|
Type(ImportType<'a>),
|
|
Enum(ImportEnum),
|
|
}
|
|
|
|
struct ImportFunction<'a> {
|
|
shim: &'a str,
|
|
catch: bool,
|
|
variadic: bool,
|
|
method: Option<MethodData<'a>>,
|
|
structural: bool,
|
|
function: Function<'a>,
|
|
}
|
|
|
|
struct MethodData<'a> {
|
|
class: &'a str,
|
|
kind: MethodKind<'a>,
|
|
}
|
|
|
|
enum MethodKind<'a> {
|
|
Constructor,
|
|
Operation(Operation<'a>),
|
|
}
|
|
|
|
struct Operation<'a> {
|
|
is_static: bool,
|
|
kind: OperationKind<'a>,
|
|
}
|
|
|
|
enum OperationKind<'a> {
|
|
Regular,
|
|
Getter(&'a str),
|
|
Setter(&'a str),
|
|
IndexingGetter,
|
|
IndexingSetter,
|
|
IndexingDeleter,
|
|
}
|
|
|
|
struct ImportStatic<'a> {
|
|
name: &'a str,
|
|
shim: &'a str,
|
|
}
|
|
|
|
struct ImportType<'a> {
|
|
name: &'a str,
|
|
instanceof_shim: &'a str,
|
|
vendor_prefixes: Vec<&'a str>,
|
|
}
|
|
|
|
struct ImportEnum {}
|
|
|
|
struct Export<'a> {
|
|
class: Option<&'a str>,
|
|
method: bool,
|
|
consumed: bool,
|
|
is_constructor: bool,
|
|
function: Function<'a>,
|
|
comments: Vec<&'a str>,
|
|
start: bool,
|
|
}
|
|
|
|
struct Enum<'a> {
|
|
name: &'a str,
|
|
variants: Vec<EnumVariant<'a>>,
|
|
comments: Vec<&'a str>,
|
|
}
|
|
|
|
struct EnumVariant<'a> {
|
|
name: &'a str,
|
|
value: u32,
|
|
}
|
|
|
|
struct Function<'a> {
|
|
name: &'a str,
|
|
}
|
|
|
|
struct Struct<'a> {
|
|
name: &'a str,
|
|
fields: Vec<StructField<'a>>,
|
|
comments: Vec<&'a str>,
|
|
}
|
|
|
|
struct StructField<'a> {
|
|
name: &'a str,
|
|
readonly: bool,
|
|
comments: Vec<&'a str>,
|
|
}
|
|
}
|
|
}; // end of mac case
|
|
} // end of mac definition
|
|
|
|
pub fn new_function(struct_name: &str) -> String {
|
|
let mut name = format!("__wbg_");
|
|
name.extend(struct_name.chars().flat_map(|s| s.to_lowercase()));
|
|
name.push_str("_new");
|
|
return name;
|
|
}
|
|
|
|
pub fn free_function(struct_name: &str) -> String {
|
|
let mut name = format!("__wbg_");
|
|
name.extend(struct_name.chars().flat_map(|s| s.to_lowercase()));
|
|
name.push_str("_free");
|
|
return name;
|
|
}
|
|
|
|
pub fn free_function_export_name(function_name: &str) -> String {
|
|
function_name.to_string()
|
|
}
|
|
|
|
pub fn struct_function_export_name(struct_: &str, f: &str) -> String {
|
|
let mut name = struct_
|
|
.chars()
|
|
.flat_map(|s| s.to_lowercase())
|
|
.collect::<String>();
|
|
name.push_str("_");
|
|
name.push_str(f);
|
|
return name;
|
|
}
|
|
|
|
pub fn struct_field_get(struct_: &str, f: &str) -> String {
|
|
let mut name = String::from("__wbg_get_");
|
|
name.extend(struct_.chars().flat_map(|s| s.to_lowercase()));
|
|
name.push_str("_");
|
|
name.push_str(f);
|
|
return name;
|
|
}
|
|
|
|
pub fn struct_field_set(struct_: &str, f: &str) -> String {
|
|
let mut name = String::from("__wbg_set_");
|
|
name.extend(struct_.chars().flat_map(|s| s.to_lowercase()));
|
|
name.push_str("_");
|
|
name.push_str(f);
|
|
return name;
|
|
}
|
|
|
|
pub fn version() -> String {
|
|
let mut v = env!("CARGO_PKG_VERSION").to_string();
|
|
if let Some(s) = option_env!("WBG_VERSION") {
|
|
v.push_str(" (");
|
|
v.push_str(s);
|
|
v.push_str(")");
|
|
}
|
|
return v;
|
|
}
|