2012-02-11 19:12:02 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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
|
|
|
|
2015-10-21 08:30:33 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
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
|
|
|
|
2015-10-21 08:30:33 +02:00
|
|
|
if (type == TAG_TRACK || type == TAG_DISC) {
|
|
|
|
/* filter out this extra data and leading zeroes */
|
|
|
|
char *end;
|
|
|
|
unsigned n = strtoul(value, &end, 10);
|
|
|
|
if (value != end) {
|
|
|
|
char s[21];
|
|
|
|
if (snprintf(s, 21, "%u", n) >= 0)
|
|
|
|
tag.AddItem(type, s);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
tag.AddItem(type, value);
|
2012-02-11 19:12:02 +01:00
|
|
|
}
|
|
|
|
|
2016-02-22 17:38:06 +01:00
|
|
|
const TagHandler 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
|
|
|
}
|
|
|
|
|
2016-02-22 17:38:06 +01:00
|
|
|
const TagHandler 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
|
|
|
};
|
|
|
|
|