// Copyright (C) 2017 Sebastian Dröge // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use Pad; use PadProbeType; use PadProbeReturn; use Buffer; use BufferList; use FlowReturn; use Query; use QueryRef; use Event; use miniobject::MiniObject; use std::mem::transmute; use std::ptr; use glib::{IsA, StaticType}; use glib::translate::{from_glib, from_glib_full, from_glib_none, FromGlib, ToGlib, ToGlibPtr}; use glib::source::CallbackGuard; use glib_ffi; use glib_ffi::gpointer; use glib::Object; use libc; use ffi; #[derive(Copy, Clone, Debug, Default, PartialEq, Eq)] pub struct PadProbeId(libc::c_ulong); pub const PAD_PROBE_ID_INVALID: PadProbeId = PadProbeId(0); impl ToGlib for PadProbeId { type GlibType = libc::c_ulong; fn to_glib(&self) -> libc::c_ulong { self.0 } } impl FromGlib for PadProbeId { fn from_glib(val: libc::c_ulong) -> PadProbeId { PadProbeId(val) } } pub struct PadProbeInfo<'a> { pub mask: PadProbeType, pub id: PadProbeId, pub offset: u64, pub size: u32, pub data: Option>, } pub enum PadProbeData<'a> { Buffer(Buffer), BufferList(BufferList), Query(&'a mut QueryRef), Event(Event), Unknown, } pub struct StreamLock(Pad); impl Drop for StreamLock { fn drop(&mut self) { unsafe { let pad: *mut ffi::GstPad = self.0.to_glib_none().0; glib_ffi::g_rec_mutex_unlock(&mut (*pad).stream_rec_lock); } } } pub trait PadExtManual { fn add_probe(&self, mask: PadProbeType, func: F) -> PadProbeId where F: Fn(&Pad, &mut PadProbeInfo) -> PadProbeReturn + Send + Sync + 'static; fn remove_probe(&self, id: PadProbeId); fn chain(&self, buffer: Buffer) -> FlowReturn; fn push(&self, buffer: Buffer) -> FlowReturn; fn pull_range(&self, offset: u64, size: u32) -> Result; fn get_range(&self, offset: u64, size: u32) -> Result; fn peer_query(&self, query: &mut QueryRef) -> bool; fn query(&self, query: &mut QueryRef) -> bool; fn query_default<'a, P: IsA + 'a, Q: Into>>( &self, parent: Q, query: &mut QueryRef, ) -> bool; fn proxy_query_caps(&self, query: &mut QueryRef) -> bool; fn proxy_query_accept_caps(&self, query: &mut QueryRef) -> bool; fn event_default<'a, P: IsA<::Object> + 'a, Q: Into>>( &self, parent: Q, event: Event, ) -> bool; fn push_event(&self, event: Event) -> bool; fn send_event(&self, event: Event) -> bool; fn stream_lock(&self) -> StreamLock; } impl> PadExtManual for O { fn add_probe(&self, mask: PadProbeType, func: F) -> PadProbeId where F: Fn(&Pad, &mut PadProbeInfo) -> PadProbeReturn + Send + Sync + 'static, { unsafe { let id = ffi::gst_pad_add_probe( self.to_glib_none().0, mask.to_glib(), Some(trampoline_pad_probe), into_raw_pad_probe(func), Some(destroy_closure_pad_probe), ); from_glib(id) } } fn remove_probe(&self, id: PadProbeId) { unsafe { ffi::gst_pad_remove_probe(self.to_glib_none().0, id.to_glib()); } } fn chain(&self, buffer: Buffer) -> FlowReturn { unsafe { from_glib(ffi::gst_pad_chain(self.to_glib_none().0, buffer.into_ptr())) } } fn push(&self, buffer: Buffer) -> FlowReturn { unsafe { from_glib(ffi::gst_pad_push(self.to_glib_none().0, buffer.into_ptr())) } } fn get_range(&self, offset: u64, size: u32) -> Result { unsafe { let mut buffer = ptr::null_mut(); let ret = from_glib(ffi::gst_pad_get_range( self.to_glib_none().0, offset, size, &mut buffer, )); if ret == FlowReturn::Ok { Ok(from_glib_full(buffer)) } else { Err(ret) } } } fn pull_range(&self, offset: u64, size: u32) -> Result { unsafe { let mut buffer = ptr::null_mut(); let ret = from_glib(ffi::gst_pad_pull_range( self.to_glib_none().0, offset, size, &mut buffer, )); if ret == FlowReturn::Ok { Ok(from_glib_full(buffer)) } else { Err(ret) } } } fn query(&self, query: &mut QueryRef) -> bool { unsafe { from_glib(ffi::gst_pad_query( self.to_glib_none().0, query.as_mut_ptr(), )) } } fn peer_query(&self, query: &mut QueryRef) -> bool { unsafe { from_glib(ffi::gst_pad_peer_query( self.to_glib_none().0, query.as_mut_ptr(), )) } } fn query_default<'a, P: IsA + 'a, Q: Into>>( &self, parent: Q, query: &mut QueryRef, ) -> bool { let parent = parent.into(); let parent = parent.to_glib_none(); unsafe { from_glib(ffi::gst_pad_query_default( self.to_glib_none().0, parent.0 as *mut _, query.as_mut_ptr(), )) } } fn proxy_query_accept_caps(&self, query: &mut QueryRef) -> bool { unsafe { from_glib(ffi::gst_pad_proxy_query_accept_caps( self.to_glib_none().0, query.as_mut_ptr(), )) } } fn proxy_query_caps(&self, query: &mut QueryRef) -> bool { unsafe { from_glib(ffi::gst_pad_proxy_query_accept_caps( self.to_glib_none().0, query.as_mut_ptr(), )) } } fn event_default<'a, P: IsA<::Object> + 'a, Q: Into>>( &self, parent: Q, event: Event, ) -> bool { let parent = parent.into(); let parent = parent.to_glib_none(); unsafe { from_glib(ffi::gst_pad_event_default( self.to_glib_none().0, parent.0, event.into_ptr(), )) } } fn push_event(&self, event: Event) -> bool { unsafe { from_glib(ffi::gst_pad_push_event( self.to_glib_none().0, event.into_ptr(), )) } } fn send_event(&self, event: Event) -> bool { unsafe { from_glib(ffi::gst_pad_send_event( self.to_glib_none().0, event.into_ptr(), )) } } fn stream_lock(&self) -> StreamLock { unsafe { let pad = self.to_glib_none().0; glib_ffi::g_rec_mutex_lock(&mut (*pad).stream_rec_lock); StreamLock(from_glib_none(pad)) } } } unsafe extern "C" fn trampoline_pad_probe( pad: *mut ffi::GstPad, info: *mut ffi::GstPadProbeInfo, func: gpointer, ) -> ffi::GstPadProbeReturn { let _guard = CallbackGuard::new(); let func: &&(Fn(&Pad, &mut PadProbeInfo) -> PadProbeReturn + Send + Sync + 'static) = transmute(func); let mut data_type = None; let mut probe_info = PadProbeInfo { mask: from_glib((*info).type_), id: PadProbeId((*info).id), offset: (*info).offset, size: (*info).size, data: if (*info).data.is_null() { None } else { let data = (*info).data as *const ffi::GstMiniObject; if (*data).type_ == Buffer::static_type().to_glib() { data_type = Some(Buffer::static_type()); Some(PadProbeData::Buffer( from_glib_none(data as *const ffi::GstBuffer), )) } else if (*data).type_ == BufferList::static_type().to_glib() { data_type = Some(BufferList::static_type()); Some(PadProbeData::BufferList( from_glib_none(data as *const ffi::GstBufferList), )) } else if (*data).type_ == Query::static_type().to_glib() { data_type = Some(Query::static_type()); Some(PadProbeData::Query( QueryRef::from_mut_ptr(data as *mut ffi::GstQuery), )) } else if (*data).type_ == Event::static_type().to_glib() { data_type = Some(Event::static_type()); Some(PadProbeData::Event( from_glib_none(data as *const ffi::GstEvent), )) } else { Some(PadProbeData::Unknown) } }, }; let ret = func(&from_glib_none(pad), &mut probe_info).to_glib(); match probe_info.data { Some(PadProbeData::Buffer(buffer)) => { assert_eq!(data_type, Some(Buffer::static_type())); if (*info).data != buffer.as_mut_ptr() as *mut _ { ffi::gst_mini_object_unref((*info).data as *mut _); (*info).data = buffer.into_ptr() as *mut libc::c_void; } } Some(PadProbeData::BufferList(bufferlist)) => { assert_eq!(data_type, Some(BufferList::static_type())); if (*info).data != bufferlist.as_mut_ptr() as *mut _ { ffi::gst_mini_object_unref((*info).data as *mut _); (*info).data = bufferlist.into_ptr() as *mut libc::c_void; } } Some(PadProbeData::Event(event)) => { assert_eq!(data_type, Some(Event::static_type())); if (*info).data != event.as_mut_ptr() as *mut _ { ffi::gst_mini_object_unref((*info).data as *mut _); (*info).data = event.into_ptr() as *mut libc::c_void; } } None => { assert_ne!(data_type, Some(Query::static_type())); if !(*info).data.is_null() { ffi::gst_mini_object_unref((*info).data as *mut _); (*info).data = ptr::null_mut(); } } _ => (), } ret } unsafe extern "C" fn destroy_closure_pad_probe(ptr: gpointer) { let _guard = CallbackGuard::new(); Box:: PadProbeReturn + Send + Sync + 'static>>::from_raw( ptr as *mut _, ); } fn into_raw_pad_probe PadProbeReturn + Send + Sync + 'static>( func: F, ) -> gpointer { let func: Box PadProbeReturn + Send + Sync + 'static>> = Box::new(Box::new(func)); Box::into_raw(func) as gpointer }