2009-12-14 22:53:13 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-12-14 22:53:13 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-01-10 10:15:09 +01:00
|
|
|
#include "InputInit.hxx"
|
|
|
|
#include "InputRegistry.hxx"
|
2013-01-25 22:43:01 +01:00
|
|
|
#include "InputPlugin.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2013-09-05 08:47:10 +02:00
|
|
|
#include "ConfigGlobal.hxx"
|
|
|
|
#include "ConfigOption.hxx"
|
|
|
|
#include "ConfigData.hxx"
|
2009-12-14 22:53:13 +01:00
|
|
|
|
2011-01-08 18:27:31 +01:00
|
|
|
#include <assert.h>
|
2009-12-14 22:53:13 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
extern constexpr Domain input_domain("input");
|
2009-12-14 22:29:46 +01:00
|
|
|
|
2009-12-14 22:53:13 +01:00
|
|
|
/**
|
|
|
|
* Find the "input" configuration block for the specified plugin.
|
|
|
|
*
|
|
|
|
* @param plugin_name the name of the input plugin
|
2013-10-19 18:19:03 +02:00
|
|
|
* @return the configuration block, or nullptr if none was configured
|
2009-12-14 22:53:13 +01:00
|
|
|
*/
|
|
|
|
static const struct config_param *
|
2013-08-10 18:02:44 +02:00
|
|
|
input_plugin_config(const char *plugin_name, Error &error)
|
2009-12-14 22:53:13 +01:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
const struct config_param *param = nullptr;
|
2009-12-14 22:53:13 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
while ((param = config_get_next_param(CONF_INPUT, param)) != nullptr) {
|
2013-08-04 13:47:48 +02:00
|
|
|
const char *name = param->GetBlockValue("plugin");
|
2013-10-19 18:19:03 +02:00
|
|
|
if (name == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(input_domain,
|
|
|
|
"input configuration without 'plugin' name in line %d",
|
|
|
|
param->line);
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-12-14 22:29:46 +01:00
|
|
|
}
|
2009-12-14 22:53:13 +01:00
|
|
|
|
|
|
|
if (strcmp(name, plugin_name) == 0)
|
|
|
|
return param;
|
|
|
|
}
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-12-14 22:53:13 +01:00
|
|
|
}
|
|
|
|
|
2009-12-14 22:29:46 +01:00
|
|
|
bool
|
2013-08-10 18:02:44 +02:00
|
|
|
input_stream_global_init(Error &error)
|
2009-12-14 22:53:13 +01:00
|
|
|
{
|
2013-08-04 13:47:48 +02:00
|
|
|
const config_param empty;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
for (unsigned i = 0; input_plugins[i] != nullptr; ++i) {
|
2013-10-17 10:20:57 +02:00
|
|
|
const InputPlugin *plugin = input_plugins[i];
|
2011-01-08 18:27:31 +01:00
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(plugin->name != nullptr);
|
2011-01-08 18:27:31 +01:00
|
|
|
assert(*plugin->name != 0);
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(plugin->open != nullptr);
|
2011-01-08 18:27:31 +01:00
|
|
|
|
2009-12-14 22:53:13 +01:00
|
|
|
const struct config_param *param =
|
2013-08-10 18:02:44 +02:00
|
|
|
input_plugin_config(plugin->name, error);
|
2013-08-04 13:47:48 +02:00
|
|
|
if (param == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
2013-08-04 13:47:48 +02:00
|
|
|
return false;
|
2009-12-14 22:53:13 +01:00
|
|
|
|
2013-08-04 13:47:48 +02:00
|
|
|
param = ∅
|
|
|
|
} else if (!param->GetBlockValue("enabled", true))
|
2009-12-14 22:53:13 +01:00
|
|
|
/* the plugin is disabled in mpd.conf */
|
|
|
|
continue;
|
|
|
|
|
2013-10-19 18:19:03 +02:00
|
|
|
if (plugin->init == nullptr || plugin->init(*param, error))
|
2009-12-14 22:53:13 +01:00
|
|
|
input_plugins_enabled[i] = true;
|
2009-12-14 22:29:46 +01:00
|
|
|
else {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatPrefix("Failed to initialize input plugin '%s': ",
|
|
|
|
plugin->name);
|
2009-12-14 22:29:46 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-12-14 22:53:13 +01:00
|
|
|
}
|
2009-12-14 22:29:46 +01:00
|
|
|
|
|
|
|
return true;
|
2009-12-14 22:53:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void input_stream_global_finish(void)
|
|
|
|
{
|
2012-06-12 22:21:48 +02:00
|
|
|
input_plugins_for_each_enabled(plugin)
|
2013-10-19 18:19:03 +02:00
|
|
|
if (plugin->finish != nullptr)
|
2012-06-12 22:21:48 +02:00
|
|
|
plugin->finish();
|
2009-12-14 22:53:13 +01:00
|
|
|
}
|