revwalk: use a priority queue for calculating merge bases As parents are older than their children, we're appending to the commit list most of the time, which makes an ordered linked list quite inefficient. While we're there, don't sort the results list in the main loop, as we're sorting them afterwards and it creates extra work.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
diff --git a/src/revwalk.c b/src/revwalk.c
index 727bcd7..f5fdc49 100644
--- a/src/revwalk.c
+++ b/src/revwalk.c
@@ -268,18 +268,16 @@ static int commit_parse(git_revwalk *walk, commit_object *commit)
return error == GIT_SUCCESS ? GIT_SUCCESS : git__rethrow(error, "Failed to parse commit");
}
-static commit_object *interesting(commit_list *list)
+static int interesting(git_pqueue *list)
{
- while (list) {
- commit_object *commit = list->item;
- list = list->next;
- if (commit->flags & STALE)
- continue;
-
- return commit;
+ unsigned int i;
+ for (i = 1; i < git_pqueue_size(list); i++) {
+ commit_object *commit = list->d[i];
+ if ((commit->flags & STALE) == 0)
+ return 1;
}
- return NULL;
+ return 0;
}
static int merge_bases_many(commit_list **out, git_revwalk *walk, commit_object *one, git_vector *twos)
@@ -287,44 +285,45 @@ static int merge_bases_many(commit_list **out, git_revwalk *walk, commit_object
int error;
unsigned int i;
commit_object *two;
- commit_list *list = NULL, *result = NULL;
+ commit_list *result = NULL, *tmp = NULL;
+ git_pqueue list;
/* if the commit is repeated, we have a our merge base already */
git_vector_foreach(twos, i, two) {
if (one == two)
- return commit_list_insert(one, out) ? GIT_SUCCESS : GIT_ENOMEM;
+ return commit_list_insert(one, out) ? 0 : -1;
}
- if ((error = commit_parse(walk, one)) < GIT_SUCCESS)
- return error;
+ if (git_pqueue_init(&list, twos->length * 2, commit_time_cmp) < 0)
+ return -1;
+
+ if (commit_parse(walk, one) < 0)
+ return -1;
one->flags |= PARENT1;
- if (commit_list_insert(one, &list) == NULL)
- return GIT_ENOMEM;
+ if (git_pqueue_insert(&list, one) < 0)
+ return -1;
git_vector_foreach(twos, i, two) {
commit_parse(walk, two);
two->flags |= PARENT2;
- if (commit_list_insert_by_date(two, &list) == NULL)
- return GIT_ENOMEM;
+ if (git_pqueue_insert(&list, two) < 0)
+ return -1;
}
/* as long as there are non-STALE commits */
- while (interesting(list)) {
- commit_object *commit = list->item;
- commit_list *next;
+ while (interesting(&list)) {
+ commit_object *commit;
int flags;
- next = list->next;
- git__free(list);
- list = next;
+ commit = git_pqueue_pop(&list);
flags = commit->flags & (PARENT1 | PARENT2 | STALE);
if (flags == (PARENT1 | PARENT2)) {
if (!(commit->flags & RESULT)) {
commit->flags |= RESULT;
- if (commit_list_insert_by_date(commit, &result) == NULL)
- return GIT_ENOMEM;
+ if (commit_list_insert(commit, &result) == NULL)
+ return -1;
}
/* we mark the parents of a merge stale */
flags |= STALE;
@@ -339,29 +338,29 @@ static int merge_bases_many(commit_list **out, git_revwalk *walk, commit_object
return error;
p->flags |= flags;
- if (commit_list_insert_by_date(p, &list) == NULL)
- return GIT_ENOMEM;
+ if (git_pqueue_insert(&list, p) < 0)
+ return -1;
}
}
- commit_list_free(&list);
+ git_pqueue_free(&list);
/* filter out any stale commits in the results */
- list = result;
+ tmp = result;
result = NULL;
- while (list) {
- struct commit_list *next = list->next;
- if (!(list->item->flags & STALE))
- if (commit_list_insert_by_date(list->item, &result) == NULL)
- return GIT_ENOMEM;
+ while (tmp) {
+ struct commit_list *next = tmp->next;
+ if (!(tmp->item->flags & STALE))
+ if (commit_list_insert_by_date(tmp->item, &result) == NULL)
+ return -1;
- free(list);
- list = next;
+ git__free(tmp);
+ tmp = next;
}
*out = result;
- return GIT_SUCCESS;
+ return 0;
}
int git_merge_base(git_oid *out, git_repository *repo, git_oid *one, git_oid *two)