File Coverage

deps/libgit2/src/notes.c
Criterion Covered Total %
statement 214 315 67.9
branch 74 158 46.8
condition n/a
subroutine n/a
pod n/a
total 288 473 60.8


line stmt bran cond sub pod time code
1             /*
2             * Copyright (C) the libgit2 contributors. All rights reserved.
3             *
4             * This file is part of libgit2, distributed under the GNU GPL v2 with
5             * a Linking Exception. For full terms see the included COPYING file.
6             */
7              
8             #include "notes.h"
9              
10             #include "git2.h"
11             #include "refs.h"
12             #include "config.h"
13             #include "iterator.h"
14             #include "signature.h"
15             #include "blob.h"
16              
17 6           static int note_error_notfound(void)
18             {
19 6           git_error_set(GIT_ERROR_INVALID, "note could not be found");
20 6           return GIT_ENOTFOUND;
21             }
22              
23 16           static int find_subtree_in_current_level(
24             git_tree **out,
25             git_repository *repo,
26             git_tree *parent,
27             const char *annotated_object_sha,
28             int fanout)
29             {
30             size_t i;
31             const git_tree_entry *entry;
32              
33 16           *out = NULL;
34              
35 16 100         if (parent == NULL)
36 2           return note_error_notfound();
37              
38 14 100         for (i = 0; i < git_tree_entrycount(parent); i++) {
39 10           entry = git_tree_entry_byindex(parent, i);
40              
41 10 50         if (!git__ishex(git_tree_entry_name(entry)))
42 0           continue;
43              
44 10 50         if (S_ISDIR(git_tree_entry_filemode(entry))
45 0 0         && strlen(git_tree_entry_name(entry)) == 2
46 0 0         && !strncmp(git_tree_entry_name(entry), annotated_object_sha + fanout, 2))
47 0           return git_tree_lookup(out, repo, git_tree_entry_id(entry));
48              
49             /* Not a DIR, so do we have an already existing blob? */
50 10 50         if (!strcmp(git_tree_entry_name(entry), annotated_object_sha + fanout))
51 10           return GIT_EEXISTS;
52             }
53              
54 4           return note_error_notfound();
55             }
56              
57 8           static int find_subtree_r(git_tree **out, git_tree *root,
58             git_repository *repo, const char *target, int *fanout)
59             {
60             int error;
61 8           git_tree *subtree = NULL;
62              
63 8           *out = NULL;
64              
65 8           error = find_subtree_in_current_level(&subtree, repo, root, target, *fanout);
66 8 100         if (error == GIT_EEXISTS)
67 6           return git_tree_lookup(out, repo, git_tree_id(root));
68              
69 2 50         if (error < 0)
70 2           return error;
71              
72 0           *fanout += 2;
73 0           error = find_subtree_r(out, subtree, repo, target, fanout);
74 0           git_tree_free(subtree);
75              
76 8           return error;
77             }
78              
79 6           static int find_blob(git_oid *blob, git_tree *tree, const char *target)
80             {
81             size_t i;
82             const git_tree_entry *entry;
83              
84 6 50         for (i=0; i
85 6           entry = git_tree_entry_byindex(tree, i);
86              
87 6 50         if (!strcmp(git_tree_entry_name(entry), target)) {
88             /* found matching note object - return */
89              
90 6           git_oid_cpy(blob, git_tree_entry_id(entry));
91 6           return 0;
92             }
93             }
94              
95 0           return note_error_notfound();
96             }
97              
98 5           static int tree_write(
99             git_tree **out,
100             git_repository *repo,
101             git_tree *source_tree,
102             const git_oid *object_oid,
103             const char *treeentry_name,
104             unsigned int attributes)
105             {
106             int error;
107 5           git_treebuilder *tb = NULL;
108             const git_tree_entry *entry;
109             git_oid tree_oid;
110              
111 5 50         if ((error = git_treebuilder_new(&tb, repo, source_tree)) < 0)
112 0           goto cleanup;
113              
114 5 100         if (object_oid) {
115 3 50         if ((error = git_treebuilder_insert(
116             &entry, tb, treeentry_name, object_oid, attributes)) < 0)
117 0           goto cleanup;
118             } else {
119 2 50         if ((error = git_treebuilder_remove(tb, treeentry_name)) < 0)
120 0           goto cleanup;
121             }
122              
123 5 50         if ((error = git_treebuilder_write(&tree_oid, tb)) < 0)
124 0           goto cleanup;
125              
126 5           error = git_tree_lookup(out, repo, &tree_oid);
127              
128             cleanup:
129 5           git_treebuilder_free(tb);
130 5           return error;
131             }
132              
133 8           static int manipulate_note_in_tree_r(
134             git_tree **out,
135             git_repository *repo,
136             git_tree *parent,
137             git_oid *note_oid,
138             const char *annotated_object_sha,
139             int fanout,
140             int (*note_exists_cb)(
141             git_tree **out,
142             git_repository *repo,
143             git_tree *parent,
144             git_oid *note_oid,
145             const char *annotated_object_sha,
146             int fanout,
147             int current_error),
148             int (*note_notfound_cb)(
149             git_tree **out,
150             git_repository *repo,
151             git_tree *parent,
152             git_oid *note_oid,
153             const char *annotated_object_sha,
154             int fanout,
155             int current_error))
156             {
157             int error;
158 8           git_tree *subtree = NULL, *new = NULL;
159             char subtree_name[3];
160              
161 8           error = find_subtree_in_current_level(
162             &subtree, repo, parent, annotated_object_sha, fanout);
163              
164 8 100         if (error == GIT_EEXISTS) {
165 4           error = note_exists_cb(
166             out, repo, parent, note_oid, annotated_object_sha, fanout, error);
167 4           goto cleanup;
168             }
169              
170 4 50         if (error == GIT_ENOTFOUND) {
171 4           error = note_notfound_cb(
172             out, repo, parent, note_oid, annotated_object_sha, fanout, error);
173 4           goto cleanup;
174             }
175              
176 0 0         if (error < 0)
177 0           goto cleanup;
178              
179             /* An existing fanout has been found, let's dig deeper */
180 0           error = manipulate_note_in_tree_r(
181             &new, repo, subtree, note_oid, annotated_object_sha,
182             fanout + 2, note_exists_cb, note_notfound_cb);
183              
184 0 0         if (error < 0)
185 0           goto cleanup;
186              
187 0           strncpy(subtree_name, annotated_object_sha + fanout, 2);
188 0           subtree_name[2] = '\0';
189              
190 0           error = tree_write(out, repo, parent, git_tree_id(new),
191             subtree_name, GIT_FILEMODE_TREE);
192              
193              
194             cleanup:
195 8           git_tree_free(new);
196 8           git_tree_free(subtree);
197 8           return error;
198             }
199              
200 2           static int remove_note_in_tree_eexists_cb(
201             git_tree **out,
202             git_repository *repo,
203             git_tree *parent,
204             git_oid *note_oid,
205             const char *annotated_object_sha,
206             int fanout,
207             int current_error)
208             {
209             GIT_UNUSED(note_oid);
210             GIT_UNUSED(current_error);
211              
212 2           return tree_write(out, repo, parent, NULL, annotated_object_sha + fanout, 0);
213             }
214              
215 2           static int remove_note_in_tree_enotfound_cb(
216             git_tree **out,
217             git_repository *repo,
218             git_tree *parent,
219             git_oid *note_oid,
220             const char *annotated_object_sha,
221             int fanout,
222             int current_error)
223             {
224             GIT_UNUSED(out);
225             GIT_UNUSED(repo);
226             GIT_UNUSED(parent);
227             GIT_UNUSED(note_oid);
228             GIT_UNUSED(fanout);
229              
230 2           git_error_set(GIT_ERROR_REPOSITORY, "object '%s' has no note", annotated_object_sha);
231 2           return current_error;
232             }
233              
234 1           static int insert_note_in_tree_eexists_cb(git_tree **out,
235             git_repository *repo,
236             git_tree *parent,
237             git_oid *note_oid,
238             const char *annotated_object_sha,
239             int fanout,
240             int current_error)
241             {
242             GIT_UNUSED(out);
243             GIT_UNUSED(repo);
244             GIT_UNUSED(parent);
245             GIT_UNUSED(note_oid);
246             GIT_UNUSED(fanout);
247              
248 1           git_error_set(GIT_ERROR_REPOSITORY, "note for '%s' exists already", annotated_object_sha);
249 1           return current_error;
250             }
251              
252 3           static int insert_note_in_tree_enotfound_cb(git_tree **out,
253             git_repository *repo,
254             git_tree *parent,
255             git_oid *note_oid,
256             const char *annotated_object_sha,
257             int fanout,
258             int current_error)
259             {
260             GIT_UNUSED(current_error);
261              
262             /* No existing fanout at this level, insert in place */
263 3           return tree_write(
264             out,
265             repo,
266             parent,
267             note_oid,
268             annotated_object_sha + fanout,
269             GIT_FILEMODE_BLOB);
270             }
271              
272 4           static int note_write(
273             git_oid *notes_commit_out,
274             git_oid *notes_blob_out,
275             git_repository *repo,
276             const git_signature *author,
277             const git_signature *committer,
278             const char *notes_ref,
279             const char *note,
280             git_tree *commit_tree,
281             const char *target,
282             git_commit **parents,
283             int allow_note_overwrite)
284             {
285             int error;
286             git_oid oid;
287 4           git_tree *tree = NULL;
288              
289             /* TODO: should we apply filters? */
290             /* create note object */
291 4 50         if ((error = git_blob_create_from_buffer(&oid, repo, note, strlen(note))) < 0)
292 0           goto cleanup;
293              
294 4 100         if ((error = manipulate_note_in_tree_r(
    100          
295             &tree, repo, commit_tree, &oid, target, 0,
296             allow_note_overwrite ? insert_note_in_tree_enotfound_cb : insert_note_in_tree_eexists_cb,
297             insert_note_in_tree_enotfound_cb)) < 0)
298 1           goto cleanup;
299              
300 3 50         if (notes_blob_out)
301 3           git_oid_cpy(notes_blob_out, &oid);
302              
303              
304 3           error = git_commit_create(&oid, repo, notes_ref, author, committer,
305             NULL, GIT_NOTES_DEFAULT_MSG_ADD,
306 3           tree, *parents == NULL ? 0 : 1, (const git_commit **) parents);
307              
308 3 50         if (notes_commit_out)
309 3           git_oid_cpy(notes_commit_out, &oid);
310              
311             cleanup:
312 4           git_tree_free(tree);
313 4           return error;
314             }
315              
316 6           static int note_new(
317             git_note **out,
318             git_oid *note_oid,
319             git_commit *commit,
320             git_blob *blob)
321             {
322 6           git_note *note = NULL;
323             git_object_size_t blobsize;
324              
325 6           note = git__malloc(sizeof(git_note));
326 6 50         GIT_ERROR_CHECK_ALLOC(note);
327              
328 6           git_oid_cpy(¬e->id, note_oid);
329              
330 12           if (git_signature_dup(¬e->author, git_commit_author(commit)) < 0 ||
331 6           git_signature_dup(¬e->committer, git_commit_committer(commit)) < 0)
332 0           return -1;
333              
334 6           blobsize = git_blob_rawsize(blob);
335 6 50         GIT_ERROR_CHECK_BLOBSIZE(blobsize);
336              
337 6           note->message = git__strndup(git_blob_rawcontent(blob), (size_t)blobsize);
338 6 50         GIT_ERROR_CHECK_ALLOC(note->message);
339              
340 6           *out = note;
341 6           return 0;
342             }
343              
344 8           static int note_lookup(
345             git_note **out,
346             git_repository *repo,
347             git_commit *commit,
348             git_tree *tree,
349             const char *target)
350             {
351 8           int error, fanout = 0;
352             git_oid oid;
353 8           git_blob *blob = NULL;
354 8           git_note *note = NULL;
355 8           git_tree *subtree = NULL;
356              
357 8 100         if ((error = find_subtree_r(&subtree, tree, repo, target, &fanout)) < 0)
358 2           goto cleanup;
359              
360 6 50         if ((error = find_blob(&oid, subtree, target + fanout)) < 0)
361 0           goto cleanup;
362              
363 6 50         if ((error = git_blob_lookup(&blob, repo, &oid)) < 0)
364 0           goto cleanup;
365              
366 6 50         if ((error = note_new(¬e, &oid, commit, blob)) < 0)
367 0           goto cleanup;
368              
369 6           *out = note;
370              
371             cleanup:
372 8           git_tree_free(subtree);
373 8           git_blob_free(blob);
374 8           return error;
375             }
376              
377 4           static int note_remove(
378             git_oid *notes_commit_out,
379             git_repository *repo,
380             const git_signature *author, const git_signature *committer,
381             const char *notes_ref, git_tree *tree,
382             const char *target, git_commit **parents)
383             {
384             int error;
385 4           git_tree *tree_after_removal = NULL;
386             git_oid oid;
387              
388 4 100         if ((error = manipulate_note_in_tree_r(
389             &tree_after_removal, repo, tree, NULL, target, 0,
390             remove_note_in_tree_eexists_cb, remove_note_in_tree_enotfound_cb)) < 0)
391 2           goto cleanup;
392              
393 2           error = git_commit_create(&oid, repo, notes_ref, author, committer,
394             NULL, GIT_NOTES_DEFAULT_MSG_RM,
395             tree_after_removal,
396 2           *parents == NULL ? 0 : 1,
397             (const git_commit **) parents);
398              
399 2 50         if (error < 0)
400 0           goto cleanup;
401              
402 2 50         if (notes_commit_out)
403 2           git_oid_cpy(notes_commit_out, &oid);
404              
405             cleanup:
406 4           git_tree_free(tree_after_removal);
407 4           return error;
408             }
409              
410 12           static int note_get_default_ref(char **out, git_repository *repo)
411             {
412             git_config *cfg;
413 12           int ret = git_repository_config__weakptr(&cfg, repo);
414              
415 12 50         *out = (ret != 0) ? NULL : git_config__get_string_force(
416             cfg, "core.notesref", GIT_NOTES_DEFAULT_REF);
417              
418 12           return ret;
419             }
420              
421 17           static int normalize_namespace(char **out, git_repository *repo, const char *notes_ref)
422             {
423 17 100         if (notes_ref) {
424 7           *out = git__strdup(notes_ref);
425 7 50         GIT_ERROR_CHECK_ALLOC(*out);
426 7           return 0;
427             }
428              
429 10           return note_get_default_ref(out, repo);
430             }
431              
432 17           static int retrieve_note_commit(
433             git_commit **commit_out,
434             char **notes_ref_out,
435             git_repository *repo,
436             const char *notes_ref)
437             {
438             int error;
439             git_oid oid;
440              
441 17 50         if ((error = normalize_namespace(notes_ref_out, repo, notes_ref)) < 0)
442 0           return error;
443              
444 17 100         if ((error = git_reference_name_to_id(&oid, repo, *notes_ref_out)) < 0)
445 3           return error;
446              
447 14 50         if (git_commit_lookup(commit_out, repo, &oid) < 0)
448 0           return error;
449              
450 17           return 0;
451             }
452              
453 8           int git_note_commit_read(
454             git_note **out,
455             git_repository *repo,
456             git_commit *notes_commit,
457             const git_oid *oid)
458             {
459             int error;
460 8           git_tree *tree = NULL;
461             char target[GIT_OID_HEXSZ + 1];
462              
463 8           git_oid_tostr(target, sizeof(target), oid);
464              
465 8 50         if ((error = git_commit_tree(&tree, notes_commit)) < 0)
466 0           goto cleanup;
467              
468 8           error = note_lookup(out, repo, notes_commit, tree, target);
469              
470             cleanup:
471 8           git_tree_free(tree);
472 8           return error;
473             }
474              
475 8           int git_note_read(git_note **out, git_repository *repo,
476             const char *notes_ref_in, const git_oid *oid)
477             {
478             int error;
479 8           char *notes_ref = NULL;
480 8           git_commit *commit = NULL;
481              
482 8           error = retrieve_note_commit(&commit, ¬es_ref, repo, notes_ref_in);
483              
484 8 50         if (error < 0)
485 0           goto cleanup;
486              
487 8           error = git_note_commit_read(out, repo, commit, oid);
488              
489             cleanup:
490 8           git__free(notes_ref);
491 8           git_commit_free(commit);
492 8           return error;
493             }
494              
495 4           int git_note_commit_create(
496             git_oid *notes_commit_out,
497             git_oid *notes_blob_out,
498             git_repository *repo,
499             git_commit *parent,
500             const git_signature *author,
501             const git_signature *committer,
502             const git_oid *oid,
503             const char *note,
504             int allow_note_overwrite)
505             {
506             int error;
507 4           git_tree *tree = NULL;
508             char target[GIT_OID_HEXSZ + 1];
509              
510 4           git_oid_tostr(target, sizeof(target), oid);
511              
512 4 100         if (parent != NULL && (error = git_commit_tree(&tree, parent)) < 0)
    50          
513 0           goto cleanup;
514              
515 4           error = note_write(notes_commit_out, notes_blob_out, repo, author,
516             committer, NULL, note, tree, target, &parent, allow_note_overwrite);
517              
518 4 100         if (error < 0)
519 1           goto cleanup;
520              
521             cleanup:
522 4           git_tree_free(tree);
523 4           return error;
524             }
525              
526 5           int git_note_create(
527             git_oid *out,
528             git_repository *repo,
529             const char *notes_ref_in,
530             const git_signature *author,
531             const git_signature *committer,
532             const git_oid *oid,
533             const char *note,
534             int allow_note_overwrite)
535             {
536             int error;
537 5           char *notes_ref = NULL;
538 5           git_commit *existing_notes_commit = NULL;
539 5           git_reference *ref = NULL;
540             git_oid notes_blob_oid, notes_commit_oid;
541              
542 5           error = retrieve_note_commit(&existing_notes_commit, ¬es_ref,
543             repo, notes_ref_in);
544              
545 5 100         if (error < 0 && error != GIT_ENOTFOUND)
    100          
546 1           goto cleanup;
547              
548 4           error = git_note_commit_create(¬es_commit_oid,
549             ¬es_blob_oid,
550             repo, existing_notes_commit, author,
551             committer, oid, note,
552             allow_note_overwrite);
553 4 100         if (error < 0)
554 1           goto cleanup;
555              
556 3           error = git_reference_create(&ref, repo, notes_ref,
557             ¬es_commit_oid, 1, NULL);
558              
559 3 50         if (out != NULL)
560 0           git_oid_cpy(out, ¬es_blob_oid);
561              
562             cleanup:
563 5           git__free(notes_ref);
564 5           git_commit_free(existing_notes_commit);
565 5           git_reference_free(ref);
566 5           return error;
567             }
568              
569 4           int git_note_commit_remove(
570             git_oid *notes_commit_out,
571             git_repository *repo,
572             git_commit *notes_commit,
573             const git_signature *author,
574             const git_signature *committer,
575             const git_oid *oid)
576             {
577             int error;
578 4           git_tree *tree = NULL;
579             char target[GIT_OID_HEXSZ + 1];
580              
581 4           git_oid_tostr(target, sizeof(target), oid);
582              
583 4 50         if ((error = git_commit_tree(&tree, notes_commit)) < 0)
584 0           goto cleanup;
585              
586 4           error = note_remove(notes_commit_out,
587             repo, author, committer, NULL, tree, target, ¬es_commit);
588              
589             cleanup:
590 4           git_tree_free(tree);
591 4           return error;
592             }
593              
594 4           int git_note_remove(git_repository *repo, const char *notes_ref_in,
595             const git_signature *author, const git_signature *committer,
596             const git_oid *oid)
597             {
598             int error;
599 4           char *notes_ref_target = NULL;
600 4           git_commit *existing_notes_commit = NULL;
601             git_oid new_notes_commit;
602 4           git_reference *notes_ref = NULL;
603              
604 4           error = retrieve_note_commit(&existing_notes_commit, ¬es_ref_target,
605             repo, notes_ref_in);
606              
607 4 50         if (error < 0)
608 0           goto cleanup;
609              
610 4           error = git_note_commit_remove(&new_notes_commit, repo,
611             existing_notes_commit, author, committer, oid);
612 4 100         if (error < 0)
613 2           goto cleanup;
614              
615 2           error = git_reference_create(¬es_ref, repo, notes_ref_target,
616             &new_notes_commit, 1, NULL);
617              
618             cleanup:
619 4           git__free(notes_ref_target);
620 4           git_reference_free(notes_ref);
621 4           git_commit_free(existing_notes_commit);
622 4           return error;
623             }
624              
625 2           int git_note_default_ref(git_buf *out, git_repository *repo)
626             {
627             char *default_ref;
628             int error;
629              
630 2 50         assert(out && repo);
    50          
631              
632 2           git_buf_sanitize(out);
633              
634 2 50         if ((error = note_get_default_ref(&default_ref, repo)) < 0)
635 0           return error;
636              
637 2           git_buf_attach(out, default_ref, strlen(default_ref));
638 2           return 0;
639             }
640              
641 1           const git_signature *git_note_committer(const git_note *note)
642             {
643 1 50         assert(note);
644 1           return note->committer;
645             }
646              
647 1           const git_signature *git_note_author(const git_note *note)
648             {
649 1 50         assert(note);
650 1           return note->author;
651             }
652              
653 3           const char * git_note_message(const git_note *note)
654             {
655 3 50         assert(note);
656 3           return note->message;
657             }
658              
659 3           const git_oid * git_note_id(const git_note *note)
660             {
661 3 50         assert(note);
662 3           return ¬e->id;
663             }
664              
665 6           void git_note_free(git_note *note)
666             {
667 6 50         if (note == NULL)
668 0           return;
669              
670 6           git_signature_free(note->committer);
671 6           git_signature_free(note->author);
672 6           git__free(note->message);
673 6           git__free(note);
674             }
675              
676 0           static int process_entry_path(
677             const char* entry_path,
678             git_oid *annotated_object_id)
679             {
680 0           int error = 0;
681 0           size_t i = 0, j = 0, len;
682 0           git_buf buf = GIT_BUF_INIT;
683              
684 0 0         if ((error = git_buf_puts(&buf, entry_path)) < 0)
685 0           goto cleanup;
686              
687 0           len = git_buf_len(&buf);
688              
689 0 0         while (i < len) {
690 0 0         if (buf.ptr[i] == '/') {
691 0           i++;
692 0           continue;
693             }
694              
695 0 0         if (git__fromhex(buf.ptr[i]) < 0) {
696             /* This is not a note entry */
697 0           goto cleanup;
698             }
699              
700 0 0         if (i != j)
701 0           buf.ptr[j] = buf.ptr[i];
702              
703 0           i++;
704 0           j++;
705             }
706              
707 0           buf.ptr[j] = '\0';
708 0           buf.size = j;
709              
710 0 0         if (j != GIT_OID_HEXSZ) {
711             /* This is not a note entry */
712 0           goto cleanup;
713             }
714              
715 0           error = git_oid_fromstr(annotated_object_id, buf.ptr);
716              
717             cleanup:
718 0           git_buf_dispose(&buf);
719 0           return error;
720             }
721              
722 0           int git_note_foreach(
723             git_repository *repo,
724             const char *notes_ref,
725             git_note_foreach_cb note_cb,
726             void *payload)
727             {
728             int error;
729 0           git_note_iterator *iter = NULL;
730             git_oid note_id, annotated_id;
731              
732 0 0         if ((error = git_note_iterator_new(&iter, repo, notes_ref)) < 0)
733 0           return error;
734              
735 0 0         while (!(error = git_note_next(¬e_id, &annotated_id, iter))) {
736 0 0         if ((error = note_cb(¬e_id, &annotated_id, payload)) != 0) {
737 0           git_error_set_after_callback(error);
738 0           break;
739             }
740             }
741              
742 0 0         if (error == GIT_ITEROVER)
743 0           error = 0;
744              
745 0           git_note_iterator_free(iter);
746 0           return error;
747             }
748              
749 0           void git_note_iterator_free(git_note_iterator *it)
750             {
751 0 0         if (it == NULL)
752 0           return;
753              
754 0           git_iterator_free(it);
755             }
756              
757 0           int git_note_commit_iterator_new(
758             git_note_iterator **it,
759             git_commit *notes_commit)
760             {
761             int error;
762             git_tree *tree;
763              
764 0 0         if ((error = git_commit_tree(&tree, notes_commit)) < 0)
765 0           goto cleanup;
766              
767 0 0         if ((error = git_iterator_for_tree(it, tree, NULL)) < 0)
768 0           git_iterator_free(*it);
769              
770             cleanup:
771 0           git_tree_free(tree);
772              
773 0           return error;
774             }
775              
776 0           int git_note_iterator_new(
777             git_note_iterator **it,
778             git_repository *repo,
779             const char *notes_ref_in)
780             {
781             int error;
782 0           git_commit *commit = NULL;
783             char *notes_ref;
784              
785 0           error = retrieve_note_commit(&commit, ¬es_ref, repo, notes_ref_in);
786 0 0         if (error < 0)
787 0           goto cleanup;
788              
789 0           error = git_note_commit_iterator_new(it, commit);
790              
791             cleanup:
792 0           git__free(notes_ref);
793 0           git_commit_free(commit);
794              
795 0           return error;
796             }
797              
798 0           int git_note_next(
799             git_oid* note_id,
800             git_oid* annotated_id,
801             git_note_iterator *it)
802             {
803             int error;
804             const git_index_entry *item;
805              
806 0 0         if ((error = git_iterator_current(&item, it)) < 0)
807 0           return error;
808              
809 0           git_oid_cpy(note_id, &item->id);
810              
811 0 0         if ((error = process_entry_path(item->path, annotated_id)) < 0)
812 0           return error;
813              
814 0 0         if ((error = git_iterator_advance(NULL, it)) < 0 && error != GIT_ITEROVER)
    0          
815 0           return error;
816              
817 0           return 0;
818             }