input/Plugin: migrate init() from class Error to C++ exceptions

This commit is contained in:
Max Kellermann 2016-09-05 12:05:54 +02:00
parent a73688a2be
commit 6ed77f2a27
15 changed files with 55 additions and 99 deletions

View File

@ -536,12 +536,7 @@ try {
instance->partition->pc);
client_manager_init();
replay_gain_global_init();
if (!input_stream_global_init(error)) {
LogError(error);
return EXIT_FAILURE;
}
input_stream_global_init();
playlist_list_global_init();
#ifdef ENABLE_DAEMON

View File

@ -21,7 +21,6 @@
#include "Init.hxx"
#include "Registry.hxx"
#include "InputPlugin.hxx"
#include "util/Error.hxx"
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
#include "config/Block.hxx"
@ -33,8 +32,8 @@
#include <assert.h>
bool
input_stream_global_init(Error &error)
void
input_stream_global_init()
{
const ConfigBlock empty;
@ -54,12 +53,9 @@ input_stream_global_init(Error &error)
/* the plugin is disabled in mpd.conf */
continue;
InputPlugin::InitResult result;
try {
result = plugin->init != nullptr
? plugin->init(*block, error)
: InputPlugin::InitResult::SUCCESS;
if (plugin->init != nullptr)
plugin->init(*block);
} catch (const PluginUnavailable &e) {
FormatError(e,
"Input plugin '%s' is unavailable",
@ -69,20 +65,7 @@ input_stream_global_init(Error &error)
std::throw_with_nested(FormatRuntimeError("Failed to initialize input plugin '%s'",
plugin->name));
}
switch (result) {
case InputPlugin::InitResult::SUCCESS:
input_plugins_enabled[i] = true;
break;
case InputPlugin::InitResult::ERROR:
error.FormatPrefix("Failed to initialize input plugin '%s': ",
plugin->name);
return false;
}
}
return true;
}
void input_stream_global_finish(void)

View File

@ -25,8 +25,8 @@ class Error;
/**
* Initializes this library and all #InputStream implementations.
*/
bool
input_stream_global_init(Error &error);
void
input_stream_global_init();
/**
* Deinitializes this library and all #InputStream implementations.

View File

@ -40,20 +40,6 @@ class Error;
struct Tag;
struct InputPlugin {
enum class InitResult {
/**
* A fatal error has occurred (e.g. misconfiguration).
* The #Error has been set.
*/
ERROR,
/**
* The plugin was initialized successfully and is
* ready to be used.
*/
SUCCESS,
};
const char *name;
/**
@ -61,8 +47,10 @@ struct InputPlugin {
*
* Throws #PluginUnavailable if the plugin is not available
* and shall be disabled.
*
* Throws std::runtime_error on (fatal) error.
*/
InitResult (*init)(const ConfigBlock &block, Error &error);
void (*init)(const ConfigBlock &block);
/**
* Global deinitialization. Called once before MPD shuts

View File

@ -27,6 +27,7 @@
#include "../InputPlugin.hxx"
#include "util/StringUtil.hxx"
#include "util/StringCompare.hxx"
#include "util/RuntimeError.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "system/ByteOrder.hxx"
@ -105,8 +106,8 @@ static constexpr Domain cdio_domain("cdio");
static bool default_reverse_endian;
static InputPlugin::InitResult
input_cdio_init(const ConfigBlock &block, Error &error)
static void
input_cdio_init(const ConfigBlock &block)
{
const char *value = block.GetBlockValue("default_byte_order");
if (value != nullptr) {
@ -114,15 +115,10 @@ input_cdio_init(const ConfigBlock &block, Error &error)
default_reverse_endian = IsBigEndian();
else if (strcmp(value, "big_endian") == 0)
default_reverse_endian = IsLittleEndian();
else {
error.Format(config_domain, 0,
"Unrecognized 'default_byte_order' setting: %s",
value);
return InputPlugin::InitResult::ERROR;
}
else
throw FormatRuntimeError("Unrecognized 'default_byte_order' setting: %s",
value);
}
return InputPlugin::InitResult::SUCCESS;
}
struct cdio_uri {

View File

@ -533,8 +533,8 @@ CurlMulti::OnTimeout()
*
*/
static InputPlugin::InitResult
input_curl_init(const ConfigBlock &block, gcc_unused Error &error)
static void
input_curl_init(const ConfigBlock &block)
{
CURLcode code = curl_global_init(CURL_GLOBAL_ALL);
if (code != CURLE_OK)
@ -577,7 +577,6 @@ input_curl_init(const ConfigBlock &block, gcc_unused Error &error)
}
curl_multi = new CurlMulti(io_thread_get(), multi);
return InputPlugin::InitResult::SUCCESS;
}
static void

View File

@ -72,17 +72,14 @@ input_ffmpeg_supported(void)
return avio_enum_protocols(&opaque, 0) != nullptr;
}
static InputPlugin::InitResult
input_ffmpeg_init(gcc_unused const ConfigBlock &block,
gcc_unused Error &error)
static void
input_ffmpeg_init(gcc_unused const ConfigBlock &block)
{
FfmpegInit();
/* disable this plugin if there's no registered protocol */
if (!input_ffmpeg_supported())
throw PluginUnavailable("No protocol");
return InputPlugin::InitResult::SUCCESS;
}
static InputStream *

