forked from mirrors/gstreamer-rs
6cd711cfdf
Use re-export pattern from glib. Fix #255
99 lines
4.9 KiB
Rust
99 lines
4.9 KiB
Rust
// Copyright (C) 2016-2018 Sebastian Dröge <sebastian@centricular.com>
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
pub const MAJOR_VERSION: i32 = 1;
|
|
|
|
#[cfg(not(feature = "v1_10"))]
|
|
pub const MINOR_VERSION: i32 = 8;
|
|
#[cfg(all(feature = "v1_10", not(feature = "v1_12")))]
|
|
pub const MINOR_VERSION: i32 = 10;
|
|
#[cfg(feature = "v1_12")]
|
|
pub const MINOR_VERSION: i32 = 12;
|
|
|
|
#[macro_export]
|
|
macro_rules! gst_plugin_define(
|
|
($name:ident, $description:expr, $plugin_init:ident,
|
|
$version:expr, $license:expr, $source:expr,
|
|
$package:expr, $origin:expr, $release_datetime:expr) => {
|
|
pub mod plugin_desc {
|
|
use $crate::glib::translate::{from_glib_borrow, ToGlib, from_glib};
|
|
|
|
#[repr(C)]
|
|
pub struct GstPluginDesc($crate::gst_sys::GstPluginDesc);
|
|
unsafe impl Send for GstPluginDesc {}
|
|
unsafe impl Sync for GstPluginDesc {}
|
|
|
|
#[no_mangle]
|
|
#[allow(non_upper_case_globals)]
|
|
pub static gst_plugin_desc: GstPluginDesc = GstPluginDesc($crate::gst_sys::GstPluginDesc {
|
|
major_version: $crate::subclass::MAJOR_VERSION,
|
|
minor_version: $crate::subclass::MINOR_VERSION,
|
|
name: concat!(stringify!($name), "\0") as *const str as *const _,
|
|
description: concat!($description, "\0") as *const str as *const _,
|
|
plugin_init: Some(plugin_init_trampoline),
|
|
version: concat!($version, "\0") as *const str as *const _,
|
|
license: concat!($license, "\0") as *const str as *const _,
|
|
source: concat!($source, "\0") as *const str as *const _,
|
|
package: concat!($package, "\0") as *const str as *const _,
|
|
origin: concat!($origin, "\0") as *const str as *const _,
|
|
release_datetime: concat!($release_datetime, "\0") as *const str as *const _,
|
|
_gst_reserved: [0 as $crate::glib_sys::gpointer; 4],
|
|
});
|
|
|
|
pub fn plugin_register_static() -> Result<(), glib::BoolError> {
|
|
unsafe {
|
|
$crate::glib::glib_result_from_gboolean!(
|
|
$crate::gst_sys::gst_plugin_register_static(
|
|
$crate::subclass::MAJOR_VERSION,
|
|
$crate::subclass::MINOR_VERSION,
|
|
concat!(stringify!($name), "\0") as *const str as *const _,
|
|
concat!($description, "\0") as *const str as _,
|
|
Some(plugin_init_trampoline),
|
|
concat!($version, "\0") as *const str as *const _,
|
|
concat!($license, "\0") as *const str as *const _,
|
|
concat!($source, "\0") as *const str as *const _,
|
|
concat!($package, "\0") as *const str as *const _,
|
|
concat!($origin, "\0") as *const str as *const _,
|
|
),
|
|
"Failed to register the plugin"
|
|
)
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::missing_safety_doc)]
|
|
unsafe extern "C" fn plugin_init_trampoline(plugin: *mut $crate::gst_sys::GstPlugin) -> $crate::glib_sys::gboolean {
|
|
use std::panic::{self, AssertUnwindSafe};
|
|
|
|
let panic_result = panic::catch_unwind(AssertUnwindSafe(|| super::$plugin_init(&from_glib_borrow(plugin))));
|
|
match panic_result {
|
|
Ok(register_result) => match register_result {
|
|
Ok(_) => $crate::glib_sys::GTRUE,
|
|
Err(err) => {
|
|
let cat = $crate::DebugCategory::get("GST_PLUGIN_LOADING").unwrap();
|
|
$crate::gst_error!(cat, "Failed to register plugin: {}", err);
|
|
$crate::glib_sys::GFALSE
|
|
}
|
|
}
|
|
Err(err) => {
|
|
let cat = $crate::DebugCategory::get("GST_PLUGIN_LOADING").unwrap();
|
|
if let Some(cause) = err.downcast_ref::<&str>() {
|
|
$crate::gst_error!(cat, "Failed to initialize plugin due to panic: {}", cause);
|
|
} else if let Some(cause) = err.downcast_ref::<String>() {
|
|
$crate::gst_error!(cat, "Failed to initialize plugin due to panic: {}", cause);
|
|
} else {
|
|
$crate::gst_error!(cat, "Failed to initialize plugin due to panic");
|
|
}
|
|
|
|
$crate::glib_sys::GFALSE
|
|
}
|
|
}
|
|
}
|
|
}
|
|
pub use plugin_desc::plugin_register_static;
|
|
};
|
|
);
|