summaryrefslogtreecommitdiff
path: root/src/attrcache.h
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2014-04-17 11:53:13 -0700
committerRussell Belfer <rb@github.com>2014-04-17 15:04:41 -0700
commit823c0e9cc142529912976f2e6abff3db456cb204 (patch)
treec07051b17bfcff2ef3edc24da05a8bb5ed6616e1 /src/attrcache.h
parente6e8530aa6c8773dd523fd6fe07629b9481a8fee (diff)
downloadlibgit2-823c0e9cc142529912976f2e6abff3db456cb204.tar.gz
Fix broken logic for attr cache invalidation
The checks to see if files were out of date in the attibute cache was wrong because the cache-breaker data wasn't getting stored correctly. Additionally, when the cache-breaker triggered, the old file data was being leaked.
Diffstat (limited to 'src/attrcache.h')
-rw-r--r--src/attrcache.h47
1 files changed, 13 insertions, 34 deletions
diff --git a/src/attrcache.h b/src/attrcache.h
index 8e7f022b0..be0a22f5c 100644
--- a/src/attrcache.h
+++ b/src/attrcache.h
@@ -7,9 +7,8 @@
#ifndef INCLUDE_attrcache_h__
#define INCLUDE_attrcache_h__
-#include "pool.h"
+#include "attr_file.h"
#include "strmap.h"
-#include "buffer.h"
#define GIT_ATTR_CONFIG "core.attributesfile"
#define GIT_IGNORE_CONFIG "core.excludesfile"
@@ -23,55 +22,35 @@ typedef struct {
git_pool pool;
} git_attr_cache;
-extern int git_attr_cache__init(git_repository *repo);
+extern int git_attr_cache__do_init(git_repository *repo);
-typedef enum {
- GIT_ATTR_CACHE__FROM_FILE = 0,
- GIT_ATTR_CACHE__FROM_INDEX = 1,
-
- GIT_ATTR_CACHE_NUM_SOURCES = 2
-} git_attr_cache_source;
-
-typedef struct git_attr_file git_attr_file;
-typedef struct git_attr_rule git_attr_rule;
-
-typedef struct {
- git_attr_file *file[GIT_ATTR_CACHE_NUM_SOURCES];
- const char *path; /* points into fullpath */
- char fullpath[GIT_FLEX_ARRAY];
-} git_attr_cache_entry;
-
-typedef int (*git_attr_cache_parser)(
- git_repository *repo,
- git_attr_file *file,
- const char *data,
- void *payload);
+#define git_attr_cache__init(REPO) \
+ (git_repository_attr_cache(REPO) ? 0 : git_attr_cache__do_init(REPO))
/* get file - loading and reload as needed */
extern int git_attr_cache__get(
git_attr_file **file,
git_repository *repo,
- git_attr_cache_source source,
+ git_attr_file_source source,
const char *base,
const char *filename,
- git_attr_cache_parser parser,
- void *payload);
+ git_attr_file_parser parser);
extern bool git_attr_cache__is_cached(
git_repository *repo,
- git_attr_cache_source source,
+ git_attr_file_source source,
const char *path);
+extern int git_attr_cache__alloc_file_entry(
+ git_attr_file_entry **out,
+ const char *base,
+ const char *path,
+ git_pool *pool);
+
extern int git_attr_cache__insert_macro(
git_repository *repo, git_attr_rule *macro);
extern git_attr_rule *git_attr_cache__lookup_macro(
git_repository *repo, const char *name);
-extern int git_attr_cache_entry__new(
- git_attr_cache_entry **out,
- const char *base,
- const char *path,
- git_pool *pool);
-
#endif