2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-08-29 09:38:27 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
2008-08-29 09:38:27 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-07-28 20:25:45 +02:00
|
|
|
#include "TagId3.hxx"
|
2013-07-29 07:32:36 +02:00
|
|
|
#include "TagHandler.hxx"
|
2013-07-29 07:37:52 +02:00
|
|
|
#include "TagTable.hxx"
|
2013-09-05 19:11:50 +02:00
|
|
|
#include "TagBuilder.hxx"
|
2014-02-17 22:42:06 +01:00
|
|
|
#include "util/Alloc.hxx"
|
2014-02-17 22:37:43 +01:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "util/Domain.hxx"
|
|
|
|
#include "Log.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigGlobal.hxx"
|
2013-09-28 14:14:13 +02:00
|
|
|
#include "Riff.hxx"
|
|
|
|
#include "Aiff.hxx"
|
2013-10-26 15:14:54 +02:00
|
|
|
#include "fs/Path.hxx"
|
|
|
|
#include "fs/FileSystem.hxx"
|
2013-07-28 20:25:45 +02:00
|
|
|
|
2014-03-01 19:18:48 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2008-10-15 19:36:30 +02:00
|
|
|
#include <glib.h>
|
2014-03-01 19:18:48 +01:00
|
|
|
#endif
|
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
#include <id3tag.h>
|
|
|
|
|
2013-12-04 14:43:09 +01:00
|
|
|
#include <string>
|
|
|
|
|
2009-01-03 14:51:41 +01:00
|
|
|
#include <stdio.h>
|
2009-01-24 20:07:23 +01:00
|
|
|
#include <stdlib.h>
|
2009-01-03 14:51:41 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
# ifndef ID3_FRAME_COMPOSER
|
|
|
|
# define ID3_FRAME_COMPOSER "TCOM"
|
|
|
|
# endif
|
|
|
|
# ifndef ID3_FRAME_DISC
|
|
|
|
# define ID3_FRAME_DISC "TPOS"
|
|
|
|
# endif
|
|
|
|
|
2009-07-09 14:28:08 +02:00
|
|
|
#ifndef ID3_FRAME_ARTIST_SORT
|
|
|
|
#define ID3_FRAME_ARTIST_SORT "TSOP"
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 22:38:55 +01:00
|
|
|
#ifndef ID3_FRAME_ALBUM_ARTIST_SORT
|
2009-07-09 14:28:08 +02:00
|
|
|
#define ID3_FRAME_ALBUM_ARTIST_SORT "TSO2" /* this one is unofficial, introduced by Itunes */
|
2009-01-14 22:38:55 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ID3_FRAME_ALBUM_ARTIST
|
|
|
|
#define ID3_FRAME_ALBUM_ARTIST "TPE2"
|
|
|
|
#endif
|
|
|
|
|
2013-09-27 22:31:24 +02:00
|
|
|
static constexpr Domain id3_domain("id3");
|
|
|
|
|
2009-08-04 00:13:22 +02:00
|
|
|
static inline bool
|
|
|
|
tag_is_id3v1(struct id3_tag *tag)
|
|
|
|
{
|
|
|
|
return (id3_tag_options(tag, 0, 0) & ID3_TAG_OPTION_ID3V1) != 0;
|
|
|
|
}
|
|
|
|
|
2009-01-24 20:07:23 +01:00
|
|
|
static id3_utf8_t *
|
|
|
|
tag_id3_getstring(const struct id3_frame *frame, unsigned i)
|
|
|
|
{
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_field *field = id3_frame_field(frame, i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
|
|
|
return nullptr;
|
2009-01-24 20:07:23 +01:00
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getstring(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
|
|
|
return nullptr;
|
2009-01-24 20:07:23 +01:00
|
|
|
|
|
|
|
return id3_ucs4_utf8duplicate(ucs4);
|
|
|
|
}
|
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
/* This will try to convert a string to utf-8,
|
|
|
|
*/
|
2009-08-04 00:13:22 +02:00
|
|
|
static id3_utf8_t *
|
2009-08-04 00:15:46 +02:00
|
|
|
import_id3_string(bool is_id3v1, const id3_ucs4_t *ucs4)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *utf8;
|
2008-08-29 09:38:27 +02:00
|
|
|
|
2014-03-01 19:18:48 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2008-10-15 19:29:46 +02:00
|
|
|
/* use encoding field here? */
|
2013-12-04 14:52:34 +01:00
|
|
|
const char *encoding;
|
2008-10-15 19:29:46 +02:00
|
|
|
if (is_id3v1 &&
|
2013-07-28 20:25:45 +02:00
|
|
|
(encoding = config_get_string(CONF_ID3V1_ENCODING, nullptr)) != nullptr) {
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_latin1_t *isostr = id3_ucs4_latin1duplicate(ucs4);
|
2013-12-04 14:35:16 +01:00
|
|
|
if (gcc_unlikely(isostr == nullptr))
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2008-10-15 19:36:30 +02:00
|
|
|
|
|
|
|
utf8 = (id3_utf8_t *)
|
|
|
|
g_convert_with_fallback((const char*)isostr, -1,
|
2009-11-30 17:42:46 +01:00
|
|
|
"utf-8", encoding,
|
2013-07-28 20:25:45 +02:00
|
|
|
nullptr, nullptr,
|
|
|
|
nullptr, nullptr);
|
|
|
|
if (utf8 == nullptr) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatWarning(id3_domain,
|
|
|
|
"Unable to convert %s string to UTF-8: '%s'",
|
|
|
|
encoding, isostr);
|
2013-12-04 14:39:30 +01:00
|
|
|
free(isostr);
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2008-10-15 19:29:46 +02:00
|
|
|
}
|
2013-12-04 14:39:30 +01:00
|
|
|
free(isostr);
|
2008-10-15 19:29:46 +02:00
|
|
|
} else {
|
2014-03-01 19:18:48 +01:00
|
|
|
#else
|
|
|
|
(void)is_id3v1;
|
|
|
|
#endif
|
2008-10-15 19:29:46 +02:00
|
|
|
utf8 = id3_ucs4_utf8duplicate(ucs4);
|
2013-12-04 14:35:16 +01:00
|
|
|
if (gcc_unlikely(utf8 == nullptr))
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2014-03-01 19:18:48 +01:00
|
|
|
#ifdef HAVE_GLIB
|
2008-10-15 19:29:46 +02:00
|
|
|
}
|
2014-03-01 19:18:48 +01:00
|
|
|
#endif
|
2008-12-29 16:37:41 +01:00
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *utf8_stripped = (id3_utf8_t *)
|
2014-02-17 22:42:06 +01:00
|
|
|
xstrdup(Strip((char *)utf8));
|
2013-12-04 14:39:30 +01:00
|
|
|
free(utf8);
|
2008-12-29 16:37:41 +01:00
|
|
|
|
|
|
|
return utf8_stripped;
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/**
|
|
|
|
* Import a "Text information frame" (ID3v2.4.0 section 4.2). It
|
|
|
|
* contains 2 fields:
|
|
|
|
*
|
|
|
|
* - encoding
|
|
|
|
* - string list
|
|
|
|
*/
|
2009-01-24 20:02:59 +01:00
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_text_frame(struct id3_tag *tag, const struct id3_frame *frame,
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType type,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2010-12-07 18:05:44 +01:00
|
|
|
if (frame->nfields != 2)
|
2009-01-24 20:02:59 +01:00
|
|
|
return;
|
2009-08-04 00:15:43 +02:00
|
|
|
|
|
|
|
/* check the encoding field */
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_field *field = id3_frame_field(frame, 0);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr || field->type != ID3_FIELD_TYPE_TEXTENCODING)
|
2009-01-24 20:02:59 +01:00
|
|
|
return;
|
2008-08-29 09:38:27 +02:00
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/* process the value(s) */
|
|
|
|
|
|
|
|
field = id3_frame_field(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr || field->type != ID3_FIELD_TYPE_STRINGLIST)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get the number of strings available */
|
2013-12-04 14:52:34 +01:00
|
|
|
const unsigned nstrings = id3_field_getnstrings(field);
|
|
|
|
for (unsigned i = 0; i < nstrings; i++) {
|
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getstrings(field, i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
continue;
|
|
|
|
|
2009-10-13 16:12:45 +02:00
|
|
|
if (type == TAG_GENRE)
|
2009-08-04 00:15:46 +02:00
|
|
|
ucs4 = id3_genre_name(ucs4);
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *utf8 = import_id3_string(tag_is_id3v1(tag), ucs4);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (utf8 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
continue;
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
|
|
|
type, (const char *)utf8);
|
2014-02-17 22:42:06 +01:00
|
|
|
free(utf8);
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
2009-08-04 00:15:43 +02:00
|
|
|
}
|
|
|
|
|
2010-12-07 18:05:44 +01:00
|
|
|
/**
|
|
|
|
* Import all text frames with the specified id (ID3v2.4.0 section
|
|
|
|
* 4.2). This is a wrapper for tag_id3_import_text_frame().
|
|
|
|
*/
|
|
|
|
static void
|
2013-10-20 13:32:59 +02:00
|
|
|
tag_id3_import_text(struct id3_tag *tag, const char *id, TagType type,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2010-12-07 18:05:44 +01:00
|
|
|
{
|
|
|
|
const struct id3_frame *frame;
|
|
|
|
for (unsigned i = 0;
|
2013-07-28 20:25:45 +02:00
|
|
|
(frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_text_frame(tag, frame, type,
|
|
|
|
handler, handler_ctx);
|
2010-12-07 18:05:44 +01:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/**
|
|
|
|
* Import a "Comment frame" (ID3v2.4.0 section 4.10). It
|
|
|
|
* contains 4 fields:
|
|
|
|
*
|
|
|
|
* - encoding
|
|
|
|
* - language
|
|
|
|
* - string
|
|
|
|
* - full string (we use this one)
|
|
|
|
*/
|
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_comment_frame(struct id3_tag *tag,
|
2013-10-20 13:32:59 +02:00
|
|
|
const struct id3_frame *frame, TagType type,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler,
|
|
|
|
void *handler_ctx)
|
2009-08-04 00:15:43 +02:00
|
|
|
{
|
2010-12-07 18:05:44 +01:00
|
|
|
if (frame->nfields != 4)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* for now I only read the 4th field, with the fullstring */
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_field *field = id3_frame_field(frame, 3);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getfullstring(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *utf8 = import_id3_string(tag_is_id3v1(tag), ucs4);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (utf8 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx, type, (const char *)utf8);
|
2014-02-17 22:42:06 +01:00
|
|
|
free(utf8);
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2010-12-07 18:05:44 +01:00
|
|
|
/**
|
|
|
|
* Import all comment frames (ID3v2.4.0 section 4.10). This is a
|
|
|
|
* wrapper for tag_id3_import_comment_frame().
|
|
|
|
*/
|
|
|
|
static void
|
2013-10-20 13:32:59 +02:00
|
|
|
tag_id3_import_comment(struct id3_tag *tag, const char *id, TagType type,
|
2012-02-11 19:12:02 +01:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2010-12-07 18:05:44 +01:00
|
|
|
{
|
|
|
|
const struct id3_frame *frame;
|
|
|
|
for (unsigned i = 0;
|
2013-07-28 20:25:45 +02:00
|
|
|
(frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_comment_frame(tag, frame, type,
|
|
|
|
handler, handler_ctx);
|
2010-12-07 18:05:44 +01:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:07:23 +01:00
|
|
|
/**
|
2013-10-20 13:32:59 +02:00
|
|
|
* Parse a TXXX name, and convert it to a TagType enum value.
|
2009-01-24 20:07:23 +01:00
|
|
|
* Returns TAG_NUM_OF_ITEM_TYPES if the TXXX name is not understood.
|
|
|
|
*/
|
2013-10-20 13:32:59 +02:00
|
|
|
static TagType
|
2009-01-24 20:07:23 +01:00
|
|
|
tag_id3_parse_txxx_name(const char *name)
|
|
|
|
{
|
2012-02-11 10:37:59 +01:00
|
|
|
static const struct tag_table txxx_tags[] = {
|
|
|
|
{ "ALBUMARTISTSORT", TAG_ALBUM_ARTIST_SORT },
|
|
|
|
{ "MusicBrainz Artist Id", TAG_MUSICBRAINZ_ARTISTID },
|
|
|
|
{ "MusicBrainz Album Id", TAG_MUSICBRAINZ_ALBUMID },
|
|
|
|
{ "MusicBrainz Album Artist Id",
|
|
|
|
TAG_MUSICBRAINZ_ALBUMARTISTID },
|
|
|
|
{ "MusicBrainz Track Id", TAG_MUSICBRAINZ_TRACKID },
|
2014-09-27 18:38:23 +02:00
|
|
|
{ "MusicBrainz Release Track Id",
|
|
|
|
TAG_MUSICBRAINZ_RELEASETRACKID },
|
2013-07-28 20:25:45 +02:00
|
|
|
{ nullptr, TAG_NUM_OF_ITEM_TYPES }
|
2009-01-24 20:07:23 +01:00
|
|
|
};
|
|
|
|
|
2012-02-11 10:37:59 +01:00
|
|
|
return tag_table_lookup(txxx_tags, name);
|
2009-01-24 20:07:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import all known MusicBrainz tags from TXXX frames.
|
|
|
|
*/
|
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_musicbrainz(struct id3_tag *id3_tag,
|
|
|
|
const struct tag_handler *handler,
|
|
|
|
void *handler_ctx)
|
2009-01-24 20:07:23 +01:00
|
|
|
{
|
|
|
|
for (unsigned i = 0;; ++i) {
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_frame *frame = id3_tag_findframe(id3_tag, "TXXX", i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (frame == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
break;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *name = tag_id3_getstring(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (name == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *value = tag_id3_getstring(frame, 2);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (value == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
continue;
|
|
|
|
|
2012-02-11 19:24:51 +01:00
|
|
|
tag_handler_invoke_pair(handler, handler_ctx,
|
|
|
|
(const char *)name,
|
|
|
|
(const char *)value);
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
TagType type = tag_id3_parse_txxx_name((const char*)name);
|
2012-02-11 19:24:51 +01:00
|
|
|
free(name);
|
|
|
|
|
|
|
|
if (type != TAG_NUM_OF_ITEM_TYPES)
|
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
|
|
|
type, (const char*)value);
|
|
|
|
|
2009-01-24 20:07:23 +01:00
|
|
|
free(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-06 14:42:07 +02:00
|
|
|
/**
|
|
|
|
* Imports the MusicBrainz TrackId from the UFID tag.
|
|
|
|
*/
|
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_ufid(struct id3_tag *id3_tag,
|
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
2009-05-06 14:42:07 +02:00
|
|
|
{
|
|
|
|
for (unsigned i = 0;; ++i) {
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_frame *frame = id3_tag_findframe(id3_tag, "UFID", i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (frame == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
break;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_field *field = id3_frame_field(frame, 0);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_latin1_t *name = id3_field_getlatin1(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (name == nullptr ||
|
2009-05-06 14:42:07 +02:00
|
|
|
strcmp((const char *)name, "http://musicbrainz.org") != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
field = id3_frame_field(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_length_t length;
|
|
|
|
const id3_byte_t *value =
|
|
|
|
id3_field_getbinarydata(field, &length);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (value == nullptr || length == 0)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:43:09 +01:00
|
|
|
std::string p((const char *)value, length);
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
2013-12-04 14:43:09 +01:00
|
|
|
TAG_MUSICBRAINZ_TRACKID, p.c_str());
|
2009-05-06 14:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-27 11:42:34 +02:00
|
|
|
void
|
2012-02-11 19:12:02 +01:00
|
|
|
scan_id3_tag(struct id3_tag *tag,
|
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
|
|
|
{
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ARTIST, TAG_ARTIST,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM_ARTIST,
|
|
|
|
TAG_ALBUM_ARTIST, handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ARTIST_SORT,
|
|
|
|
TAG_ARTIST_SORT, handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM_ARTIST_SORT,
|
|
|
|
TAG_ALBUM_ARTIST_SORT, handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_TITLE, TAG_TITLE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM, TAG_ALBUM,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_TRACK, TAG_TRACK,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_YEAR, TAG_DATE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_GENRE, TAG_GENRE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_COMPOSER, TAG_COMPOSER,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, "TPE3", TAG_PERFORMER,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, "TPE4", TAG_PERFORMER, handler, handler_ctx);
|
|
|
|
tag_id3_import_comment(tag, ID3_FRAME_COMMENT, TAG_COMMENT,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_DISC, TAG_DISC,
|
|
|
|
handler, handler_ctx);
|
|
|
|
|
|
|
|
tag_id3_import_musicbrainz(tag, handler, handler_ctx);
|
|
|
|
tag_id3_import_ufid(tag, handler, handler_ctx);
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *
|
|
|
|
tag_id3_import(struct id3_tag *tag)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder tag_builder;
|
|
|
|
scan_id3_tag(tag, &add_tag_handler, &tag_builder);
|
|
|
|
return tag_builder.IsEmpty()
|
|
|
|
? nullptr
|
2014-01-08 19:43:09 +01:00
|
|
|
: tag_builder.CommitNew();
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
static size_t
|
2009-08-04 00:13:22 +02:00
|
|
|
fill_buffer(void *buf, size_t size, FILE *stream, long offset, int whence)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
|
|
|
if (fseek(stream, offset, whence) != 0) return 0;
|
|
|
|
return fread(buf, 1, size, stream);
|
|
|
|
}
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
static long
|
2009-08-04 00:13:22 +02:00
|
|
|
get_id3v2_footer_size(FILE *stream, long offset, int whence)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
|
|
|
id3_byte_t buf[ID3_TAG_QUERYSIZE];
|
2013-12-04 14:52:34 +01:00
|
|
|
size_t bufsize = fill_buffer(buf, ID3_TAG_QUERYSIZE, stream, offset, whence);
|
|
|
|
if (bufsize == 0) return 0;
|
2008-08-29 09:38:27 +02:00
|
|
|
return id3_tag_query(buf, bufsize);
|
|
|
|
}
|
|
|
|
|
2009-08-04 00:13:22 +02:00
|
|
|
static struct id3_tag *
|
|
|
|
tag_id3_read(FILE *stream, long offset, int whence)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
|
|
|
/* It's ok if we get less than we asked for */
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_byte_t query_buffer[ID3_TAG_QUERYSIZE];
|
|
|
|
size_t query_buffer_size = fill_buffer(query_buffer, ID3_TAG_QUERYSIZE,
|
|
|
|
stream, offset, whence);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (query_buffer_size <= 0)
|
|
|
|
return nullptr;
|
2008-08-29 09:38:27 +02:00
|
|
|
|
|
|
|
/* Look for a tag header */
|
2013-12-04 14:52:34 +01:00
|
|
|
long tag_size = id3_tag_query(query_buffer, query_buffer_size);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (tag_size <= 0) return nullptr;
|
2008-08-29 09:38:27 +02:00
|
|
|
|
|
|
|
/* Found a tag. Allocate a buffer and read it in. */
|
2013-12-04 14:35:06 +01:00
|
|
|
id3_byte_t *tag_buffer = new id3_byte_t[tag_size];
|
2013-07-28 20:25:45 +02:00
|
|
|
int tag_buffer_size = fill_buffer(tag_buffer, tag_size,
|
|
|
|
stream, offset, whence);
|
2009-08-04 00:13:22 +02:00
|
|
|
if (tag_buffer_size < tag_size) {
|
2013-12-04 14:35:06 +01:00
|
|
|
delete[] tag_buffer;
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_tag *tag = id3_tag_parse(tag_buffer, tag_buffer_size);
|
2013-12-04 14:35:06 +01:00
|
|
|
delete[] tag_buffer;
|
2008-08-29 09:38:27 +02:00
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2009-08-04 00:13:22 +02:00
|
|
|
static struct id3_tag *
|
|
|
|
tag_id3_find_from_beginning(FILE *stream)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_tag *tag = tag_id3_read(stream, 0, SEEK_SET);
|
2008-08-29 09:38:27 +02:00
|
|
|
if (!tag) {
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2009-08-04 00:13:22 +02:00
|
|
|
} else if (tag_is_id3v1(tag)) {
|
2008-08-29 09:38:27 +02:00
|
|
|
/* id3v1 tags don't belong here */
|
|
|
|
id3_tag_delete(tag);
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We have an id3v2 tag, so let's look for SEEK frames */
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_frame *frame;
|
2008-08-29 09:38:27 +02:00
|
|
|
while ((frame = id3_tag_findframe(tag, "SEEK", 0))) {
|
|
|
|
/* Found a SEEK frame, get it's value */
|
2013-12-04 14:52:34 +01:00
|
|
|
int seek = id3_field_getint(id3_frame_field(frame, 0));
|
2008-08-29 09:38:27 +02:00
|
|
|
if (seek < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Get the tag specified by the SEEK frame */
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_tag *seektag = tag_id3_read(stream, seek, SEEK_CUR);
|
2009-08-04 00:13:22 +02:00
|
|
|
if (!seektag || tag_is_id3v1(seektag))
|
2008-08-29 09:38:27 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Replace the old tag with the new one */
|
|
|
|
id3_tag_delete(tag);
|
|
|
|
tag = seektag;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2009-08-04 00:13:22 +02:00
|
|
|
static struct id3_tag *
|
|
|
|
tag_id3_find_from_end(FILE *stream)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
|
|
|
/* Get an id3v1 tag from the end of file for later use */
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_tag *v1tag = tag_id3_read(stream, -128, SEEK_END);
|
2008-08-29 09:38:27 +02:00
|
|
|
|
|
|
|
/* Get the id3v2 tag size from the footer (located before v1tag) */
|
2013-12-04 14:52:34 +01:00
|
|
|
int tagsize = get_id3v2_footer_size(stream, (v1tag ? -128 : 0) - 10, SEEK_END);
|
2008-08-29 09:38:27 +02:00
|
|
|
if (tagsize >= 0)
|
|
|
|
return v1tag;
|
|
|
|
|
|
|
|
/* Get the tag which the footer belongs to */
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_tag *tag = tag_id3_read(stream, tagsize, SEEK_CUR);
|
2008-08-29 09:38:27 +02:00
|
|
|
if (!tag)
|
|
|
|
return v1tag;
|
|
|
|
|
|
|
|
/* We have an id3v2 tag, so ditch v1tag */
|
|
|
|
id3_tag_delete(v1tag);
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2009-03-02 18:00:46 +01:00
|
|
|
static struct id3_tag *
|
2009-03-02 18:12:44 +01:00
|
|
|
tag_id3_riff_aiff_load(FILE *file)
|
2009-03-02 18:00:46 +01:00
|
|
|
{
|
2013-07-28 20:25:45 +02:00
|
|
|
size_t size = riff_seek_id3(file);
|
2009-03-02 18:12:44 +01:00
|
|
|
if (size == 0)
|
|
|
|
size = aiff_seek_id3(file);
|
2009-03-02 18:00:46 +01:00
|
|
|
if (size == 0)
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2009-03-02 18:00:46 +01:00
|
|
|
|
2009-11-15 18:44:53 +01:00
|
|
|
if (size > 4 * 1024 * 1024)
|
2009-03-02 18:00:46 +01:00
|
|
|
/* too large, don't allocate so much memory */
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2009-03-02 18:00:46 +01:00
|
|
|
|
2013-12-04 14:35:06 +01:00
|
|
|
id3_byte_t *buffer = new id3_byte_t[size];
|
2013-07-28 20:25:45 +02:00
|
|
|
size_t ret = fread(buffer, size, 1, file);
|
2009-03-02 18:00:46 +01:00
|
|
|
if (ret != 1) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogWarning(id3_domain, "Failed to read RIFF chunk");
|
2013-12-04 14:35:06 +01:00
|
|
|
delete[] buffer;
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2009-03-02 18:00:46 +01:00
|
|
|
}
|
|
|
|
|
2013-07-28 20:25:45 +02:00
|
|
|
struct id3_tag *tag = id3_tag_parse(buffer, size);
|
2013-12-04 14:35:06 +01:00
|
|
|
delete[] buffer;
|
2009-03-02 18:00:46 +01:00
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2012-04-23 22:51:45 +02:00
|
|
|
struct id3_tag *
|
2013-10-26 15:14:54 +02:00
|
|
|
tag_id3_load(Path path_fs, Error &error)
|
2012-02-11 19:12:02 +01:00
|
|
|
{
|
2013-10-26 15:14:54 +02:00
|
|
|
FILE *file = FOpen(path_fs, "rb");
|
2013-07-28 20:25:45 +02:00
|
|
|
if (file == nullptr) {
|
2014-07-30 22:02:42 +02:00
|
|
|
error.FormatErrno("Failed to open file %s", path_fs.c_str());
|
2013-07-28 20:25:45 +02:00
|
|
|
return nullptr;
|
2012-04-23 22:51:45 +02:00
|
|
|
}
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2012-04-23 22:51:45 +02:00
|
|
|
struct id3_tag *tag = tag_id3_find_from_beginning(file);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (tag == nullptr) {
|
2012-04-23 22:51:45 +02:00
|
|
|
tag = tag_id3_riff_aiff_load(file);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (tag == nullptr)
|
2012-04-23 22:51:45 +02:00
|
|
|
tag = tag_id3_find_from_end(file);
|
2012-02-11 19:12:02 +01:00
|
|
|
}
|
|
|
|
|
2012-04-23 22:51:45 +02:00
|
|
|
fclose(file);
|
|
|
|
return tag;
|
|
|
|
}
|
2012-02-11 19:12:02 +01:00
|
|
|
|
2012-04-23 22:51:45 +02:00
|
|
|
bool
|
2013-10-26 15:14:54 +02:00
|
|
|
tag_id3_scan(Path path_fs,
|
2012-04-23 22:51:45 +02:00
|
|
|
const struct tag_handler *handler, void *handler_ctx)
|
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
|
|
|
struct id3_tag *tag = tag_id3_load(path_fs, error);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (tag == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error.IsDefined())
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2012-02-11 19:12:02 +01:00
|
|
|
|
|
|
|
return false;
|
2012-04-23 22:51:45 +02:00
|
|
|
}
|
2012-02-11 19:12:02 +01:00
|
|
|
|
|
|
|
scan_id3_tag(tag, handler, handler_ctx);
|
|
|
|
id3_tag_delete(tag);
|
|
|
|
return true;
|
|
|
|
}
|