2014-02-07 21:29:31 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2014-02-07 21:29:31 +01: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_PLAYLIST_STREAM_HXX
|
|
|
|
#define MPD_PLAYLIST_STREAM_HXX
|
|
|
|
|
2019-05-07 19:23:01 +02:00
|
|
|
#include "thread/Mutex.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2014-02-07 21:29:31 +01:00
|
|
|
|
2018-01-20 19:56:44 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2014-02-07 21:29:31 +01:00
|
|
|
class SongEnumerator;
|
2014-10-02 18:53:55 +02:00
|
|
|
class Path;
|
2014-02-07 21:29:31 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens a playlist from a local file.
|
|
|
|
*
|
2014-10-02 18:53:55 +02:00
|
|
|
* @param path the path of the playlist file
|
2014-02-07 21:29:31 +01:00
|
|
|
* @return a playlist, or nullptr on error
|
|
|
|
*/
|
|
|
|
gcc_nonnull_all
|
2018-01-20 19:56:44 +01:00
|
|
|
std::unique_ptr<SongEnumerator>
|
2018-06-22 19:37:18 +02:00
|
|
|
playlist_open_path(Path path, Mutex &mutex);
|
2014-02-07 21:29:31 +01:00
|
|
|
|
|
|
|
gcc_nonnull_all
|
2018-01-20 19:56:44 +01:00
|
|
|
std::unique_ptr<SongEnumerator>
|
2018-06-22 19:37:18 +02:00
|
|
|
playlist_open_remote(const char *uri, Mutex &mutex);
|
2014-02-07 21:29:31 +01:00
|
|
|
|
|
|
|
#endif
|