Pass dirs to desktop cache process as arguments

And store the extra dirs in the desktop eet cache.

SVN revision: 56910
This commit is contained in:
Sebastian Dransfeld 2011-02-10 14:25:23 +00:00
parent c5669b308e
commit b17640ba62
6 changed files with 171 additions and 208 deletions

View File

@ -73,3 +73,4 @@
* Free hashes on init error * Free hashes on init error
* efreet_cache_icon -> efreet_icon for functions in efreet_icon.c * efreet_cache_icon -> efreet_icon for functions in efreet_icon.c
* Fix memleak in desktop cache create * Fix memleak in desktop cache create
* Pass dirs to desktop cache process as arguments

View File

@ -44,7 +44,7 @@ static int verbose = 0;
static int static int
strcmplen(const void *data1, const void *data2) strcmplen(const void *data1, const void *data2)
{ {
return strncmp(data1, data2, eina_stringshare_strlen(data2)); return strncmp(data1, data2, eina_stringshare_strlen(data1));
} }
static int static int
@ -223,17 +223,21 @@ main(int argc, char **argv)
*/ */
Efreet_Cache_Hash hash; Efreet_Cache_Hash hash;
Efreet_Cache_Version version; Efreet_Cache_Version version;
Eina_List *dirs = NULL, *user_dirs = NULL; Eina_List *dirs = NULL;
Eina_List *scanned = NULL;
Efreet_Cache_Array_String *user_dirs = NULL;
Eina_List *extra_dirs = NULL;
Eina_List *store_dirs = NULL;
int priority = 0; int priority = 0;
char *dir = NULL; char *dir = NULL;
char *path; char *path;
int lockfd = -1, tmpfd, dirsfd = -1; int lockfd = -1, tmpfd;
struct stat st;
int changed = 0; int changed = 0;
int i; int i;
char file[PATH_MAX] = { '\0' }; char file[PATH_MAX] = { '\0' };
char util_file[PATH_MAX] = { '\0' }; char util_file[PATH_MAX] = { '\0' };
if (!eina_init()) goto eina_error;
for (i = 1; i < argc; i++) for (i = 1; i < argc; i++)
{ {
@ -244,12 +248,19 @@ main(int argc, char **argv)
(!strcmp(argv[i], "--help"))) (!strcmp(argv[i], "--help")))
{ {
printf("Options:\n"); printf("Options:\n");
printf(" -v Verbose mode\n"); printf(" -v Verbose mode\n");
printf(" -d dir1 dir2 Extra dirs\n");
exit(0); exit(0);
} }
else if (!strcmp(argv[i], "-d"))
{
while ((i < (argc - 1)) && (argv[(i + 1)][0] != '-'))
extra_dirs = eina_list_append(extra_dirs, argv[++i]);
}
} }
extra_dirs = eina_list_sort(extra_dirs, -1, EINA_COMPARE_CB(strcmp));
/* init external subsystems */ /* init external subsystems */
if (!eina_init()) goto eina_error;
if (!eet_init()) goto eet_error; if (!eet_init()) goto eet_error;
if (!ecore_init()) goto ecore_error; if (!ecore_init()) goto ecore_error;
@ -272,6 +283,14 @@ main(int argc, char **argv)
edd = efreet_desktop_edd(); edd = efreet_desktop_edd();
if (!edd) goto edd_error; if (!edd) goto edd_error;
/* read user dirs from old cache */
ef = eet_open(efreet_desktop_cache_file(), EET_FILE_MODE_READ);
if (ef)
{
user_dirs = eet_data_read(ef, efreet_array_string_edd(), EFREET_CACHE_DESKTOP_DIRS);
eet_close(ef);
}
/* create cache */ /* create cache */
snprintf(file, sizeof(file), "%s.XXXXXX", efreet_desktop_cache_file()); snprintf(file, sizeof(file), "%s.XXXXXX", efreet_desktop_cache_file());
tmpfd = mkstemp(file); tmpfd = mkstemp(file);
@ -312,66 +331,74 @@ main(int argc, char **argv)
"applications"); "applications");
if (!dirs) goto error; if (!dirs) goto error;
dirsfd = open(efreet_desktop_cache_dirs(), O_APPEND | O_RDWR, S_IRUSR | S_IWUSR);
if (dirsfd >= 0)
{
if ((fstat(dirsfd, &st) == 0) && (st.st_size > 0))
{
char *p;
char *map;
map = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, dirsfd, 0);
if (map == MAP_FAILED) goto error;
p = map;
while (p < map + st.st_size)
{
unsigned int size = *(unsigned int *)p;
p += sizeof(unsigned int);
user_dirs = eina_list_append(user_dirs, eina_stringshare_add(p));
p += size;
}
munmap(map, st.st_size);
}
close(dirsfd);
dirsfd = -1;
unlink(efreet_desktop_cache_dirs());
}
EINA_LIST_FREE(dirs, path) EINA_LIST_FREE(dirs, path)
{ {
char file_id[PATH_MAX] = { '\0' }; char file_id[PATH_MAX] = { '\0' };
Eina_List *l;
if (!cache_scan(path, file_id, priority++, 1, &changed)) goto error; if (!cache_scan(path, file_id, priority++, 1, &changed)) goto error;
l = eina_list_search_unsorted_list(user_dirs, strcmplen, path); scanned = eina_list_append(scanned, path);
if (l)
{
eina_stringshare_del(eina_list_data_get(l));
user_dirs = eina_list_remove_list(user_dirs, l);
}
eina_stringshare_del(path);
} }
if (user_dirs) if (user_dirs)
{ {
dirsfd = open(efreet_desktop_cache_dirs(), O_CREAT | O_APPEND | O_WRONLY, S_IRUSR | S_IWUSR); unsigned int j;
if (dirsfd < 0) goto error;
efreet_fsetowner(dirsfd); for (j = 0; j < user_dirs->array_count; j++)
EINA_LIST_FREE(user_dirs, dir)
{ {
unsigned int size = strlen(dir) + 1; Eina_List *l;
size_t count;
count = write(dirsfd, &size, sizeof(int)); l = eina_list_search_unsorted_list(scanned, strcmplen, user_dirs->array[j]);
count += write(dirsfd, dir, size); if (l) continue;
if (!ecore_file_is_dir(user_dirs->array[j])) continue;
if (!cache_scan(user_dirs->array[j], NULL, priority, 0, &changed)) goto error;
scanned = eina_list_append(scanned, eina_stringshare_add(user_dirs->array[j]));
if (count != sizeof (int) + size) store_dirs = eina_list_append(store_dirs, user_dirs->array[j]);
printf("Didn't write all data on dirsfd");
if (!cache_scan(dir, NULL, priority, 0, &changed)) goto error;
eina_stringshare_del(dir);
} }
close(dirsfd); store_dirs = eina_list_sort(store_dirs, -1, EINA_COMPARE_CB(strcmp));
dirsfd = -1; }
if (extra_dirs)
{
Eina_List *l;
EINA_LIST_FOREACH(extra_dirs, l, path)
{
Eina_List *ll;
ll = eina_list_search_unsorted_list(scanned, strcmplen, path);
if (ll) continue;
if (!ecore_file_is_dir(path)) continue;
/* If we scan a passed dir, we must have changed */
changed = 1;
if (!cache_scan(path, NULL, priority, 0, &changed)) goto error;
store_dirs = eina_list_append(store_dirs, path);
}
store_dirs = eina_list_sort(store_dirs, -1, EINA_COMPARE_CB(strcmp));
}
if (user_dirs)
{
IF_FREE(user_dirs->array);
free(user_dirs);
}
/* store user dirs */
if (store_dirs)
{
Eina_List *l;
user_dirs = NEW(Efreet_Cache_Array_String, 1);
user_dirs->array = NEW(char *, eina_list_count(store_dirs));
user_dirs->array_count = 0;
EINA_LIST_FOREACH(store_dirs, l, path)
user_dirs->array[user_dirs->array_count++] = path;
eet_data_write(ef, efreet_array_string_edd(), EFREET_CACHE_DESKTOP_DIRS, user_dirs, 1);
IF_FREE(user_dirs->array);
free(user_dirs);
} }
/* store util */ /* store util */
@ -473,6 +500,10 @@ main(int argc, char **argv)
if (write(tmpfd, "a", 1) != 1) perror("write"); if (write(tmpfd, "a", 1) != 1) perror("write");
close(tmpfd); close(tmpfd);
} }
EINA_LIST_FREE(scanned, dir)
eina_stringshare_del(dir);
eina_list_free(extra_dirs);
eina_list_free(store_dirs);
efreet_shutdown(); efreet_shutdown();
ecore_shutdown(); ecore_shutdown();
eet_shutdown(); eet_shutdown();
@ -480,15 +511,19 @@ main(int argc, char **argv)
close(lockfd); close(lockfd);
return 0; return 0;
error: error:
if (dirsfd >= 0) close(dirsfd);
IF_FREE(dir); IF_FREE(dir);
edd_error: edd_error:
if (user_dirs) efreet_cache_array_string_free(user_dirs);
efreet_shutdown(); efreet_shutdown();
efreet_error: efreet_error:
ecore_shutdown(); ecore_shutdown();
ecore_error: ecore_error:
eet_shutdown(); eet_shutdown();
eet_error: eet_error:
EINA_LIST_FREE(scanned, dir)
eina_stringshare_del(dir);
eina_list_free(extra_dirs);
eina_list_free(store_dirs);
eina_shutdown(); eina_shutdown();
eina_error: eina_error:
if (lockfd >= 0) close(lockfd); if (lockfd >= 0) close(lockfd);

