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