mpd/src/playlist/plugins/M3uPlaylistPlugin.cxx

84 lines
1.9 KiB
C++
Raw Normal View History

/*
2015-01-01 19:48:13 +01:00
* Copyright (C) 2003-2015 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"
2014-01-23 23:30:12 +01:00
#include "../PlaylistPlugin.hxx"
#include "../SongEnumerator.hxx"
#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
class M3uPlaylist final : public SongEnumerator {
TextInputStream tis;
public:
M3uPlaylist(InputStream &is)
:tis(is) {
}
virtual std::unique_ptr<DetachedSong> NextSong() override;
};
static SongEnumerator *
m3u_open_stream(InputStream &is)
{
return new M3uPlaylist(is);
}
std::unique_ptr<DetachedSong>
M3uPlaylist::NextSong()
{
char *line_s;
do {
line_s = tis.ReadLine();
if (line_s == nullptr)
2013-10-28 23:58:17 +01:00
return nullptr;
line_s = Strip(line_s);
2013-05-12 16:02:27 +02:00
} while (line_s[0] == '#' || *line_s == 0);
return std::unique_ptr<DetachedSong>(new DetachedSong(line_s));
}
static const char *const m3u_suffixes[] = {
"m3u",
"m3u8",
2013-10-28 23:58:17 +01:00
nullptr
};
static const char *const m3u_mime_types[] = {
"audio/x-mpegurl",
2013-10-28 23:58:17 +01:00
nullptr
};
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,
};