Store whether GStreamer was initialized in an AtomicBool

Avoids a function call in the normal case.
This commit is contained in:
Sebastian Dröge 2022-06-27 10:28:28 +03:00
parent 7754b8dd70
commit c9d07219c8
18 changed files with 137 additions and 36 deletions

View file

@ -11,9 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
#[allow(unused_unsafe)] if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { #[allow(unused_unsafe)]
panic!("GStreamer has not been initialized. Call `gst::init` first."); if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -12,8 +12,13 @@ pub use gst_base;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -11,8 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -11,8 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -11,8 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -39,8 +39,13 @@ pub unsafe fn deinit() {
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
crate::GES_INIT.call_once(|| { crate::GES_INIT.call_once(|| {
unsafe { ffi::ges_init() }; unsafe { ffi::ges_init() };

View file

@ -13,8 +13,13 @@ pub use gst_video;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -11,8 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -15,8 +15,13 @@ static PBUTILS_INIT: Once = Once::new();
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
crate::PBUTILS_INIT.call_once(|| { crate::PBUTILS_INIT.call_once(|| {
unsafe { ffi::gst_pb_utils_init() }; unsafe { ffi::gst_pb_utils_init() };

View file

@ -14,7 +14,16 @@ macro_rules! skip_assert_initialized {
} }
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => {}; () => {
if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
#[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
}
};
} }
#[allow(clippy::needless_borrow)] #[allow(clippy::needless_borrow)]

View file

@ -14,7 +14,16 @@ macro_rules! skip_assert_initialized {
} }
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => {}; () => {
if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
#[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
}
};
} }
#[allow(clippy::unreadable_literal)] #[allow(clippy::unreadable_literal)]

View file

@ -12,8 +12,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -15,8 +15,13 @@ pub use gst_sdp;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -12,8 +12,13 @@ pub use gst_sdp;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -11,8 +11,13 @@ pub use gst;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -12,9 +12,13 @@ pub use gst_base;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
#[allow(unused_unsafe)] if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { #[allow(unused_unsafe)]
panic!("GStreamer has not been initialized. Call `gst::init` first."); if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -12,8 +12,13 @@ pub use gst_sdp;
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !gst::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { gst::ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
gst::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }

View file

@ -14,10 +14,18 @@ pub use paste;
use glib::translate::{from_glib, from_glib_full}; use glib::translate::{from_glib, from_glib_full};
#[doc(hidden)]
pub static INITIALIZED: std::sync::atomic::AtomicBool = std::sync::atomic::AtomicBool::new(false);
macro_rules! assert_initialized_main_thread { macro_rules! assert_initialized_main_thread {
() => { () => {
if unsafe { ffi::gst_is_initialized() } != glib::ffi::GTRUE { if !crate::INITIALIZED.load(std::sync::atomic::Ordering::SeqCst) {
panic!("GStreamer has not been initialized. Call `gst::init` first."); #[allow(unused_unsafe)]
if unsafe { ffi::gst_is_initialized() } != glib::ffi::GTRUE {
panic!("GStreamer has not been initialized. Call `gst::init` first.");
} else {
crate::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
}
} }
}; };
} }
@ -263,6 +271,7 @@ pub fn init() -> Result<(), glib::Error> {
ptr::null_mut(), ptr::null_mut(),
&mut error, &mut error,
)) { )) {
crate::INITIALIZED.store(true, std::sync::atomic::Ordering::SeqCst);
Ok(()) Ok(())
} else { } else {
Err(from_glib_full(error)) Err(from_glib_full(error))
@ -278,6 +287,7 @@ pub fn init() -> Result<(), glib::Error> {
/// This must only be called once during the lifetime of the process, once no GStreamer threads /// This must only be called once during the lifetime of the process, once no GStreamer threads
/// are running anymore and all GStreamer resources are released. /// are running anymore and all GStreamer resources are released.
pub unsafe fn deinit() { pub unsafe fn deinit() {
crate::INITIALIZED.store(false, std::sync::atomic::Ordering::SeqCst);
ffi::gst_deinit(); ffi::gst_deinit();
} }