2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2013-01-26 01:04:02 +01:00
|
|
|
* Copyright (C) 2003-2013 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.
|
|
|
|
*/
|
|
|
|
|
2013-01-26 01:04:02 +01:00
|
|
|
#ifndef MPD_PLAYLIST_REGISTRY_HXX
|
|
|
|
#define MPD_PLAYLIST_REGISTRY_HXX
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-01-27 17:20:50 +01:00
|
|
|
#include "thread/Mutex.hxx"
|
|
|
|
#include "thread/Cond.hxx"
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
class SongEnumerator;
|
2009-10-12 22:34:04 +02:00
|
|
|
struct input_stream;
|
|
|
|
|
2012-06-12 22:12:06 +02:00
|
|
|
extern const struct playlist_plugin *const playlist_plugins[];
|
|
|
|
|
|
|
|
#define playlist_plugins_for_each(plugin) \
|
|
|
|
for (const struct playlist_plugin *plugin, \
|
|
|
|
*const*playlist_plugin_iterator = &playlist_plugins[0]; \
|
|
|
|
(plugin = *playlist_plugin_iterator) != NULL; \
|
|
|
|
++playlist_plugin_iterator)
|
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
/**
|
|
|
|
* Initializes all playlist plugins.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
playlist_list_global_init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deinitializes all playlist plugins.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
playlist_list_global_finish(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a playlist by its URI.
|
|
|
|
*/
|
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-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a playlist from an input stream.
|
|
|
|
*
|
|
|
|
* @param is an #input_stream object which is open and ready
|
|
|
|
* @param uri optional URI which was used to open the stream; may be
|
|
|
|
* used to select the appropriate playlist plugin
|
|
|
|
*/
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *
|
2009-10-12 22:34:04 +02:00
|
|
|
playlist_list_open_stream(struct input_stream *is, const char *uri);
|
|
|
|
|
2010-05-31 23:29:18 +02:00
|
|
|
/**
|
|
|
|
* Determines if there is a playlist plugin which can handle the
|
|
|
|
* specified file name suffix.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
playlist_suffix_supported(const char *suffix);
|
|
|
|
|
2009-11-06 01:07:39 +01:00
|
|
|
/**
|
|
|
|
* Opens a playlist from a local file.
|
|
|
|
*
|
|
|
|
* @param path_fs the path of the playlist file
|
2010-06-01 09:10:58 +02:00
|
|
|
* @param is_r on success, an input_stream object is returned here,
|
|
|
|
* which must be closed after the playlist_provider object is freed
|
2009-11-06 01:07:39 +01:00
|
|
|
* @return a playlist, or NULL on error
|
|
|
|
*/
|
2013-09-05 09:37:54 +02:00
|
|
|
SongEnumerator *
|
2013-01-27 17:20:50 +01:00
|
|
|
playlist_list_open_path(const char *path_fs, Mutex &mutex, Cond &cond,
|
2011-09-14 21:46:41 +02:00
|
|
|
struct input_stream **is_r);
|
2009-11-06 01:07:39 +01:00
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
#endif
|