mlua/src/macros.rs

81 lines
1.6 KiB
Rust
Raw Normal View History

macro_rules! bug_msg {
($arg:expr) => {
concat!(
2019-10-01 11:11:12 -04:00
"mlua internal error: ",
$arg,
" (this is a bug, please file an issue)"
)
};
}
2017-12-02 17:04:33 -05:00
macro_rules! cstr {
2018-08-05 09:51:39 -04:00
($s:expr) => {
concat!($s, "\0") as *const str as *const [::std::os::raw::c_char]
as *const ::std::os::raw::c_char
};
2017-12-02 17:04:33 -05:00
}
2019-10-01 11:11:12 -04:00
macro_rules! mlua_panic {
2018-02-10 17:49:54 -05:00
($msg:expr) => {
panic!(bug_msg!($msg));
2018-02-10 17:49:54 -05:00
};
($msg:expr,) => {
2019-10-01 11:11:12 -04:00
mlua_panic!($msg);
2018-02-10 17:49:54 -05:00
};
($msg:expr, $($arg:expr),+) => {
panic!(bug_msg!($msg), $($arg),+);
};
($msg:expr, $($arg:expr),+,) => {
2019-10-01 11:11:12 -04:00
mlua_panic!($msg, $($arg),+);
};
}
2019-10-01 11:11:12 -04:00
macro_rules! mlua_assert {
($cond:expr, $msg:expr) => {
assert!($cond, bug_msg!($msg));
};
($cond:expr, $msg:expr,) => {
2019-10-01 11:11:12 -04:00
mlua_assert!($cond, $msg);
};
($cond:expr, $msg:expr, $($arg:expr),+) => {
assert!($cond, bug_msg!($msg), $($arg),+);
};
($cond:expr, $msg:expr, $($arg:expr),+,) => {
2019-10-01 11:11:12 -04:00
mlua_assert!($cond, $msg, $($arg),+);
2017-12-02 17:04:33 -05:00
};
}
2018-02-10 17:49:54 -05:00
2019-10-01 11:11:12 -04:00
macro_rules! mlua_debug_assert {
($cond:expr, $msg:expr) => {
debug_assert!($cond, bug_msg!($msg));
};
($cond:expr, $msg:expr,) => {
2019-10-01 11:11:12 -04:00
mlua_debug_assert!($cond, $msg);
};
($cond:expr, $msg:expr, $($arg:expr),+) => {
debug_assert!($cond, bug_msg!($msg), $($arg),+);
};
($cond:expr, $msg:expr, $($arg:expr),+,) => {
2019-10-01 11:11:12 -04:00
mlua_debug_assert!($cond, $msg, $($arg),+);
};
}
2019-10-01 11:11:12 -04:00
macro_rules! mlua_expect {
($res:expr, $msg:expr) => {
$res.expect(bug_msg!($msg))
2018-02-10 17:49:54 -05:00
};
($res:expr, $msg:expr,) => {
2019-10-01 11:11:12 -04:00
mlua_expect!($res, $msg)
2018-02-10 17:49:54 -05:00
};
}