gstreamer-rs/gstreamer/src/subclass/child_proxy.rs

116 lines
4 KiB
Rust
Raw Normal View History

2020-12-15 10:53:31 +00:00
// Take a look at the license at the top of the repository in the LICENSE file.
2018-11-18 14:36:28 +00:00
use glib::prelude::*;
2018-11-18 14:36:28 +00:00
use glib::subclass::prelude::*;
use glib::translate::*;
use crate::ChildProxy;
2018-11-18 14:36:28 +00:00
pub trait ChildProxyImpl: ObjectImpl + Send + Sync {
fn get_child_by_name(&self, object: &Self::Type, name: &str) -> Option<glib::Object> {
2018-11-18 14:36:28 +00:00
unsafe {
let type_ = ffi::gst_child_proxy_get_type();
let iface = glib::gobject_ffi::g_type_default_interface_ref(type_)
as *mut ffi::GstChildProxyInterface;
2018-11-18 14:36:28 +00:00
assert!(!iface.is_null());
let ret = ((*iface).get_child_by_name.as_ref().unwrap())(
object.unsafe_cast_ref::<ChildProxy>().to_glib_none().0,
2018-11-18 14:36:28 +00:00
name.to_glib_none().0,
);
glib::gobject_ffi::g_type_default_interface_unref(iface as glib::ffi::gpointer);
2018-11-18 14:36:28 +00:00
from_glib_full(ret)
}
}
fn get_child_by_index(&self, object: &Self::Type, index: u32) -> Option<glib::Object>;
fn get_children_count(&self, object: &Self::Type) -> u32;
2018-11-18 14:36:28 +00:00
fn child_added(&self, _object: &Self::Type, _child: &glib::Object, _name: &str) {}
fn child_removed(&self, _object: &Self::Type, _child: &glib::Object, _name: &str) {}
2018-11-18 14:36:28 +00:00
}
unsafe impl<T: ChildProxyImpl> IsImplementable<T> for ChildProxy {
unsafe extern "C" fn interface_init(
iface: glib::ffi::gpointer,
_iface_data: glib::ffi::gpointer,
) {
let child_proxy_iface = &mut *(iface as *mut ffi::GstChildProxyInterface);
child_proxy_iface.get_child_by_name = Some(child_proxy_get_child_by_name::<T>);
child_proxy_iface.get_child_by_index = Some(child_proxy_get_child_by_index::<T>);
child_proxy_iface.get_children_count = Some(child_proxy_get_children_count::<T>);
child_proxy_iface.child_added = Some(child_proxy_child_added::<T>);
child_proxy_iface.child_removed = Some(child_proxy_child_removed::<T>);
}
}
unsafe extern "C" fn child_proxy_get_child_by_name<T: ChildProxyImpl>(
child_proxy: *mut ffi::GstChildProxy,
2018-11-18 14:36:28 +00:00
name: *const libc::c_char,
) -> *mut glib::gobject_ffi::GObject {
2018-11-18 14:36:28 +00:00
let instance = &*(child_proxy as *mut T::Instance);
let imp = instance.get_impl();
imp.get_child_by_name(
&from_glib_borrow::<_, ChildProxy>(child_proxy).unsafe_cast_ref(),
&glib::GString::from_glib_borrow(name),
2018-11-18 14:36:28 +00:00
)
.to_glib_full()
}
unsafe extern "C" fn child_proxy_get_child_by_index<T: ChildProxyImpl>(
child_proxy: *mut ffi::GstChildProxy,
2018-11-18 14:36:28 +00:00
index: u32,
) -> *mut glib::gobject_ffi::GObject {
2018-11-18 14:36:28 +00:00
let instance = &*(child_proxy as *mut T::Instance);
let imp = instance.get_impl();
imp.get_child_by_index(
&from_glib_borrow::<_, ChildProxy>(child_proxy).unsafe_cast_ref(),
index,
)
.to_glib_full()
2018-11-18 14:36:28 +00:00
}
unsafe extern "C" fn child_proxy_get_children_count<T: ChildProxyImpl>(
child_proxy: *mut ffi::GstChildProxy,
) -> u32 {
2018-11-18 14:36:28 +00:00
let instance = &*(child_proxy as *mut T::Instance);
let imp = instance.get_impl();
imp.get_children_count(&from_glib_borrow::<_, ChildProxy>(child_proxy).unsafe_cast_ref())
2018-11-18 14:36:28 +00:00
}
unsafe extern "C" fn child_proxy_child_added<T: ChildProxyImpl>(
child_proxy: *mut ffi::GstChildProxy,
child: *mut glib::gobject_ffi::GObject,
2018-11-18 14:36:28 +00:00
name: *const libc::c_char,
) {
2018-11-18 14:36:28 +00:00
let instance = &*(child_proxy as *mut T::Instance);
let imp = instance.get_impl();
imp.child_added(
&from_glib_borrow::<_, ChildProxy>(child_proxy).unsafe_cast_ref(),
2018-11-18 14:36:28 +00:00
&from_glib_borrow(child),
&glib::GString::from_glib_borrow(name),
2018-11-18 14:36:28 +00:00
)
}
unsafe extern "C" fn child_proxy_child_removed<T: ChildProxyImpl>(
child_proxy: *mut ffi::GstChildProxy,
child: *mut glib::gobject_ffi::GObject,
2018-11-18 14:36:28 +00:00
name: *const libc::c_char,
) {
2018-11-18 14:36:28 +00:00
let instance = &*(child_proxy as *mut T::Instance);
let imp = instance.get_impl();
imp.child_removed(
&from_glib_borrow::<_, ChildProxy>(child_proxy).unsafe_cast_ref(),
2018-11-18 14:36:28 +00:00
&from_glib_borrow(child),
&glib::GString::from_glib_borrow(name),
2018-11-18 14:36:28 +00:00
)
}