8 #include "reflog-walk.h"
10 #include "string-list.h"
12 #include "gpg-interface.h"
13 #include "sequencer.h"
16 static struct decoration name_decoration
= { "object names" };
17 static int decoration_loaded
;
18 static int decoration_flags
;
20 static char decoration_colors
[][COLOR_MAXLEN
] = {
22 GIT_COLOR_BOLD_GREEN
, /* REF_LOCAL */
23 GIT_COLOR_BOLD_RED
, /* REF_REMOTE */
24 GIT_COLOR_BOLD_YELLOW
, /* REF_TAG */
25 GIT_COLOR_BOLD_MAGENTA
, /* REF_STASH */
26 GIT_COLOR_BOLD_CYAN
, /* REF_HEAD */
27 GIT_COLOR_BOLD_BLUE
, /* GRAFTED */
30 static const char *decorate_get_color(int decorate_use_color
, enum decoration_type ix
)
32 if (want_color(decorate_use_color
))
33 return decoration_colors
[ix
];
37 static int parse_decorate_color_slot(const char *slot
)
40 * We're comparing with 'ignore-case' on
41 * (because config.c sets them all tolower),
42 * but let's match the letters in the literal
43 * string values here with how they are
44 * documented in Documentation/config.txt, for
47 * We love being consistent, don't we?
49 if (!strcasecmp(slot
, "branch"))
50 return DECORATION_REF_LOCAL
;
51 if (!strcasecmp(slot
, "remoteBranch"))
52 return DECORATION_REF_REMOTE
;
53 if (!strcasecmp(slot
, "tag"))
54 return DECORATION_REF_TAG
;
55 if (!strcasecmp(slot
, "stash"))
56 return DECORATION_REF_STASH
;
57 if (!strcasecmp(slot
, "HEAD"))
58 return DECORATION_REF_HEAD
;
62 int parse_decorate_color_config(const char *var
, const char *slot_name
, const char *value
)
64 int slot
= parse_decorate_color_slot(slot_name
);
68 return config_error_nonbool(var
);
69 return color_parse(value
, decoration_colors
[slot
]);
73 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
74 * for showing the commit sha1, use the same check for --decorate
76 #define decorate_get_color_opt(o, ix) \
77 decorate_get_color((o)->use_color, ix)
79 void add_name_decoration(enum decoration_type type
, const char *name
, struct object
*obj
)
81 struct name_decoration
*res
;
82 FLEX_ALLOC_STR(res
, name
, name
);
84 res
->next
= add_decoration(&name_decoration
, obj
, res
);
87 const struct name_decoration
*get_name_decoration(const struct object
*obj
)
89 return lookup_decoration(&name_decoration
, obj
);
92 static int add_ref_decoration(const char *refname
, const struct object_id
*oid
,
93 int flags
, void *cb_data
)
96 enum decoration_type type
= DECORATION_NONE
;
97 struct decoration_filter
*filter
= (struct decoration_filter
*)cb_data
;
99 if (filter
&& !ref_filter_match(refname
,
100 filter
->include_ref_pattern
,
101 filter
->exclude_ref_pattern
))
104 if (starts_with(refname
, git_replace_ref_base
)) {
105 struct object_id original_oid
;
106 if (!check_replace_refs
)
108 if (get_oid_hex(refname
+ strlen(git_replace_ref_base
),
110 warning("invalid replace ref %s", refname
);
113 obj
= parse_object(&original_oid
);
115 add_name_decoration(DECORATION_GRAFTED
, "replaced", obj
);
119 obj
= parse_object(oid
);
123 if (starts_with(refname
, "refs/heads/"))
124 type
= DECORATION_REF_LOCAL
;
125 else if (starts_with(refname
, "refs/remotes/"))
126 type
= DECORATION_REF_REMOTE
;
127 else if (starts_with(refname
, "refs/tags/"))
128 type
= DECORATION_REF_TAG
;
129 else if (!strcmp(refname
, "refs/stash"))
130 type
= DECORATION_REF_STASH
;
131 else if (!strcmp(refname
, "HEAD"))
132 type
= DECORATION_REF_HEAD
;
134 add_name_decoration(type
, refname
, obj
);
135 while (obj
->type
== OBJ_TAG
) {
136 obj
= ((struct tag
*)obj
)->tagged
;
140 parse_object(&obj
->oid
);
141 add_name_decoration(DECORATION_REF_TAG
, refname
, obj
);
146 static int add_graft_decoration(const struct commit_graft
*graft
, void *cb_data
)
148 struct commit
*commit
= lookup_commit(&graft
->oid
);
151 add_name_decoration(DECORATION_GRAFTED
, "grafted", &commit
->object
);
155 void load_ref_decorations(struct decoration_filter
*filter
, int flags
)
157 if (!decoration_loaded
) {
159 struct string_list_item
*item
;
160 for_each_string_list_item(item
, filter
->exclude_ref_pattern
) {
161 normalize_glob_ref(item
, NULL
, item
->string
);
163 for_each_string_list_item(item
, filter
->include_ref_pattern
) {
164 normalize_glob_ref(item
, NULL
, item
->string
);
167 decoration_loaded
= 1;
168 decoration_flags
= flags
;
169 for_each_ref(add_ref_decoration
, filter
);
170 head_ref(add_ref_decoration
, filter
);
171 for_each_commit_graft(add_graft_decoration
, filter
);
175 static void show_parents(struct commit
*commit
, int abbrev
, FILE *file
)
177 struct commit_list
*p
;
178 for (p
= commit
->parents
; p
; p
= p
->next
) {
179 struct commit
*parent
= p
->item
;
180 fprintf(file
, " %s", find_unique_abbrev(&parent
->object
.oid
, abbrev
));
184 static void show_children(struct rev_info
*opt
, struct commit
*commit
, int abbrev
)
186 struct commit_list
*p
= lookup_decoration(&opt
->children
, &commit
->object
);
187 for ( ; p
; p
= p
->next
) {
188 fprintf(opt
->diffopt
.file
, " %s", find_unique_abbrev(&p
->item
->object
.oid
, abbrev
));
193 * Do we have HEAD in the output, and also the branch it points at?
194 * If so, find that decoration entry for that current branch.
196 static const struct name_decoration
*current_pointed_by_HEAD(const struct name_decoration
*decoration
)
198 const struct name_decoration
*list
, *head
= NULL
;
199 const char *branch_name
= NULL
;
202 /* First find HEAD */
203 for (list
= decoration
; list
; list
= list
->next
)
204 if (list
->type
== DECORATION_REF_HEAD
) {
211 /* Now resolve and find the matching current branch */
212 branch_name
= resolve_ref_unsafe("HEAD", 0, NULL
, &rru_flags
);
213 if (!branch_name
|| !(rru_flags
& REF_ISSYMREF
))
216 if (!starts_with(branch_name
, "refs/"))
219 /* OK, do we have that ref in the list? */
220 for (list
= decoration
; list
; list
= list
->next
)
221 if ((list
->type
== DECORATION_REF_LOCAL
) &&
222 !strcmp(branch_name
, list
->name
)) {
229 static void show_name(struct strbuf
*sb
, const struct name_decoration
*decoration
)
231 if (decoration_flags
== DECORATE_SHORT_REFS
)
232 strbuf_addstr(sb
, prettify_refname(decoration
->name
));
234 strbuf_addstr(sb
, decoration
->name
);
238 * The caller makes sure there is no funny color before calling.
239 * format_decorations_extended makes sure the same after return.
241 void format_decorations_extended(struct strbuf
*sb
,
242 const struct commit
*commit
,
245 const char *separator
,
248 const struct name_decoration
*decoration
;
249 const struct name_decoration
*current_and_HEAD
;
250 const char *color_commit
=
251 diff_get_color(use_color
, DIFF_COMMIT
);
252 const char *color_reset
=
253 decorate_get_color(use_color
, DECORATION_NONE
);
255 decoration
= get_name_decoration(&commit
->object
);
259 current_and_HEAD
= current_pointed_by_HEAD(decoration
);
262 * When both current and HEAD are there, only
263 * show HEAD->current where HEAD would have
264 * appeared, skipping the entry for current.
266 if (decoration
!= current_and_HEAD
) {
267 strbuf_addstr(sb
, color_commit
);
268 strbuf_addstr(sb
, prefix
);
269 strbuf_addstr(sb
, color_reset
);
270 strbuf_addstr(sb
, decorate_get_color(use_color
, decoration
->type
));
271 if (decoration
->type
== DECORATION_REF_TAG
)
272 strbuf_addstr(sb
, "tag: ");
274 show_name(sb
, decoration
);
276 if (current_and_HEAD
&&
277 decoration
->type
== DECORATION_REF_HEAD
) {
278 strbuf_addstr(sb
, " -> ");
279 strbuf_addstr(sb
, color_reset
);
280 strbuf_addstr(sb
, decorate_get_color(use_color
, current_and_HEAD
->type
));
281 show_name(sb
, current_and_HEAD
);
283 strbuf_addstr(sb
, color_reset
);
287 decoration
= decoration
->next
;
289 strbuf_addstr(sb
, color_commit
);
290 strbuf_addstr(sb
, suffix
);
291 strbuf_addstr(sb
, color_reset
);
294 void show_decorations(struct rev_info
*opt
, struct commit
*commit
)
296 struct strbuf sb
= STRBUF_INIT
;
298 if (opt
->show_source
&& commit
->util
)
299 fprintf(opt
->diffopt
.file
, "\t%s", (char *) commit
->util
);
300 if (!opt
->show_decorations
)
302 format_decorations(&sb
, commit
, opt
->diffopt
.use_color
);
303 fputs(sb
.buf
, opt
->diffopt
.file
);
307 static unsigned int digits_in_number(unsigned int number
)
309 unsigned int i
= 10, result
= 1;
310 while (i
<= number
) {
317 void fmt_output_subject(struct strbuf
*filename
,
319 struct rev_info
*info
)
321 const char *suffix
= info
->patch_suffix
;
323 int start_len
= filename
->len
;
324 int max_len
= start_len
+ FORMAT_PATCH_NAME_MAX
- (strlen(suffix
) + 1);
326 if (0 < info
->reroll_count
)
327 strbuf_addf(filename
, "v%d-", info
->reroll_count
);
328 strbuf_addf(filename
, "%04d-%s", nr
, subject
);
330 if (max_len
< filename
->len
)
331 strbuf_setlen(filename
, max_len
);
332 strbuf_addstr(filename
, suffix
);
335 void fmt_output_commit(struct strbuf
*filename
,
336 struct commit
*commit
,
337 struct rev_info
*info
)
339 struct pretty_print_context ctx
= {0};
340 struct strbuf subject
= STRBUF_INIT
;
342 format_commit_message(commit
, "%f", &subject
, &ctx
);
343 fmt_output_subject(filename
, subject
.buf
, info
);
344 strbuf_release(&subject
);
347 void fmt_output_email_subject(struct strbuf
*sb
, struct rev_info
*opt
)
349 if (opt
->total
> 0) {
350 strbuf_addf(sb
, "Subject: [%s%s%0*d/%d] ",
352 *opt
->subject_prefix
? " " : "",
353 digits_in_number(opt
->total
),
354 opt
->nr
, opt
->total
);
355 } else if (opt
->total
== 0 && opt
->subject_prefix
&& *opt
->subject_prefix
) {
356 strbuf_addf(sb
, "Subject: [%s] ",
357 opt
->subject_prefix
);
359 strbuf_addstr(sb
, "Subject: ");
363 void log_write_email_headers(struct rev_info
*opt
, struct commit
*commit
,
364 const char **extra_headers_p
,
365 int *need_8bit_cte_p
)
367 const char *extra_headers
= opt
->extra_headers
;
368 const char *name
= oid_to_hex(opt
->zero_commit
?
369 &null_oid
: &commit
->object
.oid
);
371 *need_8bit_cte_p
= 0; /* unknown */
373 fprintf(opt
->diffopt
.file
, "From %s Mon Sep 17 00:00:00 2001\n", name
);
374 graph_show_oneline(opt
->graph
);
375 if (opt
->message_id
) {
376 fprintf(opt
->diffopt
.file
, "Message-Id: <%s>\n", opt
->message_id
);
377 graph_show_oneline(opt
->graph
);
379 if (opt
->ref_message_ids
&& opt
->ref_message_ids
->nr
> 0) {
381 n
= opt
->ref_message_ids
->nr
;
382 fprintf(opt
->diffopt
.file
, "In-Reply-To: <%s>\n", opt
->ref_message_ids
->items
[n
-1].string
);
383 for (i
= 0; i
< n
; i
++)
384 fprintf(opt
->diffopt
.file
, "%s<%s>\n", (i
> 0 ? "\t" : "References: "),
385 opt
->ref_message_ids
->items
[i
].string
);
386 graph_show_oneline(opt
->graph
);
388 if (opt
->mime_boundary
) {
389 static char subject_buffer
[1024];
390 static char buffer
[1024];
391 struct strbuf filename
= STRBUF_INIT
;
392 *need_8bit_cte_p
= -1; /* NEVER */
393 snprintf(subject_buffer
, sizeof(subject_buffer
) - 1,
395 "MIME-Version: 1.0\n"
396 "Content-Type: multipart/mixed;"
397 " boundary=\"%s%s\"\n"
399 "This is a multi-part message in MIME "
402 "Content-Type: text/plain; "
403 "charset=UTF-8; format=fixed\n"
404 "Content-Transfer-Encoding: 8bit\n\n",
405 extra_headers
? extra_headers
: "",
406 mime_boundary_leader
, opt
->mime_boundary
,
407 mime_boundary_leader
, opt
->mime_boundary
);
408 extra_headers
= subject_buffer
;
410 if (opt
->numbered_files
)
411 strbuf_addf(&filename
, "%d", opt
->nr
);
413 fmt_output_commit(&filename
, commit
, opt
);
414 snprintf(buffer
, sizeof(buffer
) - 1,
416 "Content-Type: text/x-patch;"
418 "Content-Transfer-Encoding: 8bit\n"
419 "Content-Disposition: %s;"
420 " filename=\"%s\"\n\n",
421 mime_boundary_leader
, opt
->mime_boundary
,
423 opt
->no_inline
? "attachment" : "inline",
425 opt
->diffopt
.stat_sep
= buffer
;
426 strbuf_release(&filename
);
428 *extra_headers_p
= extra_headers
;
431 static void show_sig_lines(struct rev_info
*opt
, int status
, const char *bol
)
433 const char *color
, *reset
, *eol
;
435 color
= diff_get_color_opt(&opt
->diffopt
,
436 status
? DIFF_WHITESPACE
: DIFF_FRAGINFO
);
437 reset
= diff_get_color_opt(&opt
->diffopt
, DIFF_RESET
);
439 eol
= strchrnul(bol
, '\n');
440 fprintf(opt
->diffopt
.file
, "%s%.*s%s%s", color
, (int)(eol
- bol
), bol
, reset
,
442 graph_show_oneline(opt
->graph
);
443 bol
= (*eol
) ? (eol
+ 1) : eol
;
447 static void show_signature(struct rev_info
*opt
, struct commit
*commit
)
449 struct strbuf payload
= STRBUF_INIT
;
450 struct strbuf signature
= STRBUF_INIT
;
451 struct strbuf gpg_output
= STRBUF_INIT
;
454 if (parse_signed_commit(commit
, &payload
, &signature
) <= 0)
457 status
= verify_signed_buffer(payload
.buf
, payload
.len
,
458 signature
.buf
, signature
.len
,
460 if (status
&& !gpg_output
.len
)
461 strbuf_addstr(&gpg_output
, "No signature\n");
463 show_sig_lines(opt
, status
, gpg_output
.buf
);
466 strbuf_release(&gpg_output
);
467 strbuf_release(&payload
);
468 strbuf_release(&signature
);
471 static int which_parent(const struct object_id
*oid
, const struct commit
*commit
)
474 const struct commit_list
*parent
;
476 for (nth
= 0, parent
= commit
->parents
; parent
; parent
= parent
->next
) {
477 if (!oidcmp(&parent
->item
->object
.oid
, oid
))
484 static int is_common_merge(const struct commit
*commit
)
486 return (commit
->parents
487 && commit
->parents
->next
488 && !commit
->parents
->next
->next
);
491 static void show_one_mergetag(struct commit
*commit
,
492 struct commit_extra_header
*extra
,
495 struct rev_info
*opt
= (struct rev_info
*)data
;
496 struct object_id oid
;
498 struct strbuf verify_message
;
500 size_t payload_size
, gpg_message_offset
;
502 hash_object_file(extra
->value
, extra
->len
, type_name(OBJ_TAG
), &oid
);
503 tag
= lookup_tag(&oid
);
505 return; /* error message already given */
507 strbuf_init(&verify_message
, 256);
508 if (parse_tag_buffer(tag
, extra
->value
, extra
->len
))
509 strbuf_addstr(&verify_message
, "malformed mergetag\n");
510 else if (is_common_merge(commit
) &&
511 !oidcmp(&tag
->tagged
->oid
,
512 &commit
->parents
->next
->item
->object
.oid
))
513 strbuf_addf(&verify_message
,
514 "merged tag '%s'\n", tag
->tag
);
515 else if ((nth
= which_parent(&tag
->tagged
->oid
, commit
)) < 0)
516 strbuf_addf(&verify_message
, "tag %s names a non-parent %s\n",
517 tag
->tag
, tag
->tagged
->oid
.hash
);
519 strbuf_addf(&verify_message
,
520 "parent #%d, tagged '%s'\n", nth
+ 1, tag
->tag
);
521 gpg_message_offset
= verify_message
.len
;
523 payload_size
= parse_signature(extra
->value
, extra
->len
);
525 if (extra
->len
> payload_size
) {
526 /* could have a good signature */
527 if (!verify_signed_buffer(extra
->value
, payload_size
,
528 extra
->value
+ payload_size
,
529 extra
->len
- payload_size
,
530 &verify_message
, NULL
))
531 status
= 0; /* good */
532 else if (verify_message
.len
<= gpg_message_offset
)
533 strbuf_addstr(&verify_message
, "No signature\n");
534 /* otherwise we couldn't verify, which is shown as bad */
537 show_sig_lines(opt
, status
, verify_message
.buf
);
538 strbuf_release(&verify_message
);
541 static void show_mergetag(struct rev_info
*opt
, struct commit
*commit
)
543 for_each_mergetag(show_one_mergetag
, commit
, opt
);
546 void show_log(struct rev_info
*opt
)
548 struct strbuf msgbuf
= STRBUF_INIT
;
549 struct log_info
*log
= opt
->loginfo
;
550 struct commit
*commit
= log
->commit
, *parent
= log
->parent
;
551 int abbrev_commit
= opt
->abbrev_commit
? opt
->abbrev
: GIT_SHA1_HEXSZ
;
552 const char *extra_headers
= opt
->extra_headers
;
553 struct pretty_print_context ctx
= {0};
556 if (!opt
->verbose_header
) {
557 graph_show_commit(opt
->graph
);
560 put_revision_mark(opt
, commit
);
561 fputs(find_unique_abbrev(&commit
->object
.oid
, abbrev_commit
), opt
->diffopt
.file
);
562 if (opt
->print_parents
)
563 show_parents(commit
, abbrev_commit
, opt
->diffopt
.file
);
564 if (opt
->children
.name
)
565 show_children(opt
, commit
, abbrev_commit
);
566 show_decorations(opt
, commit
);
567 if (opt
->graph
&& !graph_is_commit_finished(opt
->graph
)) {
568 putc('\n', opt
->diffopt
.file
);
569 graph_show_remainder(opt
->graph
);
571 putc(opt
->diffopt
.line_termination
, opt
->diffopt
.file
);
576 * If use_terminator is set, we already handled any record termination
577 * at the end of the last record.
578 * Otherwise, add a diffopt.line_termination character before all
579 * entries but the first. (IOW, as a separator between entries)
581 if (opt
->shown_one
&& !opt
->use_terminator
) {
583 * If entries are separated by a newline, the output
584 * should look human-readable. If the last entry ended
585 * with a newline, print the graph output before this
586 * newline. Otherwise it will end up as a completely blank
587 * line and will look like a gap in the graph.
589 * If the entry separator is not a newline, the output is
590 * primarily intended for programmatic consumption, and we
591 * never want the extra graph output before the entry
594 if (opt
->diffopt
.line_termination
== '\n' &&
595 !opt
->missing_newline
)
596 graph_show_padding(opt
->graph
);
597 putc(opt
->diffopt
.line_termination
, opt
->diffopt
.file
);
602 * If the history graph was requested,
603 * print the graph, up to this commit's line
605 graph_show_commit(opt
->graph
);
608 * Print header line of header..
611 if (cmit_fmt_is_mail(opt
->commit_format
)) {
612 log_write_email_headers(opt
, commit
, &extra_headers
,
615 ctx
.print_email_subject
= 1;
616 } else if (opt
->commit_format
!= CMIT_FMT_USERFORMAT
) {
617 fputs(diff_get_color_opt(&opt
->diffopt
, DIFF_COMMIT
), opt
->diffopt
.file
);
618 if (opt
->commit_format
!= CMIT_FMT_ONELINE
)
619 fputs("commit ", opt
->diffopt
.file
);
622 put_revision_mark(opt
, commit
);
623 fputs(find_unique_abbrev(&commit
->object
.oid
,
626 if (opt
->print_parents
)
627 show_parents(commit
, abbrev_commit
, opt
->diffopt
.file
);
628 if (opt
->children
.name
)
629 show_children(opt
, commit
, abbrev_commit
);
631 fprintf(opt
->diffopt
.file
, " (from %s)",
632 find_unique_abbrev(&parent
->object
.oid
, abbrev_commit
));
633 fputs(diff_get_color_opt(&opt
->diffopt
, DIFF_RESET
), opt
->diffopt
.file
);
634 show_decorations(opt
, commit
);
635 if (opt
->commit_format
== CMIT_FMT_ONELINE
) {
636 putc(' ', opt
->diffopt
.file
);
638 putc('\n', opt
->diffopt
.file
);
639 graph_show_oneline(opt
->graph
);
641 if (opt
->reflog_info
) {
643 * setup_revisions() ensures that opt->reflog_info
644 * and opt->graph cannot both be set,
645 * so we don't need to worry about printing the
648 show_reflog_message(opt
->reflog_info
,
649 opt
->commit_format
== CMIT_FMT_ONELINE
,
651 opt
->date_mode_explicit
);
652 if (opt
->commit_format
== CMIT_FMT_ONELINE
)
657 if (opt
->show_signature
) {
658 show_signature(opt
, commit
);
659 show_mergetag(opt
, commit
);
662 if (opt
->show_notes
) {
664 struct strbuf notebuf
= STRBUF_INIT
;
666 raw
= (opt
->commit_format
== CMIT_FMT_USERFORMAT
);
667 format_display_notes(&commit
->object
.oid
, ¬ebuf
,
668 get_log_output_encoding(), raw
);
669 ctx
.notes_message
= notebuf
.len
670 ? strbuf_detach(¬ebuf
, NULL
)
675 * And then the pretty-printed message itself
677 if (ctx
.need_8bit_cte
>= 0 && opt
->add_signoff
)
679 has_non_ascii(fmt_name(getenv("GIT_COMMITTER_NAME"),
680 getenv("GIT_COMMITTER_EMAIL")));
681 ctx
.date_mode
= opt
->date_mode
;
682 ctx
.date_mode_explicit
= opt
->date_mode_explicit
;
683 ctx
.abbrev
= opt
->diffopt
.abbrev
;
684 ctx
.after_subject
= extra_headers
;
685 ctx
.preserve_subject
= opt
->preserve_subject
;
686 ctx
.reflog_info
= opt
->reflog_info
;
687 ctx
.fmt
= opt
->commit_format
;
688 ctx
.mailmap
= opt
->mailmap
;
689 ctx
.color
= opt
->diffopt
.use_color
;
690 ctx
.expand_tabs_in_log
= opt
->expand_tabs_in_log
;
691 ctx
.output_encoding
= get_log_output_encoding();
692 if (opt
->from_ident
.mail_begin
&& opt
->from_ident
.name_begin
)
693 ctx
.from_ident
= &opt
->from_ident
;
695 ctx
.graph_width
= graph_width(opt
->graph
);
696 pretty_print_commit(&ctx
, commit
, &msgbuf
);
698 if (opt
->add_signoff
)
699 append_signoff(&msgbuf
, 0, APPEND_SIGNOFF_DEDUP
);
701 if ((ctx
.fmt
!= CMIT_FMT_USERFORMAT
) &&
702 ctx
.notes_message
&& *ctx
.notes_message
) {
703 if (cmit_fmt_is_mail(ctx
.fmt
)) {
704 strbuf_addstr(&msgbuf
, "---\n");
705 opt
->shown_dashes
= 1;
707 strbuf_addstr(&msgbuf
, ctx
.notes_message
);
710 if (opt
->show_log_size
) {
711 fprintf(opt
->diffopt
.file
, "log size %i\n", (int)msgbuf
.len
);
712 graph_show_oneline(opt
->graph
);
716 * Set opt->missing_newline if msgbuf doesn't
717 * end in a newline (including if it is empty)
719 if (!msgbuf
.len
|| msgbuf
.buf
[msgbuf
.len
- 1] != '\n')
720 opt
->missing_newline
= 1;
722 opt
->missing_newline
= 0;
724 graph_show_commit_msg(opt
->graph
, opt
->diffopt
.file
, &msgbuf
);
725 if (opt
->use_terminator
&& !commit_format_is_empty(opt
->commit_format
)) {
726 if (!opt
->missing_newline
)
727 graph_show_padding(opt
->graph
);
728 putc(opt
->diffopt
.line_termination
, opt
->diffopt
.file
);
731 strbuf_release(&msgbuf
);
732 free(ctx
.notes_message
);
735 int log_tree_diff_flush(struct rev_info
*opt
)
737 opt
->shown_dashes
= 0;
738 diffcore_std(&opt
->diffopt
);
740 if (diff_queue_is_empty()) {
741 int saved_fmt
= opt
->diffopt
.output_format
;
742 opt
->diffopt
.output_format
= DIFF_FORMAT_NO_OUTPUT
;
743 diff_flush(&opt
->diffopt
);
744 opt
->diffopt
.output_format
= saved_fmt
;
748 if (opt
->loginfo
&& !opt
->no_commit_id
) {
750 if ((opt
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
) &&
751 opt
->verbose_header
&&
752 opt
->commit_format
!= CMIT_FMT_ONELINE
&&
753 !commit_format_is_empty(opt
->commit_format
)) {
755 * When showing a verbose header (i.e. log message),
756 * and not in --pretty=oneline format, we would want
757 * an extra newline between the end of log and the
758 * diff/diffstat output for readability.
760 int pch
= DIFF_FORMAT_DIFFSTAT
| DIFF_FORMAT_PATCH
;
761 if (opt
->diffopt
.output_prefix
) {
762 struct strbuf
*msg
= NULL
;
763 msg
= opt
->diffopt
.output_prefix(&opt
->diffopt
,
764 opt
->diffopt
.output_prefix_data
);
765 fwrite(msg
->buf
, msg
->len
, 1, opt
->diffopt
.file
);
769 * We may have shown three-dashes line early
770 * between notes and the log message, in which
771 * case we only want a blank line after the
772 * notes without (an extra) three-dashes line.
773 * Otherwise, we show the three-dashes line if
774 * we are showing the patch with diffstat, but
775 * in that case, there is no extra blank line
776 * after the three-dashes line.
778 if (!opt
->shown_dashes
&&
779 (pch
& opt
->diffopt
.output_format
) == pch
)
780 fprintf(opt
->diffopt
.file
, "---");
781 putc('\n', opt
->diffopt
.file
);
784 diff_flush(&opt
->diffopt
);
788 static int do_diff_combined(struct rev_info
*opt
, struct commit
*commit
)
790 diff_tree_combined_merge(commit
, opt
->dense_combined_merges
, opt
);
791 return !opt
->loginfo
;
795 * Show the diff of a commit.
797 * Return true if we printed any log info messages
799 static int log_tree_diff(struct rev_info
*opt
, struct commit
*commit
, struct log_info
*log
)
802 struct commit_list
*parents
;
803 struct object_id
*oid
;
805 if (!opt
->diff
&& !opt
->diffopt
.flags
.exit_with_status
)
808 parse_commit_or_die(commit
);
809 oid
= &commit
->tree
->object
.oid
;
812 parents
= get_saved_parents(opt
, commit
);
814 if (opt
->show_root_diff
) {
815 diff_root_tree_oid(oid
, "", &opt
->diffopt
);
816 log_tree_diff_flush(opt
);
818 return !opt
->loginfo
;
821 /* More than one parent? */
822 if (parents
&& parents
->next
) {
823 if (opt
->ignore_merges
)
825 else if (opt
->combine_merges
)
826 return do_diff_combined(opt
, commit
);
827 else if (opt
->first_parent_only
) {
829 * Generate merge log entry only for the first
830 * parent, showing summary diff of the others
833 parse_commit_or_die(parents
->item
);
834 diff_tree_oid(&parents
->item
->tree
->object
.oid
,
835 oid
, "", &opt
->diffopt
);
836 log_tree_diff_flush(opt
);
837 return !opt
->loginfo
;
840 /* If we show individual diffs, show the parent info */
841 log
->parent
= parents
->item
;
846 struct commit
*parent
= parents
->item
;
848 parse_commit_or_die(parent
);
849 diff_tree_oid(&parent
->tree
->object
.oid
,
850 oid
, "", &opt
->diffopt
);
851 log_tree_diff_flush(opt
);
853 showed_log
|= !opt
->loginfo
;
855 /* Set up the log info for the next parent, if any.. */
856 parents
= parents
->next
;
859 log
->parent
= parents
->item
;
865 int log_tree_commit(struct rev_info
*opt
, struct commit
*commit
)
868 int shown
, close_file
= opt
->diffopt
.close_file
;
873 opt
->diffopt
.close_file
= 0;
875 if (opt
->line_level_traverse
)
876 return line_log_print(opt
, commit
);
878 if (opt
->track_linear
&& !opt
->linear
&& !opt
->reverse_output_stage
)
879 fprintf(opt
->diffopt
.file
, "\n%s\n", opt
->break_bar
);
880 shown
= log_tree_diff(opt
, commit
, &log
);
881 if (!shown
&& opt
->loginfo
&& opt
->always_show_header
) {
886 if (opt
->track_linear
&& !opt
->linear
&& opt
->reverse_output_stage
)
887 fprintf(opt
->diffopt
.file
, "\n%s\n", opt
->break_bar
);
889 maybe_flush_or_die(opt
->diffopt
.file
, "stdout");
891 fclose(opt
->diffopt
.file
);