| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 1 | #include "cache.h" |
| Michael Haggerty | 697cc8e | 2014-10-01 10:28:42 | [diff] [blame] | 2 | #include "lockfile.h" |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 3 | #include "tree.h" |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 4 | #include "tree-walk.h" |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 5 | #include "cache-tree.h" |
| Neeraj Singh | 4d33e2b | 2022-04-05 05:20:10 | [diff] [blame] | 6 | #include "bulk-checkin.h" |
| Stefan Beller | cbd53a2 | 2018-05-15 23:42:15 | [diff] [blame] | 7 | #include "object-store.h" |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 8 | #include "replace-object.h" |
| Christian Couder | b14ed5a | 2019-06-25 13:40:31 | [diff] [blame] | 9 | #include "promisor-remote.h" |
| Derrick Stolee | 6e77352 | 2021-03-30 13:10:55 | [diff] [blame] | 10 | #include "sparse-index.h" |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 11 | |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 12 | #ifndef DEBUG_CACHE_TREE |
| 13 | #define DEBUG_CACHE_TREE 0 |
| Junio C Hamano | 4903161 | 2006-10-30 23:29:53 | [diff] [blame] | 14 | #endif |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 15 | |
| 16 | struct cache_tree *cache_tree(void) |
| 17 | { |
| 18 | struct cache_tree *it = xcalloc(1, sizeof(struct cache_tree)); |
| 19 | it->entry_count = -1; |
| 20 | return it; |
| 21 | } |
| 22 | |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 23 | void cache_tree_free(struct cache_tree **it_p) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 24 | { |
| 25 | int i; |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 26 | struct cache_tree *it = *it_p; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 27 | |
| 28 | if (!it) |
| 29 | return; |
| 30 | for (i = 0; i < it->subtree_nr; i++) |
| Elijah Newren | e92fa51 | 2010-09-06 21:40:16 | [diff] [blame] | 31 | if (it->down[i]) { |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 32 | cache_tree_free(&it->down[i]->cache_tree); |
| Elijah Newren | e92fa51 | 2010-09-06 21:40:16 | [diff] [blame] | 33 | free(it->down[i]); |
| 34 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 35 | free(it->down); |
| 36 | free(it); |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 37 | *it_p = NULL; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 38 | } |
| 39 | |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 40 | static int subtree_name_cmp(const char *one, int onelen, |
| 41 | const char *two, int twolen) |
| 42 | { |
| 43 | if (onelen < twolen) |
| 44 | return -1; |
| 45 | if (twolen < onelen) |
| 46 | return 1; |
| 47 | return memcmp(one, two, onelen); |
| 48 | } |
| 49 | |
| Derrick Stolee | c80dd39 | 2021-01-23 19:58:13 | [diff] [blame] | 50 | int cache_tree_subtree_pos(struct cache_tree *it, const char *path, int pathlen) |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 51 | { |
| 52 | struct cache_tree_sub **down = it->down; |
| 53 | int lo, hi; |
| 54 | lo = 0; |
| 55 | hi = it->subtree_nr; |
| 56 | while (lo < hi) { |
| Derrick Stolee | 19716b2 | 2017-10-08 18:29:37 | [diff] [blame] | 57 | int mi = lo + (hi - lo) / 2; |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 58 | struct cache_tree_sub *mdl = down[mi]; |
| 59 | int cmp = subtree_name_cmp(path, pathlen, |
| 60 | mdl->name, mdl->namelen); |
| 61 | if (!cmp) |
| 62 | return mi; |
| 63 | if (cmp < 0) |
| 64 | hi = mi; |
| 65 | else |
| 66 | lo = mi + 1; |
| 67 | } |
| 68 | return -lo-1; |
| 69 | } |
| 70 | |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 71 | static struct cache_tree_sub *find_subtree(struct cache_tree *it, |
| 72 | const char *path, |
| 73 | int pathlen, |
| 74 | int create) |
| 75 | { |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 76 | struct cache_tree_sub *down; |
| Derrick Stolee | c80dd39 | 2021-01-23 19:58:13 | [diff] [blame] | 77 | int pos = cache_tree_subtree_pos(it, path, pathlen); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 78 | if (0 <= pos) |
| 79 | return it->down[pos]; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 80 | if (!create) |
| 81 | return NULL; |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 82 | |
| 83 | pos = -pos-1; |
| Dmitry S. Dolzhenko | bcc7a03 | 2014-03-03 22:31:51 | [diff] [blame] | 84 | ALLOC_GROW(it->down, it->subtree_nr + 1, it->subtree_alloc); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 85 | it->subtree_nr++; |
| 86 | |
| Jeff King | 96ffc06 | 2016-02-22 22:44:32 | [diff] [blame] | 87 | FLEX_ALLOC_MEM(down, name, path, pathlen); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 88 | down->cache_tree = NULL; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 89 | down->namelen = pathlen; |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 90 | |
| 91 | if (pos < it->subtree_nr) |
| SZEDER Gábor | f919ffe | 2018-01-22 17:50:09 | [diff] [blame] | 92 | MOVE_ARRAY(it->down + pos + 1, it->down + pos, |
| 93 | it->subtree_nr - pos - 1); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 94 | it->down[pos] = down; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 95 | return down; |
| 96 | } |
| 97 | |
| Junio C Hamano | 7927a55 | 2006-04-27 08:33:07 | [diff] [blame] | 98 | struct cache_tree_sub *cache_tree_sub(struct cache_tree *it, const char *path) |
| 99 | { |
| 100 | int pathlen = strlen(path); |
| 101 | return find_subtree(it, path, pathlen, 1); |
| 102 | } |
| 103 | |
| Nguyễn Thái Ngọc Duy | a5400ef | 2014-06-13 12:19:31 | [diff] [blame] | 104 | static int do_invalidate_path(struct cache_tree *it, const char *path) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 105 | { |
| 106 | /* a/b/c |
| 107 | * ==> invalidate self |
| 108 | * ==> find "a", have it invalidate "b/c" |
| 109 | * a |
| 110 | * ==> invalidate self |
| 111 | * ==> if "a" exists as a subtree, remove it. |
| 112 | */ |
| 113 | const char *slash; |
| 114 | int namelen; |
| 115 | struct cache_tree_sub *down; |
| 116 | |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 117 | #if DEBUG_CACHE_TREE |
| Junio C Hamano | 00703e6 | 2006-05-03 23:10:45 | [diff] [blame] | 118 | fprintf(stderr, "cache-tree invalidate <%s>\n", path); |
| 119 | #endif |
| 120 | |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 121 | if (!it) |
| Nguyễn Thái Ngọc Duy | a5400ef | 2014-06-13 12:19:31 | [diff] [blame] | 122 | return 0; |
| Rohit Mani | 2c5495f | 2014-03-08 06:48:31 | [diff] [blame] | 123 | slash = strchrnul(path, '/'); |
| 124 | namelen = slash - path; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 125 | it->entry_count = -1; |
| Rohit Mani | 2c5495f | 2014-03-08 06:48:31 | [diff] [blame] | 126 | if (!*slash) { |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 127 | int pos; |
| Derrick Stolee | c80dd39 | 2021-01-23 19:58:13 | [diff] [blame] | 128 | pos = cache_tree_subtree_pos(it, path, namelen); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 129 | if (0 <= pos) { |
| 130 | cache_tree_free(&it->down[pos]->cache_tree); |
| 131 | free(it->down[pos]); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 132 | /* 0 1 2 3 4 5 |
| 133 | * ^ ^subtree_nr = 6 |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 134 | * pos |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 135 | * move 4 and 5 up one place (2 entries) |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 136 | * 2 = 6 - 3 - 1 = subtree_nr - pos - 1 |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 137 | */ |
| René Scharfe | f331ab9 | 2017-07-15 20:00:45 | [diff] [blame] | 138 | MOVE_ARRAY(it->down + pos, it->down + pos + 1, |
| 139 | it->subtree_nr - pos - 1); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 140 | it->subtree_nr--; |
| 141 | } |
| Nguyễn Thái Ngọc Duy | a5400ef | 2014-06-13 12:19:31 | [diff] [blame] | 142 | return 1; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 143 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 144 | down = find_subtree(it, path, namelen, 0); |
| 145 | if (down) |
| Nguyễn Thái Ngọc Duy | a5400ef | 2014-06-13 12:19:31 | [diff] [blame] | 146 | do_invalidate_path(down->cache_tree, slash + 1); |
| 147 | return 1; |
| 148 | } |
| 149 | |
| 150 | void cache_tree_invalidate_path(struct index_state *istate, const char *path) |
| 151 | { |
| 152 | if (do_invalidate_path(istate->cache_tree, path)) |
| 153 | istate->cache_changed |= CACHE_TREE_CHANGED; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 154 | } |
| 155 | |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 156 | static int verify_cache(struct index_state *istate, int flags) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 157 | { |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 158 | unsigned i, funny; |
| Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 02:36:46 | [diff] [blame] | 159 | int silent = flags & WRITE_TREE_SILENT; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 160 | |
| 161 | /* Verify that the tree is merged */ |
| 162 | funny = 0; |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 163 | for (i = 0; i < istate->cache_nr; i++) { |
| 164 | const struct cache_entry *ce = istate->cache[i]; |
| Junio C Hamano | 3f6d56d | 2012-02-07 19:55:48 | [diff] [blame] | 165 | if (ce_stage(ce)) { |
| Thomas Rast | 996277c | 2011-12-06 17:43:37 | [diff] [blame] | 166 | if (silent) |
| 167 | return -1; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 168 | if (10 < ++funny) { |
| 169 | fprintf(stderr, "...\n"); |
| 170 | break; |
| 171 | } |
| Nguyễn Thái Ngọc Duy | dbc3904 | 2012-12-16 04:15:25 | [diff] [blame] | 172 | fprintf(stderr, "%s: unmerged (%s)\n", |
| brian m. carlson | 99d1a98 | 2016-09-05 20:07:52 | [diff] [blame] | 173 | ce->name, oid_to_hex(&ce->oid)); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 174 | } |
| 175 | } |
| 176 | if (funny) |
| 177 | return -1; |
| 178 | |
| 179 | /* Also verify that the cache does not have path and path/file |
| 180 | * at the same time. At this point we know the cache has only |
| 181 | * stage 0 entries. |
| 182 | */ |
| 183 | funny = 0; |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 184 | for (i = 0; i + 1 < istate->cache_nr; i++) { |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 185 | /* path/file always comes after path because of the way |
| 186 | * the cache is sorted. Also path can appear only once, |
| 187 | * which means conflicting one would immediately follow. |
| 188 | */ |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 189 | const struct cache_entry *this_ce = istate->cache[i]; |
| 190 | const struct cache_entry *next_ce = istate->cache[i + 1]; |
| René Scharfe | 0b72536 | 2021-01-07 16:32:10 | [diff] [blame] | 191 | const char *this_name = this_ce->name; |
| 192 | const char *next_name = next_ce->name; |
| 193 | int this_len = ce_namelen(this_ce); |
| 194 | if (this_len < ce_namelen(next_ce) && |
| Derrick Stolee | a4b6d20 | 2021-01-07 16:32:11 | [diff] [blame] | 195 | next_name[this_len] == '/' && |
| 196 | strncmp(this_name, next_name, this_len) == 0) { |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 197 | if (10 < ++funny) { |
| 198 | fprintf(stderr, "...\n"); |
| 199 | break; |
| 200 | } |
| 201 | fprintf(stderr, "You have both %s and %s\n", |
| 202 | this_name, next_name); |
| 203 | } |
| 204 | } |
| 205 | if (funny) |
| 206 | return -1; |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | static void discard_unused_subtrees(struct cache_tree *it) |
| 211 | { |
| 212 | struct cache_tree_sub **down = it->down; |
| 213 | int nr = it->subtree_nr; |
| 214 | int dst, src; |
| 215 | for (dst = src = 0; src < nr; src++) { |
| 216 | struct cache_tree_sub *s = down[src]; |
| 217 | if (s->used) |
| 218 | down[dst++] = s; |
| 219 | else { |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 220 | cache_tree_free(&s->cache_tree); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 221 | free(s); |
| 222 | it->subtree_nr--; |
| 223 | } |
| 224 | } |
| 225 | } |
| 226 | |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 227 | int cache_tree_fully_valid(struct cache_tree *it) |
| 228 | { |
| 229 | int i; |
| 230 | if (!it) |
| 231 | return 0; |
| Jeff King | 98374a0 | 2019-01-07 08:37:54 | [diff] [blame] | 232 | if (it->entry_count < 0 || !has_object_file(&it->oid)) |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 233 | return 0; |
| 234 | for (i = 0; i < it->subtree_nr; i++) { |
| 235 | if (!cache_tree_fully_valid(it->down[i]->cache_tree)) |
| 236 | return 0; |
| 237 | } |
| 238 | return 1; |
| 239 | } |
| 240 | |
| Jonathan Tan | d3da223 | 2021-07-23 18:52:23 | [diff] [blame] | 241 | static int must_check_existence(const struct cache_entry *ce) |
| 242 | { |
| 243 | return !(has_promisor_remote() && ce_skip_worktree(ce)); |
| 244 | } |
| 245 | |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 246 | static int update_one(struct cache_tree *it, |
| Nguyễn Thái Ngọc Duy | d0cfc3e | 2014-06-13 12:19:32 | [diff] [blame] | 247 | struct cache_entry **cache, |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 248 | int entries, |
| 249 | const char *base, |
| 250 | int baselen, |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 251 | int *skip_count, |
| Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 02:36:46 | [diff] [blame] | 252 | int flags) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 253 | { |
| Pierre Habouzit | 5242bcb | 2007-09-06 11:20:11 | [diff] [blame] | 254 | struct strbuf buffer; |
| Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 02:36:46 | [diff] [blame] | 255 | int missing_ok = flags & WRITE_TREE_MISSING_OK; |
| 256 | int dryrun = flags & WRITE_TREE_DRY_RUN; |
| David Turner | aecf567 | 2014-07-06 04:06:56 | [diff] [blame] | 257 | int repair = flags & WRITE_TREE_REPAIR; |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 258 | int to_invalidate = 0; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 259 | int i; |
| 260 | |
| David Turner | aecf567 | 2014-07-06 04:06:56 | [diff] [blame] | 261 | assert(!(dryrun && repair)); |
| 262 | |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 263 | *skip_count = 0; |
| 264 | |
| Derrick Stolee | 2de37c5 | 2021-03-30 13:11:02 | [diff] [blame] | 265 | /* |
| 266 | * If the first entry of this region is a sparse directory |
| 267 | * entry corresponding exactly to 'base', then this cache_tree |
| 268 | * struct is a "leaf" in the data structure, pointing to the |
| 269 | * tree OID specified in the entry. |
| 270 | */ |
| 271 | if (entries > 0) { |
| 272 | const struct cache_entry *ce = cache[0]; |
| 273 | |
| 274 | if (S_ISSPARSEDIR(ce->ce_mode) && |
| 275 | ce->ce_namelen == baselen && |
| 276 | !strncmp(ce->name, base, baselen)) { |
| 277 | it->entry_count = 1; |
| 278 | oidcpy(&it->oid, &ce->oid); |
| 279 | return 1; |
| 280 | } |
| 281 | } |
| 282 | |
| Jeff King | 98374a0 | 2019-01-07 08:37:54 | [diff] [blame] | 283 | if (0 <= it->entry_count && has_object_file(&it->oid)) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 284 | return it->entry_count; |
| 285 | |
| 286 | /* |
| 287 | * We first scan for subtrees and update them; we start by |
| 288 | * marking existing subtrees -- the ones that are unmarked |
| 289 | * should not be in the result. |
| 290 | */ |
| 291 | for (i = 0; i < it->subtree_nr; i++) |
| 292 | it->down[i]->used = 0; |
| 293 | |
| 294 | /* |
| 295 | * Find the subtrees and update them. |
| 296 | */ |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 297 | i = 0; |
| 298 | while (i < entries) { |
| Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 15:29:00 | [diff] [blame] | 299 | const struct cache_entry *ce = cache[i]; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 300 | struct cache_tree_sub *sub; |
| 301 | const char *path, *slash; |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 302 | int pathlen, sublen, subcnt, subskip; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 303 | |
| 304 | path = ce->name; |
| 305 | pathlen = ce_namelen(ce); |
| 306 | if (pathlen <= baselen || memcmp(base, path, baselen)) |
| 307 | break; /* at the end of this level */ |
| 308 | |
| 309 | slash = strchr(path + baselen, '/'); |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 310 | if (!slash) { |
| 311 | i++; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 312 | continue; |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 313 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 314 | /* |
| 315 | * a/bbb/c (base = a/, slash = /c) |
| 316 | * ==> |
| 317 | * path+baselen = bbb/c, sublen = 3 |
| 318 | */ |
| 319 | sublen = slash - (path + baselen); |
| 320 | sub = find_subtree(it, path + baselen, sublen, 1); |
| 321 | if (!sub->cache_tree) |
| 322 | sub->cache_tree = cache_tree(); |
| 323 | subcnt = update_one(sub->cache_tree, |
| 324 | cache + i, entries - i, |
| 325 | path, |
| 326 | baselen + sublen + 1, |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 327 | &subskip, |
| Nguyễn Thái Ngọc Duy | e859c69 | 2012-01-16 02:36:46 | [diff] [blame] | 328 | flags); |
| Johannes Sixt | 3d12d0c | 2006-11-13 13:50:00 | [diff] [blame] | 329 | if (subcnt < 0) |
| 330 | return subcnt; |
| Jeff King | 729dbbd | 2014-10-29 17:11:58 | [diff] [blame] | 331 | if (!subcnt) |
| 332 | die("index cache-tree records empty sub-tree"); |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 333 | i += subcnt; |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 334 | sub->count = subcnt; /* to be used in the next loop */ |
| 335 | *skip_count += subskip; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 336 | sub->used = 1; |
| 337 | } |
| 338 | |
| 339 | discard_unused_subtrees(it); |
| 340 | |
| 341 | /* |
| 342 | * Then write out the tree object for this level. |
| 343 | */ |
| Pierre Habouzit | f1696ee | 2007-09-10 10:35:04 | [diff] [blame] | 344 | strbuf_init(&buffer, 8192); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 345 | |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 346 | i = 0; |
| 347 | while (i < entries) { |
| Nguyễn Thái Ngọc Duy | 9c5e6c8 | 2013-07-09 15:29:00 | [diff] [blame] | 348 | const struct cache_entry *ce = cache[i]; |
| Nguyễn Thái Ngọc Duy | c041d54 | 2016-07-16 05:06:26 | [diff] [blame] | 349 | struct cache_tree_sub *sub = NULL; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 350 | const char *path, *slash; |
| 351 | int pathlen, entlen; |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 352 | const struct object_id *oid; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 353 | unsigned mode; |
| Junio C Hamano | 4ed115e | 2014-09-02 21:16:20 | [diff] [blame] | 354 | int expected_missing = 0; |
| Nguyễn Thái Ngọc Duy | 6d6a782 | 2016-07-16 05:06:27 | [diff] [blame] | 355 | int contains_ita = 0; |
| Jonathan Tan | 2f215ff | 2018-10-09 18:40:37 | [diff] [blame] | 356 | int ce_missing_ok; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 357 | |
| 358 | path = ce->name; |
| 359 | pathlen = ce_namelen(ce); |
| 360 | if (pathlen <= baselen || memcmp(base, path, baselen)) |
| 361 | break; /* at the end of this level */ |
| 362 | |
| 363 | slash = strchr(path + baselen, '/'); |
| 364 | if (slash) { |
| 365 | entlen = slash - (path + baselen); |
| 366 | sub = find_subtree(it, path + baselen, entlen, 0); |
| 367 | if (!sub) |
| 368 | die("cache-tree.c: '%.*s' in '%s' not found", |
| 369 | entlen, path + baselen, path); |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 370 | i += sub->count; |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 371 | oid = &sub->cache_tree->oid; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 372 | mode = S_IFDIR; |
| Nguyễn Thái Ngọc Duy | 6d6a782 | 2016-07-16 05:06:27 | [diff] [blame] | 373 | contains_ita = sub->cache_tree->entry_count < 0; |
| 374 | if (contains_ita) { |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 375 | to_invalidate = 1; |
| Junio C Hamano | 4ed115e | 2014-09-02 21:16:20 | [diff] [blame] | 376 | expected_missing = 1; |
| 377 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 378 | } |
| 379 | else { |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 380 | oid = &ce->oid; |
| Linus Torvalds | 7a51ed6 | 2008-01-15 00:03:17 | [diff] [blame] | 381 | mode = ce->ce_mode; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 382 | entlen = pathlen - baselen; |
| Nguyễn Thái Ngọc Duy | 386cc8b | 2012-12-16 04:15:26 | [diff] [blame] | 383 | i++; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 384 | } |
| Jeff King | a96d3cc | 2017-04-21 18:46:17 | [diff] [blame] | 385 | |
| Jonathan Tan | 2f215ff | 2018-10-09 18:40:37 | [diff] [blame] | 386 | ce_missing_ok = mode == S_IFGITLINK || missing_ok || |
| Jonathan Tan | d3da223 | 2021-07-23 18:52:23 | [diff] [blame] | 387 | !must_check_existence(ce); |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 388 | if (is_null_oid(oid) || |
| Jonathan Tan | 2f215ff | 2018-10-09 18:40:37 | [diff] [blame] | 389 | (!ce_missing_ok && !has_object_file(oid))) { |
| Jonathan Nieder | b6b56ac | 2010-08-10 03:32:11 | [diff] [blame] | 390 | strbuf_release(&buffer); |
| Junio C Hamano | 4ed115e | 2014-09-02 21:16:20 | [diff] [blame] | 391 | if (expected_missing) |
| 392 | return -1; |
| Linus Torvalds | a388373 | 2009-07-14 18:25:17 | [diff] [blame] | 393 | return error("invalid object %06o %s for '%.*s'", |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 394 | mode, oid_to_hex(oid), entlen+baselen, path); |
| Jonathan Nieder | b6b56ac | 2010-08-10 03:32:11 | [diff] [blame] | 395 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 396 | |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 397 | /* |
| 398 | * CE_REMOVE entries are removed before the index is |
| 399 | * written to disk. Skip them to remain consistent |
| 400 | * with the future on-disk index. |
| 401 | */ |
| 402 | if (ce->ce_flags & CE_REMOVE) { |
| 403 | *skip_count = *skip_count + 1; |
| 404 | continue; |
| 405 | } |
| 406 | |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 407 | /* |
| 408 | * CE_INTENT_TO_ADD entries exist on on-disk index but |
| 409 | * they are not part of generated trees. Invalidate up |
| 410 | * to root to force cache-tree users to read elsewhere. |
| 411 | */ |
| Nguyễn Thái Ngọc Duy | c041d54 | 2016-07-16 05:06:26 | [diff] [blame] | 412 | if (!sub && ce_intent_to_add(ce)) { |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 413 | to_invalidate = 1; |
| Nguyễn Thái Ngọc Duy | 3cf773e | 2012-12-16 04:15:27 | [diff] [blame] | 414 | continue; |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 415 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 416 | |
| Nguyễn Thái Ngọc Duy | 6d6a782 | 2016-07-16 05:06:27 | [diff] [blame] | 417 | /* |
| 418 | * "sub" can be an empty tree if all subentries are i-t-a. |
| 419 | */ |
| brian m. carlson | a055493 | 2018-05-02 00:26:04 | [diff] [blame] | 420 | if (contains_ita && is_empty_tree_oid(oid)) |
| Nguyễn Thái Ngọc Duy | 6d6a782 | 2016-07-16 05:06:27 | [diff] [blame] | 421 | continue; |
| 422 | |
| Pierre Habouzit | 5242bcb | 2007-09-06 11:20:11 | [diff] [blame] | 423 | strbuf_grow(&buffer, entlen + 100); |
| 424 | strbuf_addf(&buffer, "%o %.*s%c", mode, entlen, path + baselen, '\0'); |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 425 | strbuf_add(&buffer, oid->hash, the_hash_algo->rawsz); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 426 | |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 427 | #if DEBUG_CACHE_TREE |
| Junio C Hamano | 00703e6 | 2006-05-03 23:10:45 | [diff] [blame] | 428 | fprintf(stderr, "cache-tree update-one %o %.*s\n", |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 429 | mode, entlen, path + baselen); |
| 430 | #endif |
| 431 | } |
| 432 | |
| David Turner | aecf567 | 2014-07-06 04:06:56 | [diff] [blame] | 433 | if (repair) { |
| Patryk Obara | f070fac | 2018-01-28 00:13:13 | [diff] [blame] | 434 | struct object_id oid; |
| Matheus Tavares | 2dcde20 | 2020-01-30 20:32:22 | [diff] [blame] | 435 | hash_object_file(the_hash_algo, buffer.buf, buffer.len, |
| Ævar Arnfjörð Bjarmason | 44439c1 | 2022-02-04 23:48:32 | [diff] [blame] | 436 | OBJ_TREE, &oid); |
| Jonathan Tan | f981ec1 | 2019-09-03 19:42:47 | [diff] [blame] | 437 | if (has_object_file_with_flags(&oid, OBJECT_INFO_SKIP_FETCH_OBJECT)) |
| Patryk Obara | f070fac | 2018-01-28 00:13:13 | [diff] [blame] | 438 | oidcpy(&it->oid, &oid); |
| David Turner | aecf567 | 2014-07-06 04:06:56 | [diff] [blame] | 439 | else |
| 440 | to_invalidate = 1; |
| Patryk Obara | a09c985 | 2018-01-28 00:13:19 | [diff] [blame] | 441 | } else if (dryrun) { |
| Matheus Tavares | 2dcde20 | 2020-01-30 20:32:22 | [diff] [blame] | 442 | hash_object_file(the_hash_algo, buffer.buf, buffer.len, |
| Ævar Arnfjörð Bjarmason | 44439c1 | 2022-02-04 23:48:32 | [diff] [blame] | 443 | OBJ_TREE, &it->oid); |
| Ævar Arnfjörð Bjarmason | c80d226 | 2022-02-04 23:48:26 | [diff] [blame] | 444 | } else if (write_object_file_flags(buffer.buf, buffer.len, OBJ_TREE, |
| Ævar Arnfjörð Bjarmason | 4ef91a2 | 2021-10-12 14:30:49 | [diff] [blame] | 445 | &it->oid, flags & WRITE_TREE_SILENT |
| 446 | ? HASH_SILENT : 0)) { |
| Junio C Hamano | edae5f0 | 2008-04-23 16:47:17 | [diff] [blame] | 447 | strbuf_release(&buffer); |
| 448 | return -1; |
| 449 | } |
| 450 | |
| Pierre Habouzit | 5242bcb | 2007-09-06 11:20:11 | [diff] [blame] | 451 | strbuf_release(&buffer); |
| Nguyễn Thái Ngọc Duy | eec3e7e | 2012-12-16 04:15:28 | [diff] [blame] | 452 | it->entry_count = to_invalidate ? -1 : i - *skip_count; |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 453 | #if DEBUG_CACHE_TREE |
| Junio C Hamano | 00703e6 | 2006-05-03 23:10:45 | [diff] [blame] | 454 | fprintf(stderr, "cache-tree update-one (%d ent, %d subtree) %s\n", |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 455 | it->entry_count, it->subtree_nr, |
| brian m. carlson | e0a9280 | 2017-05-01 02:28:56 | [diff] [blame] | 456 | oid_to_hex(&it->oid)); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 457 | #endif |
| 458 | return i; |
| 459 | } |
| 460 | |
| Nguyễn Thái Ngọc Duy | d0cfc3e | 2014-06-13 12:19:32 | [diff] [blame] | 461 | int cache_tree_update(struct index_state *istate, int flags) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 462 | { |
| Derrick Stolee | fb08826 | 2021-01-23 19:58:11 | [diff] [blame] | 463 | int skip, i; |
| 464 | |
| Derrick Stolee | 8d87e33 | 2021-01-23 19:58:12 | [diff] [blame] | 465 | i = verify_cache(istate, flags); |
| Nguyễn Thái Ngọc Duy | d0cfc3e | 2014-06-13 12:19:32 | [diff] [blame] | 466 | |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 467 | if (i) |
| 468 | return i; |
| Derrick Stolee | fb08826 | 2021-01-23 19:58:11 | [diff] [blame] | 469 | |
| 470 | if (!istate->cache_tree) |
| 471 | istate->cache_tree = cache_tree(); |
| 472 | |
| Jonathan Tan | d3da223 | 2021-07-23 18:52:23 | [diff] [blame] | 473 | if (!(flags & WRITE_TREE_MISSING_OK) && has_promisor_remote()) |
| 474 | prefetch_cache_entries(istate, must_check_existence); |
| 475 | |
| Nguyễn Thái Ngọc Duy | 0d1ed59 | 2018-08-18 14:41:23 | [diff] [blame] | 476 | trace_performance_enter(); |
| Derrick Stolee | fa7ca5d | 2021-01-04 03:09:12 | [diff] [blame] | 477 | trace2_region_enter("cache_tree", "update", the_repository); |
| Neeraj Singh | 4d33e2b | 2022-04-05 05:20:10 | [diff] [blame] | 478 | begin_odb_transaction(); |
| Derrick Stolee | fb08826 | 2021-01-23 19:58:11 | [diff] [blame] | 479 | i = update_one(istate->cache_tree, istate->cache, istate->cache_nr, |
| 480 | "", 0, &skip, flags); |
| Neeraj Singh | 4d33e2b | 2022-04-05 05:20:10 | [diff] [blame] | 481 | end_odb_transaction(); |
| Derrick Stolee | fa7ca5d | 2021-01-04 03:09:12 | [diff] [blame] | 482 | trace2_region_leave("cache_tree", "update", the_repository); |
| Nguyễn Thái Ngọc Duy | 0d1ed59 | 2018-08-18 14:41:23 | [diff] [blame] | 483 | trace_performance_leave("cache_tree_update"); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 484 | if (i < 0) |
| 485 | return i; |
| Nguyễn Thái Ngọc Duy | d0cfc3e | 2014-06-13 12:19:32 | [diff] [blame] | 486 | istate->cache_changed |= CACHE_TREE_CHANGED; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | |
| Pierre Habouzit | 1dffb8f | 2007-09-25 08:22:44 | [diff] [blame] | 490 | static void write_one(struct strbuf *buffer, struct cache_tree *it, |
| Nguyễn Thái Ngọc Duy | ec36c42 | 2018-12-06 15:42:06 | [diff] [blame] | 491 | const char *path, int pathlen) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 492 | { |
| 493 | int i; |
| 494 | |
| 495 | /* One "cache-tree" entry consists of the following: |
| 496 | * path (NUL terminated) |
| 497 | * entry_count, subtree_nr ("%d %d\n") |
| 498 | * tree-sha1 (missing if invalid) |
| 499 | * subtree_nr "cache-tree" entries for subtrees. |
| 500 | */ |
| Pierre Habouzit | 5242bcb | 2007-09-06 11:20:11 | [diff] [blame] | 501 | strbuf_grow(buffer, pathlen + 100); |
| 502 | strbuf_add(buffer, path, pathlen); |
| 503 | strbuf_addf(buffer, "%c%d %d\n", 0, it->entry_count, it->subtree_nr); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 504 | |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 505 | #if DEBUG_CACHE_TREE |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 506 | if (0 <= it->entry_count) |
| 507 | fprintf(stderr, "cache-tree <%.*s> (%d ent, %d subtree) %s\n", |
| 508 | pathlen, path, it->entry_count, it->subtree_nr, |
| brian m. carlson | e0a9280 | 2017-05-01 02:28:56 | [diff] [blame] | 509 | oid_to_hex(&it->oid)); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 510 | else |
| 511 | fprintf(stderr, "cache-tree <%.*s> (%d subtree) invalid\n", |
| 512 | pathlen, path, it->subtree_nr); |
| 513 | #endif |
| 514 | |
| 515 | if (0 <= it->entry_count) { |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 516 | strbuf_add(buffer, it->oid.hash, the_hash_algo->rawsz); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 517 | } |
| 518 | for (i = 0; i < it->subtree_nr; i++) { |
| 519 | struct cache_tree_sub *down = it->down[i]; |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 520 | if (i) { |
| 521 | struct cache_tree_sub *prev = it->down[i-1]; |
| 522 | if (subtree_name_cmp(down->name, down->namelen, |
| 523 | prev->name, prev->namelen) <= 0) |
| 524 | die("fatal - unsorted cache subtree"); |
| 525 | } |
| Pierre Habouzit | 1dffb8f | 2007-09-25 08:22:44 | [diff] [blame] | 526 | write_one(buffer, down->cache_tree, down->name, down->namelen); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 527 | } |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 528 | } |
| 529 | |
| Pierre Habouzit | 1dffb8f | 2007-09-25 08:22:44 | [diff] [blame] | 530 | void cache_tree_write(struct strbuf *sb, struct cache_tree *root) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 531 | { |
| Derrick Stolee | 4c3e187 | 2021-01-04 03:09:13 | [diff] [blame] | 532 | trace2_region_enter("cache_tree", "write", the_repository); |
| Pierre Habouzit | 1dffb8f | 2007-09-25 08:22:44 | [diff] [blame] | 533 | write_one(sb, root, "", 0); |
| Derrick Stolee | 4c3e187 | 2021-01-04 03:09:13 | [diff] [blame] | 534 | trace2_region_leave("cache_tree", "write", the_repository); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | static struct cache_tree *read_one(const char **buffer, unsigned long *size_p) |
| 538 | { |
| 539 | const char *buf = *buffer; |
| 540 | unsigned long size = *size_p; |
| Johannes Schindelin | 0111ea3 | 2006-05-02 01:31:02 | [diff] [blame] | 541 | const char *cp; |
| 542 | char *ep; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 543 | struct cache_tree *it; |
| 544 | int i, subtree_nr; |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 545 | const unsigned rawsz = the_hash_algo->rawsz; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 546 | |
| 547 | it = NULL; |
| 548 | /* skip name, but make sure name exists */ |
| 549 | while (size && *buf) { |
| 550 | size--; |
| 551 | buf++; |
| 552 | } |
| 553 | if (!size) |
| 554 | goto free_return; |
| 555 | buf++; size--; |
| 556 | it = cache_tree(); |
| Johannes Schindelin | 0111ea3 | 2006-05-02 01:31:02 | [diff] [blame] | 557 | |
| 558 | cp = buf; |
| 559 | it->entry_count = strtol(cp, &ep, 10); |
| 560 | if (cp == ep) |
| 561 | goto free_return; |
| 562 | cp = ep; |
| 563 | subtree_nr = strtol(cp, &ep, 10); |
| 564 | if (cp == ep) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 565 | goto free_return; |
| 566 | while (size && *buf && *buf != '\n') { |
| 567 | size--; |
| 568 | buf++; |
| 569 | } |
| 570 | if (!size) |
| 571 | goto free_return; |
| 572 | buf++; size--; |
| 573 | if (0 <= it->entry_count) { |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 574 | if (size < rawsz) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 575 | goto free_return; |
| brian m. carlson | 69d1242 | 2018-05-02 00:25:29 | [diff] [blame] | 576 | oidread(&it->oid, (const unsigned char *)buf); |
| brian m. carlson | 6dcb462 | 2018-03-12 02:27:24 | [diff] [blame] | 577 | buf += rawsz; |
| 578 | size -= rawsz; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 579 | } |
| 580 | |
| Jeff Hostetler | e9b9cc5 | 2019-06-19 21:05:58 | [diff] [blame] | 581 | #if DEBUG_CACHE_TREE |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 582 | if (0 <= it->entry_count) |
| 583 | fprintf(stderr, "cache-tree <%s> (%d ent, %d subtree) %s\n", |
| 584 | *buffer, it->entry_count, subtree_nr, |
| brian m. carlson | e0a9280 | 2017-05-01 02:28:56 | [diff] [blame] | 585 | oid_to_hex(&it->oid)); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 586 | else |
| 587 | fprintf(stderr, "cache-tree <%s> (%d subtrees) invalid\n", |
| 588 | *buffer, subtree_nr); |
| 589 | #endif |
| 590 | |
| 591 | /* |
| 592 | * Just a heuristic -- we do not add directories that often but |
| 593 | * we do not want to have to extend it immediately when we do, |
| 594 | * hence +2. |
| 595 | */ |
| 596 | it->subtree_alloc = subtree_nr + 2; |
| René Scharfe | ca56dad | 2021-03-13 16:17:22 | [diff] [blame] | 597 | CALLOC_ARRAY(it->down, it->subtree_alloc); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 598 | for (i = 0; i < subtree_nr; i++) { |
| 599 | /* read each subtree */ |
| 600 | struct cache_tree *sub; |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 601 | struct cache_tree_sub *subtree; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 602 | const char *name = buf; |
| Junio C Hamano | 7927a55 | 2006-04-27 08:33:07 | [diff] [blame] | 603 | |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 604 | sub = read_one(&buf, &size); |
| 605 | if (!sub) |
| 606 | goto free_return; |
| Junio C Hamano | 7927a55 | 2006-04-27 08:33:07 | [diff] [blame] | 607 | subtree = cache_tree_sub(it, name); |
| Junio C Hamano | 61fa309 | 2006-04-26 00:40:02 | [diff] [blame] | 608 | subtree->cache_tree = sub; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 609 | } |
| 610 | if (subtree_nr != it->subtree_nr) |
| 611 | die("cache-tree: internal error"); |
| 612 | *buffer = buf; |
| 613 | *size_p = size; |
| 614 | return it; |
| 615 | |
| 616 | free_return: |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 617 | cache_tree_free(&it); |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 618 | return NULL; |
| 619 | } |
| 620 | |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 621 | struct cache_tree *cache_tree_read(const char *buffer, unsigned long size) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 622 | { |
| Derrick Stolee | 4c3e187 | 2021-01-04 03:09:13 | [diff] [blame] | 623 | struct cache_tree *result; |
| 624 | |
| Junio C Hamano | bad68ec | 2006-04-25 04:18:58 | [diff] [blame] | 625 | if (buffer[0]) |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 626 | return NULL; /* not the whole tree */ |
| Derrick Stolee | 4c3e187 | 2021-01-04 03:09:13 | [diff] [blame] | 627 | |
| 628 | trace2_region_enter("cache_tree", "read", the_repository); |
| 629 | result = read_one(&buffer, &size); |
| 630 | trace2_region_leave("cache_tree", "read", the_repository); |
| 631 | |
| 632 | return result; |
| Junio C Hamano | 7498646 | 2006-04-23 23:52:20 | [diff] [blame] | 633 | } |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 634 | |
| Nanako Shiraishi | 7ba04d9 | 2008-07-16 10:42:10 | [diff] [blame] | 635 | static struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path) |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 636 | { |
| Junio C Hamano | b87fc96 | 2009-05-20 22:53:57 | [diff] [blame] | 637 | if (!it) |
| 638 | return NULL; |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 639 | while (*path) { |
| 640 | const char *slash; |
| 641 | struct cache_tree_sub *sub; |
| 642 | |
| Michael Haggerty | 17e22dd | 2014-03-05 17:26:26 | [diff] [blame] | 643 | slash = strchrnul(path, '/'); |
| Michael Haggerty | 79192b8 | 2014-03-05 17:26:27 | [diff] [blame] | 644 | /* |
| 645 | * Between path and slash is the name of the subtree |
| 646 | * to look for. |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 647 | */ |
| 648 | sub = find_subtree(it, path, slash - path, 0); |
| 649 | if (!sub) |
| 650 | return NULL; |
| 651 | it = sub->cache_tree; |
| Michael Haggerty | 3491047 | 2014-03-05 17:26:30 | [diff] [blame] | 652 | |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 653 | path = slash; |
| Michael Haggerty | 3491047 | 2014-03-05 17:26:30 | [diff] [blame] | 654 | while (*path == '/') |
| 655 | path++; |
| Junio C Hamano | 6bd2035 | 2006-04-26 08:20:50 | [diff] [blame] | 656 | } |
| 657 | return it; |
| 658 | } |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 659 | |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 660 | static int write_index_as_tree_internal(struct object_id *oid, |
| 661 | struct index_state *index_state, |
| 662 | int cache_tree_valid, |
| 663 | int flags, |
| 664 | const char *prefix) |
| 665 | { |
| 666 | if (flags & WRITE_TREE_IGNORE_CACHE_TREE) { |
| 667 | cache_tree_free(&index_state->cache_tree); |
| 668 | cache_tree_valid = 0; |
| 669 | } |
| 670 | |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 671 | if (!cache_tree_valid && cache_tree_update(index_state, flags) < 0) |
| 672 | return WRITE_TREE_UNMERGED_INDEX; |
| 673 | |
| 674 | if (prefix) { |
| 675 | struct cache_tree *subtree; |
| 676 | subtree = cache_tree_find(index_state->cache_tree, prefix); |
| 677 | if (!subtree) |
| 678 | return WRITE_TREE_PREFIX_ERROR; |
| 679 | oidcpy(oid, &subtree->oid); |
| 680 | } |
| 681 | else |
| 682 | oidcpy(oid, &index_state->cache_tree->oid); |
| 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | |
| 687 | struct tree* write_in_core_index_as_tree(struct repository *repo) { |
| 688 | struct object_id o; |
| 689 | int was_valid, ret; |
| 690 | |
| 691 | struct index_state *index_state = repo->index; |
| 692 | was_valid = index_state->cache_tree && |
| 693 | cache_tree_fully_valid(index_state->cache_tree); |
| 694 | |
| 695 | ret = write_index_as_tree_internal(&o, index_state, was_valid, 0, NULL); |
| 696 | if (ret == WRITE_TREE_UNMERGED_INDEX) { |
| 697 | int i; |
| Ævar Arnfjörð Bjarmason | 6d40f0a | 2022-06-02 12:25:37 | [diff] [blame] | 698 | bug("there are unmerged index entries:"); |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 699 | for (i = 0; i < index_state->cache_nr; i++) { |
| 700 | const struct cache_entry *ce = index_state->cache[i]; |
| 701 | if (ce_stage(ce)) |
| Ævar Arnfjörð Bjarmason | 6d40f0a | 2022-06-02 12:25:37 | [diff] [blame] | 702 | bug("%d %.*s", ce_stage(ce), |
| 703 | (int)ce_namelen(ce), ce->name); |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 704 | } |
| Ævar Arnfjörð Bjarmason | 6d40f0a | 2022-06-02 12:25:37 | [diff] [blame] | 705 | BUG("unmerged index entries when writing in-core index"); |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | return lookup_tree(repo, &index_state->cache_tree->oid); |
| 709 | } |
| 710 | |
| 711 | |
| brian m. carlson | fc5cb99 | 2018-03-12 02:27:23 | [diff] [blame] | 712 | int write_index_as_tree(struct object_id *oid, struct index_state *index_state, const char *index_path, int flags, const char *prefix) |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 713 | { |
| Martin Ågren | 2954e5e | 2017-10-05 20:32:08 | [diff] [blame] | 714 | int entries, was_valid; |
| Jeff King | bfffb48 | 2017-09-05 12:15:21 | [diff] [blame] | 715 | struct lock_file lock_file = LOCK_INIT; |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 716 | int ret; |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 717 | |
| Martin Ågren | 2954e5e | 2017-10-05 20:32:08 | [diff] [blame] | 718 | hold_lock_file_for_update(&lock_file, index_path, LOCK_DIE_ON_ERROR); |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 719 | |
| Thomas Gummerer | a125a22 | 2018-01-07 22:30:13 | [diff] [blame] | 720 | entries = read_index_from(index_state, index_path, get_git_dir()); |
| Jeff King | c82c75b | 2017-09-05 12:14:07 | [diff] [blame] | 721 | if (entries < 0) { |
| 722 | ret = WRITE_TREE_UNREADABLE_INDEX; |
| 723 | goto out; |
| 724 | } |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 725 | |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 726 | was_valid = !(flags & WRITE_TREE_IGNORE_CACHE_TREE) && |
| 727 | index_state->cache_tree && |
| 728 | cache_tree_fully_valid(index_state->cache_tree); |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 729 | |
| Elijah Newren | 724dd76 | 2019-08-17 18:41:32 | [diff] [blame] | 730 | ret = write_index_as_tree_internal(oid, index_state, was_valid, flags, |
| 731 | prefix); |
| 732 | if (!ret && !was_valid) { |
| Martin Ågren | 2954e5e | 2017-10-05 20:32:08 | [diff] [blame] | 733 | write_locked_index(index_state, &lock_file, COMMIT_LOCK); |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 734 | /* Not being able to write is fine -- we are only interested |
| 735 | * in updating the cache-tree part, and if the next caller |
| 736 | * ends up using the old index with unupdated cache-tree part |
| 737 | * it misses the work we did here, but that is just a |
| 738 | * performance penalty and not a big deal. |
| 739 | */ |
| 740 | } |
| 741 | |
| Jeff King | c82c75b | 2017-09-05 12:14:07 | [diff] [blame] | 742 | out: |
| Martin Ågren | 2954e5e | 2017-10-05 20:32:08 | [diff] [blame] | 743 | rollback_lock_file(&lock_file); |
| Jeff King | c82c75b | 2017-09-05 12:14:07 | [diff] [blame] | 744 | return ret; |
| Junio C Hamano | 45525bd | 2008-01-11 06:49:35 | [diff] [blame] | 745 | } |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 746 | |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 747 | static void prime_cache_tree_sparse_dir(struct cache_tree *it, |
| 748 | struct tree *tree) |
| 749 | { |
| 750 | |
| 751 | oidcpy(&it->oid, &tree->object.oid); |
| 752 | it->entry_count = 1; |
| 753 | } |
| 754 | |
| Nguyễn Thái Ngọc Duy | c207e9e | 2018-11-10 05:49:02 | [diff] [blame] | 755 | static void prime_cache_tree_rec(struct repository *r, |
| 756 | struct cache_tree *it, |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 757 | struct tree *tree, |
| 758 | struct strbuf *tree_path) |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 759 | { |
| 760 | struct tree_desc desc; |
| 761 | struct name_entry entry; |
| 762 | int cnt; |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 763 | int base_path_len = tree_path->len; |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 764 | |
| brian m. carlson | e0a9280 | 2017-05-01 02:28:56 | [diff] [blame] | 765 | oidcpy(&it->oid, &tree->object.oid); |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 766 | |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 767 | init_tree_desc(&desc, tree->buffer, tree->size); |
| 768 | cnt = 0; |
| 769 | while (tree_entry(&desc, &entry)) { |
| 770 | if (!S_ISDIR(entry.mode)) |
| 771 | cnt++; |
| 772 | else { |
| 773 | struct cache_tree_sub *sub; |
| brian m. carlson | ea82b2a | 2019-01-15 00:39:44 | [diff] [blame] | 774 | struct tree *subtree = lookup_tree(r, &entry.oid); |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 775 | |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 776 | if (!subtree->object.parsed) |
| 777 | parse_tree(subtree); |
| 778 | sub = cache_tree_sub(it, entry.path); |
| 779 | sub->cache_tree = cache_tree(); |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 780 | |
| 781 | /* |
| 782 | * Recursively-constructed subtree path is only needed when working |
| 783 | * in a sparse index (where it's used to determine whether the |
| 784 | * subtree is a sparse directory in the index). |
| 785 | */ |
| 786 | if (r->index->sparse_index) { |
| 787 | strbuf_setlen(tree_path, base_path_len); |
| 788 | strbuf_grow(tree_path, base_path_len + entry.pathlen + 1); |
| 789 | strbuf_add(tree_path, entry.path, entry.pathlen); |
| 790 | strbuf_addch(tree_path, '/'); |
| 791 | } |
| 792 | |
| 793 | /* |
| 794 | * If a sparse index is in use, the directory being processed may be |
| 795 | * sparse. To confirm that, we can check whether an entry with that |
| 796 | * exact name exists in the index. If it does, the created subtree |
| 797 | * should be sparse. Otherwise, cache tree expansion should continue |
| 798 | * as normal. |
| 799 | */ |
| 800 | if (r->index->sparse_index && |
| 801 | index_entry_exists(r->index, tree_path->buf, tree_path->len)) |
| 802 | prime_cache_tree_sparse_dir(sub->cache_tree, subtree); |
| 803 | else |
| 804 | prime_cache_tree_rec(r, sub->cache_tree, subtree, tree_path); |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 805 | cnt += sub->cache_tree->entry_count; |
| 806 | } |
| 807 | } |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 808 | |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 809 | it->entry_count = cnt; |
| 810 | } |
| 811 | |
| Nguyễn Thái Ngọc Duy | c207e9e | 2018-11-10 05:49:02 | [diff] [blame] | 812 | void prime_cache_tree(struct repository *r, |
| 813 | struct index_state *istate, |
| 814 | struct tree *tree) |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 815 | { |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 816 | struct strbuf tree_path = STRBUF_INIT; |
| 817 | |
| Derrick Stolee | 0e5c950 | 2021-01-04 03:09:14 | [diff] [blame] | 818 | trace2_region_enter("cache-tree", "prime_cache_tree", the_repository); |
| Nguyễn Thái Ngọc Duy | e6c286e | 2014-06-13 12:19:33 | [diff] [blame] | 819 | cache_tree_free(&istate->cache_tree); |
| 820 | istate->cache_tree = cache_tree(); |
| Derrick Stolee | 0e5c950 | 2021-01-04 03:09:14 | [diff] [blame] | 821 | |
| Victoria Dye | 20ec2d0 | 2021-11-29 15:52:41 | [diff] [blame] | 822 | prime_cache_tree_rec(r, istate->cache_tree, tree, &tree_path); |
| 823 | strbuf_release(&tree_path); |
| Nguyễn Thái Ngọc Duy | e6c286e | 2014-06-13 12:19:33 | [diff] [blame] | 824 | istate->cache_changed |= CACHE_TREE_CHANGED; |
| Derrick Stolee | 0e5c950 | 2021-01-04 03:09:14 | [diff] [blame] | 825 | trace2_region_leave("cache-tree", "prime_cache_tree", the_repository); |
| Junio C Hamano | b9d37a5 | 2009-04-20 10:58:18 | [diff] [blame] | 826 | } |
| Junio C Hamano | b65982b | 2009-05-20 22:57:22 | [diff] [blame] | 827 | |
| 828 | /* |
| 829 | * find the cache_tree that corresponds to the current level without |
| 830 | * exploding the full path into textual form. The root of the |
| 831 | * cache tree is given as "root", and our current level is "info". |
| 832 | * (1) When at root level, info->prev is NULL, so it is "root" itself. |
| 833 | * (2) Otherwise, find the cache_tree that corresponds to one level |
| 834 | * above us, and find ourselves in there. |
| 835 | */ |
| 836 | static struct cache_tree *find_cache_tree_from_traversal(struct cache_tree *root, |
| 837 | struct traverse_info *info) |
| 838 | { |
| 839 | struct cache_tree *our_parent; |
| 840 | |
| 841 | if (!info->prev) |
| 842 | return root; |
| 843 | our_parent = find_cache_tree_from_traversal(root, info->prev); |
| Jeff King | 9055384 | 2019-07-31 04:38:15 | [diff] [blame] | 844 | return cache_tree_find(our_parent, info->name); |
| Junio C Hamano | b65982b | 2009-05-20 22:57:22 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | int cache_tree_matches_traversal(struct cache_tree *root, |
| 848 | struct name_entry *ent, |
| 849 | struct traverse_info *info) |
| 850 | { |
| 851 | struct cache_tree *it; |
| 852 | |
| 853 | it = find_cache_tree_from_traversal(root, info); |
| 854 | it = cache_tree_find(it, ent->path); |
| brian m. carlson | ea82b2a | 2019-01-15 00:39:44 | [diff] [blame] | 855 | if (it && it->entry_count > 0 && oideq(&ent->oid, &it->oid)) |
| Junio C Hamano | b65982b | 2009-05-20 22:57:22 | [diff] [blame] | 856 | return it->entry_count; |
| 857 | return 0; |
| 858 | } |
| Thomas Rast | 996277c | 2011-12-06 17:43:37 | [diff] [blame] | 859 | |
| Derrick Stolee | 9ad2d5e | 2021-03-30 13:11:03 | [diff] [blame] | 860 | static void verify_one_sparse(struct repository *r, |
| 861 | struct index_state *istate, |
| 862 | struct cache_tree *it, |
| 863 | struct strbuf *path, |
| 864 | int pos) |
| 865 | { |
| 866 | struct cache_entry *ce = istate->cache[pos]; |
| 867 | |
| 868 | if (!S_ISSPARSEDIR(ce->ce_mode)) |
| 869 | BUG("directory '%s' is present in index, but not sparse", |
| 870 | path->buf); |
| 871 | } |
| 872 | |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 873 | /* |
| 874 | * Returns: |
| 875 | * 0 - Verification completed. |
| 876 | * 1 - Restart verification - a call to ensure_full_index() freed the cache |
| 877 | * tree that is being verified and verification needs to be restarted from |
| 878 | * the new toplevel cache tree. |
| 879 | */ |
| 880 | static int verify_one(struct repository *r, |
| 881 | struct index_state *istate, |
| 882 | struct cache_tree *it, |
| 883 | struct strbuf *path) |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 884 | { |
| 885 | int i, pos, len = path->len; |
| 886 | struct strbuf tree_buf = STRBUF_INIT; |
| 887 | struct object_id new_oid; |
| 888 | |
| 889 | for (i = 0; i < it->subtree_nr; i++) { |
| 890 | strbuf_addf(path, "%s/", it->down[i]->name); |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 891 | if (verify_one(r, istate, it->down[i]->cache_tree, path)) |
| 892 | return 1; |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 893 | strbuf_setlen(path, len); |
| 894 | } |
| 895 | |
| 896 | if (it->entry_count < 0 || |
| 897 | /* no verification on tests (t7003) that replace trees */ |
| Nguyễn Thái Ngọc Duy | c207e9e | 2018-11-10 05:49:02 | [diff] [blame] | 898 | lookup_replace_object(r, &it->oid) != &it->oid) |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 899 | return 0; |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 900 | |
| 901 | if (path->len) { |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 902 | /* |
| 903 | * If the index is sparse and the cache tree is not |
| 904 | * index_name_pos() may trigger ensure_full_index() which will |
| 905 | * free the tree that is being verified. |
| 906 | */ |
| 907 | int is_sparse = istate->sparse_index; |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 908 | pos = index_name_pos(istate, path->buf, path->len); |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 909 | if (is_sparse && !istate->sparse_index) |
| 910 | return 1; |
| Derrick Stolee | 9ad2d5e | 2021-03-30 13:11:03 | [diff] [blame] | 911 | |
| 912 | if (pos >= 0) { |
| 913 | verify_one_sparse(r, istate, it, path, pos); |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 914 | return 0; |
| Derrick Stolee | 9ad2d5e | 2021-03-30 13:11:03 | [diff] [blame] | 915 | } |
| 916 | |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 917 | pos = -pos - 1; |
| 918 | } else { |
| 919 | pos = 0; |
| 920 | } |
| 921 | |
| 922 | i = 0; |
| 923 | while (i < it->entry_count) { |
| 924 | struct cache_entry *ce = istate->cache[pos + i]; |
| 925 | const char *slash; |
| 926 | struct cache_tree_sub *sub = NULL; |
| 927 | const struct object_id *oid; |
| 928 | const char *name; |
| 929 | unsigned mode; |
| 930 | int entlen; |
| 931 | |
| 932 | if (ce->ce_flags & (CE_STAGEMASK | CE_INTENT_TO_ADD | CE_REMOVE)) |
| 933 | BUG("%s with flags 0x%x should not be in cache-tree", |
| 934 | ce->name, ce->ce_flags); |
| 935 | name = ce->name + path->len; |
| 936 | slash = strchr(name, '/'); |
| 937 | if (slash) { |
| 938 | entlen = slash - name; |
| 939 | sub = find_subtree(it, ce->name + path->len, entlen, 0); |
| 940 | if (!sub || sub->cache_tree->entry_count < 0) |
| 941 | BUG("bad subtree '%.*s'", entlen, name); |
| 942 | oid = &sub->cache_tree->oid; |
| 943 | mode = S_IFDIR; |
| 944 | i += sub->cache_tree->entry_count; |
| 945 | } else { |
| 946 | oid = &ce->oid; |
| 947 | mode = ce->ce_mode; |
| 948 | entlen = ce_namelen(ce) - path->len; |
| 949 | i++; |
| 950 | } |
| 951 | strbuf_addf(&tree_buf, "%o %.*s%c", mode, entlen, name, '\0'); |
| Matheus Tavares | a651946 | 2020-01-30 20:32:18 | [diff] [blame] | 952 | strbuf_add(&tree_buf, oid->hash, r->hash_algo->rawsz); |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 953 | } |
| Ævar Arnfjörð Bjarmason | 44439c1 | 2022-02-04 23:48:32 | [diff] [blame] | 954 | hash_object_file(r->hash_algo, tree_buf.buf, tree_buf.len, OBJ_TREE, |
| Matheus Tavares | 2dcde20 | 2020-01-30 20:32:22 | [diff] [blame] | 955 | &new_oid); |
| Jeff King | e43d2dc | 2018-10-02 21:19:21 | [diff] [blame] | 956 | if (!oideq(&new_oid, &it->oid)) |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 957 | BUG("cache-tree for path %.*s does not match. " |
| 958 | "Expected %s got %s", len, path->buf, |
| 959 | oid_to_hex(&new_oid), oid_to_hex(&it->oid)); |
| 960 | strbuf_setlen(path, len); |
| 961 | strbuf_release(&tree_buf); |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 962 | return 0; |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 963 | } |
| 964 | |
| Nguyễn Thái Ngọc Duy | c207e9e | 2018-11-10 05:49:02 | [diff] [blame] | 965 | void cache_tree_verify(struct repository *r, struct index_state *istate) |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 966 | { |
| 967 | struct strbuf path = STRBUF_INIT; |
| 968 | |
| 969 | if (!istate->cache_tree) |
| 970 | return; |
| Phillip Wood | f751097 | 2021-10-07 18:07:21 | [diff] [blame] | 971 | if (verify_one(r, istate, istate->cache_tree, &path)) { |
| 972 | strbuf_reset(&path); |
| 973 | if (verify_one(r, istate, istate->cache_tree, &path)) |
| 974 | BUG("ensure_full_index() called twice while verifying cache tree"); |
| 975 | } |
| Nguyễn Thái Ngọc Duy | 4592e60 | 2018-08-18 14:41:28 | [diff] [blame] | 976 | strbuf_release(&path); |
| 977 | } |