View File

@ -7,6 +7,7 @@
* browsing. * browsing.
*/ */
#include <libgen.h>
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -61,8 +62,8 @@ static Eet_Data_Descriptor *hash_array_string_edd = NULL;
static Eet_Data_Descriptor *array_string_edd = NULL; static Eet_Data_Descriptor *array_string_edd = NULL;
static Eet_Data_Descriptor *hash_string_edd = NULL; static Eet_Data_Descriptor *hash_string_edd = NULL;
static Efreet_Cache_Array_String *desktop_dirs = NULL;
static Eet_File *desktop_cache = NULL; static Eet_File *desktop_cache = NULL;
static const char *desktop_cache_dirs = NULL;
static const char *desktop_cache_file = NULL; static const char *desktop_cache_file = NULL;
static Ecore_File_Monitor *cache_monitor = NULL; static Ecore_File_Monitor *cache_monitor = NULL;
@ -175,9 +176,10 @@ efreet_cache_shutdown(void)
IF_FREE_HASH(icons); IF_FREE_HASH(icons);
IF_FREE_HASH(fallbacks); IF_FREE_HASH(fallbacks);
efreet_cache_array_string_free(desktop_dirs);
desktop_dirs = NULL;
desktop_cache = efreet_cache_close(desktop_cache); desktop_cache = efreet_cache_close(desktop_cache);
IF_RELEASE(desktop_cache_file); IF_RELEASE(desktop_cache_file);
IF_RELEASE(desktop_cache_dirs);
if (cache_exe_handler) ecore_event_handler_del(cache_exe_handler); if (cache_exe_handler) ecore_event_handler_del(cache_exe_handler);
cache_exe_handler = NULL; cache_exe_handler = NULL;
@ -401,22 +403,6 @@ efreet_desktop_cache_file(void)
return desktop_cache_file; return desktop_cache_file;
} }
/*
* Needs EAPI because of helper binaries
*/
EAPI const char *
efreet_desktop_cache_dirs(void)
{
char tmp[PATH_MAX] = { '\0' };
if (desktop_cache_dirs) return desktop_cache_dirs;
snprintf(tmp, sizeof(tmp), "%s/efreet/desktop_dirs.cache", efreet_cache_home_get());
desktop_cache_dirs = eina_stringshare_add(tmp);
return desktop_cache_dirs;
}
#define EDD_SHUTDOWN(Edd) \ #define EDD_SHUTDOWN(Edd) \
if (Edd) eet_data_descriptor_free(Edd); \ if (Edd) eet_data_descriptor_free(Edd); \
Edd = NULL; Edd = NULL;
@ -825,6 +811,55 @@ efreet_cache_desktop_free(Efreet_Desktop *desktop)
} }
} }
void
efreet_cache_desktop_add(Efreet_Desktop *desktop)
{
char buf[PATH_MAX];
char *p;
Efreet_Cache_Array_String *arr;
const char **tmp;
/*
* Read file from disk, save path in cache so it will be included in next
* cache update
*/
strncpy(buf, desktop->orig_path, PATH_MAX);
buf[PATH_MAX - 1] = '\0';
p = dirname(buf);
arr = efreet_cache_desktop_dirs();
if (arr)
{
unsigned int i;
for (i = 0; i < arr->array_count; i++)
{
/* Check if we already have this dir in cache */
if (!strcmp(p, arr->array[i]))
return;
}
}
/* TODO: We leak this data, remember and clean up on shutdown */
if (!arr)
desktop_dirs = arr = NEW(Efreet_Cache_Array_String, 1);
tmp = realloc(arr->array, sizeof (char *) * (arr->array_count + 1));
if (!tmp) return;
arr->array = tmp;
arr->array[arr->array_count++] = strdup(p);
efreet_cache_desktop_update();
}
Efreet_Cache_Array_String *
efreet_cache_desktop_dirs(void)
{
if (desktop_dirs) return desktop_dirs;
if (!efreet_cache_check(&desktop_cache, efreet_desktop_cache_file(), EFREET_DESKTOP_CACHE_MAJOR)) return NULL;
desktop_dirs = eet_data_read(desktop_cache, efreet_array_string_edd(), EFREET_CACHE_DESKTOP_DIRS);
return desktop_dirs;
}
void void
efreet_cache_desktop_update(void) efreet_cache_desktop_update(void)
{ {
@ -991,6 +1026,8 @@ cache_update_cb(void *data __UNUSED__, Ecore_File_Monitor *em __UNUSED__,
d->ef = desktop_cache; d->ef = desktop_cache;
old_desktop_caches = eina_list_append(old_desktop_caches, d); old_desktop_caches = eina_list_append(old_desktop_caches, d);
efreet_cache_array_string_free(desktop_dirs);
desktop_dirs = NULL;
efreet_desktop_cache = eina_hash_string_superfast_new(NULL); efreet_desktop_cache = eina_hash_string_superfast_new(NULL);
desktop_cache = NULL; desktop_cache = NULL;
@ -1066,8 +1103,6 @@ desktop_cache_update_cache_job(void *data __UNUSED__)
/* TODO: Retry update cache later */ /* TODO: Retry update cache later */
if (desktop_cache_exe_lock > 0) return; if (desktop_cache_exe_lock > 0) return;
if (!efreet_desktop_write_cache_dirs_file()) return;
snprintf(file, sizeof(file), "%s/efreet/desktop_exec.lock", efreet_cache_home_get()); snprintf(file, sizeof(file), "%s/efreet/desktop_exec.lock", efreet_cache_home_get());
desktop_cache_exe_lock = open(file, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR); desktop_cache_exe_lock = open(file, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
@ -1079,7 +1114,20 @@ desktop_cache_update_cache_job(void *data __UNUSED__)
if (fcntl(desktop_cache_exe_lock, F_SETLK, &fl) < 0) goto error; if (fcntl(desktop_cache_exe_lock, F_SETLK, &fl) < 0) goto error;
prio = ecore_exe_run_priority_get(); prio = ecore_exe_run_priority_get();
ecore_exe_run_priority_set(19); ecore_exe_run_priority_set(19);
desktop_cache_exe = ecore_exe_run(PACKAGE_LIB_DIR "/efreet/efreet_desktop_cache_create", NULL); eina_strlcpy(file, PACKAGE_LIB_DIR "/efreet/efreet_desktop_cache_create", sizeof(file));
if (desktop_dirs && desktop_dirs->array_count > 0)
{
unsigned int i;
eina_strlcat(file, " -d", sizeof(file));
for (i = 0; i < desktop_dirs->array_count; i++)
{
eina_strlcat(file, " ", sizeof(file));
eina_strlcat(file, desktop_dirs->array[i], sizeof(file));
}
}
printf("Run desktop cache creation: %s\n", file);
desktop_cache_exe = ecore_exe_run(file, NULL);
ecore_exe_run_priority_set(prio); ecore_exe_run_priority_set(prio);
if (!desktop_cache_exe) goto error; if (!desktop_cache_exe) goto error;

View File

@ -11,6 +11,7 @@
#define EFREET_CACHE_VERSION "__efreet//version" #define EFREET_CACHE_VERSION "__efreet//version"
#define EFREET_CACHE_ICON_FALLBACK "__efreet_fallback" #define EFREET_CACHE_ICON_FALLBACK "__efreet_fallback"
#define EFREET_CACHE_DESKTOP_DIRS "__efreet//desktop_dirs"
EAPI const char *efreet_desktop_util_cache_file(void); EAPI const char *efreet_desktop_util_cache_file(void);
EAPI const char *efreet_desktop_cache_file(void); EAPI const char *efreet_desktop_cache_file(void);

View File

@ -20,7 +20,6 @@ extern "C"
void *alloca (size_t); void *alloca (size_t);
#endif #endif
#include <libgen.h>
#include <unistd.h> #include <unistd.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/mman.h> #include <sys/mman.h>
@ -52,11 +51,6 @@ Eina_Hash *efreet_desktop_cache = NULL;
*/ */
static const char *desktop_environment = NULL; static const char *desktop_environment = NULL;
/**
* A cache of all unknown desktop dirs
*/
static Eina_List *efreet_desktop_dirs = NULL;
/** /**
* A list of the desktop types available * A list of the desktop types available
*/ */
@ -164,14 +158,11 @@ void
efreet_desktop_shutdown(void) efreet_desktop_shutdown(void)
{ {
Efreet_Desktop_Type_Info *info; Efreet_Desktop_Type_Info *info;
char *dir;
IF_RELEASE(desktop_environment); IF_RELEASE(desktop_environment);
IF_FREE_HASH(efreet_desktop_cache); IF_FREE_HASH(efreet_desktop_cache);
EINA_LIST_FREE(efreet_desktop_types, info) EINA_LIST_FREE(efreet_desktop_types, info)
efreet_desktop_type_info_free(info); efreet_desktop_type_info_free(info);
EINA_LIST_FREE(efreet_desktop_dirs, dir)
eina_stringshare_del(dir);
IF_FREE_HASH(change_monitors); IF_FREE_HASH(change_monitors);
#ifdef HAVE_EVIL #ifdef HAVE_EVIL
evil_sockets_shutdown(); evil_sockets_shutdown();
@ -223,21 +214,7 @@ efreet_desktop_get(const char *file)
if (!desktop) return NULL; if (!desktop) return NULL;
if (!desktop->eet) if (!desktop->eet)
{ efreet_cache_desktop_add(desktop);
char buf[PATH_MAX];
char *p;
/*
* Read file from disk, save path in cache so it will be included in next
* cache update
*/
strncpy(buf, desktop->orig_path, PATH_MAX);
buf[PATH_MAX - 1] = '\0';
p = dirname(buf);
if (!eina_list_search_unsorted(efreet_desktop_dirs, EINA_COMPARE_CB(strcmp), p))
efreet_desktop_dirs = eina_list_append(efreet_desktop_dirs, eina_stringshare_add(p));
efreet_cache_desktop_update();
}
if (efreet_desktop_cache) eina_hash_direct_add(efreet_desktop_cache, desktop->orig_path, desktop); if (efreet_desktop_cache) eina_hash_direct_add(efreet_desktop_cache, desktop->orig_path, desktop);
desktop->cached = 1; desktop->cached = 1;
@ -777,83 +754,6 @@ efreet_desktop_string_list_join(Eina_List *list)
return string; return string;
} }
int
efreet_desktop_write_cache_dirs_file(void)
{
char file[PATH_MAX];
int fd = -1;
int cachefd = -1;
char *dir;
struct stat st;
struct flock fl;
if (!efreet_desktop_dirs) return 1;
snprintf(file, sizeof(file), "%s/desktop_data.lock", efreet_cache_home_get());
fd = open(file, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
if (fd < 0) return 0;
efreet_fsetowner(fd);
/* TODO: Retry update cache later */
memset(&fl, 0, sizeof(struct flock));
fl.l_type = F_WRLCK;
fl.l_whence = SEEK_SET;
if (fcntl(fd, F_SETLK, &fl) < 0) goto error;
cachefd = open(efreet_desktop_cache_dirs(), O_CREAT | O_APPEND | O_RDWR, S_IRUSR | S_IWUSR);
if (cachefd < 0) goto error;
efreet_fsetowner(cachefd);
if (fstat(cachefd, &st) < 0) goto error;
if (st.st_size > 0)
{
Eina_List *l, *ln;
char *p;
char *map;
map = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, cachefd, 0);
if (map == MAP_FAILED) goto error;
p = map;
while (p < map + st.st_size)
{
unsigned int size = *(unsigned int *)p;
p += sizeof(unsigned int);
EINA_LIST_FOREACH_SAFE(efreet_desktop_dirs, l, ln, dir)
{
if (!strcmp(dir, p))
{
efreet_desktop_dirs = eina_list_remove_list(efreet_desktop_dirs, l);
eina_stringshare_del(dir);
break;
}
}
p += size;
}
munmap(map, st.st_size);
}
EINA_LIST_FREE(efreet_desktop_dirs, dir)
{
unsigned int size = strlen(dir) + 1;
size_t count;
count = write(cachefd, &size, sizeof(int));
count += write(cachefd, dir, size);
if (count != sizeof(int) + size)
DBG("Didn't write all data on cachefd");
efreet_desktop_changes_monitor_add(dir);
eina_stringshare_del(dir);
}
efreet_desktop_dirs = NULL;
if (fd >= 0) close(fd);
if (cachefd >= 0) close(cachefd);
return 1;
error:
if (fd >= 0) close(fd);
if (cachefd >= 0) close(cachefd);
return 0;
}
/** /**
* @internal * @internal
* @param desktop The desktop to check * @param desktop The desktop to check
@ -1267,10 +1167,9 @@ efreet_desktop_environment_check(Efreet_Desktop *desktop)
static void static void
efreet_desktop_changes_listen(void) efreet_desktop_changes_listen(void)
{ {
int dirsfd = -1; Efreet_Cache_Array_String *arr;
Eina_List *dirs; Eina_List *dirs;
char *path; const char *path;
struct stat st;
if (!efreet_cache_update) return; if (!efreet_cache_update) return;
@ -1287,33 +1186,14 @@ efreet_desktop_changes_listen(void)
eina_stringshare_del(path); eina_stringshare_del(path);
} }
dirsfd = open(efreet_desktop_cache_dirs(), O_RDONLY, S_IRUSR | S_IWUSR); arr = efreet_cache_desktop_dirs();
if (dirsfd >= 0) if (arr)
{ {
if ((fstat(dirsfd, &st) == 0) && (st.st_size > 0)) unsigned int i;
{
char *p;
char *map;
map = mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, dirsfd, 0); for (i = 0; i < arr->array_count; i++)
if (map == MAP_FAILED) goto error; efreet_desktop_changes_monitor_add(arr->array[i]);
p = map;
while (p < map + st.st_size)
{
unsigned int size = *(unsigned int *)p;
p += sizeof(unsigned int);
if (ecore_file_is_dir(p))
efreet_desktop_changes_monitor_add(p);
p += size;
}
munmap(map, st.st_size);
}
close(dirsfd);
} }
return;
error:
if (dirsfd >= 0) close(dirsfd);
} }
static void static void

View File

@ -180,15 +180,13 @@ size_t efreet_array_cat(char *buffer, size_t size, const char *strs[]);
const char *efreet_desktop_environment_get(void); const char *efreet_desktop_environment_get(void);
/* TODO: Find the best placement for these */
EAPI const char *efreet_desktop_cache_dirs(void);
int efreet_desktop_write_cache_dirs_file(void);
void efreet_cache_desktop_update(void); void efreet_cache_desktop_update(void);
void efreet_cache_icon_update(void); void efreet_cache_icon_update(void);
Efreet_Desktop *efreet_cache_desktop_find(const char *file); Efreet_Desktop *efreet_cache_desktop_find(const char *file);
void efreet_cache_desktop_free(Efreet_Desktop *desktop); void efreet_cache_desktop_free(Efreet_Desktop *desktop);
void efreet_cache_desktop_add(Efreet_Desktop *desktop);
Efreet_Cache_Array_String *efreet_cache_desktop_dirs(void);
Efreet_Cache_Icon *efreet_cache_icon_find(Efreet_Icon_Theme *theme, const char *icon); Efreet_Cache_Icon *efreet_cache_icon_find(Efreet_Icon_Theme *theme, const char *icon);
Efreet_Cache_Fallback_Icon *efreet_cache_icon_fallback_find(const char *icon); Efreet_Cache_Fallback_Icon *efreet_cache_icon_fallback_find(const char *icon);