2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-10-12 22:34:04 +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-01-26 01:04:02 +01:00
|
|
|
#include "PlaylistRegistry.hxx"
|
2013-01-27 17:38:09 +01:00
|
|
|
#include "PlaylistPlugin.hxx"
|
2014-01-23 23:30:12 +01:00
|
|
|
#include "plugins/ExtM3uPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/M3uPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/XspfPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/DespotifyPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/SoundCloudPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/PlsPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/AsxPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/RssPlaylistPlugin.hxx"
|
|
|
|
#include "plugins/CuePlaylistPlugin.hxx"
|
|
|
|
#include "plugins/EmbeddedCuePlaylistPlugin.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/InputStream.hxx"
|
2013-04-08 23:30:21 +02:00
|
|
|
#include "util/UriUtil.hxx"
|
2013-04-09 01:08:20 +02:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-10-15 22:04:17 +02:00
|
|
|
#include "util/Macros.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigGlobal.hxx"
|
2015-01-21 21:14:25 +01:00
|
|
|
#include "config/Param.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
#include <assert.h>
|
2009-10-13 16:19:21 +02:00
|
|
|
#include <string.h>
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
const struct playlist_plugin *const playlist_plugins[] = {
|
2009-11-06 00:41:42 +01:00
|
|
|
&extm3u_playlist_plugin,
|
2009-10-12 22:34:04 +02:00
|
|
|
&m3u_playlist_plugin,
|
2009-10-15 00:08:06 +02:00
|
|
|
&pls_playlist_plugin,
|
2014-11-21 22:19:57 +01:00
|
|
|
#ifdef ENABLE_EXPAT
|
2014-01-09 11:57:47 +01:00
|
|
|
&xspf_playlist_plugin,
|
2009-10-21 23:39:47 +02:00
|
|
|
&asx_playlist_plugin,
|
2010-10-11 20:25:05 +02:00
|
|
|
&rss_playlist_plugin,
|
2014-01-09 11:57:47 +01:00
|
|
|
#endif
|
2011-03-27 08:41:26 +02:00
|
|
|
#ifdef ENABLE_DESPOTIFY
|
|
|
|
&despotify_playlist_plugin,
|
|
|
|
#endif
|
2012-02-27 13:19:45 +01:00
|
|
|
#ifdef ENABLE_SOUNDCLOUD
|
|
|
|
&soundcloud_playlist_plugin,
|
2009-12-16 20:04:36 +01:00
|
|
|
#endif
|
2014-12-08 18:38:03 +01:00
|
|
|
#ifdef ENABLE_CUE
|
2009-12-16 20:04:36 +01:00
|
|
|
&cue_playlist_plugin,
|
2012-02-12 15:20:38 +01:00
|
|
|
&embcue_playlist_plugin,
|
2014-12-08 18:38:03 +01:00
|
|
|
#endif
|
2013-10-02 08:13:28 +02:00
|
|
|
nullptr
|
2009-10-12 22:34:04 +02:00
|
|
|
};
|
|
|
|
|
2013-10-15 22:04:17 +02:00
|
|
|
static constexpr unsigned n_playlist_plugins =
|
|
|
|
ARRAY_SIZE(playlist_plugins) - 1;
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
/** which plugins have been initialized successfully? */
|
2013-10-15 22:04:17 +02:00
|
|
|
static bool playlist_plugins_enabled[n_playlist_plugins];
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
#define playlist_plugins_for_each_enabled(plugin) \
|
|
|
|
playlist_plugins_for_each(plugin) \
|
|
|
|
if (playlist_plugins_enabled[playlist_plugin_iterator - playlist_plugins])
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
void
|
|
|
|
playlist_list_global_init(void)
|
|
|
|
{
|
2013-08-04 13:54:14 +02:00
|
|
|
const config_param empty;
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
for (unsigned i = 0; playlist_plugins[i] != nullptr; ++i) {
|
2009-10-13 16:19:21 +02:00
|
|
|
const struct playlist_plugin *plugin = playlist_plugins[i];
|
|
|
|
const struct config_param *param =
|
2014-01-24 16:55:17 +01:00
|
|
|
config_find_block(CONF_PLAYLIST_PLUGIN, "name",
|
|
|
|
plugin->name);
|
2013-08-04 13:54:14 +02:00
|
|
|
if (param == nullptr)
|
|
|
|
param = ∅
|
|
|
|
else if (!param->GetBlockValue("enabled", true))
|
2009-10-13 16:19:21 +02:00
|
|
|
/* the plugin is disabled in mpd.conf */
|
|
|
|
continue;
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
playlist_plugins_enabled[i] =
|
2013-08-04 13:54:14 +02:00
|
|
|
playlist_plugin_init(playlist_plugins[i], *param);
|
2009-10-13 16:19:21 +02:00
|
|
|
}
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
playlist_list_global_finish(void)
|
|
|
|
{
|
2012-06-12 22:12:06 +02:00
|
|
|
playlist_plugins_for_each_enabled(plugin)
|
|
|
|
playlist_plugin_finish(plugin);
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2013-01-27 17:20:50 +01:00
|
|
|
playlist_list_open_uri_scheme(const char *uri, Mutex &mutex, Cond &cond,
|
2011-09-14 21:46:41 +02:00
|
|
|
bool *tried)
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *playlist = nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(uri != nullptr);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-12-15 17:05:18 +01:00
|
|
|
const auto scheme = uri_get_scheme(uri);
|
|
|
|
if (scheme.empty())
|
2013-10-02 08:13:28 +02:00
|
|
|
return nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
for (unsigned i = 0; playlist_plugins[i] != nullptr; ++i) {
|
2009-10-12 22:34:04 +02:00
|
|
|
const struct playlist_plugin *plugin = playlist_plugins[i];
|
|
|
|
|
2009-12-16 21:09:56 +01:00
|
|
|
assert(!tried[i]);
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist_plugins_enabled[i] && plugin->open_uri != nullptr &&
|
|
|
|
plugin->schemes != nullptr &&
|
2013-12-15 17:05:18 +01:00
|
|
|
string_array_contains(plugin->schemes, scheme.c_str())) {
|
2011-09-14 21:46:41 +02:00
|
|
|
playlist = playlist_plugin_open_uri(plugin, uri,
|
|
|
|
mutex, cond);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-10-12 22:34:04 +02:00
|
|
|
break;
|
2009-12-16 21:09:56 +01:00
|
|
|
|
|
|
|
tried[i] = true;
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2013-01-27 17:20:50 +01:00
|
|
|
playlist_list_open_uri_suffix(const char *uri, Mutex &mutex, Cond &cond,
|
2011-09-14 21:46:41 +02:00
|
|
|
const bool *tried)
|
2009-12-16 21:09:56 +01:00
|
|
|
{
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *playlist = nullptr;
|
2009-12-16 21:09:56 +01:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(uri != nullptr);
|
2009-12-16 21:09:56 +01:00
|
|
|
|
2014-11-01 13:20:39 +01:00
|
|
|
UriSuffixBuffer suffix_buffer;
|
|
|
|
const char *const suffix = uri_get_suffix(uri, suffix_buffer);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (suffix == nullptr)
|
|
|
|
return nullptr;
|
2009-12-16 21:09:56 +01:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
for (unsigned i = 0; playlist_plugins[i] != nullptr; ++i) {
|
2009-12-16 21:09:56 +01:00
|
|
|
const struct playlist_plugin *plugin = playlist_plugins[i];
|
|
|
|
|
|
|
|
if (playlist_plugins_enabled[i] && !tried[i] &&
|
2013-10-02 08:13:28 +02:00
|
|
|
plugin->open_uri != nullptr && plugin->suffixes != nullptr &&
|
2009-12-16 21:09:56 +01:00
|
|
|
string_array_contains(plugin->suffixes, suffix)) {
|
2011-09-14 21:46:41 +02:00
|
|
|
playlist = playlist_plugin_open_uri(plugin, uri,
|
|
|
|
mutex, cond);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-12-16 21:09:56 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *
|
2013-01-27 17:20:50 +01:00
|
|
|
playlist_list_open_uri(const char *uri, Mutex &mutex, Cond &cond)
|
2009-12-16 21:09:56 +01:00
|
|
|
{
|
|
|
|
/** this array tracks which plugins have already been tried by
|
|
|
|
playlist_list_open_uri_scheme() */
|
2013-10-15 22:04:17 +02:00
|
|
|
bool tried[n_playlist_plugins];
|
2009-12-16 21:09:56 +01:00
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(uri != nullptr);
|
2009-12-16 21:09:56 +01:00
|
|
|
|
|
|
|
memset(tried, false, sizeof(tried));
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
auto playlist = playlist_list_open_uri_scheme(uri, mutex, cond, tried);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist == nullptr)
|
2011-09-14 21:46:41 +02:00
|
|
|
playlist = playlist_list_open_uri_suffix(uri, mutex, cond,
|
|
|
|
tried);
|
2009-12-16 21:09:56 +01:00
|
|
|
|
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2013-10-23 22:08:59 +02:00
|
|
|
playlist_list_open_stream_mime2(InputStream &is, const char *mime)
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(mime != nullptr);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
playlist_plugins_for_each_enabled(plugin) {
|
2013-10-02 08:13:28 +02:00
|
|
|
if (plugin->open_stream != nullptr &&
|
|
|
|
plugin->mime_types != nullptr &&
|
2010-06-25 22:43:35 +02:00
|
|
|
string_array_contains(plugin->mime_types, mime)) {
|
2009-11-06 00:11:36 +01:00
|
|
|
/* rewind the stream, so each plugin gets a
|
|
|
|
fresh start */
|
2013-10-23 22:08:59 +02:00
|
|
|
is.Rewind(IgnoreError());
|
2009-11-06 00:11:36 +01:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
auto playlist = playlist_plugin_open_stream(plugin,
|
|
|
|
is);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-10-12 22:34:04 +02:00
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
return nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2013-10-23 22:08:59 +02:00
|
|
|
playlist_list_open_stream_mime(InputStream &is, const char *full_mime)
|
2010-06-25 22:43:35 +02:00
|
|
|
{
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(full_mime != nullptr);
|
2010-06-25 22:43:35 +02:00
|
|
|
|
2013-01-24 19:14:40 +01:00
|
|
|
const char *semicolon = strchr(full_mime, ';');
|
2013-10-02 08:13:28 +02:00
|
|
|
if (semicolon == nullptr)
|
2013-01-24 19:14:40 +01:00
|
|
|
return playlist_list_open_stream_mime2(is, full_mime);
|
2010-06-25 22:43:35 +02:00
|
|
|
|
2013-01-24 19:14:40 +01:00
|
|
|
if (semicolon == full_mime)
|
2013-10-02 08:13:28 +02:00
|
|
|
return nullptr;
|
2010-06-25 22:43:35 +02:00
|
|
|
|
|
|
|
/* probe only the portion before the semicolon*/
|
2013-10-15 21:20:18 +02:00
|
|
|
const std::string mime(full_mime, semicolon);
|
|
|
|
return playlist_list_open_stream_mime2(is, mime.c_str());
|
2010-06-25 22:43:35 +02:00
|
|
|
}
|
|
|
|
|
2014-02-07 21:29:31 +01:00
|
|
|
SongEnumerator *
|
2013-10-23 22:08:59 +02:00
|
|
|
playlist_list_open_stream_suffix(InputStream &is, const char *suffix)
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(suffix != nullptr);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
playlist_plugins_for_each_enabled(plugin) {
|
2013-10-02 08:13:28 +02:00
|
|
|
if (plugin->open_stream != nullptr &&
|
|
|
|
plugin->suffixes != nullptr &&
|
2009-11-06 19:50:47 +01:00
|
|
|
string_array_contains(plugin->suffixes, suffix)) {
|
2009-11-06 00:11:36 +01:00
|
|
|
/* rewind the stream, so each plugin gets a
|
|
|
|
fresh start */
|
2013-10-23 22:08:59 +02:00
|
|
|
is.Rewind(IgnoreError());
|
2009-11-06 00:11:36 +01:00
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
auto playlist = playlist_plugin_open_stream(plugin, is);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-10-12 22:34:04 +02:00
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
return nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *
|
2013-10-23 22:08:59 +02:00
|
|
|
playlist_list_open_stream(InputStream &is, const char *uri)
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2014-05-11 18:34:09 +02:00
|
|
|
assert(is.IsReady());
|
2010-06-25 22:37:20 +02:00
|
|
|
|
2013-10-23 22:08:59 +02:00
|
|
|
const char *const mime = is.GetMimeType();
|
2013-10-02 08:13:28 +02:00
|
|
|
if (mime != nullptr) {
|
2013-09-05 09:37:54 +02:00
|
|
|
auto playlist = playlist_list_open_stream_mime(is, mime);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-10-12 22:34:04 +02:00
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2014-11-01 13:20:39 +01:00
|
|
|
UriSuffixBuffer suffix_buffer;
|
|
|
|
const char *suffix = uri != nullptr
|
|
|
|
? uri_get_suffix(uri, suffix_buffer)
|
|
|
|
: nullptr;
|
2013-10-02 08:13:28 +02:00
|
|
|
if (suffix != nullptr) {
|
2013-09-05 09:37:54 +02:00
|
|
|
auto playlist = playlist_list_open_stream_suffix(is, suffix);
|
2013-10-02 08:13:28 +02:00
|
|
|
if (playlist != nullptr)
|
2009-10-12 22:34:04 +02:00
|
|
|
return playlist;
|
|
|
|
}
|
|
|
|
|
2013-10-02 08:13:28 +02:00
|
|
|
return nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
2009-11-06 01:07:39 +01:00
|
|
|
|
2010-05-31 23:29:18 +02:00
|
|
|
bool
|
2009-11-06 01:07:39 +01:00
|
|
|
playlist_suffix_supported(const char *suffix)
|
|
|
|
{
|
2013-10-02 08:13:28 +02:00
|
|
|
assert(suffix != nullptr);
|
2009-11-06 01:07:39 +01:00
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
playlist_plugins_for_each_enabled(plugin) {
|
2013-10-02 08:13:28 +02:00
|
|
|
if (plugin->suffixes != nullptr &&
|
2009-11-06 19:50:47 +01:00
|
|
|
string_array_contains(plugin->suffixes, suffix))
|
2009-11-06 01:07:39 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|