Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "tree.h" |
Junio C Hamano | b9d37a5 | 2009-04-20 03:58:18 -0700 | [diff] [blame] | 3 | #include "tree-walk.h" |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 4 | #include "cache-tree.h" |
| 5 | |
Junio C Hamano | 4903161 | 2006-10-30 15:29:53 -0800 | [diff] [blame] | 6 | #ifndef DEBUG |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 7 | #define DEBUG 0 |
Junio C Hamano | 4903161 | 2006-10-30 15:29:53 -0800 | [diff] [blame] | 8 | #endif |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 9 | |
| 10 | struct cache_tree *cache_tree(void) |
| 11 | { |
| 12 | struct cache_tree *it = xcalloc(1, sizeof(struct cache_tree)); |
| 13 | it->entry_count = -1; |
| 14 | return it; |
| 15 | } |
| 16 | |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 17 | void cache_tree_free(struct cache_tree **it_p) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 18 | { |
| 19 | int i; |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 20 | struct cache_tree *it = *it_p; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 21 | |
| 22 | if (!it) |
| 23 | return; |
| 24 | for (i = 0; i < it->subtree_nr; i++) |
Elijah Newren | e92fa51 | 2010-09-06 15:40:16 -0600 | [diff] [blame] | 25 | if (it->down[i]) { |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 26 | cache_tree_free(&it->down[i]->cache_tree); |
Elijah Newren | e92fa51 | 2010-09-06 15:40:16 -0600 | [diff] [blame] | 27 | free(it->down[i]); |
| 28 | } |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 29 | free(it->down); |
| 30 | free(it); |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 31 | *it_p = NULL; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 32 | } |
| 33 | |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 34 | static int subtree_name_cmp(const char *one, int onelen, |
| 35 | const char *two, int twolen) |
| 36 | { |
| 37 | if (onelen < twolen) |
| 38 | return -1; |
| 39 | if (twolen < onelen) |
| 40 | return 1; |
| 41 | return memcmp(one, two, onelen); |
| 42 | } |
| 43 | |
| 44 | static int subtree_pos(struct cache_tree *it, const char *path, int pathlen) |
| 45 | { |
| 46 | struct cache_tree_sub **down = it->down; |
| 47 | int lo, hi; |
| 48 | lo = 0; |
| 49 | hi = it->subtree_nr; |
| 50 | while (lo < hi) { |
| 51 | int mi = (lo + hi) / 2; |
| 52 | struct cache_tree_sub *mdl = down[mi]; |
| 53 | int cmp = subtree_name_cmp(path, pathlen, |
| 54 | mdl->name, mdl->namelen); |
| 55 | if (!cmp) |
| 56 | return mi; |
| 57 | if (cmp < 0) |
| 58 | hi = mi; |
| 59 | else |
| 60 | lo = mi + 1; |
| 61 | } |
| 62 | return -lo-1; |
| 63 | } |
| 64 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 65 | static struct cache_tree_sub *find_subtree(struct cache_tree *it, |
| 66 | const char *path, |
| 67 | int pathlen, |
| 68 | int create) |
| 69 | { |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 70 | struct cache_tree_sub *down; |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 71 | int pos = subtree_pos(it, path, pathlen); |
| 72 | if (0 <= pos) |
| 73 | return it->down[pos]; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 74 | if (!create) |
| 75 | return NULL; |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 76 | |
| 77 | pos = -pos-1; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 78 | if (it->subtree_alloc <= it->subtree_nr) { |
| 79 | it->subtree_alloc = alloc_nr(it->subtree_alloc); |
| 80 | it->down = xrealloc(it->down, it->subtree_alloc * |
| 81 | sizeof(*it->down)); |
| 82 | } |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 83 | it->subtree_nr++; |
| 84 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 85 | down = xmalloc(sizeof(*down) + pathlen + 1); |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 86 | down->cache_tree = NULL; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 87 | down->namelen = pathlen; |
| 88 | memcpy(down->name, path, pathlen); |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 89 | down->name[pathlen] = 0; |
| 90 | |
| 91 | if (pos < it->subtree_nr) |
| 92 | memmove(it->down + pos + 1, |
| 93 | it->down + pos, |
| 94 | sizeof(down) * (it->subtree_nr - pos - 1)); |
| 95 | it->down[pos] = down; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 96 | return down; |
| 97 | } |
| 98 | |
Junio C Hamano | 7927a55 | 2006-04-27 01:33:07 -0700 | [diff] [blame] | 99 | struct cache_tree_sub *cache_tree_sub(struct cache_tree *it, const char *path) |
| 100 | { |
| 101 | int pathlen = strlen(path); |
| 102 | return find_subtree(it, path, pathlen, 1); |
| 103 | } |
| 104 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 105 | void cache_tree_invalidate_path(struct cache_tree *it, const char *path) |
| 106 | { |
| 107 | /* a/b/c |
| 108 | * ==> invalidate self |
| 109 | * ==> find "a", have it invalidate "b/c" |
| 110 | * a |
| 111 | * ==> invalidate self |
| 112 | * ==> if "a" exists as a subtree, remove it. |
| 113 | */ |
| 114 | const char *slash; |
| 115 | int namelen; |
| 116 | struct cache_tree_sub *down; |
| 117 | |
Junio C Hamano | 00703e6 | 2006-05-03 16:10:45 -0700 | [diff] [blame] | 118 | #if DEBUG |
| 119 | fprintf(stderr, "cache-tree invalidate <%s>\n", path); |
| 120 | #endif |
| 121 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 122 | if (!it) |
| 123 | return; |
| 124 | slash = strchr(path, '/'); |
| 125 | it->entry_count = -1; |
| 126 | if (!slash) { |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 127 | int pos; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 128 | namelen = strlen(path); |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 129 | pos = subtree_pos(it, path, namelen); |
| 130 | if (0 <= pos) { |
| 131 | cache_tree_free(&it->down[pos]->cache_tree); |
| 132 | free(it->down[pos]); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 133 | /* 0 1 2 3 4 5 |
| 134 | * ^ ^subtree_nr = 6 |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 135 | * pos |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 136 | * move 4 and 5 up one place (2 entries) |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 137 | * 2 = 6 - 3 - 1 = subtree_nr - pos - 1 |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 138 | */ |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 139 | memmove(it->down+pos, it->down+pos+1, |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 140 | sizeof(struct cache_tree_sub *) * |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 141 | (it->subtree_nr - pos - 1)); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 142 | it->subtree_nr--; |
| 143 | } |
| 144 | return; |
| 145 | } |
| 146 | namelen = slash - path; |
| 147 | down = find_subtree(it, path, namelen, 0); |
| 148 | if (down) |
| 149 | cache_tree_invalidate_path(down->cache_tree, slash + 1); |
| 150 | } |
| 151 | |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 152 | static int verify_cache(const struct cache_entry * const *cache, |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 153 | int entries, int flags) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 154 | { |
| 155 | int i, funny; |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 156 | int silent = flags & WRITE_TREE_SILENT; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 157 | |
| 158 | /* Verify that the tree is merged */ |
| 159 | funny = 0; |
| 160 | for (i = 0; i < entries; i++) { |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 161 | const struct cache_entry *ce = cache[i]; |
Junio C Hamano | 3f6d56d | 2012-02-07 11:55:48 -0800 | [diff] [blame] | 162 | if (ce_stage(ce)) { |
Thomas Rast | 996277c | 2011-12-06 18:43:37 +0100 | [diff] [blame] | 163 | if (silent) |
| 164 | return -1; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 165 | if (10 < ++funny) { |
| 166 | fprintf(stderr, "...\n"); |
| 167 | break; |
| 168 | } |
Nguyễn Thái Ngọc Duy | dbc3904 | 2012-12-16 11:15:25 +0700 | [diff] [blame] | 169 | fprintf(stderr, "%s: unmerged (%s)\n", |
| 170 | ce->name, sha1_to_hex(ce->sha1)); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 171 | } |
| 172 | } |
| 173 | if (funny) |
| 174 | return -1; |
| 175 | |
| 176 | /* Also verify that the cache does not have path and path/file |
| 177 | * at the same time. At this point we know the cache has only |
| 178 | * stage 0 entries. |
| 179 | */ |
| 180 | funny = 0; |
| 181 | for (i = 0; i < entries - 1; i++) { |
| 182 | /* path/file always comes after path because of the way |
| 183 | * the cache is sorted. Also path can appear only once, |
| 184 | * which means conflicting one would immediately follow. |
| 185 | */ |
| 186 | const char *this_name = cache[i]->name; |
| 187 | const char *next_name = cache[i+1]->name; |
| 188 | int this_len = strlen(this_name); |
| 189 | if (this_len < strlen(next_name) && |
| 190 | strncmp(this_name, next_name, this_len) == 0 && |
| 191 | next_name[this_len] == '/') { |
| 192 | if (10 < ++funny) { |
| 193 | fprintf(stderr, "...\n"); |
| 194 | break; |
| 195 | } |
| 196 | fprintf(stderr, "You have both %s and %s\n", |
| 197 | this_name, next_name); |
| 198 | } |
| 199 | } |
| 200 | if (funny) |
| 201 | return -1; |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | static void discard_unused_subtrees(struct cache_tree *it) |
| 206 | { |
| 207 | struct cache_tree_sub **down = it->down; |
| 208 | int nr = it->subtree_nr; |
| 209 | int dst, src; |
| 210 | for (dst = src = 0; src < nr; src++) { |
| 211 | struct cache_tree_sub *s = down[src]; |
| 212 | if (s->used) |
| 213 | down[dst++] = s; |
| 214 | else { |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 215 | cache_tree_free(&s->cache_tree); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 216 | free(s); |
| 217 | it->subtree_nr--; |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 222 | int cache_tree_fully_valid(struct cache_tree *it) |
| 223 | { |
| 224 | int i; |
| 225 | if (!it) |
| 226 | return 0; |
| 227 | if (it->entry_count < 0 || !has_sha1_file(it->sha1)) |
| 228 | return 0; |
| 229 | for (i = 0; i < it->subtree_nr; i++) { |
| 230 | if (!cache_tree_fully_valid(it->down[i]->cache_tree)) |
| 231 | return 0; |
| 232 | } |
| 233 | return 1; |
| 234 | } |
| 235 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 236 | static int update_one(struct cache_tree *it, |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 237 | const struct cache_entry * const *cache, |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 238 | int entries, |
| 239 | const char *base, |
| 240 | int baselen, |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 241 | int *skip_count, |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 242 | int flags) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 243 | { |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 244 | struct strbuf buffer; |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 245 | int missing_ok = flags & WRITE_TREE_MISSING_OK; |
| 246 | int dryrun = flags & WRITE_TREE_DRY_RUN; |
Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 11:15:28 +0700 | [diff] [blame] | 247 | int to_invalidate = 0; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 248 | int i; |
| 249 | |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 250 | *skip_count = 0; |
| 251 | |
Junio C Hamano | dd0c34c | 2006-04-24 15:12:42 -0700 | [diff] [blame] | 252 | if (0 <= it->entry_count && has_sha1_file(it->sha1)) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 253 | return it->entry_count; |
| 254 | |
| 255 | /* |
| 256 | * We first scan for subtrees and update them; we start by |
| 257 | * marking existing subtrees -- the ones that are unmarked |
| 258 | * should not be in the result. |
| 259 | */ |
| 260 | for (i = 0; i < it->subtree_nr; i++) |
| 261 | it->down[i]->used = 0; |
| 262 | |
| 263 | /* |
| 264 | * Find the subtrees and update them. |
| 265 | */ |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 266 | i = 0; |
| 267 | while (i < entries) { |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 268 | const struct cache_entry *ce = cache[i]; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 269 | struct cache_tree_sub *sub; |
| 270 | const char *path, *slash; |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 271 | int pathlen, sublen, subcnt, subskip; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 272 | |
| 273 | path = ce->name; |
| 274 | pathlen = ce_namelen(ce); |
| 275 | if (pathlen <= baselen || memcmp(base, path, baselen)) |
| 276 | break; /* at the end of this level */ |
| 277 | |
| 278 | slash = strchr(path + baselen, '/'); |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 279 | if (!slash) { |
| 280 | i++; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 281 | continue; |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 282 | } |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 283 | /* |
| 284 | * a/bbb/c (base = a/, slash = /c) |
| 285 | * ==> |
| 286 | * path+baselen = bbb/c, sublen = 3 |
| 287 | */ |
| 288 | sublen = slash - (path + baselen); |
| 289 | sub = find_subtree(it, path + baselen, sublen, 1); |
| 290 | if (!sub->cache_tree) |
| 291 | sub->cache_tree = cache_tree(); |
| 292 | subcnt = update_one(sub->cache_tree, |
| 293 | cache + i, entries - i, |
| 294 | path, |
| 295 | baselen + sublen + 1, |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 296 | &subskip, |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 297 | flags); |
Johannes Sixt | 3d12d0c | 2006-11-13 13:50:00 +0000 | [diff] [blame] | 298 | if (subcnt < 0) |
| 299 | return subcnt; |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 300 | i += subcnt; |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 301 | sub->count = subcnt; /* to be used in the next loop */ |
| 302 | *skip_count += subskip; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 303 | sub->used = 1; |
| 304 | } |
| 305 | |
| 306 | discard_unused_subtrees(it); |
| 307 | |
| 308 | /* |
| 309 | * Then write out the tree object for this level. |
| 310 | */ |
Pierre Habouzit | f1696ee | 2007-09-10 12:35:04 +0200 | [diff] [blame] | 311 | strbuf_init(&buffer, 8192); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 312 | |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 313 | i = 0; |
| 314 | while (i < entries) { |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 315 | const struct cache_entry *ce = cache[i]; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 316 | struct cache_tree_sub *sub; |
| 317 | const char *path, *slash; |
| 318 | int pathlen, entlen; |
| 319 | const unsigned char *sha1; |
| 320 | unsigned mode; |
| 321 | |
| 322 | path = ce->name; |
| 323 | pathlen = ce_namelen(ce); |
| 324 | if (pathlen <= baselen || memcmp(base, path, baselen)) |
| 325 | break; /* at the end of this level */ |
| 326 | |
| 327 | slash = strchr(path + baselen, '/'); |
| 328 | if (slash) { |
| 329 | entlen = slash - (path + baselen); |
| 330 | sub = find_subtree(it, path + baselen, entlen, 0); |
| 331 | if (!sub) |
| 332 | die("cache-tree.c: '%.*s' in '%s' not found", |
| 333 | entlen, path + baselen, path); |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 334 | i += sub->count; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 335 | sha1 = sub->cache_tree->sha1; |
| 336 | mode = S_IFDIR; |
Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 11:15:28 +0700 | [diff] [blame] | 337 | if (sub->cache_tree->entry_count < 0) |
| 338 | to_invalidate = 1; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 339 | } |
| 340 | else { |
| 341 | sha1 = ce->sha1; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 342 | mode = ce->ce_mode; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 343 | entlen = pathlen - baselen; |
Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 11:15:26 +0700 | [diff] [blame] | 344 | i++; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 345 | } |
Jonathan Nieder | b6b56ac | 2010-08-09 22:32:11 -0500 | [diff] [blame] | 346 | if (mode != S_IFGITLINK && !missing_ok && !has_sha1_file(sha1)) { |
| 347 | strbuf_release(&buffer); |
Linus Torvalds | a388373 | 2009-07-14 11:25:17 -0700 | [diff] [blame] | 348 | return error("invalid object %06o %s for '%.*s'", |
| 349 | mode, sha1_to_hex(sha1), entlen+baselen, path); |
Jonathan Nieder | b6b56ac | 2010-08-09 22:32:11 -0500 | [diff] [blame] | 350 | } |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 351 | |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 352 | /* |
| 353 | * CE_REMOVE entries are removed before the index is |
| 354 | * written to disk. Skip them to remain consistent |
| 355 | * with the future on-disk index. |
| 356 | */ |
| 357 | if (ce->ce_flags & CE_REMOVE) { |
| 358 | *skip_count = *skip_count + 1; |
| 359 | continue; |
| 360 | } |
| 361 | |
Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 11:15:28 +0700 | [diff] [blame] | 362 | /* |
| 363 | * CE_INTENT_TO_ADD entries exist on on-disk index but |
| 364 | * they are not part of generated trees. Invalidate up |
| 365 | * to root to force cache-tree users to read elsewhere. |
| 366 | */ |
| 367 | if (ce->ce_flags & CE_INTENT_TO_ADD) { |
| 368 | to_invalidate = 1; |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 369 | continue; |
Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 11:15:28 +0700 | [diff] [blame] | 370 | } |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 371 | |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 372 | strbuf_grow(&buffer, entlen + 100); |
| 373 | strbuf_addf(&buffer, "%o %.*s%c", mode, entlen, path + baselen, '\0'); |
| 374 | strbuf_add(&buffer, sha1, 20); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 375 | |
| 376 | #if DEBUG |
Junio C Hamano | 00703e6 | 2006-05-03 16:10:45 -0700 | [diff] [blame] | 377 | fprintf(stderr, "cache-tree update-one %o %.*s\n", |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 378 | mode, entlen, path + baselen); |
| 379 | #endif |
| 380 | } |
| 381 | |
Rene Scharfe | abdc3fc | 2006-10-14 12:45:36 +0200 | [diff] [blame] | 382 | if (dryrun) |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 383 | hash_sha1_file(buffer.buf, buffer.len, tree_type, it->sha1); |
Junio C Hamano | edae5f0 | 2008-04-23 09:47:17 -0700 | [diff] [blame] | 384 | else if (write_sha1_file(buffer.buf, buffer.len, tree_type, it->sha1)) { |
| 385 | strbuf_release(&buffer); |
| 386 | return -1; |
| 387 | } |
| 388 | |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 389 | strbuf_release(&buffer); |
Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 11:15:28 +0700 | [diff] [blame] | 390 | it->entry_count = to_invalidate ? -1 : i - *skip_count; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 391 | #if DEBUG |
Junio C Hamano | 00703e6 | 2006-05-03 16:10:45 -0700 | [diff] [blame] | 392 | fprintf(stderr, "cache-tree update-one (%d ent, %d subtree) %s\n", |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 393 | it->entry_count, it->subtree_nr, |
| 394 | sha1_to_hex(it->sha1)); |
| 395 | #endif |
| 396 | return i; |
| 397 | } |
| 398 | |
| 399 | int cache_tree_update(struct cache_tree *it, |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 400 | const struct cache_entry * const *cache, |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 401 | int entries, |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 402 | int flags) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 403 | { |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 404 | int i, skip; |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 405 | i = verify_cache(cache, entries, flags); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 406 | if (i) |
| 407 | return i; |
Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 11:15:27 +0700 | [diff] [blame] | 408 | i = update_one(it, cache, entries, "", 0, &skip, flags); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 409 | if (i < 0) |
| 410 | return i; |
| 411 | return 0; |
| 412 | } |
| 413 | |
Pierre Habouzit | 1dffb8f | 2007-09-25 10:22:44 +0200 | [diff] [blame] | 414 | static void write_one(struct strbuf *buffer, struct cache_tree *it, |
| 415 | const char *path, int pathlen) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 416 | { |
| 417 | int i; |
| 418 | |
| 419 | /* One "cache-tree" entry consists of the following: |
| 420 | * path (NUL terminated) |
| 421 | * entry_count, subtree_nr ("%d %d\n") |
| 422 | * tree-sha1 (missing if invalid) |
| 423 | * subtree_nr "cache-tree" entries for subtrees. |
| 424 | */ |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 425 | strbuf_grow(buffer, pathlen + 100); |
| 426 | strbuf_add(buffer, path, pathlen); |
| 427 | strbuf_addf(buffer, "%c%d %d\n", 0, it->entry_count, it->subtree_nr); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 428 | |
| 429 | #if DEBUG |
| 430 | if (0 <= it->entry_count) |
| 431 | fprintf(stderr, "cache-tree <%.*s> (%d ent, %d subtree) %s\n", |
| 432 | pathlen, path, it->entry_count, it->subtree_nr, |
| 433 | sha1_to_hex(it->sha1)); |
| 434 | else |
| 435 | fprintf(stderr, "cache-tree <%.*s> (%d subtree) invalid\n", |
| 436 | pathlen, path, it->subtree_nr); |
| 437 | #endif |
| 438 | |
| 439 | if (0 <= it->entry_count) { |
Pierre Habouzit | 5242bcb | 2007-09-06 13:20:11 +0200 | [diff] [blame] | 440 | strbuf_add(buffer, it->sha1, 20); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 441 | } |
| 442 | for (i = 0; i < it->subtree_nr; i++) { |
| 443 | struct cache_tree_sub *down = it->down[i]; |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 444 | if (i) { |
| 445 | struct cache_tree_sub *prev = it->down[i-1]; |
| 446 | if (subtree_name_cmp(down->name, down->namelen, |
| 447 | prev->name, prev->namelen) <= 0) |
| 448 | die("fatal - unsorted cache subtree"); |
| 449 | } |
Pierre Habouzit | 1dffb8f | 2007-09-25 10:22:44 +0200 | [diff] [blame] | 450 | write_one(buffer, down->cache_tree, down->name, down->namelen); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 451 | } |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 452 | } |
| 453 | |
Pierre Habouzit | 1dffb8f | 2007-09-25 10:22:44 +0200 | [diff] [blame] | 454 | void cache_tree_write(struct strbuf *sb, struct cache_tree *root) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 455 | { |
Pierre Habouzit | 1dffb8f | 2007-09-25 10:22:44 +0200 | [diff] [blame] | 456 | write_one(sb, root, "", 0); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | static struct cache_tree *read_one(const char **buffer, unsigned long *size_p) |
| 460 | { |
| 461 | const char *buf = *buffer; |
| 462 | unsigned long size = *size_p; |
Johannes Schindelin | 0111ea3 | 2006-05-02 03:31:02 +0200 | [diff] [blame] | 463 | const char *cp; |
| 464 | char *ep; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 465 | struct cache_tree *it; |
| 466 | int i, subtree_nr; |
| 467 | |
| 468 | it = NULL; |
| 469 | /* skip name, but make sure name exists */ |
| 470 | while (size && *buf) { |
| 471 | size--; |
| 472 | buf++; |
| 473 | } |
| 474 | if (!size) |
| 475 | goto free_return; |
| 476 | buf++; size--; |
| 477 | it = cache_tree(); |
Johannes Schindelin | 0111ea3 | 2006-05-02 03:31:02 +0200 | [diff] [blame] | 478 | |
| 479 | cp = buf; |
| 480 | it->entry_count = strtol(cp, &ep, 10); |
| 481 | if (cp == ep) |
| 482 | goto free_return; |
| 483 | cp = ep; |
| 484 | subtree_nr = strtol(cp, &ep, 10); |
| 485 | if (cp == ep) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 486 | goto free_return; |
| 487 | while (size && *buf && *buf != '\n') { |
| 488 | size--; |
| 489 | buf++; |
| 490 | } |
| 491 | if (!size) |
| 492 | goto free_return; |
| 493 | buf++; size--; |
| 494 | if (0 <= it->entry_count) { |
| 495 | if (size < 20) |
| 496 | goto free_return; |
Junio C Hamano | 63daae4 | 2007-06-22 23:19:43 -0700 | [diff] [blame] | 497 | hashcpy(it->sha1, (const unsigned char*)buf); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 498 | buf += 20; |
| 499 | size -= 20; |
| 500 | } |
| 501 | |
| 502 | #if DEBUG |
| 503 | if (0 <= it->entry_count) |
| 504 | fprintf(stderr, "cache-tree <%s> (%d ent, %d subtree) %s\n", |
| 505 | *buffer, it->entry_count, subtree_nr, |
| 506 | sha1_to_hex(it->sha1)); |
| 507 | else |
| 508 | fprintf(stderr, "cache-tree <%s> (%d subtrees) invalid\n", |
| 509 | *buffer, subtree_nr); |
| 510 | #endif |
| 511 | |
| 512 | /* |
| 513 | * Just a heuristic -- we do not add directories that often but |
| 514 | * we do not want to have to extend it immediately when we do, |
| 515 | * hence +2. |
| 516 | */ |
| 517 | it->subtree_alloc = subtree_nr + 2; |
| 518 | it->down = xcalloc(it->subtree_alloc, sizeof(struct cache_tree_sub *)); |
| 519 | for (i = 0; i < subtree_nr; i++) { |
| 520 | /* read each subtree */ |
| 521 | struct cache_tree *sub; |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 522 | struct cache_tree_sub *subtree; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 523 | const char *name = buf; |
Junio C Hamano | 7927a55 | 2006-04-27 01:33:07 -0700 | [diff] [blame] | 524 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 525 | sub = read_one(&buf, &size); |
| 526 | if (!sub) |
| 527 | goto free_return; |
Junio C Hamano | 7927a55 | 2006-04-27 01:33:07 -0700 | [diff] [blame] | 528 | subtree = cache_tree_sub(it, name); |
Junio C Hamano | 61fa309 | 2006-04-25 17:40:02 -0700 | [diff] [blame] | 529 | subtree->cache_tree = sub; |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 530 | } |
| 531 | if (subtree_nr != it->subtree_nr) |
| 532 | die("cache-tree: internal error"); |
| 533 | *buffer = buf; |
| 534 | *size_p = size; |
| 535 | return it; |
| 536 | |
| 537 | free_return: |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 538 | cache_tree_free(&it); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 539 | return NULL; |
| 540 | } |
| 541 | |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 542 | struct cache_tree *cache_tree_read(const char *buffer, unsigned long size) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 543 | { |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 544 | if (buffer[0]) |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 545 | return NULL; /* not the whole tree */ |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 546 | return read_one(&buffer, &size); |
| 547 | } |
Junio C Hamano | 6bd2035 | 2006-04-26 01:20:50 -0700 | [diff] [blame] | 548 | |
Nanako Shiraishi | 7ba04d9 | 2008-07-16 19:42:10 +0900 | [diff] [blame] | 549 | static struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path) |
Junio C Hamano | 6bd2035 | 2006-04-26 01:20:50 -0700 | [diff] [blame] | 550 | { |
Junio C Hamano | b87fc96 | 2009-05-20 15:53:57 -0700 | [diff] [blame] | 551 | if (!it) |
| 552 | return NULL; |
Junio C Hamano | 6bd2035 | 2006-04-26 01:20:50 -0700 | [diff] [blame] | 553 | while (*path) { |
| 554 | const char *slash; |
| 555 | struct cache_tree_sub *sub; |
| 556 | |
| 557 | slash = strchr(path, '/'); |
| 558 | if (!slash) |
| 559 | slash = path + strlen(path); |
| 560 | /* between path and slash is the name of the |
| 561 | * subtree to look for. |
| 562 | */ |
| 563 | sub = find_subtree(it, path, slash - path, 0); |
| 564 | if (!sub) |
| 565 | return NULL; |
| 566 | it = sub->cache_tree; |
| 567 | if (slash) |
| 568 | while (*slash && *slash == '/') |
| 569 | slash++; |
| 570 | if (!slash || !*slash) |
| 571 | return it; /* prefix ended with slashes */ |
| 572 | path = slash; |
| 573 | } |
| 574 | return it; |
| 575 | } |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 576 | |
Junio C Hamano | d11b8d3 | 2009-05-20 11:04:35 -0700 | [diff] [blame] | 577 | int write_cache_as_tree(unsigned char *sha1, int flags, const char *prefix) |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 578 | { |
| 579 | int entries, was_valid, newfd; |
Junio C Hamano | d11b8d3 | 2009-05-20 11:04:35 -0700 | [diff] [blame] | 580 | struct lock_file *lock_file; |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 581 | |
| 582 | /* |
| 583 | * We can't free this memory, it becomes part of a linked list |
| 584 | * parsed atexit() |
| 585 | */ |
Junio C Hamano | d11b8d3 | 2009-05-20 11:04:35 -0700 | [diff] [blame] | 586 | lock_file = xcalloc(1, sizeof(struct lock_file)); |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 587 | |
| 588 | newfd = hold_locked_index(lock_file, 1); |
| 589 | |
| 590 | entries = read_cache(); |
| 591 | if (entries < 0) |
| 592 | return WRITE_TREE_UNREADABLE_INDEX; |
Junio C Hamano | d11b8d3 | 2009-05-20 11:04:35 -0700 | [diff] [blame] | 593 | if (flags & WRITE_TREE_IGNORE_CACHE_TREE) |
| 594 | cache_tree_free(&(active_cache_tree)); |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 595 | |
| 596 | if (!active_cache_tree) |
| 597 | active_cache_tree = cache_tree(); |
| 598 | |
| 599 | was_valid = cache_tree_fully_valid(active_cache_tree); |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 600 | if (!was_valid) { |
| 601 | if (cache_tree_update(active_cache_tree, |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 602 | (const struct cache_entry * const *)active_cache, |
| 603 | active_nr, flags) < 0) |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 604 | return WRITE_TREE_UNMERGED_INDEX; |
| 605 | if (0 <= newfd) { |
| 606 | if (!write_cache(newfd, active_cache, active_nr) && |
| 607 | !commit_lock_file(lock_file)) |
| 608 | newfd = -1; |
| 609 | } |
| 610 | /* Not being able to write is fine -- we are only interested |
| 611 | * in updating the cache-tree part, and if the next caller |
| 612 | * ends up using the old index with unupdated cache-tree part |
| 613 | * it misses the work we did here, but that is just a |
| 614 | * performance penalty and not a big deal. |
| 615 | */ |
| 616 | } |
| 617 | |
| 618 | if (prefix) { |
| 619 | struct cache_tree *subtree = |
| 620 | cache_tree_find(active_cache_tree, prefix); |
| 621 | if (!subtree) |
| 622 | return WRITE_TREE_PREFIX_ERROR; |
| 623 | hashcpy(sha1, subtree->sha1); |
| 624 | } |
| 625 | else |
| 626 | hashcpy(sha1, active_cache_tree->sha1); |
| 627 | |
| 628 | if (0 <= newfd) |
| 629 | rollback_lock_file(lock_file); |
| 630 | |
| 631 | return 0; |
| 632 | } |
Junio C Hamano | b9d37a5 | 2009-04-20 03:58:18 -0700 | [diff] [blame] | 633 | |
| 634 | static void prime_cache_tree_rec(struct cache_tree *it, struct tree *tree) |
| 635 | { |
| 636 | struct tree_desc desc; |
| 637 | struct name_entry entry; |
| 638 | int cnt; |
| 639 | |
| 640 | hashcpy(it->sha1, tree->object.sha1); |
| 641 | init_tree_desc(&desc, tree->buffer, tree->size); |
| 642 | cnt = 0; |
| 643 | while (tree_entry(&desc, &entry)) { |
| 644 | if (!S_ISDIR(entry.mode)) |
| 645 | cnt++; |
| 646 | else { |
| 647 | struct cache_tree_sub *sub; |
| 648 | struct tree *subtree = lookup_tree(entry.sha1); |
| 649 | if (!subtree->object.parsed) |
| 650 | parse_tree(subtree); |
| 651 | sub = cache_tree_sub(it, entry.path); |
| 652 | sub->cache_tree = cache_tree(); |
| 653 | prime_cache_tree_rec(sub->cache_tree, subtree); |
| 654 | cnt += sub->cache_tree->entry_count; |
| 655 | } |
| 656 | } |
| 657 | it->entry_count = cnt; |
| 658 | } |
| 659 | |
| 660 | void prime_cache_tree(struct cache_tree **it, struct tree *tree) |
| 661 | { |
| 662 | cache_tree_free(it); |
| 663 | *it = cache_tree(); |
| 664 | prime_cache_tree_rec(*it, tree); |
| 665 | } |
Junio C Hamano | b65982b | 2009-05-20 15:57:22 -0700 | [diff] [blame] | 666 | |
| 667 | /* |
| 668 | * find the cache_tree that corresponds to the current level without |
| 669 | * exploding the full path into textual form. The root of the |
| 670 | * cache tree is given as "root", and our current level is "info". |
| 671 | * (1) When at root level, info->prev is NULL, so it is "root" itself. |
| 672 | * (2) Otherwise, find the cache_tree that corresponds to one level |
| 673 | * above us, and find ourselves in there. |
| 674 | */ |
| 675 | static struct cache_tree *find_cache_tree_from_traversal(struct cache_tree *root, |
| 676 | struct traverse_info *info) |
| 677 | { |
| 678 | struct cache_tree *our_parent; |
| 679 | |
| 680 | if (!info->prev) |
| 681 | return root; |
| 682 | our_parent = find_cache_tree_from_traversal(root, info->prev); |
| 683 | return cache_tree_find(our_parent, info->name.path); |
| 684 | } |
| 685 | |
| 686 | int cache_tree_matches_traversal(struct cache_tree *root, |
| 687 | struct name_entry *ent, |
| 688 | struct traverse_info *info) |
| 689 | { |
| 690 | struct cache_tree *it; |
| 691 | |
| 692 | it = find_cache_tree_from_traversal(root, info); |
| 693 | it = cache_tree_find(it, ent->path); |
| 694 | if (it && it->entry_count > 0 && !hashcmp(ent->sha1, it->sha1)) |
| 695 | return it->entry_count; |
| 696 | return 0; |
| 697 | } |
Thomas Rast | 996277c | 2011-12-06 18:43:37 +0100 | [diff] [blame] | 698 | |
Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 09:36:46 +0700 | [diff] [blame] | 699 | int update_main_cache_tree(int flags) |
Thomas Rast | 996277c | 2011-12-06 18:43:37 +0100 | [diff] [blame] | 700 | { |
| 701 | if (!the_index.cache_tree) |
| 702 | the_index.cache_tree = cache_tree(); |
| 703 | return cache_tree_update(the_index.cache_tree, |
Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 22:29:00 +0700 | [diff] [blame] | 704 | (const struct cache_entry * const *)the_index.cache, |
| 705 | the_index.cache_nr, flags); |
Thomas Rast | 996277c | 2011-12-06 18:43:37 +0100 | [diff] [blame] | 706 | } |