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"
32 #include "filefuncs.h"
36 #include "lcd-remote.h"
38 #include "timefuncs.h"
40 #include "usb_screen.h"
43 #include "mp3_playback.h"
46 #include "ata_idle_notify.h"
49 #include "powermgmt.h"
50 #include "backlight.h"
55 #include "scrobbler.h"
67 #ifdef IPOD_ACCESSORY_PROTOCOL
71 #if (CONFIG_STORAGE & STORAGE_MMC)
75 #include "eeprom_settings.h"
76 #if defined(HAVE_RECORDING) && !defined(__PCTOOL__)
77 #include "recording.h"
79 #if defined(HAVE_LCD_BITMAP) && !defined(__PCTOOL__)
82 #endif /* End HAVE_LCD_BITMAP */
86 #if CONFIG_CODEC == SWCODEC
87 #include "voice_thread.h"
91 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF) \
92 || defined(HAVE_HOTSWAP_STORAGE_AS_MAIN)
97 /* units used with output_dyn_value */
98 const unsigned char * const byte_units
[] =
106 const unsigned char * const * const kbyte_units
= &byte_units
[1];
108 /* Format a large-range value for output, using the appropriate unit so that
109 * the displayed value is in the range 1 <= display < 1000 (1024 for "binary"
110 * units) if possible, and 3 significant digits are shown. If a buffer is
111 * given, the result is snprintf()'d into that buffer, otherwise the result is
113 char *output_dyn_value(char *buf
, int buf_size
, int value
,
114 const unsigned char * const *units
, bool bin_scale
)
116 int scale
= bin_scale
? 1024 : 1000;
121 while (value
>= scale
)
123 fraction
= value
% scale
;
128 fraction
= fraction
* 1000 / 1024;
130 if (value
>= 100 || !unit_no
)
132 else if (value
>= 10)
133 snprintf(tbuf
, sizeof(tbuf
), "%01d", fraction
/ 100);
135 snprintf(tbuf
, sizeof(tbuf
), "%02d", fraction
/ 10);
140 snprintf(buf
, buf_size
, "%d%s%s%s", value
, str(LANG_POINT
),
141 tbuf
, P2STR(units
[unit_no
]));
143 snprintf(buf
, buf_size
, "%d%s", value
, P2STR(units
[unit_no
]));
147 talk_fractional(tbuf
, value
, P2ID(units
[unit_no
]));
152 /* Ask the user if they really want to erase the current dynamic playlist
153 * returns true if the playlist should be replaced */
154 bool warn_on_pl_erase(void)
156 if (global_settings
.warnon_erase_dynplaylist
&&
157 !global_settings
.party_mode
&&
158 playlist_modified(NULL
))
160 static const char *lines
[] =
161 {ID2P(LANG_WARN_ERASEDYNPLAYLIST_PROMPT
)};
162 static const struct text_message message
={lines
, 1};
164 return (gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
);
171 /* Performance optimized version of the read_line() (see below) function. */
172 int fast_readline(int fd
, char *buf
, int buf_size
, void *parameters
,
173 int (*callback
)(int n
, const char *buf
, void *parameters
))
183 rc
= read(fd
, &buf
[pos
], buf_size
- pos
- 1);
187 if ( (p
= strchr(buf
, '\r')) != NULL
)
195 if ( (p
= strchr(p
, '\n')) != NULL
)
201 rc
= callback(count
, buf
, parameters
);
208 pos
= buf_size
- ((long)next
- (long)buf
) - 1;
209 memmove(buf
, next
, pos
);
218 /* parse a line from a configuration file. the line format is:
222 Any whitespace before setting name or value (after ':') is ignored.
223 A # as first non-whitespace character discards the whole line.
224 Function sets pointers to null-terminated setting name and value.
225 Returns false if no valid config entry was found.
228 bool settings_parseline(char* line
, char** name
, char** value
)
232 line
= skip_whitespace(line
);
237 ptr
= strchr(line
, ':');
244 ptr
= skip_whitespace(ptr
);
249 static void system_flush(void)
251 scrobbler_shutdown();
254 call_storage_idle_notifys(true); /*doesnt work on usb and shutdown from ata thread */
257 static void system_restore(void)
263 static bool clean_shutdown(void (*callback
)(void *), void *parameter
)
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();
378 bool list_stop_handler(void)
386 /* Stop the music if it is playing */
389 if (!global_settings
.party_mode
)
391 if (global_settings
.fade_on_stop
)
393 bookmark_autobookmark(true);
395 ret
= true; /* bookmarking can make a refresh necessary */
399 #if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
402 if (charger_inserted())
405 shutdown_screen(); /* won't return if shutdown actually happens */
407 ret
= true; /* screen is dirty, caller needs to refresh */
410 #ifndef HAVE_POWEROFF_WHILE_CHARGING
412 static long last_off
= 0;
414 if (TIME_BEFORE(current_tick
, last_off
+ HZ
/2))
416 if (charger_inserted())
419 ret
= true; /* screen is dirty, caller needs to refresh */
422 last_off
= current_tick
;
425 #endif /* CONFIG_CHARGING */
430 static bool waiting_to_resume_play
= false;
431 static long play_resume_tick
;
433 static void car_adapter_mode_processing(bool inserted
)
435 if (global_settings
.car_adapter_mode
)
440 * Just got plugged in, delay & resume if we were playing
442 if (audio_status() & AUDIO_STATUS_PAUSE
)
444 /* delay resume a bit while the engine is cranking */
445 play_resume_tick
= current_tick
+ HZ
*5;
446 waiting_to_resume_play
= true;
452 * Just got unplugged, pause if playing
454 if ((audio_status() & AUDIO_STATUS_PLAY
) &&
455 !(audio_status() & AUDIO_STATUS_PAUSE
))
457 pause_action(true, true);
459 waiting_to_resume_play
= false;
464 static void car_adapter_tick(void)
466 if (waiting_to_resume_play
)
468 if (TIME_AFTER(current_tick
, play_resume_tick
))
470 if (audio_status() & AUDIO_STATUS_PAUSE
)
472 queue_broadcast(SYS_CAR_ADAPTER_RESUME
, 0);
474 waiting_to_resume_play
= false;
479 void car_adapter_mode_init(void)
481 tick_add_task(car_adapter_tick
);
485 #ifdef HAVE_HEADPHONE_DETECTION
486 static void unplug_change(bool inserted
)
488 static bool headphone_caused_pause
= false;
490 if (global_settings
.unplug_mode
)
492 int audio_stat
= audio_status();
496 if ((audio_stat
& AUDIO_STATUS_PLAY
) &&
497 headphone_caused_pause
&&
498 global_settings
.unplug_mode
> 1 )
499 unpause_action(true, true);
500 headphone_caused_pause
= false;
502 if ((audio_stat
& AUDIO_STATUS_PLAY
) &&
503 !(audio_stat
& AUDIO_STATUS_PAUSE
))
505 headphone_caused_pause
= true;
506 pause_action(false, false);
513 long default_event_handler_ex(long event
, void (*callback
)(void *), void *parameter
)
515 #if CONFIG_PLATFORM & (PLATFORM_ANDROID|PLATFORM_MAEMO)
516 static bool resume
= false;
521 case SYS_BATTERY_UPDATE
:
522 if(global_settings
.talk_battery_level
)
524 talk_ids(true, VOICE_PAUSE
, VOICE_PAUSE
,
526 TALK_ID(battery_level(), UNIT_PERCENT
),
528 talk_force_enqueue_next();
531 case SYS_USB_CONNECTED
:
532 if (callback
!= NULL
)
534 #if (CONFIG_STORAGE & STORAGE_MMC)
535 if (!mmc_touched() ||
536 (mmc_remove_request() == SYS_HOTSWAP_EXTRACTED
))
541 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
542 check_bootfile(false); /* gets initial size */
545 gui_usb_screen_run(false);
547 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF)
548 check_bootfile(true);
553 return SYS_USB_CONNECTED
;
556 if (!clean_shutdown(callback
, parameter
))
560 case SYS_CHARGER_CONNECTED
:
561 car_adapter_mode_processing(true);
562 return SYS_CHARGER_CONNECTED
;
564 case SYS_CHARGER_DISCONNECTED
:
565 car_adapter_mode_processing(false);
566 /*reset rockbox battery runtime*/
567 global_status
.runtime
= 0;
568 return SYS_CHARGER_DISCONNECTED
;
570 case SYS_CAR_ADAPTER_RESUME
:
571 unpause_action(true, true);
572 return SYS_CAR_ADAPTER_RESUME
;
574 #ifdef HAVE_HOTSWAP_STORAGE_AS_MAIN
577 /* simple sanity: assume rockbox is on the first hotswappable
578 * driver, abort out if that one isn't inserted */
580 for (i
= 0; i
< NUM_DRIVES
; i
++)
582 if (storage_removable(i
) && !storage_present(i
))
583 return SYS_FS_CHANGED
;
586 check_bootfile(true); /* state gotten in main.c:init() */
589 return SYS_FS_CHANGED
;
591 #ifdef HAVE_HEADPHONE_DETECTION
592 case SYS_PHONE_PLUGGED
:
594 return SYS_PHONE_PLUGGED
;
596 case SYS_PHONE_UNPLUGGED
:
597 unplug_change(false);
598 return SYS_PHONE_UNPLUGGED
;
600 #ifdef IPOD_ACCESSORY_PROTOCOL
601 case SYS_IAP_PERIODIC
:
603 return SYS_IAP_PERIODIC
;
604 case SYS_IAP_HANDLEPKT
:
606 return SYS_IAP_HANDLEPKT
;
608 #if CONFIG_PLATFORM & (PLATFORM_ANDROID|PLATFORM_MAEMO)
609 /* stop playback if we receive a call */
610 case SYS_CALL_INCOMING
:
611 resume
= audio_status() == AUDIO_STATUS_PLAY
;
613 return SYS_CALL_INCOMING
;
614 /* resume playback if needed */
615 case SYS_CALL_HUNG_UP
:
616 if (resume
&& playlist_resume() != -1)
618 playlist_start(global_status
.resume_index
,
619 global_status
.resume_offset
);
622 return SYS_CALL_HUNG_UP
;
624 #if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(PLATFORM_HAS_VOLUME_CHANGE)
625 case SYS_VOLUME_CHANGED
:
627 static bool firstvolume
= true;
628 int volume
= hosted_get_volume();
629 DEBUGF("SYS_VOLUME_CHANGED: %d\n", volume
);
630 if (global_settings
.volume
!= volume
) {
631 global_settings
.volume
= volume
;
640 #ifdef HAVE_MULTIMEDIA_KEYS
641 /* multimedia keys on keyboards, headsets */
642 case BUTTON_MULTIMEDIA_PLAYPAUSE
:
644 int status
= audio_status();
645 if (status
& AUDIO_STATUS_PLAY
)
647 if (status
& AUDIO_STATUS_PAUSE
)
648 unpause_action(true, true);
650 pause_action(true, true);
653 if (playlist_resume() != -1)
655 playlist_start(global_status
.resume_index
,
656 global_status
.resume_offset
);
660 case BUTTON_MULTIMEDIA_NEXT
:
663 case BUTTON_MULTIMEDIA_PREV
:
666 case BUTTON_MULTIMEDIA_STOP
:
669 case BUTTON_MULTIMEDIA_REW
:
670 case BUTTON_MULTIMEDIA_FFWD
:
671 /* not supported yet, needs to be done in the WPS */
678 long default_event_handler(long event
)
680 return default_event_handler_ex(event
, NULL
, NULL
);
683 int show_logo( void )
685 #ifdef HAVE_LCD_BITMAP
689 snprintf(version
, sizeof(version
), "Ver. %s", rbversion
);
692 #if defined(SANSA_CLIP) || defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS)
693 /* display the logo in the blue area of the screen */
694 lcd_setfont(FONT_SYSFIXED
);
695 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
696 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
697 0, (unsigned char *)version
);
698 lcd_bitmap(rockboxlogo
, (LCD_WIDTH
- BMPWIDTH_rockboxlogo
) / 2, 16,
699 BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
701 lcd_bitmap(rockboxlogo
, (LCD_WIDTH
- BMPWIDTH_rockboxlogo
) / 2, 10,
702 BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
703 lcd_setfont(FONT_SYSFIXED
);
704 lcd_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
705 lcd_putsxy((LCD_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
706 LCD_HEIGHT
-font_h
, (unsigned char *)version
);
708 lcd_setfont(FONT_UI
);
711 char *rockbox
= " ROCKbox!";
714 lcd_double_height(true);
715 lcd_puts(0, 0, rockbox
);
716 lcd_puts_scroll(0, 1, rbversion
);
720 #ifdef HAVE_REMOTE_LCD
721 lcd_remote_clear_display();
722 lcd_remote_bitmap(remote_rockboxlogo
, 0, 10, BMPWIDTH_remote_rockboxlogo
,
723 BMPHEIGHT_remote_rockboxlogo
);
724 lcd_remote_setfont(FONT_SYSFIXED
);
725 lcd_remote_getstringsize((unsigned char *)"A", &font_w
, &font_h
);
726 lcd_remote_putsxy((LCD_REMOTE_WIDTH
/2) - ((strlen(version
)*font_w
)/2),
727 LCD_REMOTE_HEIGHT
-font_h
, (unsigned char *)version
);
728 lcd_remote_setfont(FONT_UI
);
736 #if !defined(USB_NONE) && !defined(USB_HANDLED_BY_OF) || defined(HAVE_HOTSWAP_STORAGE_AS_MAIN)
738 memorize/compare details about the BOOTFILE
739 we don't use dircache because it may not be up to date after
740 USB disconnect (scanning in the background)
742 void check_bootfile(bool do_rolo
)
744 static unsigned short wrtdate
= 0;
745 static unsigned short wrttime
= 0;
747 struct dirent
* entry
= NULL
;
749 /* 1. open BOOTDIR and find the BOOTFILE dir entry */
750 dir
= opendir(BOOTDIR
);
752 if(!dir
) return; /* do we want an error splash? */
754 /* loop all files in BOOTDIR */
755 while(0 != (entry
= readdir(dir
)))
757 if(!strcasecmp(entry
->d_name
, BOOTFILE
))
759 struct dirinfo info
= dir_get_info(dir
, entry
);
760 /* found the bootfile */
761 if(wrtdate
&& do_rolo
)
763 if((info
.wrtdate
!= wrtdate
) ||
764 (info
.wrttime
!= wrttime
))
766 static const char *lines
[] = { ID2P(LANG_BOOT_CHANGED
),
767 ID2P(LANG_REBOOT_NOW
) };
768 static const struct text_message message
={ lines
, 2 };
769 button_clear_queue(); /* Empty the keyboard buffer */
770 if(gui_syncyesno_run(&message
, NULL
, NULL
) == YESNO_YES
)
771 rolo_load(BOOTDIR
"/" BOOTFILE
);
774 wrtdate
= info
.wrtdate
;
775 wrttime
= info
.wrttime
;
783 /* check range, set volume and save settings */
786 const int min_vol
= sound_min(SOUND_VOLUME
);
787 const int max_vol
= sound_max(SOUND_VOLUME
);
788 if (global_settings
.volume
< min_vol
)
789 global_settings
.volume
= min_vol
;
790 if (global_settings
.volume
> max_vol
)
791 global_settings
.volume
= max_vol
;
792 sound_set_volume(global_settings
.volume
);
793 global_status
.last_volume_change
= current_tick
;
797 char* strrsplt(char* str
, int c
)
799 char* s
= strrchr(str
, c
);
814 * removes the extension of filename (if it doesn't start with a .)
815 * puts the result in buffer
817 char *strip_extension(char* buffer
, int buffer_size
, const char *filename
)
819 char *dot
= strrchr(filename
, '.');
822 if (buffer_size
<= 0)
827 buffer_size
--; /* Make room for end nil */
829 if (dot
!= 0 && filename
[0] != '.')
831 len
= dot
- filename
;
832 len
= MIN(len
, buffer_size
);
839 strlcpy(buffer
, filename
, len
+ 1);
843 #endif /* !defined(__PCTOOL__) */
845 /* Read (up to) a line of text from fd into buffer and return number of bytes
846 * read (which may be larger than the number of bytes stored in buffer). If
847 * an error occurs, -1 is returned (and buffer contains whatever could be
848 * read). A line is terminated by a LF char. Neither LF nor CR chars are
851 int read_line(int fd
, char* buffer
, int buffer_size
)
858 while (count
< buffer_size
)
862 if (1 != read(fd
, &c
, 1))
876 buffer
[MIN(count
, buffer_size
- 1)] = 0;
878 return errno
? -1 : num_read
;
882 char* skip_whitespace(char* const str
)
892 /* Format time into buf.
894 * buf - buffer to format to.
895 * buf_size - size of buffer.
896 * t - time to format, in milliseconds.
898 void format_time(char* buf
, int buf_size
, long t
)
900 int const time
= abs(t
/ 1000);
901 int const hours
= time
/ 3600;
902 int const minutes
= time
/ 60 - hours
* 60;
903 int const seconds
= time
% 60;
904 const char * const sign
= &"-"[t
< 0 ? 0 : 1];
908 snprintf(buf
, buf_size
, "%s%d:%02d", sign
, minutes
, seconds
);
912 snprintf(buf
, buf_size
, "%s%d:%02d:%02d", sign
, hours
, minutes
,
918 /** Open a UTF-8 file and set file descriptor to first byte after BOM.
919 * If no BOM is present this behaves like open().
920 * If the file is opened for writing and O_TRUNC is set, write a BOM to
921 * the opened file and leave the file pointer set after the BOM.
923 #define BOM "\xef\xbb\xbf"
926 int open_utf8(const char* pathname
, int flags
)
929 unsigned char bom
[BOM_SIZE
];
931 fd
= open(pathname
, flags
, 0666);
935 if(flags
& (O_TRUNC
| O_WRONLY
))
937 write(fd
, BOM
, BOM_SIZE
);
941 read(fd
, bom
, BOM_SIZE
);
943 if(memcmp(bom
, BOM
, BOM_SIZE
))
944 lseek(fd
, 0, SEEK_SET
);
950 #ifdef HAVE_LCD_COLOR
952 * Helper function to convert a string of 6 hex digits to a native colour
955 static int hex2dec(int c
)
957 return (((c
) >= '0' && ((c
) <= '9')) ? (c
) - '0' :
958 (toupper(c
)) - 'A' + 10);
961 int hex_to_rgb(const char* hex
, int* color
)
963 int red
, green
, blue
;
966 while ((i
< 6) && (isxdigit(hex
[i
])))
972 red
= (hex2dec(hex
[0]) << 4) | hex2dec(hex
[1]);
973 green
= (hex2dec(hex
[2]) << 4) | hex2dec(hex
[3]);
974 blue
= (hex2dec(hex
[4]) << 4) | hex2dec(hex
[5]);
976 *color
= LCD_RGBPACK(red
,green
,blue
);
980 #endif /* HAVE_LCD_COLOR */
982 #ifdef HAVE_LCD_BITMAP
983 /* '0'-'3' are ASCII 0x30 to 0x33 */
984 #define is0123(x) (((x) & 0xfc) == 0x30)
985 #if !defined(__PCTOOL__) || defined(CHECKWPS)
986 bool parse_color(enum screen_type screen
, char *text
, int *value
)
988 (void)text
; (void)value
; /* silence warnings on mono bitmap */
991 #ifdef HAVE_LCD_COLOR
992 if (screens
[screen
].depth
> 2)
994 if (hex_to_rgb(text
, value
) < 0)
1001 #if LCD_DEPTH == 2 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH == 2)
1002 if (screens
[screen
].depth
== 2)
1004 if (text
[1] != '\0' || !is0123(*text
))
1006 *value
= *text
- '0';
1012 #endif /* !defined(__PCTOOL__) || defined(CHECKWPS) */
1014 /* only used in USB HID and set_time screen */
1015 #if defined(USB_ENABLE_HID) || (CONFIG_RTC != 0)
1016 int clamp_value_wrap(int value
, int max
, int min
)
1026 #define MAX_ACTIVITY_DEPTH 12
1027 static enum current_activity
1028 current_activity
[MAX_ACTIVITY_DEPTH
] = {ACTIVITY_UNKNOWN
};
1029 static int current_activity_top
= 0;
1030 void push_current_activity(enum current_activity screen
)
1032 current_activity
[current_activity_top
++] = screen
;
1034 void pop_current_activity(void)
1036 current_activity_top
--;
1038 enum current_activity
get_current_activity(void)
1040 return current_activity
[current_activity_top
?current_activity_top
-1:0];