mpd/src/output/plugins/RecorderOutputPlugin.cxx

257 lines
5.1 KiB
C++
Raw Normal View History

/*
2015-01-01 19:48:13 +01:00
* Copyright (C) 2003-2015 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.
*/
#include "config.h"
2013-04-16 23:55:26 +02:00
#include "RecorderOutputPlugin.hxx"
2014-01-23 23:49:50 +01:00
#include "../OutputAPI.hxx"
2014-12-29 23:45:14 +01:00
#include "../Wrapper.hxx"
#include "encoder/EncoderPlugin.hxx"
#include "encoder/EncoderList.hxx"
2014-01-24 00:20:01 +01:00
#include "config/ConfigError.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"
#include "util/Error.hxx"
#include <assert.h>
2013-04-16 23:55:26 +02:00
struct RecorderOutput {
AudioOutput base;
/**
* The configured encoder plugin.
*/
2013-07-30 09:04:05 +02:00
Encoder *encoder;
/**
* The destination file name.
*/
AllocatedPath path;
/**
2015-01-07 19:07:59 +01:00
* The destination file.
*/
2015-01-07 19:07:59 +01:00
FileOutputStream *file;
/**
* The buffer for encoder_read().
*/
char buffer[32768];
2013-04-16 23:55:26 +02:00
RecorderOutput()
:base(recorder_output_plugin),
path(AllocatedPath::Null()) {}
bool Initialize(const config_param &param, Error &error_r) {
return base.Configure(param, error_r);
2013-04-16 23:55:26 +02:00
}
static RecorderOutput *Create(const config_param &param, Error &error);
bool Configure(const config_param &param, Error &error);
2013-04-16 23:55:26 +02:00
bool Open(AudioFormat &audio_format, Error &error);
void Close();
2013-04-16 23:55:26 +02:00
/**
* Writes pending data from the encoder to the output file.
*/
bool EncoderToFile(Error &error);
2014-12-26 14:57:21 +01:00
void SendTag(const Tag &tag);
size_t Play(const void *chunk, size_t size, Error &error);
private:
/**
* Finish the encoder and commit the file.
*/
bool Commit(Error &error);
};
2013-04-16 23:55:26 +02:00
inline bool
RecorderOutput::Configure(const config_param &param, Error &error)
{
/* read configuration */
const char *encoder_name =
param.GetBlockValue("encoder", "vorbis");
2013-07-30 09:04:05 +02:00
const auto encoder_plugin = encoder_plugin_get(encoder_name);
2013-04-16 23:55:26 +02:00
if (encoder_plugin == nullptr) {
error.Format(config_domain,
"No such encoder: %s", encoder_name);
2013-04-16 23:55:26 +02:00
return false;
}
path = param.GetBlockPath("path", error);
if (path.IsNull()) {
if (!error.IsDefined())
error.Set(config_domain, "'path' not configured");
2013-04-16 23:55:26 +02:00
return false;
}
/* initialize encoder */
encoder = encoder_init(*encoder_plugin, param, error);
2013-04-16 23:55:26 +02:00
if (encoder == nullptr)
return false;
2013-04-16 23:55:26 +02:00
return true;
}
RecorderOutput *
RecorderOutput::Create(const config_param &param, Error &error)
2013-04-16 23:55:26 +02:00
{
RecorderOutput *recorder = new RecorderOutput();
if (!recorder->Initialize(param, error)) {
2013-04-16 23:55:26 +02:00
delete recorder;
return nullptr;
}
if (!recorder->Configure(param, error)) {
2013-04-16 23:55:26 +02:00
delete recorder;
return nullptr;
}
2011-07-18 15:39:19 +02:00
return recorder;
}
static void
recorder_output_finish(AudioOutput *ao)
{
2013-04-16 23:55:26 +02:00
RecorderOutput *recorder = (RecorderOutput *)ao;
encoder_finish(recorder->encoder);
2013-04-16 23:55:26 +02:00
delete recorder;
}
2013-04-16 23:55:26 +02:00
inline bool
RecorderOutput::EncoderToFile(Error &error)
{
2015-01-07 19:07:59 +01:00
assert(file != nullptr);
assert(file->IsDefined());
while (true) {
/* read from the encoder */
2013-04-16 23:55:26 +02:00
size_t size = encoder_read(encoder, buffer, sizeof(buffer));
if (size == 0)
return true;
/* write everything into the file */
2015-01-07 19:07:59 +01:00
if (!file->Write(buffer, size, error))
return false;
}
}
inline bool
RecorderOutput::Open(AudioFormat &audio_format, Error &error)
{
/* create the output file */
2015-01-07 19:07:59 +01:00
file = new FileOutputStream(path, error);
if (!file->IsDefined()) {
delete file;
return false;
}
/* open the encoder */
if (!encoder_open(encoder, audio_format, error)) {
2015-01-07 19:07:59 +01:00
delete file;
return false;
}
if (!EncoderToFile(error)) {
encoder_close(encoder);
2015-01-07 19:07:59 +01:00
delete file;
return false;
}
return true;
}
inline bool
RecorderOutput::Commit(Error &error)
{
/* flush the encoder and write the rest to the file */
bool success = encoder_end(encoder, error) &&
EncoderToFile(error);
/* now really close everything */
encoder_close(encoder);
2015-01-07 19:07:59 +01:00
if (success && !file->Commit(error))
success = false;
delete file;
return success;
}
inline void
RecorderOutput::Close()
{
2015-01-07 19:13:55 +01:00
Error error;
if (!Commit(error))
LogError(error);
}
2014-12-26 14:57:21 +01:00
inline void
RecorderOutput::SendTag(const Tag &tag)
{
Error error;
if (!encoder_pre_tag(encoder, error) ||
!EncoderToFile(error) ||
!encoder_tag(encoder, tag, error))
2014-12-26 14:57:21 +01:00
LogError(error);
}
inline size_t
RecorderOutput::Play(const void *chunk, size_t size, Error &error)
{
return encoder_write(encoder, chunk, size, error) &&
EncoderToFile(error)
? size : 0;
}
2014-12-29 23:45:14 +01:00
typedef AudioOutputWrapper<RecorderOutput> Wrapper;
const struct AudioOutputPlugin recorder_output_plugin = {
2013-04-16 23:55:26 +02:00
"recorder",
nullptr,
&Wrapper::Init,
2013-04-16 23:55:26 +02:00
recorder_output_finish,
nullptr,
nullptr,
2014-12-29 23:45:14 +01:00
&Wrapper::Open,
&Wrapper::Close,
2013-04-16 23:55:26 +02:00
nullptr,
2015-01-07 19:20:09 +01:00
&Wrapper::SendTag,
&Wrapper::Play,
2013-04-16 23:55:26 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
};