1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
4 #include "environment.h"
9 #include "cache-tree.h"
10 #include "bulk-checkin.h"
11 #include "object-file.h"
12 #include "object-store-ll.h"
13 #include "read-cache-ll.h"
14 #include "replace-object.h"
15 #include "promisor-remote.h"
19 #ifndef DEBUG_CACHE_TREE
20 #define DEBUG_CACHE_TREE 0
23 struct cache_tree
*cache_tree(void)
25 struct cache_tree
*it
= xcalloc(1, sizeof(struct cache_tree
));
30 void cache_tree_free(struct cache_tree
**it_p
)
33 struct cache_tree
*it
= *it_p
;
37 for (i
= 0; i
< it
->subtree_nr
; i
++)
39 cache_tree_free(&it
->down
[i
]->cache_tree
);
47 static int subtree_name_cmp(const char *one
, int onelen
,
48 const char *two
, int twolen
)
54 return memcmp(one
, two
, onelen
);
57 int cache_tree_subtree_pos(struct cache_tree
*it
, const char *path
, int pathlen
)
59 struct cache_tree_sub
**down
= it
->down
;
64 int mi
= lo
+ (hi
- lo
) / 2;
65 struct cache_tree_sub
*mdl
= down
[mi
];
66 int cmp
= subtree_name_cmp(path
, pathlen
,
67 mdl
->name
, mdl
->namelen
);
78 static struct cache_tree_sub
*find_subtree(struct cache_tree
*it
,
83 struct cache_tree_sub
*down
;
84 int pos
= cache_tree_subtree_pos(it
, path
, pathlen
);
91 ALLOC_GROW(it
->down
, it
->subtree_nr
+ 1, it
->subtree_alloc
);
94 FLEX_ALLOC_MEM(down
, name
, path
, pathlen
);
95 down
->cache_tree
= NULL
;
96 down
->namelen
= pathlen
;
98 if (pos
< it
->subtree_nr
)
99 MOVE_ARRAY(it
->down
+ pos
+ 1, it
->down
+ pos
,
100 it
->subtree_nr
- pos
- 1);
101 it
->down
[pos
] = down
;
105 struct cache_tree_sub
*cache_tree_sub(struct cache_tree
*it
, const char *path
)
107 int pathlen
= strlen(path
);
108 return find_subtree(it
, path
, pathlen
, 1);
111 static int do_invalidate_path(struct cache_tree
*it
, const char *path
)
114 * ==> invalidate self
115 * ==> find "a", have it invalidate "b/c"
117 * ==> invalidate self
118 * ==> if "a" exists as a subtree, remove it.
122 struct cache_tree_sub
*down
;
125 fprintf(stderr
, "cache-tree invalidate <%s>\n", path
);
130 slash
= strchrnul(path
, '/');
131 namelen
= slash
- path
;
132 it
->entry_count
= -1;
135 pos
= cache_tree_subtree_pos(it
, path
, namelen
);
137 cache_tree_free(&it
->down
[pos
]->cache_tree
);
142 * move 4 and 5 up one place (2 entries)
143 * 2 = 6 - 3 - 1 = subtree_nr - pos - 1
145 MOVE_ARRAY(it
->down
+ pos
, it
->down
+ pos
+ 1,
146 it
->subtree_nr
- pos
- 1);
151 down
= find_subtree(it
, path
, namelen
, 0);
153 do_invalidate_path(down
->cache_tree
, slash
+ 1);
157 void cache_tree_invalidate_path(struct index_state
*istate
, const char *path
)
159 if (do_invalidate_path(istate
->cache_tree
, path
))
160 istate
->cache_changed
|= CACHE_TREE_CHANGED
;
163 static int verify_cache(struct index_state
*istate
, int flags
)
166 int silent
= flags
& WRITE_TREE_SILENT
;
168 /* Verify that the tree is merged */
170 for (i
= 0; i
< istate
->cache_nr
; i
++) {
171 const struct cache_entry
*ce
= istate
->cache
[i
];
176 fprintf(stderr
, "...\n");
179 fprintf(stderr
, "%s: unmerged (%s)\n",
180 ce
->name
, oid_to_hex(&ce
->oid
));
186 /* Also verify that the cache does not have path and path/file
187 * at the same time. At this point we know the cache has only
191 for (i
= 0; i
+ 1 < istate
->cache_nr
; i
++) {
192 /* path/file always comes after path because of the way
193 * the cache is sorted. Also path can appear only once,
194 * which means conflicting one would immediately follow.
196 const struct cache_entry
*this_ce
= istate
->cache
[i
];
197 const struct cache_entry
*next_ce
= istate
->cache
[i
+ 1];
198 const char *this_name
= this_ce
->name
;
199 const char *next_name
= next_ce
->name
;
200 int this_len
= ce_namelen(this_ce
);
201 if (this_len
< ce_namelen(next_ce
) &&
202 next_name
[this_len
] == '/' &&
203 strncmp(this_name
, next_name
, this_len
) == 0) {
205 fprintf(stderr
, "...\n");
208 fprintf(stderr
, "You have both %s and %s\n",
209 this_name
, next_name
);
217 static void discard_unused_subtrees(struct cache_tree
*it
)
219 struct cache_tree_sub
**down
= it
->down
;
220 int nr
= it
->subtree_nr
;
222 for (dst
= src
= 0; src
< nr
; src
++) {
223 struct cache_tree_sub
*s
= down
[src
];
227 cache_tree_free(&s
->cache_tree
);
234 int cache_tree_fully_valid(struct cache_tree
*it
)
239 if (it
->entry_count
< 0 || !repo_has_object_file(the_repository
, &it
->oid
))
241 for (i
= 0; i
< it
->subtree_nr
; i
++) {
242 if (!cache_tree_fully_valid(it
->down
[i
]->cache_tree
))
248 static int must_check_existence(const struct cache_entry
*ce
)
250 return !(repo_has_promisor_remote(the_repository
) && ce_skip_worktree(ce
));
253 static int update_one(struct cache_tree
*it
,
254 struct cache_entry
**cache
,
261 struct strbuf buffer
;
262 int missing_ok
= flags
& WRITE_TREE_MISSING_OK
;
263 int dryrun
= flags
& WRITE_TREE_DRY_RUN
;
264 int repair
= flags
& WRITE_TREE_REPAIR
;
265 int to_invalidate
= 0;
268 assert(!(dryrun
&& repair
));
273 * If the first entry of this region is a sparse directory
274 * entry corresponding exactly to 'base', then this cache_tree
275 * struct is a "leaf" in the data structure, pointing to the
276 * tree OID specified in the entry.
279 const struct cache_entry
*ce
= cache
[0];
281 if (S_ISSPARSEDIR(ce
->ce_mode
) &&
282 ce
->ce_namelen
== baselen
&&
283 !strncmp(ce
->name
, base
, baselen
)) {
285 oidcpy(&it
->oid
, &ce
->oid
);
290 if (0 <= it
->entry_count
&& repo_has_object_file(the_repository
, &it
->oid
))
291 return it
->entry_count
;
294 * We first scan for subtrees and update them; we start by
295 * marking existing subtrees -- the ones that are unmarked
296 * should not be in the result.
298 for (i
= 0; i
< it
->subtree_nr
; i
++)
299 it
->down
[i
]->used
= 0;
302 * Find the subtrees and update them.
305 while (i
< entries
) {
306 const struct cache_entry
*ce
= cache
[i
];
307 struct cache_tree_sub
*sub
;
308 const char *path
, *slash
;
309 int pathlen
, sublen
, subcnt
, subskip
;
312 pathlen
= ce_namelen(ce
);
313 if (pathlen
<= baselen
|| memcmp(base
, path
, baselen
))
314 break; /* at the end of this level */
316 slash
= strchr(path
+ baselen
, '/');
322 * a/bbb/c (base = a/, slash = /c)
324 * path+baselen = bbb/c, sublen = 3
326 sublen
= slash
- (path
+ baselen
);
327 sub
= find_subtree(it
, path
+ baselen
, sublen
, 1);
328 if (!sub
->cache_tree
)
329 sub
->cache_tree
= cache_tree();
330 subcnt
= update_one(sub
->cache_tree
,
331 cache
+ i
, entries
- i
,
333 baselen
+ sublen
+ 1,
339 die("index cache-tree records empty sub-tree");
341 sub
->count
= subcnt
; /* to be used in the next loop */
342 *skip_count
+= subskip
;
346 discard_unused_subtrees(it
);
349 * Then write out the tree object for this level.
351 strbuf_init(&buffer
, 8192);
354 while (i
< entries
) {
355 const struct cache_entry
*ce
= cache
[i
];
356 struct cache_tree_sub
*sub
= NULL
;
357 const char *path
, *slash
;
359 const struct object_id
*oid
;
361 int expected_missing
= 0;
362 int contains_ita
= 0;
366 pathlen
= ce_namelen(ce
);
367 if (pathlen
<= baselen
|| memcmp(base
, path
, baselen
))
368 break; /* at the end of this level */
370 slash
= strchr(path
+ baselen
, '/');
372 entlen
= slash
- (path
+ baselen
);
373 sub
= find_subtree(it
, path
+ baselen
, entlen
, 0);
375 die("cache-tree.c: '%.*s' in '%s' not found",
376 entlen
, path
+ baselen
, path
);
378 oid
= &sub
->cache_tree
->oid
;
380 contains_ita
= sub
->cache_tree
->entry_count
< 0;
383 expected_missing
= 1;
389 entlen
= pathlen
- baselen
;
393 ce_missing_ok
= mode
== S_IFGITLINK
|| missing_ok
||
394 !must_check_existence(ce
);
395 if (is_null_oid(oid
) ||
396 (!ce_missing_ok
&& !repo_has_object_file(the_repository
, oid
))) {
397 strbuf_release(&buffer
);
398 if (expected_missing
)
400 return error("invalid object %06o %s for '%.*s'",
401 mode
, oid_to_hex(oid
), entlen
+baselen
, path
);
405 * CE_REMOVE entries are removed before the index is
406 * written to disk. Skip them to remain consistent
407 * with the future on-disk index.
409 if (ce
->ce_flags
& CE_REMOVE
) {
410 *skip_count
= *skip_count
+ 1;
415 * CE_INTENT_TO_ADD entries exist in on-disk index but
416 * they are not part of generated trees. Invalidate up
417 * to root to force cache-tree users to read elsewhere.
419 if (!sub
&& ce_intent_to_add(ce
)) {
425 * "sub" can be an empty tree if all subentries are i-t-a.
427 if (contains_ita
&& is_empty_tree_oid(oid
, the_repository
->hash_algo
))
430 strbuf_grow(&buffer
, entlen
+ 100);
431 strbuf_addf(&buffer
, "%o %.*s%c", mode
, entlen
, path
+ baselen
, '\0');
432 strbuf_add(&buffer
, oid
->hash
, the_hash_algo
->rawsz
);
435 fprintf(stderr
, "cache-tree update-one %o %.*s\n",
436 mode
, entlen
, path
+ baselen
);
441 struct object_id oid
;
442 hash_object_file(the_hash_algo
, buffer
.buf
, buffer
.len
,
444 if (repo_has_object_file_with_flags(the_repository
, &oid
, OBJECT_INFO_SKIP_FETCH_OBJECT
))
445 oidcpy(&it
->oid
, &oid
);
449 hash_object_file(the_hash_algo
, buffer
.buf
, buffer
.len
,
451 } else if (write_object_file_flags(buffer
.buf
, buffer
.len
, OBJ_TREE
,
452 &it
->oid
, NULL
, flags
& WRITE_TREE_SILENT
453 ? HASH_SILENT
: 0)) {
454 strbuf_release(&buffer
);
458 strbuf_release(&buffer
);
459 it
->entry_count
= to_invalidate
? -1 : i
- *skip_count
;
461 fprintf(stderr
, "cache-tree update-one (%d ent, %d subtree) %s\n",
462 it
->entry_count
, it
->subtree_nr
,
463 oid_to_hex(&it
->oid
));
468 int cache_tree_update(struct index_state
*istate
, int flags
)
472 i
= verify_cache(istate
, flags
);
477 if (!istate
->cache_tree
)
478 istate
->cache_tree
= cache_tree();
480 if (!(flags
& WRITE_TREE_MISSING_OK
) && repo_has_promisor_remote(the_repository
))
481 prefetch_cache_entries(istate
, must_check_existence
);
483 trace_performance_enter();
484 trace2_region_enter("cache_tree", "update", the_repository
);
485 begin_odb_transaction();
486 i
= update_one(istate
->cache_tree
, istate
->cache
, istate
->cache_nr
,
487 "", 0, &skip
, flags
);
488 end_odb_transaction();
489 trace2_region_leave("cache_tree", "update", the_repository
);
490 trace_performance_leave("cache_tree_update");
493 istate
->cache_changed
|= CACHE_TREE_CHANGED
;
497 static void write_one(struct strbuf
*buffer
, struct cache_tree
*it
,
498 const char *path
, int pathlen
)
502 /* One "cache-tree" entry consists of the following:
503 * path (NUL terminated)
504 * entry_count, subtree_nr ("%d %d\n")
505 * tree-sha1 (missing if invalid)
506 * subtree_nr "cache-tree" entries for subtrees.
508 strbuf_grow(buffer
, pathlen
+ 100);
509 strbuf_add(buffer
, path
, pathlen
);
510 strbuf_addf(buffer
, "%c%d %d\n", 0, it
->entry_count
, it
->subtree_nr
);
513 if (0 <= it
->entry_count
)
514 fprintf(stderr
, "cache-tree <%.*s> (%d ent, %d subtree) %s\n",
515 pathlen
, path
, it
->entry_count
, it
->subtree_nr
,
516 oid_to_hex(&it
->oid
));
518 fprintf(stderr
, "cache-tree <%.*s> (%d subtree) invalid\n",
519 pathlen
, path
, it
->subtree_nr
);
522 if (0 <= it
->entry_count
) {
523 strbuf_add(buffer
, it
->oid
.hash
, the_hash_algo
->rawsz
);
525 for (i
= 0; i
< it
->subtree_nr
; i
++) {
526 struct cache_tree_sub
*down
= it
->down
[i
];
528 struct cache_tree_sub
*prev
= it
->down
[i
-1];
529 if (subtree_name_cmp(down
->name
, down
->namelen
,
530 prev
->name
, prev
->namelen
) <= 0)
531 die("fatal - unsorted cache subtree");
533 write_one(buffer
, down
->cache_tree
, down
->name
, down
->namelen
);
537 void cache_tree_write(struct strbuf
*sb
, struct cache_tree
*root
)
539 trace2_region_enter("cache_tree", "write", the_repository
);
540 write_one(sb
, root
, "", 0);
541 trace2_region_leave("cache_tree", "write", the_repository
);
544 static struct cache_tree
*read_one(const char **buffer
, unsigned long *size_p
)
546 const char *buf
= *buffer
;
547 unsigned long size
= *size_p
;
550 struct cache_tree
*it
;
552 const unsigned rawsz
= the_hash_algo
->rawsz
;
555 /* skip name, but make sure name exists */
556 while (size
&& *buf
) {
566 it
->entry_count
= strtol(cp
, &ep
, 10);
570 subtree_nr
= strtol(cp
, &ep
, 10);
573 while (size
&& *buf
&& *buf
!= '\n') {
580 if (0 <= it
->entry_count
) {
583 oidread(&it
->oid
, (const unsigned char *)buf
,
584 the_repository
->hash_algo
);
590 if (0 <= it
->entry_count
)
591 fprintf(stderr
, "cache-tree <%s> (%d ent, %d subtree) %s\n",
592 *buffer
, it
->entry_count
, subtree_nr
,
593 oid_to_hex(&it
->oid
));
595 fprintf(stderr
, "cache-tree <%s> (%d subtrees) invalid\n",
596 *buffer
, subtree_nr
);
600 * Just a heuristic -- we do not add directories that often but
601 * we do not want to have to extend it immediately when we do,
604 it
->subtree_alloc
= subtree_nr
+ 2;
605 CALLOC_ARRAY(it
->down
, it
->subtree_alloc
);
606 for (i
= 0; i
< subtree_nr
; i
++) {
607 /* read each subtree */
608 struct cache_tree
*sub
;
609 struct cache_tree_sub
*subtree
;
610 const char *name
= buf
;
612 sub
= read_one(&buf
, &size
);
615 subtree
= cache_tree_sub(it
, name
);
616 subtree
->cache_tree
= sub
;
618 if (subtree_nr
!= it
->subtree_nr
)
619 die("cache-tree: internal error");
625 cache_tree_free(&it
);
629 struct cache_tree
*cache_tree_read(const char *buffer
, unsigned long size
)
631 struct cache_tree
*result
;
634 return NULL
; /* not the whole tree */
636 trace2_region_enter("cache_tree", "read", the_repository
);
637 result
= read_one(&buffer
, &size
);
638 trace2_region_leave("cache_tree", "read", the_repository
);
643 static struct cache_tree
*cache_tree_find(struct cache_tree
*it
, const char *path
)
649 struct cache_tree_sub
*sub
;
651 slash
= strchrnul(path
, '/');
653 * Between path and slash is the name of the subtree
656 sub
= find_subtree(it
, path
, slash
- path
, 0);
659 it
= sub
->cache_tree
;
668 static int write_index_as_tree_internal(struct object_id
*oid
,
669 struct index_state
*index_state
,
670 int cache_tree_valid
,
674 if (flags
& WRITE_TREE_IGNORE_CACHE_TREE
) {
675 cache_tree_free(&index_state
->cache_tree
);
676 cache_tree_valid
= 0;
679 if (!cache_tree_valid
&& cache_tree_update(index_state
, flags
) < 0)
680 return WRITE_TREE_UNMERGED_INDEX
;
683 struct cache_tree
*subtree
;
684 subtree
= cache_tree_find(index_state
->cache_tree
, prefix
);
686 return WRITE_TREE_PREFIX_ERROR
;
687 oidcpy(oid
, &subtree
->oid
);
690 oidcpy(oid
, &index_state
->cache_tree
->oid
);
695 struct tree
* write_in_core_index_as_tree(struct repository
*repo
) {
699 struct index_state
*index_state
= repo
->index
;
700 was_valid
= index_state
->cache_tree
&&
701 cache_tree_fully_valid(index_state
->cache_tree
);
703 ret
= write_index_as_tree_internal(&o
, index_state
, was_valid
, 0, NULL
);
704 if (ret
== WRITE_TREE_UNMERGED_INDEX
) {
706 bug("there are unmerged index entries:");
707 for (i
= 0; i
< index_state
->cache_nr
; i
++) {
708 const struct cache_entry
*ce
= index_state
->cache
[i
];
710 bug("%d %.*s", ce_stage(ce
),
711 (int)ce_namelen(ce
), ce
->name
);
713 BUG("unmerged index entries when writing in-core index");
716 return lookup_tree(repo
, &index_state
->cache_tree
->oid
);
720 int write_index_as_tree(struct object_id
*oid
, struct index_state
*index_state
, const char *index_path
, int flags
, const char *prefix
)
722 int entries
, was_valid
;
723 struct lock_file lock_file
= LOCK_INIT
;
726 hold_lock_file_for_update(&lock_file
, index_path
, LOCK_DIE_ON_ERROR
);
728 entries
= read_index_from(index_state
, index_path
, get_git_dir());
730 ret
= WRITE_TREE_UNREADABLE_INDEX
;
734 was_valid
= !(flags
& WRITE_TREE_IGNORE_CACHE_TREE
) &&
735 index_state
->cache_tree
&&
736 cache_tree_fully_valid(index_state
->cache_tree
);
738 ret
= write_index_as_tree_internal(oid
, index_state
, was_valid
, flags
,
740 if (!ret
&& !was_valid
) {
741 write_locked_index(index_state
, &lock_file
, COMMIT_LOCK
);
742 /* Not being able to write is fine -- we are only interested
743 * in updating the cache-tree part, and if the next caller
744 * ends up using the old index with unupdated cache-tree part
745 * it misses the work we did here, but that is just a
746 * performance penalty and not a big deal.
751 rollback_lock_file(&lock_file
);
755 static void prime_cache_tree_sparse_dir(struct cache_tree
*it
,
759 oidcpy(&it
->oid
, &tree
->object
.oid
);
763 static void prime_cache_tree_rec(struct repository
*r
,
764 struct cache_tree
*it
,
766 struct strbuf
*tree_path
)
768 struct tree_desc desc
;
769 struct name_entry entry
;
771 size_t base_path_len
= tree_path
->len
;
773 oidcpy(&it
->oid
, &tree
->object
.oid
);
775 init_tree_desc(&desc
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
777 while (tree_entry(&desc
, &entry
)) {
778 if (!S_ISDIR(entry
.mode
))
781 struct cache_tree_sub
*sub
;
782 struct tree
*subtree
= lookup_tree(r
, &entry
.oid
);
784 if (parse_tree(subtree
) < 0)
786 sub
= cache_tree_sub(it
, entry
.path
);
787 sub
->cache_tree
= cache_tree();
790 * Recursively-constructed subtree path is only needed when working
791 * in a sparse index (where it's used to determine whether the
792 * subtree is a sparse directory in the index).
794 if (r
->index
->sparse_index
) {
795 strbuf_setlen(tree_path
, base_path_len
);
796 strbuf_add(tree_path
, entry
.path
, entry
.pathlen
);
797 strbuf_addch(tree_path
, '/');
801 * If a sparse index is in use, the directory being processed may be
802 * sparse. To confirm that, we can check whether an entry with that
803 * exact name exists in the index. If it does, the created subtree
804 * should be sparse. Otherwise, cache tree expansion should continue
807 if (r
->index
->sparse_index
&&
808 index_entry_exists(r
->index
, tree_path
->buf
, tree_path
->len
))
809 prime_cache_tree_sparse_dir(sub
->cache_tree
, subtree
);
811 prime_cache_tree_rec(r
, sub
->cache_tree
, subtree
, tree_path
);
812 cnt
+= sub
->cache_tree
->entry_count
;
816 it
->entry_count
= cnt
;
819 void prime_cache_tree(struct repository
*r
,
820 struct index_state
*istate
,
823 struct strbuf tree_path
= STRBUF_INIT
;
825 trace2_region_enter("cache-tree", "prime_cache_tree", r
);
826 cache_tree_free(&istate
->cache_tree
);
827 istate
->cache_tree
= cache_tree();
829 prime_cache_tree_rec(r
, istate
->cache_tree
, tree
, &tree_path
);
830 strbuf_release(&tree_path
);
831 istate
->cache_changed
|= CACHE_TREE_CHANGED
;
832 trace2_region_leave("cache-tree", "prime_cache_tree", r
);
836 * find the cache_tree that corresponds to the current level without
837 * exploding the full path into textual form. The root of the
838 * cache tree is given as "root", and our current level is "info".
839 * (1) When at root level, info->prev is NULL, so it is "root" itself.
840 * (2) Otherwise, find the cache_tree that corresponds to one level
841 * above us, and find ourselves in there.
843 static struct cache_tree
*find_cache_tree_from_traversal(struct cache_tree
*root
,
844 struct traverse_info
*info
)
846 struct cache_tree
*our_parent
;
850 our_parent
= find_cache_tree_from_traversal(root
, info
->prev
);
851 return cache_tree_find(our_parent
, info
->name
);
854 int cache_tree_matches_traversal(struct cache_tree
*root
,
855 struct name_entry
*ent
,
856 struct traverse_info
*info
)
858 struct cache_tree
*it
;
860 it
= find_cache_tree_from_traversal(root
, info
);
861 it
= cache_tree_find(it
, ent
->path
);
862 if (it
&& it
->entry_count
> 0 && oideq(&ent
->oid
, &it
->oid
))
863 return it
->entry_count
;
867 static void verify_one_sparse(struct index_state
*istate
,
871 struct cache_entry
*ce
= istate
->cache
[pos
];
873 if (!S_ISSPARSEDIR(ce
->ce_mode
))
874 BUG("directory '%s' is present in index, but not sparse",
880 * 0 - Verification completed.
881 * 1 - Restart verification - a call to ensure_full_index() freed the cache
882 * tree that is being verified and verification needs to be restarted from
883 * the new toplevel cache tree.
885 static int verify_one(struct repository
*r
,
886 struct index_state
*istate
,
887 struct cache_tree
*it
,
890 int i
, pos
, len
= path
->len
;
891 struct strbuf tree_buf
= STRBUF_INIT
;
892 struct object_id new_oid
;
894 for (i
= 0; i
< it
->subtree_nr
; i
++) {
895 strbuf_addf(path
, "%s/", it
->down
[i
]->name
);
896 if (verify_one(r
, istate
, it
->down
[i
]->cache_tree
, path
))
898 strbuf_setlen(path
, len
);
901 if (it
->entry_count
< 0 ||
902 /* no verification on tests (t7003) that replace trees */
903 lookup_replace_object(r
, &it
->oid
) != &it
->oid
)
908 * If the index is sparse and the cache tree is not
909 * index_name_pos() may trigger ensure_full_index() which will
910 * free the tree that is being verified.
912 int is_sparse
= istate
->sparse_index
;
913 pos
= index_name_pos(istate
, path
->buf
, path
->len
);
914 if (is_sparse
&& !istate
->sparse_index
)
918 verify_one_sparse(istate
, path
, pos
);
928 while (i
< it
->entry_count
) {
929 struct cache_entry
*ce
= istate
->cache
[pos
+ i
];
931 struct cache_tree_sub
*sub
= NULL
;
932 const struct object_id
*oid
;
937 if (ce
->ce_flags
& (CE_STAGEMASK
| CE_INTENT_TO_ADD
| CE_REMOVE
))
938 BUG("%s with flags 0x%x should not be in cache-tree",
939 ce
->name
, ce
->ce_flags
);
940 name
= ce
->name
+ path
->len
;
941 slash
= strchr(name
, '/');
943 entlen
= slash
- name
;
944 sub
= find_subtree(it
, ce
->name
+ path
->len
, entlen
, 0);
945 if (!sub
|| sub
->cache_tree
->entry_count
< 0)
946 BUG("bad subtree '%.*s'", entlen
, name
);
947 oid
= &sub
->cache_tree
->oid
;
949 i
+= sub
->cache_tree
->entry_count
;
953 entlen
= ce_namelen(ce
) - path
->len
;
956 strbuf_addf(&tree_buf
, "%o %.*s%c", mode
, entlen
, name
, '\0');
957 strbuf_add(&tree_buf
, oid
->hash
, r
->hash_algo
->rawsz
);
959 hash_object_file(r
->hash_algo
, tree_buf
.buf
, tree_buf
.len
, OBJ_TREE
,
961 if (!oideq(&new_oid
, &it
->oid
))
962 BUG("cache-tree for path %.*s does not match. "
963 "Expected %s got %s", len
, path
->buf
,
964 oid_to_hex(&new_oid
), oid_to_hex(&it
->oid
));
965 strbuf_setlen(path
, len
);
966 strbuf_release(&tree_buf
);
970 void cache_tree_verify(struct repository
*r
, struct index_state
*istate
)
972 struct strbuf path
= STRBUF_INIT
;
974 if (!istate
->cache_tree
)
976 if (verify_one(r
, istate
, istate
->cache_tree
, &path
)) {
978 if (verify_one(r
, istate
, istate
->cache_tree
, &path
))
979 BUG("ensure_full_index() called twice while verifying cache tree");
981 strbuf_release(&path
);