2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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-27 17:38:09 +01:00
|
|
|
#include "M3uPlaylistPlugin.hxx"
|
2014-01-23 23:30:12 +01:00
|
|
|
#include "../PlaylistPlugin.hxx"
|
|
|
|
#include "../SongEnumerator.hxx"
|
2014-01-07 21:39:47 +01:00
|
|
|
#include "DetachedSong.hxx"
|
2013-10-19 15:36:42 +02:00
|
|
|
#include "util/StringUtil.hxx"
|
2014-01-24 16:18:21 +01:00
|
|
|
#include "input/TextInputStream.hxx"
|
2013-01-27 17:38:09 +01:00
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
class M3uPlaylist final : public SongEnumerator {
|
2013-08-05 21:28:06 +02:00
|
|
|
TextInputStream tis;
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
public:
|
2013-10-23 22:08:59 +02:00
|
|
|
M3uPlaylist(InputStream &is)
|
2013-08-05 21:28:06 +02:00
|
|
|
:tis(is) {
|
|
|
|
}
|
2013-09-05 09:37:54 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
virtual DetachedSong *NextSong() override;
|
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
|
|
|
m3u_open_stream(InputStream &is)
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2013-09-05 09:37:54 +02:00
|
|
|
return new M3uPlaylist(is);
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
DetachedSong *
|
2013-09-05 09:37:54 +02:00
|
|
|
M3uPlaylist::NextSong()
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2014-08-07 16:45:43 +02:00
|
|
|
char *line_s;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
do {
|
2014-08-07 00:06:02 +02:00
|
|
|
line_s = tis.ReadLine();
|
|
|
|
if (line_s == nullptr)
|
2013-10-28 23:58:17 +01:00
|
|
|
return nullptr;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2014-08-07 16:45:43 +02:00
|
|
|
line_s = Strip(line_s);
|
2013-05-12 16:02:27 +02:00
|
|
|
} while (line_s[0] == '#' || *line_s == 0);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2014-01-07 21:39:47 +01:00
|
|
|
return new DetachedSong(line_s);
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const m3u_suffixes[] = {
|
|
|
|
"m3u",
|
2014-10-26 08:14:16 +01:00
|
|
|
"m3u8",
|
2013-10-28 23:58:17 +01:00
|
|
|
nullptr
|
2009-10-12 22:34:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const m3u_mime_types[] = {
|
|
|
|
"audio/x-mpegurl",
|
2013-10-28 23:58:17 +01:00
|
|
|
nullptr
|
2009-10-12 22:34:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct playlist_plugin m3u_playlist_plugin = {
|
2013-01-27 17:38:09 +01:00
|
|
|
"m3u",
|
2009-10-13 16:13:36 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
m3u_open_stream,
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
nullptr,
|
|
|
|
m3u_suffixes,
|
|
|
|
m3u_mime_types,
|
2009-10-12 22:34:04 +02:00
|
|
|
};
|