blob: f70a30e12702fa68c77f6b2490692f3861ad32e7 [file] [log] [blame]
Junio C Hamano5f1c3f02006-04-09 01:11:11 -07001#include "cache.h"
2#include "diff.h"
3#include "commit.h"
René Scharfecab4feb2008-09-04 23:39:21 +02004#include "tag.h"
Adam Simpkins7fefda52008-05-04 03:36:54 -07005#include "graph.h"
Junio C Hamano5f1c3f02006-04-09 01:11:11 -07006#include "log-tree.h"
Johannes Schindelin8860fd42007-01-11 11:47:48 +01007#include "reflog-walk.h"
René Scharfecab4feb2008-09-04 23:39:21 +02008#include "refs.h"
Thomas Rastb079c502009-02-19 22:26:31 +01009#include "string-list.h"
Nazri Ramliy67a4b582010-06-19 09:37:35 +080010#include "color.h"
Junio C Hamano0c37f1f2011-10-18 15:53:23 -070011#include "gpg-interface.h"
Brandon Casey959a2622013-02-12 02:17:39 -080012#include "sequencer.h"
Thomas Rast12da1d12013-03-28 17:47:32 +010013#include "line-log.h"
Junio C Hamano5f1c3f02006-04-09 01:11:11 -070014
Jeff King2608c242014-08-26 06:23:54 -040015static struct decoration name_decoration = { "object names" };
Junio C Hamano76c61fb2015-05-13 10:25:18 -070016static int decoration_loaded;
17static int decoration_flags;
Nazri Ramliya7524122010-06-19 09:37:34 +080018
Nazri Ramliy67a4b582010-06-19 09:37:35 +080019static char decoration_colors[][COLOR_MAXLEN] = {
20 GIT_COLOR_RESET,
21 GIT_COLOR_BOLD_GREEN, /* REF_LOCAL */
22 GIT_COLOR_BOLD_RED, /* REF_REMOTE */
23 GIT_COLOR_BOLD_YELLOW, /* REF_TAG */
24 GIT_COLOR_BOLD_MAGENTA, /* REF_STASH */
25 GIT_COLOR_BOLD_CYAN, /* REF_HEAD */
Nguyễn Thái Ngọc Duy76f5df32011-08-18 19:29:37 +070026 GIT_COLOR_BOLD_BLUE, /* GRAFTED */
Nazri Ramliy67a4b582010-06-19 09:37:35 +080027};
28
29static const char *decorate_get_color(int decorate_use_color, enum decoration_type ix)
30{
Jeff Kingdaa0c3d2011-08-17 22:04:23 -070031 if (want_color(decorate_use_color))
Nazri Ramliy67a4b582010-06-19 09:37:35 +080032 return decoration_colors[ix];
33 return "";
34}
35
Nazri Ramliy5e11bee2010-06-24 08:21:16 +080036static int parse_decorate_color_slot(const char *slot)
37{
38 /*
39 * We're comparing with 'ignore-case' on
40 * (because config.c sets them all tolower),
41 * but let's match the letters in the literal
42 * string values here with how they are
43 * documented in Documentation/config.txt, for
44 * consistency.
45 *
46 * We love being consistent, don't we?
47 */
48 if (!strcasecmp(slot, "branch"))
49 return DECORATION_REF_LOCAL;
50 if (!strcasecmp(slot, "remoteBranch"))
51 return DECORATION_REF_REMOTE;
52 if (!strcasecmp(slot, "tag"))
53 return DECORATION_REF_TAG;
54 if (!strcasecmp(slot, "stash"))
55 return DECORATION_REF_STASH;
56 if (!strcasecmp(slot, "HEAD"))
57 return DECORATION_REF_HEAD;
58 return -1;
59}
60
Jonathan Nieder88521172014-10-07 15:16:57 -040061int parse_decorate_color_config(const char *var, const char *slot_name, const char *value)
Nazri Ramliy5e11bee2010-06-24 08:21:16 +080062{
Jonathan Nieder88521172014-10-07 15:16:57 -040063 int slot = parse_decorate_color_slot(slot_name);
Nazri Ramliy5e11bee2010-06-24 08:21:16 +080064 if (slot < 0)
65 return 0;
66 if (!value)
67 return config_error_nonbool(var);
Jeff Kingf6c5a292014-10-07 15:33:09 -040068 return color_parse(value, decoration_colors[slot]);
Nazri Ramliy5e11bee2010-06-24 08:21:16 +080069}
70
Nazri Ramliy67a4b582010-06-19 09:37:35 +080071/*
72 * log-tree.c uses DIFF_OPT_TST for determining whether to use color
73 * for showing the commit sha1, use the same check for --decorate
74 */
75#define decorate_get_color_opt(o, ix) \
Jeff Kingf1c96262011-08-17 22:03:12 -070076 decorate_get_color((o)->use_color, ix)
Nazri Ramliy67a4b582010-06-19 09:37:35 +080077
Jeff King662174d2014-08-26 06:23:36 -040078void add_name_decoration(enum decoration_type type, const char *name, struct object *obj)
René Scharfecab4feb2008-09-04 23:39:21 +020079{
René Scharfecab4feb2008-09-04 23:39:21 +020080 int nlen = strlen(name);
Jeff King2e3dfb22014-08-26 06:24:20 -040081 struct name_decoration *res = xmalloc(sizeof(*res) + nlen + 1);
Nazri Ramliya7524122010-06-19 09:37:34 +080082 memcpy(res->name, name, nlen + 1);
83 res->type = type;
René Scharfecab4feb2008-09-04 23:39:21 +020084 res->next = add_decoration(&name_decoration, obj, res);
85}
86
Jeff King2608c242014-08-26 06:23:54 -040087const struct name_decoration *get_name_decoration(const struct object *obj)
88{
89 return lookup_decoration(&name_decoration, obj);
90}
91
Michael Haggertyf124b732015-05-25 18:38:57 +000092static int add_ref_decoration(const char *refname, const struct object_id *oid,
93 int flags, void *cb_data)
René Scharfecab4feb2008-09-04 23:39:21 +020094{
Nguyễn Thái Ngọc Duy5267d292011-08-19 19:43:50 +070095 struct object *obj;
Nazri Ramliya7524122010-06-19 09:37:34 +080096 enum decoration_type type = DECORATION_NONE;
Nguyễn Thái Ngọc Duy5267d292011-08-19 19:43:50 +070097
Junio C Hamano429ad202015-05-13 12:40:35 -070098 assert(cb_data == NULL);
99
Mike Hommey58d121b2015-06-12 06:34:59 +0900100 if (starts_with(refname, git_replace_ref_base)) {
Michael Haggerty3d79f652015-05-25 18:38:58 +0000101 struct object_id original_oid;
Michael Haggertyafc711b2014-02-18 12:24:55 +0100102 if (!check_replace_refs)
Michael J Gruberb9ad5002011-08-25 17:09:30 +0200103 return 0;
Junio C Hamano31a0ad52015-08-03 11:01:10 -0700104 if (get_oid_hex(refname + strlen(git_replace_ref_base),
105 &original_oid)) {
Nguyễn Thái Ngọc Duy5267d292011-08-19 19:43:50 +0700106 warning("invalid replace ref %s", refname);
107 return 0;
108 }
Michael Haggerty3d79f652015-05-25 18:38:58 +0000109 obj = parse_object(original_oid.hash);
Nguyễn Thái Ngọc Duy5267d292011-08-19 19:43:50 +0700110 if (obj)
111 add_name_decoration(DECORATION_GRAFTED, "replaced", obj);
112 return 0;
113 }
114
Michael Haggertyf124b732015-05-25 18:38:57 +0000115 obj = parse_object(oid->hash);
René Scharfecab4feb2008-09-04 23:39:21 +0200116 if (!obj)
117 return 0;
Nazri Ramliya7524122010-06-19 09:37:34 +0800118
Christian Couder59556542013-11-30 21:55:40 +0100119 if (starts_with(refname, "refs/heads/"))
Nazri Ramliya7524122010-06-19 09:37:34 +0800120 type = DECORATION_REF_LOCAL;
Christian Couder59556542013-11-30 21:55:40 +0100121 else if (starts_with(refname, "refs/remotes/"))
Nazri Ramliya7524122010-06-19 09:37:34 +0800122 type = DECORATION_REF_REMOTE;
Christian Couder59556542013-11-30 21:55:40 +0100123 else if (starts_with(refname, "refs/tags/"))
Nazri Ramliya7524122010-06-19 09:37:34 +0800124 type = DECORATION_REF_TAG;
Nguyễn Thái Ngọc Duy97ba6422012-01-05 19:39:40 +0700125 else if (!strcmp(refname, "refs/stash"))
Nazri Ramliya7524122010-06-19 09:37:34 +0800126 type = DECORATION_REF_STASH;
Nguyễn Thái Ngọc Duy97ba6422012-01-05 19:39:40 +0700127 else if (!strcmp(refname, "HEAD"))
Nazri Ramliya7524122010-06-19 09:37:34 +0800128 type = DECORATION_REF_HEAD;
129
Nazri Ramliya7524122010-06-19 09:37:34 +0800130 add_name_decoration(type, refname, obj);
René Scharfecab4feb2008-09-04 23:39:21 +0200131 while (obj->type == OBJ_TAG) {
132 obj = ((struct tag *)obj)->tagged;
133 if (!obj)
134 break;
brian m. carlson5e1361c2013-12-17 04:28:21 +0000135 if (!obj->parsed)
brian m. carlsoned1c9972015-11-10 02:22:29 +0000136 parse_object(obj->oid.hash);
Nazri Ramliya7524122010-06-19 09:37:34 +0800137 add_name_decoration(DECORATION_REF_TAG, refname, obj);
René Scharfecab4feb2008-09-04 23:39:21 +0200138 }
139 return 0;
140}
141
Nguyễn Thái Ngọc Duy76f5df32011-08-18 19:29:37 +0700142static int add_graft_decoration(const struct commit_graft *graft, void *cb_data)
143{
brian m. carlson7683e2e2015-03-13 23:39:34 +0000144 struct commit *commit = lookup_commit(graft->oid.hash);
Nguyễn Thái Ngọc Duy76f5df32011-08-18 19:29:37 +0700145 if (!commit)
146 return 0;
147 add_name_decoration(DECORATION_GRAFTED, "grafted", &commit->object);
148 return 0;
149}
150
Lars Hjemli33e70182009-08-15 16:23:12 +0200151void load_ref_decorations(int flags)
René Scharfecab4feb2008-09-04 23:39:21 +0200152{
Junio C Hamano76c61fb2015-05-13 10:25:18 -0700153 if (!decoration_loaded) {
Michael Haggerty2b2a5be2015-05-25 18:38:28 +0000154
Junio C Hamano76c61fb2015-05-13 10:25:18 -0700155 decoration_loaded = 1;
156 decoration_flags = flags;
Michael Haggertyf124b732015-05-25 18:38:57 +0000157 for_each_ref(add_ref_decoration, NULL);
158 head_ref(add_ref_decoration, NULL);
Nguyễn Thái Ngọc Duy76f5df32011-08-18 19:29:37 +0700159 for_each_commit_graft(add_graft_decoration, NULL);
René Scharfecab4feb2008-09-04 23:39:21 +0200160 }
161}
162
Linus Torvaldsc8c893c2006-05-03 07:59:00 -0700163static void show_parents(struct commit *commit, int abbrev)
164{
165 struct commit_list *p;
166 for (p = commit->parents; p ; p = p->next) {
167 struct commit *parent = p->item;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000168 printf(" %s", find_unique_abbrev(parent->object.oid.hash, abbrev));
Linus Torvaldsc8c893c2006-05-03 07:59:00 -0700169 }
170}
171
Jay Soffian91b849b2011-10-04 10:02:03 -0400172static void show_children(struct rev_info *opt, struct commit *commit, int abbrev)
173{
174 struct commit_list *p = lookup_decoration(&opt->children, &commit->object);
175 for ( ; p; p = p->next) {
brian m. carlsoned1c9972015-11-10 02:22:29 +0000176 printf(" %s", find_unique_abbrev(p->item->object.oid.hash, abbrev));
Jay Soffian91b849b2011-10-04 10:02:03 -0400177 }
178}
179
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000180/*
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100181 * Do we have HEAD in the output, and also the branch it points at?
182 * If so, find that decoration entry for that current branch.
183 */
184static const struct name_decoration *current_pointed_by_HEAD(const struct name_decoration *decoration)
185{
186 const struct name_decoration *list, *head = NULL;
187 const char *branch_name = NULL;
188 unsigned char unused[20];
189 int rru_flags;
190
191 /* First find HEAD */
192 for (list = decoration; list; list = list->next)
193 if (list->type == DECORATION_REF_HEAD) {
194 head = list;
195 break;
196 }
197 if (!head)
198 return NULL;
199
200 /* Now resolve and find the matching current branch */
201 branch_name = resolve_ref_unsafe("HEAD", 0, unused, &rru_flags);
202 if (!(rru_flags & REF_ISSYMREF))
203 return NULL;
Junio C Hamano76c61fb2015-05-13 10:25:18 -0700204
Junio C Hamano429ad202015-05-13 12:40:35 -0700205 if (!starts_with(branch_name, "refs/"))
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100206 return NULL;
207
208 /* OK, do we have that ref in the list? */
209 for (list = decoration; list; list = list->next)
210 if ((list->type == DECORATION_REF_LOCAL) &&
211 !strcmp(branch_name, list->name)) {
212 return list;
213 }
214
215 return NULL;
216}
217
Junio C Hamano429ad202015-05-13 12:40:35 -0700218static void show_name(struct strbuf *sb, const struct name_decoration *decoration)
219{
220 if (decoration_flags == DECORATE_SHORT_REFS)
221 strbuf_addstr(sb, prettify_refname(decoration->name));
222 else
223 strbuf_addstr(sb, decoration->name);
224}
225
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100226/*
Harry Jeffery92710952014-09-18 21:53:53 +0100227 * The caller makes sure there is no funny color before calling.
228 * format_decorations_extended makes sure the same after return.
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000229 */
Harry Jeffery92710952014-09-18 21:53:53 +0100230void format_decorations_extended(struct strbuf *sb,
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000231 const struct commit *commit,
Harry Jeffery92710952014-09-18 21:53:53 +0100232 int use_color,
233 const char *prefix,
234 const char *separator,
235 const char *suffix)
Linus Torvaldsca135e72007-04-16 16:05:10 -0700236{
Jeff King2608c242014-08-26 06:23:54 -0400237 const struct name_decoration *decoration;
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100238 const struct name_decoration *current_and_HEAD;
Nazri Ramliy67a4b582010-06-19 09:37:35 +0800239 const char *color_commit =
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000240 diff_get_color(use_color, DIFF_COMMIT);
Nazri Ramliy67a4b582010-06-19 09:37:35 +0800241 const char *color_reset =
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000242 decorate_get_color(use_color, DECORATION_NONE);
Linus Torvaldsca135e72007-04-16 16:05:10 -0700243
Jeff King2608c242014-08-26 06:23:54 -0400244 decoration = get_name_decoration(&commit->object);
Linus Torvaldsca135e72007-04-16 16:05:10 -0700245 if (!decoration)
246 return;
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100247
248 current_and_HEAD = current_pointed_by_HEAD(decoration);
Linus Torvaldsca135e72007-04-16 16:05:10 -0700249 while (decoration) {
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100250 /*
251 * When both current and HEAD are there, only
252 * show HEAD->current where HEAD would have
253 * appeared, skipping the entry for current.
254 */
255 if (decoration != current_and_HEAD) {
256 strbuf_addstr(sb, color_commit);
257 strbuf_addstr(sb, prefix);
258 strbuf_addstr(sb, color_reset);
259 strbuf_addstr(sb, decorate_get_color(use_color, decoration->type));
260 if (decoration->type == DECORATION_REF_TAG)
261 strbuf_addstr(sb, "tag: ");
262
Junio C Hamano429ad202015-05-13 12:40:35 -0700263 show_name(sb, decoration);
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100264
265 if (current_and_HEAD &&
266 decoration->type == DECORATION_REF_HEAD) {
267 strbuf_addstr(sb, color_reset);
268 strbuf_addstr(sb, color_commit);
269 strbuf_addstr(sb, " -> ");
270 strbuf_addstr(sb, color_reset);
271 strbuf_addstr(sb, decorate_get_color(use_color, current_and_HEAD->type));
Junio C Hamano429ad202015-05-13 12:40:35 -0700272 show_name(sb, current_and_HEAD);
Junio C Hamano51ff0f22015-03-10 14:53:21 +0100273 }
274 strbuf_addstr(sb, color_reset);
275
276 prefix = separator;
277 }
Linus Torvaldsca135e72007-04-16 16:05:10 -0700278 decoration = decoration->next;
279 }
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000280 strbuf_addstr(sb, color_commit);
Harry Jeffery92710952014-09-18 21:53:53 +0100281 strbuf_addstr(sb, suffix);
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000282 strbuf_addstr(sb, color_reset);
283}
284
285void show_decorations(struct rev_info *opt, struct commit *commit)
286{
287 struct strbuf sb = STRBUF_INIT;
288
289 if (opt->show_source && commit->util)
290 printf("\t%s", (char *) commit->util);
291 if (!opt->show_decorations)
292 return;
293 format_decorations(&sb, commit, opt->diffopt.use_color);
294 fputs(sb.buf, stdout);
295 strbuf_release(&sb);
Linus Torvaldsca135e72007-04-16 16:05:10 -0700296}
297
Johannes Schindeline00de242007-02-09 01:43:54 +0100298static unsigned int digits_in_number(unsigned int number)
299{
300 unsigned int i = 10, result = 1;
301 while (i <= number) {
302 i *= 10;
303 result++;
304 }
305 return result;
306}
307
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800308void fmt_output_subject(struct strbuf *filename,
309 const char *subject,
Junio C Hamano021f2f42012-12-21 23:26:16 -0800310 struct rev_info *info)
Stephen Boyd6fa8e622009-03-22 19:14:04 -0700311{
Junio C Hamano021f2f42012-12-21 23:26:16 -0800312 const char *suffix = info->patch_suffix;
313 int nr = info->nr;
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800314 int start_len = filename->len;
315 int max_len = start_len + FORMAT_PATCH_NAME_MAX - (strlen(suffix) + 1);
Stephen Boyd6fa8e622009-03-22 19:14:04 -0700316
Junio C Hamano5fe10fe2012-12-22 00:21:23 -0800317 if (0 < info->reroll_count)
318 strbuf_addf(filename, "v%d-", info->reroll_count);
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800319 strbuf_addf(filename, "%04d-%s", nr, subject);
Christian Couderb09b8682009-03-27 01:13:01 +0100320
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800321 if (max_len < filename->len)
322 strbuf_setlen(filename, max_len);
323 strbuf_addstr(filename, suffix);
324}
Jeff Kinga21c2f92012-05-21 19:10:32 -0400325
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800326void fmt_output_commit(struct strbuf *filename,
327 struct commit *commit,
328 struct rev_info *info)
329{
330 struct pretty_print_context ctx = {0};
331 struct strbuf subject = STRBUF_INIT;
332
333 format_commit_message(commit, "%f", &subject, &ctx);
334 fmt_output_subject(filename, subject.buf, info);
335 strbuf_release(&subject);
Stephen Boyd6fa8e622009-03-22 19:14:04 -0700336}
337
Stephen Boyd108dab22009-03-22 19:14:05 -0700338void log_write_email_headers(struct rev_info *opt, struct commit *commit,
Junio C Hamano267123b2008-03-15 00:09:20 -0700339 const char **subject_p,
340 const char **extra_headers_p,
341 int *need_8bit_cte_p)
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500342{
343 const char *subject = NULL;
344 const char *extra_headers = opt->extra_headers;
brian m. carlson3a30aa12015-12-15 01:52:04 +0000345 const char *name = oid_to_hex(opt->zero_commit ?
346 &null_oid : &commit->object.oid);
Junio C Hamano267123b2008-03-15 00:09:20 -0700347
348 *need_8bit_cte_p = 0; /* unknown */
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500349 if (opt->total > 0) {
350 static char buffer[64];
351 snprintf(buffer, sizeof(buffer),
Jeff Kinge7af8e42011-05-30 10:19:05 -0400352 "Subject: [%s%s%0*d/%d] ",
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500353 opt->subject_prefix,
Jeff Kinge7af8e42011-05-30 10:19:05 -0400354 *opt->subject_prefix ? " " : "",
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500355 digits_in_number(opt->total),
356 opt->nr, opt->total);
357 subject = buffer;
358 } else if (opt->total == 0 && opt->subject_prefix && *opt->subject_prefix) {
359 static char buffer[256];
360 snprintf(buffer, sizeof(buffer),
361 "Subject: [%s] ",
362 opt->subject_prefix);
363 subject = buffer;
364 } else {
365 subject = "Subject: ";
366 }
367
368 printf("From %s Mon Sep 17 00:00:00 2001\n", name);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700369 graph_show_oneline(opt->graph);
370 if (opt->message_id) {
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500371 printf("Message-Id: <%s>\n", opt->message_id);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700372 graph_show_oneline(opt->graph);
373 }
Thomas Rastb079c502009-02-19 22:26:31 +0100374 if (opt->ref_message_ids && opt->ref_message_ids->nr > 0) {
375 int i, n;
376 n = opt->ref_message_ids->nr;
377 printf("In-Reply-To: <%s>\n", opt->ref_message_ids->items[n-1].string);
378 for (i = 0; i < n; i++)
379 printf("%s<%s>\n", (i > 0 ? "\t" : "References: "),
380 opt->ref_message_ids->items[i].string);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700381 graph_show_oneline(opt->graph);
382 }
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500383 if (opt->mime_boundary) {
384 static char subject_buffer[1024];
385 static char buffer[1024];
Stephen Boyd108dab22009-03-22 19:14:05 -0700386 struct strbuf filename = STRBUF_INIT;
Junio C Hamano267123b2008-03-15 00:09:20 -0700387 *need_8bit_cte_p = -1; /* NEVER */
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500388 snprintf(subject_buffer, sizeof(subject_buffer) - 1,
389 "%s"
390 "MIME-Version: 1.0\n"
391 "Content-Type: multipart/mixed;"
392 " boundary=\"%s%s\"\n"
393 "\n"
394 "This is a multi-part message in MIME "
395 "format.\n"
396 "--%s%s\n"
397 "Content-Type: text/plain; "
398 "charset=UTF-8; format=fixed\n"
399 "Content-Transfer-Encoding: 8bit\n\n",
400 extra_headers ? extra_headers : "",
401 mime_boundary_leader, opt->mime_boundary,
402 mime_boundary_leader, opt->mime_boundary);
403 extra_headers = subject_buffer;
404
Junio C Hamano38ec23a2012-12-21 21:39:37 -0800405 if (opt->numbered_files)
406 strbuf_addf(&filename, "%d", opt->nr);
407 else
Junio C Hamanod28b5d42012-12-21 22:06:01 -0800408 fmt_output_commit(&filename, commit, opt);
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500409 snprintf(buffer, sizeof(buffer) - 1,
Kevin Ballard6b2fbaa2008-07-29 22:49:33 -0700410 "\n--%s%s\n"
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500411 "Content-Type: text/x-patch;"
Stephen Boyd108dab22009-03-22 19:14:05 -0700412 " name=\"%s\"\n"
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500413 "Content-Transfer-Encoding: 8bit\n"
414 "Content-Disposition: %s;"
Stephen Boyd108dab22009-03-22 19:14:05 -0700415 " filename=\"%s\"\n\n",
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500416 mime_boundary_leader, opt->mime_boundary,
Stephen Boyd108dab22009-03-22 19:14:05 -0700417 filename.buf,
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500418 opt->no_inline ? "attachment" : "inline",
Stephen Boyd108dab22009-03-22 19:14:05 -0700419 filename.buf);
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500420 opt->diffopt.stat_sep = buffer;
Stephen Boyd108dab22009-03-22 19:14:05 -0700421 strbuf_release(&filename);
Daniel Barkalowb02bd652008-02-18 22:56:08 -0500422 }
423 *subject_p = subject;
424 *extra_headers_p = extra_headers;
425}
426
Junio C Hamanoc6b3ec42012-01-04 13:48:45 -0800427static void show_sig_lines(struct rev_info *opt, int status, const char *bol)
428{
429 const char *color, *reset, *eol;
430
431 color = diff_get_color_opt(&opt->diffopt,
432 status ? DIFF_WHITESPACE : DIFF_FRAGINFO);
433 reset = diff_get_color_opt(&opt->diffopt, DIFF_RESET);
434 while (*bol) {
435 eol = strchrnul(bol, '\n');
436 printf("%s%.*s%s%s", color, (int)(eol - bol), bol, reset,
437 *eol ? "\n" : "");
Zoltan Klingercf3983d2014-07-09 12:10:21 +1000438 graph_show_oneline(opt->graph);
Junio C Hamanoc6b3ec42012-01-04 13:48:45 -0800439 bol = (*eol) ? (eol + 1) : eol;
440 }
441}
442
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700443static void show_signature(struct rev_info *opt, struct commit *commit)
444{
445 struct strbuf payload = STRBUF_INIT;
446 struct strbuf signature = STRBUF_INIT;
447 struct strbuf gpg_output = STRBUF_INIT;
448 int status;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700449
Jeff King218aa3a2014-06-13 02:32:11 -0400450 if (parse_signed_commit(commit, &payload, &signature) <= 0)
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700451 goto out;
452
453 status = verify_signed_buffer(payload.buf, payload.len,
454 signature.buf, signature.len,
Michael J Gruber9cc4ac82013-02-14 17:04:44 +0100455 &gpg_output, NULL);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700456 if (status && !gpg_output.len)
457 strbuf_addstr(&gpg_output, "No signature\n");
458
Junio C Hamanoc6b3ec42012-01-04 13:48:45 -0800459 show_sig_lines(opt, status, gpg_output.buf);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700460
461 out:
462 strbuf_release(&gpg_output);
463 strbuf_release(&payload);
464 strbuf_release(&signature);
465}
466
Junio C Hamano824958e2012-01-04 13:51:28 -0800467static int which_parent(const unsigned char *sha1, const struct commit *commit)
468{
469 int nth;
470 const struct commit_list *parent;
471
472 for (nth = 0, parent = commit->parents; parent; parent = parent->next) {
brian m. carlsoned1c9972015-11-10 02:22:29 +0000473 if (!hashcmp(parent->item->object.oid.hash, sha1))
Junio C Hamano824958e2012-01-04 13:51:28 -0800474 return nth;
475 nth++;
476 }
477 return -1;
478}
479
Junio C Hamanod041ffa2012-01-04 16:23:12 -0800480static int is_common_merge(const struct commit *commit)
481{
482 return (commit->parents
483 && commit->parents->next
484 && !commit->parents->next->next);
485}
486
Christian Couder063da622014-07-07 08:35:37 +0200487static void show_one_mergetag(struct commit *commit,
Junio C Hamano824958e2012-01-04 13:51:28 -0800488 struct commit_extra_header *extra,
Christian Couder063da622014-07-07 08:35:37 +0200489 void *data)
Junio C Hamano824958e2012-01-04 13:51:28 -0800490{
Christian Couder063da622014-07-07 08:35:37 +0200491 struct rev_info *opt = (struct rev_info *)data;
Junio C Hamano824958e2012-01-04 13:51:28 -0800492 unsigned char sha1[20];
493 struct tag *tag;
494 struct strbuf verify_message;
495 int status, nth;
496 size_t payload_size, gpg_message_offset;
497
498 hash_sha1_file(extra->value, extra->len, typename(OBJ_TAG), sha1);
499 tag = lookup_tag(sha1);
500 if (!tag)
501 return; /* error message already given */
502
503 strbuf_init(&verify_message, 256);
504 if (parse_tag_buffer(tag, extra->value, extra->len))
505 strbuf_addstr(&verify_message, "malformed mergetag\n");
Junio C Hamanod041ffa2012-01-04 16:23:12 -0800506 else if (is_common_merge(commit) &&
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000507 !oidcmp(&tag->tagged->oid,
508 &commit->parents->next->item->object.oid))
Junio C Hamanod041ffa2012-01-04 16:23:12 -0800509 strbuf_addf(&verify_message,
510 "merged tag '%s'\n", tag->tag);
brian m. carlsoned1c9972015-11-10 02:22:29 +0000511 else if ((nth = which_parent(tag->tagged->oid.hash, commit)) < 0)
Junio C Hamano824958e2012-01-04 13:51:28 -0800512 strbuf_addf(&verify_message, "tag %s names a non-parent %s\n",
brian m. carlsoned1c9972015-11-10 02:22:29 +0000513 tag->tag, tag->tagged->oid.hash);
Junio C Hamano824958e2012-01-04 13:51:28 -0800514 else
515 strbuf_addf(&verify_message,
516 "parent #%d, tagged '%s'\n", nth + 1, tag->tag);
517 gpg_message_offset = verify_message.len;
518
519 payload_size = parse_signature(extra->value, extra->len);
Michael J Gruber13150932013-02-14 17:04:43 +0100520 status = -1;
Michael J Gruber42c55ce2014-06-27 15:18:36 +0200521 if (extra->len > payload_size) {
522 /* could have a good signature */
523 if (!verify_signed_buffer(extra->value, payload_size,
524 extra->value + payload_size,
525 extra->len - payload_size,
526 &verify_message, NULL))
527 status = 0; /* good */
528 else if (verify_message.len <= gpg_message_offset)
529 strbuf_addstr(&verify_message, "No signature\n");
530 /* otherwise we couldn't verify, which is shown as bad */
531 }
Junio C Hamano824958e2012-01-04 13:51:28 -0800532
533 show_sig_lines(opt, status, verify_message.buf);
534 strbuf_release(&verify_message);
535}
536
537static void show_mergetag(struct rev_info *opt, struct commit *commit)
538{
Christian Couder063da622014-07-07 08:35:37 +0200539 for_each_mergetag(show_one_mergetag, commit, opt);
Junio C Hamano824958e2012-01-04 13:51:28 -0800540}
541
Adam Simpkins02865652008-04-29 01:32:59 -0700542void show_log(struct rev_info *opt)
Linus Torvalds91539832006-04-17 11:59:32 -0700543{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500544 struct strbuf msgbuf = STRBUF_INIT;
Timo Hirvonen39bc9a62006-06-25 13:54:14 +0300545 struct log_info *log = opt->loginfo;
Linus Torvalds91539832006-04-17 11:59:32 -0700546 struct commit *commit = log->commit, *parent = log->parent;
Linus Torvalds91539832006-04-17 11:59:32 -0700547 int abbrev_commit = opt->abbrev_commit ? opt->abbrev : 40;
Thomas Rastdd2e7942009-10-19 17:48:08 +0200548 const char *extra_headers = opt->extra_headers;
549 struct pretty_print_context ctx = {0};
Linus Torvalds91539832006-04-17 11:59:32 -0700550
551 opt->loginfo = NULL;
552 if (!opt->verbose_header) {
Adam Simpkins7fefda52008-05-04 03:36:54 -0700553 graph_show_commit(opt->graph);
554
Michael J Gruber1df2d652011-03-07 13:31:39 +0100555 if (!opt->graph)
Michael J Gruberb1b47552011-03-10 15:45:03 +0100556 put_revision_mark(opt, commit);
brian m. carlsoned1c9972015-11-10 02:22:29 +0000557 fputs(find_unique_abbrev(commit->object.oid.hash, abbrev_commit), stdout);
Adam Simpkins885cf802008-05-04 03:36:52 -0700558 if (opt->print_parents)
Linus Torvaldsc8c893c2006-05-03 07:59:00 -0700559 show_parents(commit, abbrev_commit);
Jay Soffian91b849b2011-10-04 10:02:03 -0400560 if (opt->children.name)
561 show_children(opt, commit, abbrev_commit);
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700562 show_decorations(opt, commit);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700563 if (opt->graph && !graph_is_commit_finished(opt->graph)) {
564 putchar('\n');
565 graph_show_remainder(opt->graph);
566 }
Ryan Anderson1dcb6922006-08-07 05:11:23 -0700567 putchar(opt->diffopt.line_termination);
Linus Torvalds91539832006-04-17 11:59:32 -0700568 return;
569 }
570
571 /*
Jeff King87152272009-07-01 03:26:28 -0400572 * If use_terminator is set, we already handled any record termination
573 * at the end of the last record.
Adam Simpkins02865652008-04-29 01:32:59 -0700574 * Otherwise, add a diffopt.line_termination character before all
575 * entries but the first. (IOW, as a separator between entries)
Linus Torvalds91539832006-04-17 11:59:32 -0700576 */
Adam Simpkins7fefda52008-05-04 03:36:54 -0700577 if (opt->shown_one && !opt->use_terminator) {
578 /*
579 * If entries are separated by a newline, the output
580 * should look human-readable. If the last entry ended
581 * with a newline, print the graph output before this
582 * newline. Otherwise it will end up as a completely blank
583 * line and will look like a gap in the graph.
584 *
585 * If the entry separator is not a newline, the output is
586 * primarily intended for programmatic consumption, and we
587 * never want the extra graph output before the entry
588 * separator.
589 */
590 if (opt->diffopt.line_termination == '\n' &&
591 !opt->missing_newline)
592 graph_show_padding(opt->graph);
Linus Torvaldsabd4e222007-02-07 11:49:56 -0800593 putchar(opt->diffopt.line_termination);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700594 }
Linus Torvalds91539832006-04-17 11:59:32 -0700595 opt->shown_one = 1;
596
597 /*
Adam Simpkins7fefda52008-05-04 03:36:54 -0700598 * If the history graph was requested,
599 * print the graph, up to this commit's line
600 */
601 graph_show_commit(opt->graph);
602
603 /*
Linus Torvalds91539832006-04-17 11:59:32 -0700604 * Print header line of header..
605 */
Junio C Hamano3eefc182006-04-18 16:45:27 -0700606
Johannes Schindelin596524b2006-05-05 04:30:52 +0200607 if (opt->commit_format == CMIT_FMT_EMAIL) {
Thomas Rastdd2e7942009-10-19 17:48:08 +0200608 log_write_email_headers(opt, commit, &ctx.subject, &extra_headers,
609 &ctx.need_8bit_cte);
Johannes Schindeline52a5de2007-02-23 01:35:03 +0100610 } else if (opt->commit_format != CMIT_FMT_USERFORMAT) {
Pierre Habouzit8f67f8a2007-11-10 20:05:14 +0100611 fputs(diff_get_color_opt(&opt->diffopt, DIFF_COMMIT), stdout);
Junio C Hamano74bd9022006-12-16 15:31:25 -0800612 if (opt->commit_format != CMIT_FMT_ONELINE)
613 fputs("commit ", stdout);
Adam Simpkins7528f272008-05-25 00:07:21 -0700614
Michael J Gruber1df2d652011-03-07 13:31:39 +0100615 if (!opt->graph)
Michael J Gruberb1b47552011-03-10 15:45:03 +0100616 put_revision_mark(opt, commit);
brian m. carlsoned1c9972015-11-10 02:22:29 +0000617 fputs(find_unique_abbrev(commit->object.oid.hash, abbrev_commit),
Junio C Hamano74bd9022006-12-16 15:31:25 -0800618 stdout);
Adam Simpkins885cf802008-05-04 03:36:52 -0700619 if (opt->print_parents)
Junio C Hamanoc66b6c02006-05-06 14:42:08 -0700620 show_parents(commit, abbrev_commit);
Jay Soffian91b849b2011-10-04 10:02:03 -0400621 if (opt->children.name)
622 show_children(opt, commit, abbrev_commit);
Junio C Hamano73f0a152006-05-24 12:19:47 -0700623 if (parent)
Junio C Hamano3eefc182006-04-18 16:45:27 -0700624 printf(" (from %s)",
brian m. carlsoned1c9972015-11-10 02:22:29 +0000625 find_unique_abbrev(parent->object.oid.hash,
Junio C Hamano3eefc182006-04-18 16:45:27 -0700626 abbrev_commit));
Nguyễn Thái Ngọc Duy9d3f0022013-04-19 09:08:43 +1000627 fputs(diff_get_color_opt(&opt->diffopt, DIFF_RESET), stdout);
Linus Torvalds0f3a2902008-10-27 12:51:59 -0700628 show_decorations(opt, commit);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700629 if (opt->commit_format == CMIT_FMT_ONELINE) {
630 putchar(' ');
631 } else {
632 putchar('\n');
633 graph_show_oneline(opt->graph);
634 }
Nicolas Pitre903b45f2007-01-27 22:40:36 -0500635 if (opt->reflog_info) {
Adam Simpkins7fefda52008-05-04 03:36:54 -0700636 /*
637 * setup_revisions() ensures that opt->reflog_info
638 * and opt->graph cannot both be set,
639 * so we don't need to worry about printing the
640 * graph info here.
641 */
Junio C Hamano4d12a472007-01-20 00:51:41 -0800642 show_reflog_message(opt->reflog_info,
Junio C Hamano55ccf852012-05-07 14:11:32 -0700643 opt->commit_format == CMIT_FMT_ONELINE,
Jeff Kinga5481a62015-06-25 12:55:02 -0400644 &opt->date_mode,
Junio C Hamano55ccf852012-05-07 14:11:32 -0700645 opt->date_mode_explicit);
Adam Simpkins02865652008-04-29 01:32:59 -0700646 if (opt->commit_format == CMIT_FMT_ONELINE)
Nicolas Pitre903b45f2007-01-27 22:40:36 -0500647 return;
Nicolas Pitre903b45f2007-01-27 22:40:36 -0500648 }
Junio C Hamano3eefc182006-04-18 16:45:27 -0700649 }
Linus Torvalds91539832006-04-17 11:59:32 -0700650
Junio C Hamano824958e2012-01-04 13:51:28 -0800651 if (opt->show_signature) {
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700652 show_signature(opt, commit);
Junio C Hamano824958e2012-01-04 13:51:28 -0800653 show_mergetag(opt, commit);
654 }
Junio C Hamano0c37f1f2011-10-18 15:53:23 -0700655
Jeff King8597ea32014-06-10 17:44:13 -0400656 if (!get_cached_commit_buffer(commit, NULL))
Linus Torvalds3131b712008-02-09 14:02:07 -0800657 return;
658
Junio C Hamanoddf333f2012-10-17 18:51:47 -0700659 if (opt->show_notes) {
660 int raw;
661 struct strbuf notebuf = STRBUF_INIT;
662
663 raw = (opt->commit_format == CMIT_FMT_USERFORMAT);
brian m. carlsoned1c9972015-11-10 02:22:29 +0000664 format_display_notes(commit->object.oid.hash, &notebuf,
Junio C Hamanoddf333f2012-10-17 18:51:47 -0700665 get_log_output_encoding(), raw);
666 ctx.notes_message = notebuf.len
667 ? strbuf_detach(&notebuf, NULL)
668 : xcalloc(1, 1);
669 }
670
Linus Torvalds91539832006-04-17 11:59:32 -0700671 /*
672 * And then the pretty-printed message itself
673 */
Nguyễn Thái Ngọc Duy5289c562013-02-12 02:17:38 -0800674 if (ctx.need_8bit_cte >= 0 && opt->add_signoff)
675 ctx.need_8bit_cte =
676 has_non_ascii(fmt_name(getenv("GIT_COMMITTER_NAME"),
677 getenv("GIT_COMMITTER_EMAIL")));
Thomas Rastdd2e7942009-10-19 17:48:08 +0200678 ctx.date_mode = opt->date_mode;
Jeff Kingf026c752012-05-04 01:25:18 -0400679 ctx.date_mode_explicit = opt->date_mode_explicit;
Thomas Rastdd2e7942009-10-19 17:48:08 +0200680 ctx.abbrev = opt->diffopt.abbrev;
681 ctx.after_subject = extra_headers;
Jeff King9553d2b2011-05-26 18:28:17 -0400682 ctx.preserve_subject = opt->preserve_subject;
Thomas Rast8f8f5472009-10-19 17:48:10 +0200683 ctx.reflog_info = opt->reflog_info;
Jeff King6bf13942011-05-26 18:27:49 -0400684 ctx.fmt = opt->commit_format;
Antoine Pelisse0e2913b2013-01-05 22:26:41 +0100685 ctx.mailmap = opt->mailmap;
Junio C Hamano30825172012-12-17 17:56:49 -0500686 ctx.color = opt->diffopt.use_color;
Alexey Shumkinecaee802013-06-26 14:19:50 +0400687 ctx.output_encoding = get_log_output_encoding();
Jeff Kinga9080472013-07-03 03:08:22 -0400688 if (opt->from_ident.mail_begin && opt->from_ident.name_begin)
689 ctx.from_ident = &opt->from_ident;
Jeff King6bf13942011-05-26 18:27:49 -0400690 pretty_print_commit(&ctx, commit, &msgbuf);
Junio C Hamano212620f2012-10-17 20:48:25 -0700691
692 if (opt->add_signoff)
Nguyễn Thái Ngọc Duy5289c562013-02-12 02:17:38 -0800693 append_signoff(&msgbuf, 0, APPEND_SIGNOFF_DEDUP);
Junio C Hamano212620f2012-10-17 20:48:25 -0700694
Junio C Hamano5a664cf2012-10-17 19:02:46 -0700695 if ((ctx.fmt != CMIT_FMT_USERFORMAT) &&
Junio C Hamanobd1470b2012-10-17 21:27:22 -0700696 ctx.notes_message && *ctx.notes_message) {
697 if (ctx.fmt == CMIT_FMT_EMAIL) {
698 strbuf_addstr(&msgbuf, "---\n");
699 opt->shown_dashes = 1;
700 }
Junio C Hamano5a664cf2012-10-17 19:02:46 -0700701 strbuf_addstr(&msgbuf, ctx.notes_message);
Junio C Hamanobd1470b2012-10-17 21:27:22 -0700702 }
Junio C Hamanocf2251b2006-05-31 15:11:49 -0700703
Adam Simpkins7fefda52008-05-04 03:36:54 -0700704 if (opt->show_log_size) {
Pierre Habouzit674d1722007-09-10 12:35:06 +0200705 printf("log size %i\n", (int)msgbuf.len);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700706 graph_show_oneline(opt->graph);
707 }
Marco Costalba9fa34652007-07-20 20:15:13 +0200708
Adam Simpkins7fefda52008-05-04 03:36:54 -0700709 /*
710 * Set opt->missing_newline if msgbuf doesn't
711 * end in a newline (including if it is empty)
712 */
713 if (!msgbuf.len || msgbuf.buf[msgbuf.len - 1] != '\n')
714 opt->missing_newline = 1;
715 else
716 opt->missing_newline = 0;
717
718 if (opt->graph)
719 graph_show_commit_msg(opt->graph, &msgbuf);
720 else
Govind Salinas42c8c742008-03-21 10:05:06 -0500721 fwrite(msgbuf.buf, sizeof(char), msgbuf.len, stdout);
Jeff Kingb9c7d6e2014-07-29 13:56:48 -0400722 if (opt->use_terminator && !commit_format_is_empty(opt->commit_format)) {
Adam Simpkins7fefda52008-05-04 03:36:54 -0700723 if (!opt->missing_newline)
724 graph_show_padding(opt->graph);
Jan Krüger3e065302012-04-30 22:28:25 +0200725 putchar(opt->diffopt.line_termination);
Adam Simpkins7fefda52008-05-04 03:36:54 -0700726 }
727
Pierre Habouzit674d1722007-09-10 12:35:06 +0200728 strbuf_release(&msgbuf);
Junio C Hamanoddf333f2012-10-17 18:51:47 -0700729 free(ctx.notes_message);
Linus Torvalds91539832006-04-17 11:59:32 -0700730}
731
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700732int log_tree_diff_flush(struct rev_info *opt)
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700733{
Junio C Hamanobd1470b2012-10-17 21:27:22 -0700734 opt->shown_dashes = 0;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700735 diffcore_std(&opt->diffopt);
Linus Torvalds91539832006-04-17 11:59:32 -0700736
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700737 if (diff_queue_is_empty()) {
738 int saved_fmt = opt->diffopt.output_format;
739 opt->diffopt.output_format = DIFF_FORMAT_NO_OUTPUT;
740 diff_flush(&opt->diffopt);
741 opt->diffopt.output_format = saved_fmt;
742 return 0;
743 }
Linus Torvalds91539832006-04-17 11:59:32 -0700744
Junio C Hamano3969cf72006-06-27 15:08:19 -0700745 if (opt->loginfo && !opt->no_commit_id) {
Adam Simpkins02865652008-04-29 01:32:59 -0700746 show_log(opt);
Linus Torvalds304b5af2007-10-09 09:35:22 -0700747 if ((opt->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT) &&
748 opt->verbose_header &&
Jeff Kingb9c7d6e2014-07-29 13:56:48 -0400749 opt->commit_format != CMIT_FMT_ONELINE &&
750 !commit_format_is_empty(opt->commit_format)) {
Junio C Hamano1d34c502012-11-13 10:09:07 -0800751 /*
752 * When showing a verbose header (i.e. log message),
753 * and not in --pretty=oneline format, we would want
754 * an extra newline between the end of log and the
755 * diff/diffstat output for readability.
756 */
Junio C Hamano3969cf72006-06-27 15:08:19 -0700757 int pch = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_PATCH;
Bo Yang81bd1b22010-05-26 15:08:03 +0800758 if (opt->diffopt.output_prefix) {
759 struct strbuf *msg = NULL;
760 msg = opt->diffopt.output_prefix(&opt->diffopt,
761 opt->diffopt.output_prefix_data);
762 fwrite(msg->buf, msg->len, 1, stdout);
763 }
Junio C Hamano1d34c502012-11-13 10:09:07 -0800764
765 /*
766 * We may have shown three-dashes line early
767 * between notes and the log message, in which
768 * case we only want a blank line after the
769 * notes without (an extra) three-dashes line.
770 * Otherwise, we show the three-dashes line if
771 * we are showing the patch with diffstat, but
772 * in that case, there is no extra blank line
773 * after the three-dashes line.
774 */
775 if (!opt->shown_dashes &&
776 (pch & opt->diffopt.output_format) == pch)
777 printf("---");
778 putchar('\n');
Junio C Hamano3969cf72006-06-27 15:08:19 -0700779 }
780 }
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700781 diff_flush(&opt->diffopt);
782 return 1;
783}
784
Linus Torvaldscd2bdc52006-04-14 16:52:13 -0700785static int do_diff_combined(struct rev_info *opt, struct commit *commit)
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700786{
René Scharfe82889292011-12-17 11:20:07 +0100787 diff_tree_combined_merge(commit, opt->dense_combined_merges, opt);
Linus Torvalds91539832006-04-17 11:59:32 -0700788 return !opt->loginfo;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700789}
790
Linus Torvalds91539832006-04-17 11:59:32 -0700791/*
792 * Show the diff of a commit.
793 *
794 * Return true if we printed any log info messages
795 */
796static int log_tree_diff(struct rev_info *opt, struct commit *commit, struct log_info *log)
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700797{
Linus Torvalds91539832006-04-17 11:59:32 -0700798 int showed_log;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700799 struct commit_list *parents;
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000800 struct object_id *oid;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700801
Peter Valdemar Mørch84102a32008-08-11 08:46:25 +0200802 if (!opt->diff && !DIFF_OPT_TST(&opt->diffopt, EXIT_WITH_STATUS))
Linus Torvalds91539832006-04-17 11:59:32 -0700803 return 0;
804
Jeff King7059dcc2013-10-24 04:52:36 -0400805 parse_commit_or_die(commit);
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000806 oid = &commit->tree->object.oid;
Thomas Rastd1b9b762013-03-28 09:19:34 +0100807
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700808 /* Root commit? */
Thomas Rast53d00b32013-07-31 22:13:20 +0200809 parents = get_saved_parents(opt, commit);
Linus Torvalds91539832006-04-17 11:59:32 -0700810 if (!parents) {
Rene Scharfe2b603562006-10-26 18:52:39 +0200811 if (opt->show_root_diff) {
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000812 diff_root_tree_sha1(oid->hash, "", &opt->diffopt);
Rene Scharfe2b603562006-10-26 18:52:39 +0200813 log_tree_diff_flush(opt);
814 }
Linus Torvalds91539832006-04-17 11:59:32 -0700815 return !opt->loginfo;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700816 }
817
818 /* More than one parent? */
Linus Torvalds91539832006-04-17 11:59:32 -0700819 if (parents && parents->next) {
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700820 if (opt->ignore_merges)
821 return 0;
822 else if (opt->combine_merges)
823 return do_diff_combined(opt, commit);
Petr Baudis88d9d452010-02-10 02:11:49 +0100824 else if (opt->first_parent_only) {
825 /*
826 * Generate merge log entry only for the first
827 * parent, showing summary diff of the others
828 * we merged _in_.
829 */
Jeff King7059dcc2013-10-24 04:52:36 -0400830 parse_commit_or_die(parents->item);
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000831 diff_tree_sha1(parents->item->tree->object.oid.hash,
832 oid->hash, "", &opt->diffopt);
Petr Baudis88d9d452010-02-10 02:11:49 +0100833 log_tree_diff_flush(opt);
834 return !opt->loginfo;
835 }
Linus Torvalds91539832006-04-17 11:59:32 -0700836
837 /* If we show individual diffs, show the parent info */
838 log->parent = parents->item;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700839 }
840
Linus Torvalds91539832006-04-17 11:59:32 -0700841 showed_log = 0;
842 for (;;) {
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700843 struct commit *parent = parents->item;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700844
Jeff King7059dcc2013-10-24 04:52:36 -0400845 parse_commit_or_die(parent);
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000846 diff_tree_sha1(parent->tree->object.oid.hash,
847 oid->hash, "", &opt->diffopt);
Linus Torvalds91539832006-04-17 11:59:32 -0700848 log_tree_diff_flush(opt);
849
850 showed_log |= !opt->loginfo;
851
852 /* Set up the log info for the next parent, if any.. */
853 parents = parents->next;
854 if (!parents)
855 break;
856 log->parent = parents->item;
857 opt->loginfo = log;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700858 }
Linus Torvalds91539832006-04-17 11:59:32 -0700859 return showed_log;
860}
861
862int log_tree_commit(struct rev_info *opt, struct commit *commit)
863{
864 struct log_info log;
Junio C Hamano3eefc182006-04-18 16:45:27 -0700865 int shown;
Linus Torvalds91539832006-04-17 11:59:32 -0700866
867 log.commit = commit;
868 log.parent = NULL;
869 opt->loginfo = &log;
870
Thomas Rast12da1d12013-03-28 17:47:32 +0100871 if (opt->line_level_traverse)
872 return line_log_print(opt, commit);
873
Nguyễn Thái Ngọc Duy1b32dec2014-03-25 20:23:27 +0700874 if (opt->track_linear && !opt->linear && !opt->reverse_output_stage)
875 printf("\n%s\n", opt->break_bar);
Junio C Hamano3eefc182006-04-18 16:45:27 -0700876 shown = log_tree_diff(opt, commit, &log);
877 if (!shown && opt->loginfo && opt->always_show_header) {
Linus Torvalds91539832006-04-17 11:59:32 -0700878 log.parent = NULL;
Adam Simpkins02865652008-04-29 01:32:59 -0700879 show_log(opt);
Junio C Hamano3eefc182006-04-18 16:45:27 -0700880 shown = 1;
Linus Torvalds91539832006-04-17 11:59:32 -0700881 }
Nguyễn Thái Ngọc Duy1b32dec2014-03-25 20:23:27 +0700882 if (opt->track_linear && !opt->linear && opt->reverse_output_stage)
883 printf("\n%s\n", opt->break_bar);
Linus Torvalds91539832006-04-17 11:59:32 -0700884 opt->loginfo = NULL;
Theodore Ts'o06f59e92007-06-29 13:40:46 -0400885 maybe_flush_or_die(stdout, "stdout");
Junio C Hamano3eefc182006-04-18 16:45:27 -0700886 return shown;
Junio C Hamano5f1c3f02006-04-09 01:11:11 -0700887}