Message ID | 580026f910daaae6dba599fcd2408721b4f86c59.1723397687.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | git for-each-ref: is-base atom and base branches | expand |
"Derrick Stolee via GitGitGadget" <gitgitgadget@gmail.com> writes: > From: Derrick Stolee <stolee@gmail.com> > > Add a new reachability algorithm that intends to discover (from a heuristic) > which branch was used as the starting point for a given commit. Add focused > tests using the 'test-tool reach' command. > > Repositories that use pull requests (or merge requests) to advance one or > more "protected" branches, the history of that reference can be recovered by > following the first-parent history in most cases. I cannot quite parse it, but perhaps "Repositories that" -> "In repositories that"? > Most are completed using > no-fast-forward merges, though squash merges are quite common. Less common > is rebase-and-merge, which still validates this assumption. Finally, the > case that breaks this assumption is the fast-forward update (with potential > rebasing). Even in this case, the previous commit commonly appears in the > first-parent history of the branch. > Given current command-line interface options, this optimization criteria is > not easy to detect directly. Even using the command > > git rev-list --count --first-parent <base>..<source> > > does not measure this count, as it uses full reachability from <base> to > determine which commits to remove from the range '<base>..<source>'. Makes me wonder if "--ancestry-path" would help. > The trickiest part of the integer slab is what happens when reaching a > collision among the histories of the bases and the history of the source. > This is noticed when viewing the first parent and seeing that it has a slab > value that differs in sign (negative or positive). In this case, the > collision commit is stored in the method variable 'branch_point' and its > slab value is set to -1. The index of the best base (so far) is stored in > the method variable 'best_index'. It is possible that there are multiple > commits that have the branch_point as its first parent, leading to multiple > updates of best_index. The result is determined when 'branch_point' is > visited in the commit walk, giving the guarantee that all commits that could > reach 'branch_point' were visited. OK. > +/* > + * This slab initializes integers to zero, so use "-1" for "tip is best" and > + * "i + 1" for "bases[i] is best". > + */ > +define_commit_slab(best_branch_base, int); > +static struct best_branch_base best_branch_base; > +#define get_best(c) (*best_branch_base_at(&best_branch_base, c)) > +#define set_best(c,v) (*best_branch_base_at(&best_branch_base, c) = v) Micronit. Prepare for macro arguments to be expressions, even if current callers don't use anything more complex, i.e., something like (*best_branch_base_at(&best_branch_base, (c))) (*best_branch_base_at(&best_branch_base, (c)) = (v)) > + if (found_missing_gen) { > + struct commit **commits; > + size_t commits_nr = bases_nr + 1; > + > + CALLOC_ARRAY(commits, commits_nr); > + COPY_ARRAY(commits, bases, bases_nr); > + commits[bases_nr] = tip; > + ensure_generations_valid(r, commits, commits_nr); > + free(commits); > + } It would have been very unfortunate if this copying were done only because commits and tip are not in the same array, but the called function mutates the given array of commits so we cannot avoid passing a copy anyway. Given these constraints, this is the cleanest implementation, probably. > + > + /* Initialize queue and slab now that generations are guaranteed. */ > + init_best_branch_base(&best_branch_base); > + set_best(tip, -1); > + prio_queue_put(&queue, tip); > + > + for (size_t i = 0; i < bases_nr; i++) { > + struct commit *c = bases[i]; > + > + /* Has this already been marked as best by another commit? */ > + if (get_best(c)) > + continue; Oh, so this defines the tie-breaking behaviour, but simply removing it is a wrong solution if we wanted our tie-breaking to work as "last one wins", as we still do not want to put it in the queue, so this "if best is already found, skip the rest" is serving dual purposes. Good. > + set_best(c, i + 1); > + prio_queue_put(&queue, c); > + } > + > + while (queue.nr) { > + struct commit *c = prio_queue_get(&queue); > + int best_for_c = get_best(c); > + int best_for_p, positive; > + struct commit *parent; > + > + /* Have we reached a known branch point? It's optimal. */ > + if (c == branch_point) > + break; > + > + repo_parse_commit(r, c); > + if (!c->parents) > + continue; > + > + parent = c->parents->item; > + repo_parse_commit(r, parent); > + best_for_p = get_best(parent); > + > + if (!best_for_p) { > + /* 'parent' is new, so pass along best_for_c. */ > + set_best(parent, best_for_c); > + prio_queue_put(&queue, parent); > + continue; > + } > + > + if (best_for_p > 0 && best_for_c > 0) { > + /* Collision among bases. Minimize. */ > + if (best_for_c < best_for_p) > + set_best(parent, best_for_c); > + continue; > + } > + > + /* > + * At this point, we have reached a commit that is reachable > + * from the tip, either from 'c' or from an earlier commit to > + * have 'parent' as its first parent. > + * > + * Update 'best_index' to match the minimum of all base indices > + * to reach 'parent'. > + */ > + > + /* Exactly one is positive due to initial conditions. */ > + positive = (best_for_c < 0) ? best_for_p : best_for_c; > + > + if (best_index < 0 || positive < best_index) > + best_index = positive; > + > + /* No matter what, track that the parent is reachable from tip. */ > + set_best(parent, -1); > + branch_point = parent; > + } > + > + clear_best_branch_base(&best_branch_base); > + clear_prio_queue(&queue); OK. We get rid of the slab and prio-queue once we are done. Nice. Thanks.
On 8/12/24 4:30 PM, Junio C Hamano wrote: > "Derrick Stolee via GitGitGadget" <gitgitgadget@gmail.com> writes: >> Repositories that use pull requests (or merge requests) to advance one or >> more "protected" branches, the history of that reference can be recovered by >> following the first-parent history in most cases. > > I cannot quite parse it, but perhaps "Repositories that" -> "In > repositories that"? That is an improvement, thanks. >> Most are completed using >> no-fast-forward merges, though squash merges are quite common. Less common >> is rebase-and-merge, which still validates this assumption. Finally, the >> case that breaks this assumption is the fast-forward update (with potential >> rebasing). Even in this case, the previous commit commonly appears in the >> first-parent history of the branch. > >> Given current command-line interface options, this optimization criteria is >> not easy to detect directly. Even using the command >> >> git rev-list --count --first-parent <base>..<source> >> >> does not measure this count, as it uses full reachability from <base> to >> determine which commits to remove from the range '<base>..<source>'. > > Makes me wonder if "--ancestry-path" would help. One difficulty here is that we don't know the "first-parent merge base" to supply to the --ancestry-path argument. You could first find this by running git rev-list --first-parent --boundary --reverse A...B and pulling out the first boundary commit 'C'. Then, that could be used in git rev-list --first-parent --count --ancestry-path=C B I believe that this two-process-per-ref approach would provide an existing way to compute these results. >> The trickiest part of the integer slab is what happens when reaching a >> collision among the histories of the bases and the history of the source. >> This is noticed when viewing the first parent and seeing that it has a slab >> value that differs in sign (negative or positive). In this case, the >> collision commit is stored in the method variable 'branch_point' and its >> slab value is set to -1. The index of the best base (so far) is stored in >> the method variable 'best_index'. It is possible that there are multiple >> commits that have the branch_point as its first parent, leading to multiple >> updates of best_index. The result is determined when 'branch_point' is >> visited in the commit walk, giving the guarantee that all commits that could >> reach 'branch_point' were visited. > > OK. > >> +/* >> + * This slab initializes integers to zero, so use "-1" for "tip is best" and >> + * "i + 1" for "bases[i] is best". >> + */ >> +define_commit_slab(best_branch_base, int); >> +static struct best_branch_base best_branch_base; >> +#define get_best(c) (*best_branch_base_at(&best_branch_base, c)) >> +#define set_best(c,v) (*best_branch_base_at(&best_branch_base, c) = v) > > Micronit. Prepare for macro arguments to be expressions, even if > current callers don't use anything more complex, i.e., something > like > > (*best_branch_base_at(&best_branch_base, (c))) > (*best_branch_base_at(&best_branch_base, (c)) = (v)) Thanks. I should have caught this myself. >> + >> + /* Initialize queue and slab now that generations are guaranteed. */ >> + init_best_branch_base(&best_branch_base); >> + set_best(tip, -1); >> + prio_queue_put(&queue, tip); >> + >> + for (size_t i = 0; i < bases_nr; i++) { >> + struct commit *c = bases[i]; >> + >> + /* Has this already been marked as best by another commit? */ >> + if (get_best(c)) >> + continue; > > Oh, so this defines the tie-breaking behaviour, but simply removing > it is a wrong solution if we wanted our tie-breaking to work as > "last one wins", as we still do not want to put it in the queue, so > this "if best is already found, skip the rest" is serving dual > purposes. Good. When trying to make a test case for the for-each-ref behavior around non-commits, I noticed a bug here. If get_best(c) is -1, then 'c' is equal to the base and should be selected. I will update the logic here and add an appropriate test in this patch. Thanks, -Stolee
diff --git a/commit-reach.c b/commit-reach.c index 8f9b008f876..1b56fb081a6 100644 --- a/commit-reach.c +++ b/commit-reach.c @@ -1222,3 +1222,121 @@ done: free(commits); repo_clear_commit_marks(r, SEEN); } + +/* + * This slab initializes integers to zero, so use "-1" for "tip is best" and + * "i + 1" for "bases[i] is best". + */ +define_commit_slab(best_branch_base, int); +static struct best_branch_base best_branch_base; +#define get_best(c) (*best_branch_base_at(&best_branch_base, c)) +#define set_best(c,v) (*best_branch_base_at(&best_branch_base, c) = v) + +int get_branch_base_for_tip(struct repository *r, + struct commit *tip, + struct commit **bases, + size_t bases_nr) +{ + int best_index = -1; + struct commit *branch_point = NULL; + struct prio_queue queue = { compare_commits_by_gen_then_commit_date }; + int found_missing_gen = 0; + + if (!bases_nr) + return -1; + + repo_parse_commit(r, tip); + if (commit_graph_generation(tip) == GENERATION_NUMBER_INFINITY) + found_missing_gen = 1; + + /* Check for missing generation numbers. */ + for (size_t i = 0; i < bases_nr; i++) { + struct commit *c = bases[i]; + repo_parse_commit(r, c); + if (commit_graph_generation(c) == GENERATION_NUMBER_INFINITY) + found_missing_gen = 1; + } + + if (found_missing_gen) { + struct commit **commits; + size_t commits_nr = bases_nr + 1; + + CALLOC_ARRAY(commits, commits_nr); + COPY_ARRAY(commits, bases, bases_nr); + commits[bases_nr] = tip; + ensure_generations_valid(r, commits, commits_nr); + free(commits); + } + + /* Initialize queue and slab now that generations are guaranteed. */ + init_best_branch_base(&best_branch_base); + set_best(tip, -1); + prio_queue_put(&queue, tip); + + for (size_t i = 0; i < bases_nr; i++) { + struct commit *c = bases[i]; + + /* Has this already been marked as best by another commit? */ + if (get_best(c)) + continue; + + set_best(c, i + 1); + prio_queue_put(&queue, c); + } + + while (queue.nr) { + struct commit *c = prio_queue_get(&queue); + int best_for_c = get_best(c); + int best_for_p, positive; + struct commit *parent; + + /* Have we reached a known branch point? It's optimal. */ + if (c == branch_point) + break; + + repo_parse_commit(r, c); + if (!c->parents) + continue; + + parent = c->parents->item; + repo_parse_commit(r, parent); + best_for_p = get_best(parent); + + if (!best_for_p) { + /* 'parent' is new, so pass along best_for_c. */ + set_best(parent, best_for_c); + prio_queue_put(&queue, parent); + continue; + } + + if (best_for_p > 0 && best_for_c > 0) { + /* Collision among bases. Minimize. */ + if (best_for_c < best_for_p) + set_best(parent, best_for_c); + continue; + } + + /* + * At this point, we have reached a commit that is reachable + * from the tip, either from 'c' or from an earlier commit to + * have 'parent' as its first parent. + * + * Update 'best_index' to match the minimum of all base indices + * to reach 'parent'. + */ + + /* Exactly one is positive due to initial conditions. */ + positive = (best_for_c < 0) ? best_for_p : best_for_c; + + if (best_index < 0 || positive < best_index) + best_index = positive; + + /* No matter what, track that the parent is reachable from tip. */ + set_best(parent, -1); + branch_point = parent; + } + + clear_best_branch_base(&best_branch_base); + clear_prio_queue(&queue); + return best_index > 0 ? best_index - 1 : -1; +} diff --git a/commit-reach.h b/commit-reach.h index bf63cc468fd..9a745b7e176 100644 --- a/commit-reach.h +++ b/commit-reach.h @@ -139,4 +139,21 @@ void tips_reachable_from_bases(struct repository *r, struct commit **tips, size_t tips_nr, int mark); +/* + * Given a 'tip' commit and a list potential 'bases', return the index 'i' that + * minimizes the number of commits in the first-parent history of 'tip' and not + * in the first-parent history of 'bases[i]'. + * + * Among a list of long-lived branches that are updated only by merges (with the + * first parent being the previous position of the branch), this would inform + * which branch was used to create the tip reference. + * + * Returns -1 if no common point is found in first-parent histories, which is + * rare, but possible with multiple root commits. + */ +int get_branch_base_for_tip(struct repository *r, + struct commit *tip, + struct commit **bases, + size_t bases_nr); + #endif diff --git a/t/helper/test-reach.c b/t/helper/test-reach.c index 1e3b431e3e7..8579b607aa5 100644 --- a/t/helper/test-reach.c +++ b/t/helper/test-reach.c @@ -114,6 +114,8 @@ int cmd__reach(int ac, const char **av) repo_in_merge_bases_many(the_repository, A, X_nr, X_array, 0)); else if (!strcmp(av[1], "is_descendant_of")) printf("%s(A,X):%d\n", av[1], repo_is_descendant_of(r, A, X)); + else if (!strcmp(av[1], "get_branch_base_for_tip")) + printf("%s(A,X):%d\n", av[1], get_branch_base_for_tip(r, A, X_array, X_nr)); else if (!strcmp(av[1], "get_merge_bases_many")) { struct commit_list *list = NULL; if (repo_get_merge_bases_many(the_repository, diff --git a/t/t6600-test-reach.sh b/t/t6600-test-reach.sh index b330945f497..3069efc8601 100755 --- a/t/t6600-test-reach.sh +++ b/t/t6600-test-reach.sh @@ -612,4 +612,51 @@ test_expect_success 'for-each-ref merged:none' ' --format="%(refname)" --stdin ' +# For get_branch_base_for_tip, we only care about +# first-parent history. Here is the test graph with +# second parents removed: +# +# (10,10) +# / +# (10,9) (9,10) +# / / +# (10,8) (9,9) (8,10) +# / / / +# ( continued...) +# \ / / / +# (3,1) (2,2) (1,3) +# \ / / +# (2,1) (1,2) +# \ / +# (1,1) +# +# In short, for a commit (i,j), the first-parent history +# walks all commits (i, k) with k from j to 1, then the +# commits (l, 1) with l from i to 1. + +test_expect_success 'get_branch_base_for_tip: none reach' ' + # (2,3) branched from the first tip (i,4) in X with i > 2 + cat >input <<-\EOF && + A:commit-2-3 + X:commit-1-2 + X:commit-1-4 + X:commit-4-4 + X:commit-8-4 + X:commit-10-4 + EOF + echo "get_branch_base_for_tip(A,X):2" >expect && + test_all_modes get_branch_base_for_tip +' + +test_expect_success 'get_branch_base_for_tip: all reach tip' ' + # (2,3) branched from the first tip (i,4) in X with i > 2 + cat >input <<-\EOF && + A:commit-4-1 + X:commit-4-2 + X:commit-5-1 + EOF + echo "get_branch_base_for_tip(A,X):0" >expect && + test_all_modes get_branch_base_for_tip +' + test_done