2009-08-24 18:57:06 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-08-24 18:57:06 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#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"
|
2014-01-23 23:09:14 +01:00
|
|
|
#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"
|
2015-01-05 19:49:54 +01:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2015-01-07 19:07:59 +01:00
|
|
|
#include "fs/io/FileOutputStream.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2013-04-16 23:55:26 +02:00
|
|
|
struct RecorderOutput {
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2009-08-24 18:57:06 +02:00
|
|
|
/**
|
|
|
|
* The configured encoder plugin.
|
|
|
|
*/
|
2013-07-30 09:04:05 +02:00
|
|
|
Encoder *encoder;
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The destination file name.
|
|
|
|
*/
|
2015-01-05 19:49:54 +01:00
|
|
|
AllocatedPath path;
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
/**
|
2015-01-07 19:07:59 +01:00
|
|
|
* The destination file.
|
2009-08-24 18:57:06 +02:00
|
|
|
*/
|
2015-01-07 19:07:59 +01:00
|
|
|
FileOutputStream *file;
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The buffer for encoder_read().
|
|
|
|
*/
|
|
|
|
char buffer[32768];
|
2013-04-16 23:55:26 +02:00
|
|
|
|
2014-01-28 23:39:48 +01:00
|
|
|
RecorderOutput()
|
2015-01-05 19:49:54 +01:00
|
|
|
:base(recorder_output_plugin),
|
|
|
|
path(AllocatedPath::Null()) {}
|
2014-01-28 23:39:48 +01:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Initialize(const config_param ¶m, Error &error_r) {
|
2014-01-28 11:39:12 +01:00
|
|
|
return base.Configure(param, error_r);
|
2013-04-16 23:55:26 +02:00
|
|
|
}
|
|
|
|
|
2015-01-07 18:52:47 +01:00
|
|
|
static RecorderOutput *Create(const config_param ¶m, Error &error);
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Configure(const config_param ¶m, Error &error);
|
2013-04-16 23:55:26 +02:00
|
|
|
|
2014-12-26 14:57:29 +01: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.
|
|
|
|
*/
|
2013-08-10 18:02:44 +02:00
|
|
|
bool EncoderToFile(Error &error);
|
2014-12-26 14:57:21 +01:00
|
|
|
|
|
|
|
void SendTag(const Tag &tag);
|
2015-01-07 18:52:47 +01:00
|
|
|
|
|
|
|
size_t Play(const void *chunk, size_t size, Error &error);
|
2015-01-07 19:11:04 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Finish the encoder and commit the file.
|
|
|
|
*/
|
|
|
|
bool Commit(Error &error);
|
2009-08-24 18:57:06 +02:00
|
|
|
};
|
|
|
|
|
2013-04-16 23:55:26 +02:00
|
|
|
inline bool
|
2013-08-10 18:02:44 +02:00
|
|
|
RecorderOutput::Configure(const config_param ¶m, Error &error)
|
2009-08-24 18:57:06 +02:00
|
|
|
{
|
|
|
|
/* read configuration */
|
|
|
|
|
2012-10-01 23:56:10 +02:00
|
|
|
const char *encoder_name =
|
2013-08-04 12:25:08 +02:00
|
|
|
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) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_domain,
|
|
|
|
"No such encoder: %s", encoder_name);
|
2013-04-16 23:55:26 +02:00
|
|
|
return false;
|
2009-08-24 18:57:06 +02:00
|
|
|
}
|
|
|
|
|
2015-01-05 19:49:54 +01:00
|
|
|
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;
|
2009-08-24 18:57:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize encoder */
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
encoder = encoder_init(*encoder_plugin, param, error);
|
2013-04-16 23:55:26 +02:00
|
|
|
if (encoder == nullptr)
|
|
|
|
return false;
|
2009-08-24 18:57:06 +02:00
|
|
|
|
2013-04-16 23:55:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-07 18:52:47 +01:00
|
|
|
RecorderOutput *
|
|
|
|
RecorderOutput::Create(const config_param ¶m, Error &error)
|
2013-04-16 23:55:26 +02:00
|
|
|
{
|
|
|
|
RecorderOutput *recorder = new RecorderOutput();
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!recorder->Initialize(param, error)) {
|
2013-04-16 23:55:26 +02:00
|
|
|
delete recorder;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
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
|
|
|
|
2015-01-07 18:52:47 +01:00
|
|
|
return recorder;
|
2009-08-24 18:57:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-01-28 11:34:09 +01:00
|
|
|
recorder_output_finish(AudioOutput *ao)
|
2009-08-24 18:57:06 +02:00
|
|
|
{
|
2013-04-16 23:55:26 +02:00
|
|
|
RecorderOutput *recorder = (RecorderOutput *)ao;
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
encoder_finish(recorder->encoder);
|
2013-04-16 23:55:26 +02:00
|
|
|
delete recorder;
|
2009-08-24 18:57:06 +02:00
|
|
|
}
|
|
|
|
|
2013-04-16 23:55:26 +02:00
|
|
|
inline bool
|
2013-08-10 18:02:44 +02:00
|
|
|
RecorderOutput::EncoderToFile(Error &error)
|
2012-10-01 23:59:50 +02:00
|
|
|
{
|
2015-01-07 19:07:59 +01:00
|
|
|
assert(file != nullptr);
|
|
|
|
assert(file->IsDefined());
|
2012-10-01 23:59:50 +02:00
|
|
|
|
2012-10-01 23:50:50 +02:00
|
|
|
while (true) {
|
|
|
|
/* read from the encoder */
|
2012-10-01 23:59:50 +02:00
|
|
|
|
2013-04-16 23:55:26 +02:00
|
|
|
size_t size = encoder_read(encoder, buffer, sizeof(buffer));
|
2012-10-01 23:50:50 +02:00
|
|
|
if (size == 0)
|
|
|
|
return true;
|
2012-10-01 23:59:50 +02:00
|
|
|
|
2012-10-01 23:50:50 +02:00
|
|
|
/* write everything into the file */
|
2012-10-01 23:59:50 +02:00
|
|
|
|
2015-01-07 19:07:59 +01:00
|
|
|
if (!file->Write(buffer, size, error))
|
2012-10-01 23:50:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-01 23:59:50 +02:00
|
|
|
}
|
|
|
|
|
2014-12-26 14:57:29 +01:00
|
|
|
inline bool
|
|
|
|
RecorderOutput::Open(AudioFormat &audio_format, Error &error)
|
2009-08-24 18:57:06 +02:00
|
|
|
{
|
|
|
|
/* create the output file */
|
|
|
|
|
2015-01-07 19:07:59 +01:00
|
|
|
file = new FileOutputStream(path, error);
|
|
|
|
if (!file->IsDefined()) {
|
|
|
|
delete file;
|
2009-08-24 18:57:06 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* open the encoder */
|
|
|
|
|
2014-12-26 14:57:29 +01:00
|
|
|
if (!encoder_open(encoder, audio_format, error)) {
|
2015-01-07 19:07:59 +01:00
|
|
|
delete file;
|
2012-10-01 23:17:13 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:57:29 +01:00
|
|
|
if (!EncoderToFile(error)) {
|
|
|
|
encoder_close(encoder);
|
2015-01-07 19:07:59 +01:00
|
|
|
delete file;
|
2009-08-24 18:57:06 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-07 19:11:04 +01:00
|
|
|
inline bool
|
|
|
|
RecorderOutput::Commit(Error &error)
|
2014-12-26 14:57:29 +01:00
|
|
|
{
|
2009-08-24 18:57:06 +02:00
|
|
|
/* flush the encoder and write the rest to the file */
|
|
|
|
|
2015-01-07 19:11:04 +01:00
|
|
|
bool success = encoder_end(encoder, error) &&
|
|
|
|
EncoderToFile(error);
|
2009-08-24 18:57:06 +02:00
|
|
|
|
|
|
|
/* now really close everything */
|
|
|
|
|
2014-12-26 14:57:29 +01:00
|
|
|
encoder_close(encoder);
|
|
|
|
|
2015-01-07 19:07:59 +01:00
|
|
|
if (success && !file->Commit(error))
|
|
|
|
success = false;
|
|
|
|
|
|
|
|
delete file;
|
2015-01-07 19:11:04 +01:00
|
|
|
|
|
|
|
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:29 +01:00
|
|
|
}
|
|
|
|
|
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) ||
|
2014-12-26 22:30:54 +01:00
|
|
|
!encoder_tag(encoder, tag, error))
|
2014-12-26 14:57:21 +01:00
|
|
|
LogError(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2014-12-26 22:27:01 +01:00
|
|
|
recorder_output_send_tag(AudioOutput *ao, const Tag &tag)
|
2014-12-26 14:57:21 +01:00
|
|
|
{
|
|
|
|
RecorderOutput &recorder = *(RecorderOutput *)ao;
|
|
|
|
|
2014-12-26 22:27:01 +01:00
|
|
|
recorder.SendTag(tag);
|
2014-12-26 14:57:21 +01:00
|
|
|
}
|
|
|
|
|
2015-01-07 18:52:47 +01:00
|
|
|
inline size_t
|
|
|
|
RecorderOutput::Play(const void *chunk, size_t size, Error &error)
|
2009-08-24 18:57:06 +02:00
|
|
|
{
|
2015-01-07 18:52:47 +01:00
|
|
|
return encoder_write(encoder, chunk, size, error) &&
|
|
|
|
EncoderToFile(error)
|
2009-08-24 18:57:06 +02:00
|
|
|
? size : 0;
|
|
|
|
}
|
|
|
|
|
2014-12-29 23:45:14 +01:00
|
|
|
typedef AudioOutputWrapper<RecorderOutput> Wrapper;
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin recorder_output_plugin = {
|
2013-04-16 23:55:26 +02:00
|
|
|
"recorder",
|
|
|
|
nullptr,
|
2015-01-07 18:52:47 +01:00
|
|
|
&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,
|
2014-12-26 14:57:21 +01:00
|
|
|
recorder_output_send_tag,
|
2015-01-07 18:52:47 +01:00
|
|
|
&Wrapper::Play,
|
2013-04-16 23:55:26 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2009-08-24 18:57:06 +02:00
|
|
|
};
|