pub mod abi;
mod stub;
use crate::flags::DataType;
use abi::*;
pub use stub::ToStub;
#[repr(C)]
pub struct Description {
pub module: Module,
pub version: &'static str,
}
impl Description {
pub fn new(module: Module) -> Self {
Self {
module,
version: crate::VERSION,
}
}
}
#[repr(C)]
pub struct Module {
pub name: Str,
pub functions: Vec<Function>,
pub classes: Vec<Class>,
pub constants: Vec<Constant>,
}
#[repr(C)]
pub struct DocBlock(pub Vec<Str>);
#[repr(C)]
pub struct Function {
pub name: Str,
pub docs: DocBlock,
pub ret: Option<Retval>,
pub params: Vec<Parameter>,
}
#[repr(C)]
pub struct Parameter {
pub name: Str,
pub ty: Option<DataType>,
pub nullable: bool,
pub default: Option<Str>,
}
#[repr(C)]
pub struct Class {
pub name: Str,
pub docs: DocBlock,
pub extends: Option<Str>,
pub implements: Vec<Str>,
pub properties: Vec<Property>,
pub methods: Vec<Method>,
pub constants: Vec<Constant>,
}
#[repr(C)]
pub struct Property {
pub name: Str,
pub docs: DocBlock,
pub ty: Option<DataType>,
pub vis: Visibility,
pub static_: bool,
pub nullable: bool,
pub default: Option<Str>,
}
#[repr(C)]
pub struct Method {
pub name: Str,
pub docs: DocBlock,
pub ty: MethodType,
pub params: Vec<Parameter>,
pub retval: Option<Retval>,
pub _static: bool,
pub visibility: Visibility,
}
#[repr(C)]
pub struct Retval {
pub ty: DataType,
pub nullable: bool,
}
#[repr(C)]
#[derive(Clone, Copy)]
pub enum MethodType {
Member,
Static,
Constructor,
}
#[repr(C)]
#[derive(Clone, Copy)]
pub enum Visibility {
Private,
Protected,
Public,
}
#[repr(C)]
pub struct Constant {
pub name: Str,
pub docs: DocBlock,
pub value: Option<Str>,
}