2009-07-03 01:02:53 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-07-03 01:02:53 +02: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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-02-01 17:47:09 +01:00
|
|
|
#include "FilterPlugin.hxx"
|
|
|
|
#include "FilterRegistry.hxx"
|
2018-01-01 18:48:34 +01:00
|
|
|
#include "Prepared.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigError.hxx"
|
2016-09-04 20:07:05 +02:00
|
|
|
#include "util/RuntimeError.hxx"
|
2009-07-03 01:02:53 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
2017-12-27 09:17:15 +01:00
|
|
|
std::unique_ptr<PreparedFilter>
|
2016-09-04 20:07:05 +02:00
|
|
|
filter_configured_new(const ConfigBlock &block)
|
2009-07-03 01:02:53 +02:00
|
|
|
{
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *plugin_name = block.GetBlockValue("plugin");
|
2016-09-04 20:07:05 +02:00
|
|
|
if (plugin_name == nullptr)
|
|
|
|
throw std::runtime_error("No filter plugin specified");
|
2009-07-03 01:02:53 +02:00
|
|
|
|
2016-11-23 17:43:50 +01:00
|
|
|
const auto *plugin = filter_plugin_by_name(plugin_name);
|
2016-09-04 20:07:05 +02:00
|
|
|
if (plugin == nullptr)
|
|
|
|
throw FormatRuntimeError("No such filter plugin: %s",
|
|
|
|
plugin_name);
|
2009-07-03 01:02:53 +02:00
|
|
|
|
2018-01-02 23:00:16 +01:00
|
|
|
return plugin->init(block);
|
2009-07-03 01:02:53 +02:00
|
|
|
}
|