pager.h: move declarations for pager.c functions from cache.h
[alt-git.git] / commit-reach.c
blob5957a8e950f92834f4130173326f26868ba4e302
1 #include "git-compat-util.h"
2 #include "alloc.h"
3 #include "commit.h"
4 #include "commit-graph.h"
5 #include "decorate.h"
6 #include "hex.h"
7 #include "prio-queue.h"
8 #include "tree.h"
9 #include "ref-filter.h"
10 #include "revision.h"
11 #include "tag.h"
12 #include "commit-reach.h"
14 /* Remember to update object flag allocation in object.h */
15 #define PARENT1 (1u<<16)
16 #define PARENT2 (1u<<17)
17 #define STALE (1u<<18)
18 #define RESULT (1u<<19)
20 static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
22 static int compare_commits_by_gen(const void *_a, const void *_b)
24 const struct commit *a = *(const struct commit * const *)_a;
25 const struct commit *b = *(const struct commit * const *)_b;
27 timestamp_t generation_a = commit_graph_generation(a);
28 timestamp_t generation_b = commit_graph_generation(b);
30 if (generation_a < generation_b)
31 return -1;
32 if (generation_a > generation_b)
33 return 1;
34 if (a->date < b->date)
35 return -1;
36 if (a->date > b->date)
37 return 1;
38 return 0;
41 static int queue_has_nonstale(struct prio_queue *queue)
43 int i;
44 for (i = 0; i < queue->nr; i++) {
45 struct commit *commit = queue->array[i].data;
46 if (!(commit->object.flags & STALE))
47 return 1;
49 return 0;
52 /* all input commits in one and twos[] must have been parsed! */
53 static struct commit_list *paint_down_to_common(struct repository *r,
54 struct commit *one, int n,
55 struct commit **twos,
56 timestamp_t min_generation)
58 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
59 struct commit_list *result = NULL;
60 int i;
61 timestamp_t last_gen = GENERATION_NUMBER_INFINITY;
63 if (!min_generation && !corrected_commit_dates_enabled(r))
64 queue.compare = compare_commits_by_commit_date;
66 one->object.flags |= PARENT1;
67 if (!n) {
68 commit_list_append(one, &result);
69 return result;
71 prio_queue_put(&queue, one);
73 for (i = 0; i < n; i++) {
74 twos[i]->object.flags |= PARENT2;
75 prio_queue_put(&queue, twos[i]);
78 while (queue_has_nonstale(&queue)) {
79 struct commit *commit = prio_queue_get(&queue);
80 struct commit_list *parents;
81 int flags;
82 timestamp_t generation = commit_graph_generation(commit);
84 if (min_generation && generation > last_gen)
85 BUG("bad generation skip %"PRItime" > %"PRItime" at %s",
86 generation, last_gen,
87 oid_to_hex(&commit->object.oid));
88 last_gen = generation;
90 if (generation < min_generation)
91 break;
93 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
94 if (flags == (PARENT1 | PARENT2)) {
95 if (!(commit->object.flags & RESULT)) {
96 commit->object.flags |= RESULT;
97 commit_list_insert_by_date(commit, &result);
99 /* Mark parents of a found merge stale */
100 flags |= STALE;
102 parents = commit->parents;
103 while (parents) {
104 struct commit *p = parents->item;
105 parents = parents->next;
106 if ((p->object.flags & flags) == flags)
107 continue;
108 if (repo_parse_commit(r, p))
109 return NULL;
110 p->object.flags |= flags;
111 prio_queue_put(&queue, p);
115 clear_prio_queue(&queue);
116 return result;
119 static struct commit_list *merge_bases_many(struct repository *r,
120 struct commit *one, int n,
121 struct commit **twos)
123 struct commit_list *list = NULL;
124 struct commit_list *result = NULL;
125 int i;
127 for (i = 0; i < n; i++) {
128 if (one == twos[i])
130 * We do not mark this even with RESULT so we do not
131 * have to clean it up.
133 return commit_list_insert(one, &result);
136 if (repo_parse_commit(r, one))
137 return NULL;
138 for (i = 0; i < n; i++) {
139 if (repo_parse_commit(r, twos[i]))
140 return NULL;
143 list = paint_down_to_common(r, one, n, twos, 0);
145 while (list) {
146 struct commit *commit = pop_commit(&list);
147 if (!(commit->object.flags & STALE))
148 commit_list_insert_by_date(commit, &result);
150 return result;
153 struct commit_list *get_octopus_merge_bases(struct commit_list *in)
155 struct commit_list *i, *j, *k, *ret = NULL;
157 if (!in)
158 return ret;
160 commit_list_insert(in->item, &ret);
162 for (i = in->next; i; i = i->next) {
163 struct commit_list *new_commits = NULL, *end = NULL;
165 for (j = ret; j; j = j->next) {
166 struct commit_list *bases;
167 bases = repo_get_merge_bases(the_repository, i->item,
168 j->item);
169 if (!new_commits)
170 new_commits = bases;
171 else
172 end->next = bases;
173 for (k = bases; k; k = k->next)
174 end = k;
176 ret = new_commits;
178 return ret;
181 static int remove_redundant_no_gen(struct repository *r,
182 struct commit **array, int cnt)
184 struct commit **work;
185 unsigned char *redundant;
186 int *filled_index;
187 int i, j, filled;
189 CALLOC_ARRAY(work, cnt);
190 redundant = xcalloc(cnt, 1);
191 ALLOC_ARRAY(filled_index, cnt - 1);
193 for (i = 0; i < cnt; i++)
194 repo_parse_commit(r, array[i]);
195 for (i = 0; i < cnt; i++) {
196 struct commit_list *common;
197 timestamp_t min_generation = commit_graph_generation(array[i]);
199 if (redundant[i])
200 continue;
201 for (j = filled = 0; j < cnt; j++) {
202 timestamp_t curr_generation;
203 if (i == j || redundant[j])
204 continue;
205 filled_index[filled] = j;
206 work[filled++] = array[j];
208 curr_generation = commit_graph_generation(array[j]);
209 if (curr_generation < min_generation)
210 min_generation = curr_generation;
212 common = paint_down_to_common(r, array[i], filled,
213 work, min_generation);
214 if (array[i]->object.flags & PARENT2)
215 redundant[i] = 1;
216 for (j = 0; j < filled; j++)
217 if (work[j]->object.flags & PARENT1)
218 redundant[filled_index[j]] = 1;
219 clear_commit_marks(array[i], all_flags);
220 clear_commit_marks_many(filled, work, all_flags);
221 free_commit_list(common);
224 /* Now collect the result */
225 COPY_ARRAY(work, array, cnt);
226 for (i = filled = 0; i < cnt; i++)
227 if (!redundant[i])
228 array[filled++] = work[i];
229 free(work);
230 free(redundant);
231 free(filled_index);
232 return filled;
235 static int remove_redundant_with_gen(struct repository *r,
236 struct commit **array, int cnt)
238 int i, count_non_stale = 0, count_still_independent = cnt;
239 timestamp_t min_generation = GENERATION_NUMBER_INFINITY;
240 struct commit **walk_start, **sorted;
241 size_t walk_start_nr = 0, walk_start_alloc = cnt;
242 int min_gen_pos = 0;
245 * Sort the input by generation number, ascending. This allows
246 * us to increase the "min_generation" limit when we discover
247 * the commit with lowest generation is STALE. The index
248 * min_gen_pos points to the current position within 'array'
249 * that is not yet known to be STALE.
251 DUP_ARRAY(sorted, array, cnt);
252 QSORT(sorted, cnt, compare_commits_by_gen);
253 min_generation = commit_graph_generation(sorted[0]);
255 ALLOC_ARRAY(walk_start, walk_start_alloc);
257 /* Mark all parents of the input as STALE */
258 for (i = 0; i < cnt; i++) {
259 struct commit_list *parents;
261 repo_parse_commit(r, array[i]);
262 array[i]->object.flags |= RESULT;
263 parents = array[i]->parents;
265 while (parents) {
266 repo_parse_commit(r, parents->item);
267 if (!(parents->item->object.flags & STALE)) {
268 parents->item->object.flags |= STALE;
269 ALLOC_GROW(walk_start, walk_start_nr + 1, walk_start_alloc);
270 walk_start[walk_start_nr++] = parents->item;
272 parents = parents->next;
276 QSORT(walk_start, walk_start_nr, compare_commits_by_gen);
278 /* remove STALE bit for now to allow walking through parents */
279 for (i = 0; i < walk_start_nr; i++)
280 walk_start[i]->object.flags &= ~STALE;
283 * Start walking from the highest generation. Hopefully, it will
284 * find all other items during the first-parent walk, and we can
285 * terminate early. Otherwise, we will do the same amount of work
286 * as before.
288 for (i = walk_start_nr - 1; i >= 0 && count_still_independent > 1; i--) {
289 /* push the STALE bits up to min generation */
290 struct commit_list *stack = NULL;
292 commit_list_insert(walk_start[i], &stack);
293 walk_start[i]->object.flags |= STALE;
295 while (stack) {
296 struct commit_list *parents;
297 struct commit *c = stack->item;
299 repo_parse_commit(r, c);
301 if (c->object.flags & RESULT) {
302 c->object.flags &= ~RESULT;
303 if (--count_still_independent <= 1)
304 break;
305 if (oideq(&c->object.oid, &sorted[min_gen_pos]->object.oid)) {
306 while (min_gen_pos < cnt - 1 &&
307 (sorted[min_gen_pos]->object.flags & STALE))
308 min_gen_pos++;
309 min_generation = commit_graph_generation(sorted[min_gen_pos]);
313 if (commit_graph_generation(c) < min_generation) {
314 pop_commit(&stack);
315 continue;
318 parents = c->parents;
319 while (parents) {
320 if (!(parents->item->object.flags & STALE)) {
321 parents->item->object.flags |= STALE;
322 commit_list_insert(parents->item, &stack);
323 break;
325 parents = parents->next;
328 /* pop if all parents have been visited already */
329 if (!parents)
330 pop_commit(&stack);
332 free_commit_list(stack);
334 free(sorted);
336 /* clear result */
337 for (i = 0; i < cnt; i++)
338 array[i]->object.flags &= ~RESULT;
340 /* rearrange array */
341 for (i = count_non_stale = 0; i < cnt; i++) {
342 if (!(array[i]->object.flags & STALE))
343 array[count_non_stale++] = array[i];
346 /* clear marks */
347 clear_commit_marks_many(walk_start_nr, walk_start, STALE);
348 free(walk_start);
350 return count_non_stale;
353 static int remove_redundant(struct repository *r, struct commit **array, int cnt)
356 * Some commit in the array may be an ancestor of
357 * another commit. Move the independent commits to the
358 * beginning of 'array' and return their number. Callers
359 * should not rely upon the contents of 'array' after
360 * that number.
362 if (generation_numbers_enabled(r)) {
363 int i;
366 * If we have a single commit with finite generation
367 * number, then the _with_gen algorithm is preferred.
369 for (i = 0; i < cnt; i++) {
370 if (commit_graph_generation(array[i]) < GENERATION_NUMBER_INFINITY)
371 return remove_redundant_with_gen(r, array, cnt);
375 return remove_redundant_no_gen(r, array, cnt);
378 static struct commit_list *get_merge_bases_many_0(struct repository *r,
379 struct commit *one,
380 int n,
381 struct commit **twos,
382 int cleanup)
384 struct commit_list *list;
385 struct commit **rslt;
386 struct commit_list *result;
387 int cnt, i;
389 result = merge_bases_many(r, one, n, twos);
390 for (i = 0; i < n; i++) {
391 if (one == twos[i])
392 return result;
394 if (!result || !result->next) {
395 if (cleanup) {
396 clear_commit_marks(one, all_flags);
397 clear_commit_marks_many(n, twos, all_flags);
399 return result;
402 /* There are more than one */
403 cnt = commit_list_count(result);
404 CALLOC_ARRAY(rslt, cnt);
405 for (list = result, i = 0; list; list = list->next)
406 rslt[i++] = list->item;
407 free_commit_list(result);
409 clear_commit_marks(one, all_flags);
410 clear_commit_marks_many(n, twos, all_flags);
412 cnt = remove_redundant(r, rslt, cnt);
413 result = NULL;
414 for (i = 0; i < cnt; i++)
415 commit_list_insert_by_date(rslt[i], &result);
416 free(rslt);
417 return result;
420 struct commit_list *repo_get_merge_bases_many(struct repository *r,
421 struct commit *one,
422 int n,
423 struct commit **twos)
425 return get_merge_bases_many_0(r, one, n, twos, 1);
428 struct commit_list *repo_get_merge_bases_many_dirty(struct repository *r,
429 struct commit *one,
430 int n,
431 struct commit **twos)
433 return get_merge_bases_many_0(r, one, n, twos, 0);
436 struct commit_list *repo_get_merge_bases(struct repository *r,
437 struct commit *one,
438 struct commit *two)
440 return get_merge_bases_many_0(r, one, 1, &two, 1);
444 * Is "commit" a descendant of one of the elements on the "with_commit" list?
446 int repo_is_descendant_of(struct repository *r,
447 struct commit *commit,
448 struct commit_list *with_commit)
450 if (!with_commit)
451 return 1;
453 if (generation_numbers_enabled(r)) {
454 struct commit_list *from_list = NULL;
455 int result;
456 commit_list_insert(commit, &from_list);
457 result = can_all_from_reach(from_list, with_commit, 0);
458 free_commit_list(from_list);
459 return result;
460 } else {
461 while (with_commit) {
462 struct commit *other;
464 other = with_commit->item;
465 with_commit = with_commit->next;
466 if (repo_in_merge_bases_many(r, other, 1, &commit))
467 return 1;
469 return 0;
474 * Is "commit" an ancestor of one of the "references"?
476 int repo_in_merge_bases_many(struct repository *r, struct commit *commit,
477 int nr_reference, struct commit **reference)
479 struct commit_list *bases;
480 int ret = 0, i;
481 timestamp_t generation, max_generation = GENERATION_NUMBER_ZERO;
483 if (repo_parse_commit(r, commit))
484 return ret;
485 for (i = 0; i < nr_reference; i++) {
486 if (repo_parse_commit(r, reference[i]))
487 return ret;
489 generation = commit_graph_generation(reference[i]);
490 if (generation > max_generation)
491 max_generation = generation;
494 generation = commit_graph_generation(commit);
495 if (generation > max_generation)
496 return ret;
498 bases = paint_down_to_common(r, commit,
499 nr_reference, reference,
500 generation);
501 if (commit->object.flags & PARENT2)
502 ret = 1;
503 clear_commit_marks(commit, all_flags);
504 clear_commit_marks_many(nr_reference, reference, all_flags);
505 free_commit_list(bases);
506 return ret;
510 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
512 int repo_in_merge_bases(struct repository *r,
513 struct commit *commit,
514 struct commit *reference)
516 int res;
517 struct commit_list *list = NULL;
518 struct commit_list **next = &list;
520 next = commit_list_append(commit, next);
521 res = repo_is_descendant_of(r, reference, list);
522 free_commit_list(list);
524 return res;
527 struct commit_list *reduce_heads(struct commit_list *heads)
529 struct commit_list *p;
530 struct commit_list *result = NULL, **tail = &result;
531 struct commit **array;
532 int num_head, i;
534 if (!heads)
535 return NULL;
537 /* Uniquify */
538 for (p = heads; p; p = p->next)
539 p->item->object.flags &= ~STALE;
540 for (p = heads, num_head = 0; p; p = p->next) {
541 if (p->item->object.flags & STALE)
542 continue;
543 p->item->object.flags |= STALE;
544 num_head++;
546 CALLOC_ARRAY(array, num_head);
547 for (p = heads, i = 0; p; p = p->next) {
548 if (p->item->object.flags & STALE) {
549 array[i++] = p->item;
550 p->item->object.flags &= ~STALE;
553 num_head = remove_redundant(the_repository, array, num_head);
554 for (i = 0; i < num_head; i++)
555 tail = &commit_list_insert(array[i], tail)->next;
556 free(array);
557 return result;
560 void reduce_heads_replace(struct commit_list **heads)
562 struct commit_list *result = reduce_heads(*heads);
563 free_commit_list(*heads);
564 *heads = result;
567 int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid)
569 struct object *o;
570 struct commit *old_commit, *new_commit;
571 struct commit_list *old_commit_list = NULL;
572 int ret;
575 * Both new_commit and old_commit must be commit-ish and new_commit is descendant of
576 * old_commit. Otherwise we require --force.
578 o = deref_tag(the_repository, parse_object(the_repository, old_oid),
579 NULL, 0);
580 if (!o || o->type != OBJ_COMMIT)
581 return 0;
582 old_commit = (struct commit *) o;
584 o = deref_tag(the_repository, parse_object(the_repository, new_oid),
585 NULL, 0);
586 if (!o || o->type != OBJ_COMMIT)
587 return 0;
588 new_commit = (struct commit *) o;
590 if (repo_parse_commit(the_repository, new_commit) < 0)
591 return 0;
593 commit_list_insert(old_commit, &old_commit_list);
594 ret = repo_is_descendant_of(the_repository,
595 new_commit, old_commit_list);
596 free_commit_list(old_commit_list);
597 return ret;
601 * Mimicking the real stack, this stack lives on the heap, avoiding stack
602 * overflows.
604 * At each recursion step, the stack items points to the commits whose
605 * ancestors are to be inspected.
607 struct contains_stack {
608 int nr, alloc;
609 struct contains_stack_entry {
610 struct commit *commit;
611 struct commit_list *parents;
612 } *contains_stack;
615 static int in_commit_list(const struct commit_list *want, struct commit *c)
617 for (; want; want = want->next)
618 if (oideq(&want->item->object.oid, &c->object.oid))
619 return 1;
620 return 0;
624 * Test whether the candidate is contained in the list.
625 * Do not recurse to find out, though, but return -1 if inconclusive.
627 static enum contains_result contains_test(struct commit *candidate,
628 const struct commit_list *want,
629 struct contains_cache *cache,
630 timestamp_t cutoff)
632 enum contains_result *cached = contains_cache_at(cache, candidate);
634 /* If we already have the answer cached, return that. */
635 if (*cached)
636 return *cached;
638 /* or are we it? */
639 if (in_commit_list(want, candidate)) {
640 *cached = CONTAINS_YES;
641 return CONTAINS_YES;
644 /* Otherwise, we don't know; prepare to recurse */
645 parse_commit_or_die(candidate);
647 if (commit_graph_generation(candidate) < cutoff)
648 return CONTAINS_NO;
650 return CONTAINS_UNKNOWN;
653 static void push_to_contains_stack(struct commit *candidate, struct contains_stack *contains_stack)
655 ALLOC_GROW(contains_stack->contains_stack, contains_stack->nr + 1, contains_stack->alloc);
656 contains_stack->contains_stack[contains_stack->nr].commit = candidate;
657 contains_stack->contains_stack[contains_stack->nr++].parents = candidate->parents;
660 static enum contains_result contains_tag_algo(struct commit *candidate,
661 const struct commit_list *want,
662 struct contains_cache *cache)
664 struct contains_stack contains_stack = { 0, 0, NULL };
665 enum contains_result result;
666 timestamp_t cutoff = GENERATION_NUMBER_INFINITY;
667 const struct commit_list *p;
669 for (p = want; p; p = p->next) {
670 timestamp_t generation;
671 struct commit *c = p->item;
672 load_commit_graph_info(the_repository, c);
673 generation = commit_graph_generation(c);
674 if (generation < cutoff)
675 cutoff = generation;
678 result = contains_test(candidate, want, cache, cutoff);
679 if (result != CONTAINS_UNKNOWN)
680 return result;
682 push_to_contains_stack(candidate, &contains_stack);
683 while (contains_stack.nr) {
684 struct contains_stack_entry *entry = &contains_stack.contains_stack[contains_stack.nr - 1];
685 struct commit *commit = entry->commit;
686 struct commit_list *parents = entry->parents;
688 if (!parents) {
689 *contains_cache_at(cache, commit) = CONTAINS_NO;
690 contains_stack.nr--;
693 * If we just popped the stack, parents->item has been marked,
694 * therefore contains_test will return a meaningful yes/no.
696 else switch (contains_test(parents->item, want, cache, cutoff)) {
697 case CONTAINS_YES:
698 *contains_cache_at(cache, commit) = CONTAINS_YES;
699 contains_stack.nr--;
700 break;
701 case CONTAINS_NO:
702 entry->parents = parents->next;
703 break;
704 case CONTAINS_UNKNOWN:
705 push_to_contains_stack(parents->item, &contains_stack);
706 break;
709 free(contains_stack.contains_stack);
710 return contains_test(candidate, want, cache, cutoff);
713 int commit_contains(struct ref_filter *filter, struct commit *commit,
714 struct commit_list *list, struct contains_cache *cache)
716 if (filter->with_commit_tag_algo)
717 return contains_tag_algo(commit, list, cache) == CONTAINS_YES;
718 return repo_is_descendant_of(the_repository, commit, list);
721 int can_all_from_reach_with_flag(struct object_array *from,
722 unsigned int with_flag,
723 unsigned int assign_flag,
724 time_t min_commit_date,
725 timestamp_t min_generation)
727 struct commit **list = NULL;
728 int i;
729 int nr_commits;
730 int result = 1;
732 ALLOC_ARRAY(list, from->nr);
733 nr_commits = 0;
734 for (i = 0; i < from->nr; i++) {
735 struct object *from_one = from->objects[i].item;
737 if (!from_one || from_one->flags & assign_flag)
738 continue;
740 from_one = deref_tag(the_repository, from_one,
741 "a from object", 0);
742 if (!from_one || from_one->type != OBJ_COMMIT) {
744 * no way to tell if this is reachable by
745 * looking at the ancestry chain alone, so
746 * leave a note to ourselves not to worry about
747 * this object anymore.
749 from->objects[i].item->flags |= assign_flag;
750 continue;
753 list[nr_commits] = (struct commit *)from_one;
754 if (repo_parse_commit(the_repository, list[nr_commits]) ||
755 commit_graph_generation(list[nr_commits]) < min_generation) {
756 result = 0;
757 goto cleanup;
760 nr_commits++;
763 QSORT(list, nr_commits, compare_commits_by_gen);
765 for (i = 0; i < nr_commits; i++) {
766 /* DFS from list[i] */
767 struct commit_list *stack = NULL;
769 list[i]->object.flags |= assign_flag;
770 commit_list_insert(list[i], &stack);
772 while (stack) {
773 struct commit_list *parent;
775 if (stack->item->object.flags & (with_flag | RESULT)) {
776 pop_commit(&stack);
777 if (stack)
778 stack->item->object.flags |= RESULT;
779 continue;
782 for (parent = stack->item->parents; parent; parent = parent->next) {
783 if (parent->item->object.flags & (with_flag | RESULT))
784 stack->item->object.flags |= RESULT;
786 if (!(parent->item->object.flags & assign_flag)) {
787 parent->item->object.flags |= assign_flag;
789 if (repo_parse_commit(the_repository, parent->item) ||
790 parent->item->date < min_commit_date ||
791 commit_graph_generation(parent->item) < min_generation)
792 continue;
794 commit_list_insert(parent->item, &stack);
795 break;
799 if (!parent)
800 pop_commit(&stack);
803 if (!(list[i]->object.flags & (with_flag | RESULT))) {
804 result = 0;
805 goto cleanup;
809 cleanup:
810 clear_commit_marks_many(nr_commits, list, RESULT | assign_flag);
811 free(list);
813 for (i = 0; i < from->nr; i++) {
814 struct object *from_one = from->objects[i].item;
816 if (from_one)
817 from_one->flags &= ~assign_flag;
820 return result;
823 int can_all_from_reach(struct commit_list *from, struct commit_list *to,
824 int cutoff_by_min_date)
826 struct object_array from_objs = OBJECT_ARRAY_INIT;
827 time_t min_commit_date = cutoff_by_min_date ? from->item->date : 0;
828 struct commit_list *from_iter = from, *to_iter = to;
829 int result;
830 timestamp_t min_generation = GENERATION_NUMBER_INFINITY;
832 while (from_iter) {
833 add_object_array(&from_iter->item->object, NULL, &from_objs);
835 if (!repo_parse_commit(the_repository, from_iter->item)) {
836 timestamp_t generation;
837 if (from_iter->item->date < min_commit_date)
838 min_commit_date = from_iter->item->date;
840 generation = commit_graph_generation(from_iter->item);
841 if (generation < min_generation)
842 min_generation = generation;
845 from_iter = from_iter->next;
848 while (to_iter) {
849 if (!repo_parse_commit(the_repository, to_iter->item)) {
850 timestamp_t generation;
851 if (to_iter->item->date < min_commit_date)
852 min_commit_date = to_iter->item->date;
854 generation = commit_graph_generation(to_iter->item);
855 if (generation < min_generation)
856 min_generation = generation;
859 to_iter->item->object.flags |= PARENT2;
861 to_iter = to_iter->next;
864 result = can_all_from_reach_with_flag(&from_objs, PARENT2, PARENT1,
865 min_commit_date, min_generation);
867 while (from) {
868 clear_commit_marks(from->item, PARENT1);
869 from = from->next;
872 while (to) {
873 clear_commit_marks(to->item, PARENT2);
874 to = to->next;
877 object_array_clear(&from_objs);
878 return result;
881 struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
882 struct commit **to, int nr_to,
883 unsigned int reachable_flag)
885 struct commit **item;
886 struct commit *current;
887 struct commit_list *found_commits = NULL;
888 struct commit **to_last = to + nr_to;
889 struct commit **from_last = from + nr_from;
890 timestamp_t min_generation = GENERATION_NUMBER_INFINITY;
891 int num_to_find = 0;
893 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
895 for (item = to; item < to_last; item++) {
896 timestamp_t generation;
897 struct commit *c = *item;
899 repo_parse_commit(the_repository, c);
900 generation = commit_graph_generation(c);
901 if (generation < min_generation)
902 min_generation = generation;
904 if (!(c->object.flags & PARENT1)) {
905 c->object.flags |= PARENT1;
906 num_to_find++;
910 for (item = from; item < from_last; item++) {
911 struct commit *c = *item;
912 if (!(c->object.flags & PARENT2)) {
913 c->object.flags |= PARENT2;
914 repo_parse_commit(the_repository, c);
916 prio_queue_put(&queue, *item);
920 while (num_to_find && (current = prio_queue_get(&queue)) != NULL) {
921 struct commit_list *parents;
923 if (current->object.flags & PARENT1) {
924 current->object.flags &= ~PARENT1;
925 current->object.flags |= reachable_flag;
926 commit_list_insert(current, &found_commits);
927 num_to_find--;
930 for (parents = current->parents; parents; parents = parents->next) {
931 struct commit *p = parents->item;
933 repo_parse_commit(the_repository, p);
935 if (commit_graph_generation(p) < min_generation)
936 continue;
938 if (p->object.flags & PARENT2)
939 continue;
941 p->object.flags |= PARENT2;
942 prio_queue_put(&queue, p);
946 clear_commit_marks_many(nr_to, to, PARENT1);
947 clear_commit_marks_many(nr_from, from, PARENT2);
949 return found_commits;