1
0
Fork 0
nih-plug/src/wrapper/clap.rs

66 lines
2.4 KiB
Rust
Raw Normal View History

mod context;
mod descriptor;
mod factory;
2022-03-01 04:27:57 +11:00
mod plugin;
mod util;
/// Re-export for the wrapper.
pub use self::factory::Factory;
pub use clap_sys::entry::clap_plugin_entry;
pub use clap_sys::plugin_factory::CLAP_PLUGIN_FACTORY_ID;
pub use clap_sys::version::CLAP_VERSION;
pub use lazy_static::lazy_static;
/// Export a CLAP plugin from this library using the provided plugin type.
#[macro_export]
macro_rules! nih_export_clap {
($plugin_ty:ty) => {
2022-03-01 04:17:01 +11:00
// 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 {
// Because `$plugin_ty` is likely defined in the enclosing scope
use super::*;
// We don't use generics inside of statics, so this lazy_static is used as kind of an
// escape hatch
::nih_plug::wrapper::clap::lazy_static! {
static ref FACTORY: ::nih_plug::wrapper::clap::Factory<$plugin_ty> = ::nih_plug::wrapper::clap::Factory::default();
}
// We don't need any special initialization or deinitialization handling
2022-03-01 02:46:06 +11:00
pub extern "C" fn init(_plugin_path: *const ::std::os::raw::c_char) -> bool {
true
}
2022-03-01 04:17:01 +11:00
pub extern "C" fn deinit() {}
2022-03-01 02:46:06 +11:00
pub extern "C" fn get_factory(
factory_id: *const ::std::os::raw::c_char,
) -> *const ::std::ffi::c_void {
if !factory_id.is_null()
&& unsafe { ::std::ffi::CStr::from_ptr(factory_id) }
2022-03-01 04:17:01 +11:00
== unsafe {
::std::ffi::CStr::from_ptr(
::nih_plug::wrapper::clap::CLAP_PLUGIN_FACTORY_ID,
)
}
{
&(*FACTORY).clap_plugin_factory as *const _ as *const ::std::ffi::c_void
} else {
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,
2022-03-01 02:46:06 +11:00
init: self::clap::init,
deinit: self::clap::deinit,
get_factory: self::clap::get_factory,
};
};
}