mpd/src/playlist/M3uPlaylistPlugin.cxx

84 lines
1.8 KiB
C++
Raw Normal View History

/*
2013-01-27 17:38:09 +01:00
* Copyright (C) 2003-2013 The Music Player Daemon Project
* 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.
*/
#include "config.h"
2013-01-27 17:38:09 +01:00
#include "M3uPlaylistPlugin.hxx"
#include "PlaylistPlugin.hxx"
#include "SongEnumerator.hxx"
2013-07-28 13:25:12 +02:00
#include "Song.hxx"
2013-10-19 15:36:42 +02:00
#include "util/StringUtil.hxx"
2013-05-12 16:02:27 +02:00
#include "TextInputStream.hxx"
2013-01-27 17:38:09 +01:00
class M3uPlaylist final : public SongEnumerator {
TextInputStream tis;
public:
M3uPlaylist(InputStream &is)
:tis(is) {
}
virtual Song *NextSong() override;
};
static SongEnumerator *
m3u_open_stream(InputStream &is)
{
return new M3uPlaylist(is);
}
Song *
M3uPlaylist::NextSong()
{
2013-05-12 16:02:27 +02:00
std::string line;
const char *line_s;
do {
if (!tis.ReadLine(line))
return NULL;
2013-05-12 16:02:27 +02:00
line_s = line.c_str();
2013-10-19 15:36:42 +02:00
line_s = strchug_fast(line_s);
2013-05-12 16:02:27 +02:00
} while (line_s[0] == '#' || *line_s == 0);
2013-07-28 13:25:12 +02:00
return Song::NewRemote(line_s);
}
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,
2013-01-27 17:38:09 +01:00
nullptr,
m3u_suffixes,
m3u_mime_types,
};