]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/notes.c
cocci: apply the "object-store.h" part of "the_repository.pending"
[thirdparty/git.git] / builtin / notes.c
CommitLineData
cd067d3b
JH
1/*
2 * Builtin "git notes"
3 *
4 * Copyright (c) 2010 Johan Herland <johan@herland.net>
5 *
6 * Based on git-notes.sh by Johannes Schindelin,
09b7e220 7 * and builtin/tag.c by Kristian Høgsberg and Carlos Rica.
cd067d3b
JH
8 */
9
10#include "cache.h"
b2141fc1 11#include "config.h"
cd067d3b
JH
12#include "builtin.h"
13#include "notes.h"
cbd53a21 14#include "object-store.h"
2122f675 15#include "repository.h"
cd067d3b 16#include "blob.h"
cf394719 17#include "pretty.h"
cd067d3b 18#include "refs.h"
d807c4a0 19#include "exec-cmd.h"
cd067d3b
JH
20#include "run-command.h"
21#include "parse-options.h"
6956f858 22#include "string-list.h"
75ef3f4a 23#include "notes-merge.h"
49c24704 24#include "notes-utils.h"
ac6c561b 25#include "worktree.h"
f50fee4a 26
cd067d3b 27static const char * const git_notes_usage[] = {
9c9b4f2f
AH
28 N_("git notes [--ref <notes-ref>] [list [<object>]]"),
29 N_("git notes [--ref <notes-ref>] add [-f] [--allow-empty] [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]"),
30 N_("git notes [--ref <notes-ref>] copy [-f] <from-object> <to-object>"),
31 N_("git notes [--ref <notes-ref>] append [--allow-empty] [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]"),
32 N_("git notes [--ref <notes-ref>] edit [--allow-empty] [<object>]"),
33 N_("git notes [--ref <notes-ref>] show [<object>]"),
34 N_("git notes [--ref <notes-ref>] merge [-v | -q] [-s <strategy>] <notes-ref>"),
959d670d
JNA
35 "git notes merge --commit [-v | -q]",
36 "git notes merge --abort [-v | -q]",
9c9b4f2f 37 N_("git notes [--ref <notes-ref>] remove [<object>...]"),
e54b6335 38 N_("git notes [--ref <notes-ref>] prune [-n] [-v]"),
9c9b4f2f 39 N_("git notes [--ref <notes-ref>] get-ref"),
74884b52
SB
40 NULL
41};
42
43static const char * const git_notes_list_usage[] = {
e6b895ef 44 N_("git notes [list [<object>]]"),
74884b52
SB
45 NULL
46};
47
48static const char * const git_notes_add_usage[] = {
e6b895ef 49 N_("git notes add [<options>] [<object>]"),
74884b52
SB
50 NULL
51};
52
53static const char * const git_notes_copy_usage[] = {
e6b895ef
NTND
54 N_("git notes copy [<options>] <from-object> <to-object>"),
55 N_("git notes copy --stdin [<from-object> <to-object>]..."),
74884b52
SB
56 NULL
57};
58
59static const char * const git_notes_append_usage[] = {
e6b895ef 60 N_("git notes append [<options>] [<object>]"),
74884b52
SB
61 NULL
62};
63
64static const char * const git_notes_edit_usage[] = {
e6b895ef 65 N_("git notes edit [<object>]"),
74884b52
SB
66 NULL
67};
68
69static const char * const git_notes_show_usage[] = {
e6b895ef 70 N_("git notes show [<object>]"),
74884b52
SB
71 NULL
72};
73
75ef3f4a 74static const char * const git_notes_merge_usage[] = {
9c9b4f2f 75 N_("git notes merge [<options>] <notes-ref>"),
e6b895ef
NTND
76 N_("git notes merge --commit [<options>]"),
77 N_("git notes merge --abort [<options>]"),
75ef3f4a
JH
78 NULL
79};
80
74884b52 81static const char * const git_notes_remove_usage[] = {
e6b895ef 82 N_("git notes remove [<object>]"),
74884b52
SB
83 NULL
84};
85
86static const char * const git_notes_prune_usage[] = {
e6b895ef 87 N_("git notes prune [<options>]"),
cd067d3b
JH
88 NULL
89};
90
618cd757 91static const char * const git_notes_get_ref_usage[] = {
959d670d 92 "git notes get-ref",
618cd757
JH
93 NULL
94};
95
cd067d3b 96static const char note_template[] =
996ee6d2 97 N_("Write/edit the notes for the following object:");
cd067d3b 98
bebf5c04 99struct note_data {
348f199b 100 int given;
0691cff7 101 int use_editor;
4282af0f 102 char *edit_path;
348f199b
JH
103 struct strbuf buf;
104};
105
4282af0f
JH
106static void free_note_data(struct note_data *d)
107{
108 if (d->edit_path) {
109 unlink_or_warn(d->edit_path);
110 free(d->edit_path);
111 }
112 strbuf_release(&d->buf);
113}
114
490bc83a 115static int list_each_note(const struct object_id *object_oid,
116 const struct object_id *note_oid, char *note_path,
e397421a
JH
117 void *cb_data)
118{
490bc83a 119 printf("%s %s\n", oid_to_hex(note_oid), oid_to_hex(object_oid));
e397421a
JH
120 return 0;
121}
122
e8adba25 123static void copy_obj_to_fd(int fd, const struct object_id *oid)
cd067d3b
JH
124{
125 unsigned long size;
126 enum object_type type;
bc726bd0 127 char *buf = repo_read_object_file(the_repository, oid, &type, &size);
cd067d3b
JH
128 if (buf) {
129 if (size)
130 write_or_die(fd, buf, size);
131 free(buf);
132 }
133}
134
bb7e4739 135static void write_commented_object(int fd, const struct object_id *object)
cd067d3b 136{
d3180279 137 struct child_process show = CHILD_PROCESS_INIT;
cd067d3b 138 struct strbuf buf = STRBUF_INIT;
eff80a9f 139 struct strbuf cbuf = STRBUF_INIT;
cd067d3b
JH
140
141 /* Invoke "git show --stat --no-notes $object" */
2b709893
ÆAB
142 strvec_pushl(&show.args, "show", "--stat", "--no-notes",
143 oid_to_hex(object), NULL);
cd067d3b
JH
144 show.no_stdin = 1;
145 show.out = -1;
146 show.err = 0;
147 show.git_cmd = 1;
148 if (start_command(&show))
caeba0ef 149 die(_("unable to start 'show' for object '%s'"),
bb7e4739 150 oid_to_hex(object));
cd067d3b 151
eff80a9f
JH
152 if (strbuf_read(&buf, show.out, 0) < 0)
153 die_errno(_("could not read 'show' output"));
154 strbuf_add_commented_lines(&cbuf, buf.buf, buf.len);
155 write_or_die(fd, cbuf.buf, cbuf.len);
cd067d3b 156
eff80a9f 157 strbuf_release(&cbuf);
cd067d3b 158 strbuf_release(&buf);
eff80a9f 159
cd067d3b 160 if (finish_command(&show))
caeba0ef 161 die(_("failed to finish 'show' for object '%s'"),
bb7e4739 162 oid_to_hex(object));
cd067d3b
JH
163}
164
bb7e4739 165static void prepare_note_data(const struct object_id *object, struct note_data *d,
e8adba25 166 const struct object_id *old_note)
cd067d3b 167{
bebf5c04 168 if (d->use_editor || !d->given) {
cd067d3b 169 int fd;
eff80a9f 170 struct strbuf buf = STRBUF_INIT;
cd067d3b
JH
171
172 /* write the template message before editing: */
4282af0f 173 d->edit_path = git_pathdup("NOTES_EDITMSG");
66e905b7 174 fd = xopen(d->edit_path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
cd067d3b 175
bebf5c04
JH
176 if (d->given)
177 write_or_die(fd, d->buf.buf, d->buf.len);
52694cda
JH
178 else if (old_note)
179 copy_obj_to_fd(fd, old_note);
eff80a9f
JH
180
181 strbuf_addch(&buf, '\n');
996ee6d2
VA
182 strbuf_add_commented_lines(&buf, "\n", strlen("\n"));
183 strbuf_add_commented_lines(&buf, _(note_template), strlen(_(note_template)));
3c9b01f0 184 strbuf_add_commented_lines(&buf, "\n", strlen("\n"));
eff80a9f 185 write_or_die(fd, buf.buf, buf.len);
cd067d3b
JH
186
187 write_commented_object(fd, object);
188
189 close(fd);
eff80a9f 190 strbuf_release(&buf);
bebf5c04 191 strbuf_reset(&d->buf);
cd067d3b 192
4282af0f 193 if (launch_editor(d->edit_path, &d->buf, NULL)) {
8d79589a 194 die(_("please supply the note contents using either -m or -F option"));
cd067d3b 195 }
63af4a84 196 strbuf_stripspace(&d->buf, 1);
cd067d3b 197 }
52694cda 198}
cd067d3b 199
a09c985e 200static void write_note_data(struct note_data *d, struct object_id *oid)
52694cda 201{
c80d226a 202 if (write_object_file(d->buf.buf, d->buf.len, OBJ_BLOB, oid)) {
adcd4d4c
ÆAB
203 int status = die_message(_("unable to write note object"));
204
52694cda 205 if (d->edit_path)
adcd4d4c
ÆAB
206 die_message(_("the note contents have been left in %s"),
207 d->edit_path);
208 exit(status);
cd067d3b 209 }
cd067d3b
JH
210}
211
cd067d3b
JH
212static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
213{
bebf5c04 214 struct note_data *d = opt->value;
cd067d3b 215
517fe807
JK
216 BUG_ON_OPT_NEG(unset);
217
bebf5c04
JH
218 strbuf_grow(&d->buf, strlen(arg) + 2);
219 if (d->buf.len)
220 strbuf_addch(&d->buf, '\n');
221 strbuf_addstr(&d->buf, arg);
63af4a84 222 strbuf_stripspace(&d->buf, 0);
348f199b 223
bebf5c04 224 d->given = 1;
348f199b
JH
225 return 0;
226}
227
228static int parse_file_arg(const struct option *opt, const char *arg, int unset)
229{
bebf5c04 230 struct note_data *d = opt->value;
348f199b 231
517fe807
JK
232 BUG_ON_OPT_NEG(unset);
233
bebf5c04
JH
234 if (d->buf.len)
235 strbuf_addch(&d->buf, '\n');
348f199b 236 if (!strcmp(arg, "-")) {
bebf5c04 237 if (strbuf_read(&d->buf, 0, 1024) < 0)
caeba0ef 238 die_errno(_("cannot read '%s'"), arg);
bebf5c04 239 } else if (strbuf_read_file(&d->buf, arg, 1024) < 0)
caeba0ef 240 die_errno(_("could not open or read '%s'"), arg);
63af4a84 241 strbuf_stripspace(&d->buf, 0);
348f199b 242
bebf5c04 243 d->given = 1;
cd067d3b
JH
244 return 0;
245}
246
0691cff7
JH
247static int parse_reuse_arg(const struct option *opt, const char *arg, int unset)
248{
bebf5c04 249 struct note_data *d = opt->value;
0691cff7 250 char *buf;
bb7e4739 251 struct object_id object;
0691cff7
JH
252 enum object_type type;
253 unsigned long len;
254
517fe807
JK
255 BUG_ON_OPT_NEG(unset);
256
bebf5c04
JH
257 if (d->buf.len)
258 strbuf_addch(&d->buf, '\n');
0691cff7 259
d850b7a5 260 if (repo_get_oid(the_repository, arg, &object))
8d79589a 261 die(_("failed to resolve '%s' as a valid ref."), arg);
bc726bd0 262 if (!(buf = repo_read_object_file(the_repository, &object, &type, &len)))
8d79589a 263 die(_("failed to read object '%s'."), arg);
ce8daa1e
JH
264 if (type != OBJ_BLOB) {
265 free(buf);
8d79589a 266 die(_("cannot read note data from non-blob object '%s'."), arg);
0691cff7 267 }
bebf5c04 268 strbuf_add(&d->buf, buf, len);
0691cff7
JH
269 free(buf);
270
bebf5c04 271 d->given = 1;
0691cff7
JH
272 return 0;
273}
274
275static int parse_reedit_arg(const struct option *opt, const char *arg, int unset)
276{
bebf5c04 277 struct note_data *d = opt->value;
517fe807 278 BUG_ON_OPT_NEG(unset);
bebf5c04 279 d->use_editor = 1;
0691cff7
JH
280 return parse_reuse_arg(opt, arg, unset);
281}
282
c2e86add 283static int notes_copy_from_stdin(int force, const char *rewrite_cmd)
160baa0d
TR
284{
285 struct strbuf buf = STRBUF_INIT;
6956f858 286 struct notes_rewrite_cfg *c = NULL;
ef7a8e3b 287 struct notes_tree *t = NULL;
160baa0d 288 int ret = 0;
80a14665 289 const char *msg = "Notes added by 'git notes copy'";
160baa0d 290
6956f858
TR
291 if (rewrite_cmd) {
292 c = init_copy_notes_for_rewrite(rewrite_cmd);
293 if (!c)
294 return 0;
295 } else {
ee76f92f 296 init_notes(NULL, NULL, NULL, NOTES_INIT_WRITABLE);
6956f858
TR
297 t = &default_notes_tree;
298 }
160baa0d 299
8f309aeb 300 while (strbuf_getline_lf(&buf, stdin) != EOF) {
bb7e4739 301 struct object_id from_obj, to_obj;
160baa0d
TR
302 struct strbuf **split;
303 int err;
304
305 split = strbuf_split(&buf, ' ');
306 if (!split[0] || !split[1])
8d79589a 307 die(_("malformed input line: '%s'."), buf.buf);
160baa0d
TR
308 strbuf_rtrim(split[0]);
309 strbuf_rtrim(split[1]);
d850b7a5 310 if (repo_get_oid(the_repository, split[0]->buf, &from_obj))
8d79589a 311 die(_("failed to resolve '%s' as a valid ref."), split[0]->buf);
d850b7a5 312 if (repo_get_oid(the_repository, split[1]->buf, &to_obj))
8d79589a 313 die(_("failed to resolve '%s' as a valid ref."), split[1]->buf);
160baa0d 314
6956f858 315 if (rewrite_cmd)
bb7e4739 316 err = copy_note_for_rewrite(c, &from_obj, &to_obj);
6956f858 317 else
5ee8a954 318 err = copy_note(t, &from_obj, &to_obj, force,
6956f858 319 combine_notes_overwrite);
160baa0d
TR
320
321 if (err) {
8d79589a 322 error(_("failed to copy notes from '%s' to '%s'"),
160baa0d
TR
323 split[0]->buf, split[1]->buf);
324 ret = 1;
325 }
326
327 strbuf_list_free(split);
328 }
329
6956f858 330 if (!rewrite_cmd) {
1d18d758 331 commit_notes(the_repository, t, msg);
6956f858
TR
332 free_notes(t);
333 } else {
1d18d758 334 finish_copy_notes_for_rewrite(the_repository, c, msg);
6956f858 335 }
1f3992f4 336 strbuf_release(&buf);
160baa0d
TR
337 return ret;
338}
339
ee76f92f
MH
340static struct notes_tree *init_notes_check(const char *subcommand,
341 int flags)
cd067d3b 342{
cd067d3b 343 struct notes_tree *t;
ee76f92f
MH
344 const char *ref;
345 init_notes(NULL, NULL, NULL, flags);
74884b52 346 t = &default_notes_tree;
a0b4dfa9 347
ee76f92f
MH
348 ref = (flags & NOTES_INIT_WRITABLE) ? t->update_ref : t->ref;
349 if (!starts_with(ref, "refs/notes/"))
66f5f6dc
ÆAB
350 /*
351 * TRANSLATORS: the first %s will be replaced by a git
352 * notes command: 'add', 'merge', 'remove', etc.
353 */
8d79589a 354 die(_("refusing to %s notes in %s (outside of refs/notes/)"),
ee76f92f 355 subcommand, ref);
74884b52
SB
356 return t;
357}
358
359static int list(int argc, const char **argv, const char *prefix)
cd067d3b 360{
cd067d3b 361 struct notes_tree *t;
bb7e4739 362 struct object_id object;
9ef72230 363 const struct object_id *note;
74884b52 364 int retval = -1;
cd067d3b 365 struct option options[] = {
cd067d3b
JH
366 OPT_END()
367 };
368
74884b52
SB
369 if (argc)
370 argc = parse_options(argc, argv, prefix, options,
371 git_notes_list_usage, 0);
cd067d3b 372
74884b52 373 if (1 < argc) {
b8657347 374 error(_("too many arguments"));
74884b52 375 usage_with_options(git_notes_list_usage, options);
dcf783a2
TR
376 }
377
ee76f92f 378 t = init_notes_check("list", 0);
74884b52 379 if (argc) {
d850b7a5 380 if (repo_get_oid(the_repository, argv[0], &object))
8d79589a 381 die(_("failed to resolve '%s' as a valid ref."), argv[0]);
5ee8a954 382 note = get_note(t, &object);
74884b52 383 if (note) {
9ef72230 384 puts(oid_to_hex(note));
74884b52
SB
385 retval = 0;
386 } else
8d79589a 387 retval = error(_("no note found for object %s."),
bb7e4739 388 oid_to_hex(&object));
74884b52
SB
389 } else
390 retval = for_each_note(t, 0, list_each_note, NULL);
cd067d3b 391
74884b52
SB
392 free_notes(t);
393 return retval;
394}
cd067d3b 395
84a7e35e
JH
396static int append_edit(int argc, const char **argv, const char *prefix);
397
74884b52
SB
398static int add(int argc, const char **argv, const char *prefix)
399{
d73a5b93 400 int force = 0, allow_empty = 0;
92b3385f 401 const char *object_ref;
74884b52 402 struct notes_tree *t;
bb7e4739 403 struct object_id object, new_note;
9ef72230 404 const struct object_id *note;
4282af0f 405 struct note_data d = { 0, 0, NULL, STRBUF_INIT };
cd067d3b 406 struct option options[] = {
203c8533 407 OPT_CALLBACK_F('m', "message", &d, N_("message"),
e6b895ef 408 N_("note contents as a string"), PARSE_OPT_NONEG,
203c8533
DL
409 parse_msg_arg),
410 OPT_CALLBACK_F('F', "file", &d, N_("file"),
e6b895ef 411 N_("note contents in a file"), PARSE_OPT_NONEG,
203c8533
DL
412 parse_file_arg),
413 OPT_CALLBACK_F('c', "reedit-message", &d, N_("object"),
e6b895ef 414 N_("reuse and edit specified note object"), PARSE_OPT_NONEG,
203c8533
DL
415 parse_reedit_arg),
416 OPT_CALLBACK_F('C', "reuse-message", &d, N_("object"),
e6b895ef 417 N_("reuse specified note object"), PARSE_OPT_NONEG,
203c8533 418 parse_reuse_arg),
d73a5b93
JH
419 OPT_BOOL(0, "allow-empty", &allow_empty,
420 N_("allow storing empty note")),
7a60e3bb 421 OPT__FORCE(&force, N_("replace existing notes"), PARSE_OPT_NOCOMPLETE),
cd067d3b
JH
422 OPT_END()
423 };
424
74884b52 425 argc = parse_options(argc, argv, prefix, options, git_notes_add_usage,
84a7e35e 426 PARSE_OPT_KEEP_ARGV0);
cd067d3b 427
84a7e35e 428 if (2 < argc) {
b8657347 429 error(_("too many arguments"));
74884b52 430 usage_with_options(git_notes_add_usage, options);
dcf783a2
TR
431 }
432
84a7e35e 433 object_ref = argc > 1 ? argv[1] : "HEAD";
cd067d3b 434
d850b7a5 435 if (repo_get_oid(the_repository, object_ref, &object))
8d79589a 436 die(_("failed to resolve '%s' as a valid ref."), object_ref);
cd067d3b 437
ee76f92f 438 t = init_notes_check("add", NOTES_INIT_WRITABLE);
5ee8a954 439 note = get_note(t, &object);
92b3385f 440
74884b52
SB
441 if (note) {
442 if (!force) {
b0de56c6
JH
443 free_notes(t);
444 if (d.given) {
4282af0f 445 free_note_data(&d);
b0de56c6
JH
446 return error(_("Cannot add notes. "
447 "Found existing notes for object %s. "
448 "Use '-f' to overwrite existing notes"),
bb7e4739 449 oid_to_hex(&object));
84a7e35e 450 }
b0de56c6
JH
451 /*
452 * Redirect to "edit" subcommand.
453 *
454 * We only end up here if none of -m/-F/-c/-C or -f are
455 * given. The original args are therefore still in
456 * argv[0-1].
457 */
458 argv[0] = "edit";
459 return append_edit(argc, argv, prefix);
74884b52 460 }
caeba0ef 461 fprintf(stderr, _("Overwriting existing notes for object %s\n"),
bb7e4739 462 oid_to_hex(&object));
aaec9bcf
JH
463 }
464
e8adba25 465 prepare_note_data(&object, &d, note);
d73a5b93 466 if (d.buf.len || allow_empty) {
a09c985e 467 write_note_data(&d, &new_note);
5ee8a954 468 if (add_note(t, &object, &new_note, combine_notes_overwrite))
033abf97 469 BUG("combine_notes_overwrite failed");
1d18d758
NTND
470 commit_notes(the_repository, t,
471 "Notes added by 'git notes add'");
52694cda
JH
472 } else {
473 fprintf(stderr, _("Removing note for object %s\n"),
bb7e4739 474 oid_to_hex(&object));
475 remove_note(t, object.hash);
1d18d758
NTND
476 commit_notes(the_repository, t,
477 "Notes removed by 'git notes add'");
52694cda 478 }
160baa0d 479
52694cda 480 free_note_data(&d);
74884b52 481 free_notes(t);
b0de56c6 482 return 0;
74884b52 483}
cd067d3b 484
74884b52
SB
485static int copy(int argc, const char **argv, const char *prefix)
486{
487 int retval = 0, force = 0, from_stdin = 0;
9ef72230 488 const struct object_id *from_note, *note;
74884b52 489 const char *object_ref;
bb7e4739 490 struct object_id object, from_obj;
74884b52
SB
491 struct notes_tree *t;
492 const char *rewrite_cmd = NULL;
493 struct option options[] = {
7a60e3bb 494 OPT__FORCE(&force, N_("replace existing notes"), PARSE_OPT_NOCOMPLETE),
d5d09d47 495 OPT_BOOL(0, "stdin", &from_stdin, N_("read objects from stdin")),
e6b895ef
NTND
496 OPT_STRING(0, "for-rewrite", &rewrite_cmd, N_("command"),
497 N_("load rewriting config for <command> (implies "
498 "--stdin)")),
74884b52
SB
499 OPT_END()
500 };
cd067d3b 501
74884b52
SB
502 argc = parse_options(argc, argv, prefix, options, git_notes_copy_usage,
503 0);
e397421a 504
74884b52
SB
505 if (from_stdin || rewrite_cmd) {
506 if (argc) {
b8657347 507 error(_("too many arguments"));
74884b52 508 usage_with_options(git_notes_copy_usage, options);
5848769f 509 } else {
74884b52 510 return notes_copy_from_stdin(force, rewrite_cmd);
e73bbd96 511 }
e73bbd96
JH
512 }
513
d58deb9c 514 if (argc < 1) {
b8657347 515 error(_("too few arguments"));
bbb1b8a3
JK
516 usage_with_options(git_notes_copy_usage, options);
517 }
74884b52 518 if (2 < argc) {
b8657347 519 error(_("too many arguments"));
74884b52 520 usage_with_options(git_notes_copy_usage, options);
cd067d3b
JH
521 }
522
d850b7a5 523 if (repo_get_oid(the_repository, argv[0], &from_obj))
8d79589a 524 die(_("failed to resolve '%s' as a valid ref."), argv[0]);
cd067d3b 525
74884b52 526 object_ref = 1 < argc ? argv[1] : "HEAD";
cd067d3b 527
d850b7a5 528 if (repo_get_oid(the_repository, object_ref, &object))
8d79589a 529 die(_("failed to resolve '%s' as a valid ref."), object_ref);
cd067d3b 530
ee76f92f 531 t = init_notes_check("copy", NOTES_INIT_WRITABLE);
5ee8a954 532 note = get_note(t, &object);
cd067d3b 533
74884b52 534 if (note) {
5848769f 535 if (!force) {
caeba0ef 536 retval = error(_("Cannot copy notes. Found existing "
74884b52 537 "notes for object %s. Use '-f' to "
caeba0ef 538 "overwrite existing notes"),
bb7e4739 539 oid_to_hex(&object));
74884b52 540 goto out;
5848769f 541 }
caeba0ef 542 fprintf(stderr, _("Overwriting existing notes for object %s\n"),
bb7e4739 543 oid_to_hex(&object));
e397421a
JH
544 }
545
5ee8a954 546 from_note = get_note(t, &from_obj);
74884b52 547 if (!from_note) {
8d79589a 548 retval = error(_("missing notes on source object %s. Cannot "
bb7e4739 549 "copy."), oid_to_hex(&from_obj));
74884b52 550 goto out;
cd067d3b
JH
551 }
552
5ee8a954 553 if (add_note(t, &object, from_note, combine_notes_overwrite))
033abf97 554 BUG("combine_notes_overwrite failed");
1d18d758
NTND
555 commit_notes(the_repository, t,
556 "Notes added by 'git notes copy'");
74884b52
SB
557out:
558 free_notes(t);
559 return retval;
560}
7aa4754e 561
74884b52
SB
562static int append_edit(int argc, const char **argv, const char *prefix)
563{
d73a5b93 564 int allow_empty = 0;
74884b52
SB
565 const char *object_ref;
566 struct notes_tree *t;
bb7e4739 567 struct object_id object, new_note;
9ef72230 568 const struct object_id *note;
5b1ef2ce 569 char *logmsg;
74884b52 570 const char * const *usage;
4282af0f 571 struct note_data d = { 0, 0, NULL, STRBUF_INIT };
74884b52 572 struct option options[] = {
203c8533 573 OPT_CALLBACK_F('m', "message", &d, N_("message"),
e6b895ef 574 N_("note contents as a string"), PARSE_OPT_NONEG,
203c8533
DL
575 parse_msg_arg),
576 OPT_CALLBACK_F('F', "file", &d, N_("file"),
e6b895ef 577 N_("note contents in a file"), PARSE_OPT_NONEG,
203c8533
DL
578 parse_file_arg),
579 OPT_CALLBACK_F('c', "reedit-message", &d, N_("object"),
e6b895ef 580 N_("reuse and edit specified note object"), PARSE_OPT_NONEG,
203c8533
DL
581 parse_reedit_arg),
582 OPT_CALLBACK_F('C', "reuse-message", &d, N_("object"),
e6b895ef 583 N_("reuse specified note object"), PARSE_OPT_NONEG,
203c8533 584 parse_reuse_arg),
d73a5b93
JH
585 OPT_BOOL(0, "allow-empty", &allow_empty,
586 N_("allow storing empty note")),
74884b52
SB
587 OPT_END()
588 };
589 int edit = !strcmp(argv[0], "edit");
590
591 usage = edit ? git_notes_edit_usage : git_notes_append_usage;
592 argc = parse_options(argc, argv, prefix, options, usage,
593 PARSE_OPT_KEEP_ARGV0);
92b3385f 594
74884b52 595 if (2 < argc) {
b8657347 596 error(_("too many arguments"));
74884b52 597 usage_with_options(usage, options);
cd067d3b
JH
598 }
599
bebf5c04 600 if (d.given && edit)
caeba0ef 601 fprintf(stderr, _("The -m/-F/-c/-C options have been deprecated "
74884b52 602 "for the 'edit' subcommand.\n"
caeba0ef 603 "Please use 'git notes add -f -m/-F/-c/-C' instead.\n"));
74884b52
SB
604
605 object_ref = 1 < argc ? argv[1] : "HEAD";
606
d850b7a5 607 if (repo_get_oid(the_repository, object_ref, &object))
8d79589a 608 die(_("failed to resolve '%s' as a valid ref."), object_ref);
74884b52 609
ee76f92f 610 t = init_notes_check(argv[0], NOTES_INIT_WRITABLE);
5ee8a954 611 note = get_note(t, &object);
74884b52 612
e8adba25 613 prepare_note_data(&object, &d, edit && note ? note : NULL);
5848769f 614
52694cda
JH
615 if (note && !edit) {
616 /* Append buf to previous note contents */
617 unsigned long size;
618 enum object_type type;
bc726bd0
ÆAB
619 char *prev_buf = repo_read_object_file(the_repository, note,
620 &type, &size);
52694cda
JH
621
622 strbuf_grow(&d.buf, size + 1);
623 if (d.buf.len && prev_buf && size)
a91cc7fa 624 strbuf_insertstr(&d.buf, 0, "\n");
52694cda
JH
625 if (prev_buf && size)
626 strbuf_insert(&d.buf, 0, prev_buf, size);
627 free(prev_buf);
628 }
5848769f 629
d73a5b93 630 if (d.buf.len || allow_empty) {
a09c985e 631 write_note_data(&d, &new_note);
5ee8a954 632 if (add_note(t, &object, &new_note, combine_notes_overwrite))
033abf97 633 BUG("combine_notes_overwrite failed");
5b1ef2ce 634 logmsg = xstrfmt("Notes added by 'git notes %s'", argv[0]);
52694cda
JH
635 } else {
636 fprintf(stderr, _("Removing note for object %s\n"),
bb7e4739 637 oid_to_hex(&object));
638 remove_note(t, object.hash);
5b1ef2ce 639 logmsg = xstrfmt("Notes removed by 'git notes %s'", argv[0]);
52694cda 640 }
1d18d758 641 commit_notes(the_repository, t, logmsg);
52694cda 642
5b1ef2ce 643 free(logmsg);
52694cda 644 free_note_data(&d);
cd067d3b 645 free_notes(t);
74884b52
SB
646 return 0;
647}
648
649static int show(int argc, const char **argv, const char *prefix)
650{
651 const char *object_ref;
652 struct notes_tree *t;
bb7e4739 653 struct object_id object;
9ef72230 654 const struct object_id *note;
74884b52
SB
655 int retval;
656 struct option options[] = {
657 OPT_END()
658 };
659
660 argc = parse_options(argc, argv, prefix, options, git_notes_show_usage,
661 0);
662
663 if (1 < argc) {
b8657347 664 error(_("too many arguments"));
74884b52
SB
665 usage_with_options(git_notes_show_usage, options);
666 }
667
668 object_ref = argc ? argv[0] : "HEAD";
669
d850b7a5 670 if (repo_get_oid(the_repository, object_ref, &object))
8d79589a 671 die(_("failed to resolve '%s' as a valid ref."), object_ref);
74884b52 672
ee76f92f 673 t = init_notes_check("show", 0);
5ee8a954 674 note = get_note(t, &object);
74884b52
SB
675
676 if (!note)
8d79589a 677 retval = error(_("no note found for object %s."),
bb7e4739 678 oid_to_hex(&object));
74884b52 679 else {
9ef72230 680 const char *show_args[3] = {"show", oid_to_hex(note), NULL};
74884b52
SB
681 retval = execv_git_cmd(show_args);
682 }
683 free_notes(t);
5848769f 684 return retval;
cd067d3b 685}
74884b52 686
6abb3655
JH
687static int merge_abort(struct notes_merge_options *o)
688{
689 int ret = 0;
690
691 /*
692 * Remove .git/NOTES_MERGE_PARTIAL and .git/NOTES_MERGE_REF, and call
693 * notes_merge_abort() to remove .git/NOTES_MERGE_WORKTREE.
694 */
695
755b49ae 696 if (delete_ref(NULL, "NOTES_MERGE_PARTIAL", NULL, 0))
8d79589a 697 ret += error(_("failed to delete ref NOTES_MERGE_PARTIAL"));
91774afc 698 if (delete_ref(NULL, "NOTES_MERGE_REF", NULL, REF_NO_DEREF))
8d79589a 699 ret += error(_("failed to delete ref NOTES_MERGE_REF"));
6abb3655 700 if (notes_merge_abort(o))
8d79589a 701 ret += error(_("failed to remove 'git notes merge' worktree"));
6abb3655
JH
702 return ret;
703}
704
705static int merge_commit(struct notes_merge_options *o)
706{
707 struct strbuf msg = STRBUF_INIT;
2928325f 708 struct object_id oid, parent_oid;
6abb3655
JH
709 struct notes_tree *t;
710 struct commit *partial;
711 struct pretty_print_context pretty_ctx;
96ec7b1e 712 void *local_ref_to_free;
d5a35c11 713 int ret;
6abb3655
JH
714
715 /*
716 * Read partial merge result from .git/NOTES_MERGE_PARTIAL,
717 * and target notes ref from .git/NOTES_MERGE_REF.
718 */
719
d850b7a5 720 if (repo_get_oid(the_repository, "NOTES_MERGE_PARTIAL", &oid))
8d79589a 721 die(_("failed to read ref NOTES_MERGE_PARTIAL"));
2122f675 722 else if (!(partial = lookup_commit_reference(the_repository, &oid)))
8d79589a 723 die(_("could not find commit from NOTES_MERGE_PARTIAL."));
ecb5091f 724 else if (repo_parse_commit(the_repository, partial))
8d79589a 725 die(_("could not parse commit from NOTES_MERGE_PARTIAL."));
6abb3655 726
6cfd6a9d 727 if (partial->parents)
2928325f 728 oidcpy(&parent_oid, &partial->parents->item->object.oid);
6cfd6a9d 729 else
2928325f 730 oidclr(&parent_oid);
6cfd6a9d 731
ca56dadb 732 CALLOC_ARRAY(t, 1);
6abb3655
JH
733 init_notes(t, "NOTES_MERGE_PARTIAL", combine_notes_overwrite, 0);
734
96ec7b1e 735 o->local_ref = local_ref_to_free =
0f2dc722 736 resolve_refdup("NOTES_MERGE_REF", 0, &oid, NULL);
6abb3655 737 if (!o->local_ref)
8d79589a 738 die(_("failed to resolve NOTES_MERGE_REF"));
6abb3655 739
5237e0eb 740 if (notes_merge_commit(o, t, partial, &oid))
8d79589a 741 die(_("failed to finalize notes merge"));
6abb3655
JH
742
743 /* Reuse existing commit message in reflog message */
744 memset(&pretty_ctx, 0, sizeof(pretty_ctx));
745 format_commit_message(partial, "%s", &msg, &pretty_ctx);
746 strbuf_trim(&msg);
a91cc7fa 747 strbuf_insertstr(&msg, 0, "notes: ");
ae077771 748 update_ref(msg.buf, o->local_ref, &oid,
749 is_null_oid(&parent_oid) ? NULL : &parent_oid,
f4124112 750 0, UPDATE_REFS_DIE_ON_ERR);
6abb3655
JH
751
752 free_notes(t);
753 strbuf_release(&msg);
d5a35c11 754 ret = merge_abort(o);
96ec7b1e 755 free(local_ref_to_free);
d5a35c11 756 return ret;
6abb3655
JH
757}
758
d2d68d99
JK
759static int git_config_get_notes_strategy(const char *key,
760 enum notes_merge_strategy *strategy)
761{
344b5484 762 char *value;
d2d68d99 763
344b5484 764 if (git_config_get_string(key, &value))
d2d68d99
JK
765 return 1;
766 if (parse_notes_merge_strategy(value, strategy))
5313827f 767 git_die_config(key, _("unknown notes merge strategy %s"), value);
d2d68d99 768
344b5484 769 free(value);
d2d68d99
JK
770 return 0;
771}
772
75ef3f4a
JH
773static int merge(int argc, const char **argv, const char *prefix)
774{
775 struct strbuf remote_ref = STRBUF_INIT, msg = STRBUF_INIT;
bb7e4739 776 struct object_id result_oid;
2085b16a 777 struct notes_tree *t;
75ef3f4a 778 struct notes_merge_options o;
6abb3655 779 int do_merge = 0, do_commit = 0, do_abort = 0;
75ef3f4a 780 int verbosity = 0, result;
3228e671 781 const char *strategy = NULL;
75ef3f4a 782 struct option options[] = {
e6b895ef 783 OPT_GROUP(N_("General options")),
75ef3f4a 784 OPT__VERBOSITY(&verbosity),
e6b895ef
NTND
785 OPT_GROUP(N_("Merge options")),
786 OPT_STRING('s', "strategy", &strategy, N_("strategy"),
787 N_("resolve notes conflicts using the given strategy "
788 "(manual/ours/theirs/union/cat_sort_uniq)")),
789 OPT_GROUP(N_("Committing unmerged notes")),
3e4a67b4
NTND
790 OPT_SET_INT_F(0, "commit", &do_commit,
791 N_("finalize notes merge by committing unmerged notes"),
792 1, PARSE_OPT_NONEG),
e6b895ef 793 OPT_GROUP(N_("Aborting notes merge resolution")),
3e4a67b4
NTND
794 OPT_SET_INT_F(0, "abort", &do_abort,
795 N_("abort notes merge"),
796 1, PARSE_OPT_NONEG),
75ef3f4a
JH
797 OPT_END()
798 };
799
800 argc = parse_options(argc, argv, prefix, options,
801 git_notes_merge_usage, 0);
802
6abb3655
JH
803 if (strategy || do_commit + do_abort == 0)
804 do_merge = 1;
805 if (do_merge + do_commit + do_abort != 1) {
5313827f 806 error(_("cannot mix --commit, --abort or -s/--strategy"));
6abb3655
JH
807 usage_with_options(git_notes_merge_usage, options);
808 }
809
810 if (do_merge && argc != 1) {
8d79589a 811 error(_("must specify a notes ref to merge"));
75ef3f4a 812 usage_with_options(git_notes_merge_usage, options);
6abb3655 813 } else if (!do_merge && argc) {
b8657347 814 error(_("too many arguments"));
6abb3655 815 usage_with_options(git_notes_merge_usage, options);
75ef3f4a
JH
816 }
817
5684200f 818 init_notes_merge_options(the_repository, &o);
75ef3f4a
JH
819 o.verbosity = verbosity + NOTES_MERGE_VERBOSITY_DEFAULT;
820
6abb3655
JH
821 if (do_abort)
822 return merge_abort(&o);
823 if (do_commit)
824 return merge_commit(&o);
825
75ef3f4a
JH
826 o.local_ref = default_notes_ref();
827 strbuf_addstr(&remote_ref, argv[0]);
b3715b75 828 expand_loose_notes_ref(&remote_ref);
75ef3f4a
JH
829 o.remote_ref = remote_ref.buf;
830
ee76f92f 831 t = init_notes_check("merge", NOTES_INIT_WRITABLE);
d2d68d99 832
3228e671 833 if (strategy) {
93efcad3 834 if (parse_notes_merge_strategy(strategy, &o.strategy)) {
8d79589a 835 error(_("unknown -s/--strategy: %s"), strategy);
3228e671
JH
836 usage_with_options(git_notes_merge_usage, options);
837 }
d2d68d99 838 } else {
4f655e22
JK
839 struct strbuf merge_key = STRBUF_INIT;
840 const char *short_ref = NULL;
3228e671 841
4f655e22 842 if (!skip_prefix(o.local_ref, "refs/notes/", &short_ref))
033abf97 843 BUG("local ref %s is outside of refs/notes/",
4f655e22
JK
844 o.local_ref);
845
846 strbuf_addf(&merge_key, "notes.%s.mergeStrategy", short_ref);
847
848 if (git_config_get_notes_strategy(merge_key.buf, &o.strategy))
849 git_config_get_notes_strategy("notes.mergeStrategy", &o.strategy);
850
851 strbuf_release(&merge_key);
3228e671 852 }
75ef3f4a
JH
853
854 strbuf_addf(&msg, "notes: Merged notes from %s into %s",
855 remote_ref.buf, default_notes_ref());
443259cf 856 strbuf_add(&(o.commit_msg), msg.buf + 7, msg.len - 7); /* skip "notes: " */
2085b16a 857
5237e0eb 858 result = notes_merge(&o, t, &result_oid);
2085b16a 859
5237e0eb 860 if (result >= 0) /* Merge resulted (trivially) in result_oid */
75ef3f4a 861 /* Update default notes ref with new commit */
ae077771 862 update_ref(msg.buf, default_notes_ref(), &result_oid, NULL, 0,
863 UPDATE_REFS_DIE_ON_ERR);
6abb3655 864 else { /* Merge has unresolved conflicts */
c8dd491f 865 struct worktree **worktrees;
d3b9ac07 866 const struct worktree *wt;
6abb3655 867 /* Update .git/NOTES_MERGE_PARTIAL with partial merge result */
ae077771 868 update_ref(msg.buf, "NOTES_MERGE_PARTIAL", &result_oid, NULL,
f4124112 869 0, UPDATE_REFS_DIE_ON_ERR);
6abb3655 870 /* Store ref-to-be-updated into .git/NOTES_MERGE_REF */
c8dd491f
AK
871 worktrees = get_worktrees();
872 wt = find_shared_symref(worktrees, "NOTES_MERGE_REF",
873 default_notes_ref());
d3b9ac07 874 if (wt)
8d79589a 875 die(_("a notes merge into %s is already in-progress at %s"),
d3b9ac07 876 default_notes_ref(), wt->path);
c8dd491f 877 free_worktrees(worktrees);
6abb3655 878 if (create_symref("NOTES_MERGE_REF", default_notes_ref(), NULL))
8d79589a 879 die(_("failed to store link to current notes ref (%s)"),
6abb3655 880 default_notes_ref());
89b9e31d
TZ
881 fprintf(stderr, _("Automatic notes merge failed. Fix conflicts in %s "
882 "and commit the result with 'git notes merge --commit', "
883 "or abort the merge with 'git notes merge --abort'.\n"),
884 git_path(NOTES_MERGE_WORKTREE));
6abb3655 885 }
75ef3f4a 886
2085b16a 887 free_notes(t);
75ef3f4a
JH
888 strbuf_release(&remote_ref);
889 strbuf_release(&msg);
809f38c8 890 return result < 0; /* return non-zero on conflicts */
75ef3f4a
JH
891}
892
46538012 893#define IGNORE_MISSING 1
2d370d2f
JH
894
895static int remove_one_note(struct notes_tree *t, const char *name, unsigned flag)
c3ab1a8e
JH
896{
897 int status;
bb7e4739 898 struct object_id oid;
d850b7a5 899 if (repo_get_oid(the_repository, name, &oid))
c3ab1a8e 900 return error(_("Failed to resolve '%s' as a valid ref."), name);
bb7e4739 901 status = remove_note(t, oid.hash);
c3ab1a8e
JH
902 if (status)
903 fprintf(stderr, _("Object %s has no note\n"), name);
904 else
905 fprintf(stderr, _("Removing note for object %s\n"), name);
46538012 906 return (flag & IGNORE_MISSING) ? 0 : status;
c3ab1a8e
JH
907}
908
74884b52
SB
909static int remove_cmd(int argc, const char **argv, const char *prefix)
910{
2d370d2f 911 unsigned flag = 0;
46538012 912 int from_stdin = 0;
74884b52 913 struct option options[] = {
2d370d2f 914 OPT_BIT(0, "ignore-missing", &flag,
e6b895ef 915 N_("attempt to remove non-existent note is not an error"),
46538012 916 IGNORE_MISSING),
d5d09d47 917 OPT_BOOL(0, "stdin", &from_stdin,
e6b895ef 918 N_("read object names from the standard input")),
74884b52
SB
919 OPT_END()
920 };
74884b52 921 struct notes_tree *t;
c3ab1a8e 922 int retval = 0;
74884b52
SB
923
924 argc = parse_options(argc, argv, prefix, options,
925 git_notes_remove_usage, 0);
926
ee76f92f 927 t = init_notes_check("remove", NOTES_INIT_WRITABLE);
74884b52 928
46538012 929 if (!argc && !from_stdin) {
2d370d2f 930 retval = remove_one_note(t, "HEAD", flag);
c3ab1a8e
JH
931 } else {
932 while (*argv) {
2d370d2f 933 retval |= remove_one_note(t, *argv, flag);
c3ab1a8e
JH
934 argv++;
935 }
1ee1e43d 936 }
46538012
JH
937 if (from_stdin) {
938 struct strbuf sb = STRBUF_INIT;
939 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
940 strbuf_rtrim(&sb);
941 retval |= remove_one_note(t, sb.buf, flag);
942 }
943 strbuf_release(&sb);
944 }
c3ab1a8e 945 if (!retval)
1d18d758
NTND
946 commit_notes(the_repository, t,
947 "Notes removed by 'git notes remove'");
74884b52 948 free_notes(t);
1ee1e43d 949 return retval;
74884b52
SB
950}
951
952static int prune(int argc, const char **argv, const char *prefix)
953{
954 struct notes_tree *t;
a9f2adff 955 int show_only = 0, verbose = 0;
74884b52 956 struct option options[] = {
b34c77e3
VA
957 OPT__DRY_RUN(&show_only, N_("do not remove, show only")),
958 OPT__VERBOSE(&verbose, N_("report pruned notes")),
74884b52
SB
959 OPT_END()
960 };
961
962 argc = parse_options(argc, argv, prefix, options, git_notes_prune_usage,
963 0);
964
965 if (argc) {
b8657347 966 error(_("too many arguments"));
74884b52
SB
967 usage_with_options(git_notes_prune_usage, options);
968 }
969
ee76f92f 970 t = init_notes_check("prune", NOTES_INIT_WRITABLE);
74884b52 971
a9f2adff
MG
972 prune_notes(t, (verbose ? NOTES_PRUNE_VERBOSE : 0) |
973 (show_only ? NOTES_PRUNE_VERBOSE|NOTES_PRUNE_DRYRUN : 0) );
974 if (!show_only)
1d18d758
NTND
975 commit_notes(the_repository, t,
976 "Notes removed by 'git notes prune'");
74884b52
SB
977 free_notes(t);
978 return 0;
979}
980
618cd757
JH
981static int get_ref(int argc, const char **argv, const char *prefix)
982{
983 struct option options[] = { OPT_END() };
984 argc = parse_options(argc, argv, prefix, options,
985 git_notes_get_ref_usage, 0);
986
987 if (argc) {
b8657347 988 error(_("too many arguments"));
618cd757
JH
989 usage_with_options(git_notes_get_ref_usage, options);
990 }
991
992 puts(default_notes_ref());
993 return 0;
994}
995
74884b52
SB
996int cmd_notes(int argc, const char **argv, const char *prefix)
997{
74884b52 998 const char *override_notes_ref = NULL;
1c7c25ae 999 parse_opt_subcommand_fn *fn = NULL;
74884b52 1000 struct option options[] = {
e703d711 1001 OPT_STRING(0, "ref", &override_notes_ref, N_("notes-ref"),
9c9b4f2f 1002 N_("use notes from <notes-ref>")),
54ef7676
SG
1003 OPT_SUBCOMMAND("list", &fn, list),
1004 OPT_SUBCOMMAND("add", &fn, add),
1005 OPT_SUBCOMMAND("copy", &fn, copy),
1006 OPT_SUBCOMMAND("append", &fn, append_edit),
1007 OPT_SUBCOMMAND("edit", &fn, append_edit),
1008 OPT_SUBCOMMAND("show", &fn, show),
1009 OPT_SUBCOMMAND("merge", &fn, merge),
1010 OPT_SUBCOMMAND("remove", &fn, remove_cmd),
1011 OPT_SUBCOMMAND("prune", &fn, prune),
1012 OPT_SUBCOMMAND("get-ref", &fn, get_ref),
74884b52
SB
1013 OPT_END()
1014 };
1015
1016 git_config(git_default_config, NULL);
1017 argc = parse_options(argc, argv, prefix, options, git_notes_usage,
54ef7676 1018 PARSE_OPT_SUBCOMMAND_OPTIONAL);
1c7c25ae
SG
1019 if (!fn) {
1020 if (argc) {
dd834d75 1021 error(_("unknown subcommand: `%s'"), argv[0]);
1c7c25ae
SG
1022 usage_with_options(git_notes_usage, options);
1023 }
1024 fn = list;
54ef7676 1025 }
74884b52
SB
1026
1027 if (override_notes_ref) {
1028 struct strbuf sb = STRBUF_INIT;
74884b52 1029 strbuf_addstr(&sb, override_notes_ref);
8ef313e1 1030 expand_notes_ref(&sb);
74884b52
SB
1031 setenv("GIT_NOTES_REF", sb.buf, 1);
1032 strbuf_release(&sb);
1033 }
1034
54ef7676 1035 return !!fn(argc, argv, prefix);
74884b52 1036}