mpd/src/output/plugins/RecorderOutputPlugin.cxx

351 lines
6.7 KiB
C++
Raw Normal View History

/*
2018-10-31 17:54:59 +01:00
* Copyright 2003-2018 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2013-04-16 23:55:26 +02:00
#include "RecorderOutputPlugin.hxx"
2014-01-23 23:49:50 +01:00
#include "../OutputAPI.hxx"
2015-01-10 08:58:31 +01:00
#include "tag/Format.hxx"
#include "encoder/ToOutputStream.hxx"
#include "encoder/EncoderInterface.hxx"
#include "encoder/Configured.hxx"
#include "config/Domain.hxx"
#include "config/Path.hxx"
2014-12-26 14:57:21 +01:00
#include "Log.hxx"
#include "fs/AllocatedPath.hxx"
2015-01-07 19:07:59 +01:00
#include "fs/io/FileOutputStream.hxx"
2015-01-10 08:58:31 +01:00
#include "util/Domain.hxx"
#include "util/ScopeExit.hxx"
#include <stdexcept>
#include <memory>
#include <assert.h>
2015-01-10 08:58:31 +01:00
#include <stdlib.h>
static constexpr Domain recorder_domain("recorder");
class RecorderOutput final : AudioOutput {
/**
* The configured encoder plugin.
*/
std::unique_ptr<PreparedEncoder> prepared_encoder;
Encoder *encoder;
/**
* The destination file name.
*/
AllocatedPath path = nullptr;
2015-01-10 08:58:31 +01:00
/**
* A string that will be used with FormatTag() to build the
* destination path.
*/
std::string format_path;
/**
* The #AudioFormat that is currently active. This is used
* for switching to another file.
*/
AudioFormat effective_audio_format;
/**
2015-01-07 19:07:59 +01:00
* The destination file.
*/
2015-01-07 19:07:59 +01:00
FileOutputStream *file;
RecorderOutput(const ConfigBlock &block);
public:
static AudioOutput *Create(EventLoop &, const ConfigBlock &block) {
return new RecorderOutput(block);
}
private:
void Open(AudioFormat &audio_format) override;
void Close() noexcept override;
2013-04-16 23:55:26 +02:00
/**
* Writes pending data from the encoder to the output file.
*/
void EncoderToFile();
2014-12-26 14:57:21 +01:00
void SendTag(const Tag &tag) override;
size_t Play(const void *chunk, size_t size) override;
private:
2015-01-10 08:58:31 +01:00
gcc_pure
bool HasDynamicPath() const noexcept {
2015-01-10 08:58:31 +01:00
return !format_path.empty();
}
/**
* Finish the encoder and commit the file.
*
* Throws #std::runtime_error on error.
*/
void Commit();
2015-01-10 08:58:31 +01:00
void FinishFormat();
void ReopenFormat(AllocatedPath &&new_path);
};
RecorderOutput::RecorderOutput(const ConfigBlock &block)
:AudioOutput(0),
prepared_encoder(CreateConfiguredEncoder(block))
{
/* read configuration */
path = block.GetPath("path");
2015-01-10 08:58:31 +01:00
const char *fmt = block.GetBlockValue("format_path", nullptr);
2015-01-10 08:58:31 +01:00
if (fmt != nullptr)
format_path = fmt;
if (path.IsNull() && fmt == nullptr)
throw std::runtime_error("'path' not configured");
2015-01-10 08:58:31 +01:00
if (!path.IsNull() && fmt != nullptr)
throw std::runtime_error("Cannot have both 'path' and 'format_path'");
2013-04-16 23:55:26 +02:00
}
inline void
RecorderOutput::EncoderToFile()
{
2015-01-07 19:07:59 +01:00
assert(file != nullptr);
EncoderToOutputStream(*file, *encoder);
}
void
RecorderOutput::Open(AudioFormat &audio_format)
{
/* create the output file */
2015-01-10 08:58:31 +01:00
if (!HasDynamicPath()) {
assert(!path.IsNull());
file = new FileOutputStream(path);
2015-01-10 08:58:31 +01:00
} else {
/* don't open the file just yet; wait until we have
a tag that we can use to build the path */
assert(path.IsNull());
file = nullptr;
}
/* open the encoder */
try {
encoder = prepared_encoder->Open(audio_format);
} catch (...) {
2015-01-07 19:07:59 +01:00
delete file;
throw;
}
2015-01-10 08:58:31 +01:00
if (!HasDynamicPath()) {
try {
EncoderToFile();
} catch (...) {
delete encoder;
throw;
2015-01-10 08:58:31 +01:00
}
} else {
/* remember the AudioFormat for ReopenFormat() */
effective_audio_format = audio_format;
/* close the encoder for now; it will be opened as
soon as we have received a tag */
delete encoder;
}
}
inline void
RecorderOutput::Commit()
{
2015-01-10 08:58:31 +01:00
assert(!path.IsNull());
/* flush the encoder and write the rest to the file */
try {
encoder->End();
EncoderToFile();
} catch (...) {
delete encoder;
throw;
}
/* now really close everything */
delete encoder;
try {
file->Commit();
} catch (...) {
delete file;
throw;
}
2015-01-07 19:07:59 +01:00
delete file;
}
void
RecorderOutput::Close() noexcept
{
2015-01-10 08:58:31 +01:00
if (file == nullptr) {
/* not currently encoding to a file; nothing needs to
be done now */
assert(HasDynamicPath());
assert(path.IsNull());
return;
}
try {
Commit();
} catch (...) {
LogError(std::current_exception());
}
2015-01-10 08:58:31 +01:00
if (HasDynamicPath()) {
assert(!path.IsNull());
path.SetNull();
}
}
void
RecorderOutput::FinishFormat()
{
assert(HasDynamicPath());
if (file == nullptr)
return;
try {
Commit();
} catch (...) {
LogError(std::current_exception());
}
2015-01-10 08:58:31 +01:00
file = nullptr;
path.SetNull();
}
inline void
RecorderOutput::ReopenFormat(AllocatedPath &&new_path)
2015-01-10 08:58:31 +01:00
{
assert(HasDynamicPath());
assert(path.IsNull());
assert(file == nullptr);
FileOutputStream *new_file = new FileOutputStream(new_path);
2015-01-10 08:58:31 +01:00
AudioFormat new_audio_format = effective_audio_format;
try {
encoder = prepared_encoder->Open(new_audio_format);
} catch (...) {
2015-01-10 08:58:31 +01:00
delete new_file;
throw;
2015-01-10 08:58:31 +01:00
}
/* reopening the encoder must always result in the same
AudioFormat as before */
assert(new_audio_format == effective_audio_format);
try {
EncoderToOutputStream(*new_file, *encoder);
} catch (...) {
delete encoder;
2015-01-10 08:58:31 +01:00
delete new_file;
throw;
2015-01-10 08:58:31 +01:00
}
path = std::move(new_path);
file = new_file;
FormatDebug(recorder_domain, "Recording to \"%s\"",
path.ToUTF8().c_str());
}
void
2014-12-26 14:57:21 +01:00
RecorderOutput::SendTag(const Tag &tag)
{
2015-01-10 08:58:31 +01:00
if (HasDynamicPath()) {
char *p = FormatTag(tag, format_path.c_str());
if (p == nullptr || *p == 0) {
/* no path could be composed with this tag:
don't write a file */
free(p);
FinishFormat();
return;
}
AtScopeExit(p) { free(p); };
AllocatedPath new_path = nullptr;
try {
new_path = ParsePath(p);
} catch (...) {
LogError(std::current_exception());
2015-01-10 08:58:31 +01:00
FinishFormat();
return;
}
if (new_path != path) {
FinishFormat();
try {
ReopenFormat(std::move(new_path));
} catch (...) {
LogError(std::current_exception());
2015-01-10 08:58:31 +01:00
return;
}
}
}
encoder->PreTag();
EncoderToFile();
encoder->SendTag(tag);
2014-12-26 14:57:21 +01:00
}
size_t
RecorderOutput::Play(const void *chunk, size_t size)
{
2015-01-10 08:58:31 +01:00
if (file == nullptr) {
/* not currently encoding to a file; discard incoming
data */
assert(HasDynamicPath());
assert(path.IsNull());
return size;
}
encoder->Write(chunk, size);
EncoderToFile();
return size;
}
const struct AudioOutputPlugin recorder_output_plugin = {
2013-04-16 23:55:26 +02:00
"recorder",
nullptr,
&RecorderOutput::Create,
2013-04-16 23:55:26 +02:00
nullptr,
};