2016-05-15 15:54:09 +00:00
|
|
|
// Copyright (C) 2016 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
// 2016 Luis de Bethencourt <luisbg@osg.samsung.com>
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
// Boston, MA 02110-1301, USA.
|
|
|
|
|
2016-05-15 14:43:13 +00:00
|
|
|
use libc::c_char;
|
2016-07-20 09:46:03 +00:00
|
|
|
use std::os::raw::c_void;
|
2016-05-14 13:31:39 +00:00
|
|
|
use std::ffi::{CStr, CString};
|
2016-05-15 13:44:32 +00:00
|
|
|
use std::slice;
|
2016-05-14 13:31:39 +00:00
|
|
|
use std::ptr;
|
2016-05-24 20:24:05 +00:00
|
|
|
use std::io::Write;
|
|
|
|
|
|
|
|
use url::Url;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
|
|
|
use utils::*;
|
|
|
|
|
2016-07-20 09:46:03 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SinkController {
|
|
|
|
sink: *mut c_void,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SinkController {
|
|
|
|
fn new(sink: *mut c_void) -> SinkController {
|
|
|
|
SinkController { sink: sink }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-15 15:26:17 +00:00
|
|
|
pub trait Sink: Sync + Send {
|
2016-05-23 18:15:43 +00:00
|
|
|
// Called from any thread at any time
|
2016-08-22 18:08:26 +00:00
|
|
|
fn set_uri(&self, uri: Option<Url>) -> bool;
|
2016-05-24 20:24:05 +00:00
|
|
|
fn get_uri(&self) -> Option<Url>;
|
2016-05-23 18:15:43 +00:00
|
|
|
|
|
|
|
// Called from the streaming thread only
|
2016-08-22 18:08:26 +00:00
|
|
|
fn start(&self) -> bool;
|
|
|
|
fn stop(&self) -> bool;
|
|
|
|
fn render(&self, data: &[u8]) -> GstFlowReturn;
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2016-07-20 09:46:03 +00:00
|
|
|
#[no_mangle]
|
|
|
|
pub extern "C" fn sink_new(sink: *mut c_void,
|
2016-08-10 16:27:38 +00:00
|
|
|
create_instance: fn(controller: SinkController) -> Box<Sink>)
|
2016-07-20 09:46:03 +00:00
|
|
|
-> *mut Box<Sink> {
|
2016-08-10 16:27:38 +00:00
|
|
|
Box::into_raw(Box::new(create_instance(SinkController::new(sink))))
|
2016-07-20 09:46:03 +00:00
|
|
|
}
|
|
|
|
|
2016-05-15 14:47:38 +00:00
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_drop(ptr: *mut Box<Sink>) {
|
|
|
|
Box::from_raw(ptr);
|
2016-05-15 14:47:38 +00:00
|
|
|
}
|
|
|
|
|
2016-05-14 13:31:39 +00:00
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_set_uri(ptr: *mut Box<Sink>, uri_ptr: *const c_char) -> GBoolean {
|
|
|
|
let sink: &mut Box<Sink> = &mut *ptr;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
|
|
|
if uri_ptr.is_null() {
|
2016-05-24 20:24:05 +00:00
|
|
|
GBoolean::from_bool(sink.set_uri(None))
|
2016-05-14 13:31:39 +00:00
|
|
|
} else {
|
2016-08-22 20:03:06 +00:00
|
|
|
let uri_str = CStr::from_ptr(uri_ptr).to_str().unwrap();
|
|
|
|
|
2016-05-24 20:24:05 +00:00
|
|
|
match Url::parse(uri_str) {
|
|
|
|
Ok(uri) => GBoolean::from_bool(sink.set_uri(Some(uri))),
|
|
|
|
Err(err) => {
|
|
|
|
sink.set_uri(None);
|
|
|
|
println_err!("Failed to parse URI '{}': {}", uri_str, err);
|
|
|
|
GBoolean::False
|
|
|
|
}
|
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_get_uri(ptr: *const Box<Sink>) -> *mut c_char {
|
|
|
|
let sink: &Box<Sink> = &*ptr;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-05-24 20:24:05 +00:00
|
|
|
match sink.get_uri() {
|
2016-07-20 08:28:58 +00:00
|
|
|
Some(uri) => CString::new(uri.into_string().into_bytes()).unwrap().into_raw(),
|
|
|
|
None => ptr::null_mut(),
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_render(ptr: *mut Box<Sink>,
|
|
|
|
data_ptr: *const u8,
|
|
|
|
data_len: usize)
|
|
|
|
-> GstFlowReturn {
|
|
|
|
let sink: &mut Box<Sink> = &mut *ptr;
|
|
|
|
let data = slice::from_raw_parts(data_ptr, data_len);
|
|
|
|
|
2016-05-24 20:24:05 +00:00
|
|
|
sink.render(data)
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_start(ptr: *mut Box<Sink>) -> GBoolean {
|
|
|
|
let sink: &mut Box<Sink> = &mut *ptr;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-05-24 20:24:05 +00:00
|
|
|
GBoolean::from_bool(sink.start())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[no_mangle]
|
2016-08-22 20:03:06 +00:00
|
|
|
pub unsafe extern "C" fn sink_stop(ptr: *mut Box<Sink>) -> GBoolean {
|
|
|
|
let sink: &mut Box<Sink> = &mut *ptr;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-05-24 20:24:05 +00:00
|
|
|
GBoolean::from_bool(sink.stop())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|