]> git.ipfire.org Git - thirdparty/git.git/blob - log-tree.c
Git 2.39.2
[thirdparty/git.git] / log-tree.c
1 #include "cache.h"
2 #include "commit-reach.h"
3 #include "config.h"
4 #include "diff.h"
5 #include "object-store.h"
6 #include "repository.h"
7 #include "tmp-objdir.h"
8 #include "commit.h"
9 #include "tag.h"
10 #include "graph.h"
11 #include "log-tree.h"
12 #include "merge-ort.h"
13 #include "reflog-walk.h"
14 #include "refs.h"
15 #include "string-list.h"
16 #include "color.h"
17 #include "gpg-interface.h"
18 #include "sequencer.h"
19 #include "line-log.h"
20 #include "help.h"
21 #include "range-diff.h"
22 #include "strmap.h"
23
24 static struct decoration name_decoration = { "object names" };
25 static int decoration_loaded;
26 static int decoration_flags;
27
28 static char decoration_colors[][COLOR_MAXLEN] = {
29 GIT_COLOR_RESET,
30 GIT_COLOR_BOLD_GREEN, /* REF_LOCAL */
31 GIT_COLOR_BOLD_RED, /* REF_REMOTE */
32 GIT_COLOR_BOLD_YELLOW, /* REF_TAG */
33 GIT_COLOR_BOLD_MAGENTA, /* REF_STASH */
34 GIT_COLOR_BOLD_CYAN, /* REF_HEAD */
35 GIT_COLOR_BOLD_BLUE, /* GRAFTED */
36 };
37
38 static const char *color_decorate_slots[] = {
39 [DECORATION_REF_LOCAL] = "branch",
40 [DECORATION_REF_REMOTE] = "remoteBranch",
41 [DECORATION_REF_TAG] = "tag",
42 [DECORATION_REF_STASH] = "stash",
43 [DECORATION_REF_HEAD] = "HEAD",
44 [DECORATION_GRAFTED] = "grafted",
45 };
46
47 static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix)
48 {
49 if (want_color(decorate_use_color))
50 return decoration_colors[ix];
51 return "";
52 }
53
54 define_list_config_array(color_decorate_slots);
55
56 int parse_decorate_color_config(const char *var, const char *slot_name, const char *value)
57 {
58 int slot = LOOKUP_CONFIG(color_decorate_slots, slot_name);
59 if (slot < 0)
60 return 0;
61 if (!value)
62 return config_error_nonbool(var);
63 return color_parse(value, decoration_colors[slot]);
64 }
65
66 /*
67 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
68 * for showing the commit sha1, use the same check for --decorate
69 */
70 #define decorate_get_color_opt(o, ix) \
71 decorate_get_color((o)->use_color, ix)
72
73 void add_name_decoration(enum decoration_type type, const char *name, struct object *obj)
74 {
75 struct name_decoration *res;
76 FLEX_ALLOC_STR(res, name, name);
77 res->type = type;
78 res->next = add_decoration(&name_decoration, obj, res);
79 }
80
81 const struct name_decoration *get_name_decoration(const struct object *obj)
82 {
83 load_ref_decorations(NULL, DECORATE_SHORT_REFS);
84 return lookup_decoration(&name_decoration, obj);
85 }
86
87 static int match_ref_pattern(const char *refname,
88 const struct string_list_item *item)
89 {
90 int matched = 0;
91 if (!item->util) {
92 if (!wildmatch(item->string, refname, 0))
93 matched = 1;
94 } else {
95 const char *rest;
96 if (skip_prefix(refname, item->string, &rest) &&
97 (!*rest || *rest == '/'))
98 matched = 1;
99 }
100 return matched;
101 }
102
103 static int ref_filter_match(const char *refname,
104 const struct decoration_filter *filter)
105 {
106 struct string_list_item *item;
107 const struct string_list *exclude_patterns = filter->exclude_ref_pattern;
108 const struct string_list *include_patterns = filter->include_ref_pattern;
109 const struct string_list *exclude_patterns_config =
110 filter->exclude_ref_config_pattern;
111
112 if (exclude_patterns && exclude_patterns->nr) {
113 for_each_string_list_item(item, exclude_patterns) {
114 if (match_ref_pattern(refname, item))
115 return 0;
116 }
117 }
118
119 if (include_patterns && include_patterns->nr) {
120 for_each_string_list_item(item, include_patterns) {
121 if (match_ref_pattern(refname, item))
122 return 1;
123 }
124 return 0;
125 }
126
127 if (exclude_patterns_config && exclude_patterns_config->nr) {
128 for_each_string_list_item(item, exclude_patterns_config) {
129 if (match_ref_pattern(refname, item))
130 return 0;
131 }
132 }
133
134 return 1;
135 }
136
137 static int add_ref_decoration(const char *refname, const struct object_id *oid,
138 int flags UNUSED,
139 void *cb_data)
140 {
141 int i;
142 struct object *obj;
143 enum object_type objtype;
144 enum decoration_type deco_type = DECORATION_NONE;
145 struct decoration_filter *filter = (struct decoration_filter *)cb_data;
146 const char *git_replace_ref_base = ref_namespace[NAMESPACE_REPLACE].ref;
147
148 if (filter && !ref_filter_match(refname, filter))
149 return 0;
150
151 if (starts_with(refname, git_replace_ref_base)) {
152 struct object_id original_oid;
153 if (!read_replace_refs)
154 return 0;
155 if (get_oid_hex(refname + strlen(git_replace_ref_base),
156 &original_oid)) {
157 warning("invalid replace ref %s", refname);
158 return 0;
159 }
160 obj = parse_object(the_repository, &original_oid);
161 if (obj)
162 add_name_decoration(DECORATION_GRAFTED, "replaced", obj);
163 return 0;
164 }
165
166 objtype = oid_object_info(the_repository, oid, NULL);
167 if (objtype < 0)
168 return 0;
169 obj = lookup_object_by_type(the_repository, oid, objtype);
170
171 for (i = 0; i < ARRAY_SIZE(ref_namespace); i++) {
172 struct ref_namespace_info *info = &ref_namespace[i];
173
174 if (!info->decoration)
175 continue;
176 if (info->exact) {
177 if (!strcmp(refname, info->ref)) {
178 deco_type = info->decoration;
179 break;
180 }
181 } else if (starts_with(refname, info->ref)) {
182 deco_type = info->decoration;
183 break;
184 }
185 }
186
187 add_name_decoration(deco_type, refname, obj);
188 while (obj->type == OBJ_TAG) {
189 if (!obj->parsed)
190 parse_object(the_repository, &obj->oid);
191 obj = ((struct tag *)obj)->tagged;
192 if (!obj)
193 break;
194 add_name_decoration(DECORATION_REF_TAG, refname, obj);
195 }
196 return 0;
197 }
198
199 static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
200 {
201 struct commit *commit = lookup_commit(the_repository, &graft->oid);
202 if (!commit)
203 return 0;
204 add_name_decoration(DECORATION_GRAFTED, "grafted", &commit->object);
205 return 0;
206 }
207
208 void load_ref_decorations(struct decoration_filter *filter, int flags)
209 {
210 if (!decoration_loaded) {
211 if (filter) {
212 struct string_list_item *item;
213 for_each_string_list_item(item, filter->exclude_ref_pattern) {
214 normalize_glob_ref(item, NULL, item->string);
215 }
216 for_each_string_list_item(item, filter->include_ref_pattern) {
217 normalize_glob_ref(item, NULL, item->string);
218 }
219 for_each_string_list_item(item, filter->exclude_ref_config_pattern) {
220 normalize_glob_ref(item, NULL, item->string);
221 }
222 }
223 decoration_loaded = 1;
224 decoration_flags = flags;
225 for_each_ref(add_ref_decoration, filter);
226 head_ref(add_ref_decoration, filter);
227 for_each_commit_graft(add_graft_decoration, filter);
228 }
229 }
230
231 static void show_parents(struct commit *commit, int abbrev, FILE *file)
232 {
233 struct commit_list *p;
234 for (p = commit->parents; p ; p = p->next) {
235 struct commit *parent = p->item;
236 fprintf(file, " %s", find_unique_abbrev(&parent->object.oid, abbrev));
237 }
238 }
239
240 static void show_children(struct rev_info *opt, struct commit *commit, int abbrev)
241 {
242 struct commit_list *p = lookup_decoration(&opt->children, &commit->object);
243 for ( ; p; p = p->next) {
244 fprintf(opt->diffopt.file, " %s", find_unique_abbrev(&p->item->object.oid, abbrev));
245 }
246 }
247
248 /*
249 * Do we have HEAD in the output, and also the branch it points at?
250 * If so, find that decoration entry for that current branch.
251 */
252 static const struct name_decoration *current_pointed_by_HEAD(const struct name_decoration *decoration)
253 {
254 const struct name_decoration *list, *head = NULL;
255 const char *branch_name = NULL;
256 int rru_flags;
257
258 /* First find HEAD */
259 for (list = decoration; list; list = list->next)
260 if (list->type == DECORATION_REF_HEAD) {
261 head = list;
262 break;
263 }
264 if (!head)
265 return NULL;
266
267 /* Now resolve and find the matching current branch */
268 branch_name = resolve_ref_unsafe("HEAD", 0, NULL, &rru_flags);
269 if (!branch_name || !(rru_flags & REF_ISSYMREF))
270 return NULL;
271
272 if (!starts_with(branch_name, "refs/"))
273 return NULL;
274
275 /* OK, do we have that ref in the list? */
276 for (list = decoration; list; list = list->next)
277 if ((list->type == DECORATION_REF_LOCAL) &&
278 !strcmp(branch_name, list->name)) {
279 return list;
280 }
281
282 return NULL;
283 }
284
285 static void show_name(struct strbuf *sb, const struct name_decoration *decoration)
286 {
287 if (decoration_flags == DECORATE_SHORT_REFS)
288 strbuf_addstr(sb, prettify_refname(decoration->name));
289 else
290 strbuf_addstr(sb, decoration->name);
291 }
292
293 /*
294 * The caller makes sure there is no funny color before calling.
295 * format_decorations_extended makes sure the same after return.
296 */
297 void format_decorations_extended(struct strbuf *sb,
298 const struct commit *commit,
299 int use_color,
300 const char *prefix,
301 const char *separator,
302 const char *suffix)
303 {
304 const struct name_decoration *decoration;
305 const struct name_decoration *current_and_HEAD;
306 const char *color_commit =
307 diff_get_color(use_color, DIFF_COMMIT);
308 const char *color_reset =
309 decorate_get_color(use_color, DECORATION_NONE);
310
311 decoration = get_name_decoration(&commit->object);
312 if (!decoration)
313 return;
314
315 current_and_HEAD = current_pointed_by_HEAD(decoration);
316 while (decoration) {
317 /*
318 * When both current and HEAD are there, only
319 * show HEAD->current where HEAD would have
320 * appeared, skipping the entry for current.
321 */
322 if (decoration != current_and_HEAD) {
323 strbuf_addstr(sb, color_commit);
324 strbuf_addstr(sb, prefix);
325 strbuf_addstr(sb, color_reset);
326 strbuf_addstr(sb, decorate_get_color(use_color, decoration->type));
327 if (decoration->type == DECORATION_REF_TAG)
328 strbuf_addstr(sb, "tag: ");
329
330 show_name(sb, decoration);
331
332 if (current_and_HEAD &&
333 decoration->type == DECORATION_REF_HEAD) {
334 strbuf_addstr(sb, " -> ");
335 strbuf_addstr(sb, color_reset);
336 strbuf_addstr(sb, decorate_get_color(use_color, current_and_HEAD->type));
337 show_name(sb, current_and_HEAD);
338 }
339 strbuf_addstr(sb, color_reset);
340
341 prefix = separator;
342 }
343 decoration = decoration->next;
344 }
345 strbuf_addstr(sb, color_commit);
346 strbuf_addstr(sb, suffix);
347 strbuf_addstr(sb, color_reset);
348 }
349
350 void show_decorations(struct rev_info *opt, struct commit *commit)
351 {
352 struct strbuf sb = STRBUF_INIT;
353
354 if (opt->sources) {
355 char **slot = revision_sources_peek(opt->sources, commit);
356
357 if (slot && *slot)
358 fprintf(opt->diffopt.file, "\t%s", *slot);
359 }
360 if (!opt->show_decorations)
361 return;
362 format_decorations(&sb, commit, opt->diffopt.use_color);
363 fputs(sb.buf, opt->diffopt.file);
364 strbuf_release(&sb);
365 }
366
367 static unsigned int digits_in_number(unsigned int number)
368 {
369 unsigned int i = 10, result = 1;
370 while (i <= number) {
371 i *= 10;
372 result++;
373 }
374 return result;
375 }
376
377 void fmt_output_subject(struct strbuf *filename,
378 const char *subject,
379 struct rev_info *info)
380 {
381 const char *suffix = info->patch_suffix;
382 int nr = info->nr;
383 int start_len = filename->len;
384 int max_len = start_len + info->patch_name_max - (strlen(suffix) + 1);
385
386 if (info->reroll_count) {
387 struct strbuf temp = STRBUF_INIT;
388
389 strbuf_addf(&temp, "v%s", info->reroll_count);
390 format_sanitized_subject(filename, temp.buf, temp.len);
391 strbuf_addstr(filename, "-");
392 strbuf_release(&temp);
393 }
394 strbuf_addf(filename, "%04d-%s", nr, subject);
395
396 if (max_len < filename->len)
397 strbuf_setlen(filename, max_len);
398 strbuf_addstr(filename, suffix);
399 }
400
401 void fmt_output_commit(struct strbuf *filename,
402 struct commit *commit,
403 struct rev_info *info)
404 {
405 struct pretty_print_context ctx = {0};
406 struct strbuf subject = STRBUF_INIT;
407
408 format_commit_message(commit, "%f", &subject, &ctx);
409 fmt_output_subject(filename, subject.buf, info);
410 strbuf_release(&subject);
411 }
412
413 void fmt_output_email_subject(struct strbuf *sb, struct rev_info *opt)
414 {
415 if (opt->total > 0) {
416 strbuf_addf(sb, "Subject: [%s%s%0*d/%d] ",
417 opt->subject_prefix,
418 *opt->subject_prefix ? " " : "",
419 digits_in_number(opt->total),
420 opt->nr, opt->total);
421 } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) {
422 strbuf_addf(sb, "Subject: [%s] ",
423 opt->subject_prefix);
424 } else {
425 strbuf_addstr(sb, "Subject: ");
426 }
427 }
428
429 void log_write_email_headers(struct rev_info *opt, struct commit *commit,
430 const char **extra_headers_p,
431 int *need_8bit_cte_p,
432 int maybe_multipart)
433 {
434 const char *extra_headers = opt->extra_headers;
435 const char *name = oid_to_hex(opt->zero_commit ?
436 null_oid() : &commit->object.oid);
437
438 *need_8bit_cte_p = 0; /* unknown */
439
440 fprintf(opt->diffopt.file, "From %s Mon Sep 17 00:00:00 2001\n", name);
441 graph_show_oneline(opt->graph);
442 if (opt->message_id) {
443 fprintf(opt->diffopt.file, "Message-Id: <%s>\n", opt->message_id);
444 graph_show_oneline(opt->graph);
445 }
446 if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) {
447 int i, n;
448 n = opt->ref_message_ids->nr;
449 fprintf(opt->diffopt.file, "In-Reply-To: <%s>\n", opt->ref_message_ids->items[n-1].string);
450 for (i = 0; i < n; i++)
451 fprintf(opt->diffopt.file, "%s<%s>\n", (i > 0 ? "\t" : "References: "),
452 opt->ref_message_ids->items[i].string);
453 graph_show_oneline(opt->graph);
454 }
455 if (opt->mime_boundary && maybe_multipart) {
456 static struct strbuf subject_buffer = STRBUF_INIT;
457 static struct strbuf buffer = STRBUF_INIT;
458 struct strbuf filename = STRBUF_INIT;
459 *need_8bit_cte_p = -1; /* NEVER */
460
461 strbuf_reset(&subject_buffer);
462 strbuf_reset(&buffer);
463
464 strbuf_addf(&subject_buffer,
465 "%s"
466 "MIME-Version: 1.0\n"
467 "Content-Type: multipart/mixed;"
468 " boundary=\"%s%s\"\n"
469 "\n"
470 "This is a multi-part message in MIME "
471 "format.\n"
472 "--%s%s\n"
473 "Content-Type: text/plain; "
474 "charset=UTF-8; format=fixed\n"
475 "Content-Transfer-Encoding: 8bit\n\n",
476 extra_headers ? extra_headers : "",
477 mime_boundary_leader, opt->mime_boundary,
478 mime_boundary_leader, opt->mime_boundary);
479 extra_headers = subject_buffer.buf;
480
481 if (opt->numbered_files)
482 strbuf_addf(&filename, "%d", opt->nr);
483 else
484 fmt_output_commit(&filename, commit, opt);
485 strbuf_addf(&buffer,
486 "\n--%s%s\n"
487 "Content-Type: text/x-patch;"
488 " name=\"%s\"\n"
489 "Content-Transfer-Encoding: 8bit\n"
490 "Content-Disposition: %s;"
491 " filename=\"%s\"\n\n",
492 mime_boundary_leader, opt->mime_boundary,
493 filename.buf,
494 opt->no_inline ? "attachment" : "inline",
495 filename.buf);
496 opt->diffopt.stat_sep = buffer.buf;
497 strbuf_release(&filename);
498 }
499 *extra_headers_p = extra_headers;
500 }
501
502 static void show_sig_lines(struct rev_info *opt, int status, const char *bol)
503 {
504 const char *color, *reset, *eol;
505
506 color = diff_get_color_opt(&opt->diffopt,
507 status ? DIFF_WHITESPACE : DIFF_FRAGINFO);
508 reset = diff_get_color_opt(&opt->diffopt, DIFF_RESET);
509 while (*bol) {
510 eol = strchrnul(bol, '\n');
511 fprintf(opt->diffopt.file, "%s%.*s%s%s", color, (int)(eol - bol), bol, reset,
512 *eol ? "\n" : "");
513 graph_show_oneline(opt->graph);
514 bol = (*eol) ? (eol + 1) : eol;
515 }
516 }
517
518 static void show_signature(struct rev_info *opt, struct commit *commit)
519 {
520 struct strbuf payload = STRBUF_INIT;
521 struct strbuf signature = STRBUF_INIT;
522 struct signature_check sigc = { 0 };
523 int status;
524
525 if (parse_signed_commit(commit, &payload, &signature, the_hash_algo) <= 0)
526 goto out;
527
528 sigc.payload_type = SIGNATURE_PAYLOAD_COMMIT;
529 sigc.payload = strbuf_detach(&payload, &sigc.payload_len);
530 status = check_signature(&sigc, signature.buf, signature.len);
531 if (status && !sigc.output)
532 show_sig_lines(opt, status, "No signature\n");
533 else
534 show_sig_lines(opt, status, sigc.output);
535 signature_check_clear(&sigc);
536
537 out:
538 strbuf_release(&payload);
539 strbuf_release(&signature);
540 }
541
542 static int which_parent(const struct object_id *oid, const struct commit *commit)
543 {
544 int nth;
545 const struct commit_list *parent;
546
547 for (nth = 0, parent = commit->parents; parent; parent = parent->next) {
548 if (oideq(&parent->item->object.oid, oid))
549 return nth;
550 nth++;
551 }
552 return -1;
553 }
554
555 static int is_common_merge(const struct commit *commit)
556 {
557 return (commit->parents
558 && commit->parents->next
559 && !commit->parents->next->next);
560 }
561
562 static int show_one_mergetag(struct commit *commit,
563 struct commit_extra_header *extra,
564 void *data)
565 {
566 struct rev_info *opt = (struct rev_info *)data;
567 struct object_id oid;
568 struct tag *tag;
569 struct strbuf verify_message;
570 struct signature_check sigc = { 0 };
571 int status, nth;
572 struct strbuf payload = STRBUF_INIT;
573 struct strbuf signature = STRBUF_INIT;
574
575 hash_object_file(the_hash_algo, extra->value, extra->len,
576 OBJ_TAG, &oid);
577 tag = lookup_tag(the_repository, &oid);
578 if (!tag)
579 return -1; /* error message already given */
580
581 strbuf_init(&verify_message, 256);
582 if (parse_tag_buffer(the_repository, tag, extra->value, extra->len))
583 strbuf_addstr(&verify_message, "malformed mergetag\n");
584 else if (is_common_merge(commit) &&
585 oideq(&tag->tagged->oid,
586 &commit->parents->next->item->object.oid))
587 strbuf_addf(&verify_message,
588 "merged tag '%s'\n", tag->tag);
589 else if ((nth = which_parent(&tag->tagged->oid, commit)) < 0)
590 strbuf_addf(&verify_message, "tag %s names a non-parent %s\n",
591 tag->tag, oid_to_hex(&tag->tagged->oid));
592 else
593 strbuf_addf(&verify_message,
594 "parent #%d, tagged '%s'\n", nth + 1, tag->tag);
595
596 status = -1;
597 if (parse_signature(extra->value, extra->len, &payload, &signature)) {
598 /* could have a good signature */
599 sigc.payload_type = SIGNATURE_PAYLOAD_TAG;
600 sigc.payload = strbuf_detach(&payload, &sigc.payload_len);
601 status = check_signature(&sigc, signature.buf, signature.len);
602 if (sigc.output)
603 strbuf_addstr(&verify_message, sigc.output);
604 else
605 strbuf_addstr(&verify_message, "No signature\n");
606 signature_check_clear(&sigc);
607 /* otherwise we couldn't verify, which is shown as bad */
608 }
609
610 show_sig_lines(opt, status, verify_message.buf);
611 strbuf_release(&verify_message);
612 strbuf_release(&payload);
613 strbuf_release(&signature);
614 return 0;
615 }
616
617 static int show_mergetag(struct rev_info *opt, struct commit *commit)
618 {
619 return for_each_mergetag(show_one_mergetag, commit, opt);
620 }
621
622 static void next_commentary_block(struct rev_info *opt, struct strbuf *sb)
623 {
624 const char *x = opt->shown_dashes ? "\n" : "---\n";
625 if (sb)
626 strbuf_addstr(sb, x);
627 else
628 fputs(x, opt->diffopt.file);
629 opt->shown_dashes = 1;
630 }
631
632 void show_log(struct rev_info *opt)
633 {
634 struct strbuf msgbuf = STRBUF_INIT;
635 struct log_info *log = opt->loginfo;
636 struct commit *commit = log->commit, *parent = log->parent;
637 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : the_hash_algo->hexsz;
638 const char *extra_headers = opt->extra_headers;
639 struct pretty_print_context ctx = {0};
640
641 opt->loginfo = NULL;
642 if (!opt->verbose_header) {
643 graph_show_commit(opt->graph);
644
645 if (!opt->graph)
646 put_revision_mark(opt, commit);
647 fputs(find_unique_abbrev(&commit->object.oid, abbrev_commit), opt->diffopt.file);
648 if (opt->print_parents)
649 show_parents(commit, abbrev_commit, opt->diffopt.file);
650 if (opt->children.name)
651 show_children(opt, commit, abbrev_commit);
652 show_decorations(opt, commit);
653 if (opt->graph && !graph_is_commit_finished(opt->graph)) {
654 putc('\n', opt->diffopt.file);
655 graph_show_remainder(opt->graph);
656 }
657 putc(opt->diffopt.line_termination, opt->diffopt.file);
658 return;
659 }
660
661 /*
662 * If use_terminator is set, we already handled any record termination
663 * at the end of the last record.
664 * Otherwise, add a diffopt.line_termination character before all
665 * entries but the first. (IOW, as a separator between entries)
666 */
667 if (opt->shown_one && !opt->use_terminator) {
668 /*
669 * If entries are separated by a newline, the output
670 * should look human-readable. If the last entry ended
671 * with a newline, print the graph output before this
672 * newline. Otherwise it will end up as a completely blank
673 * line and will look like a gap in the graph.
674 *
675 * If the entry separator is not a newline, the output is
676 * primarily intended for programmatic consumption, and we
677 * never want the extra graph output before the entry
678 * separator.
679 */
680 if (opt->diffopt.line_termination == '\n' &&
681 !opt->missing_newline)
682 graph_show_padding(opt->graph);
683 putc(opt->diffopt.line_termination, opt->diffopt.file);
684 }
685 opt->shown_one = 1;
686
687 /*
688 * If the history graph was requested,
689 * print the graph, up to this commit's line
690 */
691 graph_show_commit(opt->graph);
692
693 /*
694 * Print header line of header..
695 */
696
697 if (cmit_fmt_is_mail(opt->commit_format)) {
698 log_write_email_headers(opt, commit, &extra_headers,
699 &ctx.need_8bit_cte, 1);
700 ctx.rev = opt;
701 ctx.print_email_subject = 1;
702 } else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
703 fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), opt->diffopt.file);
704 if (opt->commit_format != CMIT_FMT_ONELINE)
705 fputs("commit ", opt->diffopt.file);
706
707 if (!opt->graph)
708 put_revision_mark(opt, commit);
709 fputs(find_unique_abbrev(&commit->object.oid,
710 abbrev_commit),
711 opt->diffopt.file);
712 if (opt->print_parents)
713 show_parents(commit, abbrev_commit, opt->diffopt.file);
714 if (opt->children.name)
715 show_children(opt, commit, abbrev_commit);
716 if (parent)
717 fprintf(opt->diffopt.file, " (from %s)",
718 find_unique_abbrev(&parent->object.oid, abbrev_commit));
719 fputs(diff_get_color_opt(&opt->diffopt, DIFF_RESET), opt->diffopt.file);
720 show_decorations(opt, commit);
721 if (opt->commit_format == CMIT_FMT_ONELINE) {
722 putc(' ', opt->diffopt.file);
723 } else {
724 putc('\n', opt->diffopt.file);
725 graph_show_oneline(opt->graph);
726 }
727 if (opt->reflog_info) {
728 /*
729 * setup_revisions() ensures that opt->reflog_info
730 * and opt->graph cannot both be set,
731 * so we don't need to worry about printing the
732 * graph info here.
733 */
734 show_reflog_message(opt->reflog_info,
735 opt->commit_format == CMIT_FMT_ONELINE,
736 &opt->date_mode,
737 opt->date_mode_explicit);
738 if (opt->commit_format == CMIT_FMT_ONELINE)
739 return;
740 }
741 }
742
743 if (opt->show_signature) {
744 show_signature(opt, commit);
745 show_mergetag(opt, commit);
746 }
747
748 if (opt->show_notes) {
749 int raw;
750 struct strbuf notebuf = STRBUF_INIT;
751
752 raw = (opt->commit_format == CMIT_FMT_USERFORMAT);
753 format_display_notes(&commit->object.oid, &notebuf,
754 get_log_output_encoding(), raw);
755 ctx.notes_message = strbuf_detach(&notebuf, NULL);
756 }
757
758 /*
759 * And then the pretty-printed message itself
760 */
761 if (ctx.need_8bit_cte >= 0 && opt->add_signoff)
762 ctx.need_8bit_cte =
763 has_non_ascii(fmt_name(WANT_COMMITTER_IDENT));
764 ctx.date_mode = opt->date_mode;
765 ctx.date_mode_explicit = opt->date_mode_explicit;
766 ctx.abbrev = opt->diffopt.abbrev;
767 ctx.after_subject = extra_headers;
768 ctx.preserve_subject = opt->preserve_subject;
769 ctx.encode_email_headers = opt->encode_email_headers;
770 ctx.reflog_info = opt->reflog_info;
771 ctx.fmt = opt->commit_format;
772 ctx.mailmap = opt->mailmap;
773 ctx.color = opt->diffopt.use_color;
774 ctx.expand_tabs_in_log = opt->expand_tabs_in_log;
775 ctx.output_encoding = get_log_output_encoding();
776 ctx.rev = opt;
777 if (opt->from_ident.mail_begin && opt->from_ident.name_begin)
778 ctx.from_ident = &opt->from_ident;
779 if (opt->graph)
780 ctx.graph_width = graph_width(opt->graph);
781 pretty_print_commit(&ctx, commit, &msgbuf);
782
783 if (opt->add_signoff)
784 append_signoff(&msgbuf, 0, APPEND_SIGNOFF_DEDUP);
785
786 if ((ctx.fmt != CMIT_FMT_USERFORMAT) &&
787 ctx.notes_message && *ctx.notes_message) {
788 if (cmit_fmt_is_mail(ctx.fmt))
789 next_commentary_block(opt, &msgbuf);
790 strbuf_addstr(&msgbuf, ctx.notes_message);
791 }
792
793 if (opt->show_log_size) {
794 fprintf(opt->diffopt.file, "log size %i\n", (int)msgbuf.len);
795 graph_show_oneline(opt->graph);
796 }
797
798 /*
799 * Set opt->missing_newline if msgbuf doesn't
800 * end in a newline (including if it is empty)
801 */
802 if (!msgbuf.len || msgbuf.buf[msgbuf.len - 1] != '\n')
803 opt->missing_newline = 1;
804 else
805 opt->missing_newline = 0;
806
807 graph_show_commit_msg(opt->graph, opt->diffopt.file, &msgbuf);
808 if (opt->use_terminator && !commit_format_is_empty(opt->commit_format)) {
809 if (!opt->missing_newline)
810 graph_show_padding(opt->graph);
811 putc(opt->diffopt.line_termination, opt->diffopt.file);
812 }
813
814 strbuf_release(&msgbuf);
815 free(ctx.notes_message);
816
817 if (cmit_fmt_is_mail(ctx.fmt) && opt->idiff_oid1) {
818 struct diff_queue_struct dq;
819
820 memcpy(&dq, &diff_queued_diff, sizeof(diff_queued_diff));
821 DIFF_QUEUE_CLEAR(&diff_queued_diff);
822
823 next_commentary_block(opt, NULL);
824 fprintf_ln(opt->diffopt.file, "%s", opt->idiff_title);
825 show_interdiff(opt->idiff_oid1, opt->idiff_oid2, 2,
826 &opt->diffopt);
827
828 memcpy(&diff_queued_diff, &dq, sizeof(diff_queued_diff));
829 }
830
831 if (cmit_fmt_is_mail(ctx.fmt) && opt->rdiff1) {
832 struct diff_queue_struct dq;
833 struct diff_options opts;
834 struct range_diff_options range_diff_opts = {
835 .creation_factor = opt->creation_factor,
836 .dual_color = 1,
837 .diffopt = &opts
838 };
839
840 memcpy(&dq, &diff_queued_diff, sizeof(diff_queued_diff));
841 DIFF_QUEUE_CLEAR(&diff_queued_diff);
842
843 next_commentary_block(opt, NULL);
844 fprintf_ln(opt->diffopt.file, "%s", opt->rdiff_title);
845 /*
846 * Pass minimum required diff-options to range-diff; others
847 * can be added later if deemed desirable.
848 */
849 diff_setup(&opts);
850 opts.file = opt->diffopt.file;
851 opts.use_color = opt->diffopt.use_color;
852 diff_setup_done(&opts);
853 show_range_diff(opt->rdiff1, opt->rdiff2, &range_diff_opts);
854
855 memcpy(&diff_queued_diff, &dq, sizeof(diff_queued_diff));
856 }
857 }
858
859 int log_tree_diff_flush(struct rev_info *opt)
860 {
861 opt->shown_dashes = 0;
862 diffcore_std(&opt->diffopt);
863
864 if (diff_queue_is_empty(&opt->diffopt)) {
865 int saved_fmt = opt->diffopt.output_format;
866 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
867 diff_flush(&opt->diffopt);
868 opt->diffopt.output_format = saved_fmt;
869 return 0;
870 }
871
872 if (opt->loginfo && !opt->no_commit_id) {
873 show_log(opt);
874 if ((opt->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) &&
875 opt->verbose_header &&
876 opt->commit_format != CMIT_FMT_ONELINE &&
877 !commit_format_is_empty(opt->commit_format)) {
878 /*
879 * When showing a verbose header (i.e. log message),
880 * and not in --pretty=oneline format, we would want
881 * an extra newline between the end of log and the
882 * diff/diffstat output for readability.
883 */
884 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
885 if (opt->diffopt.output_prefix) {
886 struct strbuf *msg = NULL;
887 msg = opt->diffopt.output_prefix(&opt->diffopt,
888 opt->diffopt.output_prefix_data);
889 fwrite(msg->buf, msg->len, 1, opt->diffopt.file);
890 }
891
892 /*
893 * We may have shown three-dashes line early
894 * between generated commentary (notes, etc.)
895 * and the log message, in which case we only
896 * want a blank line after the commentary
897 * without (an extra) three-dashes line.
898 * Otherwise, we show the three-dashes line if
899 * we are showing the patch with diffstat, but
900 * in that case, there is no extra blank line
901 * after the three-dashes line.
902 */
903 if (!opt->shown_dashes &&
904 (pch & opt->diffopt.output_format) == pch)
905 fprintf(opt->diffopt.file, "---");
906 putc('\n', opt->diffopt.file);
907 }
908 }
909 diff_flush(&opt->diffopt);
910 return 1;
911 }
912
913 static int do_diff_combined(struct rev_info *opt, struct commit *commit)
914 {
915 diff_tree_combined_merge(commit, opt);
916 return !opt->loginfo;
917 }
918
919 static void setup_additional_headers(struct diff_options *o,
920 struct strmap *all_headers)
921 {
922 struct hashmap_iter iter;
923 struct strmap_entry *entry;
924
925 /*
926 * Make o->additional_path_headers contain the subset of all_headers
927 * that match o->pathspec. If there aren't any that match o->pathspec,
928 * then make o->additional_path_headers be NULL.
929 */
930
931 if (!o->pathspec.nr) {
932 o->additional_path_headers = all_headers;
933 return;
934 }
935
936 o->additional_path_headers = xmalloc(sizeof(struct strmap));
937 strmap_init_with_options(o->additional_path_headers, NULL, 0);
938 strmap_for_each_entry(all_headers, &iter, entry) {
939 if (match_pathspec(the_repository->index, &o->pathspec,
940 entry->key, strlen(entry->key),
941 0 /* prefix */, NULL /* seen */,
942 0 /* is_dir */))
943 strmap_put(o->additional_path_headers,
944 entry->key, entry->value);
945 }
946 if (!strmap_get_size(o->additional_path_headers)) {
947 strmap_clear(o->additional_path_headers, 0);
948 FREE_AND_NULL(o->additional_path_headers);
949 }
950 }
951
952 static void cleanup_additional_headers(struct diff_options *o)
953 {
954 if (!o->pathspec.nr) {
955 o->additional_path_headers = NULL;
956 return;
957 }
958 if (!o->additional_path_headers)
959 return;
960
961 strmap_clear(o->additional_path_headers, 0);
962 FREE_AND_NULL(o->additional_path_headers);
963 }
964
965 static int do_remerge_diff(struct rev_info *opt,
966 struct commit_list *parents,
967 struct object_id *oid)
968 {
969 struct merge_options o;
970 struct commit_list *bases;
971 struct merge_result res = {0};
972 struct pretty_print_context ctx = {0};
973 struct commit *parent1 = parents->item;
974 struct commit *parent2 = parents->next->item;
975 struct strbuf parent1_desc = STRBUF_INIT;
976 struct strbuf parent2_desc = STRBUF_INIT;
977
978 /* Setup merge options */
979 init_merge_options(&o, the_repository);
980 o.show_rename_progress = 0;
981 o.record_conflict_msgs_as_headers = 1;
982 o.msg_header_prefix = "remerge";
983
984 ctx.abbrev = DEFAULT_ABBREV;
985 format_commit_message(parent1, "%h (%s)", &parent1_desc, &ctx);
986 format_commit_message(parent2, "%h (%s)", &parent2_desc, &ctx);
987 o.branch1 = parent1_desc.buf;
988 o.branch2 = parent2_desc.buf;
989
990 /* Parse the relevant commits and get the merge bases */
991 parse_commit_or_die(parent1);
992 parse_commit_or_die(parent2);
993 bases = get_merge_bases(parent1, parent2);
994
995 /* Re-merge the parents */
996 merge_incore_recursive(&o, bases, parent1, parent2, &res);
997
998 /* Show the diff */
999 setup_additional_headers(&opt->diffopt, res.path_messages);
1000 diff_tree_oid(&res.tree->object.oid, oid, "", &opt->diffopt);
1001 log_tree_diff_flush(opt);
1002
1003 /* Cleanup */
1004 cleanup_additional_headers(&opt->diffopt);
1005 strbuf_release(&parent1_desc);
1006 strbuf_release(&parent2_desc);
1007 merge_finalize(&o, &res);
1008
1009 /* Clean up the contents of the temporary object directory */
1010 if (opt->remerge_objdir)
1011 tmp_objdir_discard_objects(opt->remerge_objdir);
1012 else
1013 BUG("did a remerge diff without remerge_objdir?!?");
1014
1015 return !opt->loginfo;
1016 }
1017
1018 /*
1019 * Show the diff of a commit.
1020 *
1021 * Return true if we printed any log info messages
1022 */
1023 static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
1024 {
1025 int showed_log;
1026 struct commit_list *parents;
1027 struct object_id *oid;
1028 int is_merge;
1029 int all_need_diff = opt->diff || opt->diffopt.flags.exit_with_status;
1030
1031 if (!all_need_diff && !opt->merges_need_diff)
1032 return 0;
1033
1034 parse_commit_or_die(commit);
1035 oid = get_commit_tree_oid(commit);
1036
1037 parents = get_saved_parents(opt, commit);
1038 is_merge = parents && parents->next;
1039 if (!is_merge && !all_need_diff)
1040 return 0;
1041
1042 /* Root commit? */
1043 if (!parents) {
1044 if (opt->show_root_diff) {
1045 diff_root_tree_oid(oid, "", &opt->diffopt);
1046 log_tree_diff_flush(opt);
1047 }
1048 return !opt->loginfo;
1049 }
1050
1051 if (is_merge) {
1052 int octopus = (parents->next->next != NULL);
1053
1054 if (opt->remerge_diff) {
1055 if (octopus) {
1056 show_log(opt);
1057 fprintf(opt->diffopt.file,
1058 "diff: warning: Skipping remerge-diff "
1059 "for octopus merges.\n");
1060 return 1;
1061 }
1062 return do_remerge_diff(opt, parents, oid);
1063 }
1064 if (opt->combine_merges)
1065 return do_diff_combined(opt, commit);
1066 if (opt->separate_merges) {
1067 if (!opt->first_parent_merges) {
1068 /* Show parent info for multiple diffs */
1069 log->parent = parents->item;
1070 }
1071 } else
1072 return 0;
1073 }
1074
1075 showed_log = 0;
1076 for (;;) {
1077 struct commit *parent = parents->item;
1078
1079 parse_commit_or_die(parent);
1080 diff_tree_oid(get_commit_tree_oid(parent),
1081 oid, "", &opt->diffopt);
1082 log_tree_diff_flush(opt);
1083
1084 showed_log |= !opt->loginfo;
1085
1086 /* Set up the log info for the next parent, if any.. */
1087 parents = parents->next;
1088 if (!parents || opt->first_parent_merges)
1089 break;
1090 log->parent = parents->item;
1091 opt->loginfo = log;
1092 }
1093 return showed_log;
1094 }
1095
1096 int log_tree_commit(struct rev_info *opt, struct commit *commit)
1097 {
1098 struct log_info log;
1099 int shown;
1100 /* maybe called by e.g. cmd_log_walk(), maybe stand-alone */
1101 int no_free = opt->diffopt.no_free;
1102
1103 log.commit = commit;
1104 log.parent = NULL;
1105 opt->loginfo = &log;
1106 opt->diffopt.no_free = 1;
1107
1108 /* NEEDSWORK: no restoring of no_free? Why? */
1109 if (opt->line_level_traverse)
1110 return line_log_print(opt, commit);
1111
1112 if (opt->track_linear && !opt->linear && !opt->reverse_output_stage)
1113 fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar);
1114 shown = log_tree_diff(opt, commit, &log);
1115 if (!shown && opt->loginfo && opt->always_show_header) {
1116 log.parent = NULL;
1117 show_log(opt);
1118 shown = 1;
1119 }
1120 if (opt->track_linear && !opt->linear && opt->reverse_output_stage)
1121 fprintf(opt->diffopt.file, "\n%s\n", opt->break_bar);
1122 opt->loginfo = NULL;
1123 maybe_flush_or_die(opt->diffopt.file, "stdout");
1124 opt->diffopt.no_free = no_free;
1125 diff_free(&opt->diffopt);
1126 return shown;
1127 }