2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2017-02-10 22:14:07 +01:00
|
|
|
#include "event/Thread.hxx"
|
2014-01-24 00:02:24 +01:00
|
|
|
#include "decoder/DecoderList.hxx"
|
2014-05-22 11:24:40 +02:00
|
|
|
#include "decoder/DecoderPlugin.hxx"
|
2019-07-12 17:49:12 +02:00
|
|
|
#include "decoder/DecoderAPI.hxx" /* for class StopDecoder */
|
2018-02-17 08:27:03 +01:00
|
|
|
#include "DumpDecoderClient.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/Init.hxx"
|
|
|
|
#include "input/InputStream.hxx"
|
2014-02-07 18:52:19 +01:00
|
|
|
#include "fs/Path.hxx"
|
2020-04-02 16:40:18 +02:00
|
|
|
#include "fs/NarrowPath.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioFormat.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"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2018-02-12 23:52:44 +01:00
|
|
|
#include "LogBackend.hxx"
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2016-07-11 22:37:40 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
#include <unistd.h>
|
2011-08-24 03:23:12 +02:00
|
|
|
#include <stdlib.h>
|
2013-12-15 17:12:43 +01:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:26:43 +01:00
|
|
|
|
2018-02-12 23:52:44 +01:00
|
|
|
struct CommandLine {
|
|
|
|
const char *decoder = nullptr;
|
|
|
|
const char *uri = nullptr;
|
|
|
|
|
2020-04-02 16:40:18 +02:00
|
|
|
FromNarrowPath config_path;
|
2018-02-12 23:52:44 +01:00
|
|
|
|
|
|
|
bool verbose = false;
|
2020-02-04 21:46:50 +01:00
|
|
|
|
|
|
|
SongTime seek_where{};
|
2018-02-12 23:52:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum Option {
|
|
|
|
OPTION_CONFIG,
|
|
|
|
OPTION_VERBOSE,
|
2020-02-04 21:46:50 +01:00
|
|
|
OPTION_SEEK,
|
2018-02-12 23:52:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr OptionDef option_defs[] = {
|
|
|
|
{"config", 0, true, "Load a MPD configuration file"},
|
|
|
|
{"verbose", 'v', false, "Verbose logging"},
|
2020-02-04 21:46:50 +01:00
|
|
|
{"seek", 0, true, "Seek to this position"},
|
2018-02-12 23:52:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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_CONFIG:
|
2020-04-02 16:40:18 +02:00
|
|
|
c.config_path = o.value;
|
2018-02-12 23:52:44 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_VERBOSE:
|
|
|
|
c.verbose = true;
|
|
|
|
break;
|
2020-02-04 21:46:50 +01:00
|
|
|
|
|
|
|
case OPTION_SEEK:
|
|
|
|
c.seek_where = SongTime::FromS(strtod(o.value, nullptr));
|
|
|
|
break;
|
2018-02-12 23:52:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto args = option_parser.GetRemaining();
|
2022-07-04 19:01:11 +02:00
|
|
|
if (args.size() != 2)
|
2018-02-12 23:52:44 +01:00
|
|
|
throw std::runtime_error("Usage: run_decoder [--verbose] [--config=FILE] DECODER URI");
|
|
|
|
|
|
|
|
c.decoder = args[0];
|
|
|
|
c.uri = args[1];
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2018-02-12 23:55:28 +01:00
|
|
|
class GlobalInit {
|
2019-02-05 21:56:20 +01:00
|
|
|
const ConfigData config;
|
2018-02-12 23:55:28 +01:00
|
|
|
EventThread io_thread;
|
2019-02-05 21:50:31 +01:00
|
|
|
const ScopeInputPluginsInit input_plugins_init;
|
2019-02-05 22:11:45 +01:00
|
|
|
const ScopeDecoderPluginsInit decoder_plugins_init;
|
2018-02-12 23:55:28 +01:00
|
|
|
|
|
|
|
public:
|
2019-02-05 21:56:20 +01:00
|
|
|
explicit GlobalInit(Path config_path)
|
2019-02-05 21:50:31 +01:00
|
|
|
:config(AutoLoadConfigFile(config_path)),
|
2019-02-05 22:11:45 +01:00
|
|
|
input_plugins_init(config, io_thread.GetEventLoop()),
|
|
|
|
decoder_plugins_init(config)
|
2019-02-05 21:56:20 +01:00
|
|
|
{
|
2018-08-19 22:40:36 +02:00
|
|
|
io_thread.Start();
|
2018-02-12 23:55:28 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-02-04 21:46:50 +01:00
|
|
|
class MyDecoderClient final : public DumpDecoderClient {
|
|
|
|
SongTime seek_where;
|
|
|
|
|
|
|
|
unsigned sample_rate;
|
|
|
|
|
|
|
|
bool seekable, seek_error = false;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MyDecoderClient(SongTime _seek_where) noexcept
|
|
|
|
:seek_where(_seek_where) {}
|
|
|
|
|
|
|
|
void Finish() {
|
|
|
|
if (!IsInitialized())
|
|
|
|
throw "Unrecognized file";
|
|
|
|
|
|
|
|
if (seek_error)
|
|
|
|
throw "Seek error";
|
|
|
|
|
|
|
|
if (seek_where != SongTime{}) {
|
|
|
|
if (!seekable)
|
|
|
|
throw "Not seekable";
|
|
|
|
|
|
|
|
throw "Did not seek";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual methods from DecoderClient */
|
|
|
|
void Ready(AudioFormat audio_format,
|
|
|
|
bool _seekable, SignedSongTime duration) noexcept override {
|
|
|
|
assert(!IsInitialized());
|
|
|
|
|
|
|
|
DumpDecoderClient::Ready(audio_format, _seekable, duration);
|
|
|
|
sample_rate = audio_format.sample_rate;
|
|
|
|
seekable = _seekable;
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoderCommand GetCommand() noexcept override {
|
|
|
|
if (seek_where != SongTime{}) {
|
|
|
|
if (!seekable)
|
|
|
|
return DecoderCommand::STOP;
|
|
|
|
|
|
|
|
return DecoderCommand::SEEK;
|
|
|
|
} else if (seek_error)
|
|
|
|
return DecoderCommand::STOP;
|
|
|
|
else
|
|
|
|
return DumpDecoderClient::GetCommand();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandFinished() noexcept override {
|
|
|
|
assert(!seek_error);
|
|
|
|
|
|
|
|
if (seek_where != SongTime{})
|
|
|
|
seek_where = {};
|
|
|
|
else
|
|
|
|
DumpDecoderClient::CommandFinished();
|
|
|
|
}
|
|
|
|
|
|
|
|
SongTime GetSeekTime() noexcept override {
|
|
|
|
assert(seek_where != SongTime{});
|
|
|
|
|
|
|
|
return seek_where;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t GetSeekFrame() noexcept override {
|
|
|
|
assert(seek_where != SongTime{});
|
|
|
|
|
|
|
|
return GetSeekTime().ToScale<uint64_t>(sample_rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SeekError() noexcept override {
|
|
|
|
assert(seek_where != SongTime{});
|
|
|
|
|
|
|
|
seek_error = true;
|
|
|
|
seek_where = {};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
int main(int argc, char **argv)
|
2016-07-11 22:37:40 +02:00
|
|
|
try {
|
2018-02-12 23:52:44 +01:00
|
|
|
const auto c = ParseCommandLine(argc, argv);
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
|
|
|
|
const GlobalInit init(c.config_path);
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2018-02-12 23:52:44 +01:00
|
|
|
const DecoderPlugin *plugin = decoder_plugin_from_name(c.decoder);
|
2014-05-22 11:14:01 +02:00
|
|
|
if (plugin == nullptr) {
|
2018-02-12 23:52:44 +01:00
|
|
|
fprintf(stderr, "No such decoder: %s\n", c.decoder);
|
2013-12-15 17:12:43 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2020-02-04 21:46:50 +01:00
|
|
|
MyDecoderClient client(c.seek_where);
|
2020-09-21 13:01:51 +02:00
|
|
|
if (plugin->SupportsUri(c.uri)) {
|
|
|
|
try {
|
|
|
|
plugin->UriDecode(client, c.uri);
|
|
|
|
} catch (StopDecoder) {
|
|
|
|
}
|
|
|
|
} else if (plugin->file_decode != nullptr) {
|
2019-07-12 17:49:12 +02:00
|
|
|
try {
|
2020-04-02 16:40:18 +02:00
|
|
|
plugin->FileDecode(client, FromNarrowPath(c.uri));
|
2019-07-12 17:49:12 +02:00
|
|
|
} catch (StopDecoder) {
|
|
|
|
}
|
2014-05-22 11:14:01 +02:00
|
|
|
} else if (plugin->stream_decode != nullptr) {
|
2018-06-22 19:37:18 +02:00
|
|
|
auto is = InputStream::OpenReady(c.uri, client.mutex);
|
2019-07-12 17:49:12 +02:00
|
|
|
try {
|
|
|
|
plugin->StreamDecode(client, *is);
|
|
|
|
} catch (StopDecoder) {
|
|
|
|
}
|
2009-02-25 17:09:09 +01:00
|
|
|
} else {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Decoder plugin is not usable\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|
|
|
|
|
2020-02-04 21:46:50 +01:00
|
|
|
client.Finish();
|
2009-02-25 17:09:09 +01:00
|
|
|
|
2016-07-11 22:37:40 +02:00
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-07-11 22:37:40 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-02-25 17:09:09 +01:00
|
|
|
}
|