1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#include "output/Interface.hxx"
#include "output/Registry.hxx"
#include "output/OutputPlugin.hxx"
#include "ConfigGlue.hxx"
#include "lib/fmt/AudioFormatFormatter.hxx"
#include "lib/fmt/RuntimeError.hxx"
#include "event/Thread.hxx"
#include "fs/Path.hxx"
#include "fs/NarrowPath.hxx"
#include "pcm/AudioParser.hxx"
#include "pcm/AudioFormat.hxx"
#include "cmdline/OptionDef.hxx"
#include "cmdline/OptionParser.hxx"
#include "io/FileDescriptor.hxx"
#include "util/StringBuffer.hxx"
#include "util/ScopeExit.hxx"
#include "util/StaticFifoBuffer.hxx"
#include "util/PrintException.hxx"
#include "LogBackend.hxx"
#include <cassert>
#include <memory>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
struct CommandLine {
FromNarrowPath config_path;
const char *output_name = nullptr;
AudioFormat audio_format{44100, SampleFormat::S16, 2};
bool verbose = false;
};
enum Option {
OPTION_VERBOSE,
};
static constexpr OptionDef option_defs[] = {
{"verbose", 'v', false, "Verbose logging"},
};
static CommandLine
ParseCommandLine(int argc, char **argv)
{
CommandLine c;
OptionParser option_parser(option_defs, argc, argv);
while (auto o = option_parser.Next()) {
switch (Option(o.index)) {
case OPTION_VERBOSE:
c.verbose = true;
break;
}
}
auto args = option_parser.GetRemaining();
if (args.size() < 2 || args.size() > 3)
throw std::runtime_error("Usage: run_output CONFIG NAME [FORMAT] <IN");
c.config_path = args[0];
c.output_name = args[1];
if (args.size() > 2)
c.audio_format = ParseAudioFormat(args[2], false);
return c;
}
static std::unique_ptr<AudioOutput>
LoadAudioOutput(const ConfigData &config, EventLoop &event_loop,
const char *name)
{
const auto *block = config.FindBlock(ConfigBlockOption::AUDIO_OUTPUT,
"name", name);
if (block == nullptr)
throw FmtRuntimeError("No such configured audio output: {}",
name);
const char *plugin_name = block->GetBlockValue("type");
if (plugin_name == nullptr)
throw std::runtime_error("Missing \"type\" configuration");
const auto *plugin = GetAudioOutputPluginByName(plugin_name);
if (plugin == nullptr)
throw FmtRuntimeError("No such audio output plugin: {}",
plugin_name);
return std::unique_ptr<AudioOutput>(ao_plugin_init(event_loop, *plugin,
*block));
}
static void
RunOutput(AudioOutput &ao, AudioFormat audio_format,
FileDescriptor in_fd)
{
in_fd.SetBinaryMode();
/* open the audio output */
ao.Enable();
AtScopeExit(&ao) { ao.Disable(); };
ao.Open(audio_format);
AtScopeExit(&ao) { ao.Close(); };
fmt::print(stderr, "audio_format={}\n", audio_format);
const size_t in_frame_size = audio_format.GetFrameSize();
/* play */
StaticFifoBuffer<std::byte, 4096> buffer;
while (true) {
{
const auto dest = buffer.Write();
assert(!dest.empty());
ssize_t nbytes = in_fd.Read(dest);
if (nbytes <= 0)
break;
buffer.Append(nbytes);
}
auto src = buffer.Read();
assert(!src.empty());
src = src.first(src.size() - src.size() % in_frame_size);
if (src.empty())
continue;
size_t consumed = ao.Play(src);
assert(consumed <= src.size());
assert(consumed % in_frame_size == 0);
buffer.Consume(consumed);
}
ao.Drain();
}
int main(int argc, char **argv)
try {
const auto c = ParseCommandLine(argc, argv);
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
/* read configuration file (mpd.conf) */
const auto config = AutoLoadConfigFile(c.config_path);
EventThread io_thread;
io_thread.Start();
/* initialize the audio output */
auto ao = LoadAudioOutput(config, io_thread.GetEventLoop(),
c.output_name);
/* do it */
RunOutput(*ao, c.audio_format, FileDescriptor(STDIN_FILENO));
/* cleanup and exit */
return EXIT_SUCCESS;
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
}
|