Commit eb095435 by Justin Love

add git_commit_parent to retrieve a parent by index

parent 12114415
......@@ -272,6 +272,20 @@ unsigned int git_commit_parentcount(git_commit *commit)
return count;
}
git_commit * git_commit_parent(git_commit *commit, unsigned int n)
{
git_commit_parents *parent;
assert(commit);
CHECK_FULL_PARSE();
for (parent = commit->parents; parent != NULL && n > 0; parent = parent->next) {
n--;
}
return parent ? parent->commit : NULL;
}
void git_commit_set_tree(git_commit *commit, git_tree *tree)
{
assert(commit && tree);
......
......@@ -102,6 +102,14 @@ GIT_EXTERN(const git_tree *) git_commit_tree(git_commit *commit);
GIT_EXTERN(unsigned int) git_commit_parentcount(git_commit *commit);
/**
* Get the specified parent of the commit.
* @param commit a previously loaded commit.
* @param n the position of the entry
* @return a pointer to the commit; NULL if out of bounds
*/
GIT_EXTERN(git_commit *) git_commit_parent(git_commit *commit, unsigned int n);
/**
* Add a new parent commit to an existing commit
* @param commit the commit object
* @param new_parent the new commit which will be a parent
......
......@@ -31,7 +31,8 @@ BEGIN_TEST(query_details_test)
const git_person *author, *committer;
const char *message, *message_short;
time_t commit_time;
unsigned int parents;
unsigned int parents, p;
git_commit *parent;
git_oid_mkstr(&id, commit_ids[i]);
......@@ -52,6 +53,12 @@ BEGIN_TEST(query_details_test)
must_be_true(strchr(message_short, '\n') == NULL);
must_be_true(commit_time > 0);
must_be_true(0 <= parents && parents <= 2);
for (p = 0;p < parents;p++) {
parent = git_commit_parent(commit, p);
must_be_true(parent != NULL);
must_be_true(git_commit_author(parent) != NULL); // is it really a commit?
}
must_be_true(git_commit_parent(commit, parents) == NULL);
}
git_repository_free(repo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment