]> git.ipfire.org Git - thirdparty/git.git/blame - log-tree.c
urlmatch: enable normalization of URLs with globs
[thirdparty/git.git] / log-tree.c
CommitLineData
5f1c3f07
JH
1#include "cache.h"
2#include "diff.h"
3#include "commit.h"
cab4feb6 4#include "tag.h"
7fefda5c 5#include "graph.h"
5f1c3f07 6#include "log-tree.h"
8860fd42 7#include "reflog-walk.h"
cab4feb6 8#include "refs.h"
b079c50e 9#include "string-list.h"
67a4b586 10#include "color.h"
0c37f1fc 11#include "gpg-interface.h"
959a2623 12#include "sequencer.h"
12da1d1f 13#include "line-log.h"
5f1c3f07 14
2608c249 15static struct decoration name_decoration = { "object names" };
76c61fbd
JH
16static int decoration_loaded;
17static int decoration_flags;
a7524128 18
67a4b586
NR
19static char decoration_colors[][COLOR_MAXLEN] = {
20 GIT_COLOR_RESET,
21 GIT_COLOR_BOLD_GREEN, /* REF_LOCAL */
22 GIT_COLOR_BOLD_RED, /* REF_REMOTE */
23 GIT_COLOR_BOLD_YELLOW, /* REF_TAG */
24 GIT_COLOR_BOLD_MAGENTA, /* REF_STASH */
25 GIT_COLOR_BOLD_CYAN, /* REF_HEAD */
76f5df30 26 GIT_COLOR_BOLD_BLUE, /* GRAFTED */
67a4b586
NR
27};
28
29static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix)
30{
daa0c3d9 31 if (want_color(decorate_use_color))
67a4b586
NR
32 return decoration_colors[ix];
33 return "";
34}
35
5e11bee6
NR
36static int parse_decorate_color_slot(const char *slot)
37{
38 /*
39 * We're comparing with 'ignore-case' on
40 * (because config.c sets them all tolower),
41 * but let's match the letters in the literal
42 * string values here with how they are
43 * documented in Documentation/config.txt, for
44 * consistency.
45 *
46 * We love being consistent, don't we?
47 */
48 if (!strcasecmp(slot, "branch"))
49 return DECORATION_REF_LOCAL;
50 if (!strcasecmp(slot, "remoteBranch"))
51 return DECORATION_REF_REMOTE;
52 if (!strcasecmp(slot, "tag"))
53 return DECORATION_REF_TAG;
54 if (!strcasecmp(slot, "stash"))
55 return DECORATION_REF_STASH;
56 if (!strcasecmp(slot, "HEAD"))
57 return DECORATION_REF_HEAD;
58 return -1;
59}
60
8852117a 61int parse_decorate_color_config(const char *var, const char *slot_name, const char *value)
5e11bee6 62{
8852117a 63 int slot = parse_decorate_color_slot(slot_name);
5e11bee6
NR
64 if (slot < 0)
65 return 0;
66 if (!value)
67 return config_error_nonbool(var);
f6c5a296 68 return color_parse(value, decoration_colors[slot]);
5e11bee6
NR
69}
70
67a4b586
NR
71/*
72 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
73 * for showing the commit sha1, use the same check for --decorate
74 */
75#define decorate_get_color_opt(o, ix) \
f1c96261 76 decorate_get_color((o)->use_color, ix)
67a4b586 77
662174d2 78void add_name_decoration(enum decoration_type type, const char *name, struct object *obj)
cab4feb6 79{
96ffc06f
JK
80 struct name_decoration *res;
81 FLEX_ALLOC_STR(res, name, name);
a7524128 82 res->type = type;
cab4feb6
RS
83 res->next = add_decoration(&name_decoration, obj, res);
84}
85
2608c249
JK
86const struct name_decoration *get_name_decoration(const struct object *obj)
87{
88 return lookup_decoration(&name_decoration, obj);
89}
90
f124b730
MH
91static int add_ref_decoration(const char *refname, const struct object_id *oid,
92 int flags, void *cb_data)
cab4feb6 93{
5267d292 94 struct object *obj;
a7524128 95 enum decoration_type type = DECORATION_NONE;
5267d292 96
429ad204
JH
97 assert(cb_data == NULL);
98
58d121b2 99 if (starts_with(refname, git_replace_ref_base)) {
3d79f657 100 struct object_id original_oid;
afc711b8 101 if (!check_replace_refs)
b9ad5002 102 return 0;
31a0ad54
JH
103 if (get_oid_hex(refname + strlen(git_replace_ref_base),
104 &original_oid)) {
5267d292
NTND
105 warning("invalid replace ref %s", refname);
106 return 0;
107 }
3d79f657 108 obj = parse_object(original_oid.hash);
5267d292
NTND
109 if (obj)
110 add_name_decoration(DECORATION_GRAFTED, "replaced", obj);
111 return 0;
112 }
113
f124b730 114 obj = parse_object(oid->hash);
cab4feb6
RS
115 if (!obj)
116 return 0;
a7524128 117
59556548 118 if (starts_with(refname, "refs/heads/"))
a7524128 119 type = DECORATION_REF_LOCAL;
59556548 120 else if (starts_with(refname, "refs/remotes/"))
a7524128 121 type = DECORATION_REF_REMOTE;
59556548 122 else if (starts_with(refname, "refs/tags/"))
a7524128 123 type = DECORATION_REF_TAG;
97ba642b 124 else if (!strcmp(refname, "refs/stash"))
a7524128 125 type = DECORATION_REF_STASH;
97ba642b 126 else if (!strcmp(refname, "HEAD"))
a7524128
NR
127 type = DECORATION_REF_HEAD;
128
a7524128 129 add_name_decoration(type, refname, obj);
cab4feb6
RS
130 while (obj->type == OBJ_TAG) {
131 obj = ((struct tag *)obj)->tagged;
132 if (!obj)
133 break;
5e1361cc 134 if (!obj->parsed)
ed1c9977 135 parse_object(obj->oid.hash);
a7524128 136 add_name_decoration(DECORATION_REF_TAG, refname, obj);
cab4feb6
RS
137 }
138 return 0;
139}
140
76f5df30
NTND
141static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
142{
7683e2e6 143 struct commit *commit = lookup_commit(graft->oid.hash);
76f5df30
NTND
144 if (!commit)
145 return 0;
146 add_name_decoration(DECORATION_GRAFTED, "grafted", &commit->object);
147 return 0;
148}
149
33e7018c 150void load_ref_decorations(int flags)
cab4feb6 151{
76c61fbd 152 if (!decoration_loaded) {
2b2a5be3 153
76c61fbd
JH
154 decoration_loaded = 1;
155 decoration_flags = flags;
f124b730
MH
156 for_each_ref(add_ref_decoration, NULL);
157 head_ref(add_ref_decoration, NULL);
76f5df30 158 for_each_commit_graft(add_graft_decoration, NULL);
cab4feb6
RS
159 }
160}
161
4d7b0efc 162static void show_parents(struct commit *commit, int abbrev, FILE *file)
c8c893c6
LT
163{
164 struct commit_list *p;
165 for (p = commit->parents; p ; p = p->next) {
166 struct commit *parent = p->item;
4d7b0efc 167 fprintf(file, " %s", find_unique_abbrev(parent->object.oid.hash, abbrev));
c8c893c6
LT
168 }
169}
170
91b849b2
JS
171static void show_children(struct rev_info *opt, struct commit *commit, int abbrev)
172{
173 struct commit_list *p = lookup_decoration(&opt->children, &commit->object);
174 for ( ; p; p = p->next) {
4d7b0efc 175 fprintf(opt->diffopt.file, " %s", find_unique_abbrev(p->item->object.oid.hash, abbrev));
91b849b2
JS
176 }
177}
178
51ff0f27
JH
179/*
180 * Do we have HEAD in the output, and also the branch it points at?
181 * If so, find that decoration entry for that current branch.
182 */
183static const struct name_decoration *current_pointed_by_HEAD(const struct name_decoration *decoration)
184{
185 const struct name_decoration *list, *head = NULL;
186 const char *branch_name = NULL;
187 unsigned char unused[20];
188 int rru_flags;
189
190 /* First find HEAD */
191 for (list = decoration; list; list = list->next)
192 if (list->type == DECORATION_REF_HEAD) {
193 head = list;
194 break;
195 }
196 if (!head)
197 return NULL;
198
199 /* Now resolve and find the matching current branch */
200 branch_name = resolve_ref_unsafe("HEAD", 0, unused, &rru_flags);
201 if (!(rru_flags & REF_ISSYMREF))
202 return NULL;
76c61fbd 203
429ad204 204 if (!starts_with(branch_name, "refs/"))
51ff0f27
JH
205 return NULL;
206
207 /* OK, do we have that ref in the list? */
208 for (list = decoration; list; list = list->next)
209 if ((list->type == DECORATION_REF_LOCAL) &&
210 !strcmp(branch_name, list->name)) {
211 return list;
212 }
213
214 return NULL;
215}
216
429ad204
JH
217static void show_name(struct strbuf *sb, const struct name_decoration *decoration)
218{
219 if (decoration_flags == DECORATE_SHORT_REFS)
220 strbuf_addstr(sb, prettify_refname(decoration->name));
221 else
222 strbuf_addstr(sb, decoration->name);
223}
224
9d3f002f 225/*
9271095c
HJ
226 * The caller makes sure there is no funny color before calling.
227 * format_decorations_extended makes sure the same after return.
9d3f002f 228 */
9271095c 229void format_decorations_extended(struct strbuf *sb,
9d3f002f 230 const struct commit *commit,
9271095c
HJ
231 int use_color,
232 const char *prefix,
233 const char *separator,
234 const char *suffix)
ca135e7a 235{
2608c249 236 const struct name_decoration *decoration;
51ff0f27 237 const struct name_decoration *current_and_HEAD;
67a4b586 238 const char *color_commit =
9d3f002f 239 diff_get_color(use_color, DIFF_COMMIT);
67a4b586 240 const char *color_reset =
9d3f002f 241 decorate_get_color(use_color, DECORATION_NONE);
ca135e7a 242
2608c249 243 decoration = get_name_decoration(&commit->object);
ca135e7a
LT
244 if (!decoration)
245 return;
51ff0f27
JH
246
247 current_and_HEAD = current_pointed_by_HEAD(decoration);
ca135e7a 248 while (decoration) {
51ff0f27
JH
249 /*
250 * When both current and HEAD are there, only
251 * show HEAD->current where HEAD would have
252 * appeared, skipping the entry for current.
253 */
254 if (decoration != current_and_HEAD) {
255 strbuf_addstr(sb, color_commit);
256 strbuf_addstr(sb, prefix);
257 strbuf_addstr(sb, color_reset);
258 strbuf_addstr(sb, decorate_get_color(use_color, decoration->type));
259 if (decoration->type == DECORATION_REF_TAG)
260 strbuf_addstr(sb, "tag: ");
261
429ad204 262 show_name(sb, decoration);
51ff0f27
JH
263
264 if (current_and_HEAD &&
265 decoration->type == DECORATION_REF_HEAD) {
51ff0f27
JH
266 strbuf_addstr(sb, " -> ");
267 strbuf_addstr(sb, color_reset);
268 strbuf_addstr(sb, decorate_get_color(use_color, current_and_HEAD->type));
429ad204 269 show_name(sb, current_and_HEAD);
51ff0f27
JH
270 }
271 strbuf_addstr(sb, color_reset);
272
273 prefix = separator;
274 }
ca135e7a
LT
275 decoration = decoration->next;
276 }
9d3f002f 277 strbuf_addstr(sb, color_commit);
9271095c 278 strbuf_addstr(sb, suffix);
9d3f002f
NTND
279 strbuf_addstr(sb, color_reset);
280}
281
282void show_decorations(struct rev_info *opt, struct commit *commit)
283{
284 struct strbuf sb = STRBUF_INIT;
285
286 if (opt->show_source && commit->util)
4d7b0efc 287 fprintf(opt->diffopt.file, "\t%s", (char *) commit->util);
9d3f002f
NTND
288 if (!opt->show_decorations)
289 return;
290 format_decorations(&sb, commit, opt->diffopt.use_color);
4d7b0efc 291 fputs(sb.buf, opt->diffopt.file);
9d3f002f 292 strbuf_release(&sb);
ca135e7a
LT
293}
294
e00de24b
JS
295static unsigned int digits_in_number(unsigned int number)
296{
297 unsigned int i = 10, result = 1;
298 while (i <= number) {
299 i *= 10;
300 result++;
301 }
302 return result;
303}
304
d28b5d47
JH
305void fmt_output_subject(struct strbuf *filename,
306 const char *subject,
021f2f4c 307 struct rev_info *info)
6fa8e627 308{
021f2f4c
JH
309 const char *suffix = info->patch_suffix;
310 int nr = info->nr;
d28b5d47
JH
311 int start_len = filename->len;
312 int max_len = start_len + FORMAT_PATCH_NAME_MAX - (strlen(suffix) + 1);
313
5fe10fe8
JH
314 if (0 < info->reroll_count)
315 strbuf_addf(filename, "v%d-", info->reroll_count);
d28b5d47
JH
316 strbuf_addf(filename, "%04d-%s", nr, subject);
317
318 if (max_len < filename->len)
319 strbuf_setlen(filename, max_len);
320 strbuf_addstr(filename, suffix);
321}
322
323void fmt_output_commit(struct strbuf *filename,
324 struct commit *commit,
325 struct rev_info *info)
326{
327 struct pretty_print_context ctx = {0};
328 struct strbuf subject = STRBUF_INIT;
329
330 format_commit_message(commit, "%f", &subject, &ctx);
331 fmt_output_subject(filename, subject.buf, info);
332 strbuf_release(&subject);
6fa8e627
SB
333}
334
108dab28 335void log_write_email_headers(struct rev_info *opt, struct commit *commit,
267123b4
JH
336 const char **subject_p,
337 const char **extra_headers_p,
338 int *need_8bit_cte_p)
b02bd65f
DB
339{
340 const char *subject = NULL;
341 const char *extra_headers = opt->extra_headers;
3a30aa17 342 const char *name = oid_to_hex(opt->zero_commit ?
343 &null_oid : &commit->object.oid);
267123b4
JH
344
345 *need_8bit_cte_p = 0; /* unknown */
b02bd65f
DB
346 if (opt->total > 0) {
347 static char buffer[64];
348 snprintf(buffer, sizeof(buffer),
e7af8e49 349 "Subject: [%s%s%0*d/%d] ",
b02bd65f 350 opt->subject_prefix,
e7af8e49 351 *opt->subject_prefix ? " " : "",
b02bd65f
DB
352 digits_in_number(opt->total),
353 opt->nr, opt->total);
354 subject = buffer;
355 } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) {
356 static char buffer[256];
357 snprintf(buffer, sizeof(buffer),
358 "Subject: [%s] ",
359 opt->subject_prefix);
360 subject = buffer;
361 } else {
362 subject = "Subject: ";
363 }
364
4d7b0efc 365 fprintf(opt->diffopt.file, "From %s Mon Sep 17 00:00:00 2001\n", name);
7fefda5c
AS
366 graph_show_oneline(opt->graph);
367 if (opt->message_id) {
4d7b0efc 368 fprintf(opt->diffopt.file, "Message-Id: <%s>\n", opt->message_id);
7fefda5c
AS
369 graph_show_oneline(opt->graph);
370 }
b079c50e
TR
371 if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) {
372 int i, n;
373 n = opt->ref_message_ids->nr;
4d7b0efc 374 fprintf(opt->diffopt.file, "In-Reply-To: <%s>\n", opt->ref_message_ids->items[n-1].string);
b079c50e 375 for (i = 0; i < n; i++)
4d7b0efc 376 fprintf(opt->diffopt.file, "%s<%s>\n", (i > 0 ? "\t" : "References: "),
b079c50e 377 opt->ref_message_ids->items[i].string);
7fefda5c
AS
378 graph_show_oneline(opt->graph);
379 }
b02bd65f
DB
380 if (opt->mime_boundary) {
381 static char subject_buffer[1024];
382 static char buffer[1024];
108dab28 383 struct strbuf filename = STRBUF_INIT;
267123b4 384 *need_8bit_cte_p = -1; /* NEVER */
b02bd65f
DB
385 snprintf(subject_buffer, sizeof(subject_buffer) - 1,
386 "%s"
387 "MIME-Version: 1.0\n"
388 "Content-Type: multipart/mixed;"
389 " boundary=\"%s%s\"\n"
390 "\n"
391 "This is a multi-part message in MIME "
392 "format.\n"
393 "--%s%s\n"
394 "Content-Type: text/plain; "
395 "charset=UTF-8; format=fixed\n"
396 "Content-Transfer-Encoding: 8bit\n\n",
397 extra_headers ? extra_headers : "",
398 mime_boundary_leader, opt->mime_boundary,
399 mime_boundary_leader, opt->mime_boundary);
400 extra_headers = subject_buffer;
401
38ec23ac
JH
402 if (opt->numbered_files)
403 strbuf_addf(&filename, "%d", opt->nr);
404 else
d28b5d47 405 fmt_output_commit(&filename, commit, opt);
b02bd65f 406 snprintf(buffer, sizeof(buffer) - 1,
6b2fbaaf 407 "\n--%s%s\n"
b02bd65f 408 "Content-Type: text/x-patch;"
108dab28 409 " name=\"%s\"\n"
b02bd65f
DB
410 "Content-Transfer-Encoding: 8bit\n"
411 "Content-Disposition: %s;"
108dab28 412 " filename=\"%s\"\n\n",
b02bd65f 413 mime_boundary_leader, opt->mime_boundary,
108dab28 414 filename.buf,
b02bd65f 415 opt->no_inline ? "attachment" : "inline",
108dab28 416 filename.buf);
b02bd65f 417 opt->diffopt.stat_sep = buffer;
108dab28 418 strbuf_release(&filename);
b02bd65f
DB
419 }
420 *subject_p = subject;
421 *extra_headers_p = extra_headers;
422}
423
c6b3ec41
JH
424static void show_sig_lines(struct rev_info *opt, int status, const char *bol)
425{
426 const char *color, *reset, *eol;
427
428 color = diff_get_color_opt(&opt->diffopt,
429 status ? DIFF_WHITESPACE : DIFF_FRAGINFO);
430 reset = diff_get_color_opt(&opt->diffopt, DIFF_RESET);
431 while (*bol) {
432 eol = strchrnul(bol, '\n');
4d7b0efc 433 fprintf(opt->diffopt.file, "%s%.*s%s%s", color, (int)(eol - bol), bol, reset,
c6b3ec41 434 *eol ? "\n" : "");
cf3983d1 435 graph_show_oneline(opt->graph);
c6b3ec41
JH
436 bol = (*eol) ? (eol + 1) : eol;
437 }
438}
439
0c37f1fc
JH
440static void show_signature(struct rev_info *opt, struct commit *commit)
441{
442 struct strbuf payload = STRBUF_INIT;
443 struct strbuf signature = STRBUF_INIT;
444 struct strbuf gpg_output = STRBUF_INIT;
445 int status;
0c37f1fc 446
218aa3a6 447 if (parse_signed_commit(commit, &payload, &signature) <= 0)
0c37f1fc
JH
448 goto out;
449
450 status = verify_signed_buffer(payload.buf, payload.len,
451 signature.buf, signature.len,
9cc4ac8f 452 &gpg_output, NULL);
0c37f1fc
JH
453 if (status && !gpg_output.len)
454 strbuf_addstr(&gpg_output, "No signature\n");
455
c6b3ec41 456 show_sig_lines(opt, status, gpg_output.buf);
0c37f1fc
JH
457
458 out:
459 strbuf_release(&gpg_output);
460 strbuf_release(&payload);
461 strbuf_release(&signature);
462}
463
824958e5
JH
464static int which_parent(const unsigned char *sha1, const struct commit *commit)
465{
466 int nth;
467 const struct commit_list *parent;
468
469 for (nth = 0, parent = commit->parents; parent; parent = parent->next) {
ed1c9977 470 if (!hashcmp(parent->item->object.oid.hash, sha1))
824958e5
JH
471 return nth;
472 nth++;
473 }
474 return -1;
475}
476
d041ffa5
JH
477static int is_common_merge(const struct commit *commit)
478{
479 return (commit->parents
480 && commit->parents->next
481 && !commit->parents->next->next);
482}
483
063da62b 484static void show_one_mergetag(struct commit *commit,
824958e5 485 struct commit_extra_header *extra,
063da62b 486 void *data)
824958e5 487{
063da62b 488 struct rev_info *opt = (struct rev_info *)data;
824958e5
JH
489 unsigned char sha1[20];
490 struct tag *tag;
491 struct strbuf verify_message;
492 int status, nth;
493 size_t payload_size, gpg_message_offset;
494
495 hash_sha1_file(extra->value, extra->len, typename(OBJ_TAG), sha1);
496 tag = lookup_tag(sha1);
497 if (!tag)
498 return; /* error message already given */
499
500 strbuf_init(&verify_message, 256);
501 if (parse_tag_buffer(tag, extra->value, extra->len))
502 strbuf_addstr(&verify_message, "malformed mergetag\n");
d041ffa5 503 else if (is_common_merge(commit) &&
f2fd0760 504 !oidcmp(&tag->tagged->oid,
505 &commit->parents->next->item->object.oid))
d041ffa5
JH
506 strbuf_addf(&verify_message,
507 "merged tag '%s'\n", tag->tag);
ed1c9977 508 else if ((nth = which_parent(tag->tagged->oid.hash, commit)) < 0)
824958e5 509 strbuf_addf(&verify_message, "tag %s names a non-parent %s\n",
ed1c9977 510 tag->tag, tag->tagged->oid.hash);
824958e5
JH
511 else
512 strbuf_addf(&verify_message,
513 "parent #%d, tagged '%s'\n", nth + 1, tag->tag);
514 gpg_message_offset = verify_message.len;
515
516 payload_size = parse_signature(extra->value, extra->len);
1315093f 517 status = -1;
42c55ce4
MG
518 if (extra->len > payload_size) {
519 /* could have a good signature */
520 if (!verify_signed_buffer(extra->value, payload_size,
521 extra->value + payload_size,
522 extra->len - payload_size,
523 &verify_message, NULL))
524 status = 0; /* good */
525 else if (verify_message.len <= gpg_message_offset)
526 strbuf_addstr(&verify_message, "No signature\n");
527 /* otherwise we couldn't verify, which is shown as bad */
528 }
824958e5
JH
529
530 show_sig_lines(opt, status, verify_message.buf);
531 strbuf_release(&verify_message);
532}
533
534static void show_mergetag(struct rev_info *opt, struct commit *commit)
535{
063da62b 536 for_each_mergetag(show_one_mergetag, commit, opt);
824958e5
JH
537}
538
02865655 539void show_log(struct rev_info *opt)
91539833 540{
f285a2d7 541 struct strbuf msgbuf = STRBUF_INIT;
39bc9a6c 542 struct log_info *log = opt->loginfo;
91539833 543 struct commit *commit = log->commit, *parent = log->parent;
91539833 544 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
dd2e794a
TR
545 const char *extra_headers = opt->extra_headers;
546 struct pretty_print_context ctx = {0};
91539833
LT
547
548 opt->loginfo = NULL;
549 if (!opt->verbose_header) {
7fefda5c
AS
550 graph_show_commit(opt->graph);
551
1df2d656 552 if (!opt->graph)
b1b47554 553 put_revision_mark(opt, commit);
4d7b0efc 554 fputs(find_unique_abbrev(commit->object.oid.hash, abbrev_commit), opt->diffopt.file);
885cf808 555 if (opt->print_parents)
4d7b0efc 556 show_parents(commit, abbrev_commit, opt->diffopt.file);
91b849b2
JS
557 if (opt->children.name)
558 show_children(opt, commit, abbrev_commit);
0f3a290b 559 show_decorations(opt, commit);
7fefda5c 560 if (opt->graph && !graph_is_commit_finished(opt->graph)) {
4d7b0efc 561 putc('\n', opt->diffopt.file);
7fefda5c
AS
562 graph_show_remainder(opt->graph);
563 }
4d7b0efc 564 putc(opt->diffopt.line_termination, opt->diffopt.file);
91539833
LT
565 return;
566 }
567
568 /*
8715227d
JK
569 * If use_terminator is set, we already handled any record termination
570 * at the end of the last record.
02865655
AS
571 * Otherwise, add a diffopt.line_termination character before all
572 * entries but the first. (IOW, as a separator between entries)
91539833 573 */
7fefda5c
AS
574 if (opt->shown_one && !opt->use_terminator) {
575 /*
576 * If entries are separated by a newline, the output
577 * should look human-readable. If the last entry ended
578 * with a newline, print the graph output before this
579 * newline. Otherwise it will end up as a completely blank
580 * line and will look like a gap in the graph.
581 *
582 * If the entry separator is not a newline, the output is
583 * primarily intended for programmatic consumption, and we
584 * never want the extra graph output before the entry
585 * separator.
586 */
587 if (opt->diffopt.line_termination == '\n' &&
588 !opt->missing_newline)
589 graph_show_padding(opt->graph);
4d7b0efc 590 putc(opt->diffopt.line_termination, opt->diffopt.file);
7fefda5c 591 }
91539833
LT
592 opt->shown_one = 1;
593
7fefda5c
AS
594 /*
595 * If the history graph was requested,
596 * print the graph, up to this commit's line
597 */
598 graph_show_commit(opt->graph);
599
91539833
LT
600 /*
601 * Print header line of header..
602 */
3eefc189 603
9f23e040 604 if (cmit_fmt_is_mail(opt->commit_format)) {
dd2e794a
TR
605 log_write_email_headers(opt, commit, &ctx.subject, &extra_headers,
606 &ctx.need_8bit_cte);
e52a5de4 607 } else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
4d7b0efc 608 fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), opt->diffopt.file);
74bd9029 609 if (opt->commit_format != CMIT_FMT_ONELINE)
4d7b0efc 610 fputs("commit ", opt->diffopt.file);
7528f27d 611
1df2d656 612 if (!opt->graph)
b1b47554 613 put_revision_mark(opt, commit);
ed1c9977 614 fputs(find_unique_abbrev(commit->object.oid.hash, abbrev_commit),
4d7b0efc 615 opt->diffopt.file);
885cf808 616 if (opt->print_parents)
4d7b0efc 617 show_parents(commit, abbrev_commit, opt->diffopt.file);
91b849b2
JS
618 if (opt->children.name)
619 show_children(opt, commit, abbrev_commit);
73f0a157 620 if (parent)
4d7b0efc 621 fprintf(opt->diffopt.file, " (from %s)",
ed1c9977 622 find_unique_abbrev(parent->object.oid.hash,
3eefc189 623 abbrev_commit));
4d7b0efc 624 fputs(diff_get_color_opt(&opt->diffopt, DIFF_RESET), opt->diffopt.file);
0f3a290b 625 show_decorations(opt, commit);
7fefda5c 626 if (opt->commit_format == CMIT_FMT_ONELINE) {
4d7b0efc 627 putc(' ', opt->diffopt.file);
7fefda5c 628 } else {
4d7b0efc 629 putc('\n', opt->diffopt.file);
7fefda5c
AS
630 graph_show_oneline(opt->graph);
631 }
903b45fe 632 if (opt->reflog_info) {
7fefda5c
AS
633 /*
634 * setup_revisions() ensures that opt->reflog_info
635 * and opt->graph cannot both be set,
636 * so we don't need to worry about printing the
637 * graph info here.
638 */
4d12a471 639 show_reflog_message(opt->reflog_info,
55ccf85a 640 opt->commit_format == CMIT_FMT_ONELINE,
a5481a6c 641 &opt->date_mode,
55ccf85a 642 opt->date_mode_explicit);
02865655 643 if (opt->commit_format == CMIT_FMT_ONELINE)
903b45fe 644 return;
903b45fe 645 }
3eefc189 646 }
91539833 647
824958e5 648 if (opt->show_signature) {
0c37f1fc 649 show_signature(opt, commit);
824958e5
JH
650 show_mergetag(opt, commit);
651 }
0c37f1fc 652
8597ea3a 653 if (!get_cached_commit_buffer(commit, NULL))
3131b713
LT
654 return;
655
ddf333f6
JH
656 if (opt->show_notes) {
657 int raw;
658 struct strbuf notebuf = STRBUF_INIT;
659
660 raw = (opt->commit_format == CMIT_FMT_USERFORMAT);
ed1c9977 661 format_display_notes(commit->object.oid.hash, &notebuf,
ddf333f6
JH
662 get_log_output_encoding(), raw);
663 ctx.notes_message = notebuf.len
664 ? strbuf_detach(&notebuf, NULL)
665 : xcalloc(1, 1);
666 }
667
91539833
LT
668 /*
669 * And then the pretty-printed message itself
670 */
5289c56a
NTND
671 if (ctx.need_8bit_cte >= 0 && opt->add_signoff)
672 ctx.need_8bit_cte =
673 has_non_ascii(fmt_name(getenv("GIT_COMMITTER_NAME"),
674 getenv("GIT_COMMITTER_EMAIL")));
dd2e794a 675 ctx.date_mode = opt->date_mode;
f026c756 676 ctx.date_mode_explicit = opt->date_mode_explicit;
dd2e794a
TR
677 ctx.abbrev = opt->diffopt.abbrev;
678 ctx.after_subject = extra_headers;
9553d2b2 679 ctx.preserve_subject = opt->preserve_subject;
8f8f5476 680 ctx.reflog_info = opt->reflog_info;
6bf13944 681 ctx.fmt = opt->commit_format;
0e2913b0 682 ctx.mailmap = opt->mailmap;
30825178 683 ctx.color = opt->diffopt.use_color;
7cc13c71 684 ctx.expand_tabs_in_log = opt->expand_tabs_in_log;
ecaee805 685 ctx.output_encoding = get_log_output_encoding();
a9080475
JK
686 if (opt->from_ident.mail_begin && opt->from_ident.name_begin)
687 ctx.from_ident = &opt->from_ident;
3ad87c80
JK
688 if (opt->graph)
689 ctx.graph_width = graph_width(opt->graph);
6bf13944 690 pretty_print_commit(&ctx, commit, &msgbuf);
212620fe
JH
691
692 if (opt->add_signoff)
5289c56a 693 append_signoff(&msgbuf, 0, APPEND_SIGNOFF_DEDUP);
212620fe 694
5a664cf2 695 if ((ctx.fmt != CMIT_FMT_USERFORMAT) &&
bd1470b8 696 ctx.notes_message && *ctx.notes_message) {
9f23e040 697 if (cmit_fmt_is_mail(ctx.fmt)) {
bd1470b8
JH
698 strbuf_addstr(&msgbuf, "---\n");
699 opt->shown_dashes = 1;
700 }
5a664cf2 701 strbuf_addstr(&msgbuf, ctx.notes_message);
bd1470b8 702 }
cf2251b6 703
7fefda5c 704 if (opt->show_log_size) {
4d7b0efc 705 fprintf(opt->diffopt.file, "log size %i\n", (int)msgbuf.len);
7fefda5c
AS
706 graph_show_oneline(opt->graph);
707 }
9fa3465d 708
7fefda5c
AS
709 /*
710 * Set opt->missing_newline if msgbuf doesn't
711 * end in a newline (including if it is empty)
712 */
713 if (!msgbuf.len || msgbuf.buf[msgbuf.len - 1] != '\n')
714 opt->missing_newline = 1;
715 else
716 opt->missing_newline = 0;
717
660e113c 718 graph_show_commit_msg(opt->graph, opt->diffopt.file, &msgbuf);
b9c7d6e4 719 if (opt->use_terminator && !commit_format_is_empty(opt->commit_format)) {
7fefda5c
AS
720 if (!opt->missing_newline)
721 graph_show_padding(opt->graph);
4d7b0efc 722 putc(opt->diffopt.line_termination, opt->diffopt.file);
7fefda5c
AS
723 }
724
674d1727 725 strbuf_release(&msgbuf);
ddf333f6 726 free(ctx.notes_message);
91539833
LT
727}
728
cd2bdc53 729int log_tree_diff_flush(struct rev_info *opt)
5f1c3f07 730{
bd1470b8 731 opt->shown_dashes = 0;
5f1c3f07 732 diffcore_std(&opt->diffopt);
91539833 733
5f1c3f07
JH
734 if (diff_queue_is_empty()) {
735 int saved_fmt = opt->diffopt.output_format;
736 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
737 diff_flush(&opt->diffopt);
738 opt->diffopt.output_format = saved_fmt;
739 return 0;
740 }
91539833 741
3969cf7d 742 if (opt->loginfo && !opt->no_commit_id) {
02865655 743 show_log(opt);
304b5af6
LT
744 if ((opt->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) &&
745 opt->verbose_header &&
b9c7d6e4
JK
746 opt->commit_format != CMIT_FMT_ONELINE &&
747 !commit_format_is_empty(opt->commit_format)) {
1d34c50f
JH
748 /*
749 * When showing a verbose header (i.e. log message),
750 * and not in --pretty=oneline format, we would want
751 * an extra newline between the end of log and the
752 * diff/diffstat output for readability.
753 */
3969cf7d 754 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
81bd1b2a
BY
755 if (opt->diffopt.output_prefix) {
756 struct strbuf *msg = NULL;
757 msg = opt->diffopt.output_prefix(&opt->diffopt,
758 opt->diffopt.output_prefix_data);
4d7b0efc 759 fwrite(msg->buf, msg->len, 1, opt->diffopt.file);
81bd1b2a 760 }
1d34c50f
JH
761
762 /*
763 * We may have shown three-dashes line early
764 * between notes and the log message, in which
765 * case we only want a blank line after the
766 * notes without (an extra) three-dashes line.
767 * Otherwise, we show the three-dashes line if
768 * we are showing the patch with diffstat, but
769 * in that case, there is no extra blank line
770 * after the three-dashes line.
771 */
772 if (!opt->shown_dashes &&
773 (pch & opt->diffopt.output_format) == pch)
4d7b0efc
JS
774 fprintf(opt->diffopt.file, "---");
775 putc('\n', opt->diffopt.file);
3969cf7d
JH
776 }
777 }
5f1c3f07
JH
778 diff_flush(&opt->diffopt);
779 return 1;
780}
781
cd2bdc53 782static int do_diff_combined(struct rev_info *opt, struct commit *commit)
5f1c3f07 783{
82889295 784 diff_tree_combined_merge(commit, opt->dense_combined_merges, opt);
91539833 785 return !opt->loginfo;
5f1c3f07
JH
786}
787
91539833
LT
788/*
789 * Show the diff of a commit.
790 *
791 * Return true if we printed any log info messages
792 */
793static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
5f1c3f07 794{
91539833 795 int showed_log;
5f1c3f07 796 struct commit_list *parents;
f2fd0760 797 struct object_id *oid;
5f1c3f07 798
84102a33 799 if (!opt->diff && !DIFF_OPT_TST(&opt->diffopt, EXIT_WITH_STATUS))
91539833
LT
800 return 0;
801
7059dccc 802 parse_commit_or_die(commit);
f2fd0760 803 oid = &commit->tree->object.oid;
d1b9b767 804
5f1c3f07 805 /* Root commit? */
53d00b39 806 parents = get_saved_parents(opt, commit);
91539833 807 if (!parents) {
2b60356d 808 if (opt->show_root_diff) {
f2fd0760 809 diff_root_tree_sha1(oid->hash, "", &opt->diffopt);
2b60356d
RS
810 log_tree_diff_flush(opt);
811 }
91539833 812 return !opt->loginfo;
5f1c3f07
JH
813 }
814
815 /* More than one parent? */
91539833 816 if (parents && parents->next) {
5f1c3f07
JH
817 if (opt->ignore_merges)
818 return 0;
819 else if (opt->combine_merges)
820 return do_diff_combined(opt, commit);
88d9d45d
PB
821 else if (opt->first_parent_only) {
822 /*
823 * Generate merge log entry only for the first
824 * parent, showing summary diff of the others
825 * we merged _in_.
826 */
7059dccc 827 parse_commit_or_die(parents->item);
f2fd0760 828 diff_tree_sha1(parents->item->tree->object.oid.hash,
829 oid->hash, "", &opt->diffopt);
88d9d45d
PB
830 log_tree_diff_flush(opt);
831 return !opt->loginfo;
832 }
91539833
LT
833
834 /* If we show individual diffs, show the parent info */
835 log->parent = parents->item;
5f1c3f07
JH
836 }
837
91539833
LT
838 showed_log = 0;
839 for (;;) {
5f1c3f07 840 struct commit *parent = parents->item;
5f1c3f07 841
7059dccc 842 parse_commit_or_die(parent);
f2fd0760 843 diff_tree_sha1(parent->tree->object.oid.hash,
844 oid->hash, "", &opt->diffopt);
91539833
LT
845 log_tree_diff_flush(opt);
846
847 showed_log |= !opt->loginfo;
848
849 /* Set up the log info for the next parent, if any.. */
850 parents = parents->next;
851 if (!parents)
852 break;
853 log->parent = parents->item;
854 opt->loginfo = log;
855 }
856 return showed_log;
857}
858
859int log_tree_commit(struct rev_info *opt, struct commit *commit)
860{
861 struct log_info log;
6ea57703 862 int shown, close_file = opt->diffopt.close_file;
91539833
LT
863
864 log.commit = commit;
865 log.parent = NULL;
866 opt->loginfo = &log;
6ea57703 867 opt->diffopt.close_file = 0;
91539833 868
12da1d1f
TR
869 if (opt->line_level_traverse)
870 return line_log_print(opt, commit);
871
1b32dece 872 if (opt->track_linear && !opt->linear && !opt->reverse_output_stage)
4d7b0efc 873 fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar);
3eefc189
JH
874 shown = log_tree_diff(opt, commit, &log);
875 if (!shown && opt->loginfo && opt->always_show_header) {
91539833 876 log.parent = NULL;
02865655 877 show_log(opt);
3eefc189 878 shown = 1;
5f1c3f07 879 }
1b32dece 880 if (opt->track_linear && !opt->linear && opt->reverse_output_stage)
4d7b0efc 881 fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar);
91539833 882 opt->loginfo = NULL;
4d7b0efc 883 maybe_flush_or_die(opt->diffopt.file, "stdout");
6ea57703
JS
884 if (close_file)
885 fclose(opt->diffopt.file);
3eefc189 886 return shown;
5f1c3f07 887}