From 5cbc889868ed0c69efad27537c0cc793b534a870 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Wed, 28 Aug 2019 20:26:41 -0700 Subject: [PATCH] Added caching support do dmenu --- src/wofi.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/wofi.c b/src/wofi.c index c232416..35b679b 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -202,10 +202,9 @@ static struct wl_list* read_cache(char* mode) { return cache; } -static void* do_run(void* data) { - (void) data; +static struct map* load_cache(char* mode) { struct map* cached = map_init(); - struct wl_list* cache = read_cache("run"); + struct wl_list* cache = read_cache(mode); struct cache_line* node, *tmp; wl_list_for_each_reverse_safe(node, tmp, cache, link) { struct node* label = malloc(sizeof(struct node)); @@ -227,7 +226,12 @@ static void* do_run(void* data) { free(node); } free(cache); + return cached; +} +static void* do_run(void* data) { + (void) data; + struct map* cached = load_cache("run"); char* path = strdup(getenv("PATH")); char* original_path = path; size_t colon_count = utils_split(path, ':'); @@ -265,6 +269,7 @@ static void* do_run(void* data) { static void* do_dmenu(void* data) { (void) data; + struct map* cached = load_cache("dmenu"); char* line; size_t size = 0; while(getline(&line, &size, stdin) != -1) { @@ -272,6 +277,9 @@ static void* do_dmenu(void* data) { if(lf != NULL) { *lf = 0; } + if(map_contains(cached, line)) { + continue; + } struct node* node = malloc(sizeof(struct node)); node->text = strdup(line); node->action = strdup(line);