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