2009-11-06 00:41:42 +01:00
|
|
|
/*
|
2013-01-27 17:38:09 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2009-11-06 00:41:42 +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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-27 17:38:09 +01:00
|
|
|
#include "ExtM3uPlaylistPlugin.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-07-30 20:11:57 +02:00
|
|
|
#include "Tag.hxx"
|
2013-04-09 01:08:20 +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
|
|
|
|
2009-11-06 00:41:42 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
class ExtM3uPlaylist final : public SongEnumerator {
|
2013-08-05 21:25:25 +02:00
|
|
|
TextInputStream tis;
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
public:
|
2013-08-05 21:25:25 +02:00
|
|
|
ExtM3uPlaylist(input_stream *is)
|
|
|
|
:tis(is) {
|
|
|
|
}
|
2013-09-05 09:37:54 +02:00
|
|
|
|
|
|
|
bool CheckFirstLine() {
|
|
|
|
std::string line;
|
|
|
|
return tis.ReadLine(line) &&
|
|
|
|
strcmp(line.c_str(), "#EXTM3U") == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Song *NextSong() override;
|
2009-11-06 00:41:42 +01:00
|
|
|
};
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2009-11-06 00:41:42 +01:00
|
|
|
extm3u_open_stream(struct input_stream *is)
|
|
|
|
{
|
2013-08-05 21:25:25 +02:00
|
|
|
ExtM3uPlaylist *playlist = new ExtM3uPlaylist(is);
|
2009-11-06 00:41:42 +01:00
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
if (!playlist->CheckFirstLine()) {
|
2009-11-06 00:41:42 +01:00
|
|
|
/* no EXTM3U header: fall back to the plain m3u
|
|
|
|
plugin */
|
2013-08-05 21:25:25 +02:00
|
|
|
delete playlist;
|
2009-11-06 00:41:42 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
return playlist;
|
2009-11-06 00:41:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a EXTINF line.
|
|
|
|
*
|
|
|
|
* @param line the rest of the input line after the colon
|
|
|
|
*/
|
2013-07-30 20:11:57 +02:00
|
|
|
static Tag *
|
2009-11-06 00:41:42 +01:00
|
|
|
extm3u_parse_tag(const char *line)
|
|
|
|
{
|
|
|
|
long duration;
|
|
|
|
char *endptr;
|
|
|
|
const char *name;
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *tag;
|
2009-11-06 00:41:42 +01:00
|
|
|
|
|
|
|
duration = strtol(line, &endptr, 10);
|
|
|
|
if (endptr[0] != ',')
|
|
|
|
/* malformed line */
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (duration < 0)
|
|
|
|
/* 0 means unknown duration */
|
|
|
|
duration = 0;
|
|
|
|
|
2010-12-23 16:16:01 +01:00
|
|
|
name = strchug_fast_c(endptr + 1);
|
2009-11-06 00:41:42 +01:00
|
|
|
if (*name == 0 && duration == 0)
|
|
|
|
/* no information available; don't allocate a tag
|
|
|
|
object */
|
|
|
|
return NULL;
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
tag = new Tag();
|
2009-11-06 00:41:42 +01:00
|
|
|
tag->time = duration;
|
|
|
|
|
|
|
|
/* unfortunately, there is no real specification for the
|
|
|
|
EXTM3U format, so we must assume that the string after the
|
|
|
|
comma is opaque, and is just the song name*/
|
|
|
|
if (*name != 0)
|
2013-07-30 20:11:57 +02:00
|
|
|
tag->AddItem(TAG_NAME, name);
|
2009-11-06 00:41:42 +01:00
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
Song *
|
|
|
|
ExtM3uPlaylist::NextSong()
|
2009-11-06 00:41:42 +01:00
|
|
|
{
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *tag = NULL;
|
2013-05-12 16:02:27 +02:00
|
|
|
std::string line;
|
|
|
|
const char *line_s;
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song;
|
2009-11-06 00:41:42 +01:00
|
|
|
|
|
|
|
do {
|
2013-09-05 09:37:54 +02:00
|
|
|
if (!tis.ReadLine(line)) {
|
2013-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
2009-11-06 00:41:42 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2013-05-12 16:02:27 +02:00
|
|
|
|
|
|
|
line_s = line.c_str();
|
2009-11-06 00:41:42 +01:00
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
if (g_str_has_prefix(line_s, "#EXTINF:")) {
|
2013-07-30 20:11:57 +02:00
|
|
|
delete tag;
|
2013-05-12 16:02:27 +02:00
|
|
|
tag = extm3u_parse_tag(line_s + 8);
|
2009-11-06 00:41:42 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
while (*line_s != 0 && g_ascii_isspace(*line_s))
|
|
|
|
++line_s;
|
|
|
|
} while (line_s[0] == '#' || *line_s == 0);
|
2009-11-06 00:41:42 +01:00
|
|
|
|
2013-07-28 13:25:12 +02:00
|
|
|
song = Song::NewRemote(line_s);
|
2009-11-06 00:41:42 +01:00
|
|
|
song->tag = tag;
|
|
|
|
return song;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const extm3u_suffixes[] = {
|
|
|
|
"m3u",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const extm3u_mime_types[] = {
|
|
|
|
"audio/x-mpegurl",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct playlist_plugin extm3u_playlist_plugin = {
|
2013-01-27 17:38:09 +01:00
|
|
|
"extm3u",
|
|
|
|
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
extm3u_open_stream,
|
|
|
|
|
|
|
|
nullptr,
|
|
|
|
extm3u_suffixes,
|
|
|
|
extm3u_mime_types,
|
2009-11-06 00:41:42 +01:00
|
|
|
};
|