From cb331ae436700efcfc81a15e6f98ae89c34392e0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 13 Oct 2009 16:19:21 +0200 Subject: playlist_list: pass configuration to playlist plugins This patch completes the configuration support. --- doc/user.xml | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++ src/conf.c | 1 + src/conf.h | 1 + src/playlist_list.c | 42 ++++++++++++++++++++++++++++++++++-- 4 files changed, 104 insertions(+), 2 deletions(-) diff --git a/doc/user.xml b/doc/user.xml index 359e17a34..53173e48b 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -391,6 +391,68 @@ cd mpd-version + +
+ Configuring playlist plugins + + + Playlist plugins are used to load remote playlists. This is + not related to MPD's playlist directory. + + + + To configure a filter, add a + playlist_plugin block to + mpd.conf: + + + playlist_plugin { + name "m3u" + enabled "true" +} + + + + The following table lists the + playlist_plugin options valid for all + plugins: + + + + + + + + Name + + + Description + + + + + + + name + + + The name of the plugin. + + + + + enabled + yes|no + + + Allows you to disable a input plugin without + recompiling. By default, all plugins are enabled. + + + + + +
diff --git a/src/conf.c b/src/conf.c index d78f44760..58a4f4e90 100644 --- a/src/conf.c +++ b/src/conf.c @@ -90,6 +90,7 @@ static struct config_entry config_entries[] = { { .name = CONF_DECODER, true, true }, { .name = CONF_INPUT, true, true }, { .name = CONF_GAPLESS_MP3_PLAYBACK, false, false }, + { .name = CONF_PLAYLIST_PLUGIN, true, true }, { .name = "filter", true, true }, }; diff --git a/src/conf.h b/src/conf.h index ef10b9f82..3f771f122 100644 --- a/src/conf.h +++ b/src/conf.h @@ -67,6 +67,7 @@ #define CONF_DECODER "decoder" #define CONF_INPUT "input" #define CONF_GAPLESS_MP3_PLAYBACK "gapless_mp3_playback" +#define CONF_PLAYLIST_PLUGIN "playlist_plugin" #define DEFAULT_PLAYLIST_MAX_LENGTH (1024*16) #define DEFAULT_PLAYLIST_SAVE_ABSOLUTE_PATHS false diff --git a/src/playlist_list.c b/src/playlist_list.c index 5fb914a2f..6a0e85c64 100644 --- a/src/playlist_list.c +++ b/src/playlist_list.c @@ -23,10 +23,12 @@ #include "input_stream.h" #include "uri.h" #include "utils.h" +#include "conf.h" #include #include +#include static const struct playlist_plugin *const playlist_plugins[] = { &m3u_playlist_plugin, @@ -36,12 +38,48 @@ static const struct playlist_plugin *const playlist_plugins[] = { /** which plugins have been initialized successfully? */ static bool playlist_plugins_enabled[G_N_ELEMENTS(playlist_plugins)]; +/** + * Find the "playlist" configuration block for the specified plugin. + * + * @param plugin_name the name of the playlist plugin + * @return the configuration block, or NULL if none was configured + */ +static const struct config_param * +playlist_plugin_config(const char *plugin_name) +{ + const struct config_param *param = NULL; + + assert(plugin_name != NULL); + + while ((param = config_get_next_param(CONF_PLAYLIST_PLUGIN, param)) != NULL) { + const char *name = + config_get_block_string(param, "name", NULL); + if (name == NULL) + g_error("playlist configuration without 'plugin' name in line %d", + param->line); + + if (strcmp(name, plugin_name) == 0) + return param; + } + + return NULL; +} + void playlist_list_global_init(void) { - for (unsigned i = 0; playlist_plugins[i] != NULL; ++i) + for (unsigned i = 0; playlist_plugins[i] != NULL; ++i) { + const struct playlist_plugin *plugin = playlist_plugins[i]; + const struct config_param *param = + playlist_plugin_config(plugin->name); + + if (!config_get_block_bool(param, "enabled", true)) + /* the plugin is disabled in mpd.conf */ + continue; + playlist_plugins_enabled[i] = - playlist_plugin_init(playlist_plugins[i], NULL); + playlist_plugin_init(playlist_plugins[i], param); + } } void -- cgit v1.2.3