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>
|
2018-12-02 13:19:37 +00:00
|
|
|
// 2018 François Laignel <fengalin@free.fr>
|
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
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
use glib;
|
|
|
|
use glib::subclass;
|
|
|
|
use glib::subclass::prelude::*;
|
|
|
|
use gst;
|
|
|
|
use gst::prelude::*;
|
|
|
|
use gst::subclass::prelude::*;
|
|
|
|
use gst_base;
|
|
|
|
use gst_base::subclass::prelude::*;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
use std::fs::File;
|
2016-05-14 13:31:39 +00:00
|
|
|
use std::io::Write;
|
2018-12-02 13:19:37 +00:00
|
|
|
use std::sync::Mutex;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
use url::Url;
|
2016-12-25 11:16:12 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
use file_location::FileLocation;
|
|
|
|
|
|
|
|
const DEFAULT_LOCATION: Option<FileLocation> = None;
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2016-08-22 19:25:58 +00:00
|
|
|
#[derive(Debug)]
|
2018-12-02 13:19:37 +00:00
|
|
|
struct Settings {
|
|
|
|
location: Option<FileLocation>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Settings {
|
|
|
|
fn default() -> Self {
|
|
|
|
Settings {
|
|
|
|
location: DEFAULT_LOCATION,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-18 09:23:45 +00:00
|
|
|
static PROPERTIES: [subclass::Property; 1] = [subclass::Property("location", |name| {
|
2018-12-02 13:19:37 +00:00
|
|
|
glib::ParamSpec::string(
|
2018-12-18 09:23:45 +00:00
|
|
|
name,
|
2018-12-02 13:19:37 +00:00
|
|
|
"File Location",
|
|
|
|
"Location of the file to write",
|
|
|
|
None,
|
|
|
|
glib::ParamFlags::READWRITE,
|
|
|
|
)
|
|
|
|
})];
|
|
|
|
|
|
|
|
enum State {
|
2016-08-22 19:25:58 +00:00
|
|
|
Stopped,
|
|
|
|
Started { file: File, position: u64 },
|
|
|
|
}
|
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
impl Default for State {
|
|
|
|
fn default() -> State {
|
|
|
|
State::Stopped
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-14 13:31:39 +00:00
|
|
|
pub struct FileSink {
|
2017-09-16 17:35:01 +00:00
|
|
|
cat: gst::DebugCategory,
|
2018-12-02 13:19:37 +00:00
|
|
|
settings: Mutex<Settings>,
|
|
|
|
state: Mutex<State>,
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FileSink {
|
2018-12-02 13:19:37 +00:00
|
|
|
fn set_location(
|
|
|
|
&self,
|
|
|
|
element: &gst_base::BaseSink,
|
|
|
|
location: Option<FileLocation>,
|
|
|
|
) -> Result<(), glib::Error> {
|
|
|
|
let state = self.state.lock().unwrap();
|
|
|
|
if let State::Started { .. } = *state {
|
|
|
|
return Err(gst::Error::new(
|
2018-12-30 10:02:28 +00:00
|
|
|
gst::URIError::BadState,
|
2018-12-18 09:23:45 +00:00
|
|
|
"Changing the `location` property on a started `filesink` is not supported",
|
2018-12-02 13:19:37 +00:00
|
|
|
));
|
2016-12-25 11:16:12 +00:00
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
let mut settings = self.settings.lock().unwrap();
|
|
|
|
settings.location = match location {
|
|
|
|
Some(location) => {
|
|
|
|
match settings.location {
|
|
|
|
Some(ref location_cur) => {
|
|
|
|
gst_info!(
|
|
|
|
self.cat,
|
|
|
|
obj: element,
|
2018-12-18 09:23:45 +00:00
|
|
|
"Changing `location` from {:?} to {}",
|
2018-12-02 13:19:37 +00:00
|
|
|
location_cur,
|
|
|
|
location,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
None => {
|
2018-12-18 09:23:45 +00:00
|
|
|
gst_info!(self.cat, obj: element, "Setting `location` to {}", location,);
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Some(location)
|
|
|
|
}
|
|
|
|
None => {
|
2018-12-18 09:23:45 +00:00
|
|
|
gst_info!(self.cat, obj: element, "Resetting `location` to None",);
|
2018-12-02 13:19:37 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
impl ObjectSubclass for FileSink {
|
|
|
|
const NAME: &'static str = "RsFileSink";
|
|
|
|
type ParentType = gst_base::BaseSink;
|
|
|
|
type Instance = gst::subclass::ElementInstanceStruct<Self>;
|
|
|
|
type Class = subclass::simple::ClassStruct<Self>;
|
|
|
|
|
|
|
|
glib_object_subclass!();
|
|
|
|
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {
|
2019-05-23 20:55:54 +00:00
|
|
|
cat: gst::DebugCategory::new(
|
|
|
|
"rsfilesink",
|
|
|
|
gst::DebugColorFlags::empty(),
|
|
|
|
Some("File Sink"),
|
|
|
|
),
|
2018-12-02 13:19:37 +00:00
|
|
|
settings: Mutex::new(Default::default()),
|
|
|
|
state: Mutex::new(Default::default()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-18 23:18:52 +00:00
|
|
|
fn type_init(type_: &mut subclass::InitializingType<Self>) {
|
|
|
|
type_.add_interface::<gst::URIHandler>();
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn class_init(klass: &mut subclass::simple::ClassStruct<Self>) {
|
|
|
|
klass.set_metadata(
|
|
|
|
"File Sink",
|
|
|
|
"Sink/File",
|
|
|
|
"Write stream to a file",
|
|
|
|
"François Laignel <fengalin@free.fr>, Luis de Bethencourt <luisbg@osg.samsung.com>",
|
|
|
|
);
|
|
|
|
|
|
|
|
let caps = gst::Caps::new_any();
|
|
|
|
let sink_pad_template = gst::PadTemplate::new(
|
|
|
|
"sink",
|
|
|
|
gst::PadDirection::Sink,
|
|
|
|
gst::PadPresence::Always,
|
|
|
|
&caps,
|
2019-01-29 15:26:40 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2018-12-02 13:19:37 +00:00
|
|
|
klass.add_pad_template(sink_pad_template);
|
|
|
|
|
|
|
|
klass.install_properties(&PROPERTIES);
|
|
|
|
}
|
2016-09-01 21:52:28 +00:00
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
impl ObjectImpl for FileSink {
|
|
|
|
glib_object_impl!();
|
|
|
|
|
|
|
|
fn set_property(&self, obj: &glib::Object, id: usize, value: &glib::Value) {
|
|
|
|
let prop = &PROPERTIES[id];
|
|
|
|
match *prop {
|
2018-12-18 09:23:45 +00:00
|
|
|
subclass::Property("location", ..) => {
|
2018-12-02 13:19:37 +00:00
|
|
|
let element = obj.downcast_ref::<gst_base::BaseSink>().unwrap();
|
|
|
|
|
|
|
|
let res = match value.get::<String>() {
|
|
|
|
Some(location) => FileLocation::try_from_path_str(location)
|
|
|
|
.and_then(|file_location| self.set_location(&element, Some(file_location))),
|
|
|
|
None => self.set_location(&element, None),
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Err(err) = res {
|
|
|
|
gst_error!(
|
|
|
|
self.cat,
|
|
|
|
obj: element,
|
2018-12-18 09:23:45 +00:00
|
|
|
"Failed to set property `location`: {}",
|
2018-12-02 13:19:37 +00:00
|
|
|
err
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimplemented!(),
|
|
|
|
};
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
fn get_property(&self, _obj: &glib::Object, id: usize) -> Result<glib::Value, ()> {
|
|
|
|
let prop = &PROPERTIES[id];
|
|
|
|
match *prop {
|
2018-12-18 09:23:45 +00:00
|
|
|
subclass::Property("location", ..) => {
|
2018-12-02 13:19:37 +00:00
|
|
|
let settings = self.settings.lock().unwrap();
|
|
|
|
let location = settings
|
|
|
|
.location
|
|
|
|
.as_ref()
|
|
|
|
.map(|location| location.to_string());
|
|
|
|
|
|
|
|
Ok(location.to_value())
|
|
|
|
}
|
|
|
|
_ => unimplemented!(),
|
2016-08-22 19:25:58 +00:00
|
|
|
}
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
impl ElementImpl for FileSink {}
|
|
|
|
|
|
|
|
impl BaseSinkImpl for FileSink {
|
2019-01-26 15:07:51 +00:00
|
|
|
fn start(&self, element: &gst_base::BaseSink) -> Result<(), gst::ErrorMessage> {
|
2018-12-02 13:19:37 +00:00
|
|
|
let mut state = self.state.lock().unwrap();
|
|
|
|
if let State::Started { .. } = *state {
|
2019-01-21 20:03:13 +00:00
|
|
|
unreachable!("FileSink already started");
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
2016-08-27 08:16:17 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
let settings = self.settings.lock().unwrap();
|
2019-01-26 15:07:51 +00:00
|
|
|
let location = settings.location.as_ref().ok_or_else(|| {
|
|
|
|
gst_error_msg!(
|
|
|
|
gst::ResourceError::Settings,
|
|
|
|
["File location is not defined"]
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
let file = File::create(location).map_err(|err| {
|
|
|
|
gst_error_msg!(
|
|
|
|
gst::ResourceError::OpenWrite,
|
|
|
|
[
|
|
|
|
"Could not open file {} for writing: {}",
|
|
|
|
location,
|
|
|
|
err.to_string(),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
})?;
|
2018-12-02 13:19:37 +00:00
|
|
|
gst_debug!(self.cat, obj: element, "Opened file {:?}", file);
|
2016-08-27 08:16:17 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
*state = State::Started { file, position: 0 };
|
|
|
|
gst_info!(self.cat, obj: element, "Started");
|
|
|
|
|
2019-01-26 15:07:51 +00:00
|
|
|
Ok(())
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
|
|
|
|
2019-01-26 15:07:51 +00:00
|
|
|
fn stop(&self, element: &gst_base::BaseSink) -> Result<(), gst::ErrorMessage> {
|
2018-12-02 13:19:37 +00:00
|
|
|
let mut state = self.state.lock().unwrap();
|
|
|
|
if let State::Stopped = *state {
|
2019-01-26 15:07:51 +00:00
|
|
|
return Err(gst_error_msg!(
|
|
|
|
gst::ResourceError::Settings,
|
2018-12-02 13:19:37 +00:00
|
|
|
["FileSink not started"]
|
2019-01-26 15:07:51 +00:00
|
|
|
));
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
*state = State::Stopped;
|
|
|
|
gst_info!(self.cat, obj: element, "Stopped");
|
2016-05-14 13:31:39 +00:00
|
|
|
|
2019-01-26 15:07:51 +00:00
|
|
|
Ok(())
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|
2016-12-27 15:47:39 +00:00
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
// TODO: implement seek in BYTES format
|
2016-12-27 15:47:39 +00:00
|
|
|
|
2019-01-11 23:45:05 +00:00
|
|
|
fn render(
|
|
|
|
&self,
|
|
|
|
element: &gst_base::BaseSink,
|
2019-05-23 20:55:54 +00:00
|
|
|
buffer: &gst::Buffer,
|
2019-01-11 23:45:05 +00:00
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
2018-12-02 13:19:37 +00:00
|
|
|
let mut state = self.state.lock().unwrap();
|
|
|
|
let (file, position) = match *state {
|
|
|
|
State::Started {
|
2017-04-12 13:46:11 +00:00
|
|
|
ref mut file,
|
|
|
|
ref mut position,
|
|
|
|
} => (file, position),
|
2018-12-02 13:19:37 +00:00
|
|
|
State::Stopped => {
|
|
|
|
gst_element_error!(element, gst::CoreError::Failed, ["Not started yet"]);
|
2019-01-11 23:45:05 +00:00
|
|
|
return Err(gst::FlowError::Error);
|
2016-07-20 08:28:58 +00:00
|
|
|
}
|
2016-08-27 08:16:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-02 13:19:37 +00:00
|
|
|
gst_trace!(self.cat, obj: element, "Rendering {:?}", buffer);
|
2019-01-11 23:45:05 +00:00
|
|
|
let map = buffer.map_readable().ok_or_else(|| {
|
|
|
|
gst_element_error!(element, gst::CoreError::Failed, ["Failed to map buffer"]);
|
|
|
|
gst::FlowError::Error
|
|
|
|
})?;
|
2016-09-12 13:00:28 +00:00
|
|
|
|
2019-01-11 23:45:05 +00:00
|
|
|
file.write_all(map.as_ref()).map_err(|err| {
|
|
|
|
gst_element_error!(
|
|
|
|
element,
|
|
|
|
gst::ResourceError::Write,
|
|
|
|
["Failed to write buffer: {}", err]
|
|
|
|
);
|
|
|
|
gst::FlowError::Error
|
|
|
|
})?;
|
2016-08-27 08:16:17 +00:00
|
|
|
|
2019-01-11 23:45:05 +00:00
|
|
|
*position += map.len() as u64;
|
2016-09-01 21:52:28 +00:00
|
|
|
|
2019-01-11 23:45:05 +00:00
|
|
|
Ok(gst::FlowSuccess::Ok)
|
2016-05-14 13:31:39 +00:00
|
|
|
}
|
2016-05-13 15:07:26 +00:00
|
|
|
}
|
2018-12-02 13:19:37 +00:00
|
|
|
|
|
|
|
impl URIHandlerImpl for FileSink {
|
|
|
|
fn get_uri(&self, _element: &gst::URIHandler) -> Option<String> {
|
|
|
|
let settings = self.settings.lock().unwrap();
|
|
|
|
|
|
|
|
// Conversion to Url already checked while building the `FileLocation`
|
|
|
|
settings.location.as_ref().map(|location| {
|
|
|
|
Url::from_file_path(location)
|
|
|
|
.expect("FileSink::get_uri couldn't build `Url` from `location`")
|
|
|
|
.into_string()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_uri(&self, element: &gst::URIHandler, uri: Option<String>) -> Result<(), glib::Error> {
|
|
|
|
let element = element.dynamic_cast_ref::<gst_base::BaseSink>().unwrap();
|
|
|
|
|
|
|
|
// Special case for "file://" as this is used by some applications to test
|
|
|
|
// with `gst_element_make_from_uri` if there's an element that supports the URI protocol
|
|
|
|
let uri = uri.filter(|uri| uri != "file://");
|
|
|
|
|
|
|
|
let file_location = match uri {
|
|
|
|
Some(uri) => Some(FileLocation::try_from_uri_str(&uri)?),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
self.set_location(&element, file_location)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_uri_type() -> gst::URIType {
|
|
|
|
gst::URIType::Sink
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_protocols() -> Vec<String> {
|
|
|
|
vec!["file".to_string()]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
2019-04-16 07:09:42 +00:00
|
|
|
gst::Element::register(Some(plugin), "rsfilesink", 256 + 100, FileSink::get_type())
|
2018-12-02 13:19:37 +00:00
|
|
|
}
|