View File

@ -215,11 +215,10 @@ NfsInputStream::OnNfsFileError(Error &&error)
*
*/
static InputPlugin::InitResult
input_nfs_init(const ConfigBlock &, Error &)
static void
input_nfs_init(const ConfigBlock &)
{
nfs_init();
return InputPlugin::InitResult::SUCCESS;
}
static void

View File

@ -68,8 +68,8 @@ public:
*
*/
static InputPlugin::InitResult
input_smbclient_init(gcc_unused const ConfigBlock &block, gcc_unused Error &error)
static void
input_smbclient_init(gcc_unused const ConfigBlock &block)
{
try {
SmbclientInit();
@ -81,8 +81,6 @@ input_smbclient_init(gcc_unused const ConfigBlock &block, gcc_unused Error &erro
// TODO: create one global SMBCCTX here?
// TODO: evaluate ConfigBlock, call smbc_setOption*()
return InputPlugin::InitResult::SUCCESS;
}
static InputStream *

View File

@ -68,11 +68,7 @@ try {
const ScopeIOThread io_thread;
if (!input_stream_global_init(error)) {
LogError(error);
return EXIT_FAILURE;
}
input_stream_global_init();
playlist_list_global_init();
decoder_plugin_init_all();

View File

@ -31,6 +31,8 @@
#include "archive/ArchiveList.hxx"
#endif
#include <stdexcept>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
@ -63,7 +65,7 @@ dump_input_stream(InputStreamPtr &&is)
}
int main(int argc, char **argv)
{
try {
int ret;
if (argc != 2) {
@ -82,10 +84,7 @@ int main(int argc, char **argv)
#endif
Error error;
if (!input_stream_global_init(error)) {
LogError(error);
return 2;
}
input_stream_global_init();
/* open the stream and dump it */
@ -116,4 +115,7 @@ int main(int argc, char **argv)
config_global_finish();
return ret;
} catch (const std::exception &e) {
LogError(e);
return EXIT_FAILURE;
}

View File

@ -31,6 +31,8 @@
#include "thread/Cond.hxx"
#include "Log.hxx"
#include <stdexcept>
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
@ -68,7 +70,7 @@ static constexpr TagHandler print_handler = {
};
int main(int argc, char **argv)
{
try {
const char *decoder_name;
const struct DecoderPlugin *plugin;
@ -88,11 +90,7 @@ int main(int argc, char **argv)
const ScopeIOThread io_thread;
Error error;
if (!input_stream_global_init(error)) {
LogError(error);
return 2;
}
input_stream_global_init();
decoder_plugin_init_all();
plugin = decoder_plugin_from_name(decoder_name);
@ -129,4 +127,7 @@ int main(int argc, char **argv)
ScanGenericTags(path, print_handler, nullptr);
return 0;
} catch (const std::exception &e) {
LogError(e);
return EXIT_FAILURE;
}

View File

@ -50,10 +50,7 @@ try {
const ScopeIOThread io_thread;
Error error;
if (!input_stream_global_init(error)) {
LogError(error);
return EXIT_FAILURE;
}
input_stream_global_init();
decoder_plugin_init_all();

View File

@ -34,6 +34,8 @@
#include "archive/ArchiveList.hxx"
#endif
#include <stdexcept>
#include <unistd.h>
#include <stdlib.h>
@ -91,7 +93,7 @@ dump_input_stream(InputStream *is)
}
int main(int argc, char **argv)
{
try {
if (argc != 2) {
fprintf(stderr, "Usage: run_input URI\n");
return EXIT_FAILURE;
@ -108,10 +110,7 @@ int main(int argc, char **argv)
#endif
Error error;
if (!input_stream_global_init(error)) {
LogError(error);
return 2;
}
input_stream_global_init();
/* open the stream and dump it */
@ -142,4 +141,7 @@ int main(int argc, char **argv)
config_global_finish();
return ret;
} catch (const std::exception &e) {
LogError(e);
return EXIT_FAILURE;
}

View File

@ -28,6 +28,9 @@
#include "archive/ArchiveVisitor.hxx"
#include "fs/Path.hxx"
#include "util/Error.hxx"
#include "Log.hxx"
#include <stdexcept>
#include <unistd.h>
#include <stdlib.h>
@ -42,7 +45,7 @@ class MyArchiveVisitor final : public ArchiveVisitor {
int
main(int argc, char **argv)
{
try {
Error error;
if (argc != 3) {
@ -61,10 +64,7 @@ main(int argc, char **argv)
archive_plugin_init_all();
if (!input_stream_global_init(error)) {
fprintf(stderr, "%s", error.GetMessage());
return 2;
}
input_stream_global_init();
/* open the archive and dump it */
@ -95,4 +95,7 @@ main(int argc, char **argv)
config_global_finish();
return result;
} catch (const std::exception &e) {
LogError(e);
return EXIT_FAILURE;
}