prevent 2 segfaults. slight error checking imporvemnt.
[Rockbox-MoB.git] / buffering.c
blob179df571648e54069d273f334227b51957fa8120
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Nicolas Pennequin
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <stdbool.h>
23 #include <string.h>
24 #include <fcntl.h>
25 #include "buffering.h"
26 #include "aux.h"
28 /* Rockbox constants */
29 #define HZ 1
30 /* amount of data to read in one read() call */
31 #define AUDIO_DEFAULT_FILECHUNK (1024*32)
34 #define BUFFER_SIZE (32*1024*1024)
35 #define GUARD_SIZE (32*1024)
38 /* Ring buffer helper macros */
39 /* Buffer pointer (p) plus value (v), wrapped if necessary */
40 #define RINGBUF_ADD(p,v) ((p+v)<buffer_len ? p+v : p+v-buffer_len)
41 /* Buffer pointer (p) minus value (v), wrapped if necessary */
42 #define RINGBUF_SUB(p,v) ((p>=v) ? p-v : p+buffer_len-v)
43 /* How far value (v) plus buffer pointer (p1) will cross buffer pointer (p2) */
44 #define RINGBUF_ADD_CROSS(p1,v,p2) \
45 ((p1<p2) ? (int)(p1+v)-(int)p2 : (int)(p1+v-p2)-(int)buffer_len)
46 /* Bytes available in the buffer */
47 #define BUF_USED RINGBUF_SUB(buf_widx, buf_ridx)
49 #ifndef MIN
50 #define MIN(a, b) (((a)<(b))?(a):(b))
51 #endif
54 static size_t buffer_len;
55 static char *buffer;
56 static char *buffer_end;
58 static size_t conf_filechunk;
60 static size_t buf_widx;
61 static size_t buf_ridx;
63 /* current memory handle in the linked list. NULL when the list is empty. */
64 static struct memory_handle *cur_handle;
65 /* first memory handle in the linked list. NULL when the list is empty. */
66 static struct memory_handle *first_handle;
67 static int num_handles;
70 /* add a new handle to the linked list and return it. It will have become the
71 new current handle */
72 static struct memory_handle *add_handle(void)
74 /* this will give each handle a unique id */
75 static int cur_handle_id = 0;
77 int data_size = sizeof(struct memory_handle) /*
78 + 1024*1024 - sizeof(struct memory_handle) */;
80 /* check that we actually can add the handle and its data */
81 if (RINGBUF_ADD_CROSS(buf_widx, data_size, buf_ridx) >= 0) {
82 return NULL;
85 struct memory_handle *new_handle = (struct memory_handle *)(buffer + buf_widx);
86 buf_widx = RINGBUF_ADD(buf_widx, data_size);
88 if (!first_handle) {
89 /* the new handle is the first one */
90 first_handle = new_handle;
93 if (cur_handle) {
94 cur_handle->next = new_handle;
97 cur_handle = new_handle;
98 cur_handle->id = cur_handle_id++;
99 num_handles++;
100 return cur_handle;
103 /* delete a given memory handle from the linked list
104 and return true for success. Nothing is actually erased from memory. */
105 static bool rm_handle(struct memory_handle *h)
107 if (h == first_handle) {
108 first_handle = h->next;
109 } else {
110 struct memory_handle *m = first_handle;
111 while (m && m->next != h) {
112 m = m->next;
114 if (h && m && m->next == h) {
115 m->next = h->next;
116 } else {
117 return false;
120 num_handles--;
121 return true;
124 /* Return a pointer to the memory handle of given ID.
125 NULL if the handle wasn't found */
126 static struct memory_handle *find_handle(int handle_id)
128 static int last_handle_id = -1;
129 static struct memory_handle *last_m = NULL;
130 struct memory_handle *m = first_handle;
131 /* simple cacheing because most of the time the requested handle
132 will either be the same as the last, or the one after the last */
133 if (last_m)
135 if (last_handle_id == handle_id)
136 return last_m;
137 else if (last_m->next && (last_m->next->id == handle_id))
139 last_m = last_m->next;
140 last_handle_id = handle_id;
141 return last_m;
144 while (m && m->id != handle_id) {
145 m = m->next;
147 last_handle_id = handle_id;
148 last_m = m;
149 return (m && m->id == handle_id) ? m : NULL;
152 /* Buffer data for the given handle. Return the amount of data buffered
153 or -1 if the handle wasn't found */
154 static int buffer_handle(int handle_id)
156 struct memory_handle *h = find_handle(handle_id);
157 //printf("find_handle %d:\nid: %d\npath: %s\n\n", handle_id, h->id, h->path);
158 if (!h)
159 return -1;
161 if (h->filerem == 0) {
162 /* nothing left to buffer */
163 return 0;
166 if (h->fd < 0) /* file closed, reopen */
168 if (*h->path)
169 h->fd = open(h->path, O_RDONLY);
170 else
171 return -1;
173 if (h->fd < 0)
174 return -1;
176 if (h->offset)
177 lseek(h->fd, h->offset, SEEK_SET);
180 int ret = 0;
181 while (h->filerem > 0)
183 /* max amount to copy */
184 size_t copy_n = MIN(conf_filechunk, buffer_len - buf_widx);
186 if (RINGBUF_ADD_CROSS(buf_widx, copy_n, buf_ridx) >= 0)
188 printf("RINGBUF_ADD_CROSS() >= 0, handle: %d\n", handle_id);
189 break;
192 /* rc is the actual amount read */
193 int rc = read(h->fd, &buffer[buf_widx], copy_n);
195 if (rc < 0)
197 printf("File ended %ldB early", h->filerem);
198 h->filesize -= h->filerem;
199 h->filerem = 0;
200 break;
203 /* Advance buffer */
204 buf_widx = RINGBUF_ADD(buf_widx, rc);
205 h->available += rc;
206 ret += rc;
207 h->filerem -= rc;
210 if (h->filerem == 0) {
211 /* finished buffering the file */
212 close(h->fd);
215 printf("buffered %d bytes (%d of %d available, remaining: %d)\n",
216 ret, h->available, h->filesize, h->filerem);
217 return ret;
220 /* Request a file be buffered
221 filename: name of the file t open
222 offset: starting offset to buffer from the file
223 RETURNS: <0 if the file cannot be opened, or one file already
224 queued to be opened, otherwise the handle for the file in the buffer
226 int bufopen(char *file, size_t offset)
228 /* add the file to the buffering queue. */
229 /* for now, we'll assume the queue is always empty, so the handle
230 gets added immediately */
232 printf("bufopen: %s (offset: %d)\n", file, offset);
234 int fd = open(file, O_RDONLY);
235 if (fd < 0)
236 return -1;
238 if (offset)
239 lseek(fd, offset, SEEK_SET);
241 struct memory_handle *h = add_handle();
242 if (!h)
243 return -1;
244 strncpy(h->path, file, MAX_PATH);
245 h->fd = fd;
246 h->filesize = filesize(fd);
247 h->filerem = h->filesize - offset;
248 h->offset = offset;
249 h->buf_idx = buf_widx;
250 h->data = buf_widx;
251 h->available = 0;
252 h->next = NULL;
254 printf("added handle : %d\n", h->id);
255 return h->id;
258 /* Close the handle. Return 0 for success and < 0 for failure */
259 int bufclose(int handle_id)
261 printf("bufclose: %d\n", handle_id);
262 struct memory_handle *h = find_handle(handle_id);
263 if (!h)
264 return -1;
266 /* when we close the first handle, we can reclaim the space from its buffer */
267 if (h == first_handle) {
268 buf_ridx = h->buf_idx + h->available;
269 /* is this right in all cases ? */
272 return rm_handle(h) ? 0 : -1;
275 /* Seek in a handle. Return 0 for success and < 0 for failure */
276 int bufseek(int handle_id, size_t offset)
278 struct memory_handle *h = find_handle(handle_id);
279 if (!h)
280 return -1;
282 h->buf_idx = RINGBUF_ADD(h->data, offset);
283 return 0;
286 static void list_handles(void)
288 struct memory_handle *m = first_handle;
289 while (m) {
290 printf("%02d - %d\n", m->id, (void *)m-(void *)buffer);
291 m = m->next;
295 void buffer_init(void)
297 buffer = (char *)malloc(sizeof(char) * (BUFFER_SIZE + GUARD_SIZE));
298 if (!buffer)
300 printf("couldn't allocate buffer\n");
301 exit(1);
303 buffer_len = BUFFER_SIZE;
304 buffer_end = buffer + BUFFER_SIZE;
306 buf_widx = 0;
307 buf_ridx = 0;
309 first_handle = NULL;
310 first_handle = NULL;
311 num_handles = 0;
313 conf_filechunk = AUDIO_DEFAULT_FILECHUNK;
315 #if 0
316 int main(int argc, char **argv)
318 buffer_init();
320 printf("sizeof memory_handle : %d\n", sizeof(struct memory_handle));
321 printf("\n");
323 int i, hdl;
324 for (i = 1; i < argc; i++) {
325 hdl = bufopen(argv[i], 0);
326 buffer_handle(hdl);
327 printf("used: %d, free: %d\n", BUF_USED, BUFFER_SIZE - BUF_USED);
328 printf("buf_widx: %d\n", buf_widx);
329 printf("----\n");
332 printf("\n");
333 bufclose(0);
334 printf("used: %d, free: %d\n", BUF_USED, BUFFER_SIZE - BUF_USED);
335 printf("buf_widx: %d\n", buf_widx);
336 printf("\n");
337 bufclose(1);
338 printf("used: %d, free: %d\n", BUF_USED, BUFFER_SIZE - BUF_USED);
339 printf("buf_widx: %d\n", buf_widx);
340 printf("\n");
342 buffer_handle(2);
343 printf("used: %d, free: %d\n", BUF_USED, BUFFER_SIZE - BUF_USED);
344 printf("buf_widx: %d\n", buf_widx);
346 return 0;
348 #endif
349 /* returns true if the file still has some on disk unread */
350 bool handle_has_data(int handle)
352 struct memory_handle *m = find_handle(handle);
353 if (m)
355 return m->filerem != 0;
357 return false;
359 bool need_rebuffer(void)
361 size_t free;
362 free = BUFFER_SIZE - BUF_USED;
363 return ((free >= BUFFER_SIZE/4));
365 #define MAX_HANDLES 64
366 int main(int argc, char *argv[])
368 int next_file = 1;
369 int last_handle = -1;
370 int handle_order[MAX_HANDLES];
371 int reading_handle = 0;
372 bool done = false;
373 char read_buffer[GUARD_SIZE];
374 buffer_init();
375 while (done == false)
377 if (next_file <= argc && need_rebuffer())
379 printf("buffer usage: %d handles_used: %d\n", BUF_USED,num_handles);
380 if ( (!num_handles ||
381 handle_has_data(handle_order[last_handle]) == false))
383 int h = bufopen(argv[next_file++], 0);
384 if (h >= 0)
386 printf("new handle %d\n",h);
387 last_handle++;
388 handle_order[last_handle] = h;
389 buffer_handle(handle_order[last_handle]);
392 else
394 if (handle_has_data(handle_order[last_handle]) == true)
396 printf("buffering handle %d\n",handle_order[last_handle]);
397 buffer_handle(handle_order[last_handle]);
401 else
403 printf("reading handle: %d\n", handle_order[reading_handle]);
404 long total = 0, read;
405 char file[MAX_PATH];
406 int fd;
407 if (next_file > argc && reading_handle >= last_handle)
408 done = true;
409 bufclose(handle_order[reading_handle]);
410 reading_handle++;
411 /* snprintf(file, MAX_PATH, "/home/jonno/buffering_test/file%d.mp3", reading_handle);
412 fd = open(file, O_CREAT|O_TRUNC|O_RDWR);
413 if (fd < 0)
415 printf("ERROROROROR\n");
416 exit(1);
418 while (1)
420 read = bufread(handle_order[reading_handle], GUARD_SIZE,read_buffer);
421 total += read;
422 write(fd, read_buffer, read);
423 if (read <= 0)
425 printf("finished reading %d, %d\n",handle_order[reading_handle], total);
426 bufclose(handle_order[reading_handle]);
427 close(fd);
428 reading_handle++;
429 break;
436 free(buffer);
437 return 0;