]> git.proxmox.com Git - libgit2.git/blame - src/cache.c
Merge pull request #2508 from libgit2/rb/fix-ignore-slash-star
[libgit2.git] / src / cache.c
CommitLineData
bb3de0c4 1/*
359fc2d2 2 * Copyright (C) the libgit2 contributors. All rights reserved.
bb3de0c4 3 *
bb742ede
VM
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
bb3de0c4
VM
6 */
7
8#include "common.h"
9#include "repository.h"
10#include "commit.h"
11#include "thread-utils.h"
25f258e7 12#include "util.h"
bb3de0c4 13#include "cache.h"
5df18424
VM
14#include "odb.h"
15#include "object.h"
c07d9c95 16#include "git2/oid.h"
bb3de0c4 17
5df18424 18GIT__USE_OIDMAP
bb3de0c4 19
ee12272d 20bool git_cache__enabled = true;
eb63fda2
ET
21ssize_t git_cache__max_storage = (256 * 1024 * 1024);
22git_atomic_ssize git_cache__current_storage = {0};
ee12272d 23
b12b72ea
RB
24static size_t git_cache__max_object_size[8] = {
25 0, /* GIT_OBJ__EXT1 */
064236ca
VM
26 4096, /* GIT_OBJ_COMMIT */
27 4096, /* GIT_OBJ_TREE */
b12b72ea 28 0, /* GIT_OBJ_BLOB */
064236ca 29 4096, /* GIT_OBJ_TAG */
b12b72ea
RB
30 0, /* GIT_OBJ__EXT2 */
31 0, /* GIT_OBJ_OFS_DELTA */
32 0 /* GIT_OBJ_REF_DELTA */
6b90e244
VM
33};
34
b12b72ea
RB
35int git_cache_set_max_object_size(git_otype type, size_t size)
36{
37 if (type < 0 || (size_t)type >= ARRAY_SIZE(git_cache__max_object_size)) {
38 giterr_set(GITERR_INVALID, "type out of range");
39 return -1;
40 }
41
42 git_cache__max_object_size[type] = size;
43 return 0;
44}
45
d9d423e4
VM
46void git_cache_dump_stats(git_cache *cache)
47{
48 git_cached_obj *object;
49
50 if (kh_size(cache->map) == 0)
51 return;
52
53 printf("Cache %p: %d items cached, %d bytes\n",
54 cache, kh_size(cache->map), (int)cache->used_memory);
55
56 kh_foreach_value(cache->map, object, {
57 char oid_str[9];
58 printf(" %s%c %s (%d)\n",
59 git_object_type2string(object->type),
60 object->flags == GIT_CACHE_STORE_PARSED ? '*' : ' ',
61 git_oid_tostr(oid_str, sizeof(oid_str), &object->oid),
62 (int)object->size
63 );
64 });
65}
66
5df18424
VM
67int git_cache_init(git_cache *cache)
68{
f658dc43 69 memset(cache, 0, sizeof(*cache));
5df18424 70 cache->map = git_oidmap_alloc();
1a42dd17
RB
71 if (git_mutex_init(&cache->lock)) {
72 giterr_set(GITERR_OS, "Failed to initialize cache mutex");
73 return -1;
74 }
0d0fa7c3 75 return 0;
bb3de0c4
VM
76}
77
d8771592
VM
78/* called with lock */
79static void clear_cache(git_cache *cache)
e183e375
VM
80{
81 git_cached_obj *evict = NULL;
82
879458e7
VM
83 if (kh_size(cache->map) == 0)
84 return;
85
e183e375
VM
86 kh_foreach_value(cache->map, evict, {
87 git_cached_obj_decref(evict);
88 });
89
90 kh_clear(oid, cache->map);
eb63fda2 91 git_atomic_ssize_add(&git_cache__current_storage, -cache->used_memory);
e183e375 92 cache->used_memory = 0;
d8771592
VM
93}
94
95void git_cache_clear(git_cache *cache)
96{
97 if (git_mutex_lock(&cache->lock) < 0)
98 return;
99
100 clear_cache(cache);
e183e375
VM
101
102 git_mutex_unlock(&cache->lock);
103}
104
78606263
RB
105void git_cache_free(git_cache *cache)
106{
107 git_cache_clear(cache);
78606263
RB
108 git_oidmap_free(cache->map);
109 git_mutex_free(&cache->lock);
6de9b2ee 110 git__memzero(cache, sizeof(*cache));
78606263
RB
111}
112
d8771592
VM
113/* Called with lock */
114static void cache_evict_entries(git_cache *cache)
c4e91d45
VM
115{
116 uint32_t seed = rand();
eb63fda2
ET
117 size_t evict_count = 8;
118 ssize_t evicted_memory = 0;
c4e91d45
VM
119
120 /* do not infinite loop if there's not enough entries to evict */
e183e375 121 if (evict_count > kh_size(cache->map)) {
d8771592 122 clear_cache(cache);
c4e91d45 123 return;
e183e375 124 }
c4e91d45 125
064236ca 126 while (evict_count > 0) {
c4e91d45
VM
127 khiter_t pos = seed++ % kh_end(cache->map);
128
129 if (kh_exist(cache->map, pos)) {
064236ca
VM
130 git_cached_obj *evict = kh_val(cache->map, pos);
131
132 evict_count--;
a14163a7 133 evicted_memory += evict->size;
064236ca
VM
134 git_cached_obj_decref(evict);
135
c4e91d45 136 kh_del(oid, cache->map, pos);
c4e91d45
VM
137 }
138 }
a14163a7
VM
139
140 cache->used_memory -= evicted_memory;
eb63fda2 141 git_atomic_ssize_add(&git_cache__current_storage, -evicted_memory);
c4e91d45
VM
142}
143
6b90e244 144static bool cache_should_store(git_otype object_type, size_t object_size)
bb3de0c4 145{
064236ca 146 size_t max_size = git_cache__max_object_size[object_type];
ee12272d 147 return git_cache__enabled && object_size < max_size;
5df18424 148}
bb3de0c4 149
5df18424
VM
150static void *cache_get(git_cache *cache, const git_oid *oid, unsigned int flags)
151{
152 khiter_t pos;
153 git_cached_obj *entry = NULL;
bb3de0c4 154
ee12272d 155 if (!git_cache__enabled || git_mutex_lock(&cache->lock) < 0)
a35b3864 156 return NULL;
a35b3864 157
5df18424
VM
158 pos = kh_get(oid, cache->map, oid);
159 if (pos != kh_end(cache->map)) {
160 entry = kh_val(cache->map, pos);
e4b4da14 161
5df18424
VM
162 if (flags && entry->flags != flags) {
163 entry = NULL;
164 } else {
165 git_cached_obj_incref(entry);
bb3de0c4 166 }
bb3de0c4 167 }
5df18424 168
e4b4da14 169 git_mutex_unlock(&cache->lock);
bb3de0c4 170
5df18424 171 return entry;
bb3de0c4
VM
172}
173
5df18424 174static void *cache_store(git_cache *cache, git_cached_obj *entry)
bb3de0c4 175{
5df18424 176 khiter_t pos;
bb3de0c4 177
064236ca
VM
178 git_cached_obj_incref(entry);
179
2e62e7c2
RB
180 if (!git_cache__enabled && cache->used_memory > 0) {
181 git_cache_clear(cache);
182 return entry;
183 }
184
064236ca
VM
185 if (!cache_should_store(entry->type, entry->size))
186 return entry;
187
5df18424
VM
188 if (git_mutex_lock(&cache->lock) < 0)
189 return entry;
e4b4da14 190
a14163a7
VM
191 /* soften the load on the cache */
192 if (git_cache__current_storage.val > git_cache__max_storage)
d8771592
VM
193 cache_evict_entries(cache);
194
5df18424 195 pos = kh_get(oid, cache->map, &entry->oid);
1d009603 196
5df18424
VM
197 /* not found */
198 if (pos == kh_end(cache->map)) {
199 int rval;
a35b3864 200
5df18424
VM
201 pos = kh_put(oid, cache->map, &entry->oid, &rval);
202 if (rval >= 0) {
203 kh_key(cache->map, pos) = &entry->oid;
204 kh_val(cache->map, pos) = entry;
205 git_cached_obj_incref(entry);
064236ca 206 cache->used_memory += entry->size;
eb63fda2 207 git_atomic_ssize_add(&git_cache__current_storage, (ssize_t)entry->size);
5df18424
VM
208 }
209 }
210 /* found */
211 else {
212 git_cached_obj *stored_entry = kh_val(cache->map, pos);
213
214 if (stored_entry->flags == entry->flags) {
215 git_cached_obj_decref(entry);
216 git_cached_obj_incref(stored_entry);
217 entry = stored_entry;
218 } else if (stored_entry->flags == GIT_CACHE_STORE_RAW &&
219 entry->flags == GIT_CACHE_STORE_PARSED) {
220 git_cached_obj_decref(stored_entry);
221 git_cached_obj_incref(entry);
222
223 kh_key(cache->map, pos) = &entry->oid;
224 kh_val(cache->map, pos) = entry;
e4b4da14 225 } else {
5df18424 226 /* NO OP */
e4b4da14 227 }
bb3de0c4
VM
228 }
229
5df18424 230 git_mutex_unlock(&cache->lock);
bb3de0c4
VM
231 return entry;
232}
5df18424
VM
233
234void *git_cache_store_raw(git_cache *cache, git_odb_object *entry)
235{
236 entry->cached.flags = GIT_CACHE_STORE_RAW;
237 return cache_store(cache, (git_cached_obj *)entry);
238}
239
240void *git_cache_store_parsed(git_cache *cache, git_object *entry)
241{
242 entry->cached.flags = GIT_CACHE_STORE_PARSED;
243 return cache_store(cache, (git_cached_obj *)entry);
244}
245
246git_odb_object *git_cache_get_raw(git_cache *cache, const git_oid *oid)
247{
248 return cache_get(cache, oid, GIT_CACHE_STORE_RAW);
249}
250
251git_object *git_cache_get_parsed(git_cache *cache, const git_oid *oid)
252{
253 return cache_get(cache, oid, GIT_CACHE_STORE_PARSED);
254}
255
256void *git_cache_get_any(git_cache *cache, const git_oid *oid)
257{
258 return cache_get(cache, oid, GIT_CACHE_STORE_ANY);
259}
260
261void git_cached_obj_decref(void *_obj)
262{
263 git_cached_obj *obj = _obj;
264
265 if (git_atomic_dec(&obj->refcount) == 0) {
266 switch (obj->flags) {
267 case GIT_CACHE_STORE_RAW:
268 git_odb_object__free(_obj);
269 break;
270
271 case GIT_CACHE_STORE_PARSED:
272 git_object__free(_obj);
273 break;
274
275 default:
276 git__free(_obj);
277 break;
278 }
279 }
280}