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;
534 case SYS_BATTERY_UPDATE
:
535 if(global_settings
.talk_battery_level
)
537 talk_ids(true, VOICE_PAUSE
, VOICE_PAUSE
,
539 TALK_ID(battery_level(), UNIT_PERCENT
),
541 talk_force_enqueue_next();
544 case SYS_USB_CONNECTED
:
545 if (callback
!= NULL
)
547 #if (CONFIG_STORAGE & STORAGE_MMC)
548 if (!mmc_touched() ||
549 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
554 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
555 check_bootfile(false); /* gets initial size */
558 gui_usb_screen_run(false);
560 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
561 check_bootfile(true);
566 return SYS_USB_CONNECTED
;
569 if (!clean_shutdown(callback
, parameter
))
573 case SYS_CHARGER_CONNECTED
:
574 car_adapter_mode_processing(true);
575 return SYS_CHARGER_CONNECTED
;
577 case SYS_CHARGER_DISCONNECTED
:
578 car_adapter_mode_processing(false);
579 /*reset rockbox battery runtime*/
580 global_status
.runtime
= 0;
581 return SYS_CHARGER_DISCONNECTED
;
583 case SYS_CAR_ADAPTER_RESUME
:
585 return SYS_CAR_ADAPTER_RESUME
;
587 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
590 /* simple sanity: assume rockbox is on the first hotswappable
591 * driver, abort out if that one isn't inserted */
593 for (i
= 0; i
< NUM_DRIVES
; i
++)
595 if (storage_removable(i
) && !storage_present(i
))
596 return SYS_FS_CHANGED
;
599 check_bootfile(true); /* state gotten in main.c:init() */
602 return SYS_FS_CHANGED
;
604 #ifdef HAVE_HEADPHONE_DETECTION
605 case SYS_PHONE_PLUGGED
:
607 return SYS_PHONE_PLUGGED
;
609 case SYS_PHONE_UNPLUGGED
:
610 unplug_change(false);
611 return SYS_PHONE_UNPLUGGED
;
613 #ifdef IPOD_ACCESSORY_PROTOCOL
614 case SYS_IAP_PERIODIC
:
616 return SYS_IAP_PERIODIC
;
617 case SYS_IAP_HANDLEPKT
:
619 return SYS_IAP_HANDLEPKT
;
621 #if CONFIG_PLATFORM & PLATFORM_ANDROID
622 /* stop playback if we receive a call */
623 case SYS_CALL_INCOMING
:
624 resume
= audio_status() == AUDIO_STATUS_PLAY
;
626 return SYS_CALL_INCOMING
;
627 /* resume playback if needed */
628 case SYS_CALL_HUNG_UP
:
629 if (resume
&& playlist_resume() != -1)
631 playlist_start(global_status
.resume_index
,
632 global_status
.resume_offset
);
635 return SYS_CALL_HUNG_UP
;
641 long default_event_handler(long event
)
643 return default_event_handler_ex(event
, NULL
, NULL
);
646 int show_logo( void )
648 #ifdef HAVE_LCD_BITMAP
652 snprintf(version
, sizeof(version
), "Ver. %s", rbversion
);
655 #if defined(SANSA_CLIP) || defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS)
656 /* display the logo in the blue area of the screen */
657 lcd_setfont(FONT_SYSFIXED
);
658 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
659 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
660 0, (unsigned char *)version
);
661 lcd_bitmap(rockboxlogo
, 0, 16, BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
663 lcd_bitmap(rockboxlogo
, 0, 10, BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
664 lcd_setfont(FONT_SYSFIXED
);
665 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
666 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
667 LCD_HEIGHT
-font_h
, (unsigned char *)version
);
669 lcd_setfont(FONT_UI
);
672 char *rockbox
= " ROCKbox!";
675 lcd_double_height(true);
676 lcd_puts(0, 0, rockbox
);
677 lcd_puts_scroll(0, 1, rbversion
);
681 #ifdef HAVE_REMOTE_LCD
682 lcd_remote_clear_display();
683 lcd_remote_bitmap(remote_rockboxlogo
, 0, 10, BMPWIDTH_remote_rockboxlogo
,
684 BMPHEIGHT_remote_rockboxlogo
);
685 lcd_remote_setfont(FONT_SYSFIXED
);
686 lcd_remote_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
687 lcd_remote_putsxy((LCD_REMOTE_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
688 LCD_REMOTE_HEIGHT
-font_h
, (unsigned char *)version
);
689 lcd_remote_setfont(FONT_UI
);
697 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF) || defined(HAVE_HOTSWAP_STORAGE_AS_MAIN)
699 memorize/compare details about the BOOTFILE
700 we don't use dircache because it may not be up to date after
701 USB disconnect (scanning in the background)
703 void check_bootfile(bool do_rolo
)
705 static unsigned short wrtdate
= 0;
706 static unsigned short wrttime
= 0;
708 struct dirent
* entry
= NULL
;
710 /* 1. open BOOTDIR and find the BOOTFILE dir entry */
711 dir
= opendir(BOOTDIR
);
713 if(!dir
) return; /* do we want an error splash? */
715 /* loop all files in BOOTDIR */
716 while(0 != (entry
= readdir(dir
)))
718 if(!strcasecmp(entry
->d_name
, BOOTFILE
))
720 struct dirinfo info
= dir_get_info(dir
, entry
);
721 /* found the bootfile */
722 if(wrtdate
&& do_rolo
)
724 if((info
.wrtdate
!= wrtdate
) ||
725 (info
.wrttime
!= wrttime
))
727 static const char *lines
[] = { ID2P(LANG_BOOT_CHANGED
),
728 ID2P(LANG_REBOOT_NOW
) };
729 static const struct text_message message
={ lines
, 2 };
730 button_clear_queue(); /* Empty the keyboard buffer */
731 if(gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
)
732 rolo_load(BOOTDIR
"/" BOOTFILE
);
735 wrtdate
= info
.wrtdate
;
736 wrttime
= info
.wrttime
;
744 /* check range, set volume and save settings */
747 const int min_vol
= sound_min(SOUND_VOLUME
);
748 const int max_vol
= sound_max(SOUND_VOLUME
);
749 if (global_settings
.volume
< min_vol
)
750 global_settings
.volume
= min_vol
;
751 if (global_settings
.volume
> max_vol
)
752 global_settings
.volume
= max_vol
;
753 sound_set_volume(global_settings
.volume
);
754 global_status
.last_volume_change
= current_tick
;
758 char* strrsplt(char* str
, int c
)
760 char* s
= strrchr(str
, c
);
775 * removes the extension of filename (if it doesn't start with a .)
776 * puts the result in buffer
778 char *strip_extension(char* buffer
, int buffer_size
, const char *filename
)
780 char *dot
= strrchr(filename
, '.');
783 if (buffer_size
<= 0)
788 buffer_size
--; /* Make room for end nil */
790 if (dot
!= 0 && filename
[0] != '.')
792 len
= dot
- filename
;
793 len
= MIN(len
, buffer_size
);
800 strlcpy(buffer
, filename
, len
+ 1);
804 #endif /* !defined(__PCTOOL__) */
806 /* Read (up to) a line of text from fd into buffer and return number of bytes
807 * read (which may be larger than the number of bytes stored in buffer). If
808 * an error occurs, -1 is returned (and buffer contains whatever could be
809 * read). A line is terminated by a LF char. Neither LF nor CR chars are
812 int read_line(int fd
, char* buffer
, int buffer_size
)
819 while (count
< buffer_size
)
823 if (1 != read(fd
, &c
, 1))
837 buffer
[MIN(count
, buffer_size
- 1)] = 0;
839 return errno
? -1 : num_read
;
843 char* skip_whitespace(char* const str
)
853 /* Format time into buf.
855 * buf - buffer to format to.
856 * buf_size - size of buffer.
857 * t - time to format, in milliseconds.
859 void format_time(char* buf
, int buf_size
, long t
)
863 snprintf(buf
, buf_size
, "%d:%02d",
864 (int) (t
/ 60000), (int) (t
% 60000 / 1000));
868 snprintf(buf
, buf_size
, "%d:%02d:%02d",
869 (int) (t
/ 3600000), (int) (t
% 3600000 / 60000),
870 (int) (t
% 60000 / 1000));
875 /** Open a UTF-8 file and set file descriptor to first byte after BOM.
876 * If no BOM is present this behaves like open().
877 * If the file is opened for writing and O_TRUNC is set, write a BOM to
878 * the opened file and leave the file pointer set after the BOM.
880 #define BOM "\xef\xbb\xbf"
883 int open_utf8(const char* pathname
, int flags
)
886 unsigned char bom
[BOM_SIZE
];
888 fd
= open(pathname
, flags
);
892 if(flags
& (O_TRUNC
| O_WRONLY
))
894 write(fd
, BOM
, BOM_SIZE
);
898 read(fd
, bom
, BOM_SIZE
);
900 if(memcmp(bom
, BOM
, BOM_SIZE
))
901 lseek(fd
, 0, SEEK_SET
);
907 #ifdef HAVE_LCD_COLOR
909 * Helper function to convert a string of 6 hex digits to a native colour
912 static int hex2dec(int c
)
914 return (((c
) >= '0' && ((c
) <= '9')) ? (c
) - '0' :
915 (toupper(c
)) - 'A' + 10);
918 int hex_to_rgb(const char* hex
, int* color
)
920 int red
, green
, blue
;
923 while ((i
< 6) && (isxdigit(hex
[i
])))
929 red
= (hex2dec(hex
[0]) << 4) | hex2dec(hex
[1]);
930 green
= (hex2dec(hex
[2]) << 4) | hex2dec(hex
[3]);
931 blue
= (hex2dec(hex
[4]) << 4) | hex2dec(hex
[5]);
933 *color
= LCD_RGBPACK(red
,green
,blue
);
937 #endif /* HAVE_LCD_COLOR */
939 #ifdef HAVE_LCD_BITMAP
940 /* '0'-'3' are ASCII 0x30 to 0x33 */
941 #define is0123(x) (((x) & 0xfc) == 0x30)
942 #if !defined(__PCTOOL__) || defined(CHECKWPS)
943 bool parse_color(enum screen_type screen
, char *text
, int *value
)
945 (void)text
; (void)value
; /* silence warnings on mono bitmap */
948 #ifdef HAVE_LCD_COLOR
949 if (screens
[screen
].depth
> 2)
951 if (hex_to_rgb(text
, value
) < 0)
958 #if LCD_DEPTH == 2 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH == 2)
959 if (screens
[screen
].depth
== 2)
961 if (text
[1] != '\0' || !is0123(*text
))
963 *value
= *text
- '0';
969 #endif /* !defined(__PCTOOL__) || defined(CHECKWPS) */
971 /* only used in USB HID and set_time screen */
972 #if defined(USB_ENABLE_HID) || (CONFIG_RTC != 0)
973 int clamp_value_wrap(int value
, int max
, int min
)