pub type TypeName = &'static str;
#[derive(Clone)]
pub struct Parameter {
pub name: String,
pub ty: TypeName,
}
#[derive(Clone)]
pub struct Method
{
pub method_pointer: *mut fn(),
pub lang_marshalls: Vec<(&'static str, *mut fn())>,
pub name: &'static str,
pub parameters: Vec<Parameter>,
pub ret: Option<TypeName>,
pub is_static: bool,
}
#[derive(Clone)]
pub struct Field
{
pub field_offset: usize,
pub ty: TypeName,
pub name: &'static str,
}
#[derive(Clone)]
pub struct Class
{
pub name: String,
pub fields: Vec<Field>,
pub methods: Vec<Method>,
}
pub trait PluggableFields
{
fn pluggable_fields(&self) -> Vec<Field>;
}
pub trait PluggableMethods
{
fn pluggable_methods(&self) -> Vec<Method>;
}
pub trait Marshall
{
type Value;
fn to_bool(value: Self::Value) -> bool;
fn to_u8(value: Self::Value) -> u8;
fn to_u16(value: Self::Value) -> u16;
fn to_u32(value: Self::Value) -> u32;
fn to_u64(value: Self::Value) -> u64;
fn to_i8(value: Self::Value) -> i8;
fn to_i16(value: Self::Value) -> i16;
fn to_i32(value: Self::Value) -> i32;
fn to_i64(value: Self::Value) -> i64;
fn to_f32(value: Self::Value) -> f32;
fn to_f64(value: Self::Value) -> f64;
fn to_string(value: Self::Value) -> String;
}
pub trait Pluggable : PluggableFields + PluggableMethods
{
fn name(&self) -> &'static str;
fn fields(&self) -> Vec<Field> { PluggableFields::pluggable_fields(self) }
fn methods(&self) -> Vec<Method> { PluggableMethods::pluggable_methods(self) }
fn class(&self) -> Class {
Class {
name: self.name().to_owned(),
fields: self.fields(),
methods: self.methods(),
}
}
}
impl Method {
pub fn marshall(&self, lang_name: &str) -> *mut fn() {
self.lang_marshalls.iter().find(|m| m.0 == lang_name).unwrap().1
}
}