2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-11-19 21:00:46 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This program is a command line interface to MPD's PCM conversion
|
|
|
|
* library (pcm_convert.c).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-03-11 20:10:14 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioParser.hxx"
|
|
|
|
#include "pcm/AudioFormat.hxx"
|
2019-06-17 11:10:33 +02:00
|
|
|
#include "pcm/Convert.hxx"
|
2020-03-11 20:10:14 +01:00
|
|
|
#include "fs/Path.hxx"
|
2021-03-05 13:24:23 +01:00
|
|
|
#include "fs/NarrowPath.hxx"
|
2021-03-08 16:50:32 +01:00
|
|
|
#include "io/FileDescriptor.hxx"
|
2014-08-06 16:54:53 +02:00
|
|
|
#include "util/StaticFifoBuffer.hxx"
|
2022-11-29 11:27:59 +01:00
|
|
|
#include "cmdline/OptionDef.hxx"
|
|
|
|
#include "cmdline/OptionParser.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2020-03-11 20:06:33 +01:00
|
|
|
#include "Log.hxx"
|
|
|
|
#include "LogBackend.hxx"
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2020-03-11 20:03:00 +01:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2009-11-19 21:00:46 +01:00
|
|
|
#include <stddef.h>
|
2013-11-11 08:17:29 +01:00
|
|
|
#include <stdlib.h>
|
2016-07-02 14:19:47 +02:00
|
|
|
#include <stdio.h>
|
2009-11-19 21:00:46 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2020-03-11 20:03:00 +01:00
|
|
|
struct CommandLine {
|
|
|
|
AudioFormat in_audio_format, out_audio_format;
|
2020-03-11 20:06:33 +01:00
|
|
|
|
2021-03-05 13:24:23 +01:00
|
|
|
FromNarrowPath config_path;
|
2020-03-11 20:10:14 +01:00
|
|
|
|
2020-03-11 20:06:33 +01:00
|
|
|
bool verbose = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Option {
|
2020-03-11 20:10:14 +01:00
|
|
|
OPTION_CONFIG,
|
2020-03-11 20:06:33 +01:00
|
|
|
OPTION_VERBOSE,
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr OptionDef option_defs[] = {
|
2020-03-11 20:10:14 +01:00
|
|
|
{"config", 0, true, "Load a MPD configuration file"},
|
2020-03-11 20:06:33 +01:00
|
|
|
{"verbose", 'v', false, "Verbose logging"},
|
2020-03-11 20:03:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static CommandLine
|
|
|
|
ParseCommandLine(int argc, char **argv)
|
|
|
|
{
|
|
|
|
CommandLine c;
|
|
|
|
|
2020-03-11 20:06:33 +01:00
|
|
|
OptionParser option_parser(option_defs, argc, argv);
|
|
|
|
while (auto o = option_parser.Next()) {
|
|
|
|
switch (Option(o.index)) {
|
2020-03-11 20:10:14 +01:00
|
|
|
case OPTION_CONFIG:
|
2021-03-05 13:24:23 +01:00
|
|
|
c.config_path = o.value;
|
2020-03-11 20:10:14 +01:00
|
|
|
break;
|
|
|
|
|
2020-03-11 20:06:33 +01:00
|
|
|
case OPTION_VERBOSE:
|
|
|
|
c.verbose = true;
|
|
|
|
break;
|
|
|
|
}
|
2009-11-19 21:00:46 +01:00
|
|
|
}
|
|
|
|
|
2020-03-11 20:03:00 +01:00
|
|
|
auto args = option_parser.GetRemaining();
|
2022-07-04 19:01:11 +02:00
|
|
|
if (args.size() != 2)
|
2020-03-11 20:03:00 +01:00
|
|
|
throw std::runtime_error("Usage: run_convert IN_FORMAT OUT_FORMAT <IN >OUT");
|
2009-11-19 21:00:46 +01:00
|
|
|
|
2020-03-11 20:03:00 +01:00
|
|
|
c.in_audio_format = ParseAudioFormat(args[0], false);
|
|
|
|
c.out_audio_format = c.in_audio_format.WithMask(ParseAudioFormat(args[1], false));
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2020-03-11 20:10:14 +01:00
|
|
|
class GlobalInit {
|
|
|
|
const ConfigData config;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit GlobalInit(Path config_path)
|
|
|
|
:config(AutoLoadConfigFile(config_path))
|
|
|
|
{
|
|
|
|
pcm_convert_global_init(config);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-03-08 16:41:46 +01:00
|
|
|
static void
|
2021-03-08 16:50:32 +01:00
|
|
|
RunConvert(PcmConvert &convert, size_t in_frame_size,
|
|
|
|
FileDescriptor in_fd, FileDescriptor out_fd)
|
2021-03-08 16:41:46 +01:00
|
|
|
{
|
2021-03-08 17:25:57 +01:00
|
|
|
in_fd.SetBinaryMode();
|
|
|
|
out_fd.SetBinaryMode();
|
|
|
|
|
2021-03-08 16:58:38 +01:00
|
|
|
StaticFifoBuffer<std::byte, 4096> buffer;
|
2010-01-16 23:25:43 +01:00
|
|
|
|
|
|
|
while (true) {
|
2013-10-15 10:28:52 +02:00
|
|
|
{
|
|
|
|
const auto dest = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!dest.empty());
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2023-09-27 10:46:43 +02:00
|
|
|
ssize_t nbytes = in_fd.Read(dest);
|
2013-10-15 10:28:52 +02:00
|
|
|
if (nbytes <= 0)
|
|
|
|
break;
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
buffer.Append(nbytes);
|
|
|
|
}
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
auto src = buffer.Read();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!src.empty());
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2022-05-10 17:26:41 +02:00
|
|
|
src = src.first(src.size() - src.size() % in_frame_size);
|
2017-11-10 19:24:33 +01:00
|
|
|
if (src.empty())
|
2010-01-16 23:25:43 +01:00
|
|
|
continue;
|
|
|
|
|
2022-05-10 17:26:41 +02:00
|
|
|
buffer.Consume(src.size());
|
2010-01-16 23:25:43 +01:00
|
|
|
|
2022-07-04 15:27:03 +02:00
|
|
|
auto output = convert.Convert(src);
|
2023-09-26 20:40:05 +02:00
|
|
|
out_fd.FullWrite(output);
|
2009-11-19 21:00:46 +01:00
|
|
|
}
|
|
|
|
|
2018-01-01 19:22:45 +01:00
|
|
|
while (true) {
|
2021-03-08 16:41:46 +01:00
|
|
|
auto output = convert.Flush();
|
2022-07-04 15:27:03 +02:00
|
|
|
if (output.data() == nullptr)
|
2018-01-01 19:22:45 +01:00
|
|
|
break;
|
|
|
|
|
2023-09-26 20:40:05 +02:00
|
|
|
out_fd.FullWrite(output);
|
2018-01-01 19:22:45 +01:00
|
|
|
}
|
2021-03-08 16:41:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
try {
|
|
|
|
const auto c = ParseCommandLine(argc, argv);
|
|
|
|
|
|
|
|
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
|
|
|
|
const GlobalInit init(c.config_path);
|
|
|
|
|
|
|
|
PcmConvert state(c.in_audio_format, c.out_audio_format);
|
2021-03-08 16:50:32 +01:00
|
|
|
RunConvert(state, c.in_audio_format.GetFrameSize(),
|
|
|
|
FileDescriptor(STDIN_FILENO),
|
|
|
|
FileDescriptor(STDOUT_FILENO));
|
2018-01-01 19:22:45 +01:00
|
|
|
|
2013-01-30 23:40:56 +01:00
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-05 12:19:20 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-11-19 21:00:46 +01:00
|
|
|
}
|