4 #include "git-compat-util.h"
12 #include "sha1-lookup.h"
13 #include "commit-graph.h"
14 #include "object-store.h"
17 #include "replace-object.h"
20 #include "commit-slab.h"
23 void git_test_write_commit_graph_or_die(void)
26 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH
, 0))
29 if (git_env_bool(GIT_TEST_COMMIT_GRAPH_CHANGED_PATHS
, 0))
30 flags
= COMMIT_GRAPH_WRITE_BLOOM_FILTERS
;
32 if (write_commit_graph_reachable(the_repository
->objects
->odb
,
34 die("failed to write commit-graph under GIT_TEST_COMMIT_GRAPH");
37 #define GRAPH_SIGNATURE 0x43475048 /* "CGPH" */
38 #define GRAPH_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
39 #define GRAPH_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
40 #define GRAPH_CHUNKID_DATA 0x43444154 /* "CDAT" */
41 #define GRAPH_CHUNKID_EXTRAEDGES 0x45444745 /* "EDGE" */
42 #define GRAPH_CHUNKID_BLOOMINDEXES 0x42494458 /* "BIDX" */
43 #define GRAPH_CHUNKID_BLOOMDATA 0x42444154 /* "BDAT" */
44 #define GRAPH_CHUNKID_BASE 0x42415345 /* "BASE" */
45 #define MAX_NUM_CHUNKS 7
47 #define GRAPH_DATA_WIDTH (the_hash_algo->rawsz + 16)
49 #define GRAPH_VERSION_1 0x1
50 #define GRAPH_VERSION GRAPH_VERSION_1
52 #define GRAPH_EXTRA_EDGES_NEEDED 0x80000000
53 #define GRAPH_EDGE_LAST_MASK 0x7fffffff
54 #define GRAPH_PARENT_NONE 0x70000000
56 #define GRAPH_LAST_EDGE 0x80000000
58 #define GRAPH_HEADER_SIZE 8
59 #define GRAPH_FANOUT_SIZE (4 * 256)
60 #define GRAPH_CHUNKLOOKUP_WIDTH 12
61 #define GRAPH_MIN_SIZE (GRAPH_HEADER_SIZE + 4 * GRAPH_CHUNKLOOKUP_WIDTH \
62 + GRAPH_FANOUT_SIZE + the_hash_algo->rawsz)
64 /* Remember to update object flag allocation in object.h */
65 #define REACHABLE (1u<<15)
67 /* Keep track of the order in which commits are added to our list. */
68 define_commit_slab(commit_pos
, int);
69 static struct commit_pos commit_pos
= COMMIT_SLAB_INIT(1, commit_pos
);
71 static void set_commit_pos(struct repository
*r
, const struct object_id
*oid
)
73 static int32_t max_pos
;
74 struct commit
*commit
= lookup_commit(r
, oid
);
77 return; /* should never happen, but be lenient */
79 *commit_pos_at(&commit_pos
, commit
) = max_pos
++;
82 static int commit_pos_cmp(const void *va
, const void *vb
)
84 const struct commit
*a
= *(const struct commit
**)va
;
85 const struct commit
*b
= *(const struct commit
**)vb
;
86 return commit_pos_at(&commit_pos
, a
) -
87 commit_pos_at(&commit_pos
, b
);
90 static int commit_gen_cmp(const void *va
, const void *vb
)
92 const struct commit
*a
= *(const struct commit
**)va
;
93 const struct commit
*b
= *(const struct commit
**)vb
;
95 /* lower generation commits first */
96 if (a
->generation
< b
->generation
)
98 else if (a
->generation
> b
->generation
)
101 /* use date as a heuristic when generations are equal */
102 if (a
->date
< b
->date
)
104 else if (a
->date
> b
->date
)
109 char *get_commit_graph_filename(struct object_directory
*obj_dir
)
111 return xstrfmt("%s/info/commit-graph", obj_dir
->path
);
114 static char *get_split_graph_filename(struct object_directory
*odb
,
117 return xstrfmt("%s/info/commit-graphs/graph-%s.graph", odb
->path
,
121 static char *get_chain_filename(struct object_directory
*odb
)
123 return xstrfmt("%s/info/commit-graphs/commit-graph-chain", odb
->path
);
126 static uint8_t oid_version(void)
131 static struct commit_graph
*alloc_commit_graph(void)
133 struct commit_graph
*g
= xcalloc(1, sizeof(*g
));
138 extern int read_replace_refs
;
140 static int commit_graph_compatible(struct repository
*r
)
145 if (read_replace_refs
) {
146 prepare_replace_object(r
);
147 if (hashmap_get_size(&r
->objects
->replace_map
->map
))
151 prepare_commit_graft(r
);
152 if (r
->parsed_objects
&& r
->parsed_objects
->grafts_nr
)
154 if (is_repository_shallow(r
))
160 int open_commit_graph(const char *graph_file
, int *fd
, struct stat
*st
)
162 *fd
= git_open(graph_file
);
165 if (fstat(*fd
, st
)) {
172 struct commit_graph
*load_commit_graph_one_fd_st(int fd
, struct stat
*st
,
173 struct object_directory
*odb
)
177 struct commit_graph
*ret
;
179 graph_size
= xsize_t(st
->st_size
);
181 if (graph_size
< GRAPH_MIN_SIZE
) {
183 error(_("commit-graph file is too small"));
186 graph_map
= xmmap(NULL
, graph_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
188 ret
= parse_commit_graph(graph_map
, graph_size
);
193 munmap(graph_map
, graph_size
);
198 static int verify_commit_graph_lite(struct commit_graph
*g
)
201 * Basic validation shared between parse_commit_graph()
202 * which'll be called every time the graph is used, and the
203 * much more expensive verify_commit_graph() used by
204 * "commit-graph verify".
206 * There should only be very basic checks here to ensure that
207 * we don't e.g. segfault in fill_commit_in_graph(), but
208 * because this is a very hot codepath nothing that e.g. loops
209 * over g->num_commits, or runs a checksum on the commit-graph
212 if (!g
->chunk_oid_fanout
) {
213 error("commit-graph is missing the OID Fanout chunk");
216 if (!g
->chunk_oid_lookup
) {
217 error("commit-graph is missing the OID Lookup chunk");
220 if (!g
->chunk_commit_data
) {
221 error("commit-graph is missing the Commit Data chunk");
228 struct commit_graph
*parse_commit_graph(void *graph_map
, size_t graph_size
)
230 const unsigned char *data
, *chunk_lookup
;
232 struct commit_graph
*graph
;
233 uint64_t last_chunk_offset
;
234 uint32_t last_chunk_id
;
235 uint32_t graph_signature
;
236 unsigned char graph_version
, hash_version
;
241 if (graph_size
< GRAPH_MIN_SIZE
)
244 data
= (const unsigned char *)graph_map
;
246 graph_signature
= get_be32(data
);
247 if (graph_signature
!= GRAPH_SIGNATURE
) {
248 error(_("commit-graph signature %X does not match signature %X"),
249 graph_signature
, GRAPH_SIGNATURE
);
253 graph_version
= *(unsigned char*)(data
+ 4);
254 if (graph_version
!= GRAPH_VERSION
) {
255 error(_("commit-graph version %X does not match version %X"),
256 graph_version
, GRAPH_VERSION
);
260 hash_version
= *(unsigned char*)(data
+ 5);
261 if (hash_version
!= oid_version()) {
262 error(_("commit-graph hash version %X does not match version %X"),
263 hash_version
, oid_version());
267 graph
= alloc_commit_graph();
269 graph
->hash_len
= the_hash_algo
->rawsz
;
270 graph
->num_chunks
= *(unsigned char*)(data
+ 6);
271 graph
->data
= graph_map
;
272 graph
->data_len
= graph_size
;
275 last_chunk_offset
= 8;
276 chunk_lookup
= data
+ 8;
277 for (i
= 0; i
< graph
->num_chunks
; i
++) {
279 uint64_t chunk_offset
;
280 int chunk_repeated
= 0;
282 if (data
+ graph_size
- chunk_lookup
<
283 GRAPH_CHUNKLOOKUP_WIDTH
) {
284 error(_("commit-graph chunk lookup table entry missing; file may be incomplete"));
285 goto free_and_return
;
288 chunk_id
= get_be32(chunk_lookup
+ 0);
289 chunk_offset
= get_be64(chunk_lookup
+ 4);
291 chunk_lookup
+= GRAPH_CHUNKLOOKUP_WIDTH
;
293 if (chunk_offset
> graph_size
- the_hash_algo
->rawsz
) {
294 error(_("commit-graph improper chunk offset %08x%08x"), (uint32_t)(chunk_offset
>> 32),
295 (uint32_t)chunk_offset
);
296 goto free_and_return
;
300 case GRAPH_CHUNKID_OIDFANOUT
:
301 if (graph
->chunk_oid_fanout
)
304 graph
->chunk_oid_fanout
= (uint32_t*)(data
+ chunk_offset
);
307 case GRAPH_CHUNKID_OIDLOOKUP
:
308 if (graph
->chunk_oid_lookup
)
311 graph
->chunk_oid_lookup
= data
+ chunk_offset
;
314 case GRAPH_CHUNKID_DATA
:
315 if (graph
->chunk_commit_data
)
318 graph
->chunk_commit_data
= data
+ chunk_offset
;
321 case GRAPH_CHUNKID_EXTRAEDGES
:
322 if (graph
->chunk_extra_edges
)
325 graph
->chunk_extra_edges
= data
+ chunk_offset
;
328 case GRAPH_CHUNKID_BASE
:
329 if (graph
->chunk_base_graphs
)
332 graph
->chunk_base_graphs
= data
+ chunk_offset
;
335 case GRAPH_CHUNKID_BLOOMINDEXES
:
336 if (graph
->chunk_bloom_indexes
)
339 graph
->chunk_bloom_indexes
= data
+ chunk_offset
;
342 case GRAPH_CHUNKID_BLOOMDATA
:
343 if (graph
->chunk_bloom_data
)
346 uint32_t hash_version
;
347 graph
->chunk_bloom_data
= data
+ chunk_offset
;
348 hash_version
= get_be32(data
+ chunk_offset
);
350 if (hash_version
!= 1)
353 graph
->bloom_filter_settings
= xmalloc(sizeof(struct bloom_filter_settings
));
354 graph
->bloom_filter_settings
->hash_version
= hash_version
;
355 graph
->bloom_filter_settings
->num_hashes
= get_be32(data
+ chunk_offset
+ 4);
356 graph
->bloom_filter_settings
->bits_per_entry
= get_be32(data
+ chunk_offset
+ 8);
361 if (chunk_repeated
) {
362 error(_("commit-graph chunk id %08x appears multiple times"), chunk_id
);
363 goto free_and_return
;
366 if (last_chunk_id
== GRAPH_CHUNKID_OIDLOOKUP
)
368 graph
->num_commits
= (chunk_offset
- last_chunk_offset
)
372 last_chunk_id
= chunk_id
;
373 last_chunk_offset
= chunk_offset
;
376 if (graph
->chunk_bloom_indexes
&& graph
->chunk_bloom_data
) {
377 init_bloom_filters();
379 /* We need both the bloom chunks to exist together. Else ignore the data */
380 graph
->chunk_bloom_indexes
= NULL
;
381 graph
->chunk_bloom_data
= NULL
;
382 FREE_AND_NULL(graph
->bloom_filter_settings
);
385 hashcpy(graph
->oid
.hash
, graph
->data
+ graph
->data_len
- graph
->hash_len
);
387 if (verify_commit_graph_lite(graph
))
388 goto free_and_return
;
393 free(graph
->bloom_filter_settings
);
398 static struct commit_graph
*load_commit_graph_one(const char *graph_file
,
399 struct object_directory
*odb
)
404 struct commit_graph
*g
;
405 int open_ok
= open_commit_graph(graph_file
, &fd
, &st
);
410 g
= load_commit_graph_one_fd_st(fd
, &st
, odb
);
413 g
->filename
= xstrdup(graph_file
);
418 static struct commit_graph
*load_commit_graph_v1(struct repository
*r
,
419 struct object_directory
*odb
)
421 char *graph_name
= get_commit_graph_filename(odb
);
422 struct commit_graph
*g
= load_commit_graph_one(graph_name
, odb
);
428 static int add_graph_to_chain(struct commit_graph
*g
,
429 struct commit_graph
*chain
,
430 struct object_id
*oids
,
433 struct commit_graph
*cur_g
= chain
;
435 if (n
&& !g
->chunk_base_graphs
) {
436 warning(_("commit-graph has no base graphs chunk"));
444 !oideq(&oids
[n
], &cur_g
->oid
) ||
445 !hasheq(oids
[n
].hash
, g
->chunk_base_graphs
+ g
->hash_len
* n
)) {
446 warning(_("commit-graph chain does not match"));
450 cur_g
= cur_g
->base_graph
;
453 g
->base_graph
= chain
;
456 g
->num_commits_in_base
= chain
->num_commits
+ chain
->num_commits_in_base
;
461 static struct commit_graph
*load_commit_graph_chain(struct repository
*r
,
462 struct object_directory
*odb
)
464 struct commit_graph
*graph_chain
= NULL
;
465 struct strbuf line
= STRBUF_INIT
;
467 struct object_id
*oids
;
468 int i
= 0, valid
= 1, count
;
469 char *chain_name
= get_chain_filename(odb
);
473 fp
= fopen(chain_name
, "r");
474 stat_res
= stat(chain_name
, &st
);
479 st
.st_size
<= the_hash_algo
->hexsz
)
482 count
= st
.st_size
/ (the_hash_algo
->hexsz
+ 1);
483 oids
= xcalloc(count
, sizeof(struct object_id
));
487 for (i
= 0; i
< count
; i
++) {
488 struct object_directory
*odb
;
490 if (strbuf_getline_lf(&line
, fp
) == EOF
)
493 if (get_oid_hex(line
.buf
, &oids
[i
])) {
494 warning(_("invalid commit-graph chain: line '%s' not a hash"),
501 for (odb
= r
->objects
->odb
; odb
; odb
= odb
->next
) {
502 char *graph_name
= get_split_graph_filename(odb
, line
.buf
);
503 struct commit_graph
*g
= load_commit_graph_one(graph_name
, odb
);
508 if (add_graph_to_chain(g
, graph_chain
, oids
, i
)) {
518 warning(_("unable to find all commit-graph files"));
525 strbuf_release(&line
);
530 struct commit_graph
*read_commit_graph_one(struct repository
*r
,
531 struct object_directory
*odb
)
533 struct commit_graph
*g
= load_commit_graph_v1(r
, odb
);
536 g
= load_commit_graph_chain(r
, odb
);
541 static void prepare_commit_graph_one(struct repository
*r
,
542 struct object_directory
*odb
)
545 if (r
->objects
->commit_graph
)
548 r
->objects
->commit_graph
= read_commit_graph_one(r
, odb
);
552 * Return 1 if commit_graph is non-NULL, and 0 otherwise.
554 * On the first invocation, this function attempts to load the commit
555 * graph if the_repository is configured to have one.
557 static int prepare_commit_graph(struct repository
*r
)
559 struct object_directory
*odb
;
562 * This must come before the "already attempted?" check below, because
563 * we want to disable even an already-loaded graph file.
565 if (r
->commit_graph_disabled
)
568 if (r
->objects
->commit_graph_attempted
)
569 return !!r
->objects
->commit_graph
;
570 r
->objects
->commit_graph_attempted
= 1;
572 if (git_env_bool(GIT_TEST_COMMIT_GRAPH_DIE_ON_LOAD
, 0))
573 die("dying as requested by the '%s' variable on commit-graph load!",
574 GIT_TEST_COMMIT_GRAPH_DIE_ON_LOAD
);
576 prepare_repo_settings(r
);
578 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH
, 0) &&
579 r
->settings
.core_commit_graph
!= 1)
581 * This repository is not configured to use commit graphs, so
582 * do not load one. (But report commit_graph_attempted anyway
583 * so that commit graph loading is not attempted again for this
588 if (!commit_graph_compatible(r
))
592 for (odb
= r
->objects
->odb
;
593 !r
->objects
->commit_graph
&& odb
;
595 prepare_commit_graph_one(r
, odb
);
596 return !!r
->objects
->commit_graph
;
599 int generation_numbers_enabled(struct repository
*r
)
601 uint32_t first_generation
;
602 struct commit_graph
*g
;
603 if (!prepare_commit_graph(r
))
606 g
= r
->objects
->commit_graph
;
611 first_generation
= get_be32(g
->chunk_commit_data
+
612 g
->hash_len
+ 8) >> 2;
614 return !!first_generation
;
617 static void close_commit_graph_one(struct commit_graph
*g
)
622 close_commit_graph_one(g
->base_graph
);
623 free_commit_graph(g
);
626 void close_commit_graph(struct raw_object_store
*o
)
628 close_commit_graph_one(o
->commit_graph
);
629 o
->commit_graph
= NULL
;
632 static int bsearch_graph(struct commit_graph
*g
, struct object_id
*oid
, uint32_t *pos
)
634 return bsearch_hash(oid
->hash
, g
->chunk_oid_fanout
,
635 g
->chunk_oid_lookup
, g
->hash_len
, pos
);
638 static void load_oid_from_graph(struct commit_graph
*g
,
640 struct object_id
*oid
)
644 while (g
&& pos
< g
->num_commits_in_base
)
648 BUG("NULL commit-graph");
650 if (pos
>= g
->num_commits
+ g
->num_commits_in_base
)
651 die(_("invalid commit position. commit-graph is likely corrupt"));
653 lex_index
= pos
- g
->num_commits_in_base
;
655 hashcpy(oid
->hash
, g
->chunk_oid_lookup
+ g
->hash_len
* lex_index
);
658 static struct commit_list
**insert_parent_or_die(struct repository
*r
,
659 struct commit_graph
*g
,
661 struct commit_list
**pptr
)
664 struct object_id oid
;
666 if (pos
>= g
->num_commits
+ g
->num_commits_in_base
)
667 die("invalid parent position %"PRIu32
, pos
);
669 load_oid_from_graph(g
, pos
, &oid
);
670 c
= lookup_commit(r
, &oid
);
672 die(_("could not find commit %s"), oid_to_hex(&oid
));
674 return &commit_list_insert(c
, pptr
)->next
;
677 static void fill_commit_graph_info(struct commit
*item
, struct commit_graph
*g
, uint32_t pos
)
679 const unsigned char *commit_data
;
682 while (pos
< g
->num_commits_in_base
)
685 lex_index
= pos
- g
->num_commits_in_base
;
686 commit_data
= g
->chunk_commit_data
+ GRAPH_DATA_WIDTH
* lex_index
;
687 item
->graph_pos
= pos
;
688 item
->generation
= get_be32(commit_data
+ g
->hash_len
+ 8) >> 2;
691 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
696 static int fill_commit_in_graph(struct repository
*r
,
698 struct commit_graph
*g
, uint32_t pos
)
701 uint32_t *parent_data_ptr
;
702 uint64_t date_low
, date_high
;
703 struct commit_list
**pptr
;
704 const unsigned char *commit_data
;
707 while (pos
< g
->num_commits_in_base
)
710 if (pos
>= g
->num_commits
+ g
->num_commits_in_base
)
711 die(_("invalid commit position. commit-graph is likely corrupt"));
714 * Store the "full" position, but then use the
715 * "local" position for the rest of the calculation.
717 item
->graph_pos
= pos
;
718 lex_index
= pos
- g
->num_commits_in_base
;
720 commit_data
= g
->chunk_commit_data
+ (g
->hash_len
+ 16) * lex_index
;
722 item
->object
.parsed
= 1;
724 set_commit_tree(item
, NULL
);
726 date_high
= get_be32(commit_data
+ g
->hash_len
+ 8) & 0x3;
727 date_low
= get_be32(commit_data
+ g
->hash_len
+ 12);
728 item
->date
= (timestamp_t
)((date_high
<< 32) | date_low
);
730 item
->generation
= get_be32(commit_data
+ g
->hash_len
+ 8) >> 2;
732 pptr
= &item
->parents
;
734 edge_value
= get_be32(commit_data
+ g
->hash_len
);
735 if (edge_value
== GRAPH_PARENT_NONE
)
737 pptr
= insert_parent_or_die(r
, g
, edge_value
, pptr
);
739 edge_value
= get_be32(commit_data
+ g
->hash_len
+ 4);
740 if (edge_value
== GRAPH_PARENT_NONE
)
742 if (!(edge_value
& GRAPH_EXTRA_EDGES_NEEDED
)) {
743 pptr
= insert_parent_or_die(r
, g
, edge_value
, pptr
);
747 parent_data_ptr
= (uint32_t*)(g
->chunk_extra_edges
+
748 4 * (uint64_t)(edge_value
& GRAPH_EDGE_LAST_MASK
));
750 edge_value
= get_be32(parent_data_ptr
);
751 pptr
= insert_parent_or_die(r
, g
,
752 edge_value
& GRAPH_EDGE_LAST_MASK
,
755 } while (!(edge_value
& GRAPH_LAST_EDGE
));
760 static int find_commit_in_graph(struct commit
*item
, struct commit_graph
*g
, uint32_t *pos
)
762 if (item
->graph_pos
!= COMMIT_NOT_FROM_GRAPH
) {
763 *pos
= item
->graph_pos
;
766 struct commit_graph
*cur_g
= g
;
769 while (cur_g
&& !bsearch_graph(cur_g
, &(item
->object
.oid
), &lex_index
))
770 cur_g
= cur_g
->base_graph
;
773 *pos
= lex_index
+ cur_g
->num_commits_in_base
;
781 static int parse_commit_in_graph_one(struct repository
*r
,
782 struct commit_graph
*g
,
787 if (item
->object
.parsed
)
790 if (find_commit_in_graph(item
, g
, &pos
))
791 return fill_commit_in_graph(r
, item
, g
, pos
);
796 int parse_commit_in_graph(struct repository
*r
, struct commit
*item
)
798 if (!prepare_commit_graph(r
))
800 return parse_commit_in_graph_one(r
, r
->objects
->commit_graph
, item
);
803 void load_commit_graph_info(struct repository
*r
, struct commit
*item
)
806 if (!prepare_commit_graph(r
))
808 if (find_commit_in_graph(item
, r
->objects
->commit_graph
, &pos
))
809 fill_commit_graph_info(item
, r
->objects
->commit_graph
, pos
);
812 static struct tree
*load_tree_for_commit(struct repository
*r
,
813 struct commit_graph
*g
,
816 struct object_id oid
;
817 const unsigned char *commit_data
;
819 while (c
->graph_pos
< g
->num_commits_in_base
)
822 commit_data
= g
->chunk_commit_data
+
823 GRAPH_DATA_WIDTH
* (c
->graph_pos
- g
->num_commits_in_base
);
825 hashcpy(oid
.hash
, commit_data
);
826 set_commit_tree(c
, lookup_tree(r
, &oid
));
828 return c
->maybe_tree
;
831 static struct tree
*get_commit_tree_in_graph_one(struct repository
*r
,
832 struct commit_graph
*g
,
833 const struct commit
*c
)
836 return c
->maybe_tree
;
837 if (c
->graph_pos
== COMMIT_NOT_FROM_GRAPH
)
838 BUG("get_commit_tree_in_graph_one called from non-commit-graph commit");
840 return load_tree_for_commit(r
, g
, (struct commit
*)c
);
843 struct tree
*get_commit_tree_in_graph(struct repository
*r
, const struct commit
*c
)
845 return get_commit_tree_in_graph_one(r
, r
->objects
->commit_graph
, c
);
848 struct packed_commit_list
{
849 struct commit
**list
;
854 struct packed_oid_list
{
855 struct object_id
*list
;
860 struct write_commit_graph_context
{
861 struct repository
*r
;
862 struct object_directory
*odb
;
864 struct packed_oid_list oids
;
865 struct packed_commit_list commits
;
867 unsigned long approx_nr_objects
;
868 struct progress
*progress
;
870 uint64_t progress_cnt
;
872 char *base_graph_name
;
873 int num_commit_graphs_before
;
874 int num_commit_graphs_after
;
875 char **commit_graph_filenames_before
;
876 char **commit_graph_filenames_after
;
877 char **commit_graph_hash_after
;
878 uint32_t new_num_commits_in_base
;
879 struct commit_graph
*new_base_graph
;
888 const struct split_commit_graph_opts
*split_opts
;
889 size_t total_bloom_filter_data_size
;
892 static void write_graph_chunk_fanout(struct hashfile
*f
,
893 struct write_commit_graph_context
*ctx
)
896 struct commit
**list
= ctx
->commits
.list
;
899 * Write the first-level table (the list is sorted,
900 * but we use a 256-entry lookup to be able to avoid
901 * having to do eight extra binary search iterations).
903 for (i
= 0; i
< 256; i
++) {
904 while (count
< ctx
->commits
.nr
) {
905 if ((*list
)->object
.oid
.hash
[0] != i
)
907 display_progress(ctx
->progress
, ++ctx
->progress_cnt
);
912 hashwrite_be32(f
, count
);
916 static void write_graph_chunk_oids(struct hashfile
*f
, int hash_len
,
917 struct write_commit_graph_context
*ctx
)
919 struct commit
**list
= ctx
->commits
.list
;
921 for (count
= 0; count
< ctx
->commits
.nr
; count
++, list
++) {
922 display_progress(ctx
->progress
, ++ctx
->progress_cnt
);
923 hashwrite(f
, (*list
)->object
.oid
.hash
, (int)hash_len
);
927 static const unsigned char *commit_to_sha1(size_t index
, void *table
)
929 struct commit
**commits
= table
;
930 return commits
[index
]->object
.oid
.hash
;
933 static void write_graph_chunk_data(struct hashfile
*f
, int hash_len
,
934 struct write_commit_graph_context
*ctx
)
936 struct commit
**list
= ctx
->commits
.list
;
937 struct commit
**last
= ctx
->commits
.list
+ ctx
->commits
.nr
;
938 uint32_t num_extra_edges
= 0;
940 while (list
< last
) {
941 struct commit_list
*parent
;
942 struct object_id
*tree
;
944 uint32_t packedDate
[2];
945 display_progress(ctx
->progress
, ++ctx
->progress_cnt
);
947 if (parse_commit_no_graph(*list
))
948 die(_("unable to parse commit %s"),
949 oid_to_hex(&(*list
)->object
.oid
));
950 tree
= get_commit_tree_oid(*list
);
951 hashwrite(f
, tree
->hash
, hash_len
);
953 parent
= (*list
)->parents
;
956 edge_value
= GRAPH_PARENT_NONE
;
958 edge_value
= sha1_pos(parent
->item
->object
.oid
.hash
,
964 edge_value
+= ctx
->new_num_commits_in_base
;
965 else if (ctx
->new_base_graph
) {
967 if (find_commit_in_graph(parent
->item
,
974 BUG("missing parent %s for commit %s",
975 oid_to_hex(&parent
->item
->object
.oid
),
976 oid_to_hex(&(*list
)->object
.oid
));
979 hashwrite_be32(f
, edge_value
);
982 parent
= parent
->next
;
985 edge_value
= GRAPH_PARENT_NONE
;
986 else if (parent
->next
)
987 edge_value
= GRAPH_EXTRA_EDGES_NEEDED
| num_extra_edges
;
989 edge_value
= sha1_pos(parent
->item
->object
.oid
.hash
,
995 edge_value
+= ctx
->new_num_commits_in_base
;
996 else if (ctx
->new_base_graph
) {
998 if (find_commit_in_graph(parent
->item
,
1005 BUG("missing parent %s for commit %s",
1006 oid_to_hex(&parent
->item
->object
.oid
),
1007 oid_to_hex(&(*list
)->object
.oid
));
1010 hashwrite_be32(f
, edge_value
);
1012 if (edge_value
& GRAPH_EXTRA_EDGES_NEEDED
) {
1015 parent
= parent
->next
;
1019 if (sizeof((*list
)->date
) > 4)
1020 packedDate
[0] = htonl(((*list
)->date
>> 32) & 0x3);
1024 packedDate
[0] |= htonl((*list
)->generation
<< 2);
1026 packedDate
[1] = htonl((*list
)->date
);
1027 hashwrite(f
, packedDate
, 8);
1033 static void write_graph_chunk_extra_edges(struct hashfile
*f
,
1034 struct write_commit_graph_context
*ctx
)
1036 struct commit
**list
= ctx
->commits
.list
;
1037 struct commit
**last
= ctx
->commits
.list
+ ctx
->commits
.nr
;
1038 struct commit_list
*parent
;
1040 while (list
< last
) {
1041 int num_parents
= 0;
1043 display_progress(ctx
->progress
, ++ctx
->progress_cnt
);
1045 for (parent
= (*list
)->parents
; num_parents
< 3 && parent
;
1046 parent
= parent
->next
)
1049 if (num_parents
<= 2) {
1054 /* Since num_parents > 2, this initializer is safe. */
1055 for (parent
= (*list
)->parents
->next
; parent
; parent
= parent
->next
) {
1056 int edge_value
= sha1_pos(parent
->item
->object
.oid
.hash
,
1061 if (edge_value
>= 0)
1062 edge_value
+= ctx
->new_num_commits_in_base
;
1063 else if (ctx
->new_base_graph
) {
1065 if (find_commit_in_graph(parent
->item
,
1066 ctx
->new_base_graph
,
1072 BUG("missing parent %s for commit %s",
1073 oid_to_hex(&parent
->item
->object
.oid
),
1074 oid_to_hex(&(*list
)->object
.oid
));
1075 else if (!parent
->next
)
1076 edge_value
|= GRAPH_LAST_EDGE
;
1078 hashwrite_be32(f
, edge_value
);
1085 static void write_graph_chunk_bloom_indexes(struct hashfile
*f
,
1086 struct write_commit_graph_context
*ctx
)
1088 struct commit
**list
= ctx
->commits
.list
;
1089 struct commit
**last
= ctx
->commits
.list
+ ctx
->commits
.nr
;
1090 uint32_t cur_pos
= 0;
1091 struct progress
*progress
= NULL
;
1094 if (ctx
->report_progress
)
1095 progress
= start_delayed_progress(
1096 _("Writing changed paths Bloom filters index"),
1099 while (list
< last
) {
1100 struct bloom_filter
*filter
= get_bloom_filter(ctx
->r
, *list
, 0);
1101 cur_pos
+= filter
->len
;
1102 display_progress(progress
, ++i
);
1103 hashwrite_be32(f
, cur_pos
);
1107 stop_progress(&progress
);
1110 static void write_graph_chunk_bloom_data(struct hashfile
*f
,
1111 struct write_commit_graph_context
*ctx
,
1112 const struct bloom_filter_settings
*settings
)
1114 struct commit
**list
= ctx
->commits
.list
;
1115 struct commit
**last
= ctx
->commits
.list
+ ctx
->commits
.nr
;
1116 struct progress
*progress
= NULL
;
1119 if (ctx
->report_progress
)
1120 progress
= start_delayed_progress(
1121 _("Writing changed paths Bloom filters data"),
1124 hashwrite_be32(f
, settings
->hash_version
);
1125 hashwrite_be32(f
, settings
->num_hashes
);
1126 hashwrite_be32(f
, settings
->bits_per_entry
);
1128 while (list
< last
) {
1129 struct bloom_filter
*filter
= get_bloom_filter(ctx
->r
, *list
, 0);
1130 display_progress(progress
, ++i
);
1131 hashwrite(f
, filter
->data
, filter
->len
* sizeof(unsigned char));
1135 stop_progress(&progress
);
1138 static int oid_compare(const void *_a
, const void *_b
)
1140 const struct object_id
*a
= (const struct object_id
*)_a
;
1141 const struct object_id
*b
= (const struct object_id
*)_b
;
1142 return oidcmp(a
, b
);
1145 static int add_packed_commits(const struct object_id
*oid
,
1146 struct packed_git
*pack
,
1150 struct write_commit_graph_context
*ctx
= (struct write_commit_graph_context
*)data
;
1151 enum object_type type
;
1152 off_t offset
= nth_packed_object_offset(pack
, pos
);
1153 struct object_info oi
= OBJECT_INFO_INIT
;
1156 display_progress(ctx
->progress
, ++ctx
->progress_done
);
1159 if (packed_object_info(ctx
->r
, pack
, offset
, &oi
) < 0)
1160 die(_("unable to get type of object %s"), oid_to_hex(oid
));
1162 if (type
!= OBJ_COMMIT
)
1165 ALLOC_GROW(ctx
->oids
.list
, ctx
->oids
.nr
+ 1, ctx
->oids
.alloc
);
1166 oidcpy(&(ctx
->oids
.list
[ctx
->oids
.nr
]), oid
);
1169 set_commit_pos(ctx
->r
, oid
);
1174 static void add_missing_parents(struct write_commit_graph_context
*ctx
, struct commit
*commit
)
1176 struct commit_list
*parent
;
1177 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
1178 if (!(parent
->item
->object
.flags
& REACHABLE
)) {
1179 ALLOC_GROW(ctx
->oids
.list
, ctx
->oids
.nr
+ 1, ctx
->oids
.alloc
);
1180 oidcpy(&ctx
->oids
.list
[ctx
->oids
.nr
], &(parent
->item
->object
.oid
));
1182 parent
->item
->object
.flags
|= REACHABLE
;
1187 static void close_reachable(struct write_commit_graph_context
*ctx
)
1190 struct commit
*commit
;
1191 enum commit_graph_split_flags flags
= ctx
->split_opts
?
1192 ctx
->split_opts
->flags
: COMMIT_GRAPH_SPLIT_UNSPECIFIED
;
1194 if (ctx
->report_progress
)
1195 ctx
->progress
= start_delayed_progress(
1196 _("Loading known commits in commit graph"),
1198 for (i
= 0; i
< ctx
->oids
.nr
; i
++) {
1199 display_progress(ctx
->progress
, i
+ 1);
1200 commit
= lookup_commit(ctx
->r
, &ctx
->oids
.list
[i
]);
1202 commit
->object
.flags
|= REACHABLE
;
1204 stop_progress(&ctx
->progress
);
1207 * As this loop runs, ctx->oids.nr may grow, but not more
1208 * than the number of missing commits in the reachable
1211 if (ctx
->report_progress
)
1212 ctx
->progress
= start_delayed_progress(
1213 _("Expanding reachable commits in commit graph"),
1215 for (i
= 0; i
< ctx
->oids
.nr
; i
++) {
1216 display_progress(ctx
->progress
, i
+ 1);
1217 commit
= lookup_commit(ctx
->r
, &ctx
->oids
.list
[i
]);
1222 if ((!parse_commit(commit
) &&
1223 commit
->graph_pos
== COMMIT_NOT_FROM_GRAPH
) ||
1224 flags
== COMMIT_GRAPH_SPLIT_REPLACE
)
1225 add_missing_parents(ctx
, commit
);
1226 } else if (!parse_commit_no_graph(commit
))
1227 add_missing_parents(ctx
, commit
);
1229 stop_progress(&ctx
->progress
);
1231 if (ctx
->report_progress
)
1232 ctx
->progress
= start_delayed_progress(
1233 _("Clearing commit marks in commit graph"),
1235 for (i
= 0; i
< ctx
->oids
.nr
; i
++) {
1236 display_progress(ctx
->progress
, i
+ 1);
1237 commit
= lookup_commit(ctx
->r
, &ctx
->oids
.list
[i
]);
1240 commit
->object
.flags
&= ~REACHABLE
;
1242 stop_progress(&ctx
->progress
);
1245 static void compute_generation_numbers(struct write_commit_graph_context
*ctx
)
1248 struct commit_list
*list
= NULL
;
1250 if (ctx
->report_progress
)
1251 ctx
->progress
= start_delayed_progress(
1252 _("Computing commit graph generation numbers"),
1254 for (i
= 0; i
< ctx
->commits
.nr
; i
++) {
1255 display_progress(ctx
->progress
, i
+ 1);
1256 if (ctx
->commits
.list
[i
]->generation
!= GENERATION_NUMBER_INFINITY
&&
1257 ctx
->commits
.list
[i
]->generation
!= GENERATION_NUMBER_ZERO
)
1260 commit_list_insert(ctx
->commits
.list
[i
], &list
);
1262 struct commit
*current
= list
->item
;
1263 struct commit_list
*parent
;
1264 int all_parents_computed
= 1;
1265 uint32_t max_generation
= 0;
1267 for (parent
= current
->parents
; parent
; parent
= parent
->next
) {
1268 if (parent
->item
->generation
== GENERATION_NUMBER_INFINITY
||
1269 parent
->item
->generation
== GENERATION_NUMBER_ZERO
) {
1270 all_parents_computed
= 0;
1271 commit_list_insert(parent
->item
, &list
);
1273 } else if (parent
->item
->generation
> max_generation
) {
1274 max_generation
= parent
->item
->generation
;
1278 if (all_parents_computed
) {
1279 current
->generation
= max_generation
+ 1;
1282 if (current
->generation
> GENERATION_NUMBER_MAX
)
1283 current
->generation
= GENERATION_NUMBER_MAX
;
1287 stop_progress(&ctx
->progress
);
1290 static void compute_bloom_filters(struct write_commit_graph_context
*ctx
)
1293 struct progress
*progress
= NULL
;
1294 struct commit
**sorted_commits
;
1296 init_bloom_filters();
1298 if (ctx
->report_progress
)
1299 progress
= start_delayed_progress(
1300 _("Computing commit changed paths Bloom filters"),
1303 ALLOC_ARRAY(sorted_commits
, ctx
->commits
.nr
);
1304 COPY_ARRAY(sorted_commits
, ctx
->commits
.list
, ctx
->commits
.nr
);
1306 if (ctx
->order_by_pack
)
1307 QSORT(sorted_commits
, ctx
->commits
.nr
, commit_pos_cmp
);
1309 QSORT(sorted_commits
, ctx
->commits
.nr
, commit_gen_cmp
);
1311 for (i
= 0; i
< ctx
->commits
.nr
; i
++) {
1312 struct commit
*c
= sorted_commits
[i
];
1313 struct bloom_filter
*filter
= get_bloom_filter(ctx
->r
, c
, 1);
1314 ctx
->total_bloom_filter_data_size
+= sizeof(unsigned char) * filter
->len
;
1315 display_progress(progress
, i
+ 1);
1318 free(sorted_commits
);
1319 stop_progress(&progress
);
1322 static int add_ref_to_set(const char *refname
,
1323 const struct object_id
*oid
,
1324 int flags
, void *cb_data
)
1326 struct oidset
*commits
= (struct oidset
*)cb_data
;
1328 oidset_insert(commits
, oid
);
1332 int write_commit_graph_reachable(struct object_directory
*odb
,
1333 enum commit_graph_write_flags flags
,
1334 const struct split_commit_graph_opts
*split_opts
)
1336 struct oidset commits
= OIDSET_INIT
;
1339 for_each_ref(add_ref_to_set
, &commits
);
1340 result
= write_commit_graph(odb
, NULL
, &commits
,
1343 oidset_clear(&commits
);
1347 static int fill_oids_from_packs(struct write_commit_graph_context
*ctx
,
1348 struct string_list
*pack_indexes
)
1351 struct strbuf progress_title
= STRBUF_INIT
;
1352 struct strbuf packname
= STRBUF_INIT
;
1355 strbuf_addf(&packname
, "%s/pack/", ctx
->odb
->path
);
1356 dirlen
= packname
.len
;
1357 if (ctx
->report_progress
) {
1358 strbuf_addf(&progress_title
,
1359 Q_("Finding commits for commit graph in %d pack",
1360 "Finding commits for commit graph in %d packs",
1363 ctx
->progress
= start_delayed_progress(progress_title
.buf
, 0);
1364 ctx
->progress_done
= 0;
1366 for (i
= 0; i
< pack_indexes
->nr
; i
++) {
1367 struct packed_git
*p
;
1368 strbuf_setlen(&packname
, dirlen
);
1369 strbuf_addstr(&packname
, pack_indexes
->items
[i
].string
);
1370 p
= add_packed_git(packname
.buf
, packname
.len
, 1);
1372 error(_("error adding pack %s"), packname
.buf
);
1375 if (open_pack_index(p
)) {
1376 error(_("error opening index for %s"), packname
.buf
);
1379 for_each_object_in_pack(p
, add_packed_commits
, ctx
,
1380 FOR_EACH_OBJECT_PACK_ORDER
);
1385 stop_progress(&ctx
->progress
);
1386 strbuf_release(&progress_title
);
1387 strbuf_release(&packname
);
1392 static int fill_oids_from_commits(struct write_commit_graph_context
*ctx
,
1393 struct oidset
*commits
)
1396 struct strbuf progress_title
= STRBUF_INIT
;
1397 struct oidset_iter iter
;
1398 struct object_id
*oid
;
1400 if (!oidset_size(commits
))
1403 if (ctx
->report_progress
) {
1404 strbuf_addf(&progress_title
,
1405 Q_("Finding commits for commit graph from %d ref",
1406 "Finding commits for commit graph from %d refs",
1407 oidset_size(commits
)),
1408 oidset_size(commits
));
1409 ctx
->progress
= start_delayed_progress(
1411 oidset_size(commits
));
1414 oidset_iter_init(commits
, &iter
);
1415 while ((oid
= oidset_iter_next(&iter
))) {
1416 struct commit
*result
;
1418 display_progress(ctx
->progress
, ++i
);
1420 result
= lookup_commit_reference_gently(ctx
->r
, oid
, 1);
1422 ALLOC_GROW(ctx
->oids
.list
, ctx
->oids
.nr
+ 1, ctx
->oids
.alloc
);
1423 oidcpy(&ctx
->oids
.list
[ctx
->oids
.nr
], &(result
->object
.oid
));
1425 } else if (ctx
->check_oids
) {
1426 error(_("invalid commit object id: %s"),
1432 stop_progress(&ctx
->progress
);
1433 strbuf_release(&progress_title
);
1438 static void fill_oids_from_all_packs(struct write_commit_graph_context
*ctx
)
1440 if (ctx
->report_progress
)
1441 ctx
->progress
= start_delayed_progress(
1442 _("Finding commits for commit graph among packed objects"),
1443 ctx
->approx_nr_objects
);
1444 for_each_packed_object(add_packed_commits
, ctx
,
1445 FOR_EACH_OBJECT_PACK_ORDER
);
1446 if (ctx
->progress_done
< ctx
->approx_nr_objects
)
1447 display_progress(ctx
->progress
, ctx
->approx_nr_objects
);
1448 stop_progress(&ctx
->progress
);
1451 static uint32_t count_distinct_commits(struct write_commit_graph_context
*ctx
)
1453 uint32_t i
, count_distinct
= 1;
1455 if (ctx
->report_progress
)
1456 ctx
->progress
= start_delayed_progress(
1457 _("Counting distinct commits in commit graph"),
1459 display_progress(ctx
->progress
, 0); /* TODO: Measure QSORT() progress */
1460 QSORT(ctx
->oids
.list
, ctx
->oids
.nr
, oid_compare
);
1462 for (i
= 1; i
< ctx
->oids
.nr
; i
++) {
1463 display_progress(ctx
->progress
, i
+ 1);
1464 if (!oideq(&ctx
->oids
.list
[i
- 1], &ctx
->oids
.list
[i
])) {
1466 struct commit
*c
= lookup_commit(ctx
->r
, &ctx
->oids
.list
[i
]);
1468 if (!c
|| c
->graph_pos
!= COMMIT_NOT_FROM_GRAPH
)
1475 stop_progress(&ctx
->progress
);
1477 return count_distinct
;
1480 static void copy_oids_to_commits(struct write_commit_graph_context
*ctx
)
1483 enum commit_graph_split_flags flags
= ctx
->split_opts
?
1484 ctx
->split_opts
->flags
: COMMIT_GRAPH_SPLIT_UNSPECIFIED
;
1486 ctx
->num_extra_edges
= 0;
1487 if (ctx
->report_progress
)
1488 ctx
->progress
= start_delayed_progress(
1489 _("Finding extra edges in commit graph"),
1491 for (i
= 0; i
< ctx
->oids
.nr
; i
++) {
1492 unsigned int num_parents
;
1494 display_progress(ctx
->progress
, i
+ 1);
1495 if (i
> 0 && oideq(&ctx
->oids
.list
[i
- 1], &ctx
->oids
.list
[i
]))
1498 ALLOC_GROW(ctx
->commits
.list
, ctx
->commits
.nr
+ 1, ctx
->commits
.alloc
);
1499 ctx
->commits
.list
[ctx
->commits
.nr
] = lookup_commit(ctx
->r
, &ctx
->oids
.list
[i
]);
1501 if (ctx
->split
&& flags
!= COMMIT_GRAPH_SPLIT_REPLACE
&&
1502 ctx
->commits
.list
[ctx
->commits
.nr
]->graph_pos
!= COMMIT_NOT_FROM_GRAPH
)
1505 if (ctx
->split
&& flags
== COMMIT_GRAPH_SPLIT_REPLACE
)
1506 parse_commit(ctx
->commits
.list
[ctx
->commits
.nr
]);
1508 parse_commit_no_graph(ctx
->commits
.list
[ctx
->commits
.nr
]);
1510 num_parents
= commit_list_count(ctx
->commits
.list
[ctx
->commits
.nr
]->parents
);
1511 if (num_parents
> 2)
1512 ctx
->num_extra_edges
+= num_parents
- 1;
1516 stop_progress(&ctx
->progress
);
1519 static int write_graph_chunk_base_1(struct hashfile
*f
,
1520 struct commit_graph
*g
)
1527 num
= write_graph_chunk_base_1(f
, g
->base_graph
);
1528 hashwrite(f
, g
->oid
.hash
, the_hash_algo
->rawsz
);
1532 static int write_graph_chunk_base(struct hashfile
*f
,
1533 struct write_commit_graph_context
*ctx
)
1535 int num
= write_graph_chunk_base_1(f
, ctx
->new_base_graph
);
1537 if (num
!= ctx
->num_commit_graphs_after
- 1) {
1538 error(_("failed to write correct number of base graph ids"));
1545 static int write_commit_graph_file(struct write_commit_graph_context
*ctx
)
1550 struct lock_file lk
= LOCK_INIT
;
1551 uint32_t chunk_ids
[MAX_NUM_CHUNKS
+ 1];
1552 uint64_t chunk_offsets
[MAX_NUM_CHUNKS
+ 1];
1553 const unsigned hashsz
= the_hash_algo
->rawsz
;
1554 struct strbuf progress_title
= STRBUF_INIT
;
1556 struct object_id file_hash
;
1557 const struct bloom_filter_settings bloom_settings
= DEFAULT_BLOOM_FILTER_SETTINGS
;
1560 struct strbuf tmp_file
= STRBUF_INIT
;
1562 strbuf_addf(&tmp_file
,
1563 "%s/info/commit-graphs/tmp_graph_XXXXXX",
1565 ctx
->graph_name
= strbuf_detach(&tmp_file
, NULL
);
1567 ctx
->graph_name
= get_commit_graph_filename(ctx
->odb
);
1570 if (safe_create_leading_directories(ctx
->graph_name
)) {
1571 UNLEAK(ctx
->graph_name
);
1572 error(_("unable to create leading directories of %s"),
1578 char *lock_name
= get_chain_filename(ctx
->odb
);
1580 hold_lock_file_for_update_mode(&lk
, lock_name
,
1581 LOCK_DIE_ON_ERROR
, 0444);
1583 fd
= git_mkstemp_mode(ctx
->graph_name
, 0444);
1585 error(_("unable to create temporary graph layer"));
1589 if (adjust_shared_perm(ctx
->graph_name
)) {
1590 error(_("unable to adjust shared permissions for '%s'"),
1595 f
= hashfd(fd
, ctx
->graph_name
);
1597 hold_lock_file_for_update_mode(&lk
, ctx
->graph_name
,
1598 LOCK_DIE_ON_ERROR
, 0444);
1599 fd
= lk
.tempfile
->fd
;
1600 f
= hashfd(lk
.tempfile
->fd
, lk
.tempfile
->filename
.buf
);
1603 chunk_ids
[0] = GRAPH_CHUNKID_OIDFANOUT
;
1604 chunk_ids
[1] = GRAPH_CHUNKID_OIDLOOKUP
;
1605 chunk_ids
[2] = GRAPH_CHUNKID_DATA
;
1606 if (ctx
->num_extra_edges
) {
1607 chunk_ids
[num_chunks
] = GRAPH_CHUNKID_EXTRAEDGES
;
1610 if (ctx
->changed_paths
) {
1611 chunk_ids
[num_chunks
] = GRAPH_CHUNKID_BLOOMINDEXES
;
1613 chunk_ids
[num_chunks
] = GRAPH_CHUNKID_BLOOMDATA
;
1616 if (ctx
->num_commit_graphs_after
> 1) {
1617 chunk_ids
[num_chunks
] = GRAPH_CHUNKID_BASE
;
1621 chunk_ids
[num_chunks
] = 0;
1623 chunk_offsets
[0] = 8 + (num_chunks
+ 1) * GRAPH_CHUNKLOOKUP_WIDTH
;
1624 chunk_offsets
[1] = chunk_offsets
[0] + GRAPH_FANOUT_SIZE
;
1625 chunk_offsets
[2] = chunk_offsets
[1] + hashsz
* ctx
->commits
.nr
;
1626 chunk_offsets
[3] = chunk_offsets
[2] + (hashsz
+ 16) * ctx
->commits
.nr
;
1629 if (ctx
->num_extra_edges
) {
1630 chunk_offsets
[num_chunks
+ 1] = chunk_offsets
[num_chunks
] +
1631 4 * ctx
->num_extra_edges
;
1634 if (ctx
->changed_paths
) {
1635 chunk_offsets
[num_chunks
+ 1] = chunk_offsets
[num_chunks
] +
1636 sizeof(uint32_t) * ctx
->commits
.nr
;
1639 chunk_offsets
[num_chunks
+ 1] = chunk_offsets
[num_chunks
] +
1640 sizeof(uint32_t) * 3 + ctx
->total_bloom_filter_data_size
;
1643 if (ctx
->num_commit_graphs_after
> 1) {
1644 chunk_offsets
[num_chunks
+ 1] = chunk_offsets
[num_chunks
] +
1645 hashsz
* (ctx
->num_commit_graphs_after
- 1);
1649 hashwrite_be32(f
, GRAPH_SIGNATURE
);
1651 hashwrite_u8(f
, GRAPH_VERSION
);
1652 hashwrite_u8(f
, oid_version());
1653 hashwrite_u8(f
, num_chunks
);
1654 hashwrite_u8(f
, ctx
->num_commit_graphs_after
- 1);
1656 for (i
= 0; i
<= num_chunks
; i
++) {
1657 uint32_t chunk_write
[3];
1659 chunk_write
[0] = htonl(chunk_ids
[i
]);
1660 chunk_write
[1] = htonl(chunk_offsets
[i
] >> 32);
1661 chunk_write
[2] = htonl(chunk_offsets
[i
] & 0xffffffff);
1662 hashwrite(f
, chunk_write
, 12);
1665 if (ctx
->report_progress
) {
1666 strbuf_addf(&progress_title
,
1667 Q_("Writing out commit graph in %d pass",
1668 "Writing out commit graph in %d passes",
1671 ctx
->progress
= start_delayed_progress(
1673 num_chunks
* ctx
->commits
.nr
);
1675 write_graph_chunk_fanout(f
, ctx
);
1676 write_graph_chunk_oids(f
, hashsz
, ctx
);
1677 write_graph_chunk_data(f
, hashsz
, ctx
);
1678 if (ctx
->num_extra_edges
)
1679 write_graph_chunk_extra_edges(f
, ctx
);
1680 if (ctx
->changed_paths
) {
1681 write_graph_chunk_bloom_indexes(f
, ctx
);
1682 write_graph_chunk_bloom_data(f
, ctx
, &bloom_settings
);
1684 if (ctx
->num_commit_graphs_after
> 1 &&
1685 write_graph_chunk_base(f
, ctx
)) {
1688 stop_progress(&ctx
->progress
);
1689 strbuf_release(&progress_title
);
1691 if (ctx
->split
&& ctx
->base_graph_name
&& ctx
->num_commit_graphs_after
> 1) {
1692 char *new_base_hash
= xstrdup(oid_to_hex(&ctx
->new_base_graph
->oid
));
1693 char *new_base_name
= get_split_graph_filename(ctx
->new_base_graph
->odb
, new_base_hash
);
1695 free(ctx
->commit_graph_filenames_after
[ctx
->num_commit_graphs_after
- 2]);
1696 free(ctx
->commit_graph_hash_after
[ctx
->num_commit_graphs_after
- 2]);
1697 ctx
->commit_graph_filenames_after
[ctx
->num_commit_graphs_after
- 2] = new_base_name
;
1698 ctx
->commit_graph_hash_after
[ctx
->num_commit_graphs_after
- 2] = new_base_hash
;
1701 close_commit_graph(ctx
->r
->objects
);
1702 finalize_hashfile(f
, file_hash
.hash
, CSUM_HASH_IN_STREAM
| CSUM_FSYNC
);
1705 FILE *chainf
= fdopen_lock_file(&lk
, "w");
1706 char *final_graph_name
;
1712 error(_("unable to open commit-graph chain file"));
1716 if (ctx
->base_graph_name
) {
1718 int idx
= ctx
->num_commit_graphs_after
- 1;
1719 if (ctx
->num_commit_graphs_after
> 1)
1722 dest
= ctx
->commit_graph_filenames_after
[idx
];
1724 if (strcmp(ctx
->base_graph_name
, dest
)) {
1725 result
= rename(ctx
->base_graph_name
, dest
);
1728 error(_("failed to rename base commit-graph file"));
1733 char *graph_name
= get_commit_graph_filename(ctx
->odb
);
1737 ctx
->commit_graph_hash_after
[ctx
->num_commit_graphs_after
- 1] = xstrdup(oid_to_hex(&file_hash
));
1738 final_graph_name
= get_split_graph_filename(ctx
->odb
,
1739 ctx
->commit_graph_hash_after
[ctx
->num_commit_graphs_after
- 1]);
1740 ctx
->commit_graph_filenames_after
[ctx
->num_commit_graphs_after
- 1] = final_graph_name
;
1742 result
= rename(ctx
->graph_name
, final_graph_name
);
1744 for (i
= 0; i
< ctx
->num_commit_graphs_after
; i
++)
1745 fprintf(lk
.tempfile
->fp
, "%s\n", ctx
->commit_graph_hash_after
[i
]);
1748 error(_("failed to rename temporary commit-graph file"));
1753 commit_lock_file(&lk
);
1758 static void split_graph_merge_strategy(struct write_commit_graph_context
*ctx
)
1760 struct commit_graph
*g
;
1761 uint32_t num_commits
;
1762 enum commit_graph_split_flags flags
= COMMIT_GRAPH_SPLIT_UNSPECIFIED
;
1765 int max_commits
= 0;
1768 if (ctx
->split_opts
) {
1769 max_commits
= ctx
->split_opts
->max_commits
;
1771 if (ctx
->split_opts
->size_multiple
)
1772 size_mult
= ctx
->split_opts
->size_multiple
;
1774 flags
= ctx
->split_opts
->flags
;
1777 g
= ctx
->r
->objects
->commit_graph
;
1778 num_commits
= ctx
->commits
.nr
;
1779 if (flags
== COMMIT_GRAPH_SPLIT_REPLACE
)
1780 ctx
->num_commit_graphs_after
= 1;
1782 ctx
->num_commit_graphs_after
= ctx
->num_commit_graphs_before
+ 1;
1784 if (flags
!= COMMIT_GRAPH_SPLIT_MERGE_PROHIBITED
&&
1785 flags
!= COMMIT_GRAPH_SPLIT_REPLACE
) {
1786 while (g
&& (g
->num_commits
<= size_mult
* num_commits
||
1787 (max_commits
&& num_commits
> max_commits
))) {
1788 if (g
->odb
!= ctx
->odb
)
1791 num_commits
+= g
->num_commits
;
1794 ctx
->num_commit_graphs_after
--;
1798 if (flags
!= COMMIT_GRAPH_SPLIT_REPLACE
)
1799 ctx
->new_base_graph
= g
;
1800 else if (ctx
->num_commit_graphs_after
!= 1)
1801 BUG("split_graph_merge_strategy: num_commit_graphs_after "
1802 "should be 1 with --split=replace");
1804 if (ctx
->num_commit_graphs_after
== 2) {
1805 char *old_graph_name
= get_commit_graph_filename(g
->odb
);
1807 if (!strcmp(g
->filename
, old_graph_name
) &&
1808 g
->odb
!= ctx
->odb
) {
1809 ctx
->num_commit_graphs_after
= 1;
1810 ctx
->new_base_graph
= NULL
;
1813 free(old_graph_name
);
1816 CALLOC_ARRAY(ctx
->commit_graph_filenames_after
, ctx
->num_commit_graphs_after
);
1817 CALLOC_ARRAY(ctx
->commit_graph_hash_after
, ctx
->num_commit_graphs_after
);
1819 for (i
= 0; i
< ctx
->num_commit_graphs_after
&&
1820 i
< ctx
->num_commit_graphs_before
; i
++)
1821 ctx
->commit_graph_filenames_after
[i
] = xstrdup(ctx
->commit_graph_filenames_before
[i
]);
1823 i
= ctx
->num_commit_graphs_before
- 1;
1824 g
= ctx
->r
->objects
->commit_graph
;
1827 if (i
< ctx
->num_commit_graphs_after
)
1828 ctx
->commit_graph_hash_after
[i
] = xstrdup(oid_to_hex(&g
->oid
));
1835 static void merge_commit_graph(struct write_commit_graph_context
*ctx
,
1836 struct commit_graph
*g
)
1839 uint32_t offset
= g
->num_commits_in_base
;
1841 ALLOC_GROW(ctx
->commits
.list
, ctx
->commits
.nr
+ g
->num_commits
, ctx
->commits
.alloc
);
1843 for (i
= 0; i
< g
->num_commits
; i
++) {
1844 struct object_id oid
;
1845 struct commit
*result
;
1847 display_progress(ctx
->progress
, i
+ 1);
1849 load_oid_from_graph(g
, i
+ offset
, &oid
);
1851 /* only add commits if they still exist in the repo */
1852 result
= lookup_commit_reference_gently(ctx
->r
, &oid
, 1);
1855 ctx
->commits
.list
[ctx
->commits
.nr
] = result
;
1861 static int commit_compare(const void *_a
, const void *_b
)
1863 const struct commit
*a
= *(const struct commit
**)_a
;
1864 const struct commit
*b
= *(const struct commit
**)_b
;
1865 return oidcmp(&a
->object
.oid
, &b
->object
.oid
);
1868 static void sort_and_scan_merged_commits(struct write_commit_graph_context
*ctx
)
1872 if (ctx
->report_progress
)
1873 ctx
->progress
= start_delayed_progress(
1874 _("Scanning merged commits"),
1877 QSORT(ctx
->commits
.list
, ctx
->commits
.nr
, commit_compare
);
1879 ctx
->num_extra_edges
= 0;
1880 for (i
= 0; i
< ctx
->commits
.nr
; i
++) {
1881 display_progress(ctx
->progress
, i
);
1883 if (i
&& oideq(&ctx
->commits
.list
[i
- 1]->object
.oid
,
1884 &ctx
->commits
.list
[i
]->object
.oid
)) {
1885 die(_("unexpected duplicate commit id %s"),
1886 oid_to_hex(&ctx
->commits
.list
[i
]->object
.oid
));
1888 unsigned int num_parents
;
1890 num_parents
= commit_list_count(ctx
->commits
.list
[i
]->parents
);
1891 if (num_parents
> 2)
1892 ctx
->num_extra_edges
+= num_parents
- 1;
1896 stop_progress(&ctx
->progress
);
1899 static void merge_commit_graphs(struct write_commit_graph_context
*ctx
)
1901 struct commit_graph
*g
= ctx
->r
->objects
->commit_graph
;
1902 uint32_t current_graph_number
= ctx
->num_commit_graphs_before
;
1904 while (g
&& current_graph_number
>= ctx
->num_commit_graphs_after
) {
1905 current_graph_number
--;
1907 if (ctx
->report_progress
)
1908 ctx
->progress
= start_delayed_progress(_("Merging commit-graph"), 0);
1910 merge_commit_graph(ctx
, g
);
1911 stop_progress(&ctx
->progress
);
1917 ctx
->new_base_graph
= g
;
1918 ctx
->new_num_commits_in_base
= g
->num_commits
+ g
->num_commits_in_base
;
1921 if (ctx
->new_base_graph
)
1922 ctx
->base_graph_name
= xstrdup(ctx
->new_base_graph
->filename
);
1924 sort_and_scan_merged_commits(ctx
);
1927 static void mark_commit_graphs(struct write_commit_graph_context
*ctx
)
1930 time_t now
= time(NULL
);
1932 for (i
= ctx
->num_commit_graphs_after
- 1; i
< ctx
->num_commit_graphs_before
; i
++) {
1934 struct utimbuf updated_time
;
1936 stat(ctx
->commit_graph_filenames_before
[i
], &st
);
1938 updated_time
.actime
= st
.st_atime
;
1939 updated_time
.modtime
= now
;
1940 utime(ctx
->commit_graph_filenames_before
[i
], &updated_time
);
1944 static void expire_commit_graphs(struct write_commit_graph_context
*ctx
)
1946 struct strbuf path
= STRBUF_INIT
;
1950 timestamp_t expire_time
= time(NULL
);
1952 if (ctx
->split_opts
&& ctx
->split_opts
->expire_time
)
1953 expire_time
= ctx
->split_opts
->expire_time
;
1955 char *chain_file_name
= get_chain_filename(ctx
->odb
);
1956 unlink(chain_file_name
);
1957 free(chain_file_name
);
1958 ctx
->num_commit_graphs_after
= 0;
1961 strbuf_addstr(&path
, ctx
->odb
->path
);
1962 strbuf_addstr(&path
, "/info/commit-graphs");
1963 dir
= opendir(path
.buf
);
1968 strbuf_addch(&path
, '/');
1969 dirnamelen
= path
.len
;
1970 while ((de
= readdir(dir
)) != NULL
) {
1972 uint32_t i
, found
= 0;
1974 strbuf_setlen(&path
, dirnamelen
);
1975 strbuf_addstr(&path
, de
->d_name
);
1977 stat(path
.buf
, &st
);
1979 if (st
.st_mtime
> expire_time
)
1981 if (path
.len
< 6 || strcmp(path
.buf
+ path
.len
- 6, ".graph"))
1984 for (i
= 0; i
< ctx
->num_commit_graphs_after
; i
++) {
1985 if (!strcmp(ctx
->commit_graph_filenames_after
[i
],
1997 strbuf_release(&path
);
2000 int write_commit_graph(struct object_directory
*odb
,
2001 struct string_list
*pack_indexes
,
2002 struct oidset
*commits
,
2003 enum commit_graph_write_flags flags
,
2004 const struct split_commit_graph_opts
*split_opts
)
2006 struct write_commit_graph_context
*ctx
;
2007 uint32_t i
, count_distinct
= 0;
2011 if (!commit_graph_compatible(the_repository
))
2014 ctx
= xcalloc(1, sizeof(struct write_commit_graph_context
));
2015 ctx
->r
= the_repository
;
2017 ctx
->append
= flags
& COMMIT_GRAPH_WRITE_APPEND
? 1 : 0;
2018 ctx
->report_progress
= flags
& COMMIT_GRAPH_WRITE_PROGRESS
? 1 : 0;
2019 ctx
->split
= flags
& COMMIT_GRAPH_WRITE_SPLIT
? 1 : 0;
2020 ctx
->check_oids
= flags
& COMMIT_GRAPH_WRITE_CHECK_OIDS
? 1 : 0;
2021 ctx
->split_opts
= split_opts
;
2022 ctx
->changed_paths
= flags
& COMMIT_GRAPH_WRITE_BLOOM_FILTERS
? 1 : 0;
2023 ctx
->total_bloom_filter_data_size
= 0;
2026 struct commit_graph
*g
;
2027 prepare_commit_graph(ctx
->r
);
2029 g
= ctx
->r
->objects
->commit_graph
;
2032 ctx
->num_commit_graphs_before
++;
2036 if (ctx
->num_commit_graphs_before
) {
2037 ALLOC_ARRAY(ctx
->commit_graph_filenames_before
, ctx
->num_commit_graphs_before
);
2038 i
= ctx
->num_commit_graphs_before
;
2039 g
= ctx
->r
->objects
->commit_graph
;
2042 ctx
->commit_graph_filenames_before
[--i
] = xstrdup(g
->filename
);
2047 if (ctx
->split_opts
)
2048 replace
= ctx
->split_opts
->flags
& COMMIT_GRAPH_SPLIT_REPLACE
;
2051 ctx
->approx_nr_objects
= approximate_object_count();
2052 ctx
->oids
.alloc
= ctx
->approx_nr_objects
/ 32;
2054 if (ctx
->split
&& split_opts
&& ctx
->oids
.alloc
> split_opts
->max_commits
)
2055 ctx
->oids
.alloc
= split_opts
->max_commits
;
2058 prepare_commit_graph_one(ctx
->r
, ctx
->odb
);
2059 if (ctx
->r
->objects
->commit_graph
)
2060 ctx
->oids
.alloc
+= ctx
->r
->objects
->commit_graph
->num_commits
;
2063 if (ctx
->oids
.alloc
< 1024)
2064 ctx
->oids
.alloc
= 1024;
2065 ALLOC_ARRAY(ctx
->oids
.list
, ctx
->oids
.alloc
);
2067 if (ctx
->append
&& ctx
->r
->objects
->commit_graph
) {
2068 struct commit_graph
*g
= ctx
->r
->objects
->commit_graph
;
2069 for (i
= 0; i
< g
->num_commits
; i
++) {
2070 const unsigned char *hash
= g
->chunk_oid_lookup
+ g
->hash_len
* i
;
2071 hashcpy(ctx
->oids
.list
[ctx
->oids
.nr
++].hash
, hash
);
2076 ctx
->order_by_pack
= 1;
2077 if ((res
= fill_oids_from_packs(ctx
, pack_indexes
)))
2082 if ((res
= fill_oids_from_commits(ctx
, commits
)))
2086 if (!pack_indexes
&& !commits
) {
2087 ctx
->order_by_pack
= 1;
2088 fill_oids_from_all_packs(ctx
);
2091 close_reachable(ctx
);
2093 count_distinct
= count_distinct_commits(ctx
);
2095 if (count_distinct
>= GRAPH_EDGE_LAST_MASK
) {
2096 error(_("the commit graph format cannot write %d commits"), count_distinct
);
2101 ctx
->commits
.alloc
= count_distinct
;
2102 ALLOC_ARRAY(ctx
->commits
.list
, ctx
->commits
.alloc
);
2104 copy_oids_to_commits(ctx
);
2106 if (ctx
->commits
.nr
>= GRAPH_EDGE_LAST_MASK
) {
2107 error(_("too many commits to write graph"));
2112 if (!ctx
->commits
.nr
&& !replace
)
2116 split_graph_merge_strategy(ctx
);
2119 merge_commit_graphs(ctx
);
2121 ctx
->num_commit_graphs_after
= 1;
2123 compute_generation_numbers(ctx
);
2125 if (ctx
->changed_paths
)
2126 compute_bloom_filters(ctx
);
2128 res
= write_commit_graph_file(ctx
);
2131 mark_commit_graphs(ctx
);
2133 expire_commit_graphs(ctx
);
2136 free(ctx
->graph_name
);
2137 free(ctx
->commits
.list
);
2138 free(ctx
->oids
.list
);
2140 if (ctx
->commit_graph_filenames_after
) {
2141 for (i
= 0; i
< ctx
->num_commit_graphs_after
; i
++) {
2142 free(ctx
->commit_graph_filenames_after
[i
]);
2143 free(ctx
->commit_graph_hash_after
[i
]);
2146 for (i
= 0; i
< ctx
->num_commit_graphs_before
; i
++)
2147 free(ctx
->commit_graph_filenames_before
[i
]);
2149 free(ctx
->commit_graph_filenames_after
);
2150 free(ctx
->commit_graph_filenames_before
);
2151 free(ctx
->commit_graph_hash_after
);
2159 #define VERIFY_COMMIT_GRAPH_ERROR_HASH 2
2160 static int verify_commit_graph_error
;
2162 static void graph_report(const char *fmt
, ...)
2166 verify_commit_graph_error
= 1;
2168 vfprintf(stderr
, fmt
, ap
);
2169 fprintf(stderr
, "\n");
2173 #define GENERATION_ZERO_EXISTS 1
2174 #define GENERATION_NUMBER_EXISTS 2
2176 int verify_commit_graph(struct repository
*r
, struct commit_graph
*g
, int flags
)
2178 uint32_t i
, cur_fanout_pos
= 0;
2179 struct object_id prev_oid
, cur_oid
, checksum
;
2180 int generation_zero
= 0;
2183 struct progress
*progress
= NULL
;
2184 int local_error
= 0;
2187 graph_report("no commit-graph file loaded");
2191 verify_commit_graph_error
= verify_commit_graph_lite(g
);
2192 if (verify_commit_graph_error
)
2193 return verify_commit_graph_error
;
2195 devnull
= open("/dev/null", O_WRONLY
);
2196 f
= hashfd(devnull
, NULL
);
2197 hashwrite(f
, g
->data
, g
->data_len
- g
->hash_len
);
2198 finalize_hashfile(f
, checksum
.hash
, CSUM_CLOSE
);
2199 if (!hasheq(checksum
.hash
, g
->data
+ g
->data_len
- g
->hash_len
)) {
2200 graph_report(_("the commit-graph file has incorrect checksum and is likely corrupt"));
2201 verify_commit_graph_error
= VERIFY_COMMIT_GRAPH_ERROR_HASH
;
2204 for (i
= 0; i
< g
->num_commits
; i
++) {
2205 struct commit
*graph_commit
;
2207 hashcpy(cur_oid
.hash
, g
->chunk_oid_lookup
+ g
->hash_len
* i
);
2209 if (i
&& oidcmp(&prev_oid
, &cur_oid
) >= 0)
2210 graph_report(_("commit-graph has incorrect OID order: %s then %s"),
2211 oid_to_hex(&prev_oid
),
2212 oid_to_hex(&cur_oid
));
2214 oidcpy(&prev_oid
, &cur_oid
);
2216 while (cur_oid
.hash
[0] > cur_fanout_pos
) {
2217 uint32_t fanout_value
= get_be32(g
->chunk_oid_fanout
+ cur_fanout_pos
);
2219 if (i
!= fanout_value
)
2220 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2221 cur_fanout_pos
, fanout_value
, i
);
2225 graph_commit
= lookup_commit(r
, &cur_oid
);
2226 if (!parse_commit_in_graph_one(r
, g
, graph_commit
))
2227 graph_report(_("failed to parse commit %s from commit-graph"),
2228 oid_to_hex(&cur_oid
));
2231 while (cur_fanout_pos
< 256) {
2232 uint32_t fanout_value
= get_be32(g
->chunk_oid_fanout
+ cur_fanout_pos
);
2234 if (g
->num_commits
!= fanout_value
)
2235 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2236 cur_fanout_pos
, fanout_value
, i
);
2241 if (verify_commit_graph_error
& ~VERIFY_COMMIT_GRAPH_ERROR_HASH
)
2242 return verify_commit_graph_error
;
2244 if (flags
& COMMIT_GRAPH_WRITE_PROGRESS
)
2245 progress
= start_progress(_("Verifying commits in commit graph"),
2248 for (i
= 0; i
< g
->num_commits
; i
++) {
2249 struct commit
*graph_commit
, *odb_commit
;
2250 struct commit_list
*graph_parents
, *odb_parents
;
2251 uint32_t max_generation
= 0;
2253 display_progress(progress
, i
+ 1);
2254 hashcpy(cur_oid
.hash
, g
->chunk_oid_lookup
+ g
->hash_len
* i
);
2256 graph_commit
= lookup_commit(r
, &cur_oid
);
2257 odb_commit
= (struct commit
*)create_object(r
, &cur_oid
, alloc_commit_node(r
));
2258 if (parse_commit_internal(odb_commit
, 0, 0)) {
2259 graph_report(_("failed to parse commit %s from object database for commit-graph"),
2260 oid_to_hex(&cur_oid
));
2264 if (!oideq(&get_commit_tree_in_graph_one(r
, g
, graph_commit
)->object
.oid
,
2265 get_commit_tree_oid(odb_commit
)))
2266 graph_report(_("root tree OID for commit %s in commit-graph is %s != %s"),
2267 oid_to_hex(&cur_oid
),
2268 oid_to_hex(get_commit_tree_oid(graph_commit
)),
2269 oid_to_hex(get_commit_tree_oid(odb_commit
)));
2271 graph_parents
= graph_commit
->parents
;
2272 odb_parents
= odb_commit
->parents
;
2274 while (graph_parents
) {
2275 if (odb_parents
== NULL
) {
2276 graph_report(_("commit-graph parent list for commit %s is too long"),
2277 oid_to_hex(&cur_oid
));
2281 /* parse parent in case it is in a base graph */
2282 parse_commit_in_graph_one(r
, g
, graph_parents
->item
);
2284 if (!oideq(&graph_parents
->item
->object
.oid
, &odb_parents
->item
->object
.oid
))
2285 graph_report(_("commit-graph parent for %s is %s != %s"),
2286 oid_to_hex(&cur_oid
),
2287 oid_to_hex(&graph_parents
->item
->object
.oid
),
2288 oid_to_hex(&odb_parents
->item
->object
.oid
));
2290 if (graph_parents
->item
->generation
> max_generation
)
2291 max_generation
= graph_parents
->item
->generation
;
2293 graph_parents
= graph_parents
->next
;
2294 odb_parents
= odb_parents
->next
;
2297 if (odb_parents
!= NULL
)
2298 graph_report(_("commit-graph parent list for commit %s terminates early"),
2299 oid_to_hex(&cur_oid
));
2301 if (!graph_commit
->generation
) {
2302 if (generation_zero
== GENERATION_NUMBER_EXISTS
)
2303 graph_report(_("commit-graph has generation number zero for commit %s, but non-zero elsewhere"),
2304 oid_to_hex(&cur_oid
));
2305 generation_zero
= GENERATION_ZERO_EXISTS
;
2306 } else if (generation_zero
== GENERATION_ZERO_EXISTS
)
2307 graph_report(_("commit-graph has non-zero generation number for commit %s, but zero elsewhere"),
2308 oid_to_hex(&cur_oid
));
2310 if (generation_zero
== GENERATION_ZERO_EXISTS
)
2314 * If one of our parents has generation GENERATION_NUMBER_MAX, then
2315 * our generation is also GENERATION_NUMBER_MAX. Decrement to avoid
2316 * extra logic in the following condition.
2318 if (max_generation
== GENERATION_NUMBER_MAX
)
2321 if (graph_commit
->generation
!= max_generation
+ 1)
2322 graph_report(_("commit-graph generation for commit %s is %u != %u"),
2323 oid_to_hex(&cur_oid
),
2324 graph_commit
->generation
,
2325 max_generation
+ 1);
2327 if (graph_commit
->date
!= odb_commit
->date
)
2328 graph_report(_("commit date for commit %s in commit-graph is %"PRItime
" != %"PRItime
),
2329 oid_to_hex(&cur_oid
),
2333 stop_progress(&progress
);
2335 local_error
= verify_commit_graph_error
;
2337 if (!(flags
& COMMIT_GRAPH_VERIFY_SHALLOW
) && g
->base_graph
)
2338 local_error
|= verify_commit_graph(r
, g
->base_graph
, flags
);
2343 void free_commit_graph(struct commit_graph
*g
)
2348 munmap((void *)g
->data
, g
->data_len
);
2352 free(g
->bloom_filter_settings
);
2356 void disable_commit_graph(struct repository
*r
)
2358 r
->commit_graph_disabled
= 1;