4 * Copyright (c) 2010 Johan Herland <johan@herland.net>
6 * Based on git-notes.sh by Johannes Schindelin,
7 * and builtin-tag.c by Kristian Høgsberg and Carlos Rica.
17 #include "run-command.h"
18 #include "parse-options.h"
19 #include "string-list.h"
21 static const char * const git_notes_usage
[] = {
22 "git notes [list [<object>]]",
23 "git notes add [-f] [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]",
24 "git notes copy [-f] <from-object> <to-object>",
25 "git notes append [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]",
26 "git notes edit [<object>]",
27 "git notes show [<object>]",
28 "git notes remove [<object>]",
33 static const char note_template
[] =
36 "# Write/edit the notes for the following object:\n"
45 static int list_each_note(const unsigned char *object_sha1
,
46 const unsigned char *note_sha1
, char *note_path
,
49 printf("%s %s\n", sha1_to_hex(note_sha1
), sha1_to_hex(object_sha1
));
53 static void write_note_data(int fd
, const unsigned char *sha1
)
56 enum object_type type
;
57 char *buf
= read_sha1_file(sha1
, &type
, &size
);
60 write_or_die(fd
, buf
, size
);
65 static void write_commented_object(int fd
, const unsigned char *object
)
67 const char *show_args
[5] =
68 {"show", "--stat", "--no-notes", sha1_to_hex(object
), NULL
};
69 struct child_process show
;
70 struct strbuf buf
= STRBUF_INIT
;
73 /* Invoke "git show --stat --no-notes $object" */
74 memset(&show
, 0, sizeof(show
));
75 show
.argv
= show_args
;
80 if (start_command(&show
))
81 die("unable to start 'show' for object '%s'",
84 /* Open the output as FILE* so strbuf_getline() can be used. */
85 show_out
= xfdopen(show
.out
, "r");
87 die_errno("can't fdopen 'show' output fd");
89 /* Prepend "# " to each output line and write result to 'fd' */
90 while (strbuf_getline(&buf
, show_out
, '\n') != EOF
) {
91 write_or_die(fd
, "# ", 2);
92 write_or_die(fd
, buf
.buf
, buf
.len
);
93 write_or_die(fd
, "\n", 1);
97 die_errno("failed to close pipe to 'show' for object '%s'",
99 if (finish_command(&show
))
100 die("failed to finish 'show' for object '%s'",
101 sha1_to_hex(object
));
104 static void create_note(const unsigned char *object
, struct msg_arg
*msg
,
105 int append_only
, const unsigned char *prev
,
106 unsigned char *result
)
110 if (msg
->use_editor
|| !msg
->given
) {
113 /* write the template message before editing: */
114 path
= git_pathdup("NOTES_EDITMSG");
115 fd
= open(path
, O_CREAT
| O_TRUNC
| O_WRONLY
, 0600);
117 die_errno("could not create file '%s'", path
);
120 write_or_die(fd
, msg
->buf
.buf
, msg
->buf
.len
);
121 else if (prev
&& !append_only
)
122 write_note_data(fd
, prev
);
123 write_or_die(fd
, note_template
, strlen(note_template
));
125 write_commented_object(fd
, object
);
128 strbuf_reset(&(msg
->buf
));
130 if (launch_editor(path
, &(msg
->buf
), NULL
)) {
131 die("Please supply the note contents using either -m" \
134 stripspace(&(msg
->buf
), 1);
137 if (prev
&& append_only
) {
138 /* Append buf to previous note contents */
140 enum object_type type
;
141 char *prev_buf
= read_sha1_file(prev
, &type
, &size
);
143 strbuf_grow(&(msg
->buf
), size
+ 1);
144 if (msg
->buf
.len
&& prev_buf
&& size
)
145 strbuf_insert(&(msg
->buf
), 0, "\n", 1);
146 if (prev_buf
&& size
)
147 strbuf_insert(&(msg
->buf
), 0, prev_buf
, size
);
152 fprintf(stderr
, "Removing note for object %s\n",
153 sha1_to_hex(object
));
156 if (write_sha1_file(msg
->buf
.buf
, msg
->buf
.len
, blob_type
, result
)) {
157 error("unable to write note object");
159 error("The note contents has been left in %s",
166 unlink_or_warn(path
);
171 static int parse_msg_arg(const struct option
*opt
, const char *arg
, int unset
)
173 struct msg_arg
*msg
= opt
->value
;
178 strbuf_grow(&(msg
->buf
), strlen(arg
) + 2);
180 strbuf_addstr(&(msg
->buf
), "\n");
181 strbuf_addstr(&(msg
->buf
), arg
);
182 stripspace(&(msg
->buf
), 0);
188 static int parse_file_arg(const struct option
*opt
, const char *arg
, int unset
)
190 struct msg_arg
*msg
= opt
->value
;
196 strbuf_addstr(&(msg
->buf
), "\n");
197 if (!strcmp(arg
, "-")) {
198 if (strbuf_read(&(msg
->buf
), 0, 1024) < 0)
199 die_errno("cannot read '%s'", arg
);
200 } else if (strbuf_read_file(&(msg
->buf
), arg
, 1024) < 0)
201 die_errno("could not open or read '%s'", arg
);
202 stripspace(&(msg
->buf
), 0);
208 static int parse_reuse_arg(const struct option
*opt
, const char *arg
, int unset
)
210 struct msg_arg
*msg
= opt
->value
;
212 unsigned char object
[20];
213 enum object_type type
;
220 strbuf_addstr(&(msg
->buf
), "\n");
222 if (get_sha1(arg
, object
))
223 die("Failed to resolve '%s' as a valid ref.", arg
);
224 if (!(buf
= read_sha1_file(object
, &type
, &len
)) || !len
) {
226 die("Failed to read object '%s'.", arg
);;
228 strbuf_add(&(msg
->buf
), buf
, len
);
235 static int parse_reedit_arg(const struct option
*opt
, const char *arg
, int unset
)
237 struct msg_arg
*msg
= opt
->value
;
239 return parse_reuse_arg(opt
, arg
, unset
);
242 int commit_notes(struct notes_tree
*t
, const char *msg
)
244 struct commit_list
*parent
;
245 unsigned char tree_sha1
[20], prev_commit
[20], new_commit
[20];
246 struct strbuf buf
= STRBUF_INIT
;
249 t
= &default_notes_tree
;
250 if (!t
->initialized
|| !t
->ref
|| !*t
->ref
)
251 die("Cannot commit uninitialized/unreferenced notes tree");
253 return 0; /* don't have to commit an unchanged tree */
255 /* Prepare commit message and reflog message */
256 strbuf_addstr(&buf
, "notes: "); /* commit message starts at index 7 */
257 strbuf_addstr(&buf
, msg
);
258 if (buf
.buf
[buf
.len
- 1] != '\n')
259 strbuf_addch(&buf
, '\n'); /* Make sure msg ends with newline */
261 /* Convert notes tree to tree object */
262 if (write_notes_tree(t
, tree_sha1
))
263 die("Failed to write current notes tree to database");
265 /* Create new commit for the tree object */
266 if (!read_ref(t
->ref
, prev_commit
)) { /* retrieve parent commit */
267 parent
= xmalloc(sizeof(*parent
));
268 parent
->item
= lookup_commit(prev_commit
);
271 hashclr(prev_commit
);
274 if (commit_tree(buf
.buf
+ 7, tree_sha1
, parent
, new_commit
, NULL
))
275 die("Failed to commit notes tree to database");
277 /* Update notes ref with new commit */
278 update_ref(buf
.buf
, t
->ref
, new_commit
, prev_commit
, 0, DIE_ON_ERR
);
280 strbuf_release(&buf
);
285 combine_notes_fn
*parse_combine_notes_fn(const char *v
)
287 if (!strcasecmp(v
, "overwrite"))
288 return combine_notes_overwrite
;
289 else if (!strcasecmp(v
, "ignore"))
290 return combine_notes_ignore
;
291 else if (!strcasecmp(v
, "concatenate"))
292 return combine_notes_concatenate
;
297 static int notes_rewrite_config(const char *k
, const char *v
, void *cb
)
299 struct notes_rewrite_cfg
*c
= cb
;
300 if (!prefixcmp(k
, "notes.rewrite.") && !strcmp(k
+14, c
->cmd
)) {
301 c
->enabled
= git_config_bool(k
, v
);
303 } else if (!c
->mode_from_env
&& !strcmp(k
, "notes.rewritemode")) {
305 config_error_nonbool(k
);
306 c
->combine
= parse_combine_notes_fn(v
);
308 error("Bad notes.rewriteMode value: '%s'", v
);
312 } else if (!c
->refs_from_env
&& !strcmp(k
, "notes.rewriteref")) {
313 /* note that a refs/ prefix is implied in the
314 * underlying for_each_glob_ref */
315 if (!prefixcmp(v
, "refs/notes/"))
316 string_list_add_refs_by_glob(c
->refs
, v
);
318 warning("Refusing to rewrite notes in %s"
319 " (outside of refs/notes/)", v
);
327 struct notes_rewrite_cfg
*init_copy_notes_for_rewrite(const char *cmd
)
329 struct notes_rewrite_cfg
*c
= xmalloc(sizeof(struct notes_rewrite_cfg
));
330 const char *rewrite_mode_env
= getenv(GIT_NOTES_REWRITE_MODE_ENVIRONMENT
);
331 const char *rewrite_refs_env
= getenv(GIT_NOTES_REWRITE_REF_ENVIRONMENT
);
334 c
->combine
= combine_notes_concatenate
;
335 c
->refs
= xcalloc(1, sizeof(struct string_list
));
336 c
->refs
->strdup_strings
= 1;
337 c
->refs_from_env
= 0;
338 c
->mode_from_env
= 0;
339 if (rewrite_mode_env
) {
340 c
->mode_from_env
= 1;
341 c
->combine
= parse_combine_notes_fn(rewrite_mode_env
);
343 error("Bad " GIT_NOTES_REWRITE_MODE_ENVIRONMENT
344 " value: '%s'", rewrite_mode_env
);
346 if (rewrite_refs_env
) {
347 c
->refs_from_env
= 1;
348 string_list_add_refs_from_colon_sep(c
->refs
, rewrite_refs_env
);
350 git_config(notes_rewrite_config
, c
);
351 if (!c
->enabled
|| !c
->refs
->nr
) {
352 string_list_clear(c
->refs
, 0);
357 c
->trees
= load_notes_trees(c
->refs
);
358 string_list_clear(c
->refs
, 0);
363 int copy_note_for_rewrite(struct notes_rewrite_cfg
*c
,
364 const unsigned char *from_obj
, const unsigned char *to_obj
)
368 for (i
= 0; c
->trees
[i
]; i
++)
369 ret
= copy_note(c
->trees
[i
], from_obj
, to_obj
, 1, c
->combine
) || ret
;
373 void finish_copy_notes_for_rewrite(struct notes_rewrite_cfg
*c
)
376 for (i
= 0; c
->trees
[i
]; i
++) {
377 commit_notes(c
->trees
[i
], "Notes added by 'git notes copy'");
378 free_notes(c
->trees
[i
]);
384 int notes_copy_from_stdin(int force
, const char *rewrite_cmd
)
386 struct strbuf buf
= STRBUF_INIT
;
387 struct notes_rewrite_cfg
*c
= NULL
;
388 struct notes_tree
*t
;
392 c
= init_copy_notes_for_rewrite(rewrite_cmd
);
396 init_notes(NULL
, NULL
, NULL
, 0);
397 t
= &default_notes_tree
;
400 while (strbuf_getline(&buf
, stdin
, '\n') != EOF
) {
401 unsigned char from_obj
[20], to_obj
[20];
402 struct strbuf
**split
;
405 split
= strbuf_split(&buf
, ' ');
406 if (!split
[0] || !split
[1])
407 die("Malformed input line: '%s'.", buf
.buf
);
408 strbuf_rtrim(split
[0]);
409 strbuf_rtrim(split
[1]);
410 if (get_sha1(split
[0]->buf
, from_obj
))
411 die("Failed to resolve '%s' as a valid ref.", split
[0]->buf
);
412 if (get_sha1(split
[1]->buf
, to_obj
))
413 die("Failed to resolve '%s' as a valid ref.", split
[1]->buf
);
416 err
= copy_note_for_rewrite(c
, from_obj
, to_obj
);
418 err
= copy_note(t
, from_obj
, to_obj
, force
,
419 combine_notes_overwrite
);
422 error("Failed to copy notes from '%s' to '%s'",
423 split
[0]->buf
, split
[1]->buf
);
427 strbuf_list_free(split
);
431 commit_notes(t
, "Notes added by 'git notes copy'");
434 finish_copy_notes_for_rewrite(c
);
439 int cmd_notes(int argc
, const char **argv
, const char *prefix
)
441 struct notes_tree
*t
;
442 unsigned char object
[20], from_obj
[20], new_note
[20];
443 const unsigned char *note
;
444 const char *object_ref
;
447 int list
= 0, add
= 0, copy
= 0, append
= 0, edit
= 0, show
= 0,
448 remove
= 0, prune
= 0, force
= 0, from_stdin
= 0;
449 int given_object
= 0, i
= 1, retval
= 0;
450 struct msg_arg msg
= { 0, 0, STRBUF_INIT
};
451 const char *rewrite_cmd
= NULL
;
452 const char *override_notes_ref
= NULL
;
453 struct option options
[] = {
454 OPT_GROUP("Notes options"),
455 OPT_CALLBACK('m', "message", &msg
, "MSG",
456 "note contents as a string", parse_msg_arg
),
457 OPT_CALLBACK('F', "file", &msg
, "FILE",
458 "note contents in a file", parse_file_arg
),
459 OPT_CALLBACK('c', "reedit-message", &msg
, "OBJECT",
460 "reuse and edit specified note object", parse_reedit_arg
),
461 OPT_CALLBACK('C', "reuse-message", &msg
, "OBJECT",
462 "reuse specified note object", parse_reuse_arg
),
463 OPT_BOOLEAN('f', "force", &force
, "replace existing notes"),
464 OPT_BOOLEAN(0, "stdin", &from_stdin
, "read objects from stdin"),
465 OPT_STRING(0, "ref", &override_notes_ref
, "notes_ref",
466 "use notes from <notes_ref>"),
467 OPT_STRING(0, "for-rewrite", &rewrite_cmd
, "command",
468 "load rewriting config for <command> (implies --stdin)"),
472 git_config(git_default_config
, NULL
);
474 argc
= parse_options(argc
, argv
, prefix
, options
, git_notes_usage
, 0);
476 if (override_notes_ref
) {
477 struct strbuf sb
= STRBUF_INIT
;
478 if (!prefixcmp(override_notes_ref
, "refs/notes/"))
480 else if (!prefixcmp(override_notes_ref
, "notes/"))
481 strbuf_addstr(&sb
, "refs/");
483 strbuf_addstr(&sb
, "refs/notes/");
484 strbuf_addstr(&sb
, override_notes_ref
);
485 setenv("GIT_NOTES_REF", sb
.buf
, 1);
489 if (argc
&& !strcmp(argv
[0], "list"))
491 else if (argc
&& !strcmp(argv
[0], "add"))
493 else if (argc
&& !strcmp(argv
[0], "copy"))
495 else if (argc
&& !strcmp(argv
[0], "append"))
497 else if (argc
&& !strcmp(argv
[0], "edit"))
499 else if (argc
&& !strcmp(argv
[0], "show"))
501 else if (argc
&& !strcmp(argv
[0], "remove"))
503 else if (argc
&& !strcmp(argv
[0], "prune"))
506 list
= 1; /* Default to 'list' if no other subcommand given */
510 if (list
+ add
+ copy
+ append
+ edit
+ show
+ remove
+ prune
!= 1)
511 usage_with_options(git_notes_usage
, options
);
513 if (msg
.given
&& !(add
|| append
|| edit
)) {
514 error("cannot use -m/-F/-c/-C options with %s subcommand.",
516 usage_with_options(git_notes_usage
, options
);
519 if (msg
.given
&& edit
) {
520 fprintf(stderr
, "The -m/-F/-c/-C options have been deprecated "
521 "for the 'edit' subcommand.\n"
522 "Please use 'git notes add -f -m/-F/-c/-C' instead.\n");
525 if (force
&& !(add
|| copy
)) {
526 error("cannot use -f option with %s subcommand.", argv
[0]);
527 usage_with_options(git_notes_usage
, options
);
530 if (!copy
&& rewrite_cmd
) {
531 error("cannot use --for-rewrite with %s subcommand.", argv
[0]);
532 usage_with_options(git_notes_usage
, options
);
534 if (!copy
&& from_stdin
) {
535 error("cannot use --stdin with %s subcommand.", argv
[0]);
536 usage_with_options(git_notes_usage
, options
);
540 const char *from_ref
;
541 if (from_stdin
|| rewrite_cmd
) {
543 error("too many parameters");
544 usage_with_options(git_notes_usage
, options
);
546 return notes_copy_from_stdin(force
, rewrite_cmd
);
550 error("too few parameters");
551 usage_with_options(git_notes_usage
, options
);
553 from_ref
= argv
[i
++];
554 if (get_sha1(from_ref
, from_obj
))
555 die("Failed to resolve '%s' as a valid ref.", from_ref
);
558 given_object
= argc
> i
;
559 object_ref
= given_object ? argv
[i
++] : "HEAD";
561 if (argc
> i
|| (prune
&& given_object
)) {
562 error("too many parameters");
563 usage_with_options(git_notes_usage
, options
);
566 if (get_sha1(object_ref
, object
))
567 die("Failed to resolve '%s' as a valid ref.", object_ref
);
569 init_notes(NULL
, NULL
, NULL
, 0);
570 t
= &default_notes_tree
;
572 if (prefixcmp(t
->ref
, "refs/notes/"))
573 die("Refusing to %s notes in %s (outside of refs/notes/)",
576 note
= get_note(t
, object
);
583 puts(sha1_to_hex(note
));
587 retval
= for_each_note(t
, 0, list_each_note
, NULL
);
594 if ((list
|| show
) && !note
) {
595 error("No note found for object %s.", sha1_to_hex(object
));
599 const char *show_args
[3] = {"show", sha1_to_hex(note
), NULL
};
600 retval
= execv_git_cmd(show_args
);
604 /* add/append/edit/remove/prune command */
606 if ((add
|| copy
) && note
) {
608 error("Cannot %s notes. Found existing notes for object"
609 " %s. Use '-f' to overwrite existing notes",
610 argv
[0], sha1_to_hex(object
));
614 fprintf(stderr
, "Overwriting existing notes for object %s\n",
615 sha1_to_hex(object
));
621 strbuf_reset(&(msg
.buf
));
629 const unsigned char *from_note
= get_note(t
, from_obj
);
631 error("Missing notes on source object %s. Cannot copy.",
632 sha1_to_hex(from_obj
));
636 hashcpy(new_note
, from_note
);
638 create_note(object
, &msg
, append
, note
, new_note
);
640 if (is_null_sha1(new_note
))
641 remove_note(t
, object
);
643 add_note(t
, object
, new_note
, combine_notes_overwrite
);
646 snprintf(logmsg
, sizeof(logmsg
), "Notes %s by 'git notes %s'",
647 is_null_sha1(new_note
) ?
"removed" : "added", argv
[0]);
648 commit_notes(t
, logmsg
);
652 strbuf_release(&(msg
.buf
));