2012-02-11 19:12:02 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2012-02-11 19:12:02 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-07-29 07:32:36 +02:00
|
|
|
#include "TagHandler.hxx"
|
2013-09-05 19:11:50 +02:00
|
|
|
#include "TagBuilder.hxx"
|
2013-10-20 23:09:51 +02:00
|
|
|
#include "util/ASCII.hxx"
|
2012-02-12 18:25:10 +01:00
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
static void
|
2014-08-29 22:43:36 +02:00
|
|
|
add_tag_duration(SongTime duration, void *ctx)
|
2012-02-11 19:12:02 +01:00
|
|
|
{
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder &tag = *(TagBuilder *)ctx;
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2014-08-29 22:43:36 +02:00
|
|
|
tag.SetDuration(duration);
|
2012-02-11 19:12:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-10-20 13:32:59 +02:00
|
|
|
add_tag_tag(TagType type, const char *value, void *ctx)
|
2012-02-11 19:12:02 +01:00
|
|
|
{
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder &tag = *(TagBuilder *)ctx;
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2013-09-05 19:11:50 +02:00
|
|
|
tag.AddItem(type, value);
|
2012-02-11 19:12:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct tag_handler add_tag_handler = {
|
2013-07-29 07:32:36 +02:00
|
|
|
add_tag_duration,
|
|
|
|
add_tag_tag,
|
|
|
|
nullptr,
|
2012-02-11 19:12:02 +01:00
|
|
|
};
|
|
|
|
|
2012-02-12 18:25:10 +01:00
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
full_tag_pair(const char *name, gcc_unused const char *value, void *ctx)
|
2012-02-12 18:25:10 +01:00
|
|
|
{
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder &tag = *(TagBuilder *)ctx;
|
2012-02-12 18:25:10 +01:00
|
|
|
|
2013-10-20 23:09:51 +02:00
|
|
|
if (StringEqualsCaseASCII(name, "cuesheet"))
|
2013-09-05 19:11:50 +02:00
|
|
|
tag.SetHasPlaylist(true);
|
2012-02-12 18:25:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct tag_handler full_tag_handler = {
|
2013-07-29 07:32:36 +02:00
|
|
|
add_tag_duration,
|
|
|
|
add_tag_tag,
|
|
|
|
full_tag_pair,
|
2012-02-12 18:25:10 +01:00
|
|
|
};
|
|
|
|
|