Index: apps/plugins/disktidy.config =================================================================== --- apps/plugins/disktidy.config (リビジョン 28369) +++ apps/plugins/disktidy.config (作業コピー) @@ -1,5 +1,7 @@ # Disktidy config # When adding a new file, make sure its NOT enabled +# WARNING: Be careful when you use custom entries. +# You could accidentally delete important files. < ALL >: no < NONE >: no < Windows >: no Index: apps/plugins/disktidy.c =================================================================== --- apps/plugins/disktidy.c (リビジョン 28369) +++ apps/plugins/disktidy.c (作業コピー) @@ -36,6 +36,8 @@ #define MAX_TYPES 64 struct tidy_type { char filestring[64]; + int pre; + int post; bool directory; bool remove; } tidy_types[MAX_TYPES]; @@ -46,6 +48,7 @@ #define CUSTOM_FILES PLUGIN_APPS_DIR "/disktidy_custom.config" void add_item(const char* name, int index) { + char *a; rb->strcpy(tidy_types[index].filestring, name); if (name[rb->strlen(name)-1] == '/') { @@ -54,6 +57,17 @@ } else tidy_types[index].directory = false; + a = rb->strchr(name, '*'); + if (a) + { + tidy_types[index].pre = a - name; + tidy_types[index].post = rb->strlen(a+1); + } + else + { + tidy_types[index].pre = -1; + tidy_types[index].post = -1; + } } static int find_file_string(const char *file, char *last_group) { @@ -89,9 +103,7 @@ /* shift items up one */ for (i=tidy_type_count;i>idx_last_group;i--) { - rb->strcpy(tidy_types[i].filestring, tidy_types[i-1].filestring); - tidy_types[i].directory = tidy_types[i-1].directory; - tidy_types[i].remove = tidy_types[i-1].remove; + rb->memcpy(&tidy_types[i], &tidy_types[i-1], sizeof(struct tidy_type)); } tidy_type_count++; add_item(file, idx_last_group+1); @@ -132,23 +144,34 @@ return true; } +static bool match(struct tidy_type *tidy_type, char *string, int len) +{ + char *pattern = tidy_type->filestring; + if (tidy_type->pre < 0) + { + /* no '*', just compare. */ + return (rb->strcmp(pattern, string) == 0); + } + /* pattern is too long for the string. avoid 'ab*bc' matching 'abc'. */ + if (len < tidy_type->pre + tidy_type->post) + return false; + /* pattern has '*', compare former part of '*' to the begining of + the string and compare next part of '*' to the end of string. */ + return (rb->strncmp(pattern, string, tidy_type->pre) == 0 && + rb->strcmp(pattern + tidy_type->pre + 1, + string + len - tidy_type->post) == 0); +} + bool tidy_remove_item(char *item, int attr) { int i; - char *file; - bool ret = false, rem = false; + int len; + bool ret = false; + len = rb->strlen(item); for (i=0; ret == false && i < tidy_type_count; i++) { - file = tidy_types[i].filestring; - if (file[rb->strlen(file)-1] == '*') + if (match(&tidy_types[i], item, len)) { - if (!rb->strncmp(file, item, rb->strlen(file)-1)) - rem = true; - } - else if (!rb->strcmp(file, item)) - rem = true; - if (rem) - { if (!tidy_types[i].remove) return false; if (attr&ATTR_DIRECTORY) Index: manual/plugins/disktidy.tex =================================================================== --- manual/plugins/disktidy.tex (リビジョン 28369) +++ manual/plugins/disktidy.tex (作業コピー) @@ -5,6 +5,12 @@ menu and select `Start Cleaning' to begin to process. The settings are stored in \fname{.rockbox/rocks/apps/disktidy.config}, in a plain text file that is user-modifiable to allow more entries to be added. + + You can use up to one '*' as wild-card character which matches any string. + the first '*' is recognized as wild-card character and rest of '*' are literal '*'. + + \warn{Be careful when you use custom entries. + You could accidentally delete important files.} \subsubsection{Available Options} \begin{description}