]> git.ipfire.org Git - thirdparty/git.git/blame - commit-reach.c
Merge branch 'ak/commit-graph-to-slab'
[thirdparty/git.git] / commit-reach.c
CommitLineData
5227c385 1#include "cache.h"
5227c385 2#include "commit.h"
920f93ca 3#include "commit-graph.h"
1d614d41
DS
4#include "decorate.h"
5#include "prio-queue.h"
6#include "tree.h"
6621c838 7#include "ref-filter.h"
1d614d41
DS
8#include "revision.h"
9#include "tag.h"
5227c385
DS
10#include "commit-reach.h"
11
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)
17
18static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
19
20static int queue_has_nonstale(struct prio_queue *queue)
21{
22 int i;
23 for (i = 0; i < queue->nr; i++) {
24 struct commit *commit = queue->array[i].data;
25 if (!(commit->object.flags & STALE))
26 return 1;
27 }
28 return 0;
29}
30
31/* all input commits in one and twos[] must have been parsed! */
c383830a
SB
32static struct commit_list *paint_down_to_common(struct repository *r,
33 struct commit *one, int n,
5227c385
DS
34 struct commit **twos,
35 int min_generation)
36{
37 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
38 struct commit_list *result = NULL;
39 int i;
40 uint32_t last_gen = GENERATION_NUMBER_INFINITY;
41
1b7a91da
JH
42 if (!min_generation)
43 queue.compare = compare_commits_by_commit_date;
44
5227c385
DS
45 one->object.flags |= PARENT1;
46 if (!n) {
47 commit_list_append(one, &result);
48 return result;
49 }
50 prio_queue_put(&queue, one);
51
52 for (i = 0; i < n; i++) {
53 twos[i]->object.flags |= PARENT2;
54 prio_queue_put(&queue, twos[i]);
55 }
56
57 while (queue_has_nonstale(&queue)) {
58 struct commit *commit = prio_queue_get(&queue);
59 struct commit_list *parents;
60 int flags;
c752ad09 61 uint32_t generation = commit_graph_generation(commit);
5227c385 62
c752ad09 63 if (min_generation && generation > last_gen)
5227c385 64 BUG("bad generation skip %8x > %8x at %s",
c752ad09 65 generation, last_gen,
5227c385 66 oid_to_hex(&commit->object.oid));
c752ad09 67 last_gen = generation;
5227c385 68
c752ad09 69 if (generation < min_generation)
5227c385
DS
70 break;
71
72 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
73 if (flags == (PARENT1 | PARENT2)) {
74 if (!(commit->object.flags & RESULT)) {
75 commit->object.flags |= RESULT;
76 commit_list_insert_by_date(commit, &result);
77 }
78 /* Mark parents of a found merge stale */
79 flags |= STALE;
80 }
81 parents = commit->parents;
82 while (parents) {
83 struct commit *p = parents->item;
84 parents = parents->next;
85 if ((p->object.flags & flags) == flags)
86 continue;
c383830a 87 if (repo_parse_commit(r, p))
5227c385
DS
88 return NULL;
89 p->object.flags |= flags;
90 prio_queue_put(&queue, p);
91 }
92 }
93
94 clear_prio_queue(&queue);
95 return result;
96}
97
18256a91
SB
98static struct commit_list *merge_bases_many(struct repository *r,
99 struct commit *one, int n,
100 struct commit **twos)
5227c385
DS
101{
102 struct commit_list *list = NULL;
103 struct commit_list *result = NULL;
104 int i;
105
106 for (i = 0; i < n; i++) {
107 if (one == twos[i])
108 /*
109 * We do not mark this even with RESULT so we do not
110 * have to clean it up.
111 */
112 return commit_list_insert(one, &result);
113 }
114
18256a91 115 if (repo_parse_commit(r, one))
5227c385
DS
116 return NULL;
117 for (i = 0; i < n; i++) {
18256a91 118 if (repo_parse_commit(r, twos[i]))
5227c385
DS
119 return NULL;
120 }
121
18256a91 122 list = paint_down_to_common(r, one, n, twos, 0);
5227c385
DS
123
124 while (list) {
125 struct commit *commit = pop_commit(&list);
126 if (!(commit->object.flags & STALE))
127 commit_list_insert_by_date(commit, &result);
128 }
129 return result;
130}
131
132struct commit_list *get_octopus_merge_bases(struct commit_list *in)
133{
134 struct commit_list *i, *j, *k, *ret = NULL;
135
136 if (!in)
137 return ret;
138
139 commit_list_insert(in->item, &ret);
140
141 for (i = in->next; i; i = i->next) {
142 struct commit_list *new_commits = NULL, *end = NULL;
143
144 for (j = ret; j; j = j->next) {
145 struct commit_list *bases;
146 bases = get_merge_bases(i->item, j->item);
147 if (!new_commits)
148 new_commits = bases;
149 else
150 end->next = bases;
151 for (k = bases; k; k = k->next)
152 end = k;
153 }
154 ret = new_commits;
155 }
156 return ret;
157}
158
ed8a0e3a 159static int remove_redundant(struct repository *r, struct commit **array, int cnt)
5227c385
DS
160{
161 /*
162 * Some commit in the array may be an ancestor of
163 * another commit. Move such commit to the end of
164 * the array, and return the number of commits that
165 * are independent from each other.
166 */
167 struct commit **work;
168 unsigned char *redundant;
169 int *filled_index;
170 int i, j, filled;
171
172 work = xcalloc(cnt, sizeof(*work));
173 redundant = xcalloc(cnt, 1);
174 ALLOC_ARRAY(filled_index, cnt - 1);
175
176 for (i = 0; i < cnt; i++)
ed8a0e3a 177 repo_parse_commit(r, array[i]);
5227c385
DS
178 for (i = 0; i < cnt; i++) {
179 struct commit_list *common;
c49c82aa 180 uint32_t min_generation = commit_graph_generation(array[i]);
5227c385
DS
181
182 if (redundant[i])
183 continue;
184 for (j = filled = 0; j < cnt; j++) {
c752ad09 185 uint32_t curr_generation;
5227c385
DS
186 if (i == j || redundant[j])
187 continue;
188 filled_index[filled] = j;
189 work[filled++] = array[j];
190
c752ad09
AK
191 curr_generation = commit_graph_generation(array[j]);
192 if (curr_generation < min_generation)
193 min_generation = curr_generation;
5227c385 194 }
ed8a0e3a 195 common = paint_down_to_common(r, array[i], filled,
c383830a 196 work, min_generation);
5227c385
DS
197 if (array[i]->object.flags & PARENT2)
198 redundant[i] = 1;
199 for (j = 0; j < filled; j++)
200 if (work[j]->object.flags & PARENT1)
201 redundant[filled_index[j]] = 1;
202 clear_commit_marks(array[i], all_flags);
203 clear_commit_marks_many(filled, work, all_flags);
204 free_commit_list(common);
205 }
206
207 /* Now collect the result */
208 COPY_ARRAY(work, array, cnt);
209 for (i = filled = 0; i < cnt; i++)
210 if (!redundant[i])
211 array[filled++] = work[i];
212 for (j = filled, i = 0; i < cnt; i++)
213 if (redundant[i])
214 array[j++] = work[i];
215 free(work);
216 free(redundant);
217 free(filled_index);
218 return filled;
219}
220
f28e87f5
SB
221static struct commit_list *get_merge_bases_many_0(struct repository *r,
222 struct commit *one,
5227c385
DS
223 int n,
224 struct commit **twos,
225 int cleanup)
226{
227 struct commit_list *list;
228 struct commit **rslt;
229 struct commit_list *result;
230 int cnt, i;
231
f28e87f5 232 result = merge_bases_many(r, one, n, twos);
5227c385
DS
233 for (i = 0; i < n; i++) {
234 if (one == twos[i])
235 return result;
236 }
237 if (!result || !result->next) {
238 if (cleanup) {
239 clear_commit_marks(one, all_flags);
240 clear_commit_marks_many(n, twos, all_flags);
241 }
242 return result;
243 }
244
245 /* There are more than one */
246 cnt = commit_list_count(result);
247 rslt = xcalloc(cnt, sizeof(*rslt));
248 for (list = result, i = 0; list; list = list->next)
249 rslt[i++] = list->item;
250 free_commit_list(result);
251
252 clear_commit_marks(one, all_flags);
253 clear_commit_marks_many(n, twos, all_flags);
254
f28e87f5 255 cnt = remove_redundant(r, rslt, cnt);
5227c385
DS
256 result = NULL;
257 for (i = 0; i < cnt; i++)
258 commit_list_insert_by_date(rslt[i], &result);
259 free(rslt);
260 return result;
261}
262
21a9651b
SB
263struct commit_list *repo_get_merge_bases_many(struct repository *r,
264 struct commit *one,
265 int n,
266 struct commit **twos)
5227c385 267{
21a9651b 268 return get_merge_bases_many_0(r, one, n, twos, 1);
5227c385
DS
269}
270
21a9651b
SB
271struct commit_list *repo_get_merge_bases_many_dirty(struct repository *r,
272 struct commit *one,
273 int n,
274 struct commit **twos)
5227c385 275{
21a9651b 276 return get_merge_bases_many_0(r, one, n, twos, 0);
5227c385
DS
277}
278
21a9651b
SB
279struct commit_list *repo_get_merge_bases(struct repository *r,
280 struct commit *one,
281 struct commit *two)
5227c385 282{
21a9651b 283 return get_merge_bases_many_0(r, one, 1, &two, 1);
5227c385
DS
284}
285
286/*
287 * Is "commit" a descendant of one of the elements on the "with_commit" list?
288 */
d91d6fbf
DS
289static int repo_is_descendant_of(struct repository *r,
290 struct commit *commit,
291 struct commit_list *with_commit)
5227c385
DS
292{
293 if (!with_commit)
294 return 1;
5227c385 295
6cc01743
DS
296 if (generation_numbers_enabled(the_repository)) {
297 struct commit_list *from_list = NULL;
298 int result;
299 commit_list_insert(commit, &from_list);
300 result = can_all_from_reach(from_list, with_commit, 0);
301 free_commit_list(from_list);
302 return result;
303 } else {
304 while (with_commit) {
305 struct commit *other;
306
307 other = with_commit->item;
308 with_commit = with_commit->next;
80b8ada5 309 if (repo_in_merge_bases_many(r, other, 1, &commit))
6cc01743
DS
310 return 1;
311 }
312 return 0;
5227c385 313 }
5227c385
DS
314}
315
d91d6fbf
DS
316int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
317{
318 return repo_is_descendant_of(the_repository, commit, with_commit);
319}
320
5227c385
DS
321/*
322 * Is "commit" an ancestor of one of the "references"?
323 */
4d5430f7
SB
324int repo_in_merge_bases_many(struct repository *r, struct commit *commit,
325 int nr_reference, struct commit **reference)
5227c385
DS
326{
327 struct commit_list *bases;
328 int ret = 0, i;
c752ad09 329 uint32_t generation, min_generation = GENERATION_NUMBER_INFINITY;
5227c385 330
4d5430f7 331 if (repo_parse_commit(r, commit))
5227c385
DS
332 return ret;
333 for (i = 0; i < nr_reference; i++) {
4d5430f7 334 if (repo_parse_commit(r, reference[i]))
5227c385 335 return ret;
c752ad09
AK
336
337 generation = commit_graph_generation(reference[i]);
338 if (generation < min_generation)
339 min_generation = generation;
5227c385
DS
340 }
341
c752ad09
AK
342 generation = commit_graph_generation(commit);
343 if (generation > min_generation)
5227c385
DS
344 return ret;
345
4d5430f7 346 bases = paint_down_to_common(r, commit,
c383830a 347 nr_reference, reference,
c752ad09 348 generation);
5227c385
DS
349 if (commit->object.flags & PARENT2)
350 ret = 1;
351 clear_commit_marks(commit, all_flags);
352 clear_commit_marks_many(nr_reference, reference, all_flags);
353 free_commit_list(bases);
354 return ret;
355}
356
357/*
358 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
359 */
4d5430f7
SB
360int repo_in_merge_bases(struct repository *r,
361 struct commit *commit,
362 struct commit *reference)
5227c385 363{
80b8ada5
DS
364 int res;
365 struct commit_list *list = NULL;
366 struct commit_list **next = &list;
367
368 next = commit_list_append(commit, next);
369 res = repo_is_descendant_of(r, reference, list);
370 free_commit_list(list);
371
372 return res;
5227c385
DS
373}
374
375struct commit_list *reduce_heads(struct commit_list *heads)
376{
377 struct commit_list *p;
378 struct commit_list *result = NULL, **tail = &result;
379 struct commit **array;
380 int num_head, i;
381
382 if (!heads)
383 return NULL;
384
385 /* Uniquify */
386 for (p = heads; p; p = p->next)
387 p->item->object.flags &= ~STALE;
388 for (p = heads, num_head = 0; p; p = p->next) {
389 if (p->item->object.flags & STALE)
390 continue;
391 p->item->object.flags |= STALE;
392 num_head++;
393 }
394 array = xcalloc(num_head, sizeof(*array));
395 for (p = heads, i = 0; p; p = p->next) {
396 if (p->item->object.flags & STALE) {
397 array[i++] = p->item;
398 p->item->object.flags &= ~STALE;
399 }
400 }
ed8a0e3a 401 num_head = remove_redundant(the_repository, array, num_head);
5227c385
DS
402 for (i = 0; i < num_head; i++)
403 tail = &commit_list_insert(array[i], tail)->next;
404 free(array);
405 return result;
406}
407
408void reduce_heads_replace(struct commit_list **heads)
409{
410 struct commit_list *result = reduce_heads(*heads);
411 free_commit_list(*heads);
412 *heads = result;
413}
1d614d41 414
1d614d41
DS
415int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid)
416{
417 struct object *o;
418 struct commit *old_commit, *new_commit;
1e3497a2 419 struct commit_list *old_commit_list = NULL;
d546fe28 420 int ret;
1d614d41
DS
421
422 /*
423 * Both new_commit and old_commit must be commit-ish and new_commit is descendant of
424 * old_commit. Otherwise we require --force.
425 */
426 o = deref_tag(the_repository, parse_object(the_repository, old_oid),
427 NULL, 0);
428 if (!o || o->type != OBJ_COMMIT)
429 return 0;
430 old_commit = (struct commit *) o;
431
432 o = deref_tag(the_repository, parse_object(the_repository, new_oid),
433 NULL, 0);
434 if (!o || o->type != OBJ_COMMIT)
435 return 0;
436 new_commit = (struct commit *) o;
437
438 if (parse_commit(new_commit) < 0)
439 return 0;
440
1e3497a2 441 commit_list_insert(old_commit, &old_commit_list);
d546fe28
RS
442 ret = is_descendant_of(new_commit, old_commit_list);
443 free_commit_list(old_commit_list);
444 return ret;
1d614d41 445}
920f93ca
DS
446
447/*
448 * Mimicking the real stack, this stack lives on the heap, avoiding stack
449 * overflows.
450 *
451 * At each recursion step, the stack items points to the commits whose
452 * ancestors are to be inspected.
453 */
454struct contains_stack {
455 int nr, alloc;
456 struct contains_stack_entry {
457 struct commit *commit;
458 struct commit_list *parents;
459 } *contains_stack;
460};
461
462static int in_commit_list(const struct commit_list *want, struct commit *c)
463{
464 for (; want; want = want->next)
e43d2dcc 465 if (oideq(&want->item->object.oid, &c->object.oid))
920f93ca
DS
466 return 1;
467 return 0;
468}
469
470/*
471 * Test whether the candidate is contained in the list.
472 * Do not recurse to find out, though, but return -1 if inconclusive.
473 */
474static enum contains_result contains_test(struct commit *candidate,
475 const struct commit_list *want,
476 struct contains_cache *cache,
477 uint32_t cutoff)
478{
479 enum contains_result *cached = contains_cache_at(cache, candidate);
480
481 /* If we already have the answer cached, return that. */
482 if (*cached)
483 return *cached;
484
485 /* or are we it? */
486 if (in_commit_list(want, candidate)) {
487 *cached = CONTAINS_YES;
488 return CONTAINS_YES;
489 }
490
491 /* Otherwise, we don't know; prepare to recurse */
492 parse_commit_or_die(candidate);
493
c49c82aa 494 if (commit_graph_generation(candidate) < cutoff)
920f93ca
DS
495 return CONTAINS_NO;
496
497 return CONTAINS_UNKNOWN;
498}
499
500static void push_to_contains_stack(struct commit *candidate, struct contains_stack *contains_stack)
501{
502 ALLOC_GROW(contains_stack->contains_stack, contains_stack->nr + 1, contains_stack->alloc);
503 contains_stack->contains_stack[contains_stack->nr].commit = candidate;
504 contains_stack->contains_stack[contains_stack->nr++].parents = candidate->parents;
505}
506
507static enum contains_result contains_tag_algo(struct commit *candidate,
508 const struct commit_list *want,
509 struct contains_cache *cache)
510{
511 struct contains_stack contains_stack = { 0, 0, NULL };
512 enum contains_result result;
513 uint32_t cutoff = GENERATION_NUMBER_INFINITY;
514 const struct commit_list *p;
515
516 for (p = want; p; p = p->next) {
c752ad09 517 uint32_t generation;
920f93ca
DS
518 struct commit *c = p->item;
519 load_commit_graph_info(the_repository, c);
c752ad09
AK
520 generation = commit_graph_generation(c);
521 if (generation < cutoff)
522 cutoff = generation;
920f93ca
DS
523 }
524
525 result = contains_test(candidate, want, cache, cutoff);
526 if (result != CONTAINS_UNKNOWN)
527 return result;
528
529 push_to_contains_stack(candidate, &contains_stack);
530 while (contains_stack.nr) {
531 struct contains_stack_entry *entry = &contains_stack.contains_stack[contains_stack.nr - 1];
532 struct commit *commit = entry->commit;
533 struct commit_list *parents = entry->parents;
534
535 if (!parents) {
536 *contains_cache_at(cache, commit) = CONTAINS_NO;
537 contains_stack.nr--;
538 }
539 /*
540 * If we just popped the stack, parents->item has been marked,
541 * therefore contains_test will return a meaningful yes/no.
542 */
543 else switch (contains_test(parents->item, want, cache, cutoff)) {
544 case CONTAINS_YES:
545 *contains_cache_at(cache, commit) = CONTAINS_YES;
546 contains_stack.nr--;
547 break;
548 case CONTAINS_NO:
549 entry->parents = parents->next;
550 break;
551 case CONTAINS_UNKNOWN:
552 push_to_contains_stack(parents->item, &contains_stack);
553 break;
554 }
555 }
556 free(contains_stack.contains_stack);
557 return contains_test(candidate, want, cache, cutoff);
558}
559
560int commit_contains(struct ref_filter *filter, struct commit *commit,
561 struct commit_list *list, struct contains_cache *cache)
562{
563 if (filter->with_commit_tag_algo)
564 return contains_tag_algo(commit, list, cache) == CONTAINS_YES;
565 return is_descendant_of(commit, list);
566}
ba3ca1ed 567
4fbcca4e 568static int compare_commits_by_gen(const void *_a, const void *_b)
ba3ca1ed 569{
8628ace2
RS
570 const struct commit *a = *(const struct commit * const *)_a;
571 const struct commit *b = *(const struct commit * const *)_b;
ba3ca1ed 572
c752ad09
AK
573 uint32_t generation_a = commit_graph_generation(a);
574 uint32_t generation_b = commit_graph_generation(b);
575
576 if (generation_a < generation_b)
4fbcca4e 577 return -1;
c752ad09 578 if (generation_a > generation_b)
4fbcca4e
DS
579 return 1;
580 return 0;
ba3ca1ed
DS
581}
582
583int can_all_from_reach_with_flag(struct object_array *from,
584 unsigned int with_flag,
585 unsigned int assign_flag,
4fbcca4e
DS
586 time_t min_commit_date,
587 uint32_t min_generation)
ba3ca1ed 588{
4fbcca4e 589 struct commit **list = NULL;
ba3ca1ed 590 int i;
b67f6b26 591 int nr_commits;
4fbcca4e 592 int result = 1;
ba3ca1ed 593
4fbcca4e 594 ALLOC_ARRAY(list, from->nr);
b67f6b26 595 nr_commits = 0;
ba3ca1ed 596 for (i = 0; i < from->nr; i++) {
b67f6b26 597 struct object *from_one = from->objects[i].item;
ba3ca1ed 598
b67f6b26
DS
599 if (!from_one || from_one->flags & assign_flag)
600 continue;
601
602 from_one = deref_tag(the_repository, from_one,
603 "a from object", 0);
604 if (!from_one || from_one->type != OBJ_COMMIT) {
85806440
DS
605 /*
606 * no way to tell if this is reachable by
b67f6b26
DS
607 * looking at the ancestry chain alone, so
608 * leave a note to ourselves not to worry about
609 * this object anymore.
610 */
611 from->objects[i].item->flags |= assign_flag;
612 continue;
613 }
614
615 list[nr_commits] = (struct commit *)from_one;
616 if (parse_commit(list[nr_commits]) ||
c49c82aa 617 commit_graph_generation(list[nr_commits]) < min_generation) {
b67f6b26
DS
618 result = 0;
619 goto cleanup;
620 }
621
622 nr_commits++;
ba3ca1ed 623 }
4fbcca4e 624
b67f6b26 625 QSORT(list, nr_commits, compare_commits_by_gen);
4fbcca4e 626
b67f6b26 627 for (i = 0; i < nr_commits; i++) {
4fbcca4e
DS
628 /* DFS from list[i] */
629 struct commit_list *stack = NULL;
630
631 list[i]->object.flags |= assign_flag;
632 commit_list_insert(list[i], &stack);
633
634 while (stack) {
635 struct commit_list *parent;
636
b6723e46 637 if (stack->item->object.flags & (with_flag | RESULT)) {
4fbcca4e 638 pop_commit(&stack);
b6723e46
DS
639 if (stack)
640 stack->item->object.flags |= RESULT;
4fbcca4e
DS
641 continue;
642 }
643
644 for (parent = stack->item->parents; parent; parent = parent->next) {
645 if (parent->item->object.flags & (with_flag | RESULT))
646 stack->item->object.flags |= RESULT;
647
648 if (!(parent->item->object.flags & assign_flag)) {
649 parent->item->object.flags |= assign_flag;
650
651 if (parse_commit(parent->item) ||
652 parent->item->date < min_commit_date ||
c49c82aa 653 commit_graph_generation(parent->item) < min_generation)
4fbcca4e
DS
654 continue;
655
656 commit_list_insert(parent->item, &stack);
657 break;
658 }
659 }
660
661 if (!parent)
662 pop_commit(&stack);
663 }
664
665 if (!(list[i]->object.flags & (with_flag | RESULT))) {
666 result = 0;
667 goto cleanup;
668 }
669 }
670
671cleanup:
85806440 672 clear_commit_marks_many(nr_commits, list, RESULT | assign_flag);
4067a646
DS
673 free(list);
674
675 for (i = 0; i < from->nr; i++)
676 from->objects[i].item->flags &= ~assign_flag;
677
4fbcca4e 678 return result;
ba3ca1ed 679}
1792bc12
DS
680
681int can_all_from_reach(struct commit_list *from, struct commit_list *to,
682 int cutoff_by_min_date)
683{
684 struct object_array from_objs = OBJECT_ARRAY_INIT;
685 time_t min_commit_date = cutoff_by_min_date ? from->item->date : 0;
686 struct commit_list *from_iter = from, *to_iter = to;
687 int result;
4fbcca4e 688 uint32_t min_generation = GENERATION_NUMBER_INFINITY;
1792bc12
DS
689
690 while (from_iter) {
691 add_object_array(&from_iter->item->object, NULL, &from_objs);
692
693 if (!parse_commit(from_iter->item)) {
c752ad09 694 uint32_t generation;
1792bc12
DS
695 if (from_iter->item->date < min_commit_date)
696 min_commit_date = from_iter->item->date;
4fbcca4e 697
c752ad09
AK
698 generation = commit_graph_generation(from_iter->item);
699 if (generation < min_generation)
700 min_generation = generation;
1792bc12
DS
701 }
702
703 from_iter = from_iter->next;
704 }
705
706 while (to_iter) {
707 if (!parse_commit(to_iter->item)) {
c752ad09 708 uint32_t generation;
1792bc12
DS
709 if (to_iter->item->date < min_commit_date)
710 min_commit_date = to_iter->item->date;
4fbcca4e 711
c752ad09
AK
712 generation = commit_graph_generation(to_iter->item);
713 if (generation < min_generation)
714 min_generation = generation;
1792bc12
DS
715 }
716
717 to_iter->item->object.flags |= PARENT2;
718
719 to_iter = to_iter->next;
720 }
721
722 result = can_all_from_reach_with_flag(&from_objs, PARENT2, PARENT1,
4fbcca4e 723 min_commit_date, min_generation);
1792bc12
DS
724
725 while (from) {
726 clear_commit_marks(from->item, PARENT1);
727 from = from->next;
728 }
729
730 while (to) {
731 clear_commit_marks(to->item, PARENT2);
732 to = to->next;
733 }
734
735 object_array_clear(&from_objs);
736 return result;
737}
fcb2c076
DS
738
739struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
740 struct commit **to, int nr_to,
741 unsigned int reachable_flag)
742{
743 struct commit **item;
744 struct commit *current;
745 struct commit_list *found_commits = NULL;
746 struct commit **to_last = to + nr_to;
747 struct commit **from_last = from + nr_from;
748 uint32_t min_generation = GENERATION_NUMBER_INFINITY;
749 int num_to_find = 0;
750
751 struct prio_queue queue = { compare_commits_by_gen_then_commit_date };
752
753 for (item = to; item < to_last; item++) {
c752ad09 754 uint32_t generation;
fcb2c076
DS
755 struct commit *c = *item;
756
757 parse_commit(c);
c752ad09
AK
758 generation = commit_graph_generation(c);
759 if (generation < min_generation)
760 min_generation = generation;
fcb2c076
DS
761
762 if (!(c->object.flags & PARENT1)) {
763 c->object.flags |= PARENT1;
764 num_to_find++;
765 }
766 }
767
768 for (item = from; item < from_last; item++) {
769 struct commit *c = *item;
770 if (!(c->object.flags & PARENT2)) {
771 c->object.flags |= PARENT2;
772 parse_commit(c);
773
774 prio_queue_put(&queue, *item);
775 }
776 }
777
778 while (num_to_find && (current = prio_queue_get(&queue)) != NULL) {
779 struct commit_list *parents;
780
781 if (current->object.flags & PARENT1) {
782 current->object.flags &= ~PARENT1;
783 current->object.flags |= reachable_flag;
784 commit_list_insert(current, &found_commits);
785 num_to_find--;
786 }
787
788 for (parents = current->parents; parents; parents = parents->next) {
789 struct commit *p = parents->item;
790
791 parse_commit(p);
792
c49c82aa 793 if (commit_graph_generation(p) < min_generation)
fcb2c076
DS
794 continue;
795
796 if (p->object.flags & PARENT2)
797 continue;
798
799 p->object.flags |= PARENT2;
800 prio_queue_put(&queue, p);
801 }
802 }
803
804 clear_commit_marks_many(nr_to, to, PARENT1);
805 clear_commit_marks_many(nr_from, from, PARENT2);
806
807 return found_commits;
808}