2009-02-25 17:09:09 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2009-02-25 17:09:09 +01: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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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-02-25 17:09:09 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-19 22:40:36 +02:00
|
|
|
#include "config/File.hxx"
|
|
|
|
#include "config/Migrate.hxx"
|
|
|
|
#include "config/Data.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"
|
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"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2018-02-12 23:52:44 +01:00
|
|
|
#include "util/OptionDef.hxx"
|
|
|
|
#include "util/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
|
|
|
|
2016-07-11 22:37:40 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2009-02-25 17:09:09 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#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;
|
|
|
|
|
|
|
|
Path config_path = nullptr;
|
|
|
|
|
|
|
|
bool verbose = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Option {
|
|
|
|
OPTION_CONFIG,
|
|
|
|
OPTION_VERBOSE,
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr OptionDef option_defs[] = {
|
|
|
|
{"config", 0, true, "Load a MPD configuration file"},
|
|
|
|
{"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_CONFIG:
|
|
|
|
c.config_path = Path::FromFS(o.value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_VERBOSE:
|
|
|
|
c.verbose = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto args = option_parser.GetRemaining();
|
|
|
|
if (args.size != 2)
|
|
|
|
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 {
|
2018-08-19 22:40:36 +02:00
|
|
|
ConfigData config;
|
2018-02-12 23:55:28 +01:00
|
|
|
EventThread io_thread;
|
|
|
|
|
|
|
|
public:
|
2018-02-12 23:52:44 +01:00
|
|
|
GlobalInit(Path config_path, bool verbose) {
|
|
|
|
SetLogThreshold(verbose ? LogLevel::DEBUG : LogLevel::INFO);
|
|
|
|
|
2018-08-19 22:40:36 +02:00
|
|
|
if (!config_path.IsNull()) {
|
|
|
|
ReadConfigFile(config, config_path);
|
|
|
|
Migrate(config);
|
|
|
|
}
|
2018-02-12 23:55:28 +01:00
|
|
|
|
2018-08-19 22:40:36 +02:00
|
|
|
io_thread.Start();
|
2018-02-12 23:52:44 +01:00
|
|
|
|
2018-08-19 22:40:36 +02:00
|
|
|
input_stream_global_init(config,
|
2018-07-17 21:49:27 +02:00
|
|
|
io_thread.GetEventLoop());
|
2018-08-19 22:40:36 +02:00
|
|
|
decoder_plugin_init_all(config);
|
2018-02-12 23:55:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
~GlobalInit() {
|
|
|
|
decoder_plugin_deinit_all();
|
|
|
|
input_stream_global_finish();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2018-02-12 23:52:44 +01:00
|
|
|
const GlobalInit init(c.config_path, c.verbose);
|
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
|
|
|
}
|
|
|
|
|
2018-02-17 08:27:03 +01:00
|
|
|
DumpDecoderClient client;
|
2014-05-22 11:14:01 +02:00
|
|
|
if (plugin->file_decode != nullptr) {
|
2018-02-17 08:27:03 +01:00
|
|
|
plugin->FileDecode(client, Path::FromFS(c.uri));
|
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);
|
2018-02-17 08:27:03 +01:00
|
|
|
plugin->StreamDecode(client, *is);
|
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
|
|
|
}
|
|
|
|
|
2018-02-17 08:31:19 +01:00
|
|
|
if (!client.IsInitialized()) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Decoding failed\n");
|
|
|
|
return EXIT_FAILURE;
|
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
|
|
|
}
|