]> git.ipfire.org Git - thirdparty/git.git/blame - commit.c
GIT 1.6.5
[thirdparty/git.git] / commit.c
CommitLineData
8f1d2e6f 1#include "cache.h"
961784ee 2#include "tag.h"
175785e5 3#include "commit.h"
ed09aef0 4#include "pkt-line.h"
52883fbd 5#include "utf8.h"
199c45bf
JH
6#include "diff.h"
7#include "revision.h"
175785e5 8
60ab26de
LT
9int save_commit_buffer = 1;
10
175785e5
DB
11const char *commit_type = "commit";
12
f76412ed
JH
13static struct commit *check_commit(struct object *obj,
14 const unsigned char *sha1,
15 int quiet)
961784ee 16{
1974632c 17 if (obj->type != OBJ_COMMIT) {
f76412ed
JH
18 if (!quiet)
19 error("Object %s is a %s, not a commit",
885a86ab 20 sha1_to_hex(sha1), typename(obj->type));
961784ee
LT
21 return NULL;
22 }
23 return (struct commit *) obj;
24}
25
f76412ed
JH
26struct commit *lookup_commit_reference_gently(const unsigned char *sha1,
27 int quiet)
961784ee 28{
9534f40b 29 struct object *obj = deref_tag(parse_object(sha1), NULL, 0);
961784ee
LT
30
31 if (!obj)
32 return NULL;
f76412ed
JH
33 return check_commit(obj, sha1, quiet);
34}
35
36struct commit *lookup_commit_reference(const unsigned char *sha1)
37{
38 return lookup_commit_reference_gently(sha1, 0);
961784ee
LT
39}
40
5d6ccf5c 41struct commit *lookup_commit(const unsigned char *sha1)
175785e5
DB
42{
43 struct object *obj = lookup_object(sha1);
100c5f3b
LT
44 if (!obj)
45 return create_object(sha1, OBJ_COMMIT, alloc_commit_node());
d1af002d 46 if (!obj->type)
1974632c 47 obj->type = OBJ_COMMIT;
f76412ed 48 return check_commit(obj, sha1, 0);
175785e5
DB
49}
50
0a617799 51static unsigned long parse_commit_date(const char *buf, const char *tail)
175785e5 52{
0a617799 53 const char *dateptr;
175785e5 54
0a617799
MK
55 if (buf + 6 >= tail)
56 return 0;
175785e5
DB
57 if (memcmp(buf, "author", 6))
58 return 0;
0a617799 59 while (buf < tail && *buf++ != '\n')
175785e5 60 /* nada */;
0a617799
MK
61 if (buf + 9 >= tail)
62 return 0;
175785e5
DB
63 if (memcmp(buf, "committer", 9))
64 return 0;
0a617799 65 while (buf < tail && *buf++ != '>')
175785e5 66 /* nada */;
0a617799
MK
67 if (buf >= tail)
68 return 0;
69 dateptr = buf;
70 while (buf < tail && *buf++ != '\n')
71 /* nada */;
72 if (buf >= tail)
73 return 0;
74 /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */
f2909743 75 return strtoul(dateptr, NULL, 10);
175785e5
DB
76}
77
5040f17e 78static struct commit_graft **commit_graft;
5da5c8f4
JH
79static int commit_graft_alloc, commit_graft_nr;
80
81static int commit_graft_pos(const unsigned char *sha1)
82{
83 int lo, hi;
84 lo = 0;
85 hi = commit_graft_nr;
86 while (lo < hi) {
87 int mi = (lo + hi) / 2;
88 struct commit_graft *graft = commit_graft[mi];
a89fccd2 89 int cmp = hashcmp(sha1, graft->sha1);
5da5c8f4
JH
90 if (!cmp)
91 return mi;
92 if (cmp < 0)
93 hi = mi;
94 else
95 lo = mi + 1;
96 }
97 return -lo - 1;
98}
99
5040f17e
JH
100int register_commit_graft(struct commit_graft *graft, int ignore_dups)
101{
102 int pos = commit_graft_pos(graft->sha1);
a6080a0a 103
5040f17e
JH
104 if (0 <= pos) {
105 if (ignore_dups)
106 free(graft);
107 else {
108 free(commit_graft[pos]);
109 commit_graft[pos] = graft;
110 }
111 return 1;
112 }
113 pos = -pos - 1;
114 if (commit_graft_alloc <= ++commit_graft_nr) {
115 commit_graft_alloc = alloc_nr(commit_graft_alloc);
116 commit_graft = xrealloc(commit_graft,
117 sizeof(*commit_graft) *
118 commit_graft_alloc);
119 }
120 if (pos < commit_graft_nr)
121 memmove(commit_graft + pos + 1,
122 commit_graft + pos,
123 (commit_graft_nr - pos - 1) *
124 sizeof(*commit_graft));
125 commit_graft[pos] = graft;
126 return 0;
127}
128
129struct commit_graft *read_graft_line(char *buf, int len)
130{
131 /* The format is just "Commit Parent1 Parent2 ...\n" */
132 int i;
133 struct commit_graft *graft = NULL;
134
135 if (buf[len-1] == '\n')
136 buf[--len] = 0;
360204c3 137 if (buf[0] == '#' || buf[0] == '\0')
5bc4ce58 138 return NULL;
5040f17e
JH
139 if ((len + 1) % 41) {
140 bad_graft_data:
141 error("bad graft data: %s", buf);
142 free(graft);
143 return NULL;
144 }
145 i = (len + 1) / 41 - 1;
146 graft = xmalloc(sizeof(*graft) + 20 * i);
147 graft->nr_parent = i;
148 if (get_sha1_hex(buf, graft->sha1))
149 goto bad_graft_data;
150 for (i = 40; i < len; i += 41) {
151 if (buf[i] != ' ')
152 goto bad_graft_data;
153 if (get_sha1_hex(buf + i + 1, graft->parent[i/41]))
154 goto bad_graft_data;
155 }
156 return graft;
157}
158
c5ae6439 159static int read_graft_file(const char *graft_file)
5da5c8f4 160{
5da5c8f4
JH
161 FILE *fp = fopen(graft_file, "r");
162 char buf[1024];
5040f17e
JH
163 if (!fp)
164 return -1;
5da5c8f4
JH
165 while (fgets(buf, sizeof(buf), fp)) {
166 /* The format is just "Commit Parent1 Parent2 ...\n" */
167 int len = strlen(buf);
5040f17e 168 struct commit_graft *graft = read_graft_line(buf, len);
5bc4ce58
JH
169 if (!graft)
170 continue;
5040f17e 171 if (register_commit_graft(graft, 1))
5da5c8f4 172 error("duplicate graft data: %s", buf);
5da5c8f4
JH
173 }
174 fclose(fp);
5040f17e
JH
175 return 0;
176}
177
178static void prepare_commit_graft(void)
179{
180 static int commit_graft_prepared;
181 char *graft_file;
182
183 if (commit_graft_prepared)
184 return;
185 graft_file = get_graft_file();
186 read_graft_file(graft_file);
ed09aef0
JS
187 /* make sure shallows are read */
188 is_repository_shallow();
5040f17e 189 commit_graft_prepared = 1;
5da5c8f4
JH
190}
191
45163382 192struct commit_graft *lookup_commit_graft(const unsigned char *sha1)
5da5c8f4
JH
193{
194 int pos;
5040f17e 195 prepare_commit_graft();
5da5c8f4
JH
196 pos = commit_graft_pos(sha1);
197 if (pos < 0)
198 return NULL;
199 return commit_graft[pos];
200}
201
ed09aef0
JS
202int write_shallow_commits(int fd, int use_pack_protocol)
203{
204 int i, count = 0;
205 for (i = 0; i < commit_graft_nr; i++)
206 if (commit_graft[i]->nr_parent < 0) {
207 const char *hex =
208 sha1_to_hex(commit_graft[i]->sha1);
209 count++;
210 if (use_pack_protocol)
211 packet_write(fd, "shallow %s", hex);
212 else {
93822c22
AW
213 if (write_in_full(fd, hex, 40) != 40)
214 break;
2b7ca830 215 if (write_str_in_full(fd, "\n") != 1)
93822c22 216 break;
ed09aef0
JS
217 }
218 }
219 return count;
220}
221
f53514bc
JS
222int unregister_shallow(const unsigned char *sha1)
223{
224 int pos = commit_graft_pos(sha1);
225 if (pos < 0)
226 return -1;
227 if (pos + 1 < commit_graft_nr)
228 memcpy(commit_graft + pos, commit_graft + pos + 1,
229 sizeof(struct commit_graft *)
230 * (commit_graft_nr - pos - 1));
231 commit_graft_nr--;
232 return 0;
233}
234
bd2c39f5 235int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size)
175785e5 236{
3b44f15a 237 char *tail = buffer;
f7cc77d7 238 char *bufptr = buffer;
175785e5 239 unsigned char parent[20];
6c88be16 240 struct commit_list **pptr;
5da5c8f4 241 struct commit_graft *graft;
bd2c39f5 242
175785e5
DB
243 if (item->object.parsed)
244 return 0;
245 item->object.parsed = 1;
3b44f15a 246 tail += size;
0a617799 247 if (tail <= bufptr + 46 || memcmp(bufptr, "tree ", 5) || bufptr[45] != '\n')
f7cc77d7 248 return error("bogus commit object %s", sha1_to_hex(item->object.sha1));
0a617799 249 if (get_sha1_hex(bufptr + 5, parent) < 0)
bd2afde8
JH
250 return error("bad tree pointer in commit %s",
251 sha1_to_hex(item->object.sha1));
175785e5 252 item->tree = lookup_tree(parent);
175785e5 253 bufptr += 46; /* "tree " + "hex sha1" + "\n" */
6c88be16 254 pptr = &item->parents;
5da5c8f4
JH
255
256 graft = lookup_commit_graft(item->object.sha1);
3b44f15a 257 while (bufptr + 48 < tail && !memcmp(bufptr, "parent ", 7)) {
f7cc77d7
LT
258 struct commit *new_parent;
259
3b44f15a
JH
260 if (tail <= bufptr + 48 ||
261 get_sha1_hex(bufptr + 7, parent) ||
262 bufptr[47] != '\n')
f7cc77d7 263 return error("bad parents in commit %s", sha1_to_hex(item->object.sha1));
5da5c8f4 264 bufptr += 48;
7f3140cd
JS
265 /*
266 * The clone is shallow if nr_parent < 0, and we must
267 * not traverse its real parents even when we unhide them.
268 */
269 if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
5da5c8f4 270 continue;
f7cc77d7 271 new_parent = lookup_commit(parent);
39468def 272 if (new_parent)
6c88be16 273 pptr = &commit_list_insert(new_parent, pptr)->next;
5da5c8f4
JH
274 }
275 if (graft) {
276 int i;
277 struct commit *new_parent;
278 for (i = 0; i < graft->nr_parent; i++) {
279 new_parent = lookup_commit(graft->parent[i]);
280 if (!new_parent)
281 continue;
282 pptr = &commit_list_insert(new_parent, pptr)->next;
5da5c8f4 283 }
175785e5 284 }
0a617799 285 item->date = parse_commit_date(bufptr, tail);
27dedf0c 286
175785e5
DB
287 return 0;
288}
289
bd2c39f5
NP
290int parse_commit(struct commit *item)
291{
21666f1a 292 enum object_type type;
bd2c39f5
NP
293 void *buffer;
294 unsigned long size;
295 int ret;
296
9786f68b
MK
297 if (!item)
298 return -1;
bd2c39f5
NP
299 if (item->object.parsed)
300 return 0;
21666f1a 301 buffer = read_sha1_file(item->object.sha1, &type, &size);
bd2c39f5
NP
302 if (!buffer)
303 return error("Could not read %s",
304 sha1_to_hex(item->object.sha1));
21666f1a 305 if (type != OBJ_COMMIT) {
bd2c39f5
NP
306 free(buffer);
307 return error("Object %s not a commit",
308 sha1_to_hex(item->object.sha1));
309 }
310 ret = parse_commit_buffer(item, buffer, size);
60ab26de 311 if (save_commit_buffer && !ret) {
3ff1fbbb
LT
312 item->buffer = buffer;
313 return 0;
314 }
bd2c39f5
NP
315 free(buffer);
316 return ret;
317}
318
ac5155ef 319struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
dd97f850 320{
812666c8 321 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
dd97f850
DB
322 new_list->item = item;
323 new_list->next = *list_p;
324 *list_p = new_list;
ac5155ef 325 return new_list;
dd97f850
DB
326}
327
65319475
MV
328unsigned commit_list_count(const struct commit_list *l)
329{
330 unsigned c = 0;
331 for (; l; l = l->next )
332 c++;
333 return c;
334}
335
175785e5
DB
336void free_commit_list(struct commit_list *list)
337{
338 while (list) {
339 struct commit_list *temp = list;
340 list = temp->next;
341 free(temp);
342 }
343}
dd97f850 344
f755494c 345struct commit_list * insert_by_date(struct commit *item, struct commit_list **list)
dd97f850
DB
346{
347 struct commit_list **pp = list;
348 struct commit_list *p;
349 while ((p = *pp) != NULL) {
350 if (p->item->date < item->date) {
351 break;
352 }
353 pp = &p->next;
354 }
f755494c 355 return commit_list_insert(item, pp);
dd97f850
DB
356}
357
a6080a0a 358
dd97f850
DB
359void sort_by_date(struct commit_list **list)
360{
361 struct commit_list *ret = NULL;
362 while (*list) {
f755494c 363 insert_by_date((*list)->item, &ret);
dd97f850
DB
364 *list = (*list)->next;
365 }
366 *list = ret;
367}
368
58e28af6
DB
369struct commit *pop_most_recent_commit(struct commit_list **list,
370 unsigned int mark)
dd97f850
DB
371{
372 struct commit *ret = (*list)->item;
373 struct commit_list *parents = ret->parents;
374 struct commit_list *old = *list;
375
376 *list = (*list)->next;
377 free(old);
378
379 while (parents) {
4056c091 380 struct commit *commit = parents->item;
dec38c81 381 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
58e28af6 382 commit->object.flags |= mark;
f755494c 383 insert_by_date(commit, list);
4056c091 384 }
dd97f850
DB
385 parents = parents->next;
386 }
387 return ret;
388}
e3bc7a3b 389
f8f9c73c
JH
390void clear_commit_marks(struct commit *commit, unsigned int mark)
391{
60fcc2e6
JS
392 while (commit) {
393 struct commit_list *parents;
f8f9c73c 394
60fcc2e6
JS
395 if (!(mark & commit->object.flags))
396 return;
58ecf5c1 397
60fcc2e6
JS
398 commit->object.flags &= ~mark;
399
400 parents = commit->parents;
401 if (!parents)
402 return;
403
404 while ((parents = parents->next))
405 clear_commit_marks(parents->item, mark);
406
407 commit = commit->parents->item;
f8f9c73c
JH
408 }
409}
410
a3437b8c
JS
411struct commit *pop_commit(struct commit_list **stack)
412{
413 struct commit_list *top = *stack;
414 struct commit *item = top ? top->item : NULL;
415
416 if (top) {
417 *stack = top->next;
418 free(top);
419 }
420 return item;
421}
422
ab580ace
JS
423/*
424 * Performs an in-place topological sort on the list supplied.
425 */
4c8725f1 426void sort_in_topological_order(struct commit_list ** list, int lifo)
6b6dcfc2 427{
23c17d4a
LT
428 struct commit_list *next, *orig = *list;
429 struct commit_list *work, **insert;
430 struct commit_list **pptr;
a6080a0a 431
23c17d4a 432 if (!orig)
7d6fb370 433 return;
23c17d4a
LT
434 *list = NULL;
435
436 /* Mark them and clear the indegree */
437 for (next = orig; next; next = next->next) {
438 struct commit *commit = next->item;
e358f3c3 439 commit->indegree = 1;
ab580ace 440 }
23c17d4a 441
ab580ace 442 /* update the indegree */
23c17d4a 443 for (next = orig; next; next = next->next) {
ab580ace
JS
444 struct commit_list * parents = next->item->parents;
445 while (parents) {
23c17d4a 446 struct commit *parent = parents->item;
6b6dcfc2 447
e358f3c3 448 if (parent->indegree)
23c17d4a
LT
449 parent->indegree++;
450 parents = parents->next;
ab580ace 451 }
ab580ace 452 }
23c17d4a 453
a6080a0a 454 /*
674d1727
PH
455 * find the tips
456 *
457 * tips are nodes not reachable from any other node in the list
458 *
459 * the tips serve as a starting set for the work queue.
460 */
23c17d4a 461 work = NULL;
2ed02887 462 insert = &work;
23c17d4a
LT
463 for (next = orig; next; next = next->next) {
464 struct commit *commit = next->item;
ab580ace 465
e358f3c3 466 if (commit->indegree == 1)
23c17d4a 467 insert = &commit_list_insert(commit, insert)->next;
ab580ace 468 }
4c8725f1 469
ab580ace 470 /* process the list in topological order */
4c8725f1
JH
471 if (!lifo)
472 sort_by_date(&work);
23c17d4a
LT
473
474 pptr = list;
475 *list = NULL;
ab580ace 476 while (work) {
23c17d4a
LT
477 struct commit *commit;
478 struct commit_list *parents, *work_item;
ab580ace 479
23c17d4a
LT
480 work_item = work;
481 work = work_item->next;
482 work_item->next = NULL;
483
484 commit = work_item->item;
485 for (parents = commit->parents; parents ; parents = parents->next) {
486 struct commit *parent=parents->item;
487
e358f3c3 488 if (!parent->indegree)
23c17d4a
LT
489 continue;
490
491 /*
492 * parents are only enqueued for emission
493 * when all their children have been emitted thereby
494 * guaranteeing topological order.
495 */
e358f3c3 496 if (--parent->indegree == 1) {
23c17d4a
LT
497 if (!lifo)
498 insert_by_date(parent, &work);
499 else
500 commit_list_insert(parent, &work);
ab580ace 501 }
ab580ace
JS
502 }
503 /*
674d1727
PH
504 * work_item is a commit all of whose children
505 * have already been emitted. we can emit it now.
506 */
e358f3c3 507 commit->indegree = 0;
23c17d4a
LT
508 *pptr = work_item;
509 pptr = &work_item->next;
ab580ace 510 }
ab580ace 511}
7c6f8aaf 512
1295228d 513/* merge-base stuff */
7c6f8aaf 514
577ed5c2
JH
515/* bits #0..15 in revision.h */
516#define PARENT1 (1u<<16)
517#define PARENT2 (1u<<17)
518#define STALE (1u<<18)
519#define RESULT (1u<<19)
7c6f8aaf 520
1295228d
JH
521static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
522
7c6f8aaf
JS
523static struct commit *interesting(struct commit_list *list)
524{
525 while (list) {
526 struct commit *commit = list->item;
527 list = list->next;
542ccefe 528 if (commit->object.flags & STALE)
7c6f8aaf
JS
529 continue;
530 return commit;
531 }
532 return NULL;
533}
534
6a938648 535static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos)
7c6f8aaf
JS
536{
537 struct commit_list *list = NULL;
538 struct commit_list *result = NULL;
6a938648 539 int i;
7c6f8aaf 540
6a938648
JH
541 for (i = 0; i < n; i++) {
542 if (one == twos[i])
543 /*
544 * We do not mark this even with RESULT so we do not
545 * have to clean it up.
546 */
547 return commit_list_insert(one, &result);
548 }
7c6f8aaf 549
172947e6
MK
550 if (parse_commit(one))
551 return NULL;
6a938648
JH
552 for (i = 0; i < n; i++) {
553 if (parse_commit(twos[i]))
554 return NULL;
555 }
7c6f8aaf 556
f3249438 557 one->object.flags |= PARENT1;
f3249438 558 insert_by_date(one, &list);
6a938648
JH
559 for (i = 0; i < n; i++) {
560 twos[i]->object.flags |= PARENT2;
561 insert_by_date(twos[i], &list);
562 }
7c6f8aaf
JS
563
564 while (interesting(list)) {
f3249438 565 struct commit *commit;
7c6f8aaf 566 struct commit_list *parents;
f203d696 567 struct commit_list *next;
f3249438 568 int flags;
7c6f8aaf 569
f3249438 570 commit = list->item;
f203d696 571 next = list->next;
f3249438 572 free(list);
f203d696 573 list = next;
7c6f8aaf 574
f3249438
JH
575 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
576 if (flags == (PARENT1 | PARENT2)) {
577 if (!(commit->object.flags & RESULT)) {
578 commit->object.flags |= RESULT;
579 insert_by_date(commit, &result);
580 }
542ccefe
JH
581 /* Mark parents of a found merge stale */
582 flags |= STALE;
7c6f8aaf
JS
583 }
584 parents = commit->parents;
585 while (parents) {
586 struct commit *p = parents->item;
587 parents = parents->next;
588 if ((p->object.flags & flags) == flags)
589 continue;
172947e6
MK
590 if (parse_commit(p))
591 return NULL;
7c6f8aaf
JS
592 p->object.flags |= flags;
593 insert_by_date(p, &list);
594 }
595 }
596
f3249438 597 /* Clean up the result to remove stale ones */
1295228d 598 free_commit_list(list);
f3249438
JH
599 list = result; result = NULL;
600 while (list) {
f203d696 601 struct commit_list *next = list->next;
f3249438
JH
602 if (!(list->item->object.flags & STALE))
603 insert_by_date(list->item, &result);
604 free(list);
f203d696 605 list = next;
f3249438
JH
606 }
607 return result;
608}
7c6f8aaf 609
5240c9d7
MV
610struct commit_list *get_octopus_merge_bases(struct commit_list *in)
611{
612 struct commit_list *i, *j, *k, *ret = NULL;
613 struct commit_list **pptr = &ret;
614
615 for (i = in; i; i = i->next) {
616 if (!ret)
617 pptr = &commit_list_insert(i->item, pptr)->next;
618 else {
619 struct commit_list *new = NULL, *end = NULL;
620
621 for (j = ret; j; j = j->next) {
622 struct commit_list *bases;
623 bases = get_merge_bases(i->item, j->item, 1);
624 if (!new)
625 new = bases;
626 else
627 end->next = bases;
628 for (k = bases; k; k = k->next)
629 end = k;
630 }
631 ret = new;
632 }
633 }
634 return ret;
635}
636
6a938648
JH
637struct commit_list *get_merge_bases_many(struct commit *one,
638 int n,
639 struct commit **twos,
640 int cleanup)
f3249438 641{
f3249438
JH
642 struct commit_list *list;
643 struct commit **rslt;
644 struct commit_list *result;
645 int cnt, i, j;
646
6a938648
JH
647 result = merge_bases_many(one, n, twos);
648 for (i = 0; i < n; i++) {
649 if (one == twos[i])
650 return result;
651 }
f3249438
JH
652 if (!result || !result->next) {
653 if (cleanup) {
654 clear_commit_marks(one, all_flags);
6a938648
JH
655 for (i = 0; i < n; i++)
656 clear_commit_marks(twos[i], all_flags);
7c6f8aaf 657 }
f3249438 658 return result;
7c6f8aaf
JS
659 }
660
f3249438
JH
661 /* There are more than one */
662 cnt = 0;
663 list = result;
664 while (list) {
665 list = list->next;
666 cnt++;
667 }
668 rslt = xcalloc(cnt, sizeof(*rslt));
669 for (list = result, i = 0; list; list = list->next)
670 rslt[i++] = list->item;
671 free_commit_list(result);
672
673 clear_commit_marks(one, all_flags);
6a938648
JH
674 for (i = 0; i < n; i++)
675 clear_commit_marks(twos[i], all_flags);
f3249438
JH
676 for (i = 0; i < cnt - 1; i++) {
677 for (j = i+1; j < cnt; j++) {
678 if (!rslt[i] || !rslt[j])
679 continue;
6a938648 680 result = merge_bases_many(rslt[i], 1, &rslt[j]);
f3249438
JH
681 clear_commit_marks(rslt[i], all_flags);
682 clear_commit_marks(rslt[j], all_flags);
683 for (list = result; list; list = list->next) {
684 if (rslt[i] == list->item)
685 rslt[i] = NULL;
686 if (rslt[j] == list->item)
687 rslt[j] = NULL;
688 }
689 }
58ecf5c1 690 }
7c6f8aaf 691
f3249438
JH
692 /* Surviving ones in rslt[] are the independent results */
693 result = NULL;
694 for (i = 0; i < cnt; i++) {
695 if (rslt[i])
696 insert_by_date(rslt[i], &result);
697 }
698 free(rslt);
7c6f8aaf
JS
699 return result;
700}
2ecd2bbc 701
6a938648
JH
702struct commit_list *get_merge_bases(struct commit *one, struct commit *two,
703 int cleanup)
704{
705 return get_merge_bases_many(one, 1, &two, cleanup);
706}
707
7fcdb36e
JG
708int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
709{
710 if (!with_commit)
711 return 1;
712 while (with_commit) {
713 struct commit *other;
714
715 other = with_commit->item;
716 with_commit = with_commit->next;
717 if (in_merge_bases(other, &commit, 1))
718 return 1;
719 }
720 return 0;
721}
722
03840fc3 723int in_merge_bases(struct commit *commit, struct commit **reference, int num)
2ecd2bbc
JH
724{
725 struct commit_list *bases, *b;
726 int ret = 0;
727
03840fc3
JH
728 if (num == 1)
729 bases = get_merge_bases(commit, *reference, 1);
730 else
731 die("not yet");
2ecd2bbc 732 for (b = bases; b; b = b->next) {
03840fc3 733 if (!hashcmp(commit->object.sha1, b->item->object.sha1)) {
2ecd2bbc
JH
734 ret = 1;
735 break;
736 }
737 }
738
739 free_commit_list(bases);
740 return ret;
741}
98cf9c3b
JH
742
743struct commit_list *reduce_heads(struct commit_list *heads)
744{
745 struct commit_list *p;
746 struct commit_list *result = NULL, **tail = &result;
747 struct commit **other;
748 size_t num_head, num_other;
749
750 if (!heads)
751 return NULL;
752
753 /* Avoid unnecessary reallocations */
754 for (p = heads, num_head = 0; p; p = p->next)
755 num_head++;
756 other = xcalloc(sizeof(*other), num_head);
757
758 /* For each commit, see if it can be reached by others */
759 for (p = heads; p; p = p->next) {
760 struct commit_list *q, *base;
761
711f6b29
JH
762 /* Do we already have this in the result? */
763 for (q = result; q; q = q->next)
764 if (p->item == q->item)
765 break;
766 if (q)
767 continue;
768
98cf9c3b
JH
769 num_other = 0;
770 for (q = heads; q; q = q->next) {
3d1dd472 771 if (p->item == q->item)
98cf9c3b
JH
772 continue;
773 other[num_other++] = q->item;
774 }
711f6b29 775 if (num_other)
98cf9c3b 776 base = get_merge_bases_many(p->item, num_other, other, 1);
711f6b29 777 else
98cf9c3b
JH
778 base = NULL;
779 /*
780 * If p->item does not have anything common with other
781 * commits, there won't be any merge base. If it is
782 * reachable from some of the others, p->item will be
783 * the merge base. If its history is connected with
784 * others, but p->item is not reachable by others, we
785 * will get something other than p->item back.
786 */
787 if (!base || (base->item != p->item))
788 tail = &(commit_list_insert(p->item, tail)->next);
789 free_commit_list(base);
790 }
791 free(other);
792 return result;
793}