aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-02-21 00:59:16 -0600
committerJesse Luehrs <doy@tozt.net>2012-02-21 01:32:59 -0600
commit8e7f8c02a1c6f1a916376f43cbce1271225c2ec7 (patch)
tree6b86ca3e365991327af78054370976c4903488ba /util.c
parent2077fd91caaa678de78e7b599def61f89306f2b8 (diff)
downloaddzen-8e7f8c02a1c6f1a916376f43cbce1271225c2ec7.tar.gz
dzen-8e7f8c02a1c6f1a916376f43cbce1271225c2ec7.zip
cache return values of XAllocNamedColor
round trip to the server on every color lookup is pretty bad
Diffstat (limited to 'util.c')
-rw-r--r--util.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/util.c b/util.c
index 4569aa9..e276aaf 100644
--- a/util.c
+++ b/util.c
@@ -13,6 +13,11 @@
#include <sys/wait.h>
#include <unistd.h>
+#define COLORCACHE_MAX 256
+
+static char *colorcache_names[COLORCACHE_MAX];
+static long colorcache_values[COLORCACHE_MAX];
+
#define ONEMASK ((size_t)(-1) / 0xFF)
void *
@@ -64,3 +69,29 @@ spawn(const char *arg) {
wait(0);
}
+long colorcache_get(const char *name) {
+ int i;
+
+ for (i = 0; i < COLORCACHE_MAX; ++i) {
+ if (!colorcache_names[i])
+ break;
+ if (!strcmp(colorcache_names[i], name))
+ return colorcache_values[i];
+ }
+
+ return -1;
+}
+
+void colorcache_set(const char *name, long value) {
+ int i;
+
+ for (i = 0; i < COLORCACHE_MAX; ++i)
+ if (!colorcache_names[i])
+ break;
+
+ if (i >= COLORCACHE_MAX)
+ return;
+
+ colorcache_names[i] = strdup(name);
+ colorcache_values[i] = value;
+}