]> git.ipfire.org Git - thirdparty/git.git/blame - commit-reach.h
commit-reach(repo_get_merge_bases_many): pass on "missing commits" errors
[thirdparty/git.git] / commit-reach.h
CommitLineData
0009d350
RJ
1#ifndef COMMIT_REACH_H
2#define COMMIT_REACH_H
5227c385 3
1406725b 4#include "commit.h"
920f93ca
DS
5#include "commit-slab.h"
6
5227c385 7struct commit_list;
920f93ca 8struct ref_filter;
1406725b
RJ
9struct object_id;
10struct object_array;
5227c385 11
76e2a099
JS
12int repo_get_merge_bases(struct repository *r,
13 struct commit *rev1,
14 struct commit *rev2,
15 struct commit_list **result);
53173805
JS
16int repo_get_merge_bases_many(struct repository *r,
17 struct commit *one, int n,
18 struct commit **twos,
19 struct commit_list **result);
5227c385 20/* To be used only when object flags after this call no longer matter */
21a9651b
SB
21struct commit_list *repo_get_merge_bases_many_dirty(struct repository *r,
22 struct commit *one, int n,
23 struct commit **twos);
21a9651b 24
f87056ce 25int get_octopus_merge_bases(struct commit_list *in, struct commit_list **result);
5227c385 26
c1ea625f
CMAB
27int repo_is_descendant_of(struct repository *r,
28 struct commit *commit,
29 struct commit_list *with_commit);
4d5430f7
SB
30int repo_in_merge_bases(struct repository *r,
31 struct commit *commit,
32 struct commit *reference);
33int repo_in_merge_bases_many(struct repository *r,
34 struct commit *commit,
207c40e1
JS
35 int nr_reference, struct commit **reference,
36 int ignore_missing_commits);
5227c385 37
5227c385
DS
38/*
39 * Takes a list of commits and returns a new list where those
40 * have been removed that can be reached from other commits in
41 * the list. It is useful for, e.g., reducing the commits
42 * randomly thrown at the git-merge command and removing
43 * redundant commits that the user shouldn't have given to it.
44 *
45 * This function destroys the STALE bit of the commit objects'
46 * flags.
47 */
48struct commit_list *reduce_heads(struct commit_list *heads);
49
50/*
51 * Like `reduce_heads()`, except it replaces the list. Use this
52 * instead of `foo = reduce_heads(foo);` to avoid memory leaks.
53 */
54void reduce_heads_replace(struct commit_list **heads);
55
1d614d41
DS
56int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid);
57
920f93ca
DS
58/*
59 * Unknown has to be "0" here, because that's the default value for
60 * contains_cache slab entries that have not yet been assigned.
61 */
62enum contains_result {
63 CONTAINS_UNKNOWN = 0,
64 CONTAINS_NO,
65 CONTAINS_YES
66};
67
68define_commit_slab(contains_cache, enum contains_result);
69
70int commit_contains(struct ref_filter *filter, struct commit *commit,
71 struct commit_list *list, struct contains_cache *cache);
72
ba3ca1ed
DS
73/*
74 * Determine if every commit in 'from' can reach at least one commit
75 * that is marked with 'with_flag'. As we traverse, use 'assign_flag'
76 * as a marker for commits that are already visited. Do not walk
4fbcca4e
DS
77 * commits with date below 'min_commit_date' or generation below
78 * 'min_generation'.
ba3ca1ed
DS
79 */
80int can_all_from_reach_with_flag(struct object_array *from,
81 unsigned int with_flag,
82 unsigned int assign_flag,
4fbcca4e 83 time_t min_commit_date,
d7f92784 84 timestamp_t min_generation);
1792bc12
DS
85int can_all_from_reach(struct commit_list *from, struct commit_list *to,
86 int commit_date_cutoff);
ba3ca1ed 87
fcb2c076
DS
88
89/*
90 * Return a list of commits containing the commits in the 'to' array
91 * that are reachable from at least one commit in the 'from' array.
92 * Also add the given 'flag' to each of the commits in the returned list.
93 *
94 * This method uses the PARENT1 and PARENT2 flags during its operation,
95 * so be sure these flags are not set before calling the method.
96 */
97struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
98 struct commit **to, int nr_to,
99 unsigned int reachable_flag);
100
fd67d149
DS
101struct ahead_behind_count {
102 /**
103 * As input, the *_index members indicate which positions in
104 * the 'tips' array correspond to the tip and base of this
105 * comparison.
106 */
107 size_t tip_index;
108 size_t base_index;
109
110 /**
111 * These values store the computed counts for each side of the
112 * symmetric difference:
113 *
114 * 'ahead' stores the number of commits reachable from the tip
115 * and not reachable from the base.
116 *
117 * 'behind' stores the number of commits reachable from the base
118 * and not reachable from the tip.
119 */
120 unsigned int ahead;
121 unsigned int behind;
122};
123
124/*
125 * Given an array of commits and an array of ahead_behind_count pairs,
126 * compute the ahead/behind counts for each pair.
127 */
128void ahead_behind(struct repository *r,
129 struct commit **commits, size_t commits_nr,
130 struct ahead_behind_count *counts, size_t counts_nr);
131
cbfe360b
DS
132/*
133 * For all tip commits, add 'mark' to their flags if and only if they
134 * are reachable from one of the commits in 'bases'.
135 */
136void tips_reachable_from_bases(struct repository *r,
137 struct commit_list *bases,
138 struct commit **tips, size_t tips_nr,
139 int mark);
140
5227c385 141#endif