input/Init: use struct ConfigData
This commit is contained in:
parent
7b02c0224c
commit
0ff0aca2e2
@ -570,7 +570,8 @@ try {
|
||||
}
|
||||
|
||||
client_manager_init();
|
||||
input_stream_global_init(instance->io_thread.GetEventLoop());
|
||||
input_stream_global_init(GetGlobalConfig(),
|
||||
instance->io_thread.GetEventLoop());
|
||||
playlist_list_global_init();
|
||||
|
||||
#ifdef ENABLE_DAEMON
|
||||
|
@ -21,7 +21,7 @@
|
||||
#include "Init.hxx"
|
||||
#include "Registry.hxx"
|
||||
#include "InputPlugin.hxx"
|
||||
#include "config/Global.hxx"
|
||||
#include "config/Data.hxx"
|
||||
#include "config/Option.hxx"
|
||||
#include "config/Block.hxx"
|
||||
#include "Log.hxx"
|
||||
@ -33,7 +33,7 @@
|
||||
#include <assert.h>
|
||||
|
||||
void
|
||||
input_stream_global_init(EventLoop &event_loop)
|
||||
input_stream_global_init(const ConfigData &config, EventLoop &event_loop)
|
||||
{
|
||||
const ConfigBlock empty;
|
||||
|
||||
@ -45,8 +45,8 @@ input_stream_global_init(EventLoop &event_loop)
|
||||
assert(plugin->open != nullptr);
|
||||
|
||||
const auto *block =
|
||||
config_find_block(ConfigBlockOption::INPUT, "plugin",
|
||||
plugin->name);
|
||||
config.FindBlock(ConfigBlockOption::INPUT, "plugin",
|
||||
plugin->name);
|
||||
if (block == nullptr) {
|
||||
block = ∅
|
||||
} else if (!block->GetBlockValue("enabled", true))
|
||||
|
@ -20,13 +20,14 @@
|
||||
#ifndef MPD_INPUT_INIT_HXX
|
||||
#define MPD_INPUT_INIT_HXX
|
||||
|
||||
struct ConfigData;
|
||||
class EventLoop;
|
||||
|
||||
/**
|
||||
* Initializes this library and all #InputStream implementations.
|
||||
*/
|
||||
void
|
||||
input_stream_global_init(EventLoop &event_loop);
|
||||
input_stream_global_init(const ConfigData &config, EventLoop &event_loop);
|
||||
|
||||
/**
|
||||
* Deinitializes this library and all #InputStream implementations.
|
||||
|
@ -67,7 +67,7 @@ try {
|
||||
EventThread io_thread;
|
||||
io_thread.Start();
|
||||
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(GetGlobalConfig(), io_thread.GetEventLoop());
|
||||
playlist_list_global_init();
|
||||
decoder_plugin_init_all(GetGlobalConfig());
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "input/Init.hxx"
|
||||
#include "input/InputStream.hxx"
|
||||
#include "input/TextInputStream.hxx"
|
||||
#include "config/Global.hxx"
|
||||
#include "config/Data.hxx"
|
||||
#include "util/PrintException.hxx"
|
||||
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
@ -41,11 +41,11 @@ class GlobalInit {
|
||||
public:
|
||||
GlobalInit() {
|
||||
io_thread.Start();
|
||||
config_global_init();
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
archive_plugin_init_all();
|
||||
#endif
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(ConfigData(),
|
||||
io_thread.GetEventLoop());
|
||||
}
|
||||
|
||||
~GlobalInit() {
|
||||
@ -53,7 +53,6 @@ public:
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
archive_plugin_deinit_all();
|
||||
#endif
|
||||
config_global_finish();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -93,7 +93,7 @@ try {
|
||||
EventThread io_thread;
|
||||
io_thread.Start();
|
||||
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(ConfigData(), io_thread.GetEventLoop());
|
||||
AtScopeExit() { input_stream_global_finish(); };
|
||||
|
||||
decoder_plugin_init_all(ConfigData());
|
||||
|
@ -98,7 +98,8 @@ public:
|
||||
if (!config_path.IsNull())
|
||||
ReadConfigFile(config_path);
|
||||
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(GetGlobalConfig(),
|
||||
io_thread.GetEventLoop());
|
||||
decoder_plugin_init_all(GetGlobalConfig());
|
||||
}
|
||||
|
||||
|
@ -116,7 +116,8 @@ public:
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
archive_plugin_init_all();
|
||||
#endif
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(GetGlobalConfig(),
|
||||
io_thread.GetEventLoop());
|
||||
}
|
||||
|
||||
~GlobalInit() {
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "tag/Tag.hxx"
|
||||
#include "config/Global.hxx"
|
||||
#include "config/Data.hxx"
|
||||
#include "event/Thread.hxx"
|
||||
#include "input/Init.hxx"
|
||||
#include "archive/ArchiveList.hxx"
|
||||
@ -41,11 +41,11 @@ class GlobalInit {
|
||||
public:
|
||||
GlobalInit() {
|
||||
io_thread.Start();
|
||||
config_global_init();
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
archive_plugin_init_all();
|
||||
#endif
|
||||
input_stream_global_init(io_thread.GetEventLoop());
|
||||
input_stream_global_init(ConfigData(),
|
||||
io_thread.GetEventLoop());
|
||||
}
|
||||
|
||||
~GlobalInit() {
|
||||
@ -53,7 +53,6 @@ public:
|
||||
#ifdef ENABLE_ARCHIVE
|
||||
archive_plugin_deinit_all();
|
||||
#endif
|
||||
config_global_finish();
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user