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