tag_id3: convert to C++

This commit is contained in:
Max Kellermann 2013-07-28 20:25:45 +02:00
parent ba161ec572
commit dd5ba062cc
9 changed files with 72 additions and 81 deletions

View File

@ -86,7 +86,6 @@ mpd_headers = \
src/tag_internal.h \ src/tag_internal.h \
src/tag_table.h \ src/tag_table.h \
src/tag_ape.h \ src/tag_ape.h \
src/tag_id3.h \
src/Timer.hxx \ src/Timer.hxx \
src/mpd_error.h src/mpd_error.h
@ -435,7 +434,7 @@ libtag_a_SOURCES =\
if HAVE_ID3TAG if HAVE_ID3TAG
libtag_a_SOURCES += \ libtag_a_SOURCES += \
src/tag_id3.c \ src/TagId3.cxx src/TagId3.hxx \
src/TagRva2.cxx src/TagRva2.hxx \ src/TagRva2.cxx src/TagRva2.hxx \
src/riff.c src/aiff.c src/riff.c src/aiff.c
endif endif
@ -1204,7 +1203,7 @@ test_dump_rva2_LDADD = \
test_dump_rva2_SOURCES = test/dump_rva2.cxx \ test_dump_rva2_SOURCES = test/dump_rva2.cxx \
src/riff.c src/aiff.c \ src/riff.c src/aiff.c \
src/tag_handler.c \ src/tag_handler.c \
src/tag_id3.c \ src/TagId3.cxx \
src/TagRva2.cxx src/TagRva2.cxx
endif endif

View File

@ -28,10 +28,10 @@
#include "input_stream.h" #include "input_stream.h"
#include "DecoderPlugin.hxx" #include "DecoderPlugin.hxx"
#include "DecoderList.hxx" #include "DecoderList.hxx"
#include "TagId3.hxx"
extern "C" { extern "C" {
#include "tag_ape.h" #include "tag_ape.h"
#include "tag_id3.h"
#include "tag_handler.h" #include "tag_handler.h"
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -18,12 +18,16 @@
*/ */
#include "config.h" #include "config.h"
#include "tag_id3.h" #include "TagId3.hxx"
#include "tag_handler.h" #include "tag_handler.h"
#include "tag_table.h" #include "tag_table.h"
#include "tag.h" #include "tag.h"
extern "C" {
#include "riff.h" #include "riff.h"
#include "aiff.h" #include "aiff.h"
}
#include "conf.h" #include "conf.h"
#include "io_error.h" #include "io_error.h"
@ -70,12 +74,12 @@ tag_id3_getstring(const struct id3_frame *frame, unsigned i)
const id3_ucs4_t *ucs4; const id3_ucs4_t *ucs4;
field = id3_frame_field(frame, i); field = id3_frame_field(frame, i);
if (field == NULL) if (field == nullptr)
return NULL; return nullptr;
ucs4 = id3_field_getstring(field); ucs4 = id3_field_getstring(field);
if (ucs4 == NULL) if (ucs4 == nullptr)
return NULL; return nullptr;
return id3_ucs4_utf8duplicate(ucs4); return id3_ucs4_utf8duplicate(ucs4);
} }
@ -91,27 +95,28 @@ import_id3_string(bool is_id3v1, const id3_ucs4_t *ucs4)
/* use encoding field here? */ /* use encoding field here? */
if (is_id3v1 && if (is_id3v1 &&
(encoding = config_get_string(CONF_ID3V1_ENCODING, NULL)) != NULL) { (encoding = config_get_string(CONF_ID3V1_ENCODING, nullptr)) != nullptr) {
isostr = id3_ucs4_latin1duplicate(ucs4); isostr = id3_ucs4_latin1duplicate(ucs4);
if (G_UNLIKELY(!isostr)) { if (G_UNLIKELY(!isostr)) {
return NULL; return nullptr;
} }
utf8 = (id3_utf8_t *) utf8 = (id3_utf8_t *)
g_convert_with_fallback((const char*)isostr, -1, g_convert_with_fallback((const char*)isostr, -1,
"utf-8", encoding, "utf-8", encoding,
NULL, NULL, NULL, NULL); nullptr, nullptr,
if (utf8 == NULL) { nullptr, nullptr);
if (utf8 == nullptr) {
g_debug("Unable to convert %s string to UTF-8: '%s'", g_debug("Unable to convert %s string to UTF-8: '%s'",
encoding, isostr); encoding, isostr);
g_free(isostr); g_free(isostr);
return NULL; return nullptr;
} }
g_free(isostr); g_free(isostr);
} else { } else {
utf8 = id3_ucs4_utf8duplicate(ucs4); utf8 = id3_ucs4_utf8duplicate(ucs4);
if (G_UNLIKELY(!utf8)) { if (G_UNLIKELY(!utf8)) {
return NULL; return nullptr;
} }
} }
@ -144,27 +149,27 @@ tag_id3_import_text_frame(struct id3_tag *tag, const struct id3_frame *frame,
/* check the encoding field */ /* check the encoding field */
field = id3_frame_field(frame, 0); field = id3_frame_field(frame, 0);
if (field == NULL || field->type != ID3_FIELD_TYPE_TEXTENCODING) if (field == nullptr || field->type != ID3_FIELD_TYPE_TEXTENCODING)
return; return;
/* process the value(s) */ /* process the value(s) */
field = id3_frame_field(frame, 1); field = id3_frame_field(frame, 1);
if (field == NULL || field->type != ID3_FIELD_TYPE_STRINGLIST) if (field == nullptr || field->type != ID3_FIELD_TYPE_STRINGLIST)
return; return;
/* Get the number of strings available */ /* Get the number of strings available */
nstrings = id3_field_getnstrings(field); nstrings = id3_field_getnstrings(field);
for (i = 0; i < nstrings; i++) { for (i = 0; i < nstrings; i++) {
ucs4 = id3_field_getstrings(field, i); ucs4 = id3_field_getstrings(field, i);
if (ucs4 == NULL) if (ucs4 == nullptr)
continue; continue;
if (type == TAG_GENRE) if (type == TAG_GENRE)
ucs4 = id3_genre_name(ucs4); ucs4 = id3_genre_name(ucs4);
utf8 = import_id3_string(tag_is_id3v1(tag), ucs4); utf8 = import_id3_string(tag_is_id3v1(tag), ucs4);
if (utf8 == NULL) if (utf8 == nullptr)
continue; continue;
tag_handler_invoke_tag(handler, handler_ctx, tag_handler_invoke_tag(handler, handler_ctx,
@ -183,7 +188,7 @@ tag_id3_import_text(struct id3_tag *tag, const char *id, enum tag_type type,
{ {
const struct id3_frame *frame; const struct id3_frame *frame;
for (unsigned i = 0; for (unsigned i = 0;
(frame = id3_tag_findframe(tag, id, i)) != NULL; ++i) (frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
tag_id3_import_text_frame(tag, frame, type, tag_id3_import_text_frame(tag, frame, type,
handler, handler_ctx); handler, handler_ctx);
} }
@ -212,15 +217,15 @@ tag_id3_import_comment_frame(struct id3_tag *tag,
/* for now I only read the 4th field, with the fullstring */ /* for now I only read the 4th field, with the fullstring */
field = id3_frame_field(frame, 3); field = id3_frame_field(frame, 3);
if (field == NULL) if (field == nullptr)
return; return;
ucs4 = id3_field_getfullstring(field); ucs4 = id3_field_getfullstring(field);
if (ucs4 == NULL) if (ucs4 == nullptr)
return; return;
utf8 = import_id3_string(tag_is_id3v1(tag), ucs4); utf8 = import_id3_string(tag_is_id3v1(tag), ucs4);
if (utf8 == NULL) if (utf8 == nullptr)
return; return;
tag_handler_invoke_tag(handler, handler_ctx, type, (const char *)utf8); tag_handler_invoke_tag(handler, handler_ctx, type, (const char *)utf8);
@ -237,7 +242,7 @@ tag_id3_import_comment(struct id3_tag *tag, const char *id, enum tag_type type,
{ {
const struct id3_frame *frame; const struct id3_frame *frame;
for (unsigned i = 0; for (unsigned i = 0;
(frame = id3_tag_findframe(tag, id, i)) != NULL; ++i) (frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
tag_id3_import_comment_frame(tag, frame, type, tag_id3_import_comment_frame(tag, frame, type,
handler, handler_ctx); handler, handler_ctx);
} }
@ -256,7 +261,7 @@ tag_id3_parse_txxx_name(const char *name)
{ "MusicBrainz Album Artist Id", { "MusicBrainz Album Artist Id",
TAG_MUSICBRAINZ_ALBUMARTISTID }, TAG_MUSICBRAINZ_ALBUMARTISTID },
{ "MusicBrainz Track Id", TAG_MUSICBRAINZ_TRACKID }, { "MusicBrainz Track Id", TAG_MUSICBRAINZ_TRACKID },
{ NULL, TAG_NUM_OF_ITEM_TYPES } { nullptr, TAG_NUM_OF_ITEM_TYPES }
}; };
return tag_table_lookup(txxx_tags, name); return tag_table_lookup(txxx_tags, name);
@ -276,15 +281,15 @@ tag_id3_import_musicbrainz(struct id3_tag *id3_tag,
enum tag_type type; enum tag_type type;
frame = id3_tag_findframe(id3_tag, "TXXX", i); frame = id3_tag_findframe(id3_tag, "TXXX", i);
if (frame == NULL) if (frame == nullptr)
break; break;
name = tag_id3_getstring(frame, 1); name = tag_id3_getstring(frame, 1);
if (name == NULL) if (name == nullptr)
continue; continue;
value = tag_id3_getstring(frame, 2); value = tag_id3_getstring(frame, 2);
if (value == NULL) if (value == nullptr)
continue; continue;
tag_handler_invoke_pair(handler, handler_ctx, tag_handler_invoke_pair(handler, handler_ctx,
@ -317,24 +322,24 @@ tag_id3_import_ufid(struct id3_tag *id3_tag,
id3_length_t length; id3_length_t length;
frame = id3_tag_findframe(id3_tag, "UFID", i); frame = id3_tag_findframe(id3_tag, "UFID", i);
if (frame == NULL) if (frame == nullptr)
break; break;
field = id3_frame_field(frame, 0); field = id3_frame_field(frame, 0);
if (field == NULL) if (field == nullptr)
continue; continue;
name = id3_field_getlatin1(field); name = id3_field_getlatin1(field);
if (name == NULL || if (name == nullptr ||
strcmp((const char *)name, "http://musicbrainz.org") != 0) strcmp((const char *)name, "http://musicbrainz.org") != 0)
continue; continue;
field = id3_frame_field(frame, 1); field = id3_frame_field(frame, 1);
if (field == NULL) if (field == nullptr)
continue; continue;
value = id3_field_getbinarydata(field, &length); value = id3_field_getbinarydata(field, &length);
if (value == NULL || length == 0) if (value == nullptr || length == 0)
continue; continue;
char *p = g_strndup((const char *)value, length); char *p = g_strndup((const char *)value, length);
@ -388,7 +393,7 @@ struct tag *tag_id3_import(struct id3_tag * tag)
if (tag_is_empty(ret)) { if (tag_is_empty(ret)) {
tag_free(ret); tag_free(ret);
ret = NULL; ret = nullptr;
} }
return ret; return ret;
@ -417,28 +422,29 @@ tag_id3_read(FILE *stream, long offset, int whence)
{ {
struct id3_tag *tag; struct id3_tag *tag;
id3_byte_t query_buffer[ID3_TAG_QUERYSIZE]; id3_byte_t query_buffer[ID3_TAG_QUERYSIZE];
id3_byte_t *tag_buffer;
int tag_size; int tag_size;
int query_buffer_size; int query_buffer_size;
int tag_buffer_size;
/* It's ok if we get less than we asked for */ /* It's ok if we get less than we asked for */
query_buffer_size = fill_buffer(query_buffer, ID3_TAG_QUERYSIZE, query_buffer_size = fill_buffer(query_buffer, ID3_TAG_QUERYSIZE,
stream, offset, whence); stream, offset, whence);
if (query_buffer_size <= 0) return NULL; if (query_buffer_size <= 0)
return nullptr;
/* Look for a tag header */ /* Look for a tag header */
tag_size = id3_tag_query(query_buffer, query_buffer_size); tag_size = id3_tag_query(query_buffer, query_buffer_size);
if (tag_size <= 0) return NULL; if (tag_size <= 0) return nullptr;
/* Found a tag. Allocate a buffer and read it in. */ /* Found a tag. Allocate a buffer and read it in. */
tag_buffer = g_malloc(tag_size); id3_byte_t *tag_buffer = (id3_byte_t *)g_malloc(tag_size);
if (!tag_buffer) return NULL; if (!tag_buffer)
return nullptr;
tag_buffer_size = fill_buffer(tag_buffer, tag_size, stream, offset, whence); int tag_buffer_size = fill_buffer(tag_buffer, tag_size,
stream, offset, whence);
if (tag_buffer_size < tag_size) { if (tag_buffer_size < tag_size) {
g_free(tag_buffer); g_free(tag_buffer);
return NULL; return nullptr;
} }
tag = id3_tag_parse(tag_buffer, tag_buffer_size); tag = id3_tag_parse(tag_buffer, tag_buffer_size);
@ -458,11 +464,11 @@ tag_id3_find_from_beginning(FILE *stream)
tag = tag_id3_read(stream, 0, SEEK_SET); tag = tag_id3_read(stream, 0, SEEK_SET);
if (!tag) { if (!tag) {
return NULL; return nullptr;
} else if (tag_is_id3v1(tag)) { } else if (tag_is_id3v1(tag)) {
/* id3v1 tags don't belong here */ /* id3v1 tags don't belong here */
id3_tag_delete(tag); id3_tag_delete(tag);
return NULL; return nullptr;
} }
/* We have an id3v2 tag, so let's look for SEEK frames */ /* We have an id3v2 tag, so let's look for SEEK frames */
@ -514,30 +520,25 @@ tag_id3_find_from_end(FILE *stream)
static struct id3_tag * static struct id3_tag *
tag_id3_riff_aiff_load(FILE *file) tag_id3_riff_aiff_load(FILE *file)
{ {
size_t size; size_t size = riff_seek_id3(file);
void *buffer;
size_t ret;
struct id3_tag *tag;
size = riff_seek_id3(file);
if (size == 0) if (size == 0)
size = aiff_seek_id3(file); size = aiff_seek_id3(file);
if (size == 0) if (size == 0)
return NULL; return nullptr;
if (size > 4 * 1024 * 1024) if (size > 4 * 1024 * 1024)
/* too large, don't allocate so much memory */ /* too large, don't allocate so much memory */
return NULL; return nullptr;
buffer = g_malloc(size); id3_byte_t *buffer = (id3_byte_t *)g_malloc(size);
ret = fread(buffer, size, 1, file); size_t ret = fread(buffer, size, 1, file);
if (ret != 1) { if (ret != 1) {
g_warning("Failed to read RIFF chunk"); g_warning("Failed to read RIFF chunk");
g_free(buffer); g_free(buffer);
return NULL; return nullptr;
} }
tag = id3_tag_parse(buffer, size); struct id3_tag *tag = id3_tag_parse(buffer, size);
g_free(buffer); g_free(buffer);
return tag; return tag;
} }
@ -546,17 +547,17 @@ struct id3_tag *
tag_id3_load(const char *path_fs, GError **error_r) tag_id3_load(const char *path_fs, GError **error_r)
{ {
FILE *file = fopen(path_fs, "rb"); FILE *file = fopen(path_fs, "rb");
if (file == NULL) { if (file == nullptr) {
g_set_error(error_r, errno_quark(), errno, g_set_error(error_r, errno_quark(), errno,
"Failed to open file %s: %s", "Failed to open file %s: %s",
path_fs, g_strerror(errno)); path_fs, g_strerror(errno));
return NULL; return nullptr;
} }
struct id3_tag *tag = tag_id3_find_from_beginning(file); struct id3_tag *tag = tag_id3_find_from_beginning(file);
if (tag == NULL) { if (tag == nullptr) {
tag = tag_id3_riff_aiff_load(file); tag = tag_id3_riff_aiff_load(file);
if (tag == NULL) if (tag == nullptr)
tag = tag_id3_find_from_end(file); tag = tag_id3_find_from_end(file);
} }
@ -568,10 +569,10 @@ bool
tag_id3_scan(const char *path_fs, tag_id3_scan(const char *path_fs,
const struct tag_handler *handler, void *handler_ctx) const struct tag_handler *handler, void *handler_ctx)
{ {
GError *error = NULL; GError *error = nullptr;
struct id3_tag *tag = tag_id3_load(path_fs, &error); struct id3_tag *tag = tag_id3_load(path_fs, &error);
if (tag == NULL) { if (tag == nullptr) {
if (error != NULL) { if (error != nullptr) {
g_warning("%s", error->message); g_warning("%s", error->message);
g_error_free(error); g_error_free(error);
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#ifndef MPD_TAG_ID3_H #ifndef MPD_TAG_ID3_HXX
#define MPD_TAG_ID3_H #define MPD_TAG_ID3_HXX
#include "check.h" #include "check.h"
#include "gcc.h" #include "gcc.h"

View File

@ -28,10 +28,7 @@
#include "DecoderAPI.hxx" #include "DecoderAPI.hxx"
#include "util/bit_reverse.h" #include "util/bit_reverse.h"
#include "tag_handler.h" #include "tag_handler.h"
#include "TagId3.hxx"
extern "C" {
#include "tag_id3.h"
}
#include <unistd.h> #include <unistd.h>
#include <stdio.h> /* for SEEK_SET, SEEK_CUR */ #include <stdio.h> /* for SEEK_SET, SEEK_CUR */

View File

@ -21,11 +21,7 @@
#include "MadDecoderPlugin.hxx" #include "MadDecoderPlugin.hxx"
#include "DecoderAPI.hxx" #include "DecoderAPI.hxx"
#include "conf.h" #include "conf.h"
#include "TagId3.hxx"
extern "C" {
#include "tag_id3.h"
}
#include "TagRva2.hxx" #include "TagRva2.hxx"
#include "tag_handler.h" #include "tag_handler.h"
#include "audio_check.h" #include "audio_check.h"

View File

@ -28,13 +28,13 @@
#include "PlaylistPlugin.hxx" #include "PlaylistPlugin.hxx"
#include "tag.h" #include "tag.h"
#include "tag_handler.h" #include "tag_handler.h"
#include "TagId3.hxx"
#include "Song.hxx" #include "Song.hxx"
#include "TagFile.hxx" #include "TagFile.hxx"
#include "cue/CueParser.hxx" #include "cue/CueParser.hxx"
extern "C" { extern "C" {
#include "tag_ape.h" #include "tag_ape.h"
#include "tag_id3.h"
} }
#include <glib.h> #include <glib.h>

View File

@ -18,9 +18,7 @@
*/ */
#include "config.h" #include "config.h"
extern "C" { #include "TagId3.hxx"
#include "tag_id3.h"
}
#include "TagRva2.hxx" #include "TagRva2.hxx"
#include "replay_gain_info.h" #include "replay_gain_info.h"
#include "conf.h" #include "conf.h"

View File

@ -26,9 +26,9 @@
#include "audio_format.h" #include "audio_format.h"
extern "C" { extern "C" {
#include "tag_ape.h" #include "tag_ape.h"
#include "tag_id3.h"
} }
#include "tag_handler.h" #include "tag_handler.h"
#include "TagId3.hxx"
#include <glib.h> #include <glib.h>