aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-10-13 16:19:21 +0200
committerMax Kellermann <max@duempel.org>2009-10-13 16:19:21 +0200
commitcb331ae436700efcfc81a15e6f98ae89c34392e0 (patch)
tree301d87ade3b499769517e17532765bb38ebf89e0
parent767e27c8f0435325c18bdcebfac7ad5f1b813496 (diff)
playlist_list: pass configuration to playlist plugins
This patch completes the configuration support.
-rw-r--r--doc/user.xml62
-rw-r--r--src/conf.c1
-rw-r--r--src/conf.h1
-rw-r--r--src/playlist_list.c42
4 files changed, 104 insertions, 2 deletions
diff --git a/doc/user.xml b/doc/user.xml
index 359e17a3..53173e48 100644
--- a/doc/user.xml
+++ b/doc/user.xml
@@ -391,6 +391,68 @@ cd mpd-version</programlisting>
</tgroup>
</informaltable>
</section>
+
+ <section>
+ <title>Configuring playlist plugins</title>
+
+ <para>
+ Playlist plugins are used to load remote playlists. This is
+ not related to MPD's playlist directory.
+ </para>
+
+ <para>
+ To configure a filter, add a
+ <varname>playlist_plugin</varname> block to
+ <filename>mpd.conf</filename>:
+ </para>
+
+ <programlisting>playlist_plugin {
+ name "m3u"
+ enabled "true"
+}
+ </programlisting>
+
+ <para>
+ The following table lists the
+ <varname>playlist_plugin</varname> options valid for all
+ plugins:
+ </para>
+
+ <informaltable>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>
+ Name
+ </entry>
+ <entry>
+ Description
+ </entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>
+ <varname>name</varname>
+ </entry>
+ <entry>
+ The name of the plugin.
+ </entry>
+ </row>
+ <row>
+ <entry>
+ <varname>enabled</varname>
+ <parameter>yes|no</parameter>
+ </entry>
+ <entry>
+ Allows you to disable a input plugin without
+ recompiling. By default, all plugins are enabled.
+ </entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </informaltable>
+ </section>
</chapter>
<chapter>
diff --git a/src/conf.c b/src/conf.c
index d78f4476..58a4f4e9 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 ef10b9f8..3f771f12 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 5fb914a2..6a0e85c6 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 <glib.h>
#include <assert.h>
+#include <string.h>
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