pub trait Trace {
unsafe fn trace(&self);
unsafe fn root(&self);
unsafe fn unroot(&self);
}
#[macro_export]
macro_rules! empty_trace {
() => {
#[inline]
unsafe fn trace(&self) {}
#[inline]
unsafe fn root(&self) {}
#[inline]
unsafe fn unroot(&self) {}
}
}
#[macro_export]
macro_rules! custom_trace {
($this:ident, $body:expr) => {
#[inline]
unsafe fn trace(&self) {
#[inline]
unsafe fn mark<T: Trace>(it: &T) {
(*it).trace();
}
let $this = self;
$body
}
#[inline]
unsafe fn root(&self) {
#[inline]
unsafe fn mark<T: Trace>(it: &T) {
(*it).root();
}
let $this = self;
$body
}
#[inline]
unsafe fn unroot(&self) {
#[inline]
unsafe fn mark<T: Trace>(it: &T) {
(*it).unroot();
}
let $this = self;
$body
}
}
}
impl<T> Trace for &'static T {
empty_trace!();
}
impl Trace for i8 { empty_trace!(); }
impl Trace for u8 { empty_trace!(); }
impl Trace for i16 { empty_trace!(); }
impl Trace for u16 { empty_trace!(); }
impl Trace for i32 { empty_trace!(); }
impl Trace for u32 { empty_trace!(); }
impl Trace for i64 { empty_trace!(); }
impl Trace for u64 { empty_trace!(); }
impl Trace for f32 { empty_trace!(); }
impl Trace for f64 { empty_trace!(); }
impl Trace for String { empty_trace!(); }
impl<T: Trace> Trace for Box<T> {
custom_trace!(this, {
mark(&**this);
});
}
impl<T: Trace> Trace for Vec<T> {
custom_trace!(this, {
for e in this {
mark(e);
}
});
}
impl<T: Trace> Trace for Option<T> {
custom_trace!(this, {
if let Some(ref v) = *this {
mark(v);
}
});
}