gstreamer-rs/gstreamer/src/auto/device.rs

166 lines
4.8 KiB
Rust
Raw Normal View History

2018-04-23 17:34:22 +00:00
// 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)
2017-07-04 22:47:33 +00:00
// DO NOT EDIT
2020-11-21 13:46:33 +00:00
use crate::Caps;
use crate::Element;
use crate::Object;
use crate::Structure;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
2017-07-04 22:47:33 +00:00
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
2017-07-04 22:47:33 +00:00
use glib::translate::*;
use std::boxed::Box as Box_;
2020-04-13 16:11:33 +00:00
use std::mem::transmute;
2017-07-04 22:47:33 +00:00
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstDevice")]
2020-11-21 13:46:33 +00:00
pub struct Device(Object<ffi::GstDevice, ffi::GstDeviceClass>) @extends Object;
2017-07-04 22:47:33 +00:00
match fn {
type_ => || ffi::gst_device_get_type(),
2017-07-04 22:47:33 +00:00
}
}
2021-11-03 17:28:46 +00:00
impl Device {
pub const NONE: Option<&'static Device> = None;
}
2019-01-16 11:32:39 +00:00
2021-11-16 14:02:58 +00:00
unsafe impl Send for Device {}
unsafe impl Sync for Device {}
pub trait DeviceExt: 'static {
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_create_element")]
fn create_element(&self, name: Option<&str>) -> Result<Element, glib::BoolError>;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_get_caps")]
#[doc(alias = "get_caps")]
2021-04-11 19:38:18 +00:00
fn caps(&self) -> Option<Caps>;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_get_device_class")]
#[doc(alias = "get_device_class")]
2021-04-11 19:38:18 +00:00
fn device_class(&self) -> glib::GString;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_get_display_name")]
#[doc(alias = "get_display_name")]
2021-04-11 19:38:18 +00:00
fn display_name(&self) -> glib::GString;
2017-07-04 22:47:33 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_get_properties")]
#[doc(alias = "get_properties")]
2021-04-11 19:38:18 +00:00
fn properties(&self) -> Option<Structure>;
2017-07-10 21:02:08 +00:00
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_has_classes")]
2017-07-04 22:47:33 +00:00
fn has_classes(&self, classes: &str) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_has_classesv")]
2017-07-04 22:47:33 +00:00
fn has_classesv(&self, classes: &[&str]) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_device_reconfigure_element")]
fn reconfigure_element(
&self,
element: &impl IsA<Element>,
) -> Result<(), glib::error::BoolError>;
2017-07-04 22:47:33 +00:00
#[doc(alias = "removed")]
2017-09-09 13:01:32 +00:00
fn connect_removed<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId;
2017-07-04 22:47:33 +00:00
}
impl<O: IsA<Device>> DeviceExt for O {
fn create_element(&self, name: Option<&str>) -> Result<Element, glib::BoolError> {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +00:00
Option::<_>::from_glib_none(ffi::gst_device_create_element(
self.as_ref().to_glib_none().0,
name.to_glib_none().0,
))
2020-12-17 22:34:53 +00:00
.ok_or_else(|| glib::bool_error!("Failed to create element for device"))
2017-07-04 22:47:33 +00:00
}
}
2021-04-11 19:38:18 +00:00
fn caps(&self) -> Option<Caps> {
2020-11-21 13:46:33 +00:00
unsafe { from_glib_full(ffi::gst_device_get_caps(self.as_ref().to_glib_none().0)) }
2017-07-10 21:02:08 +00:00
}
2017-07-04 22:47:33 +00:00
2021-04-11 19:38:18 +00:00
fn device_class(&self) -> glib::GString {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +00:00
from_glib_full(ffi::gst_device_get_device_class(
self.as_ref().to_glib_none().0,
))
2017-07-04 22:47:33 +00:00
}
}
2021-04-11 19:38:18 +00:00
fn display_name(&self) -> glib::GString {
2017-07-04 22:47:33 +00:00
unsafe {
2020-11-21 13:46:33 +00:00
from_glib_full(ffi::gst_device_get_display_name(
self.as_ref().to_glib_none().0,
))
2017-07-04 22:47:33 +00:00
}
}
2021-04-11 19:38:18 +00:00
fn properties(&self) -> Option<Structure> {
2017-07-10 21:02:08 +00:00
unsafe {
2020-11-21 13:46:33 +00:00
from_glib_full(ffi::gst_device_get_properties(
self.as_ref().to_glib_none().0,
))
2017-07-10 21:02:08 +00:00
}
}
2017-07-04 22:47:33 +00:00
fn has_classes(&self, classes: &str) -> bool {
unsafe {
2020-11-21 13:46:33 +00:00
from_glib(ffi::gst_device_has_classes(
self.as_ref().to_glib_none().0,
classes.to_glib_none().0,
))
2017-07-04 22:47:33 +00:00
}
}
fn has_classesv(&self, classes: &[&str]) -> bool {
unsafe {
2020-11-21 13:46:33 +00:00
from_glib(ffi::gst_device_has_classesv(
self.as_ref().to_glib_none().0,
classes.to_glib_none().0,
))
2017-07-04 22:47:33 +00:00
}
}
fn reconfigure_element(
&self,
element: &impl IsA<Element>,
) -> Result<(), glib::error::BoolError> {
2017-07-04 22:47:33 +00:00
unsafe {
2020-12-17 22:34:53 +00:00
glib::result_from_gboolean!(
2020-11-21 13:46:33 +00:00
ffi::gst_device_reconfigure_element(
self.as_ref().to_glib_none().0,
element.as_ref().to_glib_none().0
),
"Failed to reconfigure the element to use this device"
)
2017-07-04 22:47:33 +00:00
}
}
2017-09-09 13:01:32 +00:00
fn connect_removed<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn removed_trampoline<
P: IsA<Device>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstDevice,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(Device::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
2017-07-04 22:47:33 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"removed\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
removed_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
2017-07-04 22:47:33 +00:00
}
}
}