2022-03-01 00:45:31 +11:00
|
|
|
use crate::ClapPlugin;
|
|
|
|
|
|
|
|
/// Re-export for the wrapper.
|
|
|
|
pub use ::clap_sys::entry::clap_plugin_entry;
|
|
|
|
pub use ::clap_sys::version::CLAP_VERSION;
|
|
|
|
|
|
|
|
/// Export a CLAP plugin from this library using the provided plugin type.
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! nih_export_clap {
|
|
|
|
($plugin_ty:ty) => {
|
|
|
|
// We need a function pointer to a [wrapper::get_factory()] that creates a factory for
|
|
|
|
// `$plugin_ty`, so we need to generate the function inside of this macro
|
|
|
|
#[doc(hidden)]
|
|
|
|
mod clap {
|
|
|
|
// We don't need any special initialization or deinitialization handling
|
|
|
|
pub fn init(_plugin_path: *const ::std::os::raw::c_char) -> bool {
|
2022-03-01 01:48:26 +11:00
|
|
|
nih_log!("clap::init()");
|
2022-03-01 00:45:31 +11:00
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn deinit() {
|
2022-03-01 01:48:26 +11:00
|
|
|
nih_log!("clap::deinit()");
|
2022-03-01 00:45:31 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_factory(
|
|
|
|
factory_id: *const ::std::os::raw::c_char,
|
|
|
|
) -> *const ::std::ffi::c_void {
|
2022-03-01 01:48:26 +11:00
|
|
|
nih_log!("clap::get_factory({:?})", unsafe {
|
|
|
|
::std::ffi::CStr::from_ptr(factory_id)
|
|
|
|
});
|
2022-03-01 00:45:31 +11:00
|
|
|
|
|
|
|
std::ptr::null()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
#[used]
|
|
|
|
pub static clap_entry: ::nih_plug::wrapper::clap::clap_plugin_entry =
|
|
|
|
::nih_plug::wrapper::clap::clap_plugin_entry {
|
|
|
|
clap_version: ::nih_plug::wrapper::clap::CLAP_VERSION,
|
|
|
|
// These function pointers are marked as `extern "C"`but there's no reason why the symbols
|
|
|
|
// would need to be exported, so we need these transmutes
|
|
|
|
init: unsafe {
|
2022-03-01 01:48:26 +11:00
|
|
|
::std::mem::transmute(
|
|
|
|
self::clap::init as fn(*const ::std::os::raw::c_char) -> bool,
|
|
|
|
)
|
2022-03-01 00:45:31 +11:00
|
|
|
},
|
2022-03-01 01:48:26 +11:00
|
|
|
deinit: unsafe { ::std::mem::transmute(self::clap::deinit as fn()) },
|
2022-03-01 00:45:31 +11:00
|
|
|
get_factory: unsafe {
|
|
|
|
::std::mem::transmute(
|
2022-03-01 01:48:26 +11:00
|
|
|
self::clap::get_factory
|
2022-03-01 00:45:31 +11:00
|
|
|
as fn(*const ::std::os::raw::c_char) -> *const ::std::ffi::c_void,
|
|
|
|
)
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|