Fix yellow
[Rockbox.git] / apps / plugins / stats.c
bloba65fde470497ee4df1a7d895698c4a9082e843da
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Jonas Haggqvist
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include "plugin.h"
21 PLUGIN_HEADER
23 static struct plugin_api* rb;
24 static int files, dirs, musicfiles, largestdir;
25 static int lasttick;
26 static bool abort;
28 #if CONFIG_KEYPAD == PLAYER_PAD
29 #define STATS_STOP BUTTON_STOP
31 #elif (CONFIG_KEYPAD == RECORDER_PAD) \
32 || (CONFIG_KEYPAD == ONDIO_PAD) \
33 || (CONFIG_KEYPAD == ARCHOS_AV300_PAD)
34 #define STATS_STOP BUTTON_OFF
36 #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) \
37 || (CONFIG_KEYPAD == IRIVER_H300_PAD)
38 #define STATS_STOP BUTTON_OFF
39 #define STATS_STOP_REMOTE BUTTON_RC_STOP
41 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
42 (CONFIG_KEYPAD == IPOD_3G_PAD) || \
43 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
44 #define STATS_STOP BUTTON_MENU
46 #elif CONFIG_KEYPAD == IRIVER_IFP7XX_PAD
47 #define STATS_STOP BUTTON_PLAY
49 #elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
50 #define STATS_STOP BUTTON_POWER
51 #define STATS_STOP_REMOTE BUTTON_RC_PLAY
53 #elif CONFIG_KEYPAD == GIGABEAT_PAD
54 #define STATS_STOP BUTTON_POWER
56 #elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
57 (CONFIG_KEYPAD == SANSA_C200_PAD)
58 #define STATS_STOP BUTTON_POWER
60 #elif CONFIG_KEYPAD == IRIVER_H10_PAD
61 #define STATS_STOP BUTTON_POWER
63 #elif CONFIG_KEYPAD == MROBE500_PAD
64 #define STATS_STOP BUTTON_POWER
66 #elif CONFIG_KEYPAD == GIGABEAT_S_PAD
67 #define STATS_STOP BUTTON_BACK
69 #elif CONFIG_KEYPAD == MROBE100_PAD
70 #define STATS_STOP BUTTON_POWER
72 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
73 #define STATS_STOP BUTTON_REC
74 #define STATS_STOP_REMOTE BUTTON_RC_REC
76 #elif CONFIG_KEYPAD == COWOND2_PAD
77 #define STATS_STOP BUTTON_POWER
79 #else
80 #error No keymap defined!
81 #endif
83 /* TODO: Better get the exts from the filetypes var in tree.c */
84 const char *music_exts[] = {"mp3","mp2","mp1","mpa","ogg",
85 "wav","flac","ac3","a52","mpc","wv","m4a","m4b","mp4",
86 "shn","aif","aiff"};
88 void prn(const char *str, int y)
90 rb->lcd_puts(0,y,str);
91 #ifdef HAVE_REMOTE_LCD
92 rb->lcd_remote_puts(0,y,str);
93 #endif
96 void update_screen(void)
98 char buf[32];
100 rb->lcd_clear_display();
101 #ifdef HAVE_REMOTE_LCD
102 rb->lcd_remote_clear_display();
103 #endif
105 #ifdef HAVE_LCD_BITMAP
106 rb->snprintf(buf, sizeof(buf), "Files: %d", files);
107 prn(buf,0);
108 rb->snprintf(buf, sizeof(buf), "Music: %d", musicfiles);
109 prn(buf,1);
110 rb->snprintf(buf, sizeof(buf), "Dirs: %d", dirs);
111 prn(buf,2);
112 rb->snprintf(buf, sizeof(buf), "Max files in Dir: %d", largestdir);
113 prn(buf,3);
114 #else
115 rb->snprintf(buf, sizeof(buf), "Files:%5d", files);
116 prn(buf,0);
117 rb->snprintf(buf, sizeof(buf), "Dirs: %5d", dirs);
118 prn(buf,1);
119 #endif
121 rb->lcd_update();
122 #ifdef HAVE_REMOTE_LCD
123 rb->lcd_remote_update();
124 #endif
127 void traversedir(char* location, char* name)
129 int button;
130 struct dirent *entry;
131 DIR* dir;
132 char fullpath[MAX_PATH];
133 int files_in_dir = 0;
135 rb->snprintf(fullpath, sizeof(fullpath), "%s/%s", location, name);
136 dir = rb->opendir(fullpath);
137 if (dir) {
138 entry = rb->readdir(dir);
139 while (entry) {
140 if (abort == true)
141 break;
142 /* Skip .. and . */
143 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, ".."))
145 if (entry->attribute & ATTR_DIRECTORY) {
146 traversedir(fullpath, entry->d_name);
147 dirs++;
149 else {
150 char *ptr = rb->strrchr(entry->d_name,'.');
151 files++; files_in_dir++;
152 /* Might want to only count .mp3, .ogg etc. */
153 if(ptr){
154 unsigned i;
155 ptr++;
156 for(i=0;i<sizeof(music_exts)/sizeof(char*);i++)
157 if(!rb->strcasecmp(ptr,music_exts[i])){
158 musicfiles++; break;
164 if (*rb->current_tick - lasttick > (HZ/2)) {
165 update_screen();
166 lasttick = *rb->current_tick;
167 button = rb->button_get(false);
168 if (button == STATS_STOP
169 #ifdef HAVE_REMOTE_LCD
170 || button == STATS_STOP_REMOTE
171 #endif
173 abort = true;
174 break;
178 entry = rb->readdir(dir);
180 rb->closedir(dir);
182 if (largestdir < files_in_dir)
183 largestdir = files_in_dir;
186 enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
188 int button;
190 (void)parameter;
192 rb = api;
193 files = 0;
194 dirs = 0;
195 musicfiles = 0;
196 largestdir = 0;
197 abort = false;
199 rb->splash(HZ, "Counting...");
200 update_screen();
201 lasttick = *rb->current_tick;
203 traversedir("", "");
204 if (abort == true) {
205 rb->splash(HZ, "Aborted");
206 return PLUGIN_OK;
208 update_screen();
209 #ifdef HAVE_REMOTE_LCD
210 rb->remote_backlight_on();
211 #endif
212 rb->backlight_on();
213 rb->splash(HZ, "Done");
214 update_screen();
215 button = rb->button_get(true);
216 while (1) {
217 switch (button) {
218 #ifdef HAVE_REMOTE_LCD
219 case STATS_STOP_REMOTE:
220 #endif
221 case STATS_STOP:
222 return PLUGIN_OK;
223 break;
224 default:
225 if (rb->default_event_handler(button) == SYS_USB_CONNECTED) {
226 return PLUGIN_USB_CONNECTED;
228 break;
230 return PLUGIN_OK;