Disktidy: introduce a local variable to avoid repeated use of the indexed expression
[kugel-rb.git] / apps / plugins / disktidy.c
bloba85e8274c09be99954a997dde9bcb5d8c948fd52
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 David Dent
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 ****************************************************************************/
21 #include "plugin.h"
22 #include "errno.h"
25 static int removed = 0; /* number of items removed */
27 /* function return values */
28 enum tidy_return
30 TIDY_RETURN_OK = 0,
31 TIDY_RETURN_ERROR = 1,
32 TIDY_RETURN_USB = 2,
33 TIDY_RETURN_ABORT = 3,
36 #define MAX_TYPES 64
37 struct tidy_type {
38 char filestring[64];
39 int pre;
40 int post;
41 bool directory;
42 bool remove;
43 } tidy_types[MAX_TYPES];
44 int tidy_type_count;
45 bool tidy_loaded_and_changed = false;
47 #define DEFAULT_FILES PLUGIN_APPS_DIR "/disktidy.config"
48 #define CUSTOM_FILES PLUGIN_APPS_DIR "/disktidy_custom.config"
50 void add_item(const char* name, int index)
52 char *a;
53 struct tidy_type *entry = tidy_types + index;
54 rb->strcpy(entry->filestring, name);
55 if (name[rb->strlen(name)-1] == '/')
57 entry->directory = true;
58 entry->filestring[rb->strlen(name)-1] = '\0';
60 else
61 entry->directory = false;
62 a = rb->strchr(name, '*');
63 if (a)
65 entry->pre = a - name;
66 entry->post = rb->strlen(a+1);
68 else
70 entry->pre = -1;
71 entry->post = -1;
75 static int find_file_string(const char *file, char *last_group)
77 char temp[MAX_PATH];
78 int i = 0, idx_last_group = -1;
79 bool folder = false;
80 rb->strcpy(temp, file);
81 if (temp[rb->strlen(temp)-1] == '/')
83 folder = true;
84 temp[rb->strlen(temp)-1] = '\0';
86 while (i<tidy_type_count)
88 if (!rb->strcmp(tidy_types[i].filestring, temp) &&
89 folder == tidy_types[i].directory)
90 return i;
91 else if (!rb->strcmp(tidy_types[i].filestring, last_group))
92 idx_last_group = i;
93 i++;
95 /* not found, so insert it into its group */
96 if (file[0] != '<' && idx_last_group != -1)
98 for (i=idx_last_group; i<tidy_type_count; i++)
100 if (tidy_types[i].filestring[0] == '<')
102 idx_last_group = i;
103 break;
106 /* shift items up one */
107 for (i=tidy_type_count;i>idx_last_group;i--)
109 rb->memcpy(&tidy_types[i], &tidy_types[i-1], sizeof(struct tidy_type));
111 tidy_type_count++;
112 add_item(file, idx_last_group+1);
113 return idx_last_group+1;
115 return i;
118 bool tidy_load_file(const char* file)
120 int fd = rb->open(file, O_RDONLY), i;
121 char buf[MAX_PATH], *str, *remove;
122 char last_group[MAX_PATH] = "";
123 bool new;
124 if (fd < 0)
125 return false;
126 while ((tidy_type_count < MAX_TYPES) &&
127 rb->read_line(fd, buf, MAX_PATH))
129 if (rb->settings_parseline(buf, &str, &remove))
131 i = find_file_string(str, last_group);
132 new = (i >= tidy_type_count);
133 if (!rb->strcmp(remove, "yes"))
134 tidy_types[i].remove = true;
135 else tidy_types[i].remove = false;
136 if (new)
138 i = tidy_type_count;
139 add_item(str, i);
140 tidy_type_count++;
142 if (str[0] == '<')
143 rb->strcpy(last_group, str);
146 rb->close(fd);
147 return true;
150 static bool match(struct tidy_type *tidy_type, char *string, int len)
152 char *pattern = tidy_type->filestring;
153 if (tidy_type->pre < 0)
155 /* no '*', just compare. */
156 return (rb->strcmp(pattern, string) == 0);
158 /* pattern is too long for the string. avoid 'ab*bc' matching 'abc'. */
159 if (len < tidy_type->pre + tidy_type->post)
160 return false;
161 /* pattern has '*', compare former part of '*' to the begining of
162 the string and compare next part of '*' to the end of string. */
163 return (rb->strncmp(pattern, string, tidy_type->pre) == 0 &&
164 rb->strcmp(pattern + tidy_type->pre + 1,
165 string + len - tidy_type->post) == 0);
168 bool tidy_remove_item(char *item, int attr)
170 int i;
171 int len;
172 bool ret = false;
173 len = rb->strlen(item);
174 for (i=0; ret == false && i < tidy_type_count; i++)
176 if (match(&tidy_types[i], item, len))
178 if (!tidy_types[i].remove)
179 return false;
180 if (attr&ATTR_DIRECTORY)
181 ret = tidy_types[i].directory;
182 else ret = true;
185 return ret;
188 void tidy_lcd_status(const char *name)
190 /* display status text */
191 rb->lcd_clear_display();
192 rb->lcd_puts(0, 0, "Working ...");
193 rb->lcd_puts(0, 1, name);
194 #ifdef HAVE_LCD_BITMAP
195 rb->lcd_putsf(0, 2, "Cleaned up %d items", removed);
196 #endif
197 rb->lcd_update();
200 int tidy_path_append_entry(char *path, struct dirent *entry, int *path_length)
202 int name_len = rb->strlen(entry->d_name);
203 /* for the special case of path="/" this is one bigger but it's not a problem */
204 int new_length = *path_length + name_len + 1;
206 /* check overflow (keep space for trailing zero) */
207 if(new_length >= MAX_PATH)
208 return 0;
210 /* special case for path <> "/" */
211 if(rb->strcmp(path, "/") != 0)
213 rb->strcat(path + *path_length, "/");
214 (*path_length)++;
216 /* strcat is unsafe but the previous check normally avoid any problem */
217 /* use path_length to optimise */
219 rb->strcat(path + *path_length, entry->d_name);
220 *path_length += name_len;
222 return 1;
225 void tidy_path_remove_entry(char *path, int old_path_length, int *path_length)
227 path[old_path_length] = '\0';
228 *path_length = old_path_length;
231 /* path is assumed to be array of size MAX_PATH */
232 enum tidy_return tidy_removedir(char *path, int *path_length)
234 /* delete directory */
235 struct dirent *entry;
236 enum tidy_return status = TIDY_RETURN_OK;
237 int button;
238 DIR *dir;
239 int old_path_length = *path_length;
241 /* display status text */
242 tidy_lcd_status(path);
244 rb->yield();
246 dir = rb->opendir(path);
247 if (dir)
249 while((status == TIDY_RETURN_OK) && ((entry = rb->readdir(dir)) != 0))
250 /* walk directory */
252 /* check for user input and usb connect */
253 button = rb->get_action(CONTEXT_STD, TIMEOUT_NOBLOCK);
254 if (button == ACTION_STD_CANCEL)
256 rb->closedir(dir);
257 return TIDY_RETURN_ABORT;
259 if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
261 rb->closedir(dir);
262 return TIDY_RETURN_USB;
265 rb->yield();
267 /* get absolute path */
268 /* returns an error if path is too long */
269 if(!tidy_path_append_entry(path, entry, path_length))
270 /* silent error */
271 continue;
273 struct dirinfo info = rb->dir_get_info(dir, entry);
274 if (info.attribute & ATTR_DIRECTORY)
276 /* dir ignore "." and ".." */
277 if ((rb->strcmp(entry->d_name, ".") != 0) && \
278 (rb->strcmp(entry->d_name, "..") != 0))
280 status = tidy_removedir(path, path_length);
283 else
285 /* file */
286 removed++;
287 rb->remove(path);
290 /* restore path */
291 tidy_path_remove_entry(path, old_path_length, path_length);
293 rb->closedir(dir);
294 /* rmdir */
295 removed++;
296 rb->rmdir(path);
298 else
300 status = TIDY_RETURN_ERROR;
302 return status;
305 /* path is assumed to be array of size MAX_PATH */
306 enum tidy_return tidy_clean(char *path, int *path_length)
308 /* deletes junk files and dirs left by system */
309 struct dirent *entry;
310 enum tidy_return status = TIDY_RETURN_OK;
311 int button;
312 DIR *dir;
313 int old_path_length = *path_length;
315 /* display status text */
316 tidy_lcd_status(path);
318 rb->yield();
320 dir = rb->opendir(path);
321 if (dir)
323 while((status == TIDY_RETURN_OK) && ((entry = rb->readdir(dir)) != 0))
324 /* walk directory */
326 struct dirinfo info = rb->dir_get_info(dir, entry);
327 /* check for user input and usb connect */
328 button = rb->get_action(CONTEXT_STD, TIMEOUT_NOBLOCK);
329 if (button == ACTION_STD_CANCEL)
331 rb->closedir(dir);
332 return TIDY_RETURN_ABORT;
334 if (rb->default_event_handler(button) == SYS_USB_CONNECTED)
336 rb->closedir(dir);
337 return TIDY_RETURN_USB;
340 rb->yield();
342 if (info.attribute & ATTR_DIRECTORY)
344 /* directory ignore "." and ".." */
345 if ((rb->strcmp(entry->d_name, ".") != 0) && \
346 (rb->strcmp(entry->d_name, "..") != 0))
348 /* get absolute path */
349 /* returns an error if path is too long */
350 if(!tidy_path_append_entry(path, entry, path_length))
351 /* silent error */
352 continue;
354 if (tidy_remove_item(entry->d_name, info.attribute))
356 /* delete dir */
357 status = tidy_removedir(path, path_length);
359 else
361 /* dir not deleted so clean it */
362 status = tidy_clean(path, path_length);
365 /* restore path */
366 tidy_path_remove_entry(path, old_path_length, path_length);
369 else
371 /* file */
372 if (tidy_remove_item(entry->d_name, info.attribute))
374 /* get absolute path */
375 /* returns an error if path is too long */
376 if(!tidy_path_append_entry(path, entry, path_length))
377 /* silent error */
378 continue;
380 removed++; /* increment removed files counter */
381 /* delete file */
382 rb->remove(path);
384 /* restore path */
385 tidy_path_remove_entry(path, old_path_length, path_length);
389 rb->closedir(dir);
390 return status;
392 else
394 return TIDY_RETURN_ERROR;
398 enum tidy_return tidy_do(void)
400 /* clean disk and display num of items removed */
401 enum tidy_return status;
402 char path[MAX_PATH];
403 int path_length;
405 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
406 rb->cpu_boost(true);
407 #endif
409 rb->strcpy(path, "/");
410 path_length = rb->strlen(path);
411 status = tidy_clean(path, &path_length);
413 #ifdef HAVE_ADJUSTABLE_CPU_FREQ
414 rb->cpu_boost(false);
415 #endif
417 if ((status == TIDY_RETURN_OK) || (status == TIDY_RETURN_ABORT))
419 rb->lcd_clear_display();
420 if (status == TIDY_RETURN_ABORT)
422 rb->splash(HZ, "User aborted");
423 rb->lcd_clear_display();
425 rb->splashf(HZ*2, "Cleaned up %d items", removed);
427 return status;
430 enum themable_icons get_icon(int item, void * data)
432 (void)data;
433 if (tidy_types[item].filestring[0] == '<') /* special type */
434 return Icon_Folder;
435 else if (tidy_types[item].remove)
436 return Icon_Cursor;
437 else
438 return Icon_NOICON;
441 static const char* get_name(int selected_item, void * data,
442 char * buffer, size_t buffer_len)
444 (void)data;
445 if (tidy_types[selected_item].directory)
447 rb->snprintf(buffer, buffer_len, "%s/",
448 tidy_types[selected_item].filestring);
449 return buffer;
451 return tidy_types[selected_item].filestring;
454 int list_action_callback(int action, struct gui_synclist *lists)
456 if (action == ACTION_STD_OK)
458 int selection = rb->gui_synclist_get_sel_pos(lists);
459 if (tidy_types[selection].filestring[0] == '<')
461 int i;
462 if (!rb->strcmp(tidy_types[selection].filestring, "< ALL >"))
464 for (i=0; i<tidy_type_count; i++)
466 if (tidy_types[i].filestring[0] != '<')
467 tidy_types[i].remove = true;
470 else if (!rb->strcmp(tidy_types[selection].filestring, "< NONE >"))
472 for (i=0; i<tidy_type_count; i++)
474 if (tidy_types[i].filestring[0] != '<')
475 tidy_types[i].remove = false;
478 else /* toggle all untill the next <> */
480 selection++;
481 while (selection < tidy_type_count &&
482 tidy_types[selection].filestring[0] != '<')
484 tidy_types[selection].remove = !tidy_types[selection].remove;
485 selection++;
489 else
490 tidy_types[selection].remove = !tidy_types[selection].remove;
491 tidy_loaded_and_changed = true;
492 return ACTION_REDRAW;
494 return action;
497 enum tidy_return tidy_lcd_menu(void)
499 int selection = 0;
500 enum tidy_return status = TIDY_RETURN_OK;
501 bool menu_quit = false;
503 MENUITEM_STRINGLIST(menu, "Disktidy Menu", NULL,
504 "Start Cleaning", "Files to Clean",
505 "Quit");
507 while (!menu_quit)
509 switch(rb->do_menu(&menu, &selection, NULL, false))
511 case 0:
512 menu_quit = true; /* start cleaning */
513 break;
515 case 1:
517 struct simplelist_info list;
518 rb->simplelist_info_init(&list, "Files to Clean",
519 tidy_type_count, NULL);
520 list.get_icon = get_icon;
521 list.get_name = get_name;
522 list.action_callback = list_action_callback;
523 rb->simplelist_show_list(&list);
525 break;
527 default:
528 status = TIDY_RETURN_ABORT; /* exit plugin */
529 menu_quit = true;
530 break;
533 return status;
536 /* Creates a file and writes information about what files to
537 delete and what to keep to it.
538 Returns true iff the file was successfully created.
540 static bool save_config(const char *file_name)
542 int fd, i;
543 bool result;
545 fd = rb->creat(file_name, 0666);
546 result = (fd >= 0);
548 if (result)
550 for (i=0; i<tidy_type_count; i++)
552 rb->fdprintf(fd, "%s%s: %s\n", tidy_types[i].filestring,
553 tidy_types[i].directory ? "/" : "",
554 tidy_types[i].remove ? "yes" : "no");
556 rb->close(fd);
558 else
560 DEBUGF("Could not create file %s\n", file_name);
563 return result;
566 /* this is the plugin entry point */
567 enum plugin_status plugin_start(const void* parameter)
569 enum tidy_return status;
570 (void)parameter;
572 tidy_type_count = 0;
573 tidy_load_file(DEFAULT_FILES);
574 tidy_load_file(CUSTOM_FILES);
575 if (tidy_type_count == 0)
577 rb->splash(3*HZ, "Missing disktidy.config file");
578 return PLUGIN_ERROR;
580 status = tidy_lcd_menu();
581 if (tidy_loaded_and_changed)
583 save_config(CUSTOM_FILES);
585 if (status == TIDY_RETURN_ABORT)
586 return PLUGIN_OK;
587 while (true)
589 status = tidy_do();
591 switch (status)
593 case TIDY_RETURN_OK:
594 return PLUGIN_OK;
595 case TIDY_RETURN_ERROR:
596 return PLUGIN_ERROR;
597 case TIDY_RETURN_USB:
598 return PLUGIN_USB_CONNECTED;
599 case TIDY_RETURN_ABORT:
600 return PLUGIN_OK;
604 if (rb->default_event_handler(rb->button_get(false)) == SYS_USB_CONNECTED)
605 return PLUGIN_USB_CONNECTED;
607 rb->yield();
609 return PLUGIN_OK;