7 #include "reflog-walk.h"
9 #include "string-list.h"
11 #include "gpg-interface.h"
12 #include "sequencer.h"
14 struct decoration name_decoration = { "object names" };
16 enum decoration_type {
19 DECORATION_REF_REMOTE,
26 static char decoration_colors[][COLOR_MAXLEN] = {
28 GIT_COLOR_BOLD_GREEN, /* REF_LOCAL */
29 GIT_COLOR_BOLD_RED, /* REF_REMOTE */
30 GIT_COLOR_BOLD_YELLOW, /* REF_TAG */
31 GIT_COLOR_BOLD_MAGENTA, /* REF_STASH */
32 GIT_COLOR_BOLD_CYAN, /* REF_HEAD */
33 GIT_COLOR_BOLD_BLUE, /* GRAFTED */
36 static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix)
38 if (want_color(decorate_use_color))
39 return decoration_colors[ix];
43 static int parse_decorate_color_slot(const char *slot)
46 * We're comparing with 'ignore-case' on
47 * (because config.c sets them all tolower),
48 * but let's match the letters in the literal
49 * string values here with how they are
50 * documented in Documentation/config.txt, for
53 * We love being consistent, don't we?
55 if (!strcasecmp(slot, "branch"))
56 return DECORATION_REF_LOCAL;
57 if (!strcasecmp(slot, "remoteBranch"))
58 return DECORATION_REF_REMOTE;
59 if (!strcasecmp(slot, "tag"))
60 return DECORATION_REF_TAG;
61 if (!strcasecmp(slot, "stash"))
62 return DECORATION_REF_STASH;
63 if (!strcasecmp(slot, "HEAD"))
64 return DECORATION_REF_HEAD;
68 int parse_decorate_color_config(const char *var, const int ofs, const char *value)
70 int slot = parse_decorate_color_slot(var + ofs);
74 return config_error_nonbool(var);
75 color_parse(value, var, decoration_colors[slot]);
80 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
81 * for showing the commit sha1, use the same check for --decorate
83 #define decorate_get_color_opt(o, ix) \
84 decorate_get_color((o)->use_color, ix)
86 static void add_name_decoration(enum decoration_type type, const char *name, struct object *obj)
88 int nlen = strlen(name);
89 struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + nlen);
90 memcpy(res->name, name, nlen + 1);
92 res->next = add_decoration(&name_decoration, obj, res);
95 static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
98 enum decoration_type type = DECORATION_NONE;
100 if (!prefixcmp(refname, "refs/replace/")) {
101 unsigned char original_sha1[20];
102 if (!read_replace_refs)
104 if (get_sha1_hex(refname + 13, original_sha1)) {
105 warning("invalid replace ref %s", refname);
108 obj = parse_object(original_sha1);
110 add_name_decoration(DECORATION_GRAFTED, "replaced", obj);
114 obj = parse_object(sha1);
118 if (!prefixcmp(refname, "refs/heads/"))
119 type = DECORATION_REF_LOCAL;
120 else if (!prefixcmp(refname, "refs/remotes/"))
121 type = DECORATION_REF_REMOTE;
122 else if (!prefixcmp(refname, "refs/tags/"))
123 type = DECORATION_REF_TAG;
124 else if (!strcmp(refname, "refs/stash"))
125 type = DECORATION_REF_STASH;
126 else if (!strcmp(refname, "HEAD"))
127 type = DECORATION_REF_HEAD;
129 if (!cb_data || *(int *)cb_data == DECORATE_SHORT_REFS)
130 refname = prettify_refname(refname);
131 add_name_decoration(type, refname, obj);
132 while (obj->type == OBJ_TAG) {
133 obj = ((struct tag *)obj)->tagged;
136 add_name_decoration(DECORATION_REF_TAG, refname, obj);
141 static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
143 struct commit *commit = lookup_commit(graft->sha1);
146 add_name_decoration(DECORATION_GRAFTED, "grafted", &commit->object);
150 void load_ref_decorations(int flags)
155 for_each_ref(add_ref_decoration, &flags);
156 head_ref(add_ref_decoration, &flags);
157 for_each_commit_graft(add_graft_decoration, NULL);
161 static void show_parents(struct commit *commit, int abbrev)
163 struct commit_list *p;
164 for (p = commit->parents; p ; p = p->next) {
165 struct commit *parent = p->item;
166 printf(" %s", find_unique_abbrev(parent->object.sha1, abbrev));
170 static void show_children(struct rev_info *opt, struct commit *commit, int abbrev)
172 struct commit_list *p = lookup_decoration(&opt->children, &commit->object);
173 for ( ; p; p = p->next) {
174 printf(" %s", find_unique_abbrev(p->item->object.sha1, abbrev));
178 void show_decorations(struct rev_info *opt, struct commit *commit)
181 struct name_decoration *decoration;
182 const char *color_commit =
183 diff_get_color_opt(&opt->diffopt, DIFF_COMMIT);
184 const char *color_reset =
185 decorate_get_color_opt(&opt->diffopt, DECORATION_NONE);
187 if (opt->show_source && commit->util)
188 printf("\t%s", (char *) commit->util);
189 if (!opt->show_decorations)
191 decoration = lookup_decoration(&name_decoration, &commit->object);
196 printf("%s", prefix);
197 fputs(decorate_get_color_opt(&opt->diffopt, decoration->type),
199 if (decoration->type == DECORATION_REF_TAG)
200 fputs("tag: ", stdout);
201 printf("%s", decoration->name);
202 fputs(color_reset, stdout);
203 fputs(color_commit, stdout);
205 decoration = decoration->next;
210 static unsigned int digits_in_number(unsigned int number)
212 unsigned int i = 10, result = 1;
213 while (i <= number) {
220 void get_patch_filename(struct commit *commit, const char *subject, int nr,
221 const char *suffix, struct strbuf *buf)
223 int suffix_len = strlen(suffix) + 1;
224 int start_len = buf->len;
226 strbuf_addf(buf, commit || subject ? "%04d-" : "%d", nr);
227 if (commit || subject) {
228 int max_len = start_len + FORMAT_PATCH_NAME_MAX - suffix_len;
229 struct pretty_print_context ctx = {0};
232 strbuf_addstr(buf, subject);
234 format_commit_message(commit, "%f", buf, &ctx);
236 if (max_len < buf->len)
237 strbuf_setlen(buf, max_len);
238 strbuf_addstr(buf, suffix);
242 void log_write_email_headers(struct rev_info *opt, struct commit *commit,
243 const char **subject_p,
244 const char **extra_headers_p,
245 int *need_8bit_cte_p)
247 const char *subject = NULL;
248 const char *extra_headers = opt->extra_headers;
249 const char *name = sha1_to_hex(commit->object.sha1);
251 *need_8bit_cte_p = 0; /* unknown */
252 if (opt->total > 0) {
253 static char buffer[64];
254 snprintf(buffer, sizeof(buffer),
255 "Subject: [%s%s%0*d/%d] ",
257 *opt->subject_prefix ? " " : "",
258 digits_in_number(opt->total),
259 opt->nr, opt->total);
261 } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) {
262 static char buffer[256];
263 snprintf(buffer, sizeof(buffer),
265 opt->subject_prefix);
268 subject = "Subject: ";
271 printf("From %s Mon Sep 17 00:00:00 2001\n", name);
272 graph_show_oneline(opt->graph);
273 if (opt->message_id) {
274 printf("Message-Id: <%s>\n", opt->message_id);
275 graph_show_oneline(opt->graph);
277 if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) {
279 n = opt->ref_message_ids->nr;
280 printf("In-Reply-To: <%s>\n", opt->ref_message_ids->items[n-1].string);
281 for (i = 0; i < n; i++)
282 printf("%s<%s>\n", (i > 0 ? "\t" : "References: "),
283 opt->ref_message_ids->items[i].string);
284 graph_show_oneline(opt->graph);
286 if (opt->mime_boundary) {
287 static char subject_buffer[1024];
288 static char buffer[1024];
289 struct strbuf filename = STRBUF_INIT;
290 *need_8bit_cte_p = -1; /* NEVER */
291 snprintf(subject_buffer, sizeof(subject_buffer) - 1,
293 "MIME-Version: 1.0\n"
294 "Content-Type: multipart/mixed;"
295 " boundary=\"%s%s\"\n"
297 "This is a multi-part message in MIME "
300 "Content-Type: text/plain; "
301 "charset=UTF-8; format=fixed\n"
302 "Content-Transfer-Encoding: 8bit\n\n",
303 extra_headers ? extra_headers : "",
304 mime_boundary_leader, opt->mime_boundary,
305 mime_boundary_leader, opt->mime_boundary);
306 extra_headers = subject_buffer;
308 get_patch_filename(opt->numbered_files ? NULL : commit, NULL,
309 opt->nr, opt->patch_suffix, &filename);
310 snprintf(buffer, sizeof(buffer) - 1,
312 "Content-Type: text/x-patch;"
314 "Content-Transfer-Encoding: 8bit\n"
315 "Content-Disposition: %s;"
316 " filename=\"%s\"\n\n",
317 mime_boundary_leader, opt->mime_boundary,
319 opt->no_inline ? "attachment" : "inline",
321 opt->diffopt.stat_sep = buffer;
322 strbuf_release(&filename);
324 *subject_p = subject;
325 *extra_headers_p = extra_headers;
328 static void show_sig_lines(struct rev_info *opt, int status, const char *bol)
330 const char *color, *reset, *eol;
332 color = diff_get_color_opt(&opt->diffopt,
333 status ? DIFF_WHITESPACE : DIFF_FRAGINFO);
334 reset = diff_get_color_opt(&opt->diffopt, DIFF_RESET);
336 eol = strchrnul(bol, '\n');
337 printf("%s%.*s%s%s", color, (int)(eol - bol), bol, reset,
339 bol = (*eol) ? (eol + 1) : eol;
343 static void show_signature(struct rev_info *opt, struct commit *commit)
345 struct strbuf payload = STRBUF_INIT;
346 struct strbuf signature = STRBUF_INIT;
347 struct strbuf gpg_output = STRBUF_INIT;
350 if (parse_signed_commit(commit->object.sha1, &payload, &signature) <= 0)
353 status = verify_signed_buffer(payload.buf, payload.len,
354 signature.buf, signature.len,
356 if (status && !gpg_output.len)
357 strbuf_addstr(&gpg_output, "No signature\n");
359 show_sig_lines(opt, status, gpg_output.buf);
362 strbuf_release(&gpg_output);
363 strbuf_release(&payload);
364 strbuf_release(&signature);
367 static int which_parent(const unsigned char *sha1, const struct commit *commit)
370 const struct commit_list *parent;
372 for (nth = 0, parent = commit->parents; parent; parent = parent->next) {
373 if (!hashcmp(parent->item->object.sha1, sha1))
380 static int is_common_merge(const struct commit *commit)
382 return (commit->parents
383 && commit->parents->next
384 && !commit->parents->next->next);
387 static void show_one_mergetag(struct rev_info *opt,
388 struct commit_extra_header *extra,
389 struct commit *commit)
391 unsigned char sha1[20];
393 struct strbuf verify_message;
395 size_t payload_size, gpg_message_offset;
397 hash_sha1_file(extra->value, extra->len, typename(OBJ_TAG), sha1);
398 tag = lookup_tag(sha1);
400 return; /* error message already given */
402 strbuf_init(&verify_message, 256);
403 if (parse_tag_buffer(tag, extra->value, extra->len))
404 strbuf_addstr(&verify_message, "malformed mergetag\n");
405 else if (is_common_merge(commit) &&
406 !hashcmp(tag->tagged->sha1,
407 commit->parents->next->item->object.sha1))
408 strbuf_addf(&verify_message,
409 "merged tag '%s'\n", tag->tag);
410 else if ((nth = which_parent(tag->tagged->sha1, commit)) < 0)
411 strbuf_addf(&verify_message, "tag %s names a non-parent %s\n",
412 tag->tag, tag->tagged->sha1);
414 strbuf_addf(&verify_message,
415 "parent #%d, tagged '%s'\n", nth + 1, tag->tag);
416 gpg_message_offset = verify_message.len;
418 payload_size = parse_signature(extra->value, extra->len);
419 if ((extra->len <= payload_size) ||
420 (verify_signed_buffer(extra->value, payload_size,
421 extra->value + payload_size,
422 extra->len - payload_size,
424 verify_message.len <= gpg_message_offset)) {
425 strbuf_addstr(&verify_message, "No signature\n");
428 else if (strstr(verify_message.buf + gpg_message_offset,
429 ": Good signature from "))
434 show_sig_lines(opt, status, verify_message.buf);
435 strbuf_release(&verify_message);
438 static void show_mergetag(struct rev_info *opt, struct commit *commit)
440 struct commit_extra_header *extra, *to_free;
442 to_free = read_commit_extra_headers(commit, NULL);
443 for (extra = to_free; extra; extra = extra->next) {
444 if (strcmp(extra->key, "mergetag"))
445 continue; /* not a merge tag */
446 show_one_mergetag(opt, extra, commit);
448 free_commit_extra_headers(to_free);
451 void show_log(struct rev_info *opt)
453 struct strbuf msgbuf = STRBUF_INIT;
454 struct log_info *log = opt->loginfo;
455 struct commit *commit = log->commit, *parent = log->parent;
456 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
457 const char *extra_headers = opt->extra_headers;
458 struct pretty_print_context ctx = {0};
461 if (!opt->verbose_header) {
462 graph_show_commit(opt->graph);
465 put_revision_mark(opt, commit);
466 fputs(find_unique_abbrev(commit->object.sha1, abbrev_commit), stdout);
467 if (opt->print_parents)
468 show_parents(commit, abbrev_commit);
469 if (opt->children.name)
470 show_children(opt, commit, abbrev_commit);
471 show_decorations(opt, commit);
472 if (opt->graph && !graph_is_commit_finished(opt->graph)) {
474 graph_show_remainder(opt->graph);
476 putchar(opt->diffopt.line_termination);
481 * If use_terminator is set, we already handled any record termination
482 * at the end of the last record.
483 * Otherwise, add a diffopt.line_termination character before all
484 * entries but the first. (IOW, as a separator between entries)
486 if (opt->shown_one && !opt->use_terminator) {
488 * If entries are separated by a newline, the output
489 * should look human-readable. If the last entry ended
490 * with a newline, print the graph output before this
491 * newline. Otherwise it will end up as a completely blank
492 * line and will look like a gap in the graph.
494 * If the entry separator is not a newline, the output is
495 * primarily intended for programmatic consumption, and we
496 * never want the extra graph output before the entry
499 if (opt->diffopt.line_termination == '\n' &&
500 !opt->missing_newline)
501 graph_show_padding(opt->graph);
502 putchar(opt->diffopt.line_termination);
507 * If the history graph was requested,
508 * print the graph, up to this commit's line
510 graph_show_commit(opt->graph);
513 * Print header line of header..
516 if (opt->commit_format == CMIT_FMT_EMAIL) {
517 log_write_email_headers(opt, commit, &ctx.subject, &extra_headers,
519 } else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
520 fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), stdout);
521 if (opt->commit_format != CMIT_FMT_ONELINE)
522 fputs("commit ", stdout);
525 put_revision_mark(opt, commit);
526 fputs(find_unique_abbrev(commit->object.sha1, abbrev_commit),
528 if (opt->print_parents)
529 show_parents(commit, abbrev_commit);
530 if (opt->children.name)
531 show_children(opt, commit, abbrev_commit);
534 find_unique_abbrev(parent->object.sha1,
536 show_decorations(opt, commit);
537 printf("%s", diff_get_color_opt(&opt->diffopt, DIFF_RESET));
538 if (opt->commit_format == CMIT_FMT_ONELINE) {
542 graph_show_oneline(opt->graph);
544 if (opt->reflog_info) {
546 * setup_revisions() ensures that opt->reflog_info
547 * and opt->graph cannot both be set,
548 * so we don't need to worry about printing the
551 show_reflog_message(opt->reflog_info,
552 opt->commit_format == CMIT_FMT_ONELINE,
554 opt->date_mode_explicit);
555 if (opt->commit_format == CMIT_FMT_ONELINE)
560 if (opt->show_signature) {
561 show_signature(opt, commit);
562 show_mergetag(opt, commit);
568 if (opt->show_notes) {
570 struct strbuf notebuf = STRBUF_INIT;
572 raw = (opt->commit_format == CMIT_FMT_USERFORMAT);
573 format_display_notes(commit->object.sha1, ¬ebuf,
574 get_log_output_encoding(), raw);
575 ctx.notes_message = notebuf.len
576 ? strbuf_detach(¬ebuf, NULL)
581 * And then the pretty-printed message itself
583 if (ctx.need_8bit_cte >= 0 && opt->add_signoff)
585 has_non_ascii(fmt_name(getenv("GIT_COMMITTER_NAME"),
586 getenv("GIT_COMMITTER_EMAIL")));
587 ctx.date_mode = opt->date_mode;
588 ctx.date_mode_explicit = opt->date_mode_explicit;
589 ctx.abbrev = opt->diffopt.abbrev;
590 ctx.after_subject = extra_headers;
591 ctx.preserve_subject = opt->preserve_subject;
592 ctx.reflog_info = opt->reflog_info;
593 ctx.fmt = opt->commit_format;
594 pretty_print_commit(&ctx, commit, &msgbuf);
596 if (opt->add_signoff)
597 append_signoff(&msgbuf, 0, APPEND_SIGNOFF_DEDUP);
599 if ((ctx.fmt != CMIT_FMT_USERFORMAT) &&
600 ctx.notes_message && *ctx.notes_message) {
601 if (ctx.fmt == CMIT_FMT_EMAIL) {
602 strbuf_addstr(&msgbuf, "---\n");
603 opt->shown_dashes = 1;
605 strbuf_addstr(&msgbuf, ctx.notes_message);
608 if (opt->show_log_size) {
609 printf("log size %i\n", (int)msgbuf.len);
610 graph_show_oneline(opt->graph);
614 * Set opt->missing_newline if msgbuf doesn't
615 * end in a newline (including if it is empty)
617 if (!msgbuf.len || msgbuf.buf[msgbuf.len - 1] != '\n')
618 opt->missing_newline = 1;
620 opt->missing_newline = 0;
623 graph_show_commit_msg(opt->graph, &msgbuf);
625 fwrite(msgbuf.buf, sizeof(char), msgbuf.len, stdout);
626 if (opt->use_terminator) {
627 if (!opt->missing_newline)
628 graph_show_padding(opt->graph);
629 putchar(opt->diffopt.line_termination);
632 strbuf_release(&msgbuf);
633 free(ctx.notes_message);
636 int log_tree_diff_flush(struct rev_info *opt)
638 opt->shown_dashes = 0;
639 diffcore_std(&opt->diffopt);
641 if (diff_queue_is_empty()) {
642 int saved_fmt = opt->diffopt.output_format;
643 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
644 diff_flush(&opt->diffopt);
645 opt->diffopt.output_format = saved_fmt;
649 if (opt->loginfo && !opt->no_commit_id) {
651 if ((opt->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) &&
652 opt->verbose_header &&
653 opt->commit_format != CMIT_FMT_ONELINE) {
655 * When showing a verbose header (i.e. log message),
656 * and not in --pretty=oneline format, we would want
657 * an extra newline between the end of log and the
658 * diff/diffstat output for readability.
660 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
661 if (opt->diffopt.output_prefix) {
662 struct strbuf *msg = NULL;
663 msg = opt->diffopt.output_prefix(&opt->diffopt,
664 opt->diffopt.output_prefix_data);
665 fwrite(msg->buf, msg->len, 1, stdout);
669 * We may have shown three-dashes line early
670 * between notes and the log message, in which
671 * case we only want a blank line after the
672 * notes without (an extra) three-dashes line.
673 * Otherwise, we show the three-dashes line if
674 * we are showing the patch with diffstat, but
675 * in that case, there is no extra blank line
676 * after the three-dashes line.
678 if (!opt->shown_dashes &&
679 (pch & opt->diffopt.output_format) == pch)
684 diff_flush(&opt->diffopt);
688 static int do_diff_combined(struct rev_info *opt, struct commit *commit)
690 diff_tree_combined_merge(commit, opt->dense_combined_merges, opt);
691 return !opt->loginfo;
695 * Show the diff of a commit.
697 * Return true if we printed any log info messages
699 static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
702 struct commit_list *parents;
703 unsigned const char *sha1 = commit->object.sha1;
705 if (!opt->diff && !DIFF_OPT_TST(&opt->diffopt, EXIT_WITH_STATUS))
709 parents = commit->parents;
711 if (opt->show_root_diff) {
712 diff_root_tree_sha1(sha1, "", &opt->diffopt);
713 log_tree_diff_flush(opt);
715 return !opt->loginfo;
718 /* More than one parent? */
719 if (parents && parents->next) {
720 if (opt->ignore_merges)
722 else if (opt->combine_merges)
723 return do_diff_combined(opt, commit);
724 else if (opt->first_parent_only) {
726 * Generate merge log entry only for the first
727 * parent, showing summary diff of the others
730 diff_tree_sha1(parents->item->object.sha1, sha1, "", &opt->diffopt);
731 log_tree_diff_flush(opt);
732 return !opt->loginfo;
735 /* If we show individual diffs, show the parent info */
736 log->parent = parents->item;
741 struct commit *parent = parents->item;
743 diff_tree_sha1(parent->object.sha1, sha1, "", &opt->diffopt);
744 log_tree_diff_flush(opt);
746 showed_log |= !opt->loginfo;
748 /* Set up the log info for the next parent, if any.. */
749 parents = parents->next;
752 log->parent = parents->item;
758 int log_tree_commit(struct rev_info *opt, struct commit *commit)
767 shown = log_tree_diff(opt, commit, &log);
768 if (!shown && opt->loginfo && opt->always_show_header) {
774 maybe_flush_or_die(stdout, "stdout");