1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Take a look at the license at the top of the repository in the LICENSE file.

use glib::{prelude::*, translate::*};

use crate::{prelude::*, Plugin, PluginFlags, StructureRef};

impl Plugin {
    /// Gets the plugin specific data cache. If it is [`None`] there is no cached data
    /// stored. This is the case when the registry is getting rebuilt.
    ///
    /// # Returns
    ///
    /// The cached data as a
    /// [`Structure`][crate::Structure] or [`None`].
    #[doc(alias = "get_cache_data")]
    #[doc(alias = "gst_plugin_get_cache_data")]
    pub fn cache_data(&self) -> Option<&StructureRef> {
        unsafe {
            let cache_data = ffi::gst_plugin_get_cache_data(self.to_glib_none().0);
            if cache_data.is_null() {
                None
            } else {
                Some(StructureRef::from_glib_borrow(cache_data))
            }
        }
    }

    #[doc(alias = "get_plugin_flags")]
    pub fn plugin_flags(&self) -> PluginFlags {
        unsafe {
            let ptr: *mut ffi::GstObject = self.as_ptr() as *mut _;
            let _guard = self.object_lock();
            from_glib((*ptr).flags)
        }
    }
}