summaryrefslogtreecommitdiffstats
path: root/src/util/disk_cache.c
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-02-07 09:49:47 +1100
committerTimothy Arceri <[email protected]>2017-02-17 11:18:43 +1100
commit512c046eddc16bec9c309a3c7b4205d94ffc4ef3 (patch)
tree6d9e699edb0f2ac8f1c4dc4a06b48027a23e717c /src/util/disk_cache.c
parent3342ce452cf33dc70ffad03b676579e0631182b3 (diff)
util/disk_cache: add support for removing old versions of the cache
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/util/disk_cache.c')
-rw-r--r--src/util/disk_cache.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/util/disk_cache.c b/src/util/disk_cache.c
index 6ded0d3adac..250c3316244 100644
--- a/src/util/disk_cache.c
+++ b/src/util/disk_cache.c
@@ -24,6 +24,7 @@
#ifdef ENABLE_SHADER_CACHE
#include <ctype.h>
+#include <ftw.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
@@ -131,6 +132,39 @@ concatenate_and_mkdir(void *ctx, char *path, const char *name)
return NULL;
}
+static int
+remove_dir(const char *fpath, const struct stat *sb,
+ int typeflag, struct FTW *ftwbuf)
+{
+ if (S_ISREG(sb->st_mode))
+ unlink(fpath);
+ else if (S_ISDIR(sb->st_mode))
+ rmdir(fpath);
+
+ return 0;
+}
+
+static void
+remove_old_cache_directories(void *mem_ctx, char *path, const char *timestamp)
+{
+ DIR *dir = opendir(path);
+
+ struct dirent* d_entry;
+ while((d_entry = readdir(dir)) != NULL)
+ {
+ struct stat sb;
+ stat(d_entry->d_name, &sb);
+ if (S_ISDIR(sb.st_mode) &&
+ strcmp(d_entry->d_name, timestamp) != 0 &&
+ strcmp(d_entry->d_name, "..") != 0 &&
+ strcmp(d_entry->d_name, ".") != 0) {
+ char *full_path =
+ ralloc_asprintf(mem_ctx, "%s/%s", path, d_entry->d_name);
+ nftw(full_path, remove_dir, 20, FTW_DEPTH);
+ }
+ }
+}
+
static char *
create_mesa_cache_dir(void *mem_ctx, char *path, const char *timestamp,
const char *gpu_name)
@@ -139,6 +173,9 @@ create_mesa_cache_dir(void *mem_ctx, char *path, const char *timestamp,
if (new_path == NULL)
return NULL;
+ /* Remove cache directories for old Mesa versions */
+ remove_old_cache_directories(mem_ctx, new_path, timestamp);
+
new_path = concatenate_and_mkdir(mem_ctx, new_path, timestamp);
if (new_path == NULL)
return NULL;