// Copyright (C) 2016 Sebastian Dröge // 2016 Luis de Bethencourt // // 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. use std::fs::File; use std::path::PathBuf; use url::Url; use std::io::Write; use std::sync::Mutex; use utils::*; use rssink::*; #[derive(Debug)] pub struct FileSink { location: Mutex>, file: Option, position: u64, } unsafe impl Sync for FileSink {} unsafe impl Send for FileSink {} impl FileSink { fn new() -> FileSink { FileSink { location: Mutex::new(None), file: None, position: 0 } } fn new_source() -> Box { Box::new(FileSink::new()) } pub extern "C" fn new_ptr() -> *mut Box { let instance = Box::new(FileSink::new_source()); return Box::into_raw(instance); } } impl Sink for FileSink { fn set_uri(&mut self, uri: Option) -> bool { match uri { None => { let mut location = self.location.lock().unwrap(); *location = None; return true; }, Some(ref uri) => { match uri.to_file_path().ok() { Some(p) => { let mut location = self.location.lock().unwrap(); *location = Some(p); return true; }, None => { let mut location = self.location.lock().unwrap(); *location = None; println_err!("Unsupported file URI '{}'", uri.as_str()); return false; } } } } } fn get_uri(&self) -> Option { let location = self.location.lock().unwrap(); (*location).as_ref() .map(|l| Url::from_file_path(l).ok()) .and_then(|i| i) // join() } fn start(&mut self) -> bool { self.file = None; self.position = 0; let location = self.location.lock().unwrap(); match *location { None => return false, Some(ref location) => { match File::create(location.as_path()) { Ok(file) => { self.file = Some(file); return true; }, Err(err) => { println_err!("Could not open file for writing '{}': {}", location.to_str().unwrap_or("Non-UTF8 path"), err.to_string()); return false; } } }, } } fn stop(&mut self) -> bool { self.file = None; self.position = 0; true } fn render(&mut self, data: &[u8]) -> GstFlowReturn { match self.file { None => return GstFlowReturn::Error, Some(ref mut f) => { match f.write_all(data) { Ok(_) => { return GstFlowReturn::Ok }, Err(err) => { println_err!("Failed to write: {}", err); return GstFlowReturn::Error }, } }, } } }