2018-07-19 14:57:04 -05:00
|
|
|
#![doc(html_root_url = "https://docs.rs/wasm-bindgen-shared/0.2")]
|
|
|
|
|
2018-08-30 13:26:07 -07:00
|
|
|
// 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");
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-08-26 15:43:33 -07:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! shared_api {
|
2018-11-27 12:07:59 -08:00
|
|
|
($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>,
|
2019-02-25 11:11:30 -08:00
|
|
|
local_modules: Vec<LocalModule<'a>>,
|
|
|
|
inline_js: Vec<&'a str>,
|
2019-03-05 14:53:14 -08:00
|
|
|
unique_crate_identifier: &'a str,
|
2019-02-27 12:20:33 -08:00
|
|
|
package_json: Option<&'a str>,
|
2018-11-27 12:07:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Import<'a> {
|
2019-02-25 11:11:30 -08:00
|
|
|
module: ImportModule<'a>,
|
2018-11-27 12:07:59 -08:00
|
|
|
js_namespace: Option<&'a str>,
|
|
|
|
kind: ImportKind<'a>,
|
|
|
|
}
|
|
|
|
|
2019-02-25 11:11:30 -08:00
|
|
|
enum ImportModule<'a> {
|
|
|
|
None,
|
|
|
|
Named(&'a str),
|
2019-03-15 08:04:25 -07:00
|
|
|
RawNamed(&'a str),
|
2019-02-25 11:11:30 -08:00
|
|
|
Inline(u32),
|
|
|
|
}
|
|
|
|
|
2018-11-27 12:07:59 -08:00
|
|
|
enum ImportKind<'a> {
|
|
|
|
Function(ImportFunction<'a>),
|
|
|
|
Static(ImportStatic<'a>),
|
|
|
|
Type(ImportType<'a>),
|
|
|
|
Enum(ImportEnum),
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ImportFunction<'a> {
|
|
|
|
shim: &'a str,
|
|
|
|
catch: bool,
|
|
|
|
variadic: bool,
|
2019-07-11 15:12:48 -07:00
|
|
|
assert_no_shim: bool,
|
2018-11-27 12:07:59 -08:00
|
|
|
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>,
|
2019-04-30 10:26:03 -03:00
|
|
|
comments: Vec<&'a str>,
|
2018-11-27 12:07:59 -08:00
|
|
|
consumed: bool,
|
|
|
|
function: Function<'a>,
|
2019-04-30 10:26:03 -03:00
|
|
|
method_kind: MethodKind<'a>,
|
2018-11-28 09:25:51 -08:00
|
|
|
start: bool,
|
2018-11-27 12:07:59 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
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> {
|
2019-03-14 08:46:42 -03:00
|
|
|
arg_names: Vec<String>,
|
2018-11-27 12:07:59 -08:00
|
|
|
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>,
|
|
|
|
}
|
2019-02-25 11:11:30 -08:00
|
|
|
|
|
|
|
struct LocalModule<'a> {
|
|
|
|
identifier: &'a str,
|
|
|
|
contents: &'a str,
|
|
|
|
}
|
2018-11-27 12:07:59 -08:00
|
|
|
}
|
|
|
|
}; // end of mac case
|
2018-08-26 15:43:33 -07:00
|
|
|
} // end of mac definition
|
2018-04-19 16:49:46 -07:00
|
|
|
|
2018-03-28 01:22:31 +02:00
|
|
|
pub fn new_function(struct_name: &str) -> String {
|
|
|
|
let mut name = format!("__wbg_");
|
2018-06-14 22:48:32 -07:00
|
|
|
name.extend(struct_name.chars().flat_map(|s| s.to_lowercase()));
|
2018-03-28 01:22:31 +02:00
|
|
|
name.push_str("_new");
|
2018-06-14 22:48:32 -07:00
|
|
|
return name;
|
2018-03-28 01:22:31 +02:00
|
|
|
}
|
|
|
|
|
2018-02-06 07:56:14 -08:00
|
|
|
pub fn free_function(struct_name: &str) -> String {
|
2018-02-06 11:54:40 -08:00
|
|
|
let mut name = format!("__wbg_");
|
2018-06-14 22:48:32 -07:00
|
|
|
name.extend(struct_name.chars().flat_map(|s| s.to_lowercase()));
|
2018-02-06 07:56:14 -08:00
|
|
|
name.push_str("_free");
|
2018-06-14 22:48:32 -07:00
|
|
|
return name;
|
2017-12-18 14:31:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-06 07:56:14 -08:00
|
|
|
pub fn free_function_export_name(function_name: &str) -> String {
|
|
|
|
function_name.to_string()
|
2017-12-18 14:31:01 -08:00
|
|
|
}
|
|
|
|
|
2018-02-06 07:56:14 -08:00
|
|
|
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);
|
2018-06-14 22:48:32 -07:00
|
|
|
return name;
|
2017-12-14 21:55:21 -08:00
|
|
|
}
|
|
|
|
|
2018-04-19 16:49:46 -07:00
|
|
|
pub fn struct_field_get(struct_: &str, f: &str) -> String {
|
|
|
|
let mut name = String::from("__wbg_get_");
|
2018-06-14 22:48:32 -07:00
|
|
|
name.extend(struct_.chars().flat_map(|s| s.to_lowercase()));
|
2018-04-19 16:49:46 -07:00
|
|
|
name.push_str("_");
|
|
|
|
name.push_str(f);
|
2018-06-14 22:48:32 -07:00
|
|
|
return name;
|
2018-04-19 16:49:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn struct_field_set(struct_: &str, f: &str) -> String {
|
|
|
|
let mut name = String::from("__wbg_set_");
|
2018-06-14 22:48:32 -07:00
|
|
|
name.extend(struct_.chars().flat_map(|s| s.to_lowercase()));
|
2018-04-19 16:49:46 -07:00
|
|
|
name.push_str("_");
|
|
|
|
name.push_str(f);
|
2018-06-14 22:48:32 -07:00
|
|
|
return name;
|
2018-04-19 16:49:46 -07:00
|
|
|
}
|
|
|
|
|
2018-03-01 19:19:12 -08:00
|
|
|
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(")");
|
|
|
|
}
|
2018-06-14 22:48:32 -07:00
|
|
|
return v;
|
2018-03-01 19:19:12 -08:00
|
|
|
}
|