Update the discussion of themeing in the manual, and put a note in the wps tags appen...
[kugel-rb.git] / apps / metadata / vorbis.c
blobf6d3af1cef66a5169a949c15d4c777753e4a8ab3
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.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 "structec.h"
33 /* Define LOGF_ENABLE to enable logf output in this file */
34 /*#define LOGF_ENABLE*/
35 #include "logf.h"
37 struct file
39 int fd;
40 bool packet_ended;
41 long packet_remaining;
45 /* Read an Ogg page header. file->packet_remaining is set to the size of the
46 * first packet on the page; file->packet_ended is set to true if the packet
47 * ended on the current page. Returns true if the page header was
48 * successfully read.
50 static bool file_read_page_header(struct file* file)
52 unsigned char buffer[64];
53 ssize_t table_left;
55 /* Size of page header without segment table */
56 if (read(file->fd, buffer, 27) != 27)
58 return false;
61 if (memcmp("OggS", buffer, 4))
63 return false;
66 /* Skip pattern (4), version (1), flags (1), granule position (8),
67 * serial (4), pageno (4), checksum (4)
69 table_left = buffer[26];
70 file->packet_remaining = 0;
72 /* Read segment table for the first packet */
75 ssize_t count = MIN(sizeof(buffer), (size_t) table_left);
76 int i;
78 if (read(file->fd, buffer, count) < count)
80 return false;
83 table_left -= count;
85 for (i = 0; i < count; i++)
87 file->packet_remaining += buffer[i];
89 if (buffer[i] < 255)
91 file->packet_ended = true;
93 /* Skip remainder of the table */
94 if (lseek(file->fd, table_left, SEEK_CUR) < 0)
96 return false;
99 table_left = 0;
100 break;
104 while (table_left > 0);
106 return true;
110 /* Read (up to) buffer_size of data from the file. If buffer is NULL, just
111 * skip ahead buffer_size bytes (like lseek). Returns number of bytes read,
112 * 0 if there is no more data to read (in the packet or the file), < 0 if a
113 * read error occurred.
115 static ssize_t file_read(struct file* file, void* buffer, size_t buffer_size)
117 ssize_t done = 0;
118 ssize_t count = -1;
122 if (file->packet_remaining <= 0)
124 if (file->packet_ended)
126 break;
129 if (!file_read_page_header(file))
131 count = -1;
132 break;
136 count = MIN(buffer_size, (size_t) file->packet_remaining);
138 if (buffer)
140 count = read(file->fd, buffer, count);
142 else
144 if (lseek(file->fd, count, SEEK_CUR) < 0)
146 count = -1;
150 if (count <= 0)
152 break;
155 if (buffer)
157 buffer += count;
160 buffer_size -= count;
161 done += count;
162 file->packet_remaining -= count;
164 while (buffer_size > 0);
166 return (count < 0 ? count : done);
170 /* Read an int32 from file. Returns false if a read error occurred.
172 static bool file_read_int32(struct file* file, int32_t* value)
174 char buf[sizeof(int32_t)];
176 if (file_read(file, buf, sizeof(buf)) < (ssize_t) sizeof(buf))
178 return false;
181 *value = get_long_le(buf);
182 return true;
186 /* Read a string from the file. Read up to buffer_size bytes, or, if eos
187 * != -1, until the eos character is found (eos is not stored in buf,
188 * unless it is nil). Writes up to buffer_size chars to buf, always
189 * terminating with a nil. Returns number of chars read or < 0 if a read
190 * error occurred.
192 * Unfortunately this is a slightly modified copy of read_string() in
193 * metadata_common.c...
195 static long file_read_string(struct file* file, char* buffer,
196 long buffer_size, int eos, long size)
198 long read_bytes = 0;
200 while (size > 0)
202 char c;
204 if (file_read(file, &c, 1) != 1)
206 read_bytes = -1;
207 break;
210 read_bytes++;
211 size--;
213 if ((eos != -1) && (eos == (unsigned char) c))
215 break;
218 if (buffer_size > 1)
220 *buffer++ = c;
221 buffer_size--;
223 else if (eos == -1)
225 /* No point in reading any more, skip remaining data */
226 if (file_read(file, NULL, size) < 0)
228 read_bytes = -1;
230 else
232 read_bytes += size;
235 break;
239 *buffer = 0;
240 return read_bytes;
244 /* Init struct file for reading from fd. type is the AFMT_* codec type of
245 * the file, and determines if Ogg pages are to be read. remaining is the
246 * max amount to read if codec type is FLAC; it is ignored otherwise.
247 * Returns true if the file was successfully initialized.
249 static bool file_init(struct file* file, int fd, int type, int remaining)
251 memset(file, 0, sizeof(*file));
252 file->fd = fd;
254 if (type == AFMT_OGG_VORBIS || type == AFMT_SPEEX)
256 if (!file_read_page_header(file))
258 return false;
262 if (type == AFMT_OGG_VORBIS)
264 char buffer[7];
266 /* Read packet header (type and id string) */
267 if (file_read(file, buffer, sizeof(buffer)) < (ssize_t) sizeof(buffer))
269 return false;
272 /* The first byte of a packet is the packet type; comment packets
273 * are type 3.
275 if (buffer[0] != 3)
277 return false;
280 else if (type == AFMT_FLAC)
282 file->packet_remaining = remaining;
283 file->packet_ended = true;
286 return true;
290 /* Read the items in a Vorbis comment packet. For Ogg files, the file must
291 * be located on a page start, for other files, the beginning of the comment
292 * data (i.e., the vendor string length). Returns total size of the
293 * comments, or 0 if there was a read error.
295 long read_vorbis_tags(int fd, struct mp3entry *id3,
296 long tag_remaining)
298 struct file file;
299 char *buf = id3->id3v2buf;
300 int32_t comment_count;
301 int32_t len;
302 long comment_size = 0;
303 int buf_remaining = sizeof(id3->id3v2buf) + sizeof(id3->id3v1buf);
304 int i;
306 if (!file_init(&file, fd, id3->codectype, tag_remaining))
308 return 0;
311 /* Skip vendor string */
313 if (!file_read_int32(&file, &len) || (file_read(&file, NULL, len) < 0))
315 return 0;
318 if (!file_read_int32(&file, &comment_count))
320 return 0;
323 comment_size += 4 + len + 4;
325 for (i = 0; i < comment_count && file.packet_remaining > 0; i++)
327 char name[TAG_NAME_LENGTH];
328 int32_t read_len;
330 if (!file_read_int32(&file, &len))
332 return 0;
335 comment_size += 4 + len;
336 read_len = file_read_string(&file, name, sizeof(name), '=', len);
338 if (read_len < 0)
340 return 0;
343 len -= read_len;
345 if (file_read_string(&file, id3->path, sizeof(id3->path), -1, len) < 0)
347 return 0;
350 logf("Vorbis comment %d: %s=%s", i, name, id3->path);
351 len = parse_tag(name, id3->path, id3, buf, buf_remaining,
352 TAGTYPE_VORBIS);
353 buf += len;
354 buf_remaining -= len;
357 /* Skip to the end of the block (needed by FLAC) */
358 if (file.packet_remaining)
360 if (file_read(&file, NULL, file.packet_remaining) < 0)
362 return 0;
366 return comment_size;