2022-12-04 10:32:10 +11:00
|
|
|
macro_rules! ffi_body {
|
|
|
|
($body:block) => {
|
|
|
|
{
|
|
|
|
let result: Result<(), $crate::error::LibrashaderError> = try {
|
|
|
|
$body
|
|
|
|
};
|
|
|
|
|
|
|
|
let Err(e) = result else {
|
|
|
|
return $crate::error::LibrashaderError::ok()
|
|
|
|
};
|
|
|
|
e.export()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
(|$($ref_capture:ident),*|; mut |$($mut_capture:ident),*| $body:block) => {
|
|
|
|
{
|
|
|
|
$($crate::error::assert_non_null!($ref_capture);)*
|
|
|
|
$(let $ref_capture = unsafe { &*$ref_capture };)*
|
|
|
|
$($crate::error::assert_non_null!($mut_capture);)*
|
|
|
|
$(let $mut_capture = unsafe { &mut *$mut_capture };)*
|
|
|
|
let result: Result<(), $crate::error::LibrashaderError> = try {
|
|
|
|
$body
|
|
|
|
};
|
|
|
|
|
|
|
|
let Err(e) = result else {
|
|
|
|
return $crate::error::LibrashaderError::ok()
|
|
|
|
};
|
|
|
|
e.export()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
(mut |$($mut_capture:ident),*| $body:block) => {
|
|
|
|
{
|
|
|
|
$($crate::error::assert_non_null!($mut_capture);)*
|
|
|
|
$(let $mut_capture = unsafe { &mut *$mut_capture };)*
|
|
|
|
let result: Result<(), $crate::error::LibrashaderError> = try {
|
|
|
|
$body
|
|
|
|
};
|
|
|
|
|
|
|
|
let Err(e) = result else {
|
|
|
|
return $crate::error::LibrashaderError::ok()
|
|
|
|
};
|
|
|
|
e.export()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
(|$($ref_capture:ident),*| $body:block) => {
|
|
|
|
{
|
|
|
|
$($crate::error::assert_non_null!($ref_capture);)*
|
|
|
|
$(let $ref_capture = unsafe { &*$ref_capture };)*
|
|
|
|
let result: Result<(), $crate::error::LibrashaderError> = try {
|
|
|
|
$body
|
|
|
|
};
|
|
|
|
|
|
|
|
let Err(e) = result else {
|
|
|
|
return $crate::error::LibrashaderError::ok()
|
|
|
|
};
|
|
|
|
e.export()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! extern_fn {
|
|
|
|
($(#[$($attrss:tt)*])* fn $func_name:ident ($($arg_name:ident : $arg_ty:ty),*) $body:block) => {
|
|
|
|
paste::paste! {
|
|
|
|
pub type [<PFN_ $func_name>] = unsafe extern "C" fn($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
$(#[$($attrss)*])*
|
2023-01-14 08:05:13 +11:00
|
|
|
pub extern "C" fn $func_name($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t {
|
2022-12-04 10:32:10 +11:00
|
|
|
$crate::ffi::ffi_body!($body)
|
|
|
|
}
|
2023-01-14 08:05:13 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
($(#[$($attrss:tt)*])* raw fn $func_name:ident ($($arg_name:ident : $arg_ty:ty),*) $body:block) => {
|
|
|
|
paste::paste! {
|
|
|
|
pub type [<PFN_ $func_name>] = unsafe extern "C" fn($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
$(#[$($attrss)*])*
|
|
|
|
pub extern "C" fn $func_name($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t {
|
|
|
|
$body
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($(#[$($attrss:tt)*])* fn $func_name:ident ($($arg_name:ident : $arg_ty:ty),*) |$($ref_capture:ident),*|; mut |$($mut_capture:ident),*| $body:block) => {
|
|
|
|
paste::paste! {
|
|
|
|
pub type [<PFN_ $func_name>] = unsafe extern "C" fn($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
$(#[$($attrss)*])*
|
|
|
|
pub extern "C" fn $func_name($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t {
|
|
|
|
$crate::ffi::ffi_body!(|$($ref_capture),*|; mut |$($mut_capture),*| $body)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
($(#[$($attrss:tt)*])* fn $func_name:ident ($($arg_name:ident : $arg_ty:ty),*) mut |$($mut_capture:ident),*| $body:block) => {
|
|
|
|
paste::paste! {
|
|
|
|
pub type [<PFN_ $func_name>] = unsafe extern "C" fn($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
$(#[$($attrss)*])*
|
|
|
|
pub extern "C" fn $func_name($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t {
|
|
|
|
$crate::ffi::ffi_body!(mut |$($mut_capture),*| $body)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
($(#[$($attrss:tt)*])* fn $func_name:ident ($($arg_name:ident : $arg_ty:ty),*) |$($ref_capture:ident),*| $body:block) => {
|
|
|
|
paste::paste! {
|
|
|
|
pub type [<PFN_ $func_name>] = unsafe extern "C" fn($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
$(#[$($attrss)*])*
|
|
|
|
pub extern "C" fn $func_name($($arg_name: $arg_ty,)*) -> $crate::ctypes::libra_error_t {
|
|
|
|
$crate::ffi::ffi_body!(|$($ref_capture),*| $body)
|
|
|
|
}
|
|
|
|
};
|
2022-12-04 10:32:10 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) use extern_fn;
|
2022-12-05 16:06:37 +11:00
|
|
|
pub(crate) use ffi_body;
|