2009-10-12 22:34:04 +02:00
|
|
|
/*
|
2013-01-27 17:38:09 +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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-27 17:38:09 +01:00
|
|
|
#include "M3uPlaylistPlugin.hxx"
|
|
|
|
#include "PlaylistPlugin.hxx"
|
2013-09-05 09:37:54 +02:00
|
|
|
#include "SongEnumerator.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-05-12 16:02:27 +02:00
|
|
|
#include "TextInputStream.hxx"
|
2013-01-27 17:38:09 +01:00
|
|
|
|
2009-10-12 22:34:04 +02:00
|
|
|
#include <glib.h>
|
|
|
|
|
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-08-05 21:28:06 +02:00
|
|
|
M3uPlaylist(input_stream *is)
|
|
|
|
:tis(is) {
|
|
|
|
}
|
2013-09-05 09:37:54 +02:00
|
|
|
|
|
|
|
virtual Song *NextSong() override;
|
2009-10-12 22:34:04 +02:00
|
|
|
};
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2009-10-12 22:34:04 +02:00
|
|
|
m3u_open_stream(struct input_stream *is)
|
|
|
|
{
|
2013-09-05 09:37:54 +02:00
|
|
|
return new M3uPlaylist(is);
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
Song *
|
|
|
|
M3uPlaylist::NextSong()
|
2009-10-12 22:34:04 +02:00
|
|
|
{
|
2013-05-12 16:02:27 +02:00
|
|
|
std::string line;
|
|
|
|
const char *line_s;
|
2009-10-12 22:34:04 +02:00
|
|
|
|
|
|
|
do {
|
2013-09-05 09:37:54 +02:00
|
|
|
if (!tis.ReadLine(line))
|
2009-10-12 22:34:04 +02:00
|
|
|
return NULL;
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
line_s = line.c_str();
|
|
|
|
|
|
|
|
while (*line_s != 0 && g_ascii_isspace(*line_s))
|
|
|
|
++line_s;
|
|
|
|
} while (line_s[0] == '#' || *line_s == 0);
|
2009-10-12 22:34:04 +02:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
return Song::NewRemote(line_s);
|
2009-10-12 22:34:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const m3u_suffixes[] = {
|
|
|
|
"m3u",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const m3u_mime_types[] = {
|
|
|
|
"audio/x-mpegurl",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
};
|