rhai/src/reify.rs

30 lines
1.0 KiB
Rust
Raw Normal View History

/// Runs `$code` if `$old` is of type `$t`.
2022-02-06 16:02:59 +01:00
///
/// This macro is primarily used for type casting between known types.
#[macro_export]
macro_rules! reify {
($old:ident, |$new:ident : $t:ty| $code:expr, || $fallback:expr) => {{
#[allow(unused_imports)]
2022-02-06 16:02:59 +01:00
use std::any::Any;
2022-02-07 05:02:00 +01:00
if std::any::TypeId::of::<$t>() == std::any::Any::type_id(&$old) {
// SAFETY: This is safe because we check to make sure the two types are
// actually the same type.
2022-02-06 16:02:59 +01:00
let $new: $t = unsafe { std::mem::transmute_copy(&std::mem::ManuallyDrop::new($old)) };
$code
} else {
$fallback
}
}};
($old:expr, |$new:ident : $t:ty| $code:expr, || $fallback:expr) => {{
let old = $old;
2022-02-06 16:02:59 +01:00
reify!(old, |$new: $t| $code, || $fallback)
}};
($old:ident, |$new:ident : $t:ty| $code:expr) => {
2022-02-06 16:02:59 +01:00
reify!($old, |$new: $t| $code, || ())
};
($old:expr, |$new:ident : $t:ty| $code:expr) => {
2022-02-06 16:02:59 +01:00
reify!($old, |$new: $t| $code, || ())
};
}