Unverified Commit d6210245 by Edward Thomson Committed by GitHub

Merge pull request #4159 from richardipsum/notes-commit

Support using notes via a commit rather than a ref
parents 8cdf439b 4623c25f
...@@ -52,6 +52,20 @@ GIT_EXTERN(int) git_note_iterator_new( ...@@ -52,6 +52,20 @@ GIT_EXTERN(int) git_note_iterator_new(
const char *notes_ref); const char *notes_ref);
/** /**
* Creates a new iterator for notes from a commit
*
* The iterator must be freed manually by the user.
*
* @param out pointer to the iterator
* @param notes_commit a pointer to the notes commit object
*
* @return 0 or an error code
*/
GIT_EXTERN(int) git_note_commit_iterator_new(
git_note_iterator **out,
git_commit *notes_commit);
/**
* Frees an git_note_iterator * Frees an git_note_iterator
* *
* @param it pointer to the iterator * @param it pointer to the iterator
...@@ -94,6 +108,25 @@ GIT_EXTERN(int) git_note_read( ...@@ -94,6 +108,25 @@ GIT_EXTERN(int) git_note_read(
const char *notes_ref, const char *notes_ref,
const git_oid *oid); const git_oid *oid);
/**
* Read the note for an object from a note commit
*
* The note must be freed manually by the user.
*
* @param out pointer to the read note; NULL in case of error
* @param repo repository where to look up the note
* @param notes_commit a pointer to the notes commit object
* @param oid OID of the git object to read the note from
*
* @return 0 or an error code
*/
GIT_EXTERN(int) git_note_commit_read(
git_note **out,
git_repository *repo,
git_commit *notes_commit,
const git_oid *oid);
/** /**
* Get the note author * Get the note author
* *
...@@ -153,6 +186,36 @@ GIT_EXTERN(int) git_note_create( ...@@ -153,6 +186,36 @@ GIT_EXTERN(int) git_note_create(
const char *note, const char *note,
int force); int force);
/**
* Add a note for an object from a commit
*
* This function will create a notes commit for a given object,
* the commit is a dangling commit, no reference is created.
*
* @param notes_commit_out pointer to store the commit (optional);
* NULL in case of error
* @param notes_blob_out a point to the id of a note blob (optional)
* @param repo repository where the note will live
* @param parent Pointer to parent note
* or NULL if this shall start a new notes tree
* @param author signature of the notes commit author
* @param committer signature of the notes commit committer
* @param oid OID of the git object to decorate
* @param note Content of the note to add for object oid
* @param allow_note_overwrite Overwrite existing note
*
* @return 0 or an error code
*/
GIT_EXTERN(int) git_note_commit_create(
git_oid *notes_commit_out,
git_oid *notes_blob_out,
git_repository *repo,
git_commit *parent,
const git_signature *author,
const git_signature *committer,
const git_oid *oid,
const char *note,
int allow_note_overwrite);
/** /**
* Remove the note for an object * Remove the note for an object
...@@ -174,6 +237,32 @@ GIT_EXTERN(int) git_note_remove( ...@@ -174,6 +237,32 @@ GIT_EXTERN(int) git_note_remove(
const git_oid *oid); const git_oid *oid);
/** /**
* Remove the note for an object
*
* @param notes_commit_out pointer to store the new notes commit (optional);
* NULL in case of error.
* When removing a note a new tree containing all notes
* sans the note to be removed is created and a new commit
* pointing to that tree is also created.
* In the case where the resulting tree is an empty tree
* a new commit pointing to this empty tree will be returned.
* @param repo repository where the note lives
* @param notes_commit a pointer to the notes commit object
* @param author signature of the notes commit author
* @param committer signature of the notes commit committer
* @param oid OID of the git object to remove the note from
*
* @return 0 or an error code
*/
GIT_EXTERN(int) git_note_commit_remove(
git_oid *notes_commit_out,
git_repository *repo,
git_commit *notes_commit,
const git_signature *author,
const git_signature *committer,
const git_oid *oid);
/**
* Free a git_note object * Free a git_note object
* *
* @param note git_note object * @param note git_note object
......
...@@ -268,7 +268,9 @@ static int insert_note_in_tree_enotfound_cb(git_tree **out, ...@@ -268,7 +268,9 @@ static int insert_note_in_tree_enotfound_cb(git_tree **out,
GIT_FILEMODE_BLOB); GIT_FILEMODE_BLOB);
} }
static int note_write(git_oid *out, static int note_write(
git_oid *notes_commit_out,
git_oid *notes_blob_out,
git_repository *repo, git_repository *repo,
const git_signature *author, const git_signature *author,
const git_signature *committer, const git_signature *committer,
...@@ -294,13 +296,17 @@ static int note_write(git_oid *out, ...@@ -294,13 +296,17 @@ static int note_write(git_oid *out,
insert_note_in_tree_enotfound_cb)) < 0) insert_note_in_tree_enotfound_cb)) < 0)
goto cleanup; goto cleanup;
if (out) if (notes_blob_out)
git_oid_cpy(out, &oid); git_oid_cpy(notes_blob_out, &oid);
error = git_commit_create(&oid, repo, notes_ref, author, committer, error = git_commit_create(&oid, repo, notes_ref, author, committer,
NULL, GIT_NOTES_DEFAULT_MSG_ADD, NULL, GIT_NOTES_DEFAULT_MSG_ADD,
tree, *parents == NULL ? 0 : 1, (const git_commit **) parents); tree, *parents == NULL ? 0 : 1, (const git_commit **) parents);
if (notes_commit_out)
git_oid_cpy(notes_commit_out, &oid);
cleanup: cleanup:
git_tree_free(tree); git_tree_free(tree);
return error; return error;
...@@ -363,7 +369,9 @@ cleanup: ...@@ -363,7 +369,9 @@ cleanup:
return error; return error;
} }
static int note_remove(git_repository *repo, static int note_remove(
git_oid *notes_commit_out,
git_repository *repo,
const git_signature *author, const git_signature *committer, const git_signature *author, const git_signature *committer,
const char *notes_ref, git_tree *tree, const char *notes_ref, git_tree *tree,
const char *target, git_commit **parents) const char *target, git_commit **parents)
...@@ -383,6 +391,12 @@ static int note_remove(git_repository *repo, ...@@ -383,6 +391,12 @@ static int note_remove(git_repository *repo,
*parents == NULL ? 0 : 1, *parents == NULL ? 0 : 1,
(const git_commit **) parents); (const git_commit **) parents);
if (error < 0)
goto cleanup;
if (notes_commit_out)
git_oid_cpy(notes_commit_out, &oid);
cleanup: cleanup:
git_tree_free(tree_after_removal); git_tree_free(tree_after_removal);
return error; return error;
...@@ -410,8 +424,7 @@ static int normalize_namespace(char **out, git_repository *repo, const char *not ...@@ -410,8 +424,7 @@ static int normalize_namespace(char **out, git_repository *repo, const char *not
return note_get_default_ref(out, repo); return note_get_default_ref(out, repo);
} }
static int retrieve_note_tree_and_commit( static int retrieve_note_commit(
git_tree **tree_out,
git_commit **commit_out, git_commit **commit_out,
char **notes_ref_out, char **notes_ref_out,
git_repository *repo, git_repository *repo,
...@@ -429,34 +442,82 @@ static int retrieve_note_tree_and_commit( ...@@ -429,34 +442,82 @@ static int retrieve_note_tree_and_commit(
if (git_commit_lookup(commit_out, repo, &oid) < 0) if (git_commit_lookup(commit_out, repo, &oid) < 0)
return error; return error;
if ((error = git_commit_tree(tree_out, *commit_out)) < 0)
return error;
return 0; return 0;
} }
int git_note_commit_read(
git_note **out,
git_repository *repo,
git_commit *notes_commit,
const git_oid *oid)
{
int error;
git_tree *tree = NULL;
char target[GIT_OID_HEXSZ + 1];
git_oid_tostr(target, sizeof(target), oid);
if ((error = git_commit_tree(&tree, notes_commit)) < 0)
goto cleanup;
error = note_lookup(out, repo, notes_commit, tree, target);
cleanup:
git_tree_free(tree);
return error;
}
int git_note_read(git_note **out, git_repository *repo, int git_note_read(git_note **out, git_repository *repo,
const char *notes_ref_in, const git_oid *oid) const char *notes_ref_in, const git_oid *oid)
{ {
int error; int error;
char *target = NULL, *notes_ref = NULL; char *notes_ref = NULL;
git_tree *tree = NULL;
git_commit *commit = NULL; git_commit *commit = NULL;
target = git_oid_allocfmt(oid); error = retrieve_note_commit(&commit, &notes_ref, repo, notes_ref_in);
GITERR_CHECK_ALLOC(target);
if (error < 0)
goto cleanup;
if (!(error = retrieve_note_tree_and_commit( error = git_note_commit_read(out, repo, commit, oid);
&tree, &commit, &notes_ref, repo, notes_ref_in)))
error = note_lookup(out, repo, commit, tree, target);
cleanup:
git__free(notes_ref); git__free(notes_ref);
git__free(target);
git_tree_free(tree);
git_commit_free(commit); git_commit_free(commit);
return error; return error;
} }
int git_note_commit_create(
git_oid *notes_commit_out,
git_oid *notes_blob_out,
git_repository *repo,
git_commit *parent,
const git_signature *author,
const git_signature *committer,
const git_oid *oid,
const char *note,
int allow_note_overwrite)
{
int error;
git_tree *tree = NULL;
char target[GIT_OID_HEXSZ + 1];
git_oid_tostr(target, sizeof(target), oid);
if (parent != NULL && (error = git_commit_tree(&tree, parent)) < 0)
goto cleanup;
error = note_write(notes_commit_out, notes_blob_out, repo, author,
committer, NULL, note, tree, target, &parent, allow_note_overwrite);
if (error < 0)
goto cleanup;
cleanup:
git_tree_free(tree);
return error;
}
int git_note_create( int git_note_create(
git_oid *out, git_oid *out,
git_repository *repo, git_repository *repo,
...@@ -468,25 +529,59 @@ int git_note_create( ...@@ -468,25 +529,59 @@ int git_note_create(
int allow_note_overwrite) int allow_note_overwrite)
{ {
int error; int error;
char *target = NULL, *notes_ref = NULL; char *notes_ref = NULL;
git_commit *commit = NULL; git_commit *existing_notes_commit = NULL;
git_tree *tree = NULL; git_reference *ref = NULL;
git_oid notes_blob_oid, notes_commit_oid;
target = git_oid_allocfmt(oid);
GITERR_CHECK_ALLOC(target);
error = retrieve_note_tree_and_commit(&tree, &commit, &notes_ref, repo, notes_ref_in); error = retrieve_note_commit(&existing_notes_commit, &notes_ref,
repo, notes_ref_in);
if (error < 0 && error != GIT_ENOTFOUND) if (error < 0 && error != GIT_ENOTFOUND)
goto cleanup; goto cleanup;
error = note_write(out, repo, author, committer, notes_ref, error = git_note_commit_create(&notes_commit_oid,
note, tree, target, &commit, allow_note_overwrite); &notes_blob_oid,
repo, existing_notes_commit, author,
committer, oid, note,
allow_note_overwrite);
if (error < 0)
goto cleanup;
error = git_reference_create(&ref, repo, notes_ref,
&notes_commit_oid, 1, NULL);
if (out != NULL)
git_oid_cpy(out, &notes_blob_oid);
cleanup: cleanup:
git__free(notes_ref); git__free(notes_ref);
git__free(target); git_commit_free(existing_notes_commit);
git_commit_free(commit); git_reference_free(ref);
return error;
}
int git_note_commit_remove(
git_oid *notes_commit_out,
git_repository *repo,
git_commit *notes_commit,
const git_signature *author,
const git_signature *committer,
const git_oid *oid)
{
int error;
git_tree *tree = NULL;
char target[GIT_OID_HEXSZ + 1];
git_oid_tostr(target, sizeof(target), oid);
if ((error = git_commit_tree(&tree, notes_commit)) < 0)
goto cleanup;
error = note_remove(notes_commit_out,
repo, author, committer, NULL, tree, target, &notes_commit);
cleanup:
git_tree_free(tree); git_tree_free(tree);
return error; return error;
} }
...@@ -496,22 +591,29 @@ int git_note_remove(git_repository *repo, const char *notes_ref_in, ...@@ -496,22 +591,29 @@ int git_note_remove(git_repository *repo, const char *notes_ref_in,
const git_oid *oid) const git_oid *oid)
{ {
int error; int error;
char *target = NULL, *notes_ref; char *notes_ref_target = NULL;
git_commit *commit = NULL; git_commit *existing_notes_commit = NULL;
git_tree *tree = NULL; git_oid new_notes_commit;
git_reference *notes_ref = NULL;
error = retrieve_note_commit(&existing_notes_commit, &notes_ref_target,
repo, notes_ref_in);
if (error < 0)
goto cleanup;
target = git_oid_allocfmt(oid); error = git_note_commit_remove(&new_notes_commit, repo,
GITERR_CHECK_ALLOC(target); existing_notes_commit, author, committer, oid);
if (error < 0)
goto cleanup;
if (!(error = retrieve_note_tree_and_commit( error = git_reference_create(&notes_ref, repo, notes_ref_target,
&tree, &commit, &notes_ref, repo, notes_ref_in))) &new_notes_commit, 1, NULL);
error = note_remove(
repo, author, committer, notes_ref, tree, target, &commit);
git__free(notes_ref); cleanup:
git__free(target); git__free(notes_ref_target);
git_commit_free(commit); git_reference_free(notes_ref);
git_tree_free(tree); git_commit_free(existing_notes_commit);
return error; return error;
} }
...@@ -639,7 +741,6 @@ int git_note_foreach( ...@@ -639,7 +741,6 @@ int git_note_foreach(
return error; return error;
} }
void git_note_iterator_free(git_note_iterator *it) void git_note_iterator_free(git_note_iterator *it)
{ {
if (it == NULL) if (it == NULL)
...@@ -648,6 +749,24 @@ void git_note_iterator_free(git_note_iterator *it) ...@@ -648,6 +749,24 @@ void git_note_iterator_free(git_note_iterator *it)
git_iterator_free(it); git_iterator_free(it);
} }
int git_note_commit_iterator_new(
git_note_iterator **it,
git_commit *notes_commit)
{
int error;
git_tree *tree;
if ((error = git_commit_tree(&tree, notes_commit)) < 0)
goto cleanup;
if ((error = git_iterator_for_tree(it, tree, NULL)) < 0)
git_iterator_free(*it);
cleanup:
git_tree_free(tree);
return error;
}
int git_note_iterator_new( int git_note_iterator_new(
git_note_iterator **it, git_note_iterator **it,
...@@ -656,19 +775,16 @@ int git_note_iterator_new( ...@@ -656,19 +775,16 @@ int git_note_iterator_new(
{ {
int error; int error;
git_commit *commit = NULL; git_commit *commit = NULL;
git_tree *tree = NULL;
char *notes_ref; char *notes_ref;
error = retrieve_note_tree_and_commit(&tree, &commit, &notes_ref, repo, notes_ref_in); error = retrieve_note_commit(&commit, &notes_ref, repo, notes_ref_in);
if (error < 0) if (error < 0)
goto cleanup; goto cleanup;
if ((error = git_iterator_for_tree(it, tree, NULL)) < 0) error = git_note_commit_iterator_new(it, commit);
git_iterator_free(*it);
cleanup: cleanup:
git__free(notes_ref); git__free(notes_ref);
git_tree_free(tree);
git_commit_free(commit); git_commit_free(commit);
return error; return error;
......
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