blob: 86955a7b571574cb821c63f1fbbeb92bb4af1f03 [file] [log] [blame]
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2006 Peter D'Hoye
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * 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.
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include "plugin.h"
22
23PLUGIN_HEADER
24
Steve Bavin65265772008-05-13 09:57:56 +000025static const struct plugin_api* rb;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000026
Nils Wallméniusc7f9ca42007-06-13 15:35:07 +000027MEM_FUNCTION_WRAPPERS(rb);
28
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000029bool its_a_dir = false;
30
31char str_filename[MAX_PATH];
32char str_dirname[MAX_PATH];
33char str_size[64];
34char str_dircount[64];
35char str_filecount[64];
36char str_date[64];
37char str_time[64];
Nicolas Pennequinadb64bb2007-08-14 12:28:19 +000038
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +000039char str_title[MAX_PATH];
40char str_artist[MAX_PATH];
41char str_album[MAX_PATH];
42
43int num_properties;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000044
45static char* filesize2string(long long size, char* pstr, int len)
46{
47 /* margin set at 10K boundary: 10239 B +1 => 10 KB
48 routine below is 200 bytes smaller than cascaded if/else :)
49 not using build-in function because of huge values (long long) */
50 const char* kgb[4] = { "B", "KB", "MB", "GB" };
51 int i = 0;
52 while(true)
53 {
54 if((size < 10240) || (i > 2))
55 {
56 /* depends on the order in the above array */
57 rb->snprintf(pstr, len, "%ld %s", (long)size, kgb[i]);
58 break;
59 }
60 size >>= 10; /* div by 1024 */
61 i++;
62 }
63 return pstr;
64}
65
66static bool file_properties(char* selected_file)
67{
68 bool found = false;
69 char tstr[MAX_PATH];
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000070 DIR* dir;
71 struct dirent* entry;
Nicolas Pennequin49180592007-08-14 13:19:22 +000072 struct mp3entry id3;
Kevin Ferrare011a3252007-07-20 17:06:55 +000073
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000074 char* ptr = rb->strrchr(selected_file, '/') + 1;
75 int dirlen = (ptr - selected_file);
76 rb->strncpy(tstr, selected_file, dirlen);
77 tstr[dirlen] = 0;
78
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000079 dir = rb->opendir(tstr);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000080 if (dir)
81 {
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000082 while(0 != (entry = rb->readdir(dir)))
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +000083 {
84 if(!rb->strcmp(entry->d_name, selected_file+dirlen))
85 {
86 rb->snprintf(str_dirname, sizeof str_dirname, "Path: %s",
87 tstr);
88 rb->snprintf(str_filename, sizeof str_filename, "Name: %s",
89 selected_file+dirlen);
90 rb->snprintf(str_size, sizeof str_size, "Size: %s",
91 filesize2string(entry->size, tstr, sizeof tstr));
92 rb->snprintf(str_date, sizeof str_date, "Date: %04d/%02d/%02d",
93 ((entry->wrtdate >> 9 ) & 0x7F) + 1980, /* year */
94 ((entry->wrtdate >> 5 ) & 0x0F), /* month */
95 ((entry->wrtdate ) & 0x1F)); /* day */
96 rb->snprintf(str_time, sizeof str_time, "Time: %02d:%02d",
97 ((entry->wrttime >> 11) & 0x1F), /* hour */
98 ((entry->wrttime >> 5 ) & 0x3F)); /* minutes */
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +000099
100 num_properties = 5;
101
Nicolas Pennequinadb64bb2007-08-14 12:28:19 +0000102#if (CONFIG_CODEC == SWCODEC)
Nicolas Pennequindc1cb3c2007-08-14 12:44:50 +0000103 int fd = rb->open(selected_file, O_RDONLY);
Nicolas Pennequin49180592007-08-14 13:19:22 +0000104 if (fd >= 0 &&
Thom Johansen294ec1d2007-09-19 10:40:55 +0000105 rb->get_metadata(&id3, fd, selected_file))
Nicolas Pennequin49180592007-08-14 13:19:22 +0000106#else
Thom Johansen294ec1d2007-09-19 10:40:55 +0000107 if (!rb->mp3info(&id3, selected_file))
Nicolas Pennequinadb64bb2007-08-14 12:28:19 +0000108#endif
Nicolas Pennequin49180592007-08-14 13:19:22 +0000109 {
110 rb->snprintf(str_artist, sizeof str_artist,
111 "Artist: %s", id3.artist ? id3.artist : "");
112 rb->snprintf(str_title, sizeof str_title,
113 "Title: %s", id3.title ? id3.title : "");
114 rb->snprintf(str_album, sizeof str_album,
115 "Album: %s", id3.album ? id3.album : "");
116 num_properties += 3;
117 }
118#if (CONFIG_CODEC == SWCODEC)
119 rb->close(fd);
120#endif
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000121 found = true;
122 break;
123 }
124 }
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000125 rb->closedir(dir);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000126 }
127 return found;
128}
129
130typedef struct {
131 char dirname[MAX_PATH];
132 int len;
133 unsigned int dc;
134 unsigned int fc;
135 long long bc;
136 char tstr[64];
137 char tstr2[64];
138} DPS;
139
140static bool _dir_properties(DPS* dps)
141{
142 /* recursively scan directories in search of files
143 and informs the user of the progress */
144 bool result;
145 int dirlen;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000146 DIR* dir;
147 struct dirent* entry;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000148
Peter D'Hoye1936f7c2006-12-13 19:52:08 +0000149 result = true;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000150 dirlen = rb->strlen(dps->dirname);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000151 dir = rb->opendir(dps->dirname);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000152 if (!dir)
153 return false; /* open error */
154
155 /* walk through the directory content */
Peter D'Hoye1936f7c2006-12-13 19:52:08 +0000156 while(result && (0 != (entry = rb->readdir(dir))))
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000157 {
158 /* append name to current directory */
159 rb->snprintf(dps->dirname+dirlen, dps->len-dirlen, "/%s",
160 entry->d_name);
161
162 if (entry->attribute & ATTR_DIRECTORY)
163 {
164 if (!rb->strcmp((char *)entry->d_name, ".") ||
165 !rb->strcmp((char *)entry->d_name, ".."))
166 continue; /* skip these */
167
168 dps->dc++; /* new directory */
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000169 rb->lcd_clear_display();
Peter D'Hoyee10a0f02006-11-30 23:00:17 +0000170 rb->lcd_puts(0,0,"SCANNING...");
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000171 rb->lcd_puts(0,1,dps->dirname);
172 rb->lcd_puts(0,2,entry->d_name);
173 rb->snprintf(dps->tstr, 64, "Directories: %d", dps->dc);
174 rb->lcd_puts(0,3,dps->tstr);
175 rb->snprintf(dps->tstr, 64, "Files: %d", dps->fc);
176 rb->lcd_puts(0,4,dps->tstr);
177 rb->snprintf(dps->tstr, 64, "Size: %s",
178 filesize2string(dps->bc, dps->tstr2, 64));
179 rb->lcd_puts(0,5,dps->tstr);
180 rb->lcd_update();
Jens Arnoldf9b90e92007-04-06 22:55:00 +0000181
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000182 /* recursion */
183 result = _dir_properties(dps);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000184 }
185 else
186 {
187 dps->fc++; /* new file */
188 dps->bc += entry->size;
189 }
Peter D'Hoye1936f7c2006-12-13 19:52:08 +0000190 if(ACTION_STD_CANCEL == rb->get_action(CONTEXT_STD,TIMEOUT_NOBLOCK))
191 result = false;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000192 rb->yield();
193 }
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000194 rb->closedir(dir);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000195 return result;
196}
197
198static bool dir_properties(char* selected_file)
199{
200 DPS dps;
201 char tstr[64];
202 rb->strncpy(dps.dirname, selected_file, MAX_PATH);
203 dps.len = MAX_PATH;
204 dps.dc = 0;
205 dps.fc = 0;
206 dps.bc = 0;
Peter D'Hoye1936f7c2006-12-13 19:52:08 +0000207 if(false == _dir_properties(&dps))
208 return false;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000209
210 rb->snprintf(str_dirname, MAX_PATH, selected_file);
211 rb->snprintf(str_dircount, sizeof str_dircount, "Subdirs: %d", dps.dc);
212 rb->snprintf(str_filecount, sizeof str_filecount, "Files: %d", dps.fc);
213 rb->snprintf(str_size, sizeof str_size, "Size: %s",
214 filesize2string(dps.bc, tstr, sizeof tstr));
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000215 num_properties = 4;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000216 return true;
217}
218
Nils Wallménius68489612008-04-09 15:25:17 +0000219char * get_props(int selected_item, void* data, char *buffer, size_t buffer_len)
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000220{
221 (void)data;
222
223 switch(selected_item)
224 {
225 case 0:
Nils Wallménius68489612008-04-09 15:25:17 +0000226 rb->strncpy(buffer, str_dirname, buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000227 break;
228 case 1:
Nils Wallménius68489612008-04-09 15:25:17 +0000229 rb->strncpy(buffer, its_a_dir ? str_dircount : str_filename,
230 buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000231 break;
232 case 2:
Nils Wallménius68489612008-04-09 15:25:17 +0000233 rb->strncpy(buffer, its_a_dir ? str_filecount : str_size, buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000234 break;
235 case 3:
Nils Wallménius68489612008-04-09 15:25:17 +0000236 rb->strncpy(buffer, its_a_dir ? str_size : str_date, buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000237 break;
238 case 4:
Nils Wallménius68489612008-04-09 15:25:17 +0000239 rb->strncpy(buffer, its_a_dir ? "" : str_time, buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000240 break;
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000241 case 5:
Nils Wallménius68489612008-04-09 15:25:17 +0000242 rb->strncpy(buffer, its_a_dir ? "" : str_artist, buffer_len);
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000243 break;
244 case 6:
Nils Wallménius68489612008-04-09 15:25:17 +0000245 rb->strncpy(buffer, its_a_dir ? "" : str_title, buffer_len);
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000246 break;
247 case 7:
Nils Wallménius68489612008-04-09 15:25:17 +0000248 rb->strncpy(buffer, its_a_dir ? "" : str_album, buffer_len);
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000249 break;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000250 default:
Nils Wallménius68489612008-04-09 15:25:17 +0000251 rb->strncpy(buffer, "ERROR", buffer_len);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000252 break;
253 }
254 return buffer;
255}
256
Steve Bavin65265772008-05-13 09:57:56 +0000257enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter)
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000258{
259 rb = api;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000260 struct gui_synclist properties_lists;
261 int button;
262 bool prev_show_statusbar;
263 bool quit = false;
Steve Bavin65265772008-05-13 09:57:56 +0000264 char file[MAX_PATH];
265 rb->strcpy(file, (const char *) parameter);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000266
267 /* determine if it's a file or a directory */
268 bool found = false;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000269 DIR* dir;
270 struct dirent* entry;
Steve Bavin65265772008-05-13 09:57:56 +0000271 char* ptr = rb->strrchr(file, '/') + 1;
272 int dirlen = (ptr - file);
273 rb->strncpy(str_dirname, file, dirlen);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000274 str_dirname[dirlen] = 0;
275
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000276 dir = rb->opendir(str_dirname);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000277 if (dir)
278 {
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000279 while(0 != (entry = rb->readdir(dir)))
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000280 {
281 if(!rb->strcmp(entry->d_name, file+dirlen))
282 {
283 its_a_dir = entry->attribute & ATTR_DIRECTORY ? true : false;
284 found = true;
285 break;
286 }
287 }
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000288 rb->closedir(dir);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000289 }
290 /* now we know if it's a file or a dir or maybe something failed */
291
292 if(!found)
293 {
294 /* weird: we couldn't find the entry. This Should Never Happen (TM) */
Steve Bavin65265772008-05-13 09:57:56 +0000295 rb->splash(0, "File/Dir not found: %s", file);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000296 rb->action_userabort(TIMEOUT_BLOCK);
297 return PLUGIN_OK;
298 }
299
Peter D'Hoye76855f02007-07-03 23:18:14 +0000300 /* get the info depending on its_a_dir */
Steve Bavin65265772008-05-13 09:57:56 +0000301 if(!(its_a_dir ? dir_properties(file) : file_properties(file)))
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000302 {
Peter D'Hoye11b559a2007-07-03 23:38:22 +0000303 /* something went wrong (to do: tell user what it was (nesting,...) */
Peter D'Hoyec7c21ae2007-07-03 23:45:00 +0000304 rb->splash(0, "Failed to gather information");
Peter D'Hoye76855f02007-07-03 23:18:14 +0000305 rb->action_userabort(TIMEOUT_BLOCK);
306 return PLUGIN_OK;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000307 }
308
309 /* prepare the list for the user */
310 prev_show_statusbar = rb->global_settings->statusbar;
311 rb->global_settings->statusbar = false;
312
Jonathan Gordon5ca15392008-03-26 03:35:24 +0000313 rb->gui_synclist_init(&properties_lists, &get_props, file, false, 1, NULL);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000314 rb->gui_synclist_set_title(&properties_lists, its_a_dir ?
315 "Directory properties" :
316 "File properties", NOICON);
317 rb->gui_synclist_set_icon_callback(&properties_lists, NULL);
Nicolas Pennequin9aa597f2007-08-14 11:56:15 +0000318 rb->gui_synclist_set_nb_items(&properties_lists, num_properties);
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000319 rb->gui_synclist_limit_scroll(&properties_lists, true);
320 rb->gui_synclist_select_item(&properties_lists, 0);
321 rb->gui_synclist_draw(&properties_lists);
322
323 while(!quit)
324 {
325 button = rb->get_action(CONTEXT_LIST,TIMEOUT_BLOCK);
Jonathan Gordoncf1cef52007-09-17 10:08:50 +0000326 if (rb->gui_synclist_do_button(&properties_lists,&button,LIST_WRAP_ON))
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000327 continue;
328 switch(button)
329 {
330 case ACTION_STD_CANCEL:
331 quit = true;
332 break;
333 default:
334 if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
335 {
336 rb->global_settings->statusbar = prev_show_statusbar;
337 return PLUGIN_USB_CONNECTED;
338 }
339 }
340 }
341 rb->global_settings->statusbar = prev_show_statusbar;
Peter D'Hoye0f02e4f2006-11-30 22:29:48 +0000342
343 return PLUGIN_OK;
344}