use libc::{c_char}; use std::ffi::{CStr, CString}; use std::slice; use std::ptr; use utils::*; pub trait Sink { fn set_uri(&mut self, uri_str: &Option) -> bool; fn get_uri(&self) -> Option; fn start(&mut self) -> bool; fn stop(&mut self) -> bool; fn render(&mut self, data: &mut [u8]) -> GstFlowReturn; } #[no_mangle] pub extern "C" fn sink_set_uri(ptr: *mut Box, uri_ptr: *const c_char) -> GBoolean{ let source: &mut Box = unsafe { &mut *ptr }; if uri_ptr.is_null() { GBoolean::from_bool(source.set_uri(&None)) } else { let uri = unsafe { CStr::from_ptr(uri_ptr) }; GBoolean::from_bool(source.set_uri(&Some(String::from(uri.to_str().unwrap())))) } } #[no_mangle] pub extern "C" fn sink_get_uri(ptr: *mut Box) -> *mut c_char { let source: &mut Box = unsafe { &mut *ptr }; match source.get_uri() { Some(ref uri) => CString::new(uri.clone().into_bytes()).unwrap().into_raw(), None => ptr::null_mut() } } #[no_mangle] pub extern "C" fn sink_render(ptr: *mut Box, data_ptr: *mut u8, data_len: usize) -> GstFlowReturn { let source: &mut Box = unsafe { &mut *ptr }; let mut data = unsafe { slice::from_raw_parts_mut(data_ptr, data_len) }; source.render(data) } #[no_mangle] pub extern "C" fn sink_start(ptr: *mut Box) -> GBoolean { let source: &mut Box = unsafe { &mut *ptr }; GBoolean::from_bool(source.start()) } #[no_mangle] pub extern "C" fn sink_stop(ptr: *mut Box) -> GBoolean { let source: &mut Box = unsafe { &mut *ptr }; GBoolean::from_bool(source.stop()) }