2002-11-22 13:00:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2004-07-05 11:15:50 +00:00
|
|
|
#ifndef MISC_H
|
|
|
|
#define MISC_H
|
2002-11-22 13:00:10 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2005-01-31 00:39:20 +00:00
|
|
|
/* Format a large-range value for output, using the appropriate unit so that
|
|
|
|
* the displayed value is in the range 1 <= display < 1000 (1024 for "binary"
|
|
|
|
* units) if possible, and 3 significant digits are shown. If a buffer is
|
|
|
|
* given, the result is snprintf()'d into that buffer, otherwise the result is
|
|
|
|
* voiced.*/
|
2006-11-06 18:07:30 +00:00
|
|
|
char *output_dyn_value(char *buf, int buf_size, int value,
|
2005-01-31 00:39:20 +00:00
|
|
|
const unsigned char **units, bool bin_scale);
|
2003-05-04 02:04:31 +00:00
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
/* Create a filename with a number part in a way that the number is 1
|
|
|
|
* higher than the highest numbered file matching the same pattern.
|
|
|
|
* It is allowed that buffer and path point to the same memory location,
|
|
|
|
* saving a strcpy(). Path must always be given without trailing slash.
|
|
|
|
*
|
|
|
|
* "num" can point to an int specifying the number to use or NULL or a value
|
|
|
|
* less than zero to number automatically. The final number used will also
|
|
|
|
* be returned in *num. If *num is >= 0 then *num will be incremented by
|
|
|
|
* one. */
|
2007-06-22 09:34:57 +00:00
|
|
|
#if defined(HAVE_RECORDING) && (CONFIG_RTC == 0)
|
|
|
|
/* this feature is needed by recording without a RTC to prevent disk access
|
|
|
|
when changing files */
|
2006-11-06 18:07:30 +00:00
|
|
|
#define IF_CNFN_NUM_(...) __VA_ARGS__
|
|
|
|
#define IF_CNFN_NUM
|
|
|
|
#else
|
|
|
|
#define IF_CNFN_NUM_(...)
|
|
|
|
#endif
|
2005-09-02 01:15:35 +00:00
|
|
|
char *create_numbered_filename(char *buffer, const char *path,
|
|
|
|
const char *prefix, const char *suffix,
|
2006-11-06 18:07:30 +00:00
|
|
|
int numberlen IF_CNFN_NUM_(, int *num));
|
2007-02-17 13:36:44 +00:00
|
|
|
|
|
|
|
/* Format time into buf.
|
|
|
|
*
|
|
|
|
* buf - buffer to format to.
|
|
|
|
* buf_size - size of buffer.
|
|
|
|
* t - time to format, in milliseconds.
|
|
|
|
*/
|
|
|
|
void format_time(char* buf, int buf_size, long t);
|
|
|
|
|
2007-03-16 23:47:03 +00:00
|
|
|
#if CONFIG_RTC
|
2006-11-06 18:07:30 +00:00
|
|
|
/* Create a filename with a date+time part.
|
|
|
|
It is allowed that buffer and path point to the same memory location,
|
|
|
|
saving a strcpy(). Path must always be given without trailing slash.
|
|
|
|
unique_time as true makes the function wait until the current time has
|
|
|
|
changed. */
|
2005-09-02 01:15:35 +00:00
|
|
|
char *create_datetime_filename(char *buffer, const char *path,
|
2006-11-06 18:07:30 +00:00
|
|
|
const char *prefix, const char *suffix,
|
|
|
|
bool unique_time);
|
|
|
|
#endif /* CONFIG_RTC */
|
2005-09-02 01:15:35 +00:00
|
|
|
|
2003-05-04 02:04:31 +00:00
|
|
|
/* Read (up to) a line of text from fd into buffer and return number of bytes
|
|
|
|
* read (which may be larger than the number of bytes stored in buffer). If
|
|
|
|
* an error occurs, -1 is returned (and buffer contains whatever could be
|
|
|
|
* read). A line is terminated by a LF char. Neither LF nor CR chars are
|
|
|
|
* stored in buffer.
|
|
|
|
*/
|
|
|
|
int read_line(int fd, char* buffer, int buffer_size);
|
2006-10-21 20:37:33 +00:00
|
|
|
int fast_readline(int fd, char *buf, int buf_size, void *parameters,
|
|
|
|
int (*callback)(int n, const char *buf, void *parameters));
|
2004-06-30 13:31:14 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
/* Save a .BMP file containing the current screen contents. */
|
|
|
|
void screen_dump(void);
|
2005-10-01 10:20:55 +00:00
|
|
|
void screen_dump_set_hook(void (*hook)(int fh));
|
2004-06-30 13:31:14 +00:00
|
|
|
#endif
|
2004-07-05 11:15:50 +00:00
|
|
|
|
|
|
|
bool settings_parseline(char* line, char** name, char** value);
|
2005-02-07 22:56:37 +00:00
|
|
|
long default_event_handler_ex(long event, void (*callback)(void *), void *parameter);
|
|
|
|
long default_event_handler(long event);
|
2007-04-09 13:39:37 +00:00
|
|
|
bool list_stop_handler(void);
|
2005-04-06 11:12:22 +00:00
|
|
|
void car_adapter_mode_init(void);
|
2005-09-02 05:39:09 +00:00
|
|
|
extern int show_logo(void);
|
2004-07-05 11:15:50 +00:00
|
|
|
|
2006-11-15 20:26:33 +00:00
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
/* Return current ReplayGain mode a file should have (REPLAYGAIN_TRACK or
|
|
|
|
* REPLAYGAIN_ALBUM) if ReplayGain processing is enabled, or -1 if no
|
|
|
|
* information present.
|
|
|
|
*/
|
|
|
|
int get_replaygain_mode(bool have_track_gain, bool have_album_gain);
|
|
|
|
#endif
|
|
|
|
|
2007-03-30 21:54:48 +00:00
|
|
|
#ifdef BOOTFILE
|
2007-08-01 20:21:34 +00:00
|
|
|
#if !defined(USB_NONE) && !defined(USB_IPODSTYLE)
|
2007-03-30 21:54:48 +00:00
|
|
|
void check_bootfile(bool do_rolo);
|
|
|
|
#endif
|
2007-03-30 23:36:10 +00:00
|
|
|
#endif
|
2007-03-30 21:54:48 +00:00
|
|
|
|
2007-05-30 17:57:32 +00:00
|
|
|
/* check range, set volume and save settings */
|
|
|
|
void setvol(void);
|
|
|
|
|
2007-06-17 21:16:34 +00:00
|
|
|
#ifdef HAVE_LCD_COLOR
|
|
|
|
int hex_to_rgb(const char* hex);
|
|
|
|
#endif
|
|
|
|
|
2007-11-18 14:12:01 +00:00
|
|
|
char* strrsplt(char* str, int c);
|
|
|
|
|
2007-11-21 21:28:27 +00:00
|
|
|
bool file_exists(const char *file);
|
|
|
|
bool dir_exists(const char *path);
|
|
|
|
|
|
|
|
|
2006-11-06 18:07:30 +00:00
|
|
|
#endif /* MISC_H */
|