2021-09-23 02:29:09 +09:00
|
|
|
use proc_macro2::Ident;
|
2021-11-10 20:04:36 +09:00
|
|
|
use syn::{Attribute, Expr, Type};
|
2021-09-23 02:29:09 +09:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiFn {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
|
|
|
pub attrs: Vec<Attribute>,
|
|
|
|
pub args: Vec<NapiFnArgKind>,
|
2021-10-25 01:00:31 +09:00
|
|
|
pub ret: Option<syn::Type>,
|
|
|
|
pub is_ret_result: bool,
|
2021-09-23 02:29:09 +09:00
|
|
|
pub is_async: bool,
|
|
|
|
pub fn_self: Option<FnSelf>,
|
|
|
|
pub kind: FnKind,
|
|
|
|
pub vis: syn::Visibility,
|
|
|
|
pub parent: Option<Ident>,
|
|
|
|
pub strict: bool,
|
2021-11-23 20:00:31 +09:00
|
|
|
pub js_mod: Option<String>,
|
2021-11-26 18:26:14 +09:00
|
|
|
pub ts_args_type: Option<String>,
|
|
|
|
pub ts_return_type: Option<String>,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-09-23 02:29:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct CallbackArg {
|
|
|
|
pub pat: Box<syn::Pat>,
|
|
|
|
pub args: Vec<syn::Type>,
|
|
|
|
pub ret: Option<syn::Type>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum NapiFnArgKind {
|
|
|
|
PatType(Box<syn::PatType>),
|
|
|
|
Callback(Box<CallbackArg>),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub enum FnKind {
|
|
|
|
Normal,
|
|
|
|
Constructor,
|
2021-11-05 19:31:36 +09:00
|
|
|
Factory,
|
2021-09-23 02:29:09 +09:00
|
|
|
Getter,
|
|
|
|
Setter,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub enum FnSelf {
|
|
|
|
Value,
|
|
|
|
Ref,
|
|
|
|
MutRef,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiStruct {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
|
|
|
pub vis: syn::Visibility,
|
|
|
|
pub fields: Vec<NapiStructField>,
|
|
|
|
pub is_tuple: bool,
|
2021-09-28 01:01:19 +09:00
|
|
|
pub kind: NapiStructKind,
|
2021-11-23 20:00:31 +09:00
|
|
|
pub js_mod: Option<String>,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-09-28 01:01:19 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub enum NapiStructKind {
|
|
|
|
None,
|
|
|
|
Constructor,
|
|
|
|
Object,
|
2021-09-23 02:29:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiStructField {
|
|
|
|
pub name: syn::Member,
|
|
|
|
pub js_name: String,
|
|
|
|
pub ty: syn::Type,
|
|
|
|
pub getter: bool,
|
|
|
|
pub setter: bool,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-09-23 02:29:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiImpl {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
|
|
|
pub items: Vec<NapiFn>,
|
2021-11-02 21:36:34 +09:00
|
|
|
pub task_output_type: Option<Type>,
|
2021-11-23 20:00:31 +09:00
|
|
|
pub js_mod: Option<String>,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-09-23 02:29:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiEnum {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
|
|
|
pub variants: Vec<NapiEnumVariant>,
|
2021-11-23 20:00:31 +09:00
|
|
|
pub js_mod: Option<String>,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-09-23 02:29:09 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiEnumVariant {
|
|
|
|
pub name: Ident,
|
|
|
|
pub val: i32,
|
|
|
|
pub comments: Vec<String>,
|
|
|
|
}
|
2021-11-10 20:04:36 +09:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiConst {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
|
|
|
pub type_name: Type,
|
|
|
|
pub value: Expr,
|
2021-11-23 20:00:31 +09:00
|
|
|
pub js_mod: Option<String>,
|
2021-11-29 13:54:45 +09:00
|
|
|
pub comments: Vec<String>,
|
2021-11-23 20:00:31 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct NapiMod {
|
|
|
|
pub name: Ident,
|
|
|
|
pub js_name: String,
|
2021-11-10 20:04:36 +09:00
|
|
|
}
|