3 #include "commit-graph.h"
5 #include "prio-queue.h"
7 #include "ref-filter.h"
10 #include "commit-reach.h"
12 /* Remember to update object flag allocation in object.h */
13 #define PARENT1 (1u<<16)
14 #define PARENT2 (1u<<17)
15 #define STALE (1u<<18)
16 #define RESULT (1u<<19)
18 static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
20 static int queue_has_nonstale(struct prio_queue *queue)
23 for (i = 0; i < queue->nr; i++) {
24 struct commit *commit = queue->array[i].data;
25 if (!(commit->object.flags & STALE))
31 /* all input commits in one and twos[] must have been parsed! */
32 static struct commit_list *paint_down_to_common(struct repository *r,
33 struct commit *one, int n,
37 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
38 struct commit_list *result = NULL;
40 uint32_t last_gen = GENERATION_NUMBER_INFINITY;
43 queue.compare = compare_commits_by_commit_date;
45 one->object.flags |= PARENT1;
47 commit_list_append(one, &result);
50 prio_queue_put(&queue, one);
52 for (i = 0; i < n; i++) {
53 twos[i]->object.flags |= PARENT2;
54 prio_queue_put(&queue, twos[i]);
57 while (queue_has_nonstale(&queue)) {
58 struct commit *commit = prio_queue_get(&queue);
59 struct commit_list *parents;
62 if (min_generation && commit->generation > last_gen)
63 BUG("bad generation skip %8x > %8x at %s",
64 commit->generation, last_gen,
65 oid_to_hex(&commit->object.oid));
66 last_gen = commit->generation;
68 if (commit->generation < min_generation)
71 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
72 if (flags == (PARENT1 | PARENT2)) {
73 if (!(commit->object.flags & RESULT)) {
74 commit->object.flags |= RESULT;
75 commit_list_insert_by_date(commit, &result);
77 /* Mark parents of a found merge stale */
80 parents = commit->parents;
82 struct commit *p = parents->item;
83 parents = parents->next;
84 if ((p->object.flags & flags) == flags)
86 if (repo_parse_commit(r, p))
88 p->object.flags |= flags;
89 prio_queue_put(&queue, p);
93 clear_prio_queue(&queue);
97 static struct commit_list *merge_bases_many(struct repository *r,
98 struct commit *one, int n,
101 struct commit_list *list = NULL;
102 struct commit_list *result = NULL;
105 for (i = 0; i < n; i++) {
108 * We do not mark this even with RESULT so we do not
109 * have to clean it up.
111 return commit_list_insert(one, &result);
114 if (repo_parse_commit(r, one))
116 for (i = 0; i < n; i++) {
117 if (repo_parse_commit(r, twos[i]))
121 list = paint_down_to_common(r, one, n, twos, 0);
124 struct commit *commit = pop_commit(&list);
125 if (!(commit->object.flags & STALE))
126 commit_list_insert_by_date(commit, &result);
131 struct commit_list *get_octopus_merge_bases(struct commit_list *in)
133 struct commit_list *i, *j, *k, *ret = NULL;
138 commit_list_insert(in->item, &ret);
140 for (i = in->next; i; i = i->next) {
141 struct commit_list *new_commits = NULL, *end = NULL;
143 for (j = ret; j; j = j->next) {
144 struct commit_list *bases;
145 bases = get_merge_bases(i->item, j->item);
150 for (k = bases; k; k = k->next)
158 static int remove_redundant(struct repository *r, struct commit **array, int cnt)
161 * Some commit in the array may be an ancestor of
162 * another commit. Move such commit to the end of
163 * the array, and return the number of commits that
164 * are independent from each other.
166 struct commit **work;
167 unsigned char *redundant;
171 work = xcalloc(cnt, sizeof(*work));
172 redundant = xcalloc(cnt, 1);
173 ALLOC_ARRAY(filled_index, cnt - 1);
175 for (i = 0; i < cnt; i++)
176 repo_parse_commit(r, array[i]);
177 for (i = 0; i < cnt; i++) {
178 struct commit_list *common;
179 uint32_t min_generation = array[i]->generation;
183 for (j = filled = 0; j < cnt; j++) {
184 if (i == j || redundant[j])
186 filled_index[filled] = j;
187 work[filled++] = array[j];
189 if (array[j]->generation < min_generation)
190 min_generation = array[j]->generation;
192 common = paint_down_to_common(r, array[i], filled,
193 work, min_generation);
194 if (array[i]->object.flags & PARENT2)
196 for (j = 0; j < filled; j++)
197 if (work[j]->object.flags & PARENT1)
198 redundant[filled_index[j]] = 1;
199 clear_commit_marks(array[i], all_flags);
200 clear_commit_marks_many(filled, work, all_flags);
201 free_commit_list(common);
204 /* Now collect the result */
205 COPY_ARRAY(work, array, cnt);
206 for (i = filled = 0; i < cnt; i++)
208 array[filled++] = work[i];
209 for (j = filled, i = 0; i < cnt; i++)
211 array[j++] = work[i];
218 static struct commit_list *get_merge_bases_many_0(struct repository *r,
221 struct commit **twos,
224 struct commit_list *list;
225 struct commit **rslt;
226 struct commit_list *result;
229 result = merge_bases_many(r, one, n, twos);
230 for (i = 0; i < n; i++) {
234 if (!result || !result->next) {
236 clear_commit_marks(one, all_flags);
237 clear_commit_marks_many(n, twos, all_flags);
242 /* There are more than one */
243 cnt = commit_list_count(result);
244 rslt = xcalloc(cnt, sizeof(*rslt));
245 for (list = result, i = 0; list; list = list->next)
246 rslt[i++] = list->item;
247 free_commit_list(result);
249 clear_commit_marks(one, all_flags);
250 clear_commit_marks_many(n, twos, all_flags);
252 cnt = remove_redundant(r, rslt, cnt);
254 for (i = 0; i < cnt; i++)
255 commit_list_insert_by_date(rslt[i], &result);
260 struct commit_list *repo_get_merge_bases_many(struct repository *r,
263 struct commit **twos)
265 return get_merge_bases_many_0(r, one, n, twos, 1);
268 struct commit_list *repo_get_merge_bases_many_dirty(struct repository *r,
271 struct commit **twos)
273 return get_merge_bases_many_0(r, one, n, twos, 0);
276 struct commit_list *repo_get_merge_bases(struct repository *r,
280 return get_merge_bases_many_0(r, one, 1, &two, 1);
284 * Is "commit" a descendant of one of the elements on the "with_commit" list?
286 static int repo_is_descendant_of(struct repository *r,
287 struct commit *commit,
288 struct commit_list *with_commit)
293 if (generation_numbers_enabled(the_repository)) {
294 struct commit_list *from_list = NULL;
296 commit_list_insert(commit, &from_list);
297 result = can_all_from_reach(from_list, with_commit, 0);
298 free_commit_list(from_list);
301 while (with_commit) {
302 struct commit *other;
304 other = with_commit->item;
305 with_commit = with_commit->next;
306 if (repo_in_merge_bases_many(r, other, 1, &commit))
313 int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
315 return repo_is_descendant_of(the_repository, commit, with_commit);
319 * Is "commit" an ancestor of one of the "references"?
321 int repo_in_merge_bases_many(struct repository *r, struct commit *commit,
322 int nr_reference, struct commit **reference)
324 struct commit_list *bases;
326 uint32_t min_generation = GENERATION_NUMBER_INFINITY;
328 if (repo_parse_commit(r, commit))
330 for (i = 0; i < nr_reference; i++) {
331 if (repo_parse_commit(r, reference[i]))
333 if (reference[i]->generation < min_generation)
334 min_generation = reference[i]->generation;
337 if (commit->generation > min_generation)
340 bases = paint_down_to_common(r, commit,
341 nr_reference, reference,
343 if (commit->object.flags & PARENT2)
345 clear_commit_marks(commit, all_flags);
346 clear_commit_marks_many(nr_reference, reference, all_flags);
347 free_commit_list(bases);
352 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
354 int repo_in_merge_bases(struct repository *r,
355 struct commit *commit,
356 struct commit *reference)
359 struct commit_list *list = NULL;
360 struct commit_list **next = &list;
362 next = commit_list_append(commit, next);
363 res = repo_is_descendant_of(r, reference, list);
364 free_commit_list(list);
369 struct commit_list *reduce_heads(struct commit_list *heads)
371 struct commit_list *p;
372 struct commit_list *result = NULL, **tail = &result;
373 struct commit **array;
380 for (p = heads; p; p = p->next)
381 p->item->object.flags &= ~STALE;
382 for (p = heads, num_head = 0; p; p = p->next) {
383 if (p->item->object.flags & STALE)
385 p->item->object.flags |= STALE;
388 array = xcalloc(num_head, sizeof(*array));
389 for (p = heads, i = 0; p; p = p->next) {
390 if (p->item->object.flags & STALE) {
391 array[i++] = p->item;
392 p->item->object.flags &= ~STALE;
395 num_head = remove_redundant(the_repository, array, num_head);
396 for (i = 0; i < num_head; i++)
397 tail = &commit_list_insert(array[i], tail)->next;
402 void reduce_heads_replace(struct commit_list **heads)
404 struct commit_list *result = reduce_heads(*heads);
405 free_commit_list(*heads);
409 int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid)
412 struct commit *old_commit, *new_commit;
413 struct commit_list *old_commit_list = NULL;
416 * Both new_commit and old_commit must be commit-ish and new_commit is descendant of
417 * old_commit. Otherwise we require --force.
419 o = deref_tag(the_repository, parse_object(the_repository, old_oid),
421 if (!o || o->type != OBJ_COMMIT)
423 old_commit = (struct commit *) o;
425 o = deref_tag(the_repository, parse_object(the_repository, new_oid),
427 if (!o || o->type != OBJ_COMMIT)
429 new_commit = (struct commit *) o;
431 if (parse_commit(new_commit) < 0)
434 commit_list_insert(old_commit, &old_commit_list);
435 return is_descendant_of(new_commit, old_commit_list);
439 * Mimicking the real stack, this stack lives on the heap, avoiding stack
442 * At each recursion step, the stack items points to the commits whose
443 * ancestors are to be inspected.
445 struct contains_stack {
447 struct contains_stack_entry {
448 struct commit *commit;
449 struct commit_list *parents;
453 static int in_commit_list(const struct commit_list *want, struct commit *c)
455 for (; want; want = want->next)
456 if (oideq(&want->item->object.oid, &c->object.oid))
462 * Test whether the candidate is contained in the list.
463 * Do not recurse to find out, though, but return -1 if inconclusive.
465 static enum contains_result contains_test(struct commit *candidate,
466 const struct commit_list *want,
467 struct contains_cache *cache,
470 enum contains_result *cached = contains_cache_at(cache, candidate);
472 /* If we already have the answer cached, return that. */
477 if (in_commit_list(want, candidate)) {
478 *cached = CONTAINS_YES;
482 /* Otherwise, we don't know; prepare to recurse */
483 parse_commit_or_die(candidate);
485 if (candidate->generation < cutoff)
488 return CONTAINS_UNKNOWN;
491 static void push_to_contains_stack(struct commit *candidate, struct contains_stack *contains_stack)
493 ALLOC_GROW(contains_stack->contains_stack, contains_stack->nr + 1, contains_stack->alloc);
494 contains_stack->contains_stack[contains_stack->nr].commit = candidate;
495 contains_stack->contains_stack[contains_stack->nr++].parents = candidate->parents;
498 static enum contains_result contains_tag_algo(struct commit *candidate,
499 const struct commit_list *want,
500 struct contains_cache *cache)
502 struct contains_stack contains_stack = { 0, 0, NULL };
503 enum contains_result result;
504 uint32_t cutoff = GENERATION_NUMBER_INFINITY;
505 const struct commit_list *p;
507 for (p = want; p; p = p->next) {
508 struct commit *c = p->item;
509 load_commit_graph_info(the_repository, c);
510 if (c->generation < cutoff)
511 cutoff = c->generation;
514 result = contains_test(candidate, want, cache, cutoff);
515 if (result != CONTAINS_UNKNOWN)
518 push_to_contains_stack(candidate, &contains_stack);
519 while (contains_stack.nr) {
520 struct contains_stack_entry *entry = &contains_stack.contains_stack[contains_stack.nr - 1];
521 struct commit *commit = entry->commit;
522 struct commit_list *parents = entry->parents;
525 *contains_cache_at(cache, commit) = CONTAINS_NO;
529 * If we just popped the stack, parents->item has been marked,
530 * therefore contains_test will return a meaningful yes/no.
532 else switch (contains_test(parents->item, want, cache, cutoff)) {
534 *contains_cache_at(cache, commit) = CONTAINS_YES;
538 entry->parents = parents->next;
540 case CONTAINS_UNKNOWN:
541 push_to_contains_stack(parents->item, &contains_stack);
545 free(contains_stack.contains_stack);
546 return contains_test(candidate, want, cache, cutoff);
549 int commit_contains(struct ref_filter *filter, struct commit *commit,
550 struct commit_list *list, struct contains_cache *cache)
552 if (filter->with_commit_tag_algo)
553 return contains_tag_algo(commit, list, cache) == CONTAINS_YES;
554 return is_descendant_of(commit, list);
557 static int compare_commits_by_gen(const void *_a, const void *_b)
559 const struct commit *a = *(const struct commit * const *)_a;
560 const struct commit *b = *(const struct commit * const *)_b;
562 if (a->generation < b->generation)
564 if (a->generation > b->generation)
569 int can_all_from_reach_with_flag(struct object_array *from,
570 unsigned int with_flag,
571 unsigned int assign_flag,
572 time_t min_commit_date,
573 uint32_t min_generation)
575 struct commit **list = NULL;
580 ALLOC_ARRAY(list, from->nr);
582 for (i = 0; i < from->nr; i++) {
583 struct object *from_one = from->objects[i].item;
585 if (!from_one || from_one->flags & assign_flag)
588 from_one = deref_tag(the_repository, from_one,
590 if (!from_one || from_one->type != OBJ_COMMIT) {
592 * no way to tell if this is reachable by
593 * looking at the ancestry chain alone, so
594 * leave a note to ourselves not to worry about
595 * this object anymore.
597 from->objects[i].item->flags |= assign_flag;
601 list[nr_commits] = (struct commit *)from_one;
602 if (parse_commit(list[nr_commits]) ||
603 list[nr_commits]->generation < min_generation) {
611 QSORT(list, nr_commits, compare_commits_by_gen);
613 for (i = 0; i < nr_commits; i++) {
614 /* DFS from list[i] */
615 struct commit_list *stack = NULL;
617 list[i]->object.flags |= assign_flag;
618 commit_list_insert(list[i], &stack);
621 struct commit_list *parent;
623 if (stack->item->object.flags & (with_flag | RESULT)) {
626 stack->item->object.flags |= RESULT;
630 for (parent = stack->item->parents; parent; parent = parent->next) {
631 if (parent->item->object.flags & (with_flag | RESULT))
632 stack->item->object.flags |= RESULT;
634 if (!(parent->item->object.flags & assign_flag)) {
635 parent->item->object.flags |= assign_flag;
637 if (parse_commit(parent->item) ||
638 parent->item->date < min_commit_date ||
639 parent->item->generation < min_generation)
642 commit_list_insert(parent->item, &stack);
651 if (!(list[i]->object.flags & (with_flag | RESULT))) {
658 clear_commit_marks_many(nr_commits, list, RESULT | assign_flag);
661 for (i = 0; i < from->nr; i++)
662 from->objects[i].item->flags &= ~assign_flag;
667 int can_all_from_reach(struct commit_list *from, struct commit_list *to,
668 int cutoff_by_min_date)
670 struct object_array from_objs = OBJECT_ARRAY_INIT;
671 time_t min_commit_date = cutoff_by_min_date ? from->item->date : 0;
672 struct commit_list *from_iter = from, *to_iter = to;
674 uint32_t min_generation = GENERATION_NUMBER_INFINITY;
677 add_object_array(&from_iter->item->object, NULL, &from_objs);
679 if (!parse_commit(from_iter->item)) {
680 if (from_iter->item->date < min_commit_date)
681 min_commit_date = from_iter->item->date;
683 if (from_iter->item->generation < min_generation)
684 min_generation = from_iter->item->generation;
687 from_iter = from_iter->next;
691 if (!parse_commit(to_iter->item)) {
692 if (to_iter->item->date < min_commit_date)
693 min_commit_date = to_iter->item->date;
695 if (to_iter->item->generation < min_generation)
696 min_generation = to_iter->item->generation;
699 to_iter->item->object.flags |= PARENT2;
701 to_iter = to_iter->next;
704 result = can_all_from_reach_with_flag(&from_objs, PARENT2, PARENT1,
705 min_commit_date, min_generation);
708 clear_commit_marks(from->item, PARENT1);
713 clear_commit_marks(to->item, PARENT2);
717 object_array_clear(&from_objs);
721 struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
722 struct commit **to, int nr_to,
723 unsigned int reachable_flag)
725 struct commit **item;
726 struct commit *current;
727 struct commit_list *found_commits = NULL;
728 struct commit **to_last = to + nr_to;
729 struct commit **from_last = from + nr_from;
730 uint32_t min_generation = GENERATION_NUMBER_INFINITY;
733 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
735 for (item = to; item < to_last; item++) {
736 struct commit *c = *item;
739 if (c->generation < min_generation)
740 min_generation = c->generation;
742 if (!(c->object.flags & PARENT1)) {
743 c->object.flags |= PARENT1;
748 for (item = from; item < from_last; item++) {
749 struct commit *c = *item;
750 if (!(c->object.flags & PARENT2)) {
751 c->object.flags |= PARENT2;
754 prio_queue_put(&queue, *item);
758 while (num_to_find && (current = prio_queue_get(&queue)) != NULL) {
759 struct commit_list *parents;
761 if (current->object.flags & PARENT1) {
762 current->object.flags &= ~PARENT1;
763 current->object.flags |= reachable_flag;
764 commit_list_insert(current, &found_commits);
768 for (parents = current->parents; parents; parents = parents->next) {
769 struct commit *p = parents->item;
773 if (p->generation < min_generation)
776 if (p->object.flags & PARENT2)
779 p->object.flags |= PARENT2;
780 prio_queue_put(&queue, p);
784 clear_commit_marks_many(nr_to, to, PARENT1);
785 clear_commit_marks_many(nr_from, from, PARENT2);
787 return found_commits;