2017-12-14 19:31:01 -08:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2018-02-06 16:06:21 -08:00
|
|
|
extern crate fnv;
|
|
|
|
|
|
|
|
use std::char;
|
|
|
|
use std::hash::{Hash, Hasher};
|
2017-12-14 19:31:01 -08:00
|
|
|
|
2018-02-07 16:41:33 -08:00
|
|
|
#[derive(Deserialize)]
|
2017-12-18 12:39:14 -08:00
|
|
|
pub struct Program {
|
2018-02-07 16:41:33 -08:00
|
|
|
pub exports: Vec<Export>,
|
2018-02-06 07:56:14 -08:00
|
|
|
pub imports: Vec<Import>,
|
2018-02-06 16:06:21 -08:00
|
|
|
pub custom_type_names: Vec<CustomTypeName>,
|
2017-12-18 12:39:14 -08:00
|
|
|
}
|
|
|
|
|
2018-02-07 16:41:33 -08:00
|
|
|
#[derive(Deserialize)]
|
2018-02-06 07:56:14 -08:00
|
|
|
pub struct Import {
|
2018-02-05 14:24:25 -08:00
|
|
|
pub module: Option<String>,
|
2018-02-07 16:41:33 -08:00
|
|
|
pub catch: bool,
|
2018-02-06 07:56:14 -08:00
|
|
|
pub method: bool,
|
2018-02-06 15:19:47 -08:00
|
|
|
pub js_new: bool,
|
2018-02-07 16:41:33 -08:00
|
|
|
pub statik: bool,
|
2018-02-14 13:16:02 -08:00
|
|
|
pub getter: Option<String>,
|
|
|
|
pub setter: Option<String>,
|
2018-02-07 16:41:33 -08:00
|
|
|
pub class: Option<String>,
|
2018-02-06 07:56:14 -08:00
|
|
|
pub function: Function,
|
2018-02-05 14:24:25 -08:00
|
|
|
}
|
|
|
|
|
2018-02-07 16:41:33 -08:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct Export {
|
|
|
|
pub class: Option<String>,
|
|
|
|
pub method: bool,
|
2017-12-18 12:39:14 -08:00
|
|
|
pub function: Function,
|
|
|
|
}
|
|
|
|
|
2018-02-07 16:41:33 -08:00
|
|
|
#[derive(Deserialize)]
|
2017-12-14 19:31:01 -08:00
|
|
|
pub struct Function {
|
|
|
|
pub name: String,
|
|
|
|
pub arguments: Vec<Type>,
|
|
|
|
pub ret: Option<Type>,
|
|
|
|
}
|
|
|
|
|
2018-02-07 16:41:33 -08:00
|
|
|
#[derive(Deserialize)]
|
2018-02-06 16:06:21 -08:00
|
|
|
pub struct CustomTypeName {
|
|
|
|
pub descriptor: char,
|
|
|
|
pub name: String,
|
|
|
|
}
|
|
|
|
|
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-02-06 07:56:14 -08:00
|
|
|
name.extend(struct_name
|
|
|
|
.chars()
|
|
|
|
.flat_map(|s| s.to_lowercase()));
|
|
|
|
name.push_str("_free");
|
|
|
|
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);
|
|
|
|
return name
|
2017-12-14 21:55:21 -08:00
|
|
|
}
|
|
|
|
|
2018-02-06 07:56:14 -08:00
|
|
|
pub fn mangled_import_name(struct_: Option<&str>, f: &str) -> String {
|
|
|
|
match struct_ {
|
|
|
|
Some(s) => format!("__wbg_s_{}_{}", s, f),
|
|
|
|
None => format!("__wbg_f_{}", f),
|
2017-12-14 21:55:21 -08:00
|
|
|
}
|
2017-12-14 19:31:01 -08:00
|
|
|
}
|
2018-02-06 07:56:14 -08:00
|
|
|
|
|
|
|
pub type Type = char;
|
|
|
|
|
2018-02-22 00:55:11 +01:00
|
|
|
pub const TYPE_ENUM: char = '\u{5d}';
|
2018-02-06 07:56:14 -08:00
|
|
|
pub const TYPE_NUMBER: char = '\u{5e}';
|
|
|
|
pub const TYPE_BORROWED_STR: char = '\u{5f}';
|
|
|
|
pub const TYPE_STRING: char = '\u{60}';
|
|
|
|
pub const TYPE_BOOLEAN: char = '\u{61}';
|
2018-02-16 18:58:37 -08:00
|
|
|
pub const TYPE_SLICE_U8: char = '\u{62}';
|
|
|
|
pub const TYPE_VECTOR_U8: char = '\u{63}';
|
|
|
|
pub const TYPE_SLICE_I8: char = '\u{64}';
|
|
|
|
pub const TYPE_VECTOR_I8: char = '\u{65}';
|
|
|
|
pub const TYPE_SLICE_U16: char = '\u{66}';
|
|
|
|
pub const TYPE_VECTOR_U16: char = '\u{67}';
|
|
|
|
pub const TYPE_SLICE_I16: char = '\u{68}';
|
|
|
|
pub const TYPE_VECTOR_I16: char = '\u{69}';
|
|
|
|
pub const TYPE_SLICE_U32: char = '\u{6a}';
|
|
|
|
pub const TYPE_VECTOR_U32: char = '\u{6b}';
|
|
|
|
pub const TYPE_SLICE_I32: char = '\u{6c}';
|
|
|
|
pub const TYPE_VECTOR_I32: char = '\u{6d}';
|
|
|
|
pub const TYPE_VECTOR_F32: char = '\u{6e}';
|
|
|
|
pub const TYPE_SLICE_F32: char = '\u{6f}';
|
|
|
|
pub const TYPE_VECTOR_F64: char = '\u{70}';
|
|
|
|
pub const TYPE_SLICE_F64: char = '\u{71}';
|
|
|
|
pub const TYPE_JS_OWNED: char = '\u{72}';
|
|
|
|
pub const TYPE_JS_REF: char = '\u{73}';
|
2018-02-06 07:56:14 -08:00
|
|
|
|
2018-02-16 19:19:31 -08:00
|
|
|
pub const TYPE_CUSTOM_START: u32 = 0x74;
|
2018-02-06 07:56:14 -08:00
|
|
|
pub const TYPE_CUSTOM_REF_FLAG: u32 = 1;
|
2018-02-06 16:06:21 -08:00
|
|
|
|
|
|
|
pub fn name_to_descriptor(name: &str) -> char {
|
|
|
|
const CHAR_MAX: u32 = 0x10ffff;
|
|
|
|
const CHAR_HOLE_START: u32 = 0xd800;
|
|
|
|
const CHAR_HOLE_END: u32 = 0xe000;
|
|
|
|
let mut h = fnv::FnvHasher::default();
|
|
|
|
name.hash(&mut h);
|
|
|
|
let val = h.finish();
|
|
|
|
let range = (CHAR_MAX - (CHAR_HOLE_END - CHAR_HOLE_START) - TYPE_CUSTOM_START) / 2;
|
|
|
|
let idx = (val % (range as u64)) as u32;
|
|
|
|
let mut ret = TYPE_CUSTOM_START + idx * 2;
|
|
|
|
if CHAR_HOLE_START <= ret && ret < CHAR_HOLE_END {
|
|
|
|
ret += CHAR_HOLE_END - CHAR_HOLE_START;
|
|
|
|
}
|
|
|
|
char::from_u32(ret).unwrap()
|
|
|
|
}
|