gst-plugins-rs/src/rsfilesrc.rs

170 lines
3.9 KiB
Rust
Raw Normal View History

2016-05-13 15:02:19 +00:00
use libc::{c_char};
use std::ffi::{CStr, CString};
use std::ptr;
2016-05-13 15:16:49 +00:00
use std::u64;
2016-05-13 15:38:28 +00:00
use std::slice;
use std::io::Read;
use std::fs::File;
use std::path::Path;
2016-05-13 15:16:49 +00:00
#[repr(C)]
pub enum GstFlowReturn {
Ok = 0,
NotLinked = -1,
Flushing = -2,
Eos = -3,
NotNegotiated = -4,
Error = -5,
}
#[repr(C)]
pub enum GBoolean {
False = 0,
True = 1,
}
impl GBoolean {
fn from_bool(v: bool) -> GBoolean {
match v {
true => GBoolean::True,
false => GBoolean::False,
}
}
}
#[derive(Debug)]
pub struct FileSrc {
location: Option<String>,
file: Option<File>,
}
2016-05-13 15:16:49 +00:00
impl FileSrc {
fn new() -> FileSrc {
FileSrc { location: None, file: None }
2016-05-13 15:16:49 +00:00
}
fn set_location(&mut self, location: &Option<String>) {
self.location = location.clone();
}
fn get_location(&self) -> &Option<String> {
&self.location
}
fn is_seekable(&self) -> bool {
true
}
fn get_size(&self) -> u64 {
2016-05-13 16:06:06 +00:00
match self.file {
None => return u64::MAX,
Some(ref f) => {
return f.metadata().unwrap().len();
},
}
}
fn start(&mut self) -> bool {
if self.location.is_none() { return false; }
self.file = Some(File::open(Path::new(&self.location.clone().unwrap())).unwrap());
return true;
}
fn stop(&mut self) -> bool {
self.file = None;
true
}
fn fill(&mut self, data: &mut [u8]) -> Result<usize, GstFlowReturn> {
match self.file {
None => return Err(GstFlowReturn::Error),
Some(ref mut f) => {
// FIXME: Need to return the actual size, handle EOF, etc
return Ok(f.read(data).unwrap());
},
}
}
2016-05-13 15:16:49 +00:00
}
2016-05-13 13:35:48 +00:00
#[no_mangle]
pub extern "C" fn filesrc_new() -> *mut FileSrc {
2016-05-13 14:43:32 +00:00
let instance = Box::new(FileSrc::new());
return Box::into_raw(instance);
}
#[no_mangle]
pub extern "C" fn filesrc_drop(ptr: *mut FileSrc) {
2016-05-13 14:43:32 +00:00
unsafe { Box::from_raw(ptr) };
}
2016-05-13 15:02:19 +00:00
#[no_mangle]
pub extern "C" fn filesrc_set_location(ptr: *mut FileSrc, location_ptr: *const c_char) {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
if location_ptr.is_null() {
filesrc.set_location(&None)
2016-05-13 15:02:19 +00:00
} else {
let location = unsafe { CStr::from_ptr(location_ptr) };
filesrc.set_location(&Some(String::from(location.to_str().unwrap())));
2016-05-13 15:02:19 +00:00
}
}
#[no_mangle]
pub extern "C" fn filesrc_get_location(ptr: *mut FileSrc) -> *mut c_char {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
match *filesrc.get_location() {
2016-05-13 15:02:19 +00:00
Some(ref location) =>
CString::new(location.clone().into_bytes()).unwrap().into_raw(),
None =>
ptr::null_mut()
}
}
#[no_mangle]
pub extern "C" fn filesrc_fill(ptr: *mut FileSrc, data_ptr: *mut u8, data_len_ptr: *mut usize) -> GstFlowReturn {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
let mut data_len: &mut usize = unsafe { &mut *data_len_ptr };
let mut data = unsafe { slice::from_raw_parts_mut(data_ptr, *data_len) };
match filesrc.fill(data) {
Ok(actual_len) => {
*data_len = actual_len;
GstFlowReturn::Ok
},
Err(ret) => ret,
}
}
2016-05-13 15:16:49 +00:00
#[no_mangle]
pub extern "C" fn filesrc_get_size(ptr: *mut FileSrc) -> u64 {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
return filesrc.get_size();
}
2016-05-13 15:16:49 +00:00
#[no_mangle]
pub extern "C" fn filesrc_start(ptr: *mut FileSrc) -> GBoolean {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
GBoolean::from_bool(filesrc.start())
}
2016-05-13 15:16:49 +00:00
#[no_mangle]
pub extern "C" fn filesrc_stop(ptr: *mut FileSrc) -> GBoolean {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
GBoolean::from_bool(filesrc.stop())
2016-05-13 13:35:48 +00:00
}
2016-05-13 15:16:49 +00:00
#[no_mangle]
pub extern "C" fn filesrc_is_seekable(ptr: *mut FileSrc) -> GBoolean {
let filesrc: &mut FileSrc = unsafe { &mut *ptr };
GBoolean::from_bool(filesrc.is_seekable())
2016-05-13 15:16:49 +00:00
}