gstreamer-validate 0.25.0-alpha.2

Rust bindings for GStreamer Validate library
Documentation
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT

use crate::{Reporter, Runner, ffi};
use glib::{
    prelude::*,
    signal::{SignalHandlerId, connect_raw},
    translate::*,
};
use std::boxed::Box as Box_;

glib::wrapper! {
    #[doc(alias = "GstValidateMonitor")]
    pub struct Monitor(Object<ffi::GstValidateMonitor, ffi::GstValidateMonitorClass>) @extends gst::Object, @implements Reporter;

    match fn {
        type_ => || ffi::gst_validate_monitor_get_type(),
    }
}

impl Monitor {
    pub const NONE: Option<&'static Monitor> = None;

    #[doc(alias = "gst_validate_monitor_factory_create")]
    pub fn factory_create(
        target: &impl IsA<gst::Object>,
        runner: &impl IsA<Runner>,
        parent: Option<&impl IsA<Monitor>>,
    ) -> Monitor {
        skip_assert_initialized!();
        unsafe {
            from_glib_full(ffi::gst_validate_monitor_factory_create(
                target.as_ref().to_glib_none().0,
                runner.as_ref().to_glib_none().0,
                parent.map(|p| p.as_ref()).to_glib_none().0,
            ))
        }
    }
}

unsafe impl Send for Monitor {}
unsafe impl Sync for Monitor {}

pub trait MonitorExt: IsA<Monitor> + 'static {
    //#[doc(alias = "gst_validate_monitor_attach_override")]
    //fn attach_override(&self, override_: /*Ignored*/&Override) {
    //    unsafe { TODO: call ffi:gst_validate_monitor_attach_override() }
    //}

    #[doc(alias = "gst_validate_monitor_get_element")]
    #[doc(alias = "get_element")]
    fn element(&self) -> Option<gst::Element> {
        unsafe {
            from_glib_none(ffi::gst_validate_monitor_get_element(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "gst_validate_monitor_get_element_name")]
    #[doc(alias = "get_element_name")]
    fn element_name(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_full(ffi::gst_validate_monitor_get_element_name(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "gst_validate_monitor_get_pipeline")]
    #[doc(alias = "get_pipeline")]
    fn pipeline(&self) -> Option<gst::Pipeline> {
        unsafe {
            from_glib_full(ffi::gst_validate_monitor_get_pipeline(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[doc(alias = "gst_validate_monitor_get_target")]
    #[doc(alias = "get_target")]
    fn target(&self) -> Option<gst::Object> {
        unsafe {
            from_glib_full(ffi::gst_validate_monitor_get_target(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    //#[doc(alias = "gst_validate_monitor_set_media_descriptor")]
    //fn set_media_descriptor(&self, media_descriptor: /*Ignored*/&MediaDescriptor) {
    //    unsafe { TODO: call ffi:gst_validate_monitor_set_media_descriptor() }
    //}

    fn object(&self) -> Option<glib::Object> {
        ObjectExt::property(self.as_ref(), "object")
    }

    fn set_pipeline<P: IsA<gst::Pipeline>>(&self, pipeline: Option<&P>) {
        ObjectExt::set_property(self.as_ref(), "pipeline", pipeline)
    }

    #[doc(alias = "validate-parent")]
    fn validate_parent(&self) -> Option<Monitor> {
        ObjectExt::property(self.as_ref(), "validate-parent")
    }

    //fn verbosity(&self) -> /*Ignored*/VerbosityFlags {
    //    ObjectExt::property(self.as_ref(), "verbosity")
    //}

    //fn set_verbosity(&self, verbosity: /*Ignored*/VerbosityFlags) {
    //    ObjectExt::set_property(self.as_ref(),"verbosity", verbosity)
    //}

    #[doc(alias = "pipeline")]
    fn connect_pipeline_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_pipeline_trampoline<
            P: IsA<Monitor>,
            F: Fn(&P) + Send + Sync + 'static,
        >(
            this: *mut ffi::GstValidateMonitor,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            unsafe {
                let f: &F = &*(f as *const F);
                f(Monitor::from_glib_borrow(this).unsafe_cast_ref())
            }
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                c"notify::pipeline".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_pipeline_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    #[doc(alias = "verbosity")]
    fn connect_verbosity_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_verbosity_trampoline<
            P: IsA<Monitor>,
            F: Fn(&P) + Send + Sync + 'static,
        >(
            this: *mut ffi::GstValidateMonitor,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            unsafe {
                let f: &F = &*(f as *const F);
                f(Monitor::from_glib_borrow(this).unsafe_cast_ref())
            }
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                c"notify::verbosity".as_ptr() as *const _,
                Some(std::mem::transmute::<*const (), unsafe extern "C" fn()>(
                    notify_verbosity_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl<O: IsA<Monitor>> MonitorExt for O {}