1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
//! `impl_shared_reference1 implements an OCaml
//! custom type that wraps around a shared reference to a Rust object.
macro_rules! impl_shared_reference {
($name: ident => $typ: ty) => {
#[derive(Debug, ::ocaml_gen::CustomType)]
pub struct $name(pub ::std::sync::Arc<$typ>);
//
// necessary ocaml.rs stuff
//
impl $name {
extern "C" fn caml_pointer_finalize(v: ::ocaml::Raw) {
unsafe {
let v: ::ocaml::Pointer<Self> = v.as_pointer();
v.drop_in_place();
}
}
extern "C" fn caml_pointer_compare(_: ::ocaml::Raw, _: ::ocaml::Raw) -> i32 {
// Always return equal. We can use this for sanity checks,
// anything else using this would be broken anyway.
0
}
pub fn new(x: $typ) -> Self {
Self(::std::sync::Arc::new(x))
}
}
::ocaml::custom!($name {
finalize: $name::caml_pointer_finalize,
compare: $name::caml_pointer_compare,
});
unsafe impl<'a> ::ocaml::FromValue<'a> for $name {
fn from_value(value: ::ocaml::Value) -> Self {
let x: ::ocaml::Pointer<Self> = ::ocaml::FromValue::from_value(value);
Self(x.as_ref().0.clone())
}
}
//
// useful implementations
//
impl ::core::ops::Deref for $name {
type Target = ::std::sync::Arc<$typ>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
};
}