2017-02-16 15:52:27 +00:00
|
|
|
// Copyright (C) 2016-2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
// 2016 Luis de Bethencourt <luisbg@osg.samsung.com>
|
2016-05-15 15:54:09 +00:00
|
|
|
//
|
2017-02-16 15:52:27 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2016-05-15 15:54:09 +00:00
|
|
|
|
2016-05-14 13:31:39 +00:00
|
|
|
use std::fs::File;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
use std::io::Write;
|
2016-08-27 08:16:17 +00:00
|
|
|
use std::convert::From;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-12-23 17:04:32 +00:00
|
|
|
use gst_plugin::error::*;
|
|
|
|
use gst_plugin::sink::*;
|
|
|
|
use gst_plugin::buffer::*;
|
2016-12-25 11:16:12 +00:00
|
|
|
use gst_plugin::utils::*;
|
|
|
|
use gst_plugin::log::*;
|
|
|
|
|
2017-04-12 13:44:34 +00:00
|
|
|
use slog::Logger;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-08-22 19:25:58 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
enum StreamingState {
|
|
|
|
Stopped,
|
|
|
|
Started { file: File, position: u64 },
|
|
|
|
}
|
|
|
|
|
2016-05-14 13:31:39 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FileSink {
|
2016-09-01 21:52:28 +00:00
|
|
|
streaming_state: StreamingState,
|
2016-12-25 11:16:12 +00:00
|
|
|
logger: Logger,
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FileSink {
|
2016-12-25 11:16:12 +00:00
|
|
|
pub fn new(element: Element) -> FileSink {
|
|
|
|
FileSink {
|
|
|
|
streaming_state: StreamingState::Stopped,
|
|
|
|
logger: Logger::root(GstDebugDrain::new(Some(&element),
|
|
|
|
"rsfilesink",
|
|
|
|
0,
|
|
|
|
"Rust file sink"),
|
2017-04-12 13:44:34 +00:00
|
|
|
o!()),
|
2016-12-25 11:16:12 +00:00
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2016-12-25 11:16:12 +00:00
|
|
|
pub fn new_boxed(element: Element) -> Box<Sink> {
|
|
|
|
Box::new(FileSink::new(element))
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 21:52:28 +00:00
|
|
|
fn validate_uri(uri: &Url) -> Result<(), UriError> {
|
2017-04-12 13:46:11 +00:00
|
|
|
let _ = try!(uri.to_file_path()
|
|
|
|
.or_else(|_| {
|
|
|
|
Err(UriError::new(UriErrorKind::UnsupportedProtocol,
|
|
|
|
Some(format!("Unsupported file URI '{}'",
|
|
|
|
uri.as_str()))))
|
|
|
|
}));
|
2016-09-01 21:52:28 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-09-01 21:52:28 +00:00
|
|
|
impl Sink for FileSink {
|
|
|
|
fn uri_validator(&self) -> Box<UriValidator> {
|
|
|
|
Box::new(validate_uri)
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2016-09-03 14:37:51 +00:00
|
|
|
fn start(&mut self, uri: Url) -> Result<(), ErrorMessage> {
|
2016-09-01 21:52:28 +00:00
|
|
|
if let StreamingState::Started { .. } = self.streaming_state {
|
2016-08-27 08:16:17 +00:00
|
|
|
return Err(error_msg!(SinkError::Failure, ["Sink already started"]));
|
2016-08-22 19:25:58 +00:00
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2017-04-12 13:46:11 +00:00
|
|
|
let location =
|
|
|
|
try!(uri.to_file_path()
|
|
|
|
.or_else(|_| {
|
|
|
|
error!(self.logger, "Unsupported file URI '{}'", uri.as_str());
|
|
|
|
Err(error_msg!(SinkError::Failure,
|
|
|
|
["Unsupported file URI '{}'", uri.as_str()]))
|
|
|
|
}));
|
2016-09-01 21:52:28 +00:00
|
|
|
|
2016-08-27 08:16:17 +00:00
|
|
|
|
|
|
|
let file = try!(File::create(location.as_path()).or_else(|err| {
|
2016-12-27 15:47:39 +00:00
|
|
|
error!(self.logger,
|
|
|
|
"Could not open file for writing: {}",
|
|
|
|
err.to_string());
|
2016-08-27 08:16:17 +00:00
|
|
|
Err(error_msg!(SinkError::OpenFailed,
|
|
|
|
["Could not open file for writing '{}': {}",
|
|
|
|
location.to_str().unwrap_or("Non-UTF8 path"),
|
|
|
|
err.to_string()]))
|
|
|
|
}));
|
|
|
|
|
2016-12-27 15:47:39 +00:00
|
|
|
debug!(self.logger, "Opened file {:?}", file);
|
|
|
|
|
2016-09-01 21:52:28 +00:00
|
|
|
self.streaming_state = StreamingState::Started {
|
2016-08-27 08:16:17 +00:00
|
|
|
file: file,
|
|
|
|
position: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 21:52:28 +00:00
|
|
|
fn stop(&mut self) -> Result<(), ErrorMessage> {
|
|
|
|
self.streaming_state = StreamingState::Stopped;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-08-27 08:16:17 +00:00
|
|
|
Ok(())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 13:00:28 +00:00
|
|
|
fn render(&mut self, buffer: &Buffer) -> Result<(), FlowError> {
|
2016-12-27 15:47:39 +00:00
|
|
|
// FIXME: Because we borrow streaming state mutably below
|
|
|
|
let logger = self.logger.clone();
|
|
|
|
|
|
|
|
trace!(logger, "Rendering {:?}", buffer);
|
|
|
|
|
2016-09-01 21:52:28 +00:00
|
|
|
let (file, position) = match self.streaming_state {
|
2017-04-12 13:46:11 +00:00
|
|
|
StreamingState::Started {
|
|
|
|
ref mut file,
|
|
|
|
ref mut position,
|
|
|
|
} => (file, position),
|
2016-08-27 08:16:17 +00:00
|
|
|
StreamingState::Stopped => {
|
|
|
|
return Err(FlowError::Error(error_msg!(SinkError::Failure, ["Not started yet"])));
|
2016-07-20 08:28:58 +00:00
|
|
|
}
|
2016-08-27 08:16:17 +00:00
|
|
|
};
|
|
|
|
|
2016-09-12 13:00:28 +00:00
|
|
|
let map = match buffer.map_read() {
|
|
|
|
None => {
|
|
|
|
return Err(FlowError::Error(error_msg!(SinkError::Failure,
|
|
|
|
["Failed to map buffer"])));
|
|
|
|
}
|
|
|
|
Some(map) => map,
|
|
|
|
};
|
|
|
|
let data = map.as_slice();
|
|
|
|
|
2017-04-12 13:46:11 +00:00
|
|
|
try!(file.write_all(data)
|
|
|
|
.or_else(|err| {
|
|
|
|
error!(logger, "Failed to write: {}", err);
|
|
|
|
Err(FlowError::Error(error_msg!(SinkError::WriteFailed,
|
|
|
|
["Failed to write: {}", err])))
|
|
|
|
}));
|
2016-08-27 08:16:17 +00:00
|
|
|
|
|
|
|
*position += data.len() as u64;
|
2016-09-01 21:52:28 +00:00
|
|
|
|
2016-08-27 08:16:17 +00:00
|
|
|
Ok(())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
2016-05-13 15:07:26 +00:00
|
|
|
}
|