blob: 5fc8b730d82d7b6a3155c77ba5660be23058f769 [file] [log] [blame]
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07002#include "config.h"
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00003#include "commit.h"
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00004#include "utf8.h"
5#include "diff.h"
6#include "revision.h"
Johannes Schindelinc455c872008-07-21 19:03:49 +01007#include "string-list.h"
Johannes Schindeline0cbc392008-07-12 00:28:18 +01008#include "mailmap.h"
René Scharfe3b3d4432008-09-04 23:40:03 +02009#include "log-tree.h"
Johannes Schindelina97a7462009-10-09 12:21:57 +020010#include "notes.h"
Jeff Kingc0029222009-01-17 10:38:46 -050011#include "color.h"
Thomas Rast8f8f5472009-10-19 17:48:10 +020012#include "reflog-walk.h"
Junio C Hamanof6667c52011-10-21 21:06:02 -070013#include "gpg-interface.h"
Jacob Kellerd9f31fb2016-11-18 16:58:14 -080014#include "trailer.h"
Johannes Schindelin93fc05e2007-11-04 19:15:06 +000015
Johannes Schindelin93fc05e2007-11-04 19:15:06 +000016static char *user_format;
Will Palmer40957892010-05-02 12:00:42 +010017static struct cmt_fmt_map {
18 const char *name;
19 enum cmit_fmt format;
20 int is_tformat;
Junio C Hamano0893eec2016-03-29 15:49:24 -070021 int expand_tabs_in_log;
Will Palmer2d7671e2010-05-02 12:00:43 +010022 int is_alias;
Denton Liu618a8552019-11-19 16:51:23 -080023 enum date_mode_type default_date_mode_type;
Will Palmer2d7671e2010-05-02 12:00:43 +010024 const char *user_format;
Will Palmer40957892010-05-02 12:00:42 +010025} *commit_formats;
Will Palmer80281842010-05-02 12:00:44 +010026static size_t builtin_formats_len;
Will Palmer40957892010-05-02 12:00:42 +010027static size_t commit_formats_len;
Will Palmer80281842010-05-02 12:00:44 +010028static size_t commit_formats_alloc;
Will Palmer40957892010-05-02 12:00:42 +010029static struct cmt_fmt_map *find_commit_format(const char *sought);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +000030
Jeff Kingb9c7d6e2014-07-29 13:56:48 -040031int commit_format_is_empty(enum cmit_fmt fmt)
32{
33 return fmt == CMIT_FMT_USERFORMAT && !*user_format;
34}
35
Nanako Shiraishi36407542009-02-24 18:59:15 +090036static void save_user_format(struct rev_info *rev, const char *cp, int is_tformat)
37{
38 free(user_format);
39 user_format = xstrdup(cp);
40 if (is_tformat)
41 rev->use_terminator = 1;
42 rev->commit_format = CMIT_FMT_USERFORMAT;
43}
44
Will Palmer80281842010-05-02 12:00:44 +010045static int git_pretty_formats_config(const char *var, const char *value, void *cb)
46{
47 struct cmt_fmt_map *commit_format = NULL;
48 const char *name;
49 const char *fmt;
50 int i;
51
Jeff King95b567c2014-06-18 15:48:29 -040052 if (!skip_prefix(var, "pretty.", &name))
Will Palmer80281842010-05-02 12:00:44 +010053 return 0;
54
Will Palmer80281842010-05-02 12:00:44 +010055 for (i = 0; i < builtin_formats_len; i++) {
56 if (!strcmp(commit_formats[i].name, name))
57 return 0;
58 }
59
60 for (i = builtin_formats_len; i < commit_formats_len; i++) {
61 if (!strcmp(commit_formats[i].name, name)) {
62 commit_format = &commit_formats[i];
63 break;
64 }
65 }
66
67 if (!commit_format) {
68 ALLOC_GROW(commit_formats, commit_formats_len+1,
69 commit_formats_alloc);
70 commit_format = &commit_formats[commit_formats_len];
Jonathan Nieder95a26182010-05-08 16:07:39 -050071 memset(commit_format, 0, sizeof(*commit_format));
Will Palmer80281842010-05-02 12:00:44 +010072 commit_formats_len++;
73 }
74
75 commit_format->name = xstrdup(name);
76 commit_format->format = CMIT_FMT_USERFORMAT;
Tanay Abhraa26bc612014-08-04 07:41:15 -070077 if (git_config_string(&fmt, var, value))
78 return -1;
79
René Scharfee3f1da92014-10-04 20:54:50 +020080 if (skip_prefix(fmt, "format:", &fmt))
81 commit_format->is_tformat = 0;
82 else if (skip_prefix(fmt, "tformat:", &fmt) || strchr(fmt, '%'))
Will Palmer80281842010-05-02 12:00:44 +010083 commit_format->is_tformat = 1;
84 else
85 commit_format->is_alias = 1;
86 commit_format->user_format = fmt;
87
88 return 0;
89}
90
Will Palmer40957892010-05-02 12:00:42 +010091static void setup_commit_formats(void)
92{
93 struct cmt_fmt_map builtin_formats[] = {
Junio C Hamano0893eec2016-03-29 15:49:24 -070094 { "raw", CMIT_FMT_RAW, 0, 0 },
Junio C Hamanofe37a9c2016-03-29 16:05:39 -070095 { "medium", CMIT_FMT_MEDIUM, 0, 8 },
Junio C Hamano0893eec2016-03-29 15:49:24 -070096 { "short", CMIT_FMT_SHORT, 0, 0 },
97 { "email", CMIT_FMT_EMAIL, 0, 0 },
Eric Wong9f23e042016-06-05 04:46:39 +000098 { "mboxrd", CMIT_FMT_MBOXRD, 0, 0 },
Junio C Hamanofe37a9c2016-03-29 16:05:39 -070099 { "fuller", CMIT_FMT_FULLER, 0, 8 },
100 { "full", CMIT_FMT_FULL, 0, 8 },
Denton Liu1f0fc1d2019-11-19 16:51:25 -0800101 { "oneline", CMIT_FMT_ONELINE, 1, 0 },
102 { "reference", CMIT_FMT_USERFORMAT, 1, 0,
103 0, DATE_SHORT, "%C(auto)%h (%s, %ad)" },
Nguyễn Thái Ngọc Duy5a59a232019-02-16 18:24:41 +0700104 /*
105 * Please update $__git_log_pretty_formats in
106 * git-completion.bash when you add new formats.
107 */
Will Palmer40957892010-05-02 12:00:42 +0100108 };
109 commit_formats_len = ARRAY_SIZE(builtin_formats);
Will Palmer80281842010-05-02 12:00:44 +0100110 builtin_formats_len = commit_formats_len;
111 ALLOC_GROW(commit_formats, commit_formats_len, commit_formats_alloc);
René Scharfe921d49b2019-06-15 20:36:35 +0200112 COPY_ARRAY(commit_formats, builtin_formats,
113 ARRAY_SIZE(builtin_formats));
Will Palmer80281842010-05-02 12:00:44 +0100114
115 git_config(git_pretty_formats_config, NULL);
Will Palmer40957892010-05-02 12:00:42 +0100116}
117
Will Palmer2d7671e2010-05-02 12:00:43 +0100118static struct cmt_fmt_map *find_commit_format_recursive(const char *sought,
119 const char *original,
120 int num_redirections)
Will Palmer40957892010-05-02 12:00:42 +0100121{
122 struct cmt_fmt_map *found = NULL;
123 size_t found_match_len = 0;
124 int i;
125
Will Palmer2d7671e2010-05-02 12:00:43 +0100126 if (num_redirections >= commit_formats_len)
127 die("invalid --pretty format: "
128 "'%s' references an alias which points to itself",
129 original);
Will Palmer40957892010-05-02 12:00:42 +0100130
131 for (i = 0; i < commit_formats_len; i++) {
132 size_t match_len;
133
Christian Couder59556542013-11-30 21:55:40 +0100134 if (!starts_with(commit_formats[i].name, sought))
Will Palmer40957892010-05-02 12:00:42 +0100135 continue;
136
137 match_len = strlen(commit_formats[i].name);
138 if (found == NULL || found_match_len > match_len) {
139 found = &commit_formats[i];
140 found_match_len = match_len;
141 }
142 }
Will Palmer2d7671e2010-05-02 12:00:43 +0100143
144 if (found && found->is_alias) {
145 found = find_commit_format_recursive(found->user_format,
146 original,
147 num_redirections+1);
148 }
149
Will Palmer40957892010-05-02 12:00:42 +0100150 return found;
151}
152
Will Palmer2d7671e2010-05-02 12:00:43 +0100153static struct cmt_fmt_map *find_commit_format(const char *sought)
154{
155 if (!commit_formats)
156 setup_commit_formats();
157
158 return find_commit_format_recursive(sought, sought, 0);
159}
160
Junio C Hamano4da45be2008-04-07 17:11:34 -0700161void get_commit_format(const char *arg, struct rev_info *rev)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000162{
Will Palmer40957892010-05-02 12:00:42 +0100163 struct cmt_fmt_map *commit_format;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000164
Junio C Hamano4da45be2008-04-07 17:11:34 -0700165 rev->use_terminator = 0;
Jeff Kingc75e7ad2014-07-29 13:54:46 -0400166 if (!arg) {
Junio C Hamano4da45be2008-04-07 17:11:34 -0700167 rev->commit_format = CMIT_FMT_DEFAULT;
168 return;
169 }
René Scharfee3f1da92014-10-04 20:54:50 +0200170 if (skip_prefix(arg, "format:", &arg)) {
171 save_user_format(rev, arg, 0);
Junio C Hamano4da45be2008-04-07 17:11:34 -0700172 return;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000173 }
Will Palmer40957892010-05-02 12:00:42 +0100174
René Scharfee3f1da92014-10-04 20:54:50 +0200175 if (!*arg || skip_prefix(arg, "tformat:", &arg) || strchr(arg, '%')) {
Nanako Shiraishi36407542009-02-24 18:59:15 +0900176 save_user_format(rev, arg, 1);
177 return;
178 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000179
Will Palmer40957892010-05-02 12:00:42 +0100180 commit_format = find_commit_format(arg);
181 if (!commit_format)
182 die("invalid --pretty format: %s", arg);
183
184 rev->commit_format = commit_format->format;
185 rev->use_terminator = commit_format->is_tformat;
Junio C Hamano0893eec2016-03-29 15:49:24 -0700186 rev->expand_tabs_in_log_default = commit_format->expand_tabs_in_log;
Denton Liu618a8552019-11-19 16:51:23 -0800187 if (!rev->date_mode_explicit && commit_format->default_date_mode_type)
188 rev->date_mode.type = commit_format->default_date_mode_type;
Will Palmer80281842010-05-02 12:00:44 +0100189 if (commit_format->format == CMIT_FMT_USERFORMAT) {
190 save_user_format(rev, commit_format->user_format,
191 commit_format->is_tformat);
192 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000193}
194
195/*
196 * Generic support for pretty-printing the header
197 */
198static int get_one_line(const char *msg)
199{
200 int ret = 0;
201
202 for (;;) {
203 char c = *msg++;
204 if (!c)
205 break;
206 ret++;
207 if (c == '\n')
208 break;
209 }
210 return ret;
211}
212
213/* High bit set, or ISO-2022-INT */
Junio C Hamanocc571142010-01-11 22:23:35 -0800214static int non_ascii(int ch)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000215{
René Scharfec2e93642009-03-07 14:06:49 +0100216 return !isascii(ch) || ch == '\033';
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000217}
218
Johannes Schindelin28e9cf62009-08-10 18:22:18 +0200219int has_non_ascii(const char *s)
220{
221 int ch;
222 if (!s)
223 return 0;
224 while ((ch = *s++) != '\0') {
225 if (non_ascii(ch))
226 return 1;
227 }
228 return 0;
229}
230
Jeff King4d03c182011-04-08 18:40:36 -0400231static int is_rfc822_special(char ch)
232{
233 switch (ch) {
234 case '(':
235 case ')':
236 case '<':
237 case '>':
238 case '[':
239 case ']':
240 case ':':
241 case ';':
242 case '@':
243 case ',':
244 case '.':
245 case '"':
246 case '\\':
247 return 1;
248 default:
249 return 0;
250 }
251}
252
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200253static int needs_rfc822_quoting(const char *s, int len)
Jeff King4d03c182011-04-08 18:40:36 -0400254{
255 int i;
256 for (i = 0; i < len; i++)
257 if (is_rfc822_special(s[i]))
258 return 1;
259 return 0;
260}
261
Jan H. Schönherrf9b72042012-10-18 16:43:31 +0200262static int last_line_length(struct strbuf *sb)
263{
264 int i;
265
266 /* How many bytes are already used on the last line? */
267 for (i = sb->len - 1; i >= 0; i--)
268 if (sb->buf[i] == '\n')
269 break;
270 return sb->len - (i + 1);
271}
272
Jeff King4d03c182011-04-08 18:40:36 -0400273static void add_rfc822_quoted(struct strbuf *out, const char *s, int len)
274{
275 int i;
276
277 /* just a guess, we may have to also backslash-quote */
278 strbuf_grow(out, len + 2);
279
280 strbuf_addch(out, '"');
281 for (i = 0; i < len; i++) {
282 switch (s[i]) {
283 case '"':
284 case '\\':
285 strbuf_addch(out, '\\');
286 /* fall through */
287 default:
288 strbuf_addch(out, s[i]);
289 }
290 }
291 strbuf_addch(out, '"');
292}
293
Jan H. Schönherr0fcec2c2012-10-18 16:43:32 +0200294enum rfc2047_type {
295 RFC2047_SUBJECT,
Ronnie Sahlberg78273522014-07-02 11:24:05 -0700296 RFC2047_ADDRESS
Jan H. Schönherr0fcec2c2012-10-18 16:43:32 +0200297};
298
299static int is_rfc2047_special(char ch, enum rfc2047_type type)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000300{
Jan H. Schönherr0fcec2c2012-10-18 16:43:32 +0200301 /*
302 * rfc2047, section 4.2:
303 *
304 * 8-bit values which correspond to printable ASCII characters other
305 * than "=", "?", and "_" (underscore), MAY be represented as those
306 * characters. (But see section 5 for restrictions.) In
307 * particular, SPACE and TAB MUST NOT be represented as themselves
308 * within encoded words.
309 */
310
311 /*
312 * rule out non-ASCII characters and non-printable characters (the
313 * non-ASCII check should be redundant as isprint() is not localized
314 * and only knows about ASCII, but be defensive about that)
315 */
316 if (non_ascii(ch) || !isprint(ch))
Jan H. Schönherr94f6cdf2012-10-18 16:43:30 +0200317 return 1;
318
Jan H. Schönherr0fcec2c2012-10-18 16:43:32 +0200319 /*
320 * rule out special printable characters (' ' should be the only
321 * whitespace character considered printable, but be defensive and use
322 * isspace())
323 */
324 if (isspace(ch) || ch == '=' || ch == '?' || ch == '_')
325 return 1;
326
327 /*
328 * rfc2047, section 5.3:
329 *
330 * As a replacement for a 'word' entity within a 'phrase', for example,
331 * one that precedes an address in a From, To, or Cc header. The ABNF
332 * definition for 'phrase' from RFC 822 thus becomes:
333 *
334 * phrase = 1*( encoded-word / word )
335 *
336 * In this case the set of characters that may be used in a "Q"-encoded
337 * 'encoded-word' is restricted to: <upper and lower case ASCII
338 * letters, decimal digits, "!", "*", "+", "-", "/", "=", and "_"
339 * (underscore, ASCII 95.)>. An 'encoded-word' that appears within a
340 * 'phrase' MUST be separated from any adjacent 'word', 'text' or
341 * 'special' by 'linear-white-space'.
342 */
343
344 if (type != RFC2047_ADDRESS)
345 return 0;
346
347 /* '=' and '_' are special cases and have been checked above */
348 return !(isalnum(ch) || ch == '!' || ch == '*' || ch == '+' || ch == '-' || ch == '/');
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000349}
350
Jeff Kingda55ff32019-03-20 04:16:36 -0400351static int needs_rfc2047_encoding(const char *line, int len)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000352{
Jeff Kinga1f6baa2011-02-23 04:58:41 -0500353 int i;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000354
355 for (i = 0; i < len; i++) {
356 int ch = line[i];
Jeff Kingc22e7de2011-02-23 04:59:18 -0500357 if (non_ascii(ch) || ch == '\n')
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200358 return 1;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000359 if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200360 return 1;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000361 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000362
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200363 return 0;
364}
365
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400366static void add_rfc2047(struct strbuf *sb, const char *line, size_t len,
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200367 const char *encoding, enum rfc2047_type type)
368{
369 static const int max_encoded_length = 76; /* per rfc2047 */
370 int i;
371 int line_len = last_line_length(sb);
372
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000373 strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
374 strbuf_addf(sb, "=?%s?q?", encoding);
Jeff Kinga1f6baa2011-02-23 04:58:41 -0500375 line_len += strlen(encoding) + 5; /* 5 for =??q? */
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400376
377 while (len) {
378 /*
379 * RFC 2047, section 5 (3):
380 *
381 * Each 'encoded-word' MUST represent an integral number of
382 * characters. A multi-octet character may not be split across
383 * adjacent 'encoded- word's.
384 */
385 const unsigned char *p = (const unsigned char *)line;
386 int chrlen = mbs_chrlen(&line, &len, encoding);
387 int is_special = (chrlen > 1) || is_rfc2047_special(*p, type);
388
389 /* "=%02X" * chrlen, or the byte itself */
390 const char *encoded_fmt = is_special ? "=%02X" : "%c";
391 int encoded_len = is_special ? 3 * chrlen : 1;
Jeff Kinga1f6baa2011-02-23 04:58:41 -0500392
Jan H. Schönherr94f6cdf2012-10-18 16:43:30 +0200393 /*
394 * According to RFC 2047, we could encode the special character
395 * ' ' (space) with '_' (underscore) for readability. But many
396 * programs do not understand this and just leave the
397 * underscore in place. Thus, we do nothing special here, which
398 * causes ' ' to be encoded as '=20', avoiding this problem.
399 */
400
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400401 if (line_len + encoded_len + 2 > max_encoded_length) {
402 /* It won't fit with trailing "?=" --- break the line */
Jeff Kinga1f6baa2011-02-23 04:58:41 -0500403 strbuf_addf(sb, "?=\n =?%s?q?", encoding);
404 line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
405 }
406
Kirill Smelkov6cd3c052013-03-07 14:55:07 +0400407 for (i = 0; i < chrlen; i++)
408 strbuf_addf(sb, encoded_fmt, p[i]);
409 line_len += encoded_len;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000410 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000411 strbuf_addstr(sb, "?=");
412}
413
Jeff Kingd1053242014-05-01 21:07:22 -0400414const char *show_ident_date(const struct ident_split *ident,
Jeff Kinga5481a62015-06-25 12:55:02 -0400415 const struct date_mode *mode)
René Scharfe9dbe7c32013-04-17 20:33:35 +0200416{
Johannes Schindelindddbad72017-04-26 21:29:31 +0200417 timestamp_t date = 0;
Jeff King3f419d42014-03-07 12:15:01 -0500418 long tz = 0;
René Scharfe9dbe7c32013-04-17 20:33:35 +0200419
420 if (ident->date_begin && ident->date_end)
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200421 date = parse_timestamp(ident->date_begin, NULL, 10);
Jeff King1dca1552014-02-24 02:46:37 -0500422 if (date_overflows(date))
423 date = 0;
424 else {
425 if (ident->tz_begin && ident->tz_end)
426 tz = strtol(ident->tz_begin, NULL, 10);
Jeff King3f419d42014-03-07 12:15:01 -0500427 if (tz >= INT_MAX || tz <= INT_MIN)
Jeff King1dca1552014-02-24 02:46:37 -0500428 tz = 0;
429 }
René Scharfe9dbe7c32013-04-17 20:33:35 +0200430 return show_date(date, tz, mode);
431}
432
Jeff King10f2fbf2013-07-03 03:07:48 -0400433void pp_user_info(struct pretty_print_context *pp,
Jeff King6bf13942011-05-26 18:27:49 -0400434 const char *what, struct strbuf *sb,
435 const char *line, const char *encoding)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000436{
Antoine Pelisse3c020bd2013-01-05 22:26:38 +0100437 struct ident_split ident;
René Scharfe9dbe7c32013-04-17 20:33:35 +0200438 char *line_end;
Antoine Pelissedffd3252013-01-05 22:26:42 +0100439 const char *mailbuf, *namebuf;
440 size_t namelen, maillen;
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200441 int max_length = 78; /* per rfc2822 */
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000442
Jeff King6bf13942011-05-26 18:27:49 -0400443 if (pp->fmt == CMIT_FMT_ONELINE)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000444 return;
Antoine Pelisse3c020bd2013-01-05 22:26:38 +0100445
René Scharfe30e77bc2013-04-25 21:40:25 +0200446 line_end = strchrnul(line, '\n');
447 if (split_ident_line(&ident, line, line_end - line))
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000448 return;
Antoine Pelisse3c020bd2013-01-05 22:26:38 +0100449
Antoine Pelissedffd3252013-01-05 22:26:42 +0100450 mailbuf = ident.mail_begin;
451 maillen = ident.mail_end - ident.mail_begin;
452 namebuf = ident.name_begin;
453 namelen = ident.name_end - ident.name_begin;
454
455 if (pp->mailmap)
456 map_user(pp->mailmap, &mailbuf, &maillen, &namebuf, &namelen);
457
Eric Wong9f23e042016-06-05 04:46:39 +0000458 if (cmit_fmt_is_mail(pp->fmt)) {
Jeff King662cc302013-09-20 06:16:28 -0400459 if (pp->from_ident && ident_cmp(pp->from_ident, &ident)) {
Jeff Kinga9080472013-07-03 03:08:22 -0400460 struct strbuf buf = STRBUF_INIT;
461
462 strbuf_addstr(&buf, "From: ");
463 strbuf_add(&buf, namebuf, namelen);
464 strbuf_addstr(&buf, " <");
465 strbuf_add(&buf, mailbuf, maillen);
466 strbuf_addstr(&buf, ">\n");
467 string_list_append(&pp->in_body_headers,
468 strbuf_detach(&buf, NULL));
469
470 mailbuf = pp->from_ident->mail_begin;
471 maillen = pp->from_ident->mail_end - mailbuf;
472 namebuf = pp->from_ident->name_begin;
473 namelen = pp->from_ident->name_end - namebuf;
474 }
475
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000476 strbuf_addstr(sb, "From: ");
Jeff Kingda55ff32019-03-20 04:16:36 -0400477 if (needs_rfc2047_encoding(namebuf, namelen)) {
René Scharfea0511b32013-04-25 21:43:56 +0200478 add_rfc2047(sb, namebuf, namelen,
Antoine Pelissedffd3252013-01-05 22:26:42 +0100479 encoding, RFC2047_ADDRESS);
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200480 max_length = 76; /* per rfc2047 */
René Scharfea0511b32013-04-25 21:43:56 +0200481 } else if (needs_rfc822_quoting(namebuf, namelen)) {
Jeff King4d03c182011-04-08 18:40:36 -0400482 struct strbuf quoted = STRBUF_INIT;
René Scharfea0511b32013-04-25 21:43:56 +0200483 add_rfc822_quoted(&quoted, namebuf, namelen);
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200484 strbuf_add_wrapped_bytes(sb, quoted.buf, quoted.len,
485 -6, 1, max_length);
Jeff King4d03c182011-04-08 18:40:36 -0400486 strbuf_release(&quoted);
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +0200487 } else {
René Scharfea0511b32013-04-25 21:43:56 +0200488 strbuf_add_wrapped_bytes(sb, namebuf, namelen,
Antoine Pelissedffd3252013-01-05 22:26:42 +0100489 -6, 1, max_length);
Jeff King4d03c182011-04-08 18:40:36 -0400490 }
Antoine Pelissedffd3252013-01-05 22:26:42 +0100491
René Scharfe97a17e72013-04-25 21:41:57 +0200492 if (max_length <
493 last_line_length(sb) + strlen(" <") + maillen + strlen(">"))
Jeff King990f6e32011-04-14 18:18:09 -0400494 strbuf_addch(sb, '\n');
René Scharfea0511b32013-04-25 21:43:56 +0200495 strbuf_addf(sb, " <%.*s>\n", (int)maillen, mailbuf);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000496 } else {
René Scharfea0511b32013-04-25 21:43:56 +0200497 strbuf_addf(sb, "%s: %.*s%.*s <%.*s>\n", what,
498 (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0, " ",
499 (int)namelen, namebuf, (int)maillen, mailbuf);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000500 }
Antoine Pelissedffd3252013-01-05 22:26:42 +0100501
Jeff King6bf13942011-05-26 18:27:49 -0400502 switch (pp->fmt) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000503 case CMIT_FMT_MEDIUM:
René Scharfe9dbe7c32013-04-17 20:33:35 +0200504 strbuf_addf(sb, "Date: %s\n",
Jeff Kinga5481a62015-06-25 12:55:02 -0400505 show_ident_date(&ident, &pp->date_mode));
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000506 break;
507 case CMIT_FMT_EMAIL:
Eric Wong9f23e042016-06-05 04:46:39 +0000508 case CMIT_FMT_MBOXRD:
René Scharfe9dbe7c32013-04-17 20:33:35 +0200509 strbuf_addf(sb, "Date: %s\n",
Jeff Kinga5481a62015-06-25 12:55:02 -0400510 show_ident_date(&ident, DATE_MODE(RFC2822)));
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000511 break;
512 case CMIT_FMT_FULLER:
René Scharfe9dbe7c32013-04-17 20:33:35 +0200513 strbuf_addf(sb, "%sDate: %s\n", what,
Jeff Kinga5481a62015-06-25 12:55:02 -0400514 show_ident_date(&ident, &pp->date_mode));
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000515 break;
516 default:
517 /* notin' */
518 break;
519 }
520}
521
Johannes Schindelin77356122016-06-22 22:20:16 +0200522static int is_blank_line(const char *line, int *len_p)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000523{
524 int len = *len_p;
Felipe Contreras35b2fa52013-10-31 03:25:42 -0600525 while (len && isspace(line[len - 1]))
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000526 len--;
527 *len_p = len;
528 return !len;
529}
530
Johannes Schindelin77356122016-06-22 22:20:16 +0200531const char *skip_blank_lines(const char *msg)
René Scharfea0109662008-12-27 01:32:49 +0100532{
533 for (;;) {
534 int linelen = get_one_line(msg);
535 int ll = linelen;
536 if (!linelen)
537 break;
Johannes Schindelin77356122016-06-22 22:20:16 +0200538 if (!is_blank_line(msg, &ll))
René Scharfea0109662008-12-27 01:32:49 +0100539 break;
540 msg += linelen;
541 }
542 return msg;
543}
544
Jeff King6bf13942011-05-26 18:27:49 -0400545static void add_merge_info(const struct pretty_print_context *pp,
546 struct strbuf *sb, const struct commit *commit)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000547{
548 struct commit_list *parent = commit->parents;
549
Eric Wong9f23e042016-06-05 04:46:39 +0000550 if ((pp->fmt == CMIT_FMT_ONELINE) || (cmit_fmt_is_mail(pp->fmt)) ||
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000551 !parent || !parent->next)
552 return;
553
554 strbuf_addstr(sb, "Merge:");
555
556 while (parent) {
René Scharfea94bb682016-10-08 17:38:47 +0200557 struct object_id *oidp = &parent->item->object.oid;
558 strbuf_addch(sb, ' ');
Jeff King6bf13942011-05-26 18:27:49 -0400559 if (pp->abbrev)
brian m. carlson30e677e2018-03-12 02:27:28 +0000560 strbuf_add_unique_abbrev(sb, oidp, pp->abbrev);
René Scharfea94bb682016-10-08 17:38:47 +0200561 else
562 strbuf_addstr(sb, oid_to_hex(oidp));
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000563 parent = parent->next;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000564 }
565 strbuf_addch(sb, '\n');
566}
567
Jeff Kingfe6eb7f2014-08-27 03:56:01 -0400568static char *get_header(const char *msg, const char *key)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000569{
Jeff Kingfe6eb7f2014-08-27 03:56:01 -0400570 size_t len;
571 const char *v = find_commit_header(msg, key, &len);
572 return v ? xmemdupz(v, len) : NULL;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000573}
574
575static char *replace_encoding_header(char *buf, const char *encoding)
576{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500577 struct strbuf tmp = STRBUF_INIT;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000578 size_t start, len;
579 char *cp = buf;
580
581 /* guess if there is an encoding header before a \n\n */
René Scharfe68d6d6e2015-02-21 20:53:09 +0100582 while (!starts_with(cp, "encoding ")) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000583 cp = strchr(cp, '\n');
584 if (!cp || *++cp == '\n')
585 return buf;
586 }
587 start = cp - buf;
588 cp = strchr(cp, '\n');
589 if (!cp)
590 return buf; /* should not happen but be defensive */
591 len = cp + 1 - (buf + start);
592
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000593 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
594 if (is_encoding_utf8(encoding)) {
595 /* we have re-coded to UTF-8; drop the header */
596 strbuf_remove(&tmp, start, len);
597 } else {
598 /* just replaces XXXX in 'encoding XXXX\n' */
599 strbuf_splice(&tmp, start + strlen("encoding "),
600 len - strlen("encoding \n"),
601 encoding, strlen(encoding));
602 }
603 return strbuf_detach(&tmp, NULL);
604}
605
Stefan Beller424510e2018-11-13 16:12:59 -0800606const char *repo_logmsg_reencode(struct repository *r,
607 const struct commit *commit,
608 char **commit_encoding,
609 const char *output_encoding)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000610{
Brandon Casey330db182009-05-18 18:44:39 -0500611 static const char *utf8 = "UTF-8";
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000612 const char *use_encoding;
613 char *encoding;
Stefan Beller424510e2018-11-13 16:12:59 -0800614 const char *msg = repo_get_commit_buffer(r, commit, NULL);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000615 char *out;
616
Nguyễn Thái Ngọc Duy5a10d232013-04-19 09:08:40 +1000617 if (!output_encoding || !*output_encoding) {
618 if (commit_encoding)
Jeff Kingfe6eb7f2014-08-27 03:56:01 -0400619 *commit_encoding = get_header(msg, "encoding");
Jeff Kingdd0d3882013-01-26 04:44:06 -0500620 return msg;
Nguyễn Thái Ngọc Duy5a10d232013-04-19 09:08:40 +1000621 }
Jeff Kingfe6eb7f2014-08-27 03:56:01 -0400622 encoding = get_header(msg, "encoding");
Nguyễn Thái Ngọc Duy5a10d232013-04-19 09:08:40 +1000623 if (commit_encoding)
624 *commit_encoding = encoding;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000625 use_encoding = encoding ? encoding : utf8;
Jeff Kingbe5c9fb2013-01-26 04:44:28 -0500626 if (same_encoding(use_encoding, output_encoding)) {
627 /*
628 * No encoding work to be done. If we have no encoding header
629 * at all, then there's nothing to do, and we can return the
630 * message verbatim (whether newly allocated or not).
631 */
632 if (!encoding)
633 return msg;
634
635 /*
636 * Otherwise, we still want to munge the encoding header in the
637 * result, which will be done by modifying the buffer. If we
638 * are using a fresh copy, we can reuse it. But if we are using
Jeff Kingb66103c2014-06-10 17:41:39 -0400639 * the cached copy from get_commit_buffer, we need to duplicate it
640 * to avoid munging the cached copy.
Jeff Kingbe5c9fb2013-01-26 04:44:28 -0500641 */
Stefan Beller424510e2018-11-13 16:12:59 -0800642 if (msg == get_cached_commit_buffer(r, commit, NULL))
Jeff Kingb66103c2014-06-10 17:41:39 -0400643 out = xstrdup(msg);
644 else
645 out = (char *)msg;
Jeff Kingbe5c9fb2013-01-26 04:44:28 -0500646 }
647 else {
648 /*
649 * There's actual encoding work to do. Do the reencoding, which
650 * still leaves the header to be replaced in the next step. At
651 * this point, we are done with msg. If we allocated a fresh
652 * copy, we can free it.
653 */
654 out = reencode_string(msg, output_encoding, use_encoding);
Jeff Kingb66103c2014-06-10 17:41:39 -0400655 if (out)
Stefan Beller424510e2018-11-13 16:12:59 -0800656 repo_unuse_commit_buffer(r, commit, msg);
Jeff Kingbe5c9fb2013-01-26 04:44:28 -0500657 }
658
659 /*
660 * This replacement actually consumes the buffer we hand it, so we do
661 * not have to worry about freeing the old "out" here.
662 */
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000663 if (out)
664 out = replace_encoding_header(out, output_encoding);
665
Nguyễn Thái Ngọc Duy5a10d232013-04-19 09:08:40 +1000666 if (!commit_encoding)
667 free(encoding);
Jeff Kingdd0d3882013-01-26 04:44:06 -0500668 /*
669 * If the re-encoding failed, out might be NULL here; in that
670 * case we just return the commit message verbatim.
671 */
672 return out ? out : msg;
673}
674
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100675static int mailmap_name(const char **email, size_t *email_len,
676 const char **name, size_t *name_len)
Johannes Schindeline0cbc392008-07-12 00:28:18 +0100677{
Johannes Schindelinc455c872008-07-21 19:03:49 +0100678 static struct string_list *mail_map;
Johannes Schindeline0cbc392008-07-12 00:28:18 +0100679 if (!mail_map) {
680 mail_map = xcalloc(1, sizeof(*mail_map));
Marius Storm-Olsend551a482009-02-08 15:34:27 +0100681 read_mailmap(mail_map, NULL);
Johannes Schindeline0cbc392008-07-12 00:28:18 +0100682 }
Marius Storm-Olsend20d6542009-02-08 15:34:30 +0100683 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
Johannes Schindeline0cbc392008-07-12 00:28:18 +0100684}
685
Marco Costalbac3a670d2008-02-09 15:40:19 +0100686static size_t format_person_part(struct strbuf *sb, char part,
Jeff Kinga5481a62015-06-25 12:55:02 -0400687 const char *msg, int len,
688 const struct date_mode *dmode)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000689{
Marco Costalbac3a670d2008-02-09 15:40:19 +0100690 /* currently all placeholders have same length */
691 const int placeholder_len = 2;
Junio C Hamano4b340cf2012-03-11 01:25:43 -0800692 struct ident_split s;
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100693 const char *name, *mail;
694 size_t maillen, namelen;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000695
Junio C Hamano4b340cf2012-03-11 01:25:43 -0800696 if (split_ident_line(&s, msg, len) < 0)
Marco Costalbac3a670d2008-02-09 15:40:19 +0100697 goto skip;
698
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100699 name = s.name_begin;
700 namelen = s.name_end - s.name_begin;
701 mail = s.mail_begin;
702 maillen = s.mail_end - s.mail_begin;
Marius Storm-Olsend20d6542009-02-08 15:34:30 +0100703
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100704 if (part == 'N' || part == 'E') /* mailmap lookup */
705 mailmap_name(&mail, &maillen, &name, &namelen);
Johannes Schindeline0cbc392008-07-12 00:28:18 +0100706 if (part == 'n' || part == 'N') { /* name */
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100707 strbuf_add(sb, name, namelen);
Marco Costalbac3a670d2008-02-09 15:40:19 +0100708 return placeholder_len;
709 }
Marius Storm-Olsend20d6542009-02-08 15:34:30 +0100710 if (part == 'e' || part == 'E') { /* email */
Antoine Pelisseea02ffa2013-01-05 22:26:40 +0100711 strbuf_add(sb, mail, maillen);
Marco Costalbac3a670d2008-02-09 15:40:19 +0100712 return placeholder_len;
René Scharfecde75e52007-11-09 01:49:42 +0100713 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000714
Junio C Hamano4b340cf2012-03-11 01:25:43 -0800715 if (!s.date_begin)
Marco Costalbac3a670d2008-02-09 15:40:19 +0100716 goto skip;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000717
René Scharfecde75e52007-11-09 01:49:42 +0100718 if (part == 't') { /* date, UNIX timestamp */
Junio C Hamano4b340cf2012-03-11 01:25:43 -0800719 strbuf_add(sb, s.date_begin, s.date_end - s.date_begin);
Marco Costalbac3a670d2008-02-09 15:40:19 +0100720 return placeholder_len;
René Scharfecde75e52007-11-09 01:49:42 +0100721 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000722
René Scharfecde75e52007-11-09 01:49:42 +0100723 switch (part) {
724 case 'd': /* date */
René Scharfe9dbe7c32013-04-17 20:33:35 +0200725 strbuf_addstr(sb, show_ident_date(&s, dmode));
Marco Costalbac3a670d2008-02-09 15:40:19 +0100726 return placeholder_len;
René Scharfecde75e52007-11-09 01:49:42 +0100727 case 'D': /* date, RFC2822 style */
Jeff Kinga5481a62015-06-25 12:55:02 -0400728 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(RFC2822)));
Marco Costalbac3a670d2008-02-09 15:40:19 +0100729 return placeholder_len;
René Scharfecde75e52007-11-09 01:49:42 +0100730 case 'r': /* date, relative */
Jeff Kinga5481a62015-06-25 12:55:02 -0400731 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(RELATIVE)));
Marco Costalbac3a670d2008-02-09 15:40:19 +0100732 return placeholder_len;
Beat Bolli466fb672014-08-29 18:58:42 +0200733 case 'i': /* date, ISO 8601-like */
Jeff Kinga5481a62015-06-25 12:55:02 -0400734 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(ISO8601)));
Marco Costalbac3a670d2008-02-09 15:40:19 +0100735 return placeholder_len;
Beat Bolli466fb672014-08-29 18:58:42 +0200736 case 'I': /* date, ISO 8601 strict */
Jeff Kinga5481a62015-06-25 12:55:02 -0400737 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(ISO8601_STRICT)));
Beat Bolli466fb672014-08-29 18:58:42 +0200738 return placeholder_len;
René Scharfe0df62112019-11-19 16:51:21 -0800739 case 's':
740 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(SHORT)));
741 return placeholder_len;
René Scharfecde75e52007-11-09 01:49:42 +0100742 }
Marco Costalbac3a670d2008-02-09 15:40:19 +0100743
744skip:
745 /*
Junio C Hamano4b340cf2012-03-11 01:25:43 -0800746 * reading from either a bogus commit, or a reflog entry with
747 * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
748 * to compute a valid return value.
Marco Costalbac3a670d2008-02-09 15:40:19 +0100749 */
750 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
751 || part == 'D' || part == 'r' || part == 'i')
752 return placeholder_len;
753
754 return 0; /* unknown placeholder */
Johannes Schindelin93fc05e2007-11-04 19:15:06 +0000755}
756
René Scharfef29d5952007-11-10 12:14:20 +0100757struct chunk {
758 size_t off;
759 size_t len;
760};
761
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +1000762enum flush_type {
763 no_flush,
764 flush_right,
765 flush_left,
Nguyễn Thái Ngọc Duy16406322013-04-19 09:08:52 +1000766 flush_left_and_steal,
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +1000767 flush_both
768};
769
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000770enum trunc_type {
771 trunc_none,
772 trunc_left,
773 trunc_middle,
774 trunc_right
775};
776
René Scharfef29d5952007-11-10 12:14:20 +0100777struct format_commit_context {
778 const struct commit *commit;
Thomas Rastdd2e7942009-10-19 17:48:08 +0200779 const struct pretty_print_context *pretty_ctx;
René Scharfef53bd742008-12-27 01:49:21 +0100780 unsigned commit_header_parsed:1;
781 unsigned commit_message_parsed:1;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +0200782 struct signature_check signature_check;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +1000783 enum flush_type flush_type;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +1000784 enum trunc_type truncate;
Jeff Kingb000c592014-06-10 17:39:30 -0400785 const char *message;
Nguyễn Thái Ngọc Duy0940a762013-04-19 09:08:41 +1000786 char *commit_encoding;
René Scharfe02edd562009-10-17 23:04:19 +0200787 size_t width, indent1, indent2;
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +1000788 int auto_color;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +1000789 int padding;
René Scharfef29d5952007-11-10 12:14:20 +0100790
791 /* These offsets are relative to the start of the commit message. */
René Scharfef29d5952007-11-10 12:14:20 +0100792 struct chunk author;
793 struct chunk committer;
René Scharfef53bd742008-12-27 01:49:21 +0100794 size_t message_off;
795 size_t subject_off;
René Scharfef29d5952007-11-10 12:14:20 +0100796 size_t body_off;
René Scharfeb9c62322007-11-10 12:18:26 +0100797
798 /* The following ones are relative to the result struct strbuf. */
René Scharfe02edd562009-10-17 23:04:19 +0200799 size_t wrap_start;
René Scharfef29d5952007-11-10 12:14:20 +0100800};
801
802static void parse_commit_header(struct format_commit_context *context)
803{
Pat Notz177b29d2010-11-02 13:59:08 -0600804 const char *msg = context->message;
René Scharfef29d5952007-11-10 12:14:20 +0100805 int i;
René Scharfef29d5952007-11-10 12:14:20 +0100806
René Scharfef53bd742008-12-27 01:49:21 +0100807 for (i = 0; msg[i]; i++) {
René Scharfee3f1da92014-10-04 20:54:50 +0200808 const char *name;
René Scharfef29d5952007-11-10 12:14:20 +0100809 int eol;
810 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
811 ; /* do nothing */
812
René Scharfef29d5952007-11-10 12:14:20 +0100813 if (i == eol) {
René Scharfef53bd742008-12-27 01:49:21 +0100814 break;
René Scharfee3f1da92014-10-04 20:54:50 +0200815 } else if (skip_prefix(msg + i, "author ", &name)) {
816 context->author.off = name - msg;
817 context->author.len = msg + eol - name;
818 } else if (skip_prefix(msg + i, "committer ", &name)) {
819 context->committer.off = name - msg;
820 context->committer.len = msg + eol - name;
René Scharfef29d5952007-11-10 12:14:20 +0100821 }
822 i = eol;
823 }
René Scharfef53bd742008-12-27 01:49:21 +0100824 context->message_off = i;
René Scharfef29d5952007-11-10 12:14:20 +0100825 context->commit_header_parsed = 1;
826}
827
Stephen Boyd46d164b2009-03-22 19:14:01 -0700828static int istitlechar(char c)
829{
830 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
831 (c >= '0' && c <= '9') || c == '.' || c == '_';
832}
833
834static void format_sanitized_subject(struct strbuf *sb, const char *msg)
835{
836 size_t trimlen;
Stephen Boyd871d21d2009-03-31 16:24:38 -0700837 size_t start_len = sb->len;
Stephen Boyd46d164b2009-03-22 19:14:01 -0700838 int space = 2;
839
840 for (; *msg && *msg != '\n'; msg++) {
841 if (istitlechar(*msg)) {
842 if (space == 1)
843 strbuf_addch(sb, '-');
844 space = 0;
845 strbuf_addch(sb, *msg);
846 if (*msg == '.')
847 while (*(msg+1) == '.')
848 msg++;
849 } else
850 space |= 1;
851 }
852
853 /* trim any trailing '.' or '-' characters */
854 trimlen = 0;
Stephen Boyd871d21d2009-03-31 16:24:38 -0700855 while (sb->len - trimlen > start_len &&
856 (sb->buf[sb->len - 1 - trimlen] == '.'
857 || sb->buf[sb->len - 1 - trimlen] == '-'))
Stephen Boyd46d164b2009-03-22 19:14:01 -0700858 trimlen++;
859 strbuf_remove(sb, sb->len - trimlen, trimlen);
860}
861
René Scharfecec08712009-01-06 21:41:06 +0100862const char *format_subject(struct strbuf *sb, const char *msg,
863 const char *line_separator)
René Scharfe88c44732008-12-27 01:39:35 +0100864{
865 int first = 1;
866
867 for (;;) {
868 const char *line = msg;
869 int linelen = get_one_line(line);
870
871 msg += linelen;
Johannes Schindelin77356122016-06-22 22:20:16 +0200872 if (!linelen || is_blank_line(line, &linelen))
René Scharfe88c44732008-12-27 01:39:35 +0100873 break;
874
René Scharfef53bd742008-12-27 01:49:21 +0100875 if (!sb)
876 continue;
René Scharfe88c44732008-12-27 01:39:35 +0100877 strbuf_grow(sb, linelen + 2);
878 if (!first)
879 strbuf_addstr(sb, line_separator);
880 strbuf_add(sb, line, linelen);
881 first = 0;
882 }
883 return msg;
884}
885
René Scharfef53bd742008-12-27 01:49:21 +0100886static void parse_commit_message(struct format_commit_context *c)
887{
Pat Notz177b29d2010-11-02 13:59:08 -0600888 const char *msg = c->message + c->message_off;
889 const char *start = c->message;
René Scharfef53bd742008-12-27 01:49:21 +0100890
Johannes Schindelin77356122016-06-22 22:20:16 +0200891 msg = skip_blank_lines(msg);
René Scharfef53bd742008-12-27 01:49:21 +0100892 c->subject_off = msg - start;
893
894 msg = format_subject(NULL, msg, NULL);
Johannes Schindelin77356122016-06-22 22:20:16 +0200895 msg = skip_blank_lines(msg);
René Scharfef53bd742008-12-27 01:49:21 +0100896 c->body_off = msg - start;
897
898 c->commit_message_parsed = 1;
899}
900
René Scharfe02edd562009-10-17 23:04:19 +0200901static void strbuf_wrap(struct strbuf *sb, size_t pos,
902 size_t width, size_t indent1, size_t indent2)
903{
904 struct strbuf tmp = STRBUF_INIT;
905
906 if (pos)
907 strbuf_add(&tmp, sb->buf, pos);
908 strbuf_add_wrapped_text(&tmp, sb->buf + pos,
909 (int) indent1, (int) indent2, (int) width);
910 strbuf_swap(&tmp, sb);
911 strbuf_release(&tmp);
912}
913
914static void rewrap_message_tail(struct strbuf *sb,
915 struct format_commit_context *c,
916 size_t new_width, size_t new_indent1,
917 size_t new_indent2)
918{
919 if (c->width == new_width && c->indent1 == new_indent1 &&
920 c->indent2 == new_indent2)
921 return;
René Scharfe32ca4242009-11-08 02:04:21 +0100922 if (c->wrap_start < sb->len)
René Scharfe02edd562009-10-17 23:04:19 +0200923 strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
924 c->wrap_start = sb->len;
925 c->width = new_width;
926 c->indent1 = new_indent1;
927 c->indent2 = new_indent2;
928}
929
Jeff Kingcd1957f2011-12-16 06:40:24 -0500930static int format_reflog_person(struct strbuf *sb,
931 char part,
932 struct reflog_walk_info *log,
Jeff Kinga5481a62015-06-25 12:55:02 -0400933 const struct date_mode *dmode)
Jeff Kingcd1957f2011-12-16 06:40:24 -0500934{
935 const char *ident;
936
937 if (!log)
938 return 2;
939
940 ident = get_reflog_ident(log);
941 if (!ident)
942 return 2;
943
944 return format_person_part(sb, part, ident, strlen(ident), dmode);
945}
946
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000947static size_t parse_color(struct strbuf *sb, /* in UTF-8 */
948 const char *placeholder,
949 struct format_commit_context *c)
950{
René Scharfee3f1da92014-10-04 20:54:50 +0200951 const char *rest = placeholder;
Jeff King18fb7ff2017-07-13 11:08:46 -0400952 const char *basic_color = NULL;
René Scharfee3f1da92014-10-04 20:54:50 +0200953
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000954 if (placeholder[1] == '(') {
955 const char *begin = placeholder + 2;
956 const char *end = strchr(begin, ')');
957 char color[COLOR_MAXLEN];
958
959 if (!end)
960 return 0;
Jeff King18fb7ff2017-07-13 11:08:46 -0400961
René Scharfee3f1da92014-10-04 20:54:50 +0200962 if (skip_prefix(begin, "auto,", &begin)) {
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000963 if (!want_color(c->pretty_ctx->color))
964 return end - placeholder + 1;
Jeff King18fb7ff2017-07-13 11:08:46 -0400965 } else if (skip_prefix(begin, "always,", &begin)) {
966 /* nothing to do; we do not respect want_color at all */
967 } else {
968 /* the default is the same as "auto" */
969 if (!want_color(c->pretty_ctx->color))
970 return end - placeholder + 1;
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000971 }
Jeff King18fb7ff2017-07-13 11:08:46 -0400972
Jeff Kingf6c5a292014-10-07 15:33:09 -0400973 if (color_parse_mem(begin, end - begin, color) < 0)
974 die(_("unable to parse --pretty format"));
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000975 strbuf_addstr(sb, color);
976 return end - placeholder + 1;
977 }
Jeff King18fb7ff2017-07-13 11:08:46 -0400978
979 /*
980 * We handle things like "%C(red)" above; for historical reasons, there
981 * are a few colors that can be specified without parentheses (and
982 * they cannot support things like "auto" or "always" at all).
983 */
René Scharfee3f1da92014-10-04 20:54:50 +0200984 if (skip_prefix(placeholder + 1, "red", &rest))
Jeff King18fb7ff2017-07-13 11:08:46 -0400985 basic_color = GIT_COLOR_RED;
René Scharfee3f1da92014-10-04 20:54:50 +0200986 else if (skip_prefix(placeholder + 1, "green", &rest))
Jeff King18fb7ff2017-07-13 11:08:46 -0400987 basic_color = GIT_COLOR_GREEN;
René Scharfee3f1da92014-10-04 20:54:50 +0200988 else if (skip_prefix(placeholder + 1, "blue", &rest))
Jeff King18fb7ff2017-07-13 11:08:46 -0400989 basic_color = GIT_COLOR_BLUE;
René Scharfee3f1da92014-10-04 20:54:50 +0200990 else if (skip_prefix(placeholder + 1, "reset", &rest))
Jeff King18fb7ff2017-07-13 11:08:46 -0400991 basic_color = GIT_COLOR_RESET;
992
993 if (basic_color && want_color(c->pretty_ctx->color))
994 strbuf_addstr(sb, basic_color);
995
René Scharfee3f1da92014-10-04 20:54:50 +0200996 return rest - placeholder;
Nguyễn Thái Ngọc Duyfcabc2d2013-04-19 09:08:48 +1000997}
998
Jeff King9a1180f2019-03-20 04:16:42 -0400999static size_t parse_padding_placeholder(const char *placeholder,
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001000 struct format_commit_context *c)
1001{
1002 const char *ch = placeholder;
1003 enum flush_type flush_type;
1004 int to_column = 0;
1005
1006 switch (*ch++) {
1007 case '<':
1008 flush_type = flush_right;
1009 break;
1010 case '>':
1011 if (*ch == '<') {
1012 flush_type = flush_both;
1013 ch++;
Nguyễn Thái Ngọc Duy16406322013-04-19 09:08:52 +10001014 } else if (*ch == '>') {
1015 flush_type = flush_left_and_steal;
1016 ch++;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001017 } else
1018 flush_type = flush_left;
1019 break;
1020 default:
1021 return 0;
1022 }
1023
1024 /* the next value means "wide enough to that column" */
1025 if (*ch == '|') {
1026 to_column = 1;
1027 ch++;
1028 }
1029
1030 if (*ch == '(') {
1031 const char *start = ch + 1;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001032 const char *end = start + strcspn(start, ",)");
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001033 char *next;
1034 int width;
1035 if (!end || end == start)
1036 return 0;
Nguyễn Thái Ngọc Duy066790d2016-06-16 20:18:38 +07001037 width = strtol(start, &next, 10);
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001038 if (next == start || width == 0)
1039 return 0;
Nguyễn Thái Ngọc Duy066790d2016-06-16 20:18:38 +07001040 if (width < 0) {
1041 if (to_column)
1042 width += term_columns();
1043 if (width < 0)
1044 return 0;
1045 }
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001046 c->padding = to_column ? -width : width;
1047 c->flush_type = flush_type;
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001048
1049 if (*end == ',') {
1050 start = end + 1;
1051 end = strchr(start, ')');
1052 if (!end || end == start)
1053 return 0;
Christian Couder59556542013-11-30 21:55:40 +01001054 if (starts_with(start, "trunc)"))
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001055 c->truncate = trunc_right;
Christian Couder59556542013-11-30 21:55:40 +01001056 else if (starts_with(start, "ltrunc)"))
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001057 c->truncate = trunc_left;
Christian Couder59556542013-11-30 21:55:40 +01001058 else if (starts_with(start, "mtrunc)"))
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001059 c->truncate = trunc_middle;
1060 else
1061 return 0;
1062 } else
1063 c->truncate = trunc_none;
1064
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001065 return end - placeholder + 1;
1066 }
1067 return 0;
1068}
1069
Anders Waldenborg4f732e02019-01-29 07:49:00 +01001070static int match_placeholder_arg_value(const char *to_parse, const char *candidate,
1071 const char **end, const char **valuestart,
1072 size_t *valuelen)
Taylor Blau84ff0532017-10-01 09:18:47 -07001073{
1074 const char *p;
1075
1076 if (!(skip_prefix(to_parse, candidate, &p)))
1077 return 0;
Anders Waldenborg4f732e02019-01-29 07:49:00 +01001078 if (valuestart) {
1079 if (*p == '=') {
1080 *valuestart = p + 1;
1081 *valuelen = strcspn(*valuestart, ",)");
1082 p = *valuestart + *valuelen;
1083 } else {
1084 if (*p != ',' && *p != ')')
1085 return 0;
1086 *valuestart = NULL;
1087 *valuelen = 0;
1088 }
1089 }
Taylor Blau84ff0532017-10-01 09:18:47 -07001090 if (*p == ',') {
1091 *end = p + 1;
1092 return 1;
1093 }
1094 if (*p == ')') {
1095 *end = p;
1096 return 1;
1097 }
1098 return 0;
1099}
1100
Anders Waldenborg4f732e02019-01-29 07:49:00 +01001101static int match_placeholder_bool_arg(const char *to_parse, const char *candidate,
1102 const char **end, int *val)
1103{
1104 const char *argval;
1105 char *strval;
1106 size_t arglen;
1107 int v;
1108
1109 if (!match_placeholder_arg_value(to_parse, candidate, end, &argval, &arglen))
1110 return 0;
1111
1112 if (!argval) {
1113 *val = 1;
1114 return 1;
1115 }
1116
1117 strval = xstrndup(argval, arglen);
1118 v = git_parse_maybe_bool(strval);
1119 free(strval);
1120
1121 if (v == -1)
1122 return 0;
1123
1124 *val = v;
1125
1126 return 1;
1127}
1128
Anders Waldenborg250bea02019-01-28 22:33:34 +01001129static int format_trailer_match_cb(const struct strbuf *key, void *ud)
1130{
1131 const struct string_list *list = ud;
1132 const struct string_list_item *item;
1133
1134 for_each_string_list_item (item, list) {
1135 if (key->len == (uintptr_t)item->util &&
1136 !strncasecmp(item->string, key->buf, key->len))
1137 return 1;
1138 }
1139 return 0;
1140}
1141
Nguyễn Thái Ngọc Duy7e77df32013-04-19 09:08:47 +10001142static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */
1143 const char *placeholder,
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001144 void *context)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001145{
René Scharfef29d5952007-11-10 12:14:20 +01001146 struct format_commit_context *c = context;
1147 const struct commit *commit = c->commit;
Pat Notz177b29d2010-11-02 13:59:08 -06001148 const char *msg = c->message;
René Scharfef29d5952007-11-10 12:14:20 +01001149 struct commit_list *p;
Jeff King58311c62017-08-15 06:25:27 -04001150 const char *arg;
Anders Waldenborgfd2015b2019-01-28 22:33:36 +01001151 size_t res;
Issac Trottsad6f0282019-01-10 22:30:46 -08001152 char **slot;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001153
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001154 /* these are independent of the commit */
Anders Waldenborgfd2015b2019-01-28 22:33:36 +01001155 res = strbuf_expand_literal_cb(sb, placeholder, NULL);
1156 if (res)
1157 return res;
1158
René Scharfecde75e52007-11-09 01:49:42 +01001159 switch (placeholder[0]) {
1160 case 'C':
Christian Couder59556542013-11-30 21:55:40 +01001161 if (starts_with(placeholder + 1, "(auto)")) {
Edward Thomsonb15a3e02016-05-26 22:46:10 -05001162 c->auto_color = want_color(c->pretty_ctx->color);
René Scharfe82b83da2016-09-29 20:13:05 +02001163 if (c->auto_color && sb->len)
René Scharfec99ad272016-09-17 20:25:24 +02001164 strbuf_addstr(sb, GIT_COLOR_RESET);
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001165 return 7; /* consumed 7 bytes, "C(auto)" */
1166 } else {
1167 int ret = parse_color(sb, placeholder, c);
1168 if (ret)
1169 c->auto_color = 0;
1170 /*
1171 * Otherwise, we decided to treat %C<unknown>
1172 * as a literal string, and the previous
1173 * %C(auto) is still valid.
1174 */
1175 return ret;
Jeff Kingc0029222009-01-17 10:38:46 -05001176 }
René Scharfe02edd562009-10-17 23:04:19 +02001177 case 'w':
1178 if (placeholder[1] == '(') {
1179 unsigned long width = 0, indent1 = 0, indent2 = 0;
1180 char *next;
1181 const char *start = placeholder + 2;
1182 const char *end = strchr(start, ')');
1183 if (!end)
1184 return 0;
1185 if (end > start) {
1186 width = strtoul(start, &next, 10);
1187 if (*next == ',') {
1188 indent1 = strtoul(next + 1, &next, 10);
1189 if (*next == ',') {
1190 indent2 = strtoul(next + 1,
1191 &next, 10);
1192 }
1193 }
1194 if (*next != ')')
1195 return 0;
1196 }
1197 rewrap_message_tail(sb, c, width, indent1, indent2);
1198 return end - placeholder + 1;
1199 } else
1200 return 0;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001201
1202 case '<':
1203 case '>':
Jeff King9a1180f2019-03-20 04:16:42 -04001204 return parse_padding_placeholder(placeholder, c);
René Scharfecde75e52007-11-09 01:49:42 +01001205 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001206
1207 /* these depend on the commit */
1208 if (!commit->object.parsed)
Stefan Beller109cd762018-06-28 18:21:51 -07001209 parse_object(the_repository, &commit->object.oid);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001210
René Scharfecde75e52007-11-09 01:49:42 +01001211 switch (placeholder[0]) {
1212 case 'H': /* commit hash */
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001213 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001214 strbuf_addstr(sb, oid_to_hex(&commit->object.oid));
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001215 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
Marco Costalbac3a670d2008-02-09 15:40:19 +01001216 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001217 case 'h': /* abbreviated commit hash */
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001218 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
brian m. carlson30e677e2018-03-12 02:27:28 +00001219 strbuf_add_unique_abbrev(sb, &commit->object.oid,
René Scharfe1eb47f12016-08-06 17:41:01 +02001220 c->pretty_ctx->abbrev);
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001221 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
Marco Costalbac3a670d2008-02-09 15:40:19 +01001222 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001223 case 'T': /* tree hash */
Derrick Stolee2e27bd72018-04-06 19:09:38 +00001224 strbuf_addstr(sb, oid_to_hex(get_commit_tree_oid(commit)));
Marco Costalbac3a670d2008-02-09 15:40:19 +01001225 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001226 case 't': /* abbreviated tree hash */
Derrick Stolee2e27bd72018-04-06 19:09:38 +00001227 strbuf_add_unique_abbrev(sb,
Junio C Hamanoc89b6e12018-05-23 14:38:13 +09001228 get_commit_tree_oid(commit),
René Scharfe1eb47f12016-08-06 17:41:01 +02001229 c->pretty_ctx->abbrev);
Marco Costalbac3a670d2008-02-09 15:40:19 +01001230 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001231 case 'P': /* parent hashes */
1232 for (p = commit->parents; p; p = p->next) {
1233 if (p != commit->parents)
1234 strbuf_addch(sb, ' ');
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001235 strbuf_addstr(sb, oid_to_hex(&p->item->object.oid));
René Scharfecde75e52007-11-09 01:49:42 +01001236 }
Marco Costalbac3a670d2008-02-09 15:40:19 +01001237 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001238 case 'p': /* abbreviated parent hashes */
1239 for (p = commit->parents; p; p = p->next) {
1240 if (p != commit->parents)
1241 strbuf_addch(sb, ' ');
brian m. carlson30e677e2018-03-12 02:27:28 +00001242 strbuf_add_unique_abbrev(sb, &p->item->object.oid,
René Scharfe1eb47f12016-08-06 17:41:01 +02001243 c->pretty_ctx->abbrev);
René Scharfecde75e52007-11-09 01:49:42 +01001244 }
Marco Costalbac3a670d2008-02-09 15:40:19 +01001245 return 1;
René Scharfecde75e52007-11-09 01:49:42 +01001246 case 'm': /* left/right/bottom */
Michael J Gruber1df2d652011-03-07 13:31:39 +01001247 strbuf_addstr(sb, get_revision_mark(NULL, commit));
Marco Costalbac3a670d2008-02-09 15:40:19 +01001248 return 1;
René Scharfe3b3d4432008-09-04 23:40:03 +02001249 case 'd':
Rafael Ascensão65516f52017-11-21 21:33:41 +00001250 load_ref_decorations(NULL, DECORATE_SHORT_REFS);
Nguyễn Thái Ngọc Duya95f0672013-04-19 09:08:49 +10001251 format_decorations(sb, commit, c->auto_color);
René Scharfe3b3d4432008-09-04 23:40:03 +02001252 return 1;
Harry Jeffery92710952014-09-18 21:53:53 +01001253 case 'D':
Rafael Ascensão65516f52017-11-21 21:33:41 +00001254 load_ref_decorations(NULL, DECORATE_SHORT_REFS);
Harry Jeffery92710952014-09-18 21:53:53 +01001255 format_decorations_extended(sb, commit, c->auto_color, "", ", ", "");
1256 return 1;
Issac Trottsad6f0282019-01-10 22:30:46 -08001257 case 'S': /* tag/branch like --source */
1258 if (!(c->pretty_ctx->rev && c->pretty_ctx->rev->sources))
1259 return 0;
1260 slot = revision_sources_at(c->pretty_ctx->rev->sources, commit);
1261 if (!(slot && *slot))
1262 return 0;
1263 strbuf_addstr(sb, *slot);
1264 return 1;
Thomas Rast8f8f5472009-10-19 17:48:10 +02001265 case 'g': /* reflog info */
1266 switch(placeholder[1]) {
1267 case 'd': /* reflog selector */
1268 case 'D':
1269 if (c->pretty_ctx->reflog_info)
1270 get_reflog_selector(sb,
1271 c->pretty_ctx->reflog_info,
Jeff Kinga5481a62015-06-25 12:55:02 -04001272 &c->pretty_ctx->date_mode,
Junio C Hamano55ccf852012-05-07 14:11:32 -07001273 c->pretty_ctx->date_mode_explicit,
Thomas Rast8f8f5472009-10-19 17:48:10 +02001274 (placeholder[1] == 'd'));
1275 return 2;
1276 case 's': /* reflog message */
1277 if (c->pretty_ctx->reflog_info)
1278 get_reflog_message(sb, c->pretty_ctx->reflog_info);
1279 return 2;
Jeff Kingcd1957f2011-12-16 06:40:24 -05001280 case 'n':
1281 case 'N':
1282 case 'e':
1283 case 'E':
1284 return format_reflog_person(sb,
1285 placeholder[1],
1286 c->pretty_ctx->reflog_info,
Jeff Kinga5481a62015-06-25 12:55:02 -04001287 &c->pretty_ctx->date_mode);
Thomas Rast8f8f5472009-10-19 17:48:10 +02001288 }
1289 return 0; /* unknown %g placeholder */
Johannes Schindelin8b208f02009-10-09 12:22:05 +02001290 case 'N':
Junio C Hamanoddf333f2012-10-17 18:51:47 -07001291 if (c->pretty_ctx->notes_message) {
1292 strbuf_addstr(sb, c->pretty_ctx->notes_message);
Johannes Gilger5b163602010-04-13 22:31:12 +02001293 return 1;
1294 }
1295 return 0;
René Scharfecde75e52007-11-09 01:49:42 +01001296 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001297
Junio C Hamanof6667c52011-10-21 21:06:02 -07001298 if (placeholder[0] == 'G') {
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001299 if (!c->signature_check.result)
1300 check_commit_signature(c->commit, &(c->signature_check));
Junio C Hamanof6667c52011-10-21 21:06:02 -07001301 switch (placeholder[1]) {
1302 case 'G':
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001303 if (c->signature_check.gpg_output)
1304 strbuf_addstr(sb, c->signature_check.gpg_output);
Junio C Hamanof6667c52011-10-21 21:06:02 -07001305 break;
1306 case '?':
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001307 switch (c->signature_check.result) {
Junio C Hamanof6667c52011-10-21 21:06:02 -07001308 case 'G':
1309 case 'B':
Michael J Gruber661a1802016-10-12 15:04:15 +02001310 case 'E':
Sebastian Göttee290c4b2013-03-31 18:03:22 +02001311 case 'U':
1312 case 'N':
Michael J Gruber661a1802016-10-12 15:04:15 +02001313 case 'X':
1314 case 'Y':
1315 case 'R':
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001316 strbuf_addch(sb, c->signature_check.result);
Junio C Hamanof6667c52011-10-21 21:06:02 -07001317 }
1318 break;
1319 case 'S':
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001320 if (c->signature_check.signer)
1321 strbuf_addstr(sb, c->signature_check.signer);
Junio C Hamanof6667c52011-10-21 21:06:02 -07001322 break;
Michael J Gruber0174eea2013-02-14 17:04:46 +01001323 case 'K':
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001324 if (c->signature_check.key)
1325 strbuf_addstr(sb, c->signature_check.key);
Michael J Gruber0174eea2013-02-14 17:04:46 +01001326 break;
Michał Górny3daaaab2018-10-22 18:38:20 +02001327 case 'F':
1328 if (c->signature_check.fingerprint)
1329 strbuf_addstr(sb, c->signature_check.fingerprint);
1330 break;
Michał Górny4de93942018-10-22 18:38:21 +02001331 case 'P':
1332 if (c->signature_check.primary_key_fingerprint)
1333 strbuf_addstr(sb, c->signature_check.primary_key_fingerprint);
1334 break;
Jeff Kingaa4b78d2014-06-16 20:07:07 -04001335 default:
1336 return 0;
Junio C Hamanof6667c52011-10-21 21:06:02 -07001337 }
1338 return 2;
1339 }
1340
1341
René Scharfecde75e52007-11-09 01:49:42 +01001342 /* For the rest we have to parse the commit header. */
René Scharfef29d5952007-11-10 12:14:20 +01001343 if (!c->commit_header_parsed)
1344 parse_commit_header(c);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001345
René Scharfef29d5952007-11-10 12:14:20 +01001346 switch (placeholder[0]) {
Marco Costalbac3a670d2008-02-09 15:40:19 +01001347 case 'a': /* author ... */
1348 return format_person_part(sb, placeholder[1],
Jeff Kingd36f8672008-08-28 20:54:59 -04001349 msg + c->author.off, c->author.len,
Jeff Kinga5481a62015-06-25 12:55:02 -04001350 &c->pretty_ctx->date_mode);
Marco Costalbac3a670d2008-02-09 15:40:19 +01001351 case 'c': /* committer ... */
1352 return format_person_part(sb, placeholder[1],
Jeff Kingd36f8672008-08-28 20:54:59 -04001353 msg + c->committer.off, c->committer.len,
Jeff Kinga5481a62015-06-25 12:55:02 -04001354 &c->pretty_ctx->date_mode);
Marco Costalbac3a670d2008-02-09 15:40:19 +01001355 case 'e': /* encoding */
Nguyễn Thái Ngọc Duy0940a762013-04-19 09:08:41 +10001356 if (c->commit_encoding)
1357 strbuf_addstr(sb, c->commit_encoding);
Marco Costalbac3a670d2008-02-09 15:40:19 +01001358 return 1;
Eli Barzilay1367b122010-03-24 22:51:52 -04001359 case 'B': /* raw body */
1360 /* message_off is always left at the initial newline */
1361 strbuf_addstr(sb, msg + c->message_off + 1);
1362 return 1;
René Scharfef53bd742008-12-27 01:49:21 +01001363 }
1364
1365 /* Now we need to parse the commit message. */
1366 if (!c->commit_message_parsed)
1367 parse_commit_message(c);
1368
1369 switch (placeholder[0]) {
1370 case 's': /* subject */
1371 format_subject(sb, msg + c->subject_off, " ");
1372 return 1;
Stephen Boyd46d164b2009-03-22 19:14:01 -07001373 case 'f': /* sanitized subject */
1374 format_sanitized_subject(sb, msg + c->subject_off);
1375 return 1;
Marco Costalbac3a670d2008-02-09 15:40:19 +01001376 case 'b': /* body */
René Scharfef29d5952007-11-10 12:14:20 +01001377 strbuf_addstr(sb, msg + c->body_off);
Marco Costalbac3a670d2008-02-09 15:40:19 +01001378 return 1;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001379 }
Jacob Kellerd9f31fb2016-11-18 16:58:14 -08001380
Jeff King58311c62017-08-15 06:25:27 -04001381 if (skip_prefix(placeholder, "(trailers", &arg)) {
Jeff Kinga388b102017-08-15 06:23:56 -04001382 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
Anders Waldenborg250bea02019-01-28 22:33:34 +01001383 struct string_list filter_list = STRING_LIST_INIT_NODUP;
Anders Waldenborg0b691d82019-01-28 22:33:37 +01001384 struct strbuf sepbuf = STRBUF_INIT;
Anders Waldenborg3e3f3472019-01-28 22:33:33 +01001385 size_t ret = 0;
Jeff Kinge5fba5d2018-08-22 20:50:17 -04001386
1387 opts.no_divider = 1;
1388
Taylor Blau84ff0532017-10-01 09:18:47 -07001389 if (*arg == ':') {
1390 arg++;
1391 for (;;) {
Anders Waldenborg250bea02019-01-28 22:33:34 +01001392 const char *argval;
1393 size_t arglen;
1394
1395 if (match_placeholder_arg_value(arg, "key", &arg, &argval, &arglen)) {
1396 uintptr_t len = arglen;
1397
1398 if (!argval)
1399 goto trailer_out;
1400
1401 if (len && argval[len - 1] == ':')
1402 len--;
1403 string_list_append(&filter_list, argval)->util = (char *)len;
1404
1405 opts.filter = format_trailer_match_cb;
1406 opts.filter_data = &filter_list;
Taylor Blau84ff0532017-10-01 09:18:47 -07001407 opts.only_trailers = 1;
Anders Waldenborg0b691d82019-01-28 22:33:37 +01001408 } else if (match_placeholder_arg_value(arg, "separator", &arg, &argval, &arglen)) {
1409 char *fmt;
1410
1411 strbuf_reset(&sepbuf);
1412 fmt = xstrndup(argval, arglen);
1413 strbuf_expand(&sepbuf, fmt, strbuf_expand_literal_cb, NULL);
1414 free(fmt);
1415 opts.separator = &sepbuf;
Anders Waldenborg250bea02019-01-28 22:33:34 +01001416 } else if (!match_placeholder_bool_arg(arg, "only", &arg, &opts.only_trailers) &&
Anders Waldenborgd9b936d2019-01-28 22:33:35 +01001417 !match_placeholder_bool_arg(arg, "unfold", &arg, &opts.unfold) &&
1418 !match_placeholder_bool_arg(arg, "valueonly", &arg, &opts.value_only))
Taylor Blau84ff0532017-10-01 09:18:47 -07001419 break;
1420 }
Jeff King58311c62017-08-15 06:25:27 -04001421 }
1422 if (*arg == ')') {
1423 format_trailers_from_commit(sb, msg + c->subject_off, &opts);
Anders Waldenborg3e3f3472019-01-28 22:33:33 +01001424 ret = arg - placeholder + 1;
Jeff King58311c62017-08-15 06:25:27 -04001425 }
Anders Waldenborg250bea02019-01-28 22:33:34 +01001426 trailer_out:
1427 string_list_clear(&filter_list, 0);
Anders Waldenborg0b691d82019-01-28 22:33:37 +01001428 strbuf_release(&sepbuf);
Anders Waldenborg3e3f3472019-01-28 22:33:33 +01001429 return ret;
Jacob Kellerd9f31fb2016-11-18 16:58:14 -08001430 }
1431
Marco Costalbac3a670d2008-02-09 15:40:19 +01001432 return 0; /* unknown placeholder */
René Scharfecde75e52007-11-09 01:49:42 +01001433}
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001434
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001435static size_t format_and_pad_commit(struct strbuf *sb, /* in UTF-8 */
1436 const char *placeholder,
1437 struct format_commit_context *c)
1438{
1439 struct strbuf local_sb = STRBUF_INIT;
1440 int total_consumed = 0, len, padding = c->padding;
1441 if (padding < 0) {
1442 const char *start = strrchr(sb->buf, '\n');
1443 int occupied;
1444 if (!start)
1445 start = sb->buf;
1446 occupied = utf8_strnwidth(start, -1, 1);
Josef Kufner3ad87c82016-06-16 20:18:37 +07001447 occupied += c->pretty_ctx->graph_width;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001448 padding = (-padding) - occupied;
1449 }
1450 while (1) {
1451 int modifier = *placeholder == 'C';
1452 int consumed = format_commit_one(&local_sb, placeholder, c);
1453 total_consumed += consumed;
1454
1455 if (!modifier)
1456 break;
1457
1458 placeholder += consumed;
1459 if (*placeholder != '%')
1460 break;
1461 placeholder++;
1462 total_consumed++;
1463 }
1464 len = utf8_strnwidth(local_sb.buf, -1, 1);
Nguyễn Thái Ngọc Duy16406322013-04-19 09:08:52 +10001465
1466 if (c->flush_type == flush_left_and_steal) {
1467 const char *ch = sb->buf + sb->len - 1;
1468 while (len > padding && ch > sb->buf) {
1469 const char *p;
1470 if (*ch == ' ') {
1471 ch--;
1472 padding++;
1473 continue;
1474 }
1475 /* check for trailing ansi sequences */
1476 if (*ch != 'm')
1477 break;
1478 p = ch - 1;
1479 while (ch - p < 10 && *p != '\033')
1480 p--;
1481 if (*p != '\033' ||
1482 ch + 1 - p != display_mode_esc_sequence_len(p))
1483 break;
1484 /*
1485 * got a good ansi sequence, put it back to
1486 * local_sb as we're cutting sb
1487 */
1488 strbuf_insert(&local_sb, 0, p, ch + 1 - p);
1489 ch = p - 1;
1490 }
1491 strbuf_setlen(sb, ch + 1 - sb->buf);
1492 c->flush_type = flush_left;
1493 }
1494
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001495 if (len > padding) {
1496 switch (c->truncate) {
1497 case trunc_left:
1498 strbuf_utf8_replace(&local_sb,
1499 0, len - (padding - 2),
1500 "..");
1501 break;
1502 case trunc_middle:
1503 strbuf_utf8_replace(&local_sb,
1504 padding / 2 - 1,
1505 len - (padding - 2),
1506 "..");
1507 break;
1508 case trunc_right:
1509 strbuf_utf8_replace(&local_sb,
1510 padding - 2, len - (padding - 2),
1511 "..");
1512 break;
1513 case trunc_none:
1514 break;
1515 }
René Scharfee992d1e2014-07-10 10:52:21 +02001516 strbuf_addbuf(sb, &local_sb);
Nguyễn Thái Ngọc Duya7f01c62013-04-19 09:08:51 +10001517 } else {
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001518 int sb_len = sb->len, offset = 0;
1519 if (c->flush_type == flush_left)
1520 offset = padding - len;
1521 else if (c->flush_type == flush_both)
1522 offset = (padding - len) / 2;
1523 /*
1524 * we calculate padding in columns, now
1525 * convert it back to chars
1526 */
1527 padding = padding - len + local_sb.len;
René Scharfe415792e2014-09-07 09:06:42 +02001528 strbuf_addchars(sb, ' ', padding);
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001529 memcpy(sb->buf + sb_len + offset, local_sb.buf,
1530 local_sb.len);
1531 }
1532 strbuf_release(&local_sb);
1533 c->flush_type = no_flush;
1534 return total_consumed;
1535}
1536
Nguyễn Thái Ngọc Duy7e77df32013-04-19 09:08:47 +10001537static size_t format_commit_item(struct strbuf *sb, /* in UTF-8 */
1538 const char *placeholder,
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001539 void *context)
1540{
1541 int consumed;
1542 size_t orig_len;
1543 enum {
1544 NO_MAGIC,
1545 ADD_LF_BEFORE_NON_EMPTY,
1546 DEL_LF_BEFORE_EMPTY,
Junio C Hamano223a9232010-06-22 09:45:22 -07001547 ADD_SP_BEFORE_NON_EMPTY
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001548 } magic = NO_MAGIC;
1549
1550 switch (placeholder[0]) {
1551 case '-':
1552 magic = DEL_LF_BEFORE_EMPTY;
1553 break;
1554 case '+':
1555 magic = ADD_LF_BEFORE_NON_EMPTY;
1556 break;
Michael J Gruber7b881762010-06-14 18:12:29 +02001557 case ' ':
1558 magic = ADD_SP_BEFORE_NON_EMPTY;
1559 break;
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001560 default:
1561 break;
1562 }
1563 if (magic != NO_MAGIC)
1564 placeholder++;
1565
1566 orig_len = sb->len;
Nguyễn Thái Ngọc Duya5752342013-04-19 09:08:50 +10001567 if (((struct format_commit_context *)context)->flush_type != no_flush)
1568 consumed = format_and_pad_commit(sb, placeholder, context);
1569 else
1570 consumed = format_commit_one(sb, placeholder, context);
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001571 if (magic == NO_MAGIC)
1572 return consumed;
1573
1574 if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1575 while (sb->len && sb->buf[sb->len - 1] == '\n')
1576 strbuf_setlen(sb, sb->len - 1);
Michael J Gruber7b881762010-06-14 18:12:29 +02001577 } else if (orig_len != sb->len) {
1578 if (magic == ADD_LF_BEFORE_NON_EMPTY)
1579 strbuf_insert(sb, orig_len, "\n", 1);
1580 else if (magic == ADD_SP_BEFORE_NON_EMPTY)
1581 strbuf_insert(sb, orig_len, " ", 1);
Junio C Hamano9fa708d2009-10-04 23:43:32 -07001582 }
1583 return consumed + 1;
1584}
1585
Johannes Gilger5b163602010-04-13 22:31:12 +02001586static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1587 void *context)
1588{
1589 struct userformat_want *w = context;
1590
Michael J Gruber7b881762010-06-14 18:12:29 +02001591 if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
Johannes Gilger5b163602010-04-13 22:31:12 +02001592 placeholder++;
1593
1594 switch (*placeholder) {
1595 case 'N':
1596 w->notes = 1;
1597 break;
Issac Trottsad6f0282019-01-10 22:30:46 -08001598 case 'S':
1599 w->source = 1;
1600 break;
Johannes Gilger5b163602010-04-13 22:31:12 +02001601 }
1602 return 0;
1603}
1604
1605void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1606{
1607 struct strbuf dummy = STRBUF_INIT;
1608
1609 if (!fmt) {
1610 if (!user_format)
1611 return;
1612 fmt = user_format;
1613 }
Junio C Hamanoa6253d12011-05-25 12:23:44 -07001614 strbuf_expand(&dummy, fmt, userformat_want_item, w);
Johannes Gilger5b163602010-04-13 22:31:12 +02001615 strbuf_release(&dummy);
1616}
1617
Stefan Bellerf54fbf52018-11-13 16:13:00 -08001618void repo_format_commit_message(struct repository *r,
1619 const struct commit *commit,
1620 const char *format, struct strbuf *sb,
1621 const struct pretty_print_context *pretty_ctx)
René Scharfecde75e52007-11-09 01:49:42 +01001622{
Denton Liu3e8ed3b2019-11-19 16:51:16 -08001623 struct format_commit_context context = {
1624 .commit = commit,
1625 .pretty_ctx = pretty_ctx,
1626 .wrap_start = sb->len
1627 };
Pat Notz177b29d2010-11-02 13:59:08 -06001628 const char *output_enc = pretty_ctx->output_encoding;
Nguyễn Thái Ngọc Duy7e77df32013-04-19 09:08:47 +10001629 const char *utf8 = "UTF-8";
René Scharfef29d5952007-11-10 12:14:20 +01001630
Alexey Shumkin7d509872014-05-21 17:20:07 +04001631 /*
1632 * convert a commit message to UTF-8 first
1633 * as far as 'format_commit_item' assumes it in UTF-8
1634 */
Stefan Bellerf54fbf52018-11-13 16:13:00 -08001635 context.message = repo_logmsg_reencode(r, commit,
1636 &context.commit_encoding,
1637 utf8);
Pat Notz177b29d2010-11-02 13:59:08 -06001638
Marco Costalbac3a670d2008-02-09 15:40:19 +01001639 strbuf_expand(sb, format, format_commit_item, &context);
René Scharfe02edd562009-10-17 23:04:19 +02001640 rewrap_message_tail(sb, &context, 0, 0, 0);
Pat Notz177b29d2010-11-02 13:59:08 -06001641
Alexey Shumkin7d509872014-05-21 17:20:07 +04001642 /* then convert a commit message to an actual output encoding */
Nguyễn Thái Ngọc Duy7e77df32013-04-19 09:08:47 +10001643 if (output_enc) {
1644 if (same_encoding(utf8, output_enc))
1645 output_enc = NULL;
1646 } else {
1647 if (context.commit_encoding &&
1648 !same_encoding(context.commit_encoding, utf8))
1649 output_enc = context.commit_encoding;
1650 }
1651
1652 if (output_enc) {
Jeff Kingc7d017d2018-07-24 06:50:33 -04001653 size_t outsz;
Nguyễn Thái Ngọc Duy7e77df32013-04-19 09:08:47 +10001654 char *out = reencode_string_len(sb->buf, sb->len,
1655 output_enc, utf8, &outsz);
1656 if (out)
1657 strbuf_attach(sb, out, outsz, outsz + 1);
1658 }
1659
Nguyễn Thái Ngọc Duy0940a762013-04-19 09:08:41 +10001660 free(context.commit_encoding);
Stefan Bellerf54fbf52018-11-13 16:13:00 -08001661 repo_unuse_commit_buffer(r, commit, context.message);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001662}
1663
Jeff King10f2fbf2013-07-03 03:07:48 -04001664static void pp_header(struct pretty_print_context *pp,
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001665 const char *encoding,
1666 const struct commit *commit,
1667 const char **msg_p,
1668 struct strbuf *sb)
1669{
1670 int parents_shown = 0;
1671
1672 for (;;) {
René Scharfee3f1da92014-10-04 20:54:50 +02001673 const char *name, *line = *msg_p;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001674 int linelen = get_one_line(*msg_p);
1675
1676 if (!linelen)
1677 return;
1678 *msg_p += linelen;
1679
1680 if (linelen == 1)
1681 /* End of header */
1682 return;
1683
Jeff King6bf13942011-05-26 18:27:49 -04001684 if (pp->fmt == CMIT_FMT_RAW) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001685 strbuf_add(sb, line, linelen);
1686 continue;
1687 }
1688
Christian Couder59556542013-11-30 21:55:40 +01001689 if (starts_with(line, "parent ")) {
brian m. carlson580f0982018-07-16 01:28:08 +00001690 if (linelen != the_hash_algo->hexsz + 8)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001691 die("bad parent line in commit");
1692 continue;
1693 }
1694
1695 if (!parents_shown) {
René Scharfe4bbaa1e2014-07-17 01:52:09 +02001696 unsigned num = commit_list_count(commit->parents);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001697 /* with enough slop */
brian m. carlson580f0982018-07-16 01:28:08 +00001698 strbuf_grow(sb, num * (GIT_MAX_HEXSZ + 10) + 20);
Jeff King6bf13942011-05-26 18:27:49 -04001699 add_merge_info(pp, sb, commit);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001700 parents_shown = 1;
1701 }
1702
1703 /*
1704 * MEDIUM == DEFAULT shows only author with dates.
1705 * FULL shows both authors but not dates.
1706 * FULLER shows both authors and dates.
1707 */
René Scharfee3f1da92014-10-04 20:54:50 +02001708 if (skip_prefix(line, "author ", &name)) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001709 strbuf_grow(sb, linelen + 80);
René Scharfee3f1da92014-10-04 20:54:50 +02001710 pp_user_info(pp, "Author", sb, name, encoding);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001711 }
René Scharfee3f1da92014-10-04 20:54:50 +02001712 if (skip_prefix(line, "committer ", &name) &&
Jeff King6bf13942011-05-26 18:27:49 -04001713 (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001714 strbuf_grow(sb, linelen + 80);
René Scharfee3f1da92014-10-04 20:54:50 +02001715 pp_user_info(pp, "Commit", sb, name, encoding);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001716 }
1717 }
1718}
1719
Jeff King10f2fbf2013-07-03 03:07:48 -04001720void pp_title_line(struct pretty_print_context *pp,
Daniel Barkalowb02bd652008-02-18 22:56:08 -05001721 const char **msg_p,
1722 struct strbuf *sb,
Daniel Barkalowb02bd652008-02-18 22:56:08 -05001723 const char *encoding,
Junio C Hamano267123b2008-03-15 00:09:20 -07001724 int need_8bit_cte)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001725{
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +02001726 static const int max_length = 78; /* per rfc2047 */
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001727 struct strbuf title;
1728
1729 strbuf_init(&title, 80);
Jeff King9553d2b2011-05-26 18:28:17 -04001730 *msg_p = format_subject(&title, *msg_p,
1731 pp->preserve_subject ? "\n" : " ");
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001732
1733 strbuf_grow(sb, title.len + 1024);
René Scharfe6d167fd2017-03-01 12:37:07 +01001734 if (pp->print_email_subject) {
1735 if (pp->rev)
1736 fmt_output_email_subject(sb, pp->rev);
Jeff Kingda55ff32019-03-20 04:16:36 -04001737 if (needs_rfc2047_encoding(title.buf, title.len))
Jan H. Schönherr41dd00b2012-10-18 16:43:33 +02001738 add_rfc2047(sb, title.buf, title.len,
1739 encoding, RFC2047_SUBJECT);
1740 else
1741 strbuf_add_wrapped_bytes(sb, title.buf, title.len,
1742 -last_line_length(sb), 1, max_length);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001743 } else {
1744 strbuf_addbuf(sb, &title);
1745 }
1746 strbuf_addch(sb, '\n');
1747
Jeff Kinga9080472013-07-03 03:08:22 -04001748 if (need_8bit_cte == 0) {
1749 int i;
1750 for (i = 0; i < pp->in_body_headers.nr; i++) {
1751 if (has_non_ascii(pp->in_body_headers.items[i].string)) {
1752 need_8bit_cte = 1;
1753 break;
1754 }
1755 }
1756 }
1757
Junio C Hamano6bf4f1b2008-03-14 17:10:09 -07001758 if (need_8bit_cte > 0) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001759 const char *header_fmt =
1760 "MIME-Version: 1.0\n"
1761 "Content-Type: text/plain; charset=%s\n"
1762 "Content-Transfer-Encoding: 8bit\n";
1763 strbuf_addf(sb, header_fmt, encoding);
1764 }
Jeff King6bf13942011-05-26 18:27:49 -04001765 if (pp->after_subject) {
1766 strbuf_addstr(sb, pp->after_subject);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001767 }
Eric Wong9f23e042016-06-05 04:46:39 +00001768 if (cmit_fmt_is_mail(pp->fmt)) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001769 strbuf_addch(sb, '\n');
1770 }
Jeff Kinga9080472013-07-03 03:08:22 -04001771
1772 if (pp->in_body_headers.nr) {
1773 int i;
1774 for (i = 0; i < pp->in_body_headers.nr; i++) {
1775 strbuf_addstr(sb, pp->in_body_headers.items[i].string);
1776 free(pp->in_body_headers.items[i].string);
1777 }
1778 string_list_clear(&pp->in_body_headers, 0);
1779 strbuf_addch(sb, '\n');
1780 }
1781
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001782 strbuf_release(&title);
1783}
1784
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001785static int pp_utf8_width(const char *start, const char *end)
1786{
1787 int width = 0;
1788 size_t remain = end - start;
1789
1790 while (remain) {
1791 int n = utf8_width(&start, &remain);
1792 if (n < 0 || !start)
1793 return -1;
1794 width += n;
1795 }
1796 return width;
1797}
1798
Junio C Hamanofe37a9c2016-03-29 16:05:39 -07001799static void strbuf_add_tabexpand(struct strbuf *sb, int tabwidth,
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001800 const char *line, int linelen)
1801{
1802 const char *tab;
1803
1804 while ((tab = memchr(line, '\t', linelen)) != NULL) {
1805 int width = pp_utf8_width(line, tab);
1806
1807 /*
1808 * If it wasn't well-formed utf8, or it
1809 * had characters with badly defined
1810 * width (control characters etc), just
1811 * give up on trying to align things.
1812 */
1813 if (width < 0)
1814 break;
1815
1816 /* Output the data .. */
1817 strbuf_add(sb, line, tab - line);
1818
1819 /* .. and the de-tabified tab */
Junio C Hamanofe37a9c2016-03-29 16:05:39 -07001820 strbuf_addchars(sb, ' ', tabwidth - (width % tabwidth));
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001821
1822 /* Skip over the printed part .. */
1823 linelen -= tab + 1 - line;
1824 line = tab + 1;
1825 }
1826
1827 /*
1828 * Print out everything after the last tab without
1829 * worrying about width - there's nothing more to
1830 * align.
1831 */
1832 strbuf_add(sb, line, linelen);
1833}
1834
1835/*
1836 * pp_handle_indent() prints out the intendation, and
1837 * the whole line (without the final newline), after
1838 * de-tabifying.
1839 */
1840static void pp_handle_indent(struct pretty_print_context *pp,
1841 struct strbuf *sb, int indent,
1842 const char *line, int linelen)
1843{
1844 strbuf_addchars(sb, ' ', indent);
1845 if (pp->expand_tabs_in_log)
Junio C Hamanofe37a9c2016-03-29 16:05:39 -07001846 strbuf_add_tabexpand(sb, pp->expand_tabs_in_log, line, linelen);
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001847 else
1848 strbuf_add(sb, line, linelen);
1849}
1850
Eric Wong9f23e042016-06-05 04:46:39 +00001851static int is_mboxrd_from(const char *line, int len)
1852{
1853 /*
1854 * a line matching /^From $/ here would only have len == 4
1855 * at this point because is_empty_line would've trimmed all
1856 * trailing space
1857 */
1858 return len > 4 && starts_with(line + strspn(line, ">"), "From ");
1859}
1860
Jeff King10f2fbf2013-07-03 03:07:48 -04001861void pp_remainder(struct pretty_print_context *pp,
Daniel Barkalowb02bd652008-02-18 22:56:08 -05001862 const char **msg_p,
1863 struct strbuf *sb,
1864 int indent)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001865{
1866 int first = 1;
1867 for (;;) {
1868 const char *line = *msg_p;
1869 int linelen = get_one_line(line);
1870 *msg_p += linelen;
1871
1872 if (!linelen)
1873 break;
1874
Johannes Schindelin77356122016-06-22 22:20:16 +02001875 if (is_blank_line(line, &linelen)) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001876 if (first)
1877 continue;
Jeff King6bf13942011-05-26 18:27:49 -04001878 if (pp->fmt == CMIT_FMT_SHORT)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001879 break;
1880 }
1881 first = 0;
1882
1883 strbuf_grow(sb, linelen + indent + 20);
René Scharfe415792e2014-09-07 09:06:42 +02001884 if (indent)
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001885 pp_handle_indent(pp, sb, indent, line, linelen);
Junio C Hamano0893eec2016-03-29 15:49:24 -07001886 else if (pp->expand_tabs_in_log)
Junio C Hamanofe37a9c2016-03-29 16:05:39 -07001887 strbuf_add_tabexpand(sb, pp->expand_tabs_in_log,
1888 line, linelen);
Eric Wong9f23e042016-06-05 04:46:39 +00001889 else {
1890 if (pp->fmt == CMIT_FMT_MBOXRD &&
1891 is_mboxrd_from(line, linelen))
1892 strbuf_addch(sb, '>');
1893
Linus Torvalds7cc13c72016-03-16 09:15:53 -07001894 strbuf_add(sb, line, linelen);
Eric Wong9f23e042016-06-05 04:46:39 +00001895 }
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001896 strbuf_addch(sb, '\n');
1897 }
1898}
1899
Jeff King10f2fbf2013-07-03 03:07:48 -04001900void pretty_print_commit(struct pretty_print_context *pp,
Jeff King6bf13942011-05-26 18:27:49 -04001901 const struct commit *commit,
1902 struct strbuf *sb)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001903{
1904 unsigned long beginning_of_body;
1905 int indent = 4;
Jeff Kingdd0d3882013-01-26 04:44:06 -05001906 const char *msg;
Jeff Kingb000c592014-06-10 17:39:30 -04001907 const char *reencoded;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001908 const char *encoding;
Jeff King6bf13942011-05-26 18:27:49 -04001909 int need_8bit_cte = pp->need_8bit_cte;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001910
Jeff King6bf13942011-05-26 18:27:49 -04001911 if (pp->fmt == CMIT_FMT_USERFORMAT) {
1912 format_commit_message(commit, user_format, sb, pp);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001913 return;
1914 }
1915
Junio C Hamanoe297cf52012-10-17 17:12:55 -07001916 encoding = get_log_output_encoding();
Nguyễn Thái Ngọc Duy5a10d232013-04-19 09:08:40 +10001917 msg = reencoded = logmsg_reencode(commit, NULL, encoding);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001918
Eric Wong9f23e042016-06-05 04:46:39 +00001919 if (pp->fmt == CMIT_FMT_ONELINE || cmit_fmt_is_mail(pp->fmt))
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001920 indent = 0;
1921
Junio C Hamano6bf4f1b2008-03-14 17:10:09 -07001922 /*
1923 * We need to check and emit Content-type: to mark it
1924 * as 8-bit if we haven't done so.
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001925 */
Eric Wong9f23e042016-06-05 04:46:39 +00001926 if (cmit_fmt_is_mail(pp->fmt) && need_8bit_cte == 0) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001927 int i, ch, in_body;
1928
1929 for (in_body = i = 0; (ch = msg[i]); i++) {
1930 if (!in_body) {
1931 /* author could be non 7-bit ASCII but
1932 * the log may be so; skip over the
1933 * header part first.
1934 */
1935 if (ch == '\n' && msg[i+1] == '\n')
1936 in_body = 1;
1937 }
1938 else if (non_ascii(ch)) {
Junio C Hamano6bf4f1b2008-03-14 17:10:09 -07001939 need_8bit_cte = 1;
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001940 break;
1941 }
1942 }
1943 }
1944
Jeff King6bf13942011-05-26 18:27:49 -04001945 pp_header(pp, encoding, commit, &msg, sb);
René Scharfe6d167fd2017-03-01 12:37:07 +01001946 if (pp->fmt != CMIT_FMT_ONELINE && !pp->print_email_subject) {
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001947 strbuf_addch(sb, '\n');
1948 }
1949
1950 /* Skip excess blank lines at the beginning of body, if any... */
Johannes Schindelin77356122016-06-22 22:20:16 +02001951 msg = skip_blank_lines(msg);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001952
1953 /* These formats treat the title line specially. */
Eric Wong9f23e042016-06-05 04:46:39 +00001954 if (pp->fmt == CMIT_FMT_ONELINE || cmit_fmt_is_mail(pp->fmt))
Jeff King6bf13942011-05-26 18:27:49 -04001955 pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001956
1957 beginning_of_body = sb->len;
Jeff King6bf13942011-05-26 18:27:49 -04001958 if (pp->fmt != CMIT_FMT_ONELINE)
1959 pp_remainder(pp, &msg, sb, indent);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001960 strbuf_rtrim(sb);
1961
1962 /* Make sure there is an EOLN for the non-oneline case */
Jeff King6bf13942011-05-26 18:27:49 -04001963 if (pp->fmt != CMIT_FMT_ONELINE)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001964 strbuf_addch(sb, '\n');
1965
1966 /*
1967 * The caller may append additional body text in e-mail
1968 * format. Make sure we did not strip the blank line
1969 * between the header and the body.
1970 */
Eric Wong9f23e042016-06-05 04:46:39 +00001971 if (cmit_fmt_is_mail(pp->fmt) && sb->len <= beginning_of_body)
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001972 strbuf_addch(sb, '\n');
Johannes Schindelina97a7462009-10-09 12:21:57 +02001973
Jeff Kingb66103c2014-06-10 17:41:39 -04001974 unuse_commit_buffer(commit, reencoded);
Johannes Schindelin93fc05e2007-11-04 19:15:06 +00001975}
Jeff King8b8a5372011-05-26 18:27:24 -04001976
1977void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
1978 struct strbuf *sb)
1979{
1980 struct pretty_print_context pp = {0};
Jeff King6bf13942011-05-26 18:27:49 -04001981 pp.fmt = fmt;
1982 pretty_print_commit(&pp, commit, sb);
Jeff King8b8a5372011-05-26 18:27:24 -04001983}