]> git.ipfire.org Git - thirdparty/git.git/blame - pretty.c
Makefile: add QUIET_GEN to "tags" and "TAGS" targets
[thirdparty/git.git] / pretty.c
CommitLineData
93fc05eb 1#include "cache.h"
b2141fc1 2#include "config.h"
93fc05eb 3#include "commit.h"
93fc05eb
JS
4#include "utf8.h"
5#include "diff.h"
6#include "revision.h"
c455c87c 7#include "string-list.h"
e0cbc397 8#include "mailmap.h"
3b3d443f 9#include "log-tree.h"
a97a7468 10#include "notes.h"
c002922a 11#include "color.h"
8f8f5476 12#include "reflog-walk.h"
f6667c5e 13#include "gpg-interface.h"
d9f31fbf 14#include "trailer.h"
93fc05eb 15
93fc05eb 16static char *user_format;
40957891
WP
17static struct cmt_fmt_map {
18 const char *name;
19 enum cmit_fmt format;
20 int is_tformat;
0893eec8 21 int expand_tabs_in_log;
2d7671ef 22 int is_alias;
618a8550 23 enum date_mode_type default_date_mode_type;
2d7671ef 24 const char *user_format;
40957891 25} *commit_formats;
8028184e 26static size_t builtin_formats_len;
40957891 27static size_t commit_formats_len;
8028184e 28static size_t commit_formats_alloc;
40957891 29static struct cmt_fmt_map *find_commit_format(const char *sought);
93fc05eb 30
b9c7d6e4
JK
31int commit_format_is_empty(enum cmit_fmt fmt)
32{
33 return fmt == CMIT_FMT_USERFORMAT && !*user_format;
34}
35
36407548
NS
36static 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
8028184e 45static int git_pretty_formats_config(const char *var, const char *value, void *cb)
93fc05eb 46{
8028184e
WP
47 struct cmt_fmt_map *commit_format = NULL;
48 const char *name;
49 const char *fmt;
93fc05eb 50 int i;
8028184e 51
95b567c7 52 if (!skip_prefix(var, "pretty.", &name))
8028184e
WP
53 return 0;
54
8028184e
WP
55 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];
95a2618f 71 memset(commit_format, 0, sizeof(*commit_format));
8028184e
WP
72 commit_formats_len++;
73 }
74
75 commit_format->name = xstrdup(name);
76 commit_format->format = CMIT_FMT_USERFORMAT;
a26bc613
TA
77 if (git_config_string(&fmt, var, value))
78 return -1;
79
e3f1da98
RS
80 if (skip_prefix(fmt, "format:", &fmt))
81 commit_format->is_tformat = 0;
82 else if (skip_prefix(fmt, "tformat:", &fmt) || strchr(fmt, '%'))
8028184e
WP
83 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
40957891 91static void setup_commit_formats(void)
93fc05eb 92{
40957891 93 struct cmt_fmt_map builtin_formats[] = {
0893eec8 94 { "raw", CMIT_FMT_RAW, 0, 0 },
fe37a9c5 95 { "medium", CMIT_FMT_MEDIUM, 0, 8 },
0893eec8
JH
96 { "short", CMIT_FMT_SHORT, 0, 0 },
97 { "email", CMIT_FMT_EMAIL, 0, 0 },
9f23e040 98 { "mboxrd", CMIT_FMT_MBOXRD, 0, 0 },
fe37a9c5
JH
99 { "fuller", CMIT_FMT_FULLER, 0, 8 },
100 { "full", CMIT_FMT_FULL, 0, 8 },
1f0fc1db
DL
101 { "oneline", CMIT_FMT_ONELINE, 1, 0 },
102 { "reference", CMIT_FMT_USERFORMAT, 1, 0,
103 0, DATE_SHORT, "%C(auto)%h (%s, %ad)" },
5a59a230
NTND
104 /*
105 * Please update $__git_log_pretty_formats in
106 * git-completion.bash when you add new formats.
107 */
4da45bef 108 };
40957891 109 commit_formats_len = ARRAY_SIZE(builtin_formats);
8028184e
WP
110 builtin_formats_len = commit_formats_len;
111 ALLOC_GROW(commit_formats, commit_formats_len, commit_formats_alloc);
921d49be
RS
112 COPY_ARRAY(commit_formats, builtin_formats,
113 ARRAY_SIZE(builtin_formats));
8028184e
WP
114
115 git_config(git_pretty_formats_config, NULL);
40957891
WP
116}
117
2d7671ef
WP
118static struct cmt_fmt_map *find_commit_format_recursive(const char *sought,
119 const char *original,
120 int num_redirections)
40957891
WP
121{
122 struct cmt_fmt_map *found = NULL;
123 size_t found_match_len = 0;
124 int i;
125
2d7671ef
WP
126 if (num_redirections >= commit_formats_len)
127 die("invalid --pretty format: "
128 "'%s' references an alias which points to itself",
129 original);
40957891
WP
130
131 for (i = 0; i < commit_formats_len; i++) {
132 size_t match_len;
133
59556548 134 if (!starts_with(commit_formats[i].name, sought))
40957891
WP
135 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 }
2d7671ef
WP
143
144 if (found && found->is_alias) {
145 found = find_commit_format_recursive(found->user_format,
146 original,
147 num_redirections+1);
148 }
149
40957891
WP
150 return found;
151}
152
2d7671ef
WP
153static 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
40957891
WP
161void get_commit_format(const char *arg, struct rev_info *rev)
162{
163 struct cmt_fmt_map *commit_format;
93fc05eb 164
4da45bef 165 rev->use_terminator = 0;
c75e7ad2 166 if (!arg) {
4da45bef
JH
167 rev->commit_format = CMIT_FMT_DEFAULT;
168 return;
169 }
e3f1da98
RS
170 if (skip_prefix(arg, "format:", &arg)) {
171 save_user_format(rev, arg, 0);
4da45bef 172 return;
93fc05eb 173 }
40957891 174
e3f1da98 175 if (!*arg || skip_prefix(arg, "tformat:", &arg) || strchr(arg, '%')) {
36407548
NS
176 save_user_format(rev, arg, 1);
177 return;
178 }
93fc05eb 179
40957891
WP
180 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;
0893eec8 186 rev->expand_tabs_in_log_default = commit_format->expand_tabs_in_log;
618a8550
DL
187 if (!rev->date_mode_explicit && commit_format->default_date_mode_type)
188 rev->date_mode.type = commit_format->default_date_mode_type;
8028184e
WP
189 if (commit_format->format == CMIT_FMT_USERFORMAT) {
190 save_user_format(rev, commit_format->user_format,
191 commit_format->is_tformat);
192 }
93fc05eb
JS
193}
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 */
cc571142 214static int non_ascii(int ch)
93fc05eb 215{
c2e9364a 216 return !isascii(ch) || ch == '\033';
93fc05eb
JS
217}
218
28e9cf65
JS
219int 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
4d03c18a
JK
231static 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
41dd00ba 253static int needs_rfc822_quoting(const char *s, int len)
4d03c18a
JK
254{
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
f9b7204b
JS
262static 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
4d03c18a
JK
273static 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
0fcec2ce
JS
294enum rfc2047_type {
295 RFC2047_SUBJECT,
78273520 296 RFC2047_ADDRESS
0fcec2ce
JS
297};
298
299static int is_rfc2047_special(char ch, enum rfc2047_type type)
93fc05eb 300{
0fcec2ce
JS
301 /*
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))
317 return 1;
318
319 /*
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 == '_')
94f6cdf6
JS
325 return 1;
326
0fcec2ce
JS
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 == '/');
93fc05eb
JS
349}
350
da55ff3d 351static int needs_rfc2047_encoding(const char *line, int len)
93fc05eb 352{
a1f6baa5 353 int i;
93fc05eb
JS
354
355 for (i = 0; i < len; i++) {
356 int ch = line[i];
c22e7de3 357 if (non_ascii(ch) || ch == '\n')
41dd00ba 358 return 1;
93fc05eb 359 if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
41dd00ba 360 return 1;
93fc05eb 361 }
93fc05eb 362
41dd00ba
JS
363 return 0;
364}
365
6cd3c053 366static void add_rfc2047(struct strbuf *sb, const char *line, size_t len,
41dd00ba
JS
367 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
93fc05eb
JS
373 strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
374 strbuf_addf(sb, "=?%s?q?", encoding);
a1f6baa5 375 line_len += strlen(encoding) + 5; /* 5 for =??q? */
6cd3c053
KS
376
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;
94f6cdf6
JS
392
393 /*
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 */
a1f6baa5 400
6cd3c053
KS
401 if (line_len + encoded_len + 2 > max_encoded_length) {
402 /* It won't fit with trailing "?=" --- break the line */
a1f6baa5
JK
403 strbuf_addf(sb, "?=\n =?%s?q?", encoding);
404 line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
405 }
406
6cd3c053
KS
407 for (i = 0; i < chrlen; i++)
408 strbuf_addf(sb, encoded_fmt, p[i]);
409 line_len += encoded_len;
93fc05eb 410 }
93fc05eb
JS
411 strbuf_addstr(sb, "?=");
412}
413
d1053246 414const char *show_ident_date(const struct ident_split *ident,
a5481a6c 415 const struct date_mode *mode)
9dbe7c3d 416{
dddbad72 417 timestamp_t date = 0;
3f419d45 418 long tz = 0;
9dbe7c3d
RS
419
420 if (ident->date_begin && ident->date_end)
1aeb7e75 421 date = parse_timestamp(ident->date_begin, NULL, 10);
1dca155f
JK
422 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);
3f419d45 427 if (tz >= INT_MAX || tz <= INT_MIN)
1dca155f
JK
428 tz = 0;
429 }
9dbe7c3d
RS
430 return show_date(date, tz, mode);
431}
432
10f2fbff 433void pp_user_info(struct pretty_print_context *pp,
6bf13944
JK
434 const char *what, struct strbuf *sb,
435 const char *line, const char *encoding)
93fc05eb 436{
3c020bd5 437 struct ident_split ident;
9dbe7c3d 438 char *line_end;
dffd325f
AP
439 const char *mailbuf, *namebuf;
440 size_t namelen, maillen;
41dd00ba 441 int max_length = 78; /* per rfc2822 */
93fc05eb 442
6bf13944 443 if (pp->fmt == CMIT_FMT_ONELINE)
93fc05eb 444 return;
3c020bd5 445
30e77bcb
RS
446 line_end = strchrnul(line, '\n');
447 if (split_ident_line(&ident, line, line_end - line))
93fc05eb 448 return;
3c020bd5 449
dffd325f
AP
450 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
9f23e040 458 if (cmit_fmt_is_mail(pp->fmt)) {
662cc30c 459 if (pp->from_ident && ident_cmp(pp->from_ident, &ident)) {
a9080475
JK
460 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
93fc05eb 476 strbuf_addstr(sb, "From: ");
19d097e3
EB
477 if (pp->encode_email_headers &&
478 needs_rfc2047_encoding(namebuf, namelen)) {
a0511b39 479 add_rfc2047(sb, namebuf, namelen,
dffd325f 480 encoding, RFC2047_ADDRESS);
41dd00ba 481 max_length = 76; /* per rfc2047 */
a0511b39 482 } else if (needs_rfc822_quoting(namebuf, namelen)) {
4d03c18a 483 struct strbuf quoted = STRBUF_INIT;
a0511b39 484 add_rfc822_quoted(&quoted, namebuf, namelen);
41dd00ba
JS
485 strbuf_add_wrapped_bytes(sb, quoted.buf, quoted.len,
486 -6, 1, max_length);
4d03c18a 487 strbuf_release(&quoted);
41dd00ba 488 } else {
a0511b39 489 strbuf_add_wrapped_bytes(sb, namebuf, namelen,
dffd325f 490 -6, 1, max_length);
4d03c18a 491 }
dffd325f 492
97a17e77
RS
493 if (max_length <
494 last_line_length(sb) + strlen(" <") + maillen + strlen(">"))
495 strbuf_addch(sb, '\n');
a0511b39 496 strbuf_addf(sb, " <%.*s>\n", (int)maillen, mailbuf);
93fc05eb 497 } else {
a0511b39
RS
498 strbuf_addf(sb, "%s: %.*s%.*s <%.*s>\n", what,
499 (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0, " ",
500 (int)namelen, namebuf, (int)maillen, mailbuf);
93fc05eb 501 }
dffd325f 502
6bf13944 503 switch (pp->fmt) {
93fc05eb 504 case CMIT_FMT_MEDIUM:
9dbe7c3d 505 strbuf_addf(sb, "Date: %s\n",
a5481a6c 506 show_ident_date(&ident, &pp->date_mode));
93fc05eb
JS
507 break;
508 case CMIT_FMT_EMAIL:
9f23e040 509 case CMIT_FMT_MBOXRD:
9dbe7c3d 510 strbuf_addf(sb, "Date: %s\n",
a5481a6c 511 show_ident_date(&ident, DATE_MODE(RFC2822)));
93fc05eb
JS
512 break;
513 case CMIT_FMT_FULLER:
9dbe7c3d 514 strbuf_addf(sb, "%sDate: %s\n", what,
a5481a6c 515 show_ident_date(&ident, &pp->date_mode));
93fc05eb
JS
516 break;
517 default:
518 /* notin' */
519 break;
520 }
521}
522
77356122 523static int is_blank_line(const char *line, int *len_p)
93fc05eb
JS
524{
525 int len = *len_p;
35b2fa5b 526 while (len && isspace(line[len - 1]))
93fc05eb
JS
527 len--;
528 *len_p = len;
529 return !len;
530}
531
77356122 532const char *skip_blank_lines(const char *msg)
a0109668
RS
533{
534 for (;;) {
535 int linelen = get_one_line(msg);
536 int ll = linelen;
537 if (!linelen)
538 break;
77356122 539 if (!is_blank_line(msg, &ll))
a0109668
RS
540 break;
541 msg += linelen;
542 }
543 return msg;
544}
545
6bf13944
JK
546static void add_merge_info(const struct pretty_print_context *pp,
547 struct strbuf *sb, const struct commit *commit)
93fc05eb
JS
548{
549 struct commit_list *parent = commit->parents;
550
9f23e040 551 if ((pp->fmt == CMIT_FMT_ONELINE) || (cmit_fmt_is_mail(pp->fmt)) ||
93fc05eb
JS
552 !parent || !parent->next)
553 return;
554
555 strbuf_addstr(sb, "Merge:");
556
557 while (parent) {
a94bb683
RS
558 struct object_id *oidp = &parent->item->object.oid;
559 strbuf_addch(sb, ' ');
6bf13944 560 if (pp->abbrev)
30e677e0 561 strbuf_add_unique_abbrev(sb, oidp, pp->abbrev);
a94bb683
RS
562 else
563 strbuf_addstr(sb, oid_to_hex(oidp));
93fc05eb 564 parent = parent->next;
93fc05eb
JS
565 }
566 strbuf_addch(sb, '\n');
567}
568
fe6eb7f2 569static char *get_header(const char *msg, const char *key)
93fc05eb 570{
fe6eb7f2
JK
571 size_t len;
572 const char *v = find_commit_header(msg, key, &len);
573 return v ? xmemdupz(v, len) : NULL;
93fc05eb
JS
574}
575
576static char *replace_encoding_header(char *buf, const char *encoding)
577{
f285a2d7 578 struct strbuf tmp = STRBUF_INIT;
93fc05eb
JS
579 size_t start, len;
580 char *cp = buf;
581
582 /* guess if there is an encoding header before a \n\n */
68d6d6eb 583 while (!starts_with(cp, "encoding ")) {
93fc05eb
JS
584 cp = strchr(cp, '\n');
585 if (!cp || *++cp == '\n')
586 return buf;
587 }
588 start = cp - buf;
589 cp = strchr(cp, '\n');
590 if (!cp)
591 return buf; /* should not happen but be defensive */
592 len = cp + 1 - (buf + start);
593
93fc05eb
JS
594 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
595 if (is_encoding_utf8(encoding)) {
596 /* we have re-coded to UTF-8; drop the header */
597 strbuf_remove(&tmp, start, len);
598 } else {
599 /* just replaces XXXX in 'encoding XXXX\n' */
600 strbuf_splice(&tmp, start + strlen("encoding "),
601 len - strlen("encoding \n"),
602 encoding, strlen(encoding));
603 }
604 return strbuf_detach(&tmp, NULL);
605}
606
424510ed
SB
607const char *repo_logmsg_reencode(struct repository *r,
608 const struct commit *commit,
609 char **commit_encoding,
610 const char *output_encoding)
93fc05eb 611{
330db18c 612 static const char *utf8 = "UTF-8";
93fc05eb
JS
613 const char *use_encoding;
614 char *encoding;
424510ed 615 const char *msg = repo_get_commit_buffer(r, commit, NULL);
93fc05eb
JS
616 char *out;
617
5a10d236
NTND
618 if (!output_encoding || !*output_encoding) {
619 if (commit_encoding)
fe6eb7f2 620 *commit_encoding = get_header(msg, "encoding");
dd0d388c 621 return msg;
5a10d236 622 }
fe6eb7f2 623 encoding = get_header(msg, "encoding");
5a10d236
NTND
624 if (commit_encoding)
625 *commit_encoding = encoding;
93fc05eb 626 use_encoding = encoding ? encoding : utf8;
be5c9fb9
JK
627 if (same_encoding(use_encoding, output_encoding)) {
628 /*
629 * No encoding work to be done. If we have no encoding header
630 * at all, then there's nothing to do, and we can return the
631 * message verbatim (whether newly allocated or not).
632 */
633 if (!encoding)
634 return msg;
635
636 /*
637 * Otherwise, we still want to munge the encoding header in the
638 * result, which will be done by modifying the buffer. If we
639 * are using a fresh copy, we can reuse it. But if we are using
b66103c3
JK
640 * the cached copy from get_commit_buffer, we need to duplicate it
641 * to avoid munging the cached copy.
be5c9fb9 642 */
424510ed 643 if (msg == get_cached_commit_buffer(r, commit, NULL))
b66103c3
JK
644 out = xstrdup(msg);
645 else
646 out = (char *)msg;
be5c9fb9
JK
647 }
648 else {
649 /*
650 * There's actual encoding work to do. Do the reencoding, which
651 * still leaves the header to be replaced in the next step. At
652 * this point, we are done with msg. If we allocated a fresh
653 * copy, we can free it.
654 */
655 out = reencode_string(msg, output_encoding, use_encoding);
b66103c3 656 if (out)
424510ed 657 repo_unuse_commit_buffer(r, commit, msg);
be5c9fb9
JK
658 }
659
660 /*
661 * This replacement actually consumes the buffer we hand it, so we do
662 * not have to worry about freeing the old "out" here.
663 */
93fc05eb
JS
664 if (out)
665 out = replace_encoding_header(out, output_encoding);
666
5a10d236
NTND
667 if (!commit_encoding)
668 free(encoding);
dd0d388c
JK
669 /*
670 * If the re-encoding failed, out might be NULL here; in that
671 * case we just return the commit message verbatim.
672 */
673 return out ? out : msg;
674}
675
ea02ffa3
AP
676static int mailmap_name(const char **email, size_t *email_len,
677 const char **name, size_t *name_len)
e0cbc397 678{
c455c87c 679 static struct string_list *mail_map;
e0cbc397 680 if (!mail_map) {
ca56dadb 681 CALLOC_ARRAY(mail_map, 1);
4e168333 682 read_mailmap(mail_map);
e0cbc397 683 }
d20d654f 684 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
e0cbc397
JS
685}
686
c3a670de 687static size_t format_person_part(struct strbuf *sb, char part,
a5481a6c
JK
688 const char *msg, int len,
689 const struct date_mode *dmode)
93fc05eb 690{
c3a670de
MC
691 /* currently all placeholders have same length */
692 const int placeholder_len = 2;
4b340cfa 693 struct ident_split s;
ea02ffa3
AP
694 const char *name, *mail;
695 size_t maillen, namelen;
93fc05eb 696
4b340cfa 697 if (split_ident_line(&s, msg, len) < 0)
c3a670de
MC
698 goto skip;
699
ea02ffa3
AP
700 name = s.name_begin;
701 namelen = s.name_end - s.name_begin;
702 mail = s.mail_begin;
703 maillen = s.mail_end - s.mail_begin;
704
d8b8217c 705 if (part == 'N' || part == 'E' || part == 'L') /* mailmap lookup */
ea02ffa3 706 mailmap_name(&mail, &maillen, &name, &namelen);
e0cbc397 707 if (part == 'n' || part == 'N') { /* name */
ea02ffa3 708 strbuf_add(sb, name, namelen);
c3a670de 709 return placeholder_len;
cde75e59 710 }
d20d654f 711 if (part == 'e' || part == 'E') { /* email */
ea02ffa3 712 strbuf_add(sb, mail, maillen);
c3a670de 713 return placeholder_len;
cde75e59 714 }
d8b8217c
PB
715 if (part == 'l' || part == 'L') { /* local-part */
716 const char *at = memchr(mail, '@', maillen);
717 if (at)
718 maillen = at - mail;
719 strbuf_add(sb, mail, maillen);
720 return placeholder_len;
721 }
93fc05eb 722
4b340cfa 723 if (!s.date_begin)
c3a670de 724 goto skip;
93fc05eb 725
cde75e59 726 if (part == 't') { /* date, UNIX timestamp */
4b340cfa 727 strbuf_add(sb, s.date_begin, s.date_end - s.date_begin);
c3a670de 728 return placeholder_len;
cde75e59 729 }
93fc05eb 730
cde75e59
RS
731 switch (part) {
732 case 'd': /* date */
9dbe7c3d 733 strbuf_addstr(sb, show_ident_date(&s, dmode));
c3a670de 734 return placeholder_len;
cde75e59 735 case 'D': /* date, RFC2822 style */
a5481a6c 736 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(RFC2822)));
c3a670de 737 return placeholder_len;
cde75e59 738 case 'r': /* date, relative */
a5481a6c 739 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(RELATIVE)));
c3a670de 740 return placeholder_len;
466fb674 741 case 'i': /* date, ISO 8601-like */
a5481a6c 742 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(ISO8601)));
c3a670de 743 return placeholder_len;
466fb674 744 case 'I': /* date, ISO 8601 strict */
a5481a6c 745 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(ISO8601_STRICT)));
466fb674 746 return placeholder_len;
0df62117
RS
747 case 's':
748 strbuf_addstr(sb, show_ident_date(&s, DATE_MODE(SHORT)));
749 return placeholder_len;
cde75e59 750 }
c3a670de
MC
751
752skip:
753 /*
4b340cfa
JH
754 * reading from either a bogus commit, or a reflog entry with
755 * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
756 * to compute a valid return value.
c3a670de
MC
757 */
758 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
759 || part == 'D' || part == 'r' || part == 'i')
760 return placeholder_len;
761
762 return 0; /* unknown placeholder */
93fc05eb
JS
763}
764
f29d5958
RS
765struct chunk {
766 size_t off;
767 size_t len;
768};
769
a5752342
NTND
770enum flush_type {
771 no_flush,
772 flush_right,
773 flush_left,
1640632b 774 flush_left_and_steal,
a5752342
NTND
775 flush_both
776};
777
a7f01c6b
NTND
778enum trunc_type {
779 trunc_none,
780 trunc_left,
781 trunc_middle,
782 trunc_right
783};
784
f29d5958 785struct format_commit_context {
018b9deb 786 struct repository *repository;
f29d5958 787 const struct commit *commit;
dd2e794a 788 const struct pretty_print_context *pretty_ctx;
f53bd743
RS
789 unsigned commit_header_parsed:1;
790 unsigned commit_message_parsed:1;
ffb6d7d5 791 struct signature_check signature_check;
a5752342 792 enum flush_type flush_type;
a7f01c6b 793 enum trunc_type truncate;
b000c59b 794 const char *message;
0940a76d 795 char *commit_encoding;
02edd56b 796 size_t width, indent1, indent2;
a95f067e 797 int auto_color;
a5752342 798 int padding;
f29d5958
RS
799
800 /* These offsets are relative to the start of the commit message. */
f29d5958
RS
801 struct chunk author;
802 struct chunk committer;
f53bd743
RS
803 size_t message_off;
804 size_t subject_off;
f29d5958 805 size_t body_off;
b9c62321
RS
806
807 /* The following ones are relative to the result struct strbuf. */
02edd56b 808 size_t wrap_start;
f29d5958
RS
809};
810
811static void parse_commit_header(struct format_commit_context *context)
93fc05eb 812{
177b29dc 813 const char *msg = context->message;
93fc05eb 814 int i;
f29d5958 815
f53bd743 816 for (i = 0; msg[i]; i++) {
e3f1da98 817 const char *name;
f29d5958
RS
818 int eol;
819 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
820 ; /* do nothing */
821
f29d5958 822 if (i == eol) {
f53bd743 823 break;
e3f1da98
RS
824 } else if (skip_prefix(msg + i, "author ", &name)) {
825 context->author.off = name - msg;
826 context->author.len = msg + eol - name;
827 } else if (skip_prefix(msg + i, "committer ", &name)) {
828 context->committer.off = name - msg;
829 context->committer.len = msg + eol - name;
f29d5958
RS
830 }
831 i = eol;
832 }
f53bd743 833 context->message_off = i;
f29d5958
RS
834 context->commit_header_parsed = 1;
835}
836
46d164b0
SB
837static int istitlechar(char c)
838{
839 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
840 (c >= '0' && c <= '9') || c == '.' || c == '_';
841}
842
47d4676a 843void format_sanitized_subject(struct strbuf *sb, const char *msg, size_t len)
46d164b0
SB
844{
845 size_t trimlen;
871d21d4 846 size_t start_len = sb->len;
46d164b0 847 int space = 2;
47d4676a 848 int i;
46d164b0 849
47d4676a
HV
850 for (i = 0; i < len; i++) {
851 if (istitlechar(msg[i])) {
46d164b0
SB
852 if (space == 1)
853 strbuf_addch(sb, '-');
854 space = 0;
47d4676a
HV
855 strbuf_addch(sb, msg[i]);
856 if (msg[i] == '.')
857 while (msg[i+1] == '.')
858 i++;
46d164b0
SB
859 } else
860 space |= 1;
861 }
862
863 /* trim any trailing '.' or '-' characters */
864 trimlen = 0;
871d21d4
SB
865 while (sb->len - trimlen > start_len &&
866 (sb->buf[sb->len - 1 - trimlen] == '.'
867 || sb->buf[sb->len - 1 - trimlen] == '-'))
46d164b0
SB
868 trimlen++;
869 strbuf_remove(sb, sb->len - trimlen, trimlen);
870}
871
cec08717
RS
872const char *format_subject(struct strbuf *sb, const char *msg,
873 const char *line_separator)
88c44735
RS
874{
875 int first = 1;
876
877 for (;;) {
878 const char *line = msg;
879 int linelen = get_one_line(line);
880
881 msg += linelen;
77356122 882 if (!linelen || is_blank_line(line, &linelen))
88c44735
RS
883 break;
884
f53bd743
RS
885 if (!sb)
886 continue;
88c44735
RS
887 strbuf_grow(sb, linelen + 2);
888 if (!first)
889 strbuf_addstr(sb, line_separator);
890 strbuf_add(sb, line, linelen);
891 first = 0;
892 }
893 return msg;
894}
895
f53bd743
RS
896static void parse_commit_message(struct format_commit_context *c)
897{
177b29dc
PN
898 const char *msg = c->message + c->message_off;
899 const char *start = c->message;
f53bd743 900
77356122 901 msg = skip_blank_lines(msg);
f53bd743
RS
902 c->subject_off = msg - start;
903
904 msg = format_subject(NULL, msg, NULL);
77356122 905 msg = skip_blank_lines(msg);
f53bd743
RS
906 c->body_off = msg - start;
907
908 c->commit_message_parsed = 1;
909}
910
02edd56b
RS
911static void strbuf_wrap(struct strbuf *sb, size_t pos,
912 size_t width, size_t indent1, size_t indent2)
913{
914 struct strbuf tmp = STRBUF_INIT;
915
916 if (pos)
917 strbuf_add(&tmp, sb->buf, pos);
918 strbuf_add_wrapped_text(&tmp, sb->buf + pos,
919 (int) indent1, (int) indent2, (int) width);
920 strbuf_swap(&tmp, sb);
921 strbuf_release(&tmp);
922}
923
924static void rewrap_message_tail(struct strbuf *sb,
925 struct format_commit_context *c,
926 size_t new_width, size_t new_indent1,
927 size_t new_indent2)
928{
929 if (c->width == new_width && c->indent1 == new_indent1 &&
930 c->indent2 == new_indent2)
931 return;
32ca4249 932 if (c->wrap_start < sb->len)
02edd56b
RS
933 strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
934 c->wrap_start = sb->len;
935 c->width = new_width;
936 c->indent1 = new_indent1;
937 c->indent2 = new_indent2;
938}
939
cd1957f5
JK
940static int format_reflog_person(struct strbuf *sb,
941 char part,
942 struct reflog_walk_info *log,
a5481a6c 943 const struct date_mode *dmode)
cd1957f5
JK
944{
945 const char *ident;
946
947 if (!log)
948 return 2;
949
950 ident = get_reflog_ident(log);
951 if (!ident)
952 return 2;
953
954 return format_person_part(sb, part, ident, strlen(ident), dmode);
955}
956
fcabc2d9
NTND
957static size_t parse_color(struct strbuf *sb, /* in UTF-8 */
958 const char *placeholder,
959 struct format_commit_context *c)
960{
e3f1da98 961 const char *rest = placeholder;
18fb7ffc 962 const char *basic_color = NULL;
e3f1da98 963
fcabc2d9
NTND
964 if (placeholder[1] == '(') {
965 const char *begin = placeholder + 2;
966 const char *end = strchr(begin, ')');
967 char color[COLOR_MAXLEN];
968
969 if (!end)
970 return 0;
18fb7ffc 971
e3f1da98 972 if (skip_prefix(begin, "auto,", &begin)) {
fcabc2d9
NTND
973 if (!want_color(c->pretty_ctx->color))
974 return end - placeholder + 1;
18fb7ffc
JK
975 } else if (skip_prefix(begin, "always,", &begin)) {
976 /* nothing to do; we do not respect want_color at all */
977 } else {
978 /* the default is the same as "auto" */
979 if (!want_color(c->pretty_ctx->color))
980 return end - placeholder + 1;
fcabc2d9 981 }
18fb7ffc 982
f6c5a296
JK
983 if (color_parse_mem(begin, end - begin, color) < 0)
984 die(_("unable to parse --pretty format"));
fcabc2d9
NTND
985 strbuf_addstr(sb, color);
986 return end - placeholder + 1;
987 }
18fb7ffc
JK
988
989 /*
990 * We handle things like "%C(red)" above; for historical reasons, there
991 * are a few colors that can be specified without parentheses (and
992 * they cannot support things like "auto" or "always" at all).
993 */
e3f1da98 994 if (skip_prefix(placeholder + 1, "red", &rest))
18fb7ffc 995 basic_color = GIT_COLOR_RED;
e3f1da98 996 else if (skip_prefix(placeholder + 1, "green", &rest))
18fb7ffc 997 basic_color = GIT_COLOR_GREEN;
e3f1da98 998 else if (skip_prefix(placeholder + 1, "blue", &rest))
18fb7ffc 999 basic_color = GIT_COLOR_BLUE;
e3f1da98 1000 else if (skip_prefix(placeholder + 1, "reset", &rest))
18fb7ffc
JK
1001 basic_color = GIT_COLOR_RESET;
1002
1003 if (basic_color && want_color(c->pretty_ctx->color))
1004 strbuf_addstr(sb, basic_color);
1005
e3f1da98 1006 return rest - placeholder;
fcabc2d9
NTND
1007}
1008
9a1180fc 1009static size_t parse_padding_placeholder(const char *placeholder,
a5752342
NTND
1010 struct format_commit_context *c)
1011{
1012 const char *ch = placeholder;
1013 enum flush_type flush_type;
1014 int to_column = 0;
1015
1016 switch (*ch++) {
1017 case '<':
1018 flush_type = flush_right;
1019 break;
1020 case '>':
1021 if (*ch == '<') {
1022 flush_type = flush_both;
1023 ch++;
1640632b
NTND
1024 } else if (*ch == '>') {
1025 flush_type = flush_left_and_steal;
1026 ch++;
a5752342
NTND
1027 } else
1028 flush_type = flush_left;
1029 break;
1030 default:
1031 return 0;
1032 }
1033
1034 /* the next value means "wide enough to that column" */
1035 if (*ch == '|') {
1036 to_column = 1;
1037 ch++;
1038 }
1039
1040 if (*ch == '(') {
1041 const char *start = ch + 1;
a7f01c6b 1042 const char *end = start + strcspn(start, ",)");
a5752342
NTND
1043 char *next;
1044 int width;
1045 if (!end || end == start)
1046 return 0;
066790d7 1047 width = strtol(start, &next, 10);
a5752342
NTND
1048 if (next == start || width == 0)
1049 return 0;
066790d7
NTND
1050 if (width < 0) {
1051 if (to_column)
1052 width += term_columns();
1053 if (width < 0)
1054 return 0;
1055 }
a5752342
NTND
1056 c->padding = to_column ? -width : width;
1057 c->flush_type = flush_type;
a7f01c6b
NTND
1058
1059 if (*end == ',') {
1060 start = end + 1;
1061 end = strchr(start, ')');
1062 if (!end || end == start)
1063 return 0;
59556548 1064 if (starts_with(start, "trunc)"))
a7f01c6b 1065 c->truncate = trunc_right;
59556548 1066 else if (starts_with(start, "ltrunc)"))
a7f01c6b 1067 c->truncate = trunc_left;
59556548 1068 else if (starts_with(start, "mtrunc)"))
a7f01c6b
NTND
1069 c->truncate = trunc_middle;
1070 else
1071 return 0;
1072 } else
1073 c->truncate = trunc_none;
1074
a5752342
NTND
1075 return end - placeholder + 1;
1076 }
1077 return 0;
1078}
1079
4f732e0f
AW
1080static int match_placeholder_arg_value(const char *to_parse, const char *candidate,
1081 const char **end, const char **valuestart,
1082 size_t *valuelen)
84ff053d
TB
1083{
1084 const char *p;
1085
1086 if (!(skip_prefix(to_parse, candidate, &p)))
1087 return 0;
4f732e0f
AW
1088 if (valuestart) {
1089 if (*p == '=') {
1090 *valuestart = p + 1;
1091 *valuelen = strcspn(*valuestart, ",)");
1092 p = *valuestart + *valuelen;
1093 } else {
1094 if (*p != ',' && *p != ')')
1095 return 0;
1096 *valuestart = NULL;
1097 *valuelen = 0;
1098 }
1099 }
84ff053d
TB
1100 if (*p == ',') {
1101 *end = p + 1;
1102 return 1;
1103 }
1104 if (*p == ')') {
1105 *end = p;
1106 return 1;
1107 }
1108 return 0;
1109}
1110
4f732e0f
AW
1111static int match_placeholder_bool_arg(const char *to_parse, const char *candidate,
1112 const char **end, int *val)
1113{
1114 const char *argval;
1115 char *strval;
1116 size_t arglen;
1117 int v;
1118
1119 if (!match_placeholder_arg_value(to_parse, candidate, end, &argval, &arglen))
1120 return 0;
1121
1122 if (!argval) {
1123 *val = 1;
1124 return 1;
1125 }
1126
1127 strval = xstrndup(argval, arglen);
1128 v = git_parse_maybe_bool(strval);
1129 free(strval);
1130
1131 if (v == -1)
1132 return 0;
1133
1134 *val = v;
1135
1136 return 1;
1137}
1138
250bea0c
AW
1139static int format_trailer_match_cb(const struct strbuf *key, void *ud)
1140{
1141 const struct string_list *list = ud;
1142 const struct string_list_item *item;
1143
1144 for_each_string_list_item (item, list) {
1145 if (key->len == (uintptr_t)item->util &&
1146 !strncasecmp(item->string, key->buf, key->len))
1147 return 1;
1148 }
1149 return 0;
1150}
1151
90563aed
HV
1152int format_set_trailers_options(struct process_trailer_options *opts,
1153 struct string_list *filter_list,
1154 struct strbuf *sepbuf,
1155 struct strbuf *kvsepbuf,
636a0aee
HV
1156 const char **arg,
1157 char **invalid_arg)
90563aed
HV
1158{
1159 for (;;) {
1160 const char *argval;
1161 size_t arglen;
1162
636a0aee
HV
1163 if (**arg == ')')
1164 break;
1165
90563aed
HV
1166 if (match_placeholder_arg_value(*arg, "key", arg, &argval, &arglen)) {
1167 uintptr_t len = arglen;
1168
1169 if (!argval)
1170 return -1;
1171
1172 if (len && argval[len - 1] == ':')
1173 len--;
1174 string_list_append(filter_list, argval)->util = (char *)len;
1175
1176 opts->filter = format_trailer_match_cb;
1177 opts->filter_data = filter_list;
1178 opts->only_trailers = 1;
1179 } else if (match_placeholder_arg_value(*arg, "separator", arg, &argval, &arglen)) {
1180 char *fmt;
1181
1182 strbuf_reset(sepbuf);
1183 fmt = xstrndup(argval, arglen);
1184 strbuf_expand(sepbuf, fmt, strbuf_expand_literal_cb, NULL);
1185 free(fmt);
1186 opts->separator = sepbuf;
1187 } else if (match_placeholder_arg_value(*arg, "key_value_separator", arg, &argval, &arglen)) {
1188 char *fmt;
1189
1190 strbuf_reset(kvsepbuf);
1191 fmt = xstrndup(argval, arglen);
1192 strbuf_expand(kvsepbuf, fmt, strbuf_expand_literal_cb, NULL);
1193 free(fmt);
1194 opts->key_value_separator = kvsepbuf;
1195 } else if (!match_placeholder_bool_arg(*arg, "only", arg, &opts->only_trailers) &&
1196 !match_placeholder_bool_arg(*arg, "unfold", arg, &opts->unfold) &&
1197 !match_placeholder_bool_arg(*arg, "keyonly", arg, &opts->key_only) &&
636a0aee
HV
1198 !match_placeholder_bool_arg(*arg, "valueonly", arg, &opts->value_only)) {
1199 if (invalid_arg) {
1200 size_t len = strcspn(*arg, ",)");
1201 *invalid_arg = xstrndup(*arg, len);
1202 }
1203 return -1;
1204 }
90563aed
HV
1205 }
1206 return 0;
1207}
1208
7e77df39
NTND
1209static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */
1210 const char *placeholder,
9fa708da 1211 void *context)
f29d5958
RS
1212{
1213 struct format_commit_context *c = context;
1214 const struct commit *commit = c->commit;
177b29dc 1215 const char *msg = c->message;
f29d5958 1216 struct commit_list *p;
47d4676a 1217 const char *arg, *eol;
fd2015b3 1218 size_t res;
ad6f028f 1219 char **slot;
93fc05eb 1220
93fc05eb 1221 /* these are independent of the commit */
fd2015b3
AW
1222 res = strbuf_expand_literal_cb(sb, placeholder, NULL);
1223 if (res)
1224 return res;
1225
cde75e59
RS
1226 switch (placeholder[0]) {
1227 case 'C':
59556548 1228 if (starts_with(placeholder + 1, "(auto)")) {
b15a3e00 1229 c->auto_color = want_color(c->pretty_ctx->color);
82b83da8 1230 if (c->auto_color && sb->len)
c99ad274 1231 strbuf_addstr(sb, GIT_COLOR_RESET);
a95f067e
NTND
1232 return 7; /* consumed 7 bytes, "C(auto)" */
1233 } else {
1234 int ret = parse_color(sb, placeholder, c);
1235 if (ret)
1236 c->auto_color = 0;
1237 /*
1238 * Otherwise, we decided to treat %C<unknown>
1239 * as a literal string, and the previous
1240 * %C(auto) is still valid.
1241 */
1242 return ret;
c002922a 1243 }
02edd56b
RS
1244 case 'w':
1245 if (placeholder[1] == '(') {
1246 unsigned long width = 0, indent1 = 0, indent2 = 0;
1247 char *next;
1248 const char *start = placeholder + 2;
1249 const char *end = strchr(start, ')');
1250 if (!end)
1251 return 0;
1252 if (end > start) {
1253 width = strtoul(start, &next, 10);
1254 if (*next == ',') {
1255 indent1 = strtoul(next + 1, &next, 10);
1256 if (*next == ',') {
1257 indent2 = strtoul(next + 1,
1258 &next, 10);
1259 }
1260 }
1261 if (*next != ')')
1262 return 0;
1263 }
1264 rewrap_message_tail(sb, c, width, indent1, indent2);
1265 return end - placeholder + 1;
1266 } else
1267 return 0;
a5752342
NTND
1268
1269 case '<':
1270 case '>':
9a1180fc 1271 return parse_padding_placeholder(placeholder, c);
cde75e59 1272 }
93fc05eb
JS
1273
1274 /* these depend on the commit */
1275 if (!commit->object.parsed)
109cd76d 1276 parse_object(the_repository, &commit->object.oid);
93fc05eb 1277
cde75e59
RS
1278 switch (placeholder[0]) {
1279 case 'H': /* commit hash */
a95f067e 1280 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
f2fd0760 1281 strbuf_addstr(sb, oid_to_hex(&commit->object.oid));
a95f067e 1282 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
c3a670de 1283 return 1;
cde75e59 1284 case 'h': /* abbreviated commit hash */
a95f067e 1285 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
30e677e0 1286 strbuf_add_unique_abbrev(sb, &commit->object.oid,
1eb47f16 1287 c->pretty_ctx->abbrev);
a95f067e 1288 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
c3a670de 1289 return 1;
cde75e59 1290 case 'T': /* tree hash */
2e27bd77 1291 strbuf_addstr(sb, oid_to_hex(get_commit_tree_oid(commit)));
c3a670de 1292 return 1;
cde75e59 1293 case 't': /* abbreviated tree hash */
2e27bd77 1294 strbuf_add_unique_abbrev(sb,
c89b6e13 1295 get_commit_tree_oid(commit),
1eb47f16 1296 c->pretty_ctx->abbrev);
c3a670de 1297 return 1;
cde75e59
RS
1298 case 'P': /* parent hashes */
1299 for (p = commit->parents; p; p = p->next) {
1300 if (p != commit->parents)
1301 strbuf_addch(sb, ' ');
f2fd0760 1302 strbuf_addstr(sb, oid_to_hex(&p->item->object.oid));
cde75e59 1303 }
c3a670de 1304 return 1;
cde75e59
RS
1305 case 'p': /* abbreviated parent hashes */
1306 for (p = commit->parents; p; p = p->next) {
1307 if (p != commit->parents)
1308 strbuf_addch(sb, ' ');
30e677e0 1309 strbuf_add_unique_abbrev(sb, &p->item->object.oid,
1eb47f16 1310 c->pretty_ctx->abbrev);
cde75e59 1311 }
c3a670de 1312 return 1;
cde75e59 1313 case 'm': /* left/right/bottom */
1df2d656 1314 strbuf_addstr(sb, get_revision_mark(NULL, commit));
c3a670de 1315 return 1;
3b3d443f 1316 case 'd':
a95f067e 1317 format_decorations(sb, commit, c->auto_color);
3b3d443f 1318 return 1;
9271095c 1319 case 'D':
9271095c
HJ
1320 format_decorations_extended(sb, commit, c->auto_color, "", ", ", "");
1321 return 1;
ad6f028f
IT
1322 case 'S': /* tag/branch like --source */
1323 if (!(c->pretty_ctx->rev && c->pretty_ctx->rev->sources))
1324 return 0;
1325 slot = revision_sources_at(c->pretty_ctx->rev->sources, commit);
1326 if (!(slot && *slot))
1327 return 0;
1328 strbuf_addstr(sb, *slot);
1329 return 1;
8f8f5476
TR
1330 case 'g': /* reflog info */
1331 switch(placeholder[1]) {
1332 case 'd': /* reflog selector */
1333 case 'D':
1334 if (c->pretty_ctx->reflog_info)
1335 get_reflog_selector(sb,
1336 c->pretty_ctx->reflog_info,
a5481a6c 1337 &c->pretty_ctx->date_mode,
55ccf85a 1338 c->pretty_ctx->date_mode_explicit,
8f8f5476
TR
1339 (placeholder[1] == 'd'));
1340 return 2;
1341 case 's': /* reflog message */
1342 if (c->pretty_ctx->reflog_info)
1343 get_reflog_message(sb, c->pretty_ctx->reflog_info);
1344 return 2;
cd1957f5
JK
1345 case 'n':
1346 case 'N':
1347 case 'e':
1348 case 'E':
1349 return format_reflog_person(sb,
1350 placeholder[1],
1351 c->pretty_ctx->reflog_info,
a5481a6c 1352 &c->pretty_ctx->date_mode);
8f8f5476
TR
1353 }
1354 return 0; /* unknown %g placeholder */
8b208f02 1355 case 'N':
ddf333f6
JH
1356 if (c->pretty_ctx->notes_message) {
1357 strbuf_addstr(sb, c->pretty_ctx->notes_message);
5b163603
JG
1358 return 1;
1359 }
1360 return 0;
cde75e59
RS
1361 }
1362
f6667c5e 1363 if (placeholder[0] == 'G') {
ffb6d7d5
SG
1364 if (!c->signature_check.result)
1365 check_commit_signature(c->commit, &(c->signature_check));
f6667c5e
JH
1366 switch (placeholder[1]) {
1367 case 'G':
ffb6d7d5
SG
1368 if (c->signature_check.gpg_output)
1369 strbuf_addstr(sb, c->signature_check.gpg_output);
f6667c5e
JH
1370 break;
1371 case '?':
ffb6d7d5 1372 switch (c->signature_check.result) {
f6667c5e 1373 case 'G':
54887b46
HJI
1374 switch (c->signature_check.trust_level) {
1375 case TRUST_UNDEFINED:
1376 case TRUST_NEVER:
1377 strbuf_addch(sb, 'U');
1378 break;
1379 default:
1380 strbuf_addch(sb, 'G');
1381 break;
1382 }
1383 break;
f6667c5e 1384 case 'B':
661a1806 1385 case 'E':
e290c4b9 1386 case 'N':
661a1806
MG
1387 case 'X':
1388 case 'Y':
1389 case 'R':
ffb6d7d5 1390 strbuf_addch(sb, c->signature_check.result);
f6667c5e
JH
1391 }
1392 break;
1393 case 'S':
ffb6d7d5
SG
1394 if (c->signature_check.signer)
1395 strbuf_addstr(sb, c->signature_check.signer);
f6667c5e 1396 break;
0174eeaa 1397 case 'K':
ffb6d7d5
SG
1398 if (c->signature_check.key)
1399 strbuf_addstr(sb, c->signature_check.key);
0174eeaa 1400 break;
3daaaabe
MG
1401 case 'F':
1402 if (c->signature_check.fingerprint)
1403 strbuf_addstr(sb, c->signature_check.fingerprint);
1404 break;
4de9394d
MG
1405 case 'P':
1406 if (c->signature_check.primary_key_fingerprint)
1407 strbuf_addstr(sb, c->signature_check.primary_key_fingerprint);
1408 break;
54887b46
HJI
1409 case 'T':
1410 switch (c->signature_check.trust_level) {
1411 case TRUST_UNDEFINED:
1412 strbuf_addstr(sb, "undefined");
1413 break;
1414 case TRUST_NEVER:
1415 strbuf_addstr(sb, "never");
1416 break;
1417 case TRUST_MARGINAL:
1418 strbuf_addstr(sb, "marginal");
1419 break;
1420 case TRUST_FULLY:
1421 strbuf_addstr(sb, "fully");
1422 break;
1423 case TRUST_ULTIMATE:
1424 strbuf_addstr(sb, "ultimate");
1425 break;
1426 }
1427 break;
aa4b78d4
JK
1428 default:
1429 return 0;
f6667c5e
JH
1430 }
1431 return 2;
1432 }
1433
cde75e59 1434 /* For the rest we have to parse the commit header. */
018b9deb
JK
1435 if (!c->commit_header_parsed) {
1436 msg = c->message =
1437 repo_logmsg_reencode(c->repository, commit,
1438 &c->commit_encoding, "UTF-8");
f29d5958 1439 parse_commit_header(c);
018b9deb 1440 }
93fc05eb 1441
f29d5958 1442 switch (placeholder[0]) {
c3a670de
MC
1443 case 'a': /* author ... */
1444 return format_person_part(sb, placeholder[1],
d36f8679 1445 msg + c->author.off, c->author.len,
a5481a6c 1446 &c->pretty_ctx->date_mode);
c3a670de
MC
1447 case 'c': /* committer ... */
1448 return format_person_part(sb, placeholder[1],
d36f8679 1449 msg + c->committer.off, c->committer.len,
a5481a6c 1450 &c->pretty_ctx->date_mode);
c3a670de 1451 case 'e': /* encoding */
0940a76d
NTND
1452 if (c->commit_encoding)
1453 strbuf_addstr(sb, c->commit_encoding);
c3a670de 1454 return 1;
1367b12a
EB
1455 case 'B': /* raw body */
1456 /* message_off is always left at the initial newline */
1457 strbuf_addstr(sb, msg + c->message_off + 1);
1458 return 1;
f53bd743
RS
1459 }
1460
1461 /* Now we need to parse the commit message. */
1462 if (!c->commit_message_parsed)
1463 parse_commit_message(c);
1464
1465 switch (placeholder[0]) {
1466 case 's': /* subject */
1467 format_subject(sb, msg + c->subject_off, " ");
1468 return 1;
46d164b0 1469 case 'f': /* sanitized subject */
47d4676a
HV
1470 eol = strchrnul(msg + c->subject_off, '\n');
1471 format_sanitized_subject(sb, msg + c->subject_off, eol - (msg + c->subject_off));
46d164b0 1472 return 1;
c3a670de 1473 case 'b': /* body */
f29d5958 1474 strbuf_addstr(sb, msg + c->body_off);
c3a670de 1475 return 1;
93fc05eb 1476 }
d9f31fbf 1477
58311c66 1478 if (skip_prefix(placeholder, "(trailers", &arg)) {
a388b10f 1479 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
250bea0c 1480 struct string_list filter_list = STRING_LIST_INIT_NODUP;
0b691d86 1481 struct strbuf sepbuf = STRBUF_INIT;
058761f1 1482 struct strbuf kvsepbuf = STRBUF_INIT;
3e3f3478 1483 size_t ret = 0;
e5fba5d5
JK
1484
1485 opts.no_divider = 1;
1486
84ff053d
TB
1487 if (*arg == ':') {
1488 arg++;
636a0aee 1489 if (format_set_trailers_options(&opts, &filter_list, &sepbuf, &kvsepbuf, &arg, NULL))
90563aed 1490 goto trailer_out;
58311c66
JK
1491 }
1492 if (*arg == ')') {
1493 format_trailers_from_commit(sb, msg + c->subject_off, &opts);
3e3f3478 1494 ret = arg - placeholder + 1;
58311c66 1495 }
250bea0c
AW
1496 trailer_out:
1497 string_list_clear(&filter_list, 0);
0b691d86 1498 strbuf_release(&sepbuf);
3e3f3478 1499 return ret;
d9f31fbf
JK
1500 }
1501
c3a670de 1502 return 0; /* unknown placeholder */
cde75e59
RS
1503}
1504
a5752342
NTND
1505static size_t format_and_pad_commit(struct strbuf *sb, /* in UTF-8 */
1506 const char *placeholder,
1507 struct format_commit_context *c)
1508{
1509 struct strbuf local_sb = STRBUF_INIT;
1510 int total_consumed = 0, len, padding = c->padding;
1511 if (padding < 0) {
1512 const char *start = strrchr(sb->buf, '\n');
1513 int occupied;
1514 if (!start)
1515 start = sb->buf;
1516 occupied = utf8_strnwidth(start, -1, 1);
3ad87c80 1517 occupied += c->pretty_ctx->graph_width;
a5752342
NTND
1518 padding = (-padding) - occupied;
1519 }
1520 while (1) {
1521 int modifier = *placeholder == 'C';
1522 int consumed = format_commit_one(&local_sb, placeholder, c);
1523 total_consumed += consumed;
1524
1525 if (!modifier)
1526 break;
1527
1528 placeholder += consumed;
1529 if (*placeholder != '%')
1530 break;
1531 placeholder++;
1532 total_consumed++;
1533 }
1534 len = utf8_strnwidth(local_sb.buf, -1, 1);
1640632b
NTND
1535
1536 if (c->flush_type == flush_left_and_steal) {
1537 const char *ch = sb->buf + sb->len - 1;
1538 while (len > padding && ch > sb->buf) {
1539 const char *p;
1540 if (*ch == ' ') {
1541 ch--;
1542 padding++;
1543 continue;
1544 }
1545 /* check for trailing ansi sequences */
1546 if (*ch != 'm')
1547 break;
1548 p = ch - 1;
1549 while (ch - p < 10 && *p != '\033')
1550 p--;
1551 if (*p != '\033' ||
1552 ch + 1 - p != display_mode_esc_sequence_len(p))
1553 break;
1554 /*
1555 * got a good ansi sequence, put it back to
1556 * local_sb as we're cutting sb
1557 */
1558 strbuf_insert(&local_sb, 0, p, ch + 1 - p);
1559 ch = p - 1;
1560 }
1561 strbuf_setlen(sb, ch + 1 - sb->buf);
1562 c->flush_type = flush_left;
1563 }
1564
a7f01c6b
NTND
1565 if (len > padding) {
1566 switch (c->truncate) {
1567 case trunc_left:
1568 strbuf_utf8_replace(&local_sb,
1569 0, len - (padding - 2),
1570 "..");
1571 break;
1572 case trunc_middle:
1573 strbuf_utf8_replace(&local_sb,
1574 padding / 2 - 1,
1575 len - (padding - 2),
1576 "..");
1577 break;
1578 case trunc_right:
1579 strbuf_utf8_replace(&local_sb,
1580 padding - 2, len - (padding - 2),
1581 "..");
1582 break;
1583 case trunc_none:
1584 break;
1585 }
e992d1eb 1586 strbuf_addbuf(sb, &local_sb);
a7f01c6b 1587 } else {
a5752342
NTND
1588 int sb_len = sb->len, offset = 0;
1589 if (c->flush_type == flush_left)
1590 offset = padding - len;
1591 else if (c->flush_type == flush_both)
1592 offset = (padding - len) / 2;
1593 /*
1594 * we calculate padding in columns, now
1595 * convert it back to chars
1596 */
1597 padding = padding - len + local_sb.len;
415792ed 1598 strbuf_addchars(sb, ' ', padding);
a5752342
NTND
1599 memcpy(sb->buf + sb_len + offset, local_sb.buf,
1600 local_sb.len);
1601 }
1602 strbuf_release(&local_sb);
1603 c->flush_type = no_flush;
1604 return total_consumed;
1605}
1606
7e77df39
NTND
1607static size_t format_commit_item(struct strbuf *sb, /* in UTF-8 */
1608 const char *placeholder,
9fa708da
JH
1609 void *context)
1610{
1611 int consumed;
1612 size_t orig_len;
1613 enum {
1614 NO_MAGIC,
1615 ADD_LF_BEFORE_NON_EMPTY,
1616 DEL_LF_BEFORE_EMPTY,
223a923c 1617 ADD_SP_BEFORE_NON_EMPTY
9fa708da
JH
1618 } magic = NO_MAGIC;
1619
1620 switch (placeholder[0]) {
1621 case '-':
1622 magic = DEL_LF_BEFORE_EMPTY;
1623 break;
1624 case '+':
1625 magic = ADD_LF_BEFORE_NON_EMPTY;
1626 break;
7b88176e
MG
1627 case ' ':
1628 magic = ADD_SP_BEFORE_NON_EMPTY;
1629 break;
9fa708da
JH
1630 default:
1631 break;
1632 }
1633 if (magic != NO_MAGIC)
1634 placeholder++;
1635
1636 orig_len = sb->len;
a5752342
NTND
1637 if (((struct format_commit_context *)context)->flush_type != no_flush)
1638 consumed = format_and_pad_commit(sb, placeholder, context);
1639 else
1640 consumed = format_commit_one(sb, placeholder, context);
9fa708da
JH
1641 if (magic == NO_MAGIC)
1642 return consumed;
1643
1644 if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1645 while (sb->len && sb->buf[sb->len - 1] == '\n')
1646 strbuf_setlen(sb, sb->len - 1);
7b88176e
MG
1647 } else if (orig_len != sb->len) {
1648 if (magic == ADD_LF_BEFORE_NON_EMPTY)
a91cc7fa 1649 strbuf_insertstr(sb, orig_len, "\n");
7b88176e 1650 else if (magic == ADD_SP_BEFORE_NON_EMPTY)
a91cc7fa 1651 strbuf_insertstr(sb, orig_len, " ");
9fa708da
JH
1652 }
1653 return consumed + 1;
1654}
1655
5b163603
JG
1656static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1657 void *context)
1658{
1659 struct userformat_want *w = context;
1660
7b88176e 1661 if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
5b163603
JG
1662 placeholder++;
1663
1664 switch (*placeholder) {
1665 case 'N':
1666 w->notes = 1;
1667 break;
ad6f028f
IT
1668 case 'S':
1669 w->source = 1;
1670 break;
5b163603
JG
1671 }
1672 return 0;
1673}
1674
1675void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1676{
1677 struct strbuf dummy = STRBUF_INIT;
1678
1679 if (!fmt) {
1680 if (!user_format)
1681 return;
1682 fmt = user_format;
1683 }
a6253d10 1684 strbuf_expand(&dummy, fmt, userformat_want_item, w);
5b163603
JG
1685 strbuf_release(&dummy);
1686}
1687
f54fbf5e
SB
1688void repo_format_commit_message(struct repository *r,
1689 const struct commit *commit,
1690 const char *format, struct strbuf *sb,
1691 const struct pretty_print_context *pretty_ctx)
cde75e59 1692{
3e8ed3b9 1693 struct format_commit_context context = {
018b9deb 1694 .repository = r,
3e8ed3b9
DL
1695 .commit = commit,
1696 .pretty_ctx = pretty_ctx,
1697 .wrap_start = sb->len
1698 };
177b29dc 1699 const char *output_enc = pretty_ctx->output_encoding;
7e77df39 1700 const char *utf8 = "UTF-8";
f29d5958 1701
c3a670de 1702 strbuf_expand(sb, format, format_commit_item, &context);
02edd56b 1703 rewrap_message_tail(sb, &context, 0, 0, 0);
177b29dc 1704
018b9deb
JK
1705 /*
1706 * Convert output to an actual output encoding; note that
1707 * format_commit_item() will always use UTF-8, so we don't
1708 * have to bother if that's what the output wants.
1709 */
7e77df39
NTND
1710 if (output_enc) {
1711 if (same_encoding(utf8, output_enc))
1712 output_enc = NULL;
1713 } else {
1714 if (context.commit_encoding &&
1715 !same_encoding(context.commit_encoding, utf8))
1716 output_enc = context.commit_encoding;
1717 }
1718
1719 if (output_enc) {
c7d017d7 1720 size_t outsz;
7e77df39
NTND
1721 char *out = reencode_string_len(sb->buf, sb->len,
1722 output_enc, utf8, &outsz);
1723 if (out)
1724 strbuf_attach(sb, out, outsz, outsz + 1);
1725 }
1726
0940a76d 1727 free(context.commit_encoding);
f54fbf5e 1728 repo_unuse_commit_buffer(r, commit, context.message);
93fc05eb
JS
1729}
1730
10f2fbff 1731static void pp_header(struct pretty_print_context *pp,
93fc05eb
JS
1732 const char *encoding,
1733 const struct commit *commit,
1734 const char **msg_p,
1735 struct strbuf *sb)
1736{
1737 int parents_shown = 0;
1738
1739 for (;;) {
e3f1da98 1740 const char *name, *line = *msg_p;
93fc05eb
JS
1741 int linelen = get_one_line(*msg_p);
1742
1743 if (!linelen)
1744 return;
1745 *msg_p += linelen;
1746
1747 if (linelen == 1)
1748 /* End of header */
1749 return;
1750
6bf13944 1751 if (pp->fmt == CMIT_FMT_RAW) {
93fc05eb
JS
1752 strbuf_add(sb, line, linelen);
1753 continue;
1754 }
1755
59556548 1756 if (starts_with(line, "parent ")) {
580f0980 1757 if (linelen != the_hash_algo->hexsz + 8)
93fc05eb
JS
1758 die("bad parent line in commit");
1759 continue;
1760 }
1761
1762 if (!parents_shown) {
4bbaa1eb 1763 unsigned num = commit_list_count(commit->parents);
93fc05eb 1764 /* with enough slop */
580f0980 1765 strbuf_grow(sb, num * (GIT_MAX_HEXSZ + 10) + 20);
6bf13944 1766 add_merge_info(pp, sb, commit);
93fc05eb
JS
1767 parents_shown = 1;
1768 }
1769
1770 /*
1771 * MEDIUM == DEFAULT shows only author with dates.
1772 * FULL shows both authors but not dates.
1773 * FULLER shows both authors and dates.
1774 */
e3f1da98 1775 if (skip_prefix(line, "author ", &name)) {
93fc05eb 1776 strbuf_grow(sb, linelen + 80);
e3f1da98 1777 pp_user_info(pp, "Author", sb, name, encoding);
93fc05eb 1778 }
e3f1da98 1779 if (skip_prefix(line, "committer ", &name) &&
6bf13944 1780 (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
93fc05eb 1781 strbuf_grow(sb, linelen + 80);
e3f1da98 1782 pp_user_info(pp, "Commit", sb, name, encoding);
93fc05eb
JS
1783 }
1784 }
1785}
1786
10f2fbff 1787void pp_title_line(struct pretty_print_context *pp,
b02bd65f
DB
1788 const char **msg_p,
1789 struct strbuf *sb,
b02bd65f 1790 const char *encoding,
267123b4 1791 int need_8bit_cte)
93fc05eb 1792{
41dd00ba 1793 static const int max_length = 78; /* per rfc2047 */
93fc05eb
JS
1794 struct strbuf title;
1795
1796 strbuf_init(&title, 80);
9553d2b2
JK
1797 *msg_p = format_subject(&title, *msg_p,
1798 pp->preserve_subject ? "\n" : " ");
93fc05eb
JS
1799
1800 strbuf_grow(sb, title.len + 1024);
6d167fd7
RS
1801 if (pp->print_email_subject) {
1802 if (pp->rev)
1803 fmt_output_email_subject(sb, pp->rev);
19d097e3
EB
1804 if (pp->encode_email_headers &&
1805 needs_rfc2047_encoding(title.buf, title.len))
41dd00ba
JS
1806 add_rfc2047(sb, title.buf, title.len,
1807 encoding, RFC2047_SUBJECT);
1808 else
1809 strbuf_add_wrapped_bytes(sb, title.buf, title.len,
1810 -last_line_length(sb), 1, max_length);
93fc05eb
JS
1811 } else {
1812 strbuf_addbuf(sb, &title);
1813 }
1814 strbuf_addch(sb, '\n');
1815
a9080475
JK
1816 if (need_8bit_cte == 0) {
1817 int i;
1818 for (i = 0; i < pp->in_body_headers.nr; i++) {
1819 if (has_non_ascii(pp->in_body_headers.items[i].string)) {
1820 need_8bit_cte = 1;
1821 break;
1822 }
1823 }
1824 }
1825
6bf4f1b4 1826 if (need_8bit_cte > 0) {
93fc05eb
JS
1827 const char *header_fmt =
1828 "MIME-Version: 1.0\n"
1829 "Content-Type: text/plain; charset=%s\n"
1830 "Content-Transfer-Encoding: 8bit\n";
1831 strbuf_addf(sb, header_fmt, encoding);
1832 }
6bf13944
JK
1833 if (pp->after_subject) {
1834 strbuf_addstr(sb, pp->after_subject);
93fc05eb 1835 }
9f23e040 1836 if (cmit_fmt_is_mail(pp->fmt)) {
93fc05eb
JS
1837 strbuf_addch(sb, '\n');
1838 }
a9080475
JK
1839
1840 if (pp->in_body_headers.nr) {
1841 int i;
1842 for (i = 0; i < pp->in_body_headers.nr; i++) {
1843 strbuf_addstr(sb, pp->in_body_headers.items[i].string);
1844 free(pp->in_body_headers.items[i].string);
1845 }
1846 string_list_clear(&pp->in_body_headers, 0);
1847 strbuf_addch(sb, '\n');
1848 }
1849
93fc05eb
JS
1850 strbuf_release(&title);
1851}
1852
7cc13c71
LT
1853static int pp_utf8_width(const char *start, const char *end)
1854{
1855 int width = 0;
1856 size_t remain = end - start;
1857
1858 while (remain) {
1859 int n = utf8_width(&start, &remain);
1860 if (n < 0 || !start)
1861 return -1;
1862 width += n;
1863 }
1864 return width;
1865}
1866
fe37a9c5 1867static void strbuf_add_tabexpand(struct strbuf *sb, int tabwidth,
7cc13c71
LT
1868 const char *line, int linelen)
1869{
1870 const char *tab;
1871
1872 while ((tab = memchr(line, '\t', linelen)) != NULL) {
1873 int width = pp_utf8_width(line, tab);
1874
1875 /*
1876 * If it wasn't well-formed utf8, or it
1877 * had characters with badly defined
1878 * width (control characters etc), just
1879 * give up on trying to align things.
1880 */
1881 if (width < 0)
1882 break;
1883
1884 /* Output the data .. */
1885 strbuf_add(sb, line, tab - line);
1886
1887 /* .. and the de-tabified tab */
fe37a9c5 1888 strbuf_addchars(sb, ' ', tabwidth - (width % tabwidth));
7cc13c71
LT
1889
1890 /* Skip over the printed part .. */
1891 linelen -= tab + 1 - line;
1892 line = tab + 1;
1893 }
1894
1895 /*
1896 * Print out everything after the last tab without
1897 * worrying about width - there's nothing more to
1898 * align.
1899 */
1900 strbuf_add(sb, line, linelen);
1901}
1902
1903/*
1904 * pp_handle_indent() prints out the intendation, and
1905 * the whole line (without the final newline), after
1906 * de-tabifying.
1907 */
1908static void pp_handle_indent(struct pretty_print_context *pp,
1909 struct strbuf *sb, int indent,
1910 const char *line, int linelen)
1911{
1912 strbuf_addchars(sb, ' ', indent);
1913 if (pp->expand_tabs_in_log)
fe37a9c5 1914 strbuf_add_tabexpand(sb, pp->expand_tabs_in_log, line, linelen);
7cc13c71
LT
1915 else
1916 strbuf_add(sb, line, linelen);
1917}
1918
9f23e040
EW
1919static int is_mboxrd_from(const char *line, int len)
1920{
1921 /*
1922 * a line matching /^From $/ here would only have len == 4
1923 * at this point because is_empty_line would've trimmed all
1924 * trailing space
1925 */
1926 return len > 4 && starts_with(line + strspn(line, ">"), "From ");
1927}
1928
10f2fbff 1929void pp_remainder(struct pretty_print_context *pp,
b02bd65f
DB
1930 const char **msg_p,
1931 struct strbuf *sb,
1932 int indent)
93fc05eb
JS
1933{
1934 int first = 1;
1935 for (;;) {
1936 const char *line = *msg_p;
1937 int linelen = get_one_line(line);
1938 *msg_p += linelen;
1939
1940 if (!linelen)
1941 break;
1942
77356122 1943 if (is_blank_line(line, &linelen)) {
93fc05eb
JS
1944 if (first)
1945 continue;
6bf13944 1946 if (pp->fmt == CMIT_FMT_SHORT)
93fc05eb
JS
1947 break;
1948 }
1949 first = 0;
1950
1951 strbuf_grow(sb, linelen + indent + 20);
415792ed 1952 if (indent)
7cc13c71 1953 pp_handle_indent(pp, sb, indent, line, linelen);
0893eec8 1954 else if (pp->expand_tabs_in_log)
fe37a9c5
JH
1955 strbuf_add_tabexpand(sb, pp->expand_tabs_in_log,
1956 line, linelen);
9f23e040
EW
1957 else {
1958 if (pp->fmt == CMIT_FMT_MBOXRD &&
1959 is_mboxrd_from(line, linelen))
1960 strbuf_addch(sb, '>');
1961
7cc13c71 1962 strbuf_add(sb, line, linelen);
9f23e040 1963 }
93fc05eb
JS
1964 strbuf_addch(sb, '\n');
1965 }
1966}
1967
10f2fbff 1968void pretty_print_commit(struct pretty_print_context *pp,
6bf13944
JK
1969 const struct commit *commit,
1970 struct strbuf *sb)
93fc05eb
JS
1971{
1972 unsigned long beginning_of_body;
1973 int indent = 4;
dd0d388c 1974 const char *msg;
b000c59b 1975 const char *reencoded;
93fc05eb 1976 const char *encoding;
6bf13944 1977 int need_8bit_cte = pp->need_8bit_cte;
93fc05eb 1978
6bf13944
JK
1979 if (pp->fmt == CMIT_FMT_USERFORMAT) {
1980 format_commit_message(commit, user_format, sb, pp);
93fc05eb
JS
1981 return;
1982 }
1983
e297cf5a 1984 encoding = get_log_output_encoding();
5a10d236 1985 msg = reencoded = logmsg_reencode(commit, NULL, encoding);
93fc05eb 1986
9f23e040 1987 if (pp->fmt == CMIT_FMT_ONELINE || cmit_fmt_is_mail(pp->fmt))
93fc05eb
JS
1988 indent = 0;
1989
6bf4f1b4
JH
1990 /*
1991 * We need to check and emit Content-type: to mark it
1992 * as 8-bit if we haven't done so.
93fc05eb 1993 */
9f23e040 1994 if (cmit_fmt_is_mail(pp->fmt) && need_8bit_cte == 0) {
93fc05eb
JS
1995 int i, ch, in_body;
1996
1997 for (in_body = i = 0; (ch = msg[i]); i++) {
1998 if (!in_body) {
1999 /* author could be non 7-bit ASCII but
2000 * the log may be so; skip over the
2001 * header part first.
2002 */
2003 if (ch == '\n' && msg[i+1] == '\n')
2004 in_body = 1;
2005 }
2006 else if (non_ascii(ch)) {
6bf4f1b4 2007 need_8bit_cte = 1;
93fc05eb
JS
2008 break;
2009 }
2010 }
2011 }
2012
6bf13944 2013 pp_header(pp, encoding, commit, &msg, sb);
6d167fd7 2014 if (pp->fmt != CMIT_FMT_ONELINE && !pp->print_email_subject) {
93fc05eb
JS
2015 strbuf_addch(sb, '\n');
2016 }
2017
2018 /* Skip excess blank lines at the beginning of body, if any... */
77356122 2019 msg = skip_blank_lines(msg);
93fc05eb
JS
2020
2021 /* These formats treat the title line specially. */
9f23e040 2022 if (pp->fmt == CMIT_FMT_ONELINE || cmit_fmt_is_mail(pp->fmt))
6bf13944 2023 pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
93fc05eb
JS
2024
2025 beginning_of_body = sb->len;
6bf13944
JK
2026 if (pp->fmt != CMIT_FMT_ONELINE)
2027 pp_remainder(pp, &msg, sb, indent);
93fc05eb
JS
2028 strbuf_rtrim(sb);
2029
2030 /* Make sure there is an EOLN for the non-oneline case */
6bf13944 2031 if (pp->fmt != CMIT_FMT_ONELINE)
93fc05eb
JS
2032 strbuf_addch(sb, '\n');
2033
2034 /*
2035 * The caller may append additional body text in e-mail
2036 * format. Make sure we did not strip the blank line
2037 * between the header and the body.
2038 */
9f23e040 2039 if (cmit_fmt_is_mail(pp->fmt) && sb->len <= beginning_of_body)
93fc05eb 2040 strbuf_addch(sb, '\n');
a97a7468 2041
b66103c3 2042 unuse_commit_buffer(commit, reencoded);
93fc05eb 2043}
8b8a5374
JK
2044
2045void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
2046 struct strbuf *sb)
2047{
2048 struct pretty_print_context pp = {0};
6bf13944
JK
2049 pp.fmt = fmt;
2050 pretty_print_commit(&pp, commit, sb);
8b8a5374 2051}