X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=merge-base.c;h=591956666d06603d145ac9a5d2102185289e4c2c;hb=d59a6043a8a7aed97c684fb4f14fe5221df1fcaf;hp=2ea44970d20500740db78b1cf0b9854c29e27553;hpb=3c249c950649a37f2871a8b193f01a0640a20aef;p=git.git diff --git a/merge-base.c b/merge-base.c index 2ea44970..59195666 100644 --- a/merge-base.c +++ b/merge-base.c @@ -2,54 +2,50 @@ #include "cache.h" #include "commit.h" -static struct commit *process_list(struct commit_list **list_p, int this_mark, - int other_mark) +static struct commit *common_ancestor(struct commit *rev1, struct commit *rev2) { - struct commit *item = (*list_p)->item; + struct commit_list *list = NULL; + struct commit_list *result = NULL; - if (item->object.flags & other_mark) { - return item; - } else { - pop_most_recent_commit(list_p, this_mark); - } - return NULL; -} - -struct commit *common_ancestor(struct commit *rev1, struct commit *rev2) -{ - struct commit_list *rev1list = NULL; - struct commit_list *rev2list = NULL; - - commit_list_insert(rev1, &rev1list); - rev1->object.flags |= 0x1; - commit_list_insert(rev2, &rev2list); - rev2->object.flags |= 0x2; + if (rev1 == rev2) + return rev1; parse_commit(rev1); parse_commit(rev2); - while (rev1list || rev2list) { - struct commit *ret; - if (!rev1list) { - // process 2 - ret = process_list(&rev2list, 0x2, 0x1); - } else if (!rev2list) { - // process 1 - ret = process_list(&rev1list, 0x1, 0x2); - } else if (rev1list->item->date < rev2list->item->date) { - // process 2 - ret = process_list(&rev2list, 0x2, 0x1); - } else { - // process 1 - ret = process_list(&rev1list, 0x1, 0x2); + rev1->object.flags |= 1; + rev2->object.flags |= 2; + insert_by_date(rev1, &list); + insert_by_date(rev2, &list); + + while (list) { + struct commit *commit = list->item; + struct commit_list *tmp = list, *parents; + int flags = commit->object.flags & 3; + + list = list->next; + free(tmp); + switch (flags) { + case 3: + insert_by_date(commit, &result); + continue; + case 0: + die("git-merge-base: commit without either parent?"); } - if (ret) { - free_commit_list(rev1list); - free_commit_list(rev2list); - return ret; + parents = commit->parents; + while (parents) { + struct commit *p = parents->item; + parents = parents->next; + if ((p->object.flags & flags) == flags) + continue; + parse_commit(p); + p->object.flags |= flags; + insert_by_date(p, &list); } } - return NULL; + if (!result) + return NULL; + return result->item; } int main(int argc, char **argv) @@ -60,10 +56,12 @@ int main(int argc, char **argv) if (argc != 3 || get_sha1(argv[1], rev1key) || get_sha1(argv[2], rev2key)) { - usage("merge-base "); + usage("git-merge-base "); } - rev1 = lookup_commit(rev1key); - rev2 = lookup_commit(rev2key); + rev1 = lookup_commit_reference(rev1key); + rev2 = lookup_commit_reference(rev2key); + if (!rev1 || !rev2) + return 1; ret = common_ancestor(rev1, rev2); if (!ret) return 1;