1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2007 Nicolas Pennequin
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 ****************************************************************************/
25 #include <sys/types.h>
27 #include "appevents.h"
41 /* Error return values */
42 #define ERR_HANDLE_NOT_FOUND -1
43 #define ERR_BUFFER_FULL -2
44 #define ERR_INVALID_VALUE -3
45 #define ERR_FILE_ERROR -4
46 #define ERR_HANDLE_NOT_DONE -5
49 /* Initialise the buffering subsystem */
50 void buffering_init(void);
52 /* Reset the buffering system */
53 bool buffering_reset(char *buf
, size_t buflen
);
56 /***************************************************************************
57 * MAIN BUFFERING API CALLS
58 * ========================
60 * bufopen : Reserve space in the buffer for a given file
61 * bufalloc : Open a new handle from data that needs to be copied from memory
62 * bufclose : Close an open handle
63 * bufseek : Set handle reading index, relatively to the start of the file
64 * bufadvance: Move handle reading index, relatively to current position
65 * bufread : Copy data from a handle to a buffer
66 * bufgetdata: Obtain a pointer for linear access to a "size" amount of data
67 * bufgettail: Out-of-band get the last size bytes of a handle.
68 * bufcuttail: Out-of-band remove the trailing 'size' bytes of a handle.
70 * NOTE: bufread and bufgetdata will block the caller until the requested
71 * amount of data is ready (unless EOF is reached).
72 * NOTE: Tail operations are only legal when the end of the file is buffered.
73 ****************************************************************************/
75 #define BUF_MAX_HANDLES 256
77 int bufopen(const char *file
, size_t offset
, enum data_type type
);
78 int bufalloc(const void *src
, size_t size
, enum data_type type
);
79 bool bufclose(int handle_id
);
80 int bufseek(int handle_id
, size_t newpos
);
81 int bufadvance(int handle_id
, off_t offset
);
82 ssize_t
bufread(int handle_id
, size_t size
, void *dest
);
83 ssize_t
bufgetdata(int handle_id
, size_t size
, void **data
);
84 ssize_t
bufgettail(int handle_id
, size_t size
, void **data
);
85 ssize_t
bufcuttail(int handle_id
, size_t size
);
88 /***************************************************************************
92 * buf_get_offset: Get a handle offset from a pointer
93 * buf_handle_offset: Get the offset of the first buffered byte from the file
94 * buf_request_buffer_handle: Request buffering of a handle
95 * buf_set_base_handle: Tell the buffering thread which handle is currently read
96 * buf_used: Total amount of buffer space used (including allocated space)
97 ****************************************************************************/
99 ssize_t
buf_get_offset(int handle_id
, void *ptr
);
100 ssize_t
buf_handle_offset(int handle_id
);
101 void buf_request_buffer_handle(int handle_id
);
102 void buf_set_base_handle(int handle_id
);
103 size_t buf_used(void);
109 BUFFERING_SET_WATERMARK
= 1,
110 BUFFERING_SET_CHUNKSIZE
,
112 void buf_set_watermark(size_t bytes
);
115 struct buffering_debug
{
117 size_t buffered_data
;
123 void buffering_get_debugdata(struct buffering_debug
*dbgdata
);