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