Move c/h files implementing/defining standard library stuff into a new libc directory...
[kugel-rb.git] / apps / metadata / metadata_common.c
blobe1ef9a0d6256835affda1a1cc7ffcec3796499de
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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 ****************************************************************************/
21 #include <stdio.h>
22 #include "string-extra.h"
23 #include <stdlib.h>
24 #include <ctype.h>
25 #include <inttypes.h>
27 #include "system.h"
28 #include "metadata.h"
29 #include "metadata_common.h"
30 #include "metadata_parsers.h"
31 #include "replaygain.h"
32 #include "misc.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)
41 char buf[4];
43 read(fd, buf, 4);
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)
49 return false;
51 if ((lseek(fd, id3->first_frame_offset, SEEK_SET) < 0))
52 return false;
54 return true;
55 } else {
56 lseek(fd, 0, SEEK_SET);
57 id3->first_frame_offset = 0;
58 return true;
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)
70 long read_bytes = 0;
71 char c;
73 while (size != 0)
75 if (read(fd, &c, 1) != 1)
77 read_bytes = -1;
78 break;
81 read_bytes++;
82 size--;
84 if ((eos != -1) && (eos == (unsigned char) c))
86 break;
89 if (buf_size > 1)
91 *buf++ = c;
92 buf_size--;
96 *buf = 0;
97 return read_bytes;
99 /* Read an unsigned 8-bit integer from a file. */
100 int read_uint8(int fd, uint8_t* buf)
102 size_t n;
104 n = read(fd, (char*) buf, 1);
105 return n;
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)
112 size_t n;
114 n = read(fd, (char*) buf, 2);
115 *buf = betoh16(*buf);
116 return n;
118 /* Read an unsigned 32-bit integer from a big-endian file. */
119 int read_uint32be(int fd, uint32_t* buf)
121 size_t n;
123 n = read(fd, (char*) buf, 4);
124 *buf = betoh32(*buf);
125 return n;
127 /* Read an unsigned 64-bit integer from a big-endian file. */
128 int read_uint64be(int fd, uint64_t* buf)
130 size_t n;
131 uint8_t data[8];
132 int i;
134 n = read(fd, data, 8);
136 for (i=0, *buf=0; i<=7; i++) {
137 *buf <<= 8;
138 *buf |= data[i];
140 return n;
142 #else
143 /* Read unsigned integers from a little-endian file. */
144 int read_uint16le(int fd, uint16_t* buf)
146 size_t n;
148 n = read(fd, (char*) buf, 2);
149 *buf = letoh16(*buf);
150 return n;
152 int read_uint32le(int fd, uint32_t* buf)
154 size_t n;
156 n = read(fd, (char*) buf, 4);
157 *buf = letoh32(*buf);
158 return n;
160 int read_uint64le(int fd, uint64_t* buf)
162 size_t n;
163 uint8_t data[8];
164 int i;
166 n = read(fd, data, 8);
168 for (i=7, *buf=0; i>=0; i--) {
169 *buf <<= 8;
170 *buf |= data[i];
173 return n;
175 #endif
177 /* Read an unaligned 64-bit little endian unsigned integer from buffer. */
178 uint64_t get_uint64_le(void* buf)
180 unsigned char* p = (unsigned char*) buf;
182 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24) | ((uint64_t)p[4] << 32) |
183 ((uint64_t)p[5] << 40) | ((uint64_t)p[6] << 48) | ((uint64_t)p[7] << 56);
186 /* Read an unaligned 32-bit little endian long from buffer. */
187 unsigned long get_long_le(void* buf)
189 unsigned char* p = (unsigned char*) buf;
191 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
194 /* Read an unaligned 16-bit little endian short from buffer. */
195 unsigned short get_short_le(void* buf)
197 unsigned char* p = (unsigned char*) buf;
199 return p[0] | (p[1] << 8);
202 /* Read an unaligned 32-bit big endian long from buffer. */
203 unsigned long get_long_be(void* buf)
205 unsigned char* p = (unsigned char*) buf;
207 return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3];
210 /* Read an unaligned 32-bit little endian long from buffer. */
211 long get_slong(void* buf)
213 unsigned char* p = (unsigned char*) buf;
215 return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
218 unsigned long get_itunes_int32(char* value, int count)
220 static const char hexdigits[] = "0123456789ABCDEF";
221 const char* c;
222 int r = 0;
224 while (count-- > 0)
226 value = skip_whitespace(value);
228 while (*value && !isspace(*value))
230 value++;
234 value = skip_whitespace(value);
236 while (*value && ((c = strchr(hexdigits, toupper(*value))) != NULL))
238 r = (r << 4) | (c - hexdigits);
239 value++;
242 return r;
245 /* Parse the tag (the name-value pair) and fill id3 and buffer accordingly.
246 * String values to keep are written to buf. Returns number of bytes written
247 * to buf (including end nil).
249 long parse_tag(const char* name, char* value, struct mp3entry* id3,
250 char* buf, long buf_remaining, enum tagtype type)
252 long len = 0;
253 char** p;
255 if ((((strcasecmp(name, "track") == 0) && (type == TAGTYPE_APE)))
256 || ((strcasecmp(name, "tracknumber") == 0) && (type == TAGTYPE_VORBIS)))
258 id3->tracknum = atoi(value);
259 p = &(id3->track_string);
261 else if (strcasecmp(name, "discnumber") == 0 || strcasecmp(name, "disc") == 0)
263 id3->discnum = atoi(value);
264 p = &(id3->disc_string);
266 else if (((strcasecmp(name, "year") == 0) && (type == TAGTYPE_APE))
267 || ((strcasecmp(name, "date") == 0) && (type == TAGTYPE_VORBIS)))
269 /* Date's can be in any format in Vorbis. However most of them
270 * are in ISO8601 format so if we try and parse the first part
271 * of the tag as a number, we should get the year. If we get crap,
272 * then act like we never parsed it.
274 id3->year = atoi(value);
275 if (id3->year < 1900)
276 { /* yeah, not likely */
277 id3->year = 0;
279 p = &(id3->year_string);
281 else if (strcasecmp(name, "title") == 0)
283 p = &(id3->title);
285 else if (strcasecmp(name, "artist") == 0)
287 p = &(id3->artist);
289 else if (strcasecmp(name, "album") == 0)
291 p = &(id3->album);
293 else if (strcasecmp(name, "genre") == 0)
295 p = &(id3->genre_string);
297 else if (strcasecmp(name, "composer") == 0)
299 p = &(id3->composer);
301 else if (strcasecmp(name, "comment") == 0)
303 p = &(id3->comment);
305 else if (strcasecmp(name, "albumartist") == 0)
307 p = &(id3->albumartist);
309 else if (strcasecmp(name, "album artist") == 0)
311 p = &(id3->albumartist);
313 else if (strcasecmp(name, "ensemble") == 0)
315 p = &(id3->albumartist);
317 else if (strcasecmp(name, "grouping") == 0)
319 p = &(id3->grouping);
321 else if (strcasecmp(name, "content group") == 0)
323 p = &(id3->grouping);
325 else if (strcasecmp(name, "contentgroup") == 0)
327 p = &(id3->grouping);
329 else if (strcasecmp(name, "musicbrainz_trackid") == 0
330 || strcasecmp(name, "http://musicbrainz.org") == 0 )
332 p = &(id3->mb_track_id);
334 else
336 len = parse_replaygain(name, value, id3, buf, buf_remaining);
337 p = NULL;
340 if (p)
342 len = strlen(value);
343 len = MIN(len, buf_remaining - 1);
345 if (len > 0)
347 len++;
348 strlcpy(buf, value, len);
349 *p = buf;
351 else
353 len = 0;
357 return len;