1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Daniel Stenberg
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 ****************************************************************************/
26 #include "string-extra.h"
31 #include "filefuncs.h"
35 #include "lcd-remote.h"
37 #include "timefuncs.h"
39 #include "usb_screen.h"
42 #include "mp3_playback.h"
45 #include "ata_idle_notify.h"
48 #include "powermgmt.h"
49 #include "backlight.h"
54 #include "scrobbler.h"
64 #ifdef IPOD_ACCESSORY_PROTOCOL
68 #if (CONFIG_STORAGE & STORAGE_MMC)
72 #include "eeprom_settings.h"
73 #if defined(HAVE_RECORDING) && !defined(__PCTOOL__)
74 #include "recording.h"
76 #if defined(HAVE_LCD_BITMAP) && !defined(__PCTOOL__)
79 #endif /* End HAVE_LCD_BITMAP */
85 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF) \
86 || defined(HAVE_HOTSWAP_STORAGE_AS_MAIN)
91 /* units used with output_dyn_value */
92 const unsigned char * const byte_units
[] =
100 const unsigned char * const * const kbyte_units
= &byte_units
[1];
102 /* Format a large-range value for output, using the appropriate unit so that
103 * the displayed value is in the range 1 <= display < 1000 (1024 for "binary"
104 * units) if possible, and 3 significant digits are shown. If a buffer is
105 * given, the result is snprintf()'d into that buffer, otherwise the result is
107 char *output_dyn_value(char *buf
, int buf_size
, int value
,
108 const unsigned char * const *units
, bool bin_scale
)
110 int scale
= bin_scale
? 1024 : 1000;
115 while (value
>= scale
)
117 fraction
= value
% scale
;
122 fraction
= fraction
* 1000 / 1024;
124 if (value
>= 100 || !unit_no
)
126 else if (value
>= 10)
127 snprintf(tbuf
, sizeof(tbuf
), "%01d", fraction
/ 100);
129 snprintf(tbuf
, sizeof(tbuf
), "%02d", fraction
/ 10);
134 snprintf(buf
, buf_size
, "%d%s%s%s", value
, str(LANG_POINT
),
135 tbuf
, P2STR(units
[unit_no
]));
137 snprintf(buf
, buf_size
, "%d%s", value
, P2STR(units
[unit_no
]));
141 talk_fractional(tbuf
, value
, P2ID(units
[unit_no
]));
146 /* Ask the user if they really want to erase the current dynamic playlist
147 * returns true if the playlist should be replaced */
148 bool warn_on_pl_erase(void)
150 if (global_settings
.warnon_erase_dynplaylist
&&
151 !global_settings
.party_mode
&&
152 playlist_modified(NULL
))
154 static const char *lines
[] =
155 {ID2P(LANG_WARN_ERASEDYNPLAYLIST_PROMPT
)};
156 static const struct text_message message
={lines
, 1};
158 return (gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
);
165 /* Performance optimized version of the read_line() (see below) function. */
166 int fast_readline(int fd
, char *buf
, int buf_size
, void *parameters
,
167 int (*callback
)(int n
, const char *buf
, void *parameters
))
177 rc
= read(fd
, &buf
[pos
], buf_size
- pos
- 1);
181 if ( (p
= strchr(buf
, '\r')) != NULL
)
189 if ( (p
= strchr(p
, '\n')) != NULL
)
195 rc
= callback(count
, buf
, parameters
);
202 pos
= buf_size
- ((long)next
- (long)buf
) - 1;
203 memmove(buf
, next
, pos
);
212 /* parse a line from a configuration file. the line format is:
216 Any whitespace before setting name or value (after ':') is ignored.
217 A # as first non-whitespace character discards the whole line.
218 Function sets pointers to null-terminated setting name and value.
219 Returns false if no valid config entry was found.
222 bool settings_parseline(char* line
, char** name
, char** value
)
226 line
= skip_whitespace(line
);
231 ptr
= strchr(line
, ':');
238 ptr
= skip_whitespace(ptr
);
243 static void system_flush(void)
245 scrobbler_shutdown();
248 call_storage_idle_notifys(true); /*doesnt work on usb and shutdown from ata thread */
251 static void system_restore(void)
257 static bool clean_shutdown(void (*callback
)(void *), void *parameter
)
259 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
262 bookmark_autobookmark(false);
263 call_storage_idle_notifys(true);
268 scrobbler_poweroff();
270 #if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING)
271 if(!charger_inserted())
274 bool batt_safe
= battery_level_safe();
275 int audio_stat
= audio_status();
279 screens
[i
].clear_display();
286 if (!tagcache_prepare_shutdown())
289 splash(HZ
, ID2P(LANG_TAGCACHE_BUSY
));
293 if (battery_level() > 10)
294 splash(0, str(LANG_SHUTTINGDOWN
));
297 msg_id
= LANG_WARNING_BATTERY_LOW
;
298 splashf(0, "%s %s", str(LANG_WARNING_BATTERY_LOW
),
299 str(LANG_SHUTTINGDOWN
));
304 msg_id
= LANG_WARNING_BATTERY_EMPTY
;
305 splashf(0, "%s %s", str(LANG_WARNING_BATTERY_EMPTY
),
306 str(LANG_SHUTTINGDOWN
));
309 if (global_settings
.fade_on_stop
310 && (audio_stat
& AUDIO_STATUS_PLAY
))
315 if (batt_safe
) /* do not save on critical battery */
317 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
318 if (audio_stat
& AUDIO_STATUS_RECORD
)
320 rec_command(RECORDING_CMD_STOP
);
321 /* wait for stop to complete */
322 while (audio_status() & AUDIO_STATUS_RECORD
)
326 bookmark_autobookmark(false);
328 /* audio_stop_recording == audio_stop for HWCODEC */
331 if (callback
!= NULL
)
334 #if CONFIG_CODEC != SWCODEC
335 /* wait for audio_stop or audio_stop_recording to complete */
336 while (audio_status())
340 #if defined(HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
341 audio_close_recording();
344 if(global_settings
.talk_menu
)
346 bool enqueue
= false;
349 talk_id(msg_id
, enqueue
);
352 talk_id(LANG_SHUTTINGDOWN
, enqueue
);
353 #if CONFIG_CODEC == SWCODEC
359 #ifdef HAVE_EEPROM_SETTINGS
360 if (firmware_settings
.initialized
)
362 firmware_settings
.disk_clean
= true;
363 firmware_settings
.bl_version
= 0;
364 eeprom_settings_store();
379 bool list_stop_handler(void)
387 /* Stop the music if it is playing */
390 if (!global_settings
.party_mode
)
392 if (global_settings
.fade_on_stop
)
394 bookmark_autobookmark(true);
396 ret
= true; /* bookmarking can make a refresh necessary */
400 #if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
403 if (charger_inserted())
406 shutdown_screen(); /* won't return if shutdown actually happens */
408 ret
= true; /* screen is dirty, caller needs to refresh */
411 #ifndef HAVE_POWEROFF_WHILE_CHARGING
413 static long last_off
= 0;
415 if (TIME_BEFORE(current_tick
, last_off
+ HZ
/2))
417 if (charger_inserted())
420 ret
= true; /* screen is dirty, caller needs to refresh */
423 last_off
= current_tick
;
426 #endif /* CONFIG_CHARGING */
431 static bool waiting_to_resume_play
= false;
432 static long play_resume_tick
;
434 static void car_adapter_mode_processing(bool inserted
)
436 if (global_settings
.car_adapter_mode
)
441 * Just got plugged in, delay & resume if we were playing
443 if (audio_status() & AUDIO_STATUS_PAUSE
)
445 /* delay resume a bit while the engine is cranking */
446 play_resume_tick
= current_tick
+ HZ
*5;
447 waiting_to_resume_play
= true;
453 * Just got unplugged, pause if playing
455 if ((audio_status() & AUDIO_STATUS_PLAY
) &&
456 !(audio_status() & AUDIO_STATUS_PAUSE
))
458 if (global_settings
.fade_on_stop
)
463 waiting_to_resume_play
= false;
468 static void car_adapter_tick(void)
470 if (waiting_to_resume_play
)
472 if (TIME_AFTER(current_tick
, play_resume_tick
))
474 if (audio_status() & AUDIO_STATUS_PAUSE
)
476 queue_broadcast(SYS_CAR_ADAPTER_RESUME
, 0);
478 waiting_to_resume_play
= false;
483 void car_adapter_mode_init(void)
485 tick_add_task(car_adapter_tick
);
489 #ifdef HAVE_HEADPHONE_DETECTION
490 static void unplug_change(bool inserted
)
492 static bool headphone_caused_pause
= false;
494 if (global_settings
.unplug_mode
)
496 int audio_stat
= audio_status();
499 if ((audio_stat
& AUDIO_STATUS_PLAY
) &&
500 headphone_caused_pause
&&
501 global_settings
.unplug_mode
> 1 )
504 headphone_caused_pause
= false;
506 if ((audio_stat
& AUDIO_STATUS_PLAY
) &&
507 !(audio_stat
& AUDIO_STATUS_PAUSE
))
509 headphone_caused_pause
= true;
512 if (global_settings
.unplug_rw
)
514 if (audio_current_track()->elapsed
>
515 (unsigned long)(global_settings
.unplug_rw
*1000))
516 audio_ff_rewind(audio_current_track()->elapsed
-
517 (global_settings
.unplug_rw
*1000));
527 long default_event_handler_ex(long event
, void (*callback
)(void *), void *parameter
)
529 #if CONFIG_PLATFORM & PLATFORM_ANDROID
530 static bool resume
= false;
535 case SYS_BATTERY_UPDATE
:
536 if(global_settings
.talk_battery_level
)
538 talk_ids(true, VOICE_PAUSE
, VOICE_PAUSE
,
540 TALK_ID(battery_level(), UNIT_PERCENT
),
542 talk_force_enqueue_next();
545 case SYS_USB_CONNECTED
:
546 if (callback
!= NULL
)
548 #if (CONFIG_STORAGE & STORAGE_MMC)
549 if (!mmc_touched() ||
550 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
555 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
556 check_bootfile(false); /* gets initial size */
559 gui_usb_screen_run(false);
561 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
562 check_bootfile(true);
567 return SYS_USB_CONNECTED
;
570 if (!clean_shutdown(callback
, parameter
))
574 case SYS_CHARGER_CONNECTED
:
575 car_adapter_mode_processing(true);
576 return SYS_CHARGER_CONNECTED
;
578 case SYS_CHARGER_DISCONNECTED
:
579 car_adapter_mode_processing(false);
580 /*reset rockbox battery runtime*/
581 global_status
.runtime
= 0;
582 return SYS_CHARGER_DISCONNECTED
;
584 case SYS_CAR_ADAPTER_RESUME
:
586 return SYS_CAR_ADAPTER_RESUME
;
588 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
591 /* simple sanity: assume rockbox is on the first hotswappable
592 * driver, abort out if that one isn't inserted */
594 for (i
= 0; i
< NUM_DRIVES
; i
++)
596 if (storage_removable(i
) && !storage_present(i
))
597 return SYS_FS_CHANGED
;
600 check_bootfile(true); /* state gotten in main.c:init() */
603 return SYS_FS_CHANGED
;
605 #ifdef HAVE_HEADPHONE_DETECTION
606 case SYS_PHONE_PLUGGED
:
608 return SYS_PHONE_PLUGGED
;
610 case SYS_PHONE_UNPLUGGED
:
611 unplug_change(false);
612 return SYS_PHONE_UNPLUGGED
;
614 #ifdef IPOD_ACCESSORY_PROTOCOL
615 case SYS_IAP_PERIODIC
:
617 return SYS_IAP_PERIODIC
;
618 case SYS_IAP_HANDLEPKT
:
620 return SYS_IAP_HANDLEPKT
;
622 #if CONFIG_PLATFORM & PLATFORM_ANDROID
623 /* stop playback if we receive a call */
624 case SYS_CALL_INCOMING
:
625 resume
= audio_status() == AUDIO_STATUS_PLAY
;
627 return SYS_CALL_INCOMING
;
628 /* resume playback if needed */
629 case SYS_CALL_HUNG_UP
:
630 if (resume
&& playlist_resume() != -1)
632 playlist_start(global_status
.resume_index
,
633 global_status
.resume_offset
);
636 return SYS_CALL_HUNG_UP
;
638 #ifdef HAVE_MULTIMEDIA_KEYS
639 /* multimedia keys on keyboards, headsets */
640 case BUTTON_MULTIMEDIA_PLAYPAUSE
:
642 int status
= audio_status();
643 if (status
& AUDIO_STATUS_PLAY
)
645 if (status
& AUDIO_STATUS_PAUSE
)
651 if (playlist_resume() != -1)
653 playlist_start(global_status
.resume_index
,
654 global_status
.resume_offset
);
658 case BUTTON_MULTIMEDIA_NEXT
:
661 case BUTTON_MULTIMEDIA_PREV
:
664 case BUTTON_MULTIMEDIA_STOP
:
667 case BUTTON_MULTIMEDIA_REW
:
668 case BUTTON_MULTIMEDIA_FFWD
:
669 /* not supported yet, needs to be done in the WPS */
676 long default_event_handler(long event
)
678 return default_event_handler_ex(event
, NULL
, NULL
);
681 int show_logo( void )
683 #ifdef HAVE_LCD_BITMAP
687 snprintf(version
, sizeof(version
), "Ver. %s", rbversion
);
690 #if defined(SANSA_CLIP) || defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS)
691 /* display the logo in the blue area of the screen */
692 lcd_setfont(FONT_SYSFIXED
);
693 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
694 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
695 0, (unsigned char *)version
);
696 lcd_bitmap(rockboxlogo
, 0, 16, BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
698 lcd_bitmap(rockboxlogo
, 0, 10, BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
699 lcd_setfont(FONT_SYSFIXED
);
700 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
701 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
702 LCD_HEIGHT
-font_h
, (unsigned char *)version
);
704 lcd_setfont(FONT_UI
);
707 char *rockbox
= " ROCKbox!";
710 lcd_double_height(true);
711 lcd_puts(0, 0, rockbox
);
712 lcd_puts_scroll(0, 1, rbversion
);
716 #ifdef HAVE_REMOTE_LCD
717 lcd_remote_clear_display();
718 lcd_remote_bitmap(remote_rockboxlogo
, 0, 10, BMPWIDTH_remote_rockboxlogo
,
719 BMPHEIGHT_remote_rockboxlogo
);
720 lcd_remote_setfont(FONT_SYSFIXED
);
721 lcd_remote_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
722 lcd_remote_putsxy((LCD_REMOTE_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
723 LCD_REMOTE_HEIGHT
-font_h
, (unsigned char *)version
);
724 lcd_remote_setfont(FONT_UI
);
732 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF) || defined(HAVE_HOTSWAP_STORAGE_AS_MAIN)
734 memorize/compare details about the BOOTFILE
735 we don't use dircache because it may not be up to date after
736 USB disconnect (scanning in the background)
738 void check_bootfile(bool do_rolo
)
740 static unsigned short wrtdate
= 0;
741 static unsigned short wrttime
= 0;
743 struct dirent
* entry
= NULL
;
745 /* 1. open BOOTDIR and find the BOOTFILE dir entry */
746 dir
= opendir(BOOTDIR
);
748 if(!dir
) return; /* do we want an error splash? */
750 /* loop all files in BOOTDIR */
751 while(0 != (entry
= readdir(dir
)))
753 if(!strcasecmp(entry
->d_name
, BOOTFILE
))
755 struct dirinfo info
= dir_get_info(dir
, entry
);
756 /* found the bootfile */
757 if(wrtdate
&& do_rolo
)
759 if((info
.wrtdate
!= wrtdate
) ||
760 (info
.wrttime
!= wrttime
))
762 static const char *lines
[] = { ID2P(LANG_BOOT_CHANGED
),
763 ID2P(LANG_REBOOT_NOW
) };
764 static const struct text_message message
={ lines
, 2 };
765 button_clear_queue(); /* Empty the keyboard buffer */
766 if(gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
)
767 rolo_load(BOOTDIR
"/" BOOTFILE
);
770 wrtdate
= info
.wrtdate
;
771 wrttime
= info
.wrttime
;
779 /* check range, set volume and save settings */
782 const int min_vol
= sound_min(SOUND_VOLUME
);
783 const int max_vol
= sound_max(SOUND_VOLUME
);
784 if (global_settings
.volume
< min_vol
)
785 global_settings
.volume
= min_vol
;
786 if (global_settings
.volume
> max_vol
)
787 global_settings
.volume
= max_vol
;
788 sound_set_volume(global_settings
.volume
);
789 global_status
.last_volume_change
= current_tick
;
793 char* strrsplt(char* str
, int c
)
795 char* s
= strrchr(str
, c
);
810 * removes the extension of filename (if it doesn't start with a .)
811 * puts the result in buffer
813 char *strip_extension(char* buffer
, int buffer_size
, const char *filename
)
815 char *dot
= strrchr(filename
, '.');
818 if (buffer_size
<= 0)
823 buffer_size
--; /* Make room for end nil */
825 if (dot
!= 0 && filename
[0] != '.')
827 len
= dot
- filename
;
828 len
= MIN(len
, buffer_size
);
835 strlcpy(buffer
, filename
, len
+ 1);
839 #endif /* !defined(__PCTOOL__) */
841 /* Read (up to) a line of text from fd into buffer and return number of bytes
842 * read (which may be larger than the number of bytes stored in buffer). If
843 * an error occurs, -1 is returned (and buffer contains whatever could be
844 * read). A line is terminated by a LF char. Neither LF nor CR chars are
847 int read_line(int fd
, char* buffer
, int buffer_size
)
854 while (count
< buffer_size
)
858 if (1 != read(fd
, &c
, 1))
872 buffer
[MIN(count
, buffer_size
- 1)] = 0;
874 return errno
? -1 : num_read
;
878 char* skip_whitespace(char* const str
)
888 /* Format time into buf.
890 * buf - buffer to format to.
891 * buf_size - size of buffer.
892 * t - time to format, in milliseconds.
894 void format_time(char* buf
, int buf_size
, long t
)
898 snprintf(buf
, buf_size
, "%d:%02d",
899 (int) (t
/ 60000), (int) (t
% 60000 / 1000));
903 snprintf(buf
, buf_size
, "%d:%02d:%02d",
904 (int) (t
/ 3600000), (int) (t
% 3600000 / 60000),
905 (int) (t
% 60000 / 1000));
910 /** Open a UTF-8 file and set file descriptor to first byte after BOM.
911 * If no BOM is present this behaves like open().
912 * If the file is opened for writing and O_TRUNC is set, write a BOM to
913 * the opened file and leave the file pointer set after the BOM.
915 #define BOM "\xef\xbb\xbf"
918 int open_utf8(const char* pathname
, int flags
)
921 unsigned char bom
[BOM_SIZE
];
923 fd
= open(pathname
, flags
, 0666);
927 if(flags
& (O_TRUNC
| O_WRONLY
))
929 write(fd
, BOM
, BOM_SIZE
);
933 read(fd
, bom
, BOM_SIZE
);
935 if(memcmp(bom
, BOM
, BOM_SIZE
))
936 lseek(fd
, 0, SEEK_SET
);
942 #ifdef HAVE_LCD_COLOR
944 * Helper function to convert a string of 6 hex digits to a native colour
947 static int hex2dec(int c
)
949 return (((c
) >= '0' && ((c
) <= '9')) ? (c
) - '0' :
950 (toupper(c
)) - 'A' + 10);
953 int hex_to_rgb(const char* hex
, int* color
)
955 int red
, green
, blue
;
958 while ((i
< 6) && (isxdigit(hex
[i
])))
964 red
= (hex2dec(hex
[0]) << 4) | hex2dec(hex
[1]);
965 green
= (hex2dec(hex
[2]) << 4) | hex2dec(hex
[3]);
966 blue
= (hex2dec(hex
[4]) << 4) | hex2dec(hex
[5]);
968 *color
= LCD_RGBPACK(red
,green
,blue
);
972 #endif /* HAVE_LCD_COLOR */
974 #ifdef HAVE_LCD_BITMAP
975 /* '0'-'3' are ASCII 0x30 to 0x33 */
976 #define is0123(x) (((x) & 0xfc) == 0x30)
977 #if !defined(__PCTOOL__) || defined(CHECKWPS)
978 bool parse_color(enum screen_type screen
, char *text
, int *value
)
980 (void)text
; (void)value
; /* silence warnings on mono bitmap */
983 #ifdef HAVE_LCD_COLOR
984 if (screens
[screen
].depth
> 2)
986 if (hex_to_rgb(text
, value
) < 0)
993 #if LCD_DEPTH == 2 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH == 2)
994 if (screens
[screen
].depth
== 2)
996 if (text
[1] != '\0' || !is0123(*text
))
998 *value
= *text
- '0';
1004 #endif /* !defined(__PCTOOL__) || defined(CHECKWPS) */
1006 /* only used in USB HID and set_time screen */
1007 #if defined(USB_ENABLE_HID) || (CONFIG_RTC != 0)
1008 int clamp_value_wrap(int value
, int max
, int min
)