1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
29 #include "metadata_common.h"
30 #include "metadata_parsers.h"
31 #include "replaygain.h"
34 /* Skip an ID3v2 tag if it can be found. We assume the tag is located at the
35 * start of the file, which should be true in all cases where we need to skip it.
36 * Returns true if successfully skipped or not skipped, and false if
37 * something went wrong while skipping.
39 bool skip_id3v2(int fd
, struct mp3entry
*id3
)
44 if (memcmp(buf
, "ID3", 3) == 0)
46 /* We have found an ID3v2 tag at the start of the file - find its
47 length and then skip it. */
48 if ((id3
->first_frame_offset
= getid3v2len(fd
)) == 0)
51 if ((lseek(fd
, id3
->first_frame_offset
, SEEK_SET
) < 0))
56 lseek(fd
, 0, SEEK_SET
);
57 id3
->first_frame_offset
= 0;
63 /* Read a string from the file. Read up to size bytes, or, if eos != -1,
64 * until the eos character is found (eos is not stored in buf, unless it is
65 * nil). Writes up to buf_size chars to buf, always terminating with a nil.
66 * Returns number of chars read or -1 on read error.
68 long read_string(int fd
, char* buf
, long buf_size
, int eos
, long size
)
75 if (read(fd
, &c
, 1) != 1)
84 if ((eos
!= -1) && (eos
== (unsigned char) c
))
99 /* Read an unsigned 8-bit integer from a file. */
100 int read_uint8(int fd
, uint8_t* buf
)
104 n
= read(fd
, (char*) buf
, 1);
108 #ifdef ROCKBOX_LITTLE_ENDIAN
109 /* Read an unsigned 16-bit integer from a big-endian file. */
110 int read_uint16be(int fd
, uint16_t* buf
)
114 n
= read(fd
, (char*) buf
, 2);
115 *buf
= betoh16(*buf
);
118 /* Read an unsigned 32-bit integer from a big-endian file. */
119 int read_uint32be(int fd
, uint32_t* buf
)
123 n
= read(fd
, (char*) buf
, 4);
124 *buf
= betoh32(*buf
);
127 /* Read an unsigned 64-bit integer from a big-endian file. */
128 int read_uint64be(int fd
, uint64_t* buf
)
134 n
= read(fd
, data
, 8);
136 for (i
=0, *buf
=0; i
<=7; i
++) {
143 /* Read unsigned integers from a little-endian file. */
144 int read_uint16le(int fd
, uint16_t* buf
)
148 n
= read(fd
, (char*) buf
, 2);
149 *buf
= letoh16(*buf
);
152 int read_uint32le(int fd
, uint32_t* buf
)
156 n
= read(fd
, (char*) buf
, 4);
157 *buf
= letoh32(*buf
);
160 int read_uint64le(int fd
, uint64_t* buf
)
166 n
= read(fd
, data
, 8);
168 for (i
=7, *buf
=0; i
>=0; i
--) {
177 /* Read an unaligned 32-bit little endian long from buffer. */
178 unsigned long get_long_le(void* buf
)
180 unsigned char* p
= (unsigned char*) buf
;
182 return p
[0] | (p
[1] << 8) | (p
[2] << 16) | (p
[3] << 24);
185 /* Read an unaligned 16-bit little endian short from buffer. */
186 unsigned short get_short_le(void* buf
)
188 unsigned char* p
= (unsigned char*) buf
;
190 return p
[0] | (p
[1] << 8);
193 /* Read an unaligned 32-bit big endian long from buffer. */
194 unsigned long get_long_be(void* buf
)
196 unsigned char* p
= (unsigned char*) buf
;
198 return (p
[0] << 24) | (p
[1] << 16) | (p
[2] << 8) | p
[3];
201 /* Read an unaligned 32-bit little endian long from buffer. */
202 long get_slong(void* buf
)
204 unsigned char* p
= (unsigned char*) buf
;
206 return p
[0] | (p
[1] << 8) | (p
[2] << 16) | (p
[3] << 24);
209 unsigned long get_itunes_int32(char* value
, int count
)
211 static const char hexdigits
[] = "0123456789ABCDEF";
217 value
= skip_whitespace(value
);
219 while (*value
&& !isspace(*value
))
225 value
= skip_whitespace(value
);
227 while (*value
&& ((c
= strchr(hexdigits
, toupper(*value
))) != NULL
))
229 r
= (r
<< 4) | (c
- hexdigits
);
236 /* Parse the tag (the name-value pair) and fill id3 and buffer accordingly.
237 * String values to keep are written to buf. Returns number of bytes written
238 * to buf (including end nil).
240 long parse_tag(const char* name
, char* value
, struct mp3entry
* id3
,
241 char* buf
, long buf_remaining
, enum tagtype type
)
246 if ((((strcasecmp(name
, "track") == 0) && (type
== TAGTYPE_APE
)))
247 || ((strcasecmp(name
, "tracknumber") == 0) && (type
== TAGTYPE_VORBIS
)))
249 id3
->tracknum
= atoi(value
);
250 p
= &(id3
->track_string
);
252 else if (strcasecmp(name
, "discnumber") == 0 || strcasecmp(name
, "disc") == 0)
254 id3
->discnum
= atoi(value
);
255 p
= &(id3
->disc_string
);
257 else if (((strcasecmp(name
, "year") == 0) && (type
== TAGTYPE_APE
))
258 || ((strcasecmp(name
, "date") == 0) && (type
== TAGTYPE_VORBIS
)))
260 /* Date's can be in any format in Vorbis. However most of them
261 * are in ISO8601 format so if we try and parse the first part
262 * of the tag as a number, we should get the year. If we get crap,
263 * then act like we never parsed it.
265 id3
->year
= atoi(value
);
266 if (id3
->year
< 1900)
267 { /* yeah, not likely */
270 p
= &(id3
->year_string
);
272 else if (strcasecmp(name
, "title") == 0)
276 else if (strcasecmp(name
, "artist") == 0)
280 else if (strcasecmp(name
, "album") == 0)
284 else if (strcasecmp(name
, "genre") == 0)
286 p
= &(id3
->genre_string
);
288 else if (strcasecmp(name
, "composer") == 0)
290 p
= &(id3
->composer
);
292 else if (strcasecmp(name
, "comment") == 0)
296 else if (strcasecmp(name
, "albumartist") == 0)
298 p
= &(id3
->albumartist
);
300 else if (strcasecmp(name
, "album artist") == 0)
302 p
= &(id3
->albumartist
);
304 else if (strcasecmp(name
, "ensemble") == 0)
306 p
= &(id3
->albumartist
);
308 else if (strcasecmp(name
, "grouping") == 0)
310 p
= &(id3
->grouping
);
312 else if (strcasecmp(name
, "content group") == 0)
314 p
= &(id3
->grouping
);
316 else if (strcasecmp(name
, "contentgroup") == 0)
318 p
= &(id3
->grouping
);
320 else if (strcasecmp(name
, "musicbrainz_trackid") == 0
321 || strcasecmp(name
, "http://musicbrainz.org") == 0 )
323 p
= &(id3
->mb_track_id
);
327 len
= parse_replaygain(name
, value
, id3
, buf
, buf_remaining
);
334 len
= MIN(len
, buf_remaining
- 1);
339 strlcpy(buf
, value
, len
);