]> git.ipfire.org Git - thirdparty/git.git/blame - pretty.c
config: drop cf validity check in get_next_char()
[thirdparty/git.git] / pretty.c
CommitLineData
93fc05eb
JS
1#include "cache.h"
2#include "commit.h"
93fc05eb
JS
3#include "utf8.h"
4#include "diff.h"
5#include "revision.h"
c455c87c 6#include "string-list.h"
e0cbc397 7#include "mailmap.h"
3b3d443f 8#include "log-tree.h"
a97a7468 9#include "notes.h"
c002922a 10#include "color.h"
8f8f5476 11#include "reflog-walk.h"
f6667c5e 12#include "gpg-interface.h"
93fc05eb 13
93fc05eb 14static char *user_format;
40957891
WP
15static struct cmt_fmt_map {
16 const char *name;
17 enum cmit_fmt format;
18 int is_tformat;
2d7671ef
WP
19 int is_alias;
20 const char *user_format;
40957891 21} *commit_formats;
8028184e 22static size_t builtin_formats_len;
40957891 23static size_t commit_formats_len;
8028184e 24static size_t commit_formats_alloc;
40957891 25static struct cmt_fmt_map *find_commit_format(const char *sought);
93fc05eb 26
36407548
NS
27static void save_user_format(struct rev_info *rev, const char *cp, int is_tformat)
28{
29 free(user_format);
30 user_format = xstrdup(cp);
31 if (is_tformat)
32 rev->use_terminator = 1;
33 rev->commit_format = CMIT_FMT_USERFORMAT;
34}
35
8028184e 36static int git_pretty_formats_config(const char *var, const char *value, void *cb)
93fc05eb 37{
8028184e
WP
38 struct cmt_fmt_map *commit_format = NULL;
39 const char *name;
40 const char *fmt;
93fc05eb 41 int i;
8028184e
WP
42
43 if (prefixcmp(var, "pretty."))
44 return 0;
45
46 name = var + strlen("pretty.");
47 for (i = 0; i < builtin_formats_len; i++) {
48 if (!strcmp(commit_formats[i].name, name))
49 return 0;
50 }
51
52 for (i = builtin_formats_len; i < commit_formats_len; i++) {
53 if (!strcmp(commit_formats[i].name, name)) {
54 commit_format = &commit_formats[i];
55 break;
56 }
57 }
58
59 if (!commit_format) {
60 ALLOC_GROW(commit_formats, commit_formats_len+1,
61 commit_formats_alloc);
62 commit_format = &commit_formats[commit_formats_len];
95a2618f 63 memset(commit_format, 0, sizeof(*commit_format));
8028184e
WP
64 commit_formats_len++;
65 }
66
67 commit_format->name = xstrdup(name);
68 commit_format->format = CMIT_FMT_USERFORMAT;
69 git_config_string(&fmt, var, value);
70 if (!prefixcmp(fmt, "format:") || !prefixcmp(fmt, "tformat:")) {
71 commit_format->is_tformat = fmt[0] == 't';
72 fmt = strchr(fmt, ':') + 1;
73 } else if (strchr(fmt, '%'))
74 commit_format->is_tformat = 1;
75 else
76 commit_format->is_alias = 1;
77 commit_format->user_format = fmt;
78
79 return 0;
80}
81
40957891 82static void setup_commit_formats(void)
93fc05eb 83{
40957891
WP
84 struct cmt_fmt_map builtin_formats[] = {
85 { "raw", CMIT_FMT_RAW, 0 },
86 { "medium", CMIT_FMT_MEDIUM, 0 },
87 { "short", CMIT_FMT_SHORT, 0 },
88 { "email", CMIT_FMT_EMAIL, 0 },
89 { "fuller", CMIT_FMT_FULLER, 0 },
90 { "full", CMIT_FMT_FULL, 0 },
91 { "oneline", CMIT_FMT_ONELINE, 1 }
4da45bef 92 };
40957891 93 commit_formats_len = ARRAY_SIZE(builtin_formats);
8028184e
WP
94 builtin_formats_len = commit_formats_len;
95 ALLOC_GROW(commit_formats, commit_formats_len, commit_formats_alloc);
40957891
WP
96 memcpy(commit_formats, builtin_formats,
97 sizeof(*builtin_formats)*ARRAY_SIZE(builtin_formats));
8028184e
WP
98
99 git_config(git_pretty_formats_config, NULL);
40957891
WP
100}
101
2d7671ef
WP
102static struct cmt_fmt_map *find_commit_format_recursive(const char *sought,
103 const char *original,
104 int num_redirections)
40957891
WP
105{
106 struct cmt_fmt_map *found = NULL;
107 size_t found_match_len = 0;
108 int i;
109
2d7671ef
WP
110 if (num_redirections >= commit_formats_len)
111 die("invalid --pretty format: "
112 "'%s' references an alias which points to itself",
113 original);
40957891
WP
114
115 for (i = 0; i < commit_formats_len; i++) {
116 size_t match_len;
117
118 if (prefixcmp(commit_formats[i].name, sought))
119 continue;
120
121 match_len = strlen(commit_formats[i].name);
122 if (found == NULL || found_match_len > match_len) {
123 found = &commit_formats[i];
124 found_match_len = match_len;
125 }
126 }
2d7671ef
WP
127
128 if (found && found->is_alias) {
129 found = find_commit_format_recursive(found->user_format,
130 original,
131 num_redirections+1);
132 }
133
40957891
WP
134 return found;
135}
136
2d7671ef
WP
137static struct cmt_fmt_map *find_commit_format(const char *sought)
138{
139 if (!commit_formats)
140 setup_commit_formats();
141
142 return find_commit_format_recursive(sought, sought, 0);
143}
144
40957891
WP
145void get_commit_format(const char *arg, struct rev_info *rev)
146{
147 struct cmt_fmt_map *commit_format;
93fc05eb 148
4da45bef
JH
149 rev->use_terminator = 0;
150 if (!arg || !*arg) {
151 rev->commit_format = CMIT_FMT_DEFAULT;
152 return;
153 }
4da45bef 154 if (!prefixcmp(arg, "format:") || !prefixcmp(arg, "tformat:")) {
36407548 155 save_user_format(rev, strchr(arg, ':') + 1, arg[0] == 't');
4da45bef 156 return;
93fc05eb 157 }
40957891 158
36407548
NS
159 if (strchr(arg, '%')) {
160 save_user_format(rev, arg, 1);
161 return;
162 }
93fc05eb 163
40957891
WP
164 commit_format = find_commit_format(arg);
165 if (!commit_format)
166 die("invalid --pretty format: %s", arg);
167
168 rev->commit_format = commit_format->format;
169 rev->use_terminator = commit_format->is_tformat;
8028184e
WP
170 if (commit_format->format == CMIT_FMT_USERFORMAT) {
171 save_user_format(rev, commit_format->user_format,
172 commit_format->is_tformat);
173 }
93fc05eb
JS
174}
175
176/*
177 * Generic support for pretty-printing the header
178 */
179static int get_one_line(const char *msg)
180{
181 int ret = 0;
182
183 for (;;) {
184 char c = *msg++;
185 if (!c)
186 break;
187 ret++;
188 if (c == '\n')
189 break;
190 }
191 return ret;
192}
193
194/* High bit set, or ISO-2022-INT */
cc571142 195static int non_ascii(int ch)
93fc05eb 196{
c2e9364a 197 return !isascii(ch) || ch == '\033';
93fc05eb
JS
198}
199
28e9cf65
JS
200int has_non_ascii(const char *s)
201{
202 int ch;
203 if (!s)
204 return 0;
205 while ((ch = *s++) != '\0') {
206 if (non_ascii(ch))
207 return 1;
208 }
209 return 0;
210}
211
4d03c18a
JK
212static int is_rfc822_special(char ch)
213{
214 switch (ch) {
215 case '(':
216 case ')':
217 case '<':
218 case '>':
219 case '[':
220 case ']':
221 case ':':
222 case ';':
223 case '@':
224 case ',':
225 case '.':
226 case '"':
227 case '\\':
228 return 1;
229 default:
230 return 0;
231 }
232}
233
41dd00ba 234static int needs_rfc822_quoting(const char *s, int len)
4d03c18a
JK
235{
236 int i;
237 for (i = 0; i < len; i++)
238 if (is_rfc822_special(s[i]))
239 return 1;
240 return 0;
241}
242
f9b7204b
JS
243static int last_line_length(struct strbuf *sb)
244{
245 int i;
246
247 /* How many bytes are already used on the last line? */
248 for (i = sb->len - 1; i >= 0; i--)
249 if (sb->buf[i] == '\n')
250 break;
251 return sb->len - (i + 1);
252}
253
4d03c18a
JK
254static void add_rfc822_quoted(struct strbuf *out, const char *s, int len)
255{
256 int i;
257
258 /* just a guess, we may have to also backslash-quote */
259 strbuf_grow(out, len + 2);
260
261 strbuf_addch(out, '"');
262 for (i = 0; i < len; i++) {
263 switch (s[i]) {
264 case '"':
265 case '\\':
266 strbuf_addch(out, '\\');
267 /* fall through */
268 default:
269 strbuf_addch(out, s[i]);
270 }
271 }
272 strbuf_addch(out, '"');
273}
274
0fcec2ce
JS
275enum rfc2047_type {
276 RFC2047_SUBJECT,
277 RFC2047_ADDRESS,
278};
279
280static int is_rfc2047_special(char ch, enum rfc2047_type type)
93fc05eb 281{
0fcec2ce
JS
282 /*
283 * rfc2047, section 4.2:
284 *
285 * 8-bit values which correspond to printable ASCII characters other
286 * than "=", "?", and "_" (underscore), MAY be represented as those
287 * characters. (But see section 5 for restrictions.) In
288 * particular, SPACE and TAB MUST NOT be represented as themselves
289 * within encoded words.
290 */
291
292 /*
293 * rule out non-ASCII characters and non-printable characters (the
294 * non-ASCII check should be redundant as isprint() is not localized
295 * and only knows about ASCII, but be defensive about that)
296 */
297 if (non_ascii(ch) || !isprint(ch))
298 return 1;
299
300 /*
301 * rule out special printable characters (' ' should be the only
302 * whitespace character considered printable, but be defensive and use
303 * isspace())
304 */
305 if (isspace(ch) || ch == '=' || ch == '?' || ch == '_')
94f6cdf6
JS
306 return 1;
307
0fcec2ce
JS
308 /*
309 * rfc2047, section 5.3:
310 *
311 * As a replacement for a 'word' entity within a 'phrase', for example,
312 * one that precedes an address in a From, To, or Cc header. The ABNF
313 * definition for 'phrase' from RFC 822 thus becomes:
314 *
315 * phrase = 1*( encoded-word / word )
316 *
317 * In this case the set of characters that may be used in a "Q"-encoded
318 * 'encoded-word' is restricted to: <upper and lower case ASCII
319 * letters, decimal digits, "!", "*", "+", "-", "/", "=", and "_"
320 * (underscore, ASCII 95.)>. An 'encoded-word' that appears within a
321 * 'phrase' MUST be separated from any adjacent 'word', 'text' or
322 * 'special' by 'linear-white-space'.
323 */
324
325 if (type != RFC2047_ADDRESS)
326 return 0;
327
328 /* '=' and '_' are special cases and have been checked above */
329 return !(isalnum(ch) || ch == '!' || ch == '*' || ch == '+' || ch == '-' || ch == '/');
93fc05eb
JS
330}
331
41dd00ba
JS
332static int needs_rfc2047_encoding(const char *line, int len,
333 enum rfc2047_type type)
93fc05eb 334{
a1f6baa5 335 int i;
93fc05eb
JS
336
337 for (i = 0; i < len; i++) {
338 int ch = line[i];
c22e7de3 339 if (non_ascii(ch) || ch == '\n')
41dd00ba 340 return 1;
93fc05eb 341 if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
41dd00ba 342 return 1;
93fc05eb 343 }
93fc05eb 344
41dd00ba
JS
345 return 0;
346}
347
6cd3c053 348static void add_rfc2047(struct strbuf *sb, const char *line, size_t len,
41dd00ba
JS
349 const char *encoding, enum rfc2047_type type)
350{
351 static const int max_encoded_length = 76; /* per rfc2047 */
352 int i;
353 int line_len = last_line_length(sb);
354
93fc05eb
JS
355 strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
356 strbuf_addf(sb, "=?%s?q?", encoding);
a1f6baa5 357 line_len += strlen(encoding) + 5; /* 5 for =??q? */
6cd3c053
KS
358
359 while (len) {
360 /*
361 * RFC 2047, section 5 (3):
362 *
363 * Each 'encoded-word' MUST represent an integral number of
364 * characters. A multi-octet character may not be split across
365 * adjacent 'encoded- word's.
366 */
367 const unsigned char *p = (const unsigned char *)line;
368 int chrlen = mbs_chrlen(&line, &len, encoding);
369 int is_special = (chrlen > 1) || is_rfc2047_special(*p, type);
370
371 /* "=%02X" * chrlen, or the byte itself */
372 const char *encoded_fmt = is_special ? "=%02X" : "%c";
373 int encoded_len = is_special ? 3 * chrlen : 1;
94f6cdf6
JS
374
375 /*
376 * According to RFC 2047, we could encode the special character
377 * ' ' (space) with '_' (underscore) for readability. But many
378 * programs do not understand this and just leave the
379 * underscore in place. Thus, we do nothing special here, which
380 * causes ' ' to be encoded as '=20', avoiding this problem.
381 */
a1f6baa5 382
6cd3c053
KS
383 if (line_len + encoded_len + 2 > max_encoded_length) {
384 /* It won't fit with trailing "?=" --- break the line */
a1f6baa5
JK
385 strbuf_addf(sb, "?=\n =?%s?q?", encoding);
386 line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
387 }
388
6cd3c053
KS
389 for (i = 0; i < chrlen; i++)
390 strbuf_addf(sb, encoded_fmt, p[i]);
391 line_len += encoded_len;
93fc05eb 392 }
93fc05eb
JS
393 strbuf_addstr(sb, "?=");
394}
395
9dbe7c3d
RS
396static const char *show_ident_date(const struct ident_split *ident,
397 enum date_mode mode)
398{
399 unsigned long date = 0;
400 int tz = 0;
401
402 if (ident->date_begin && ident->date_end)
403 date = strtoul(ident->date_begin, NULL, 10);
404 if (ident->tz_begin && ident->tz_end)
405 tz = strtol(ident->tz_begin, NULL, 10);
406 return show_date(date, tz, mode);
407}
408
6bf13944
JK
409void pp_user_info(const struct pretty_print_context *pp,
410 const char *what, struct strbuf *sb,
411 const char *line, const char *encoding)
93fc05eb 412{
3c020bd5 413 struct ident_split ident;
9dbe7c3d 414 char *line_end;
dffd325f
AP
415 const char *mailbuf, *namebuf;
416 size_t namelen, maillen;
41dd00ba 417 int max_length = 78; /* per rfc2822 */
93fc05eb 418
6bf13944 419 if (pp->fmt == CMIT_FMT_ONELINE)
93fc05eb 420 return;
3c020bd5 421
30e77bcb
RS
422 line_end = strchrnul(line, '\n');
423 if (split_ident_line(&ident, line, line_end - line))
93fc05eb 424 return;
3c020bd5 425
dffd325f
AP
426 mailbuf = ident.mail_begin;
427 maillen = ident.mail_end - ident.mail_begin;
428 namebuf = ident.name_begin;
429 namelen = ident.name_end - ident.name_begin;
430
431 if (pp->mailmap)
432 map_user(pp->mailmap, &mailbuf, &maillen, &namebuf, &namelen);
433
6bf13944 434 if (pp->fmt == CMIT_FMT_EMAIL) {
93fc05eb 435 strbuf_addstr(sb, "From: ");
a0511b39
RS
436 if (needs_rfc2047_encoding(namebuf, namelen, RFC2047_ADDRESS)) {
437 add_rfc2047(sb, namebuf, namelen,
dffd325f 438 encoding, RFC2047_ADDRESS);
41dd00ba 439 max_length = 76; /* per rfc2047 */
a0511b39 440 } else if (needs_rfc822_quoting(namebuf, namelen)) {
4d03c18a 441 struct strbuf quoted = STRBUF_INIT;
a0511b39 442 add_rfc822_quoted(&quoted, namebuf, namelen);
41dd00ba
JS
443 strbuf_add_wrapped_bytes(sb, quoted.buf, quoted.len,
444 -6, 1, max_length);
4d03c18a 445 strbuf_release(&quoted);
41dd00ba 446 } else {
a0511b39 447 strbuf_add_wrapped_bytes(sb, namebuf, namelen,
dffd325f 448 -6, 1, max_length);
4d03c18a 449 }
dffd325f 450
97a17e77
RS
451 if (max_length <
452 last_line_length(sb) + strlen(" <") + maillen + strlen(">"))
453 strbuf_addch(sb, '\n');
a0511b39 454 strbuf_addf(sb, " <%.*s>\n", (int)maillen, mailbuf);
93fc05eb 455 } else {
a0511b39
RS
456 strbuf_addf(sb, "%s: %.*s%.*s <%.*s>\n", what,
457 (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0, " ",
458 (int)namelen, namebuf, (int)maillen, mailbuf);
93fc05eb 459 }
dffd325f 460
6bf13944 461 switch (pp->fmt) {
93fc05eb 462 case CMIT_FMT_MEDIUM:
9dbe7c3d
RS
463 strbuf_addf(sb, "Date: %s\n",
464 show_ident_date(&ident, pp->date_mode));
93fc05eb
JS
465 break;
466 case CMIT_FMT_EMAIL:
9dbe7c3d
RS
467 strbuf_addf(sb, "Date: %s\n",
468 show_ident_date(&ident, DATE_RFC2822));
93fc05eb
JS
469 break;
470 case CMIT_FMT_FULLER:
9dbe7c3d
RS
471 strbuf_addf(sb, "%sDate: %s\n", what,
472 show_ident_date(&ident, pp->date_mode));
93fc05eb
JS
473 break;
474 default:
475 /* notin' */
476 break;
477 }
478}
479
480static int is_empty_line(const char *line, int *len_p)
481{
482 int len = *len_p;
483 while (len && isspace(line[len-1]))
484 len--;
485 *len_p = len;
486 return !len;
487}
488
a0109668
RS
489static const char *skip_empty_lines(const char *msg)
490{
491 for (;;) {
492 int linelen = get_one_line(msg);
493 int ll = linelen;
494 if (!linelen)
495 break;
496 if (!is_empty_line(msg, &ll))
497 break;
498 msg += linelen;
499 }
500 return msg;
501}
502
6bf13944
JK
503static void add_merge_info(const struct pretty_print_context *pp,
504 struct strbuf *sb, const struct commit *commit)
93fc05eb
JS
505{
506 struct commit_list *parent = commit->parents;
507
6bf13944 508 if ((pp->fmt == CMIT_FMT_ONELINE) || (pp->fmt == CMIT_FMT_EMAIL) ||
93fc05eb
JS
509 !parent || !parent->next)
510 return;
511
512 strbuf_addstr(sb, "Merge:");
513
514 while (parent) {
515 struct commit *p = parent->item;
516 const char *hex = NULL;
6bf13944
JK
517 if (pp->abbrev)
518 hex = find_unique_abbrev(p->object.sha1, pp->abbrev);
93fc05eb
JS
519 if (!hex)
520 hex = sha1_to_hex(p->object.sha1);
93fc05eb
JS
521 parent = parent->next;
522
7fcda920 523 strbuf_addf(sb, " %s", hex);
93fc05eb
JS
524 }
525 strbuf_addch(sb, '\n');
526}
527
dd0d388c
JK
528static char *get_header(const struct commit *commit, const char *msg,
529 const char *key)
93fc05eb
JS
530{
531 int key_len = strlen(key);
dd0d388c 532 const char *line = msg;
93fc05eb 533
a9c7a8a8 534 while (line) {
93fc05eb
JS
535 const char *eol = strchr(line, '\n'), *next;
536
537 if (line == eol)
538 return NULL;
539 if (!eol) {
a9c7a8a8
JK
540 warning("malformed commit (header is missing newline): %s",
541 sha1_to_hex(commit->object.sha1));
93fc05eb
JS
542 eol = line + strlen(line);
543 next = NULL;
544 } else
545 next = eol + 1;
546 if (eol - line > key_len &&
547 !strncmp(line, key, key_len) &&
548 line[key_len] == ' ') {
549 return xmemdupz(line + key_len + 1, eol - line - key_len - 1);
550 }
551 line = next;
552 }
a9c7a8a8 553 return NULL;
93fc05eb
JS
554}
555
556static char *replace_encoding_header(char *buf, const char *encoding)
557{
f285a2d7 558 struct strbuf tmp = STRBUF_INIT;
93fc05eb
JS
559 size_t start, len;
560 char *cp = buf;
561
562 /* guess if there is an encoding header before a \n\n */
563 while (strncmp(cp, "encoding ", strlen("encoding "))) {
564 cp = strchr(cp, '\n');
565 if (!cp || *++cp == '\n')
566 return buf;
567 }
568 start = cp - buf;
569 cp = strchr(cp, '\n');
570 if (!cp)
571 return buf; /* should not happen but be defensive */
572 len = cp + 1 - (buf + start);
573
93fc05eb
JS
574 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
575 if (is_encoding_utf8(encoding)) {
576 /* we have re-coded to UTF-8; drop the header */
577 strbuf_remove(&tmp, start, len);
578 } else {
579 /* just replaces XXXX in 'encoding XXXX\n' */
580 strbuf_splice(&tmp, start + strlen("encoding "),
581 len - strlen("encoding \n"),
582 encoding, strlen(encoding));
583 }
584 return strbuf_detach(&tmp, NULL);
585}
586
177b29dc 587char *logmsg_reencode(const struct commit *commit,
5a10d236 588 char **commit_encoding,
177b29dc 589 const char *output_encoding)
93fc05eb 590{
330db18c 591 static const char *utf8 = "UTF-8";
93fc05eb
JS
592 const char *use_encoding;
593 char *encoding;
dd0d388c 594 char *msg = commit->buffer;
93fc05eb
JS
595 char *out;
596
be5c9fb9
JK
597 if (!msg) {
598 enum object_type type;
599 unsigned long size;
600
601 msg = read_sha1_file(commit->object.sha1, &type, &size);
602 if (!msg)
603 die("Cannot read commit object %s",
604 sha1_to_hex(commit->object.sha1));
605 if (type != OBJ_COMMIT)
606 die("Expected commit for '%s', got %s",
607 sha1_to_hex(commit->object.sha1), typename(type));
608 }
609
5a10d236
NTND
610 if (!output_encoding || !*output_encoding) {
611 if (commit_encoding)
612 *commit_encoding =
613 get_header(commit, msg, "encoding");
dd0d388c 614 return msg;
5a10d236 615 }
dd0d388c 616 encoding = get_header(commit, msg, "encoding");
5a10d236
NTND
617 if (commit_encoding)
618 *commit_encoding = encoding;
93fc05eb 619 use_encoding = encoding ? encoding : utf8;
be5c9fb9
JK
620 if (same_encoding(use_encoding, output_encoding)) {
621 /*
622 * No encoding work to be done. If we have no encoding header
623 * at all, then there's nothing to do, and we can return the
624 * message verbatim (whether newly allocated or not).
625 */
626 if (!encoding)
627 return msg;
628
629 /*
630 * Otherwise, we still want to munge the encoding header in the
631 * result, which will be done by modifying the buffer. If we
632 * are using a fresh copy, we can reuse it. But if we are using
633 * the cached copy from commit->buffer, we need to duplicate it
634 * to avoid munging commit->buffer.
635 */
636 out = msg;
637 if (out == commit->buffer)
638 out = xstrdup(out);
639 }
640 else {
641 /*
642 * There's actual encoding work to do. Do the reencoding, which
643 * still leaves the header to be replaced in the next step. At
644 * this point, we are done with msg. If we allocated a fresh
645 * copy, we can free it.
646 */
647 out = reencode_string(msg, output_encoding, use_encoding);
648 if (out && msg != commit->buffer)
649 free(msg);
650 }
651
652 /*
653 * This replacement actually consumes the buffer we hand it, so we do
654 * not have to worry about freeing the old "out" here.
655 */
93fc05eb
JS
656 if (out)
657 out = replace_encoding_header(out, output_encoding);
658
5a10d236
NTND
659 if (!commit_encoding)
660 free(encoding);
dd0d388c
JK
661 /*
662 * If the re-encoding failed, out might be NULL here; in that
663 * case we just return the commit message verbatim.
664 */
665 return out ? out : msg;
666}
667
668void logmsg_free(char *msg, const struct commit *commit)
669{
670 if (msg != commit->buffer)
671 free(msg);
93fc05eb
JS
672}
673
ea02ffa3
AP
674static int mailmap_name(const char **email, size_t *email_len,
675 const char **name, size_t *name_len)
e0cbc397 676{
c455c87c 677 static struct string_list *mail_map;
e0cbc397
JS
678 if (!mail_map) {
679 mail_map = xcalloc(1, sizeof(*mail_map));
d551a488 680 read_mailmap(mail_map, NULL);
e0cbc397 681 }
d20d654f 682 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
e0cbc397
JS
683}
684
c3a670de 685static size_t format_person_part(struct strbuf *sb, char part,
d36f8679 686 const char *msg, int len, enum date_mode dmode)
93fc05eb 687{
c3a670de
MC
688 /* currently all placeholders have same length */
689 const int placeholder_len = 2;
4b340cfa 690 struct ident_split s;
ea02ffa3
AP
691 const char *name, *mail;
692 size_t maillen, namelen;
93fc05eb 693
4b340cfa 694 if (split_ident_line(&s, msg, len) < 0)
c3a670de
MC
695 goto skip;
696
ea02ffa3
AP
697 name = s.name_begin;
698 namelen = s.name_end - s.name_begin;
699 mail = s.mail_begin;
700 maillen = s.mail_end - s.mail_begin;
701
702 if (part == 'N' || part == 'E') /* mailmap lookup */
703 mailmap_name(&mail, &maillen, &name, &namelen);
e0cbc397 704 if (part == 'n' || part == 'N') { /* name */
ea02ffa3 705 strbuf_add(sb, name, namelen);
c3a670de 706 return placeholder_len;
cde75e59 707 }
d20d654f 708 if (part == 'e' || part == 'E') { /* email */
ea02ffa3 709 strbuf_add(sb, mail, maillen);
c3a670de 710 return placeholder_len;
cde75e59 711 }
93fc05eb 712
4b340cfa 713 if (!s.date_begin)
c3a670de 714 goto skip;
93fc05eb 715
cde75e59 716 if (part == 't') { /* date, UNIX timestamp */
4b340cfa 717 strbuf_add(sb, s.date_begin, s.date_end - s.date_begin);
c3a670de 718 return placeholder_len;
cde75e59 719 }
93fc05eb 720
cde75e59
RS
721 switch (part) {
722 case 'd': /* date */
9dbe7c3d 723 strbuf_addstr(sb, show_ident_date(&s, dmode));
c3a670de 724 return placeholder_len;
cde75e59 725 case 'D': /* date, RFC2822 style */
9dbe7c3d 726 strbuf_addstr(sb, show_ident_date(&s, DATE_RFC2822));
c3a670de 727 return placeholder_len;
cde75e59 728 case 'r': /* date, relative */
9dbe7c3d 729 strbuf_addstr(sb, show_ident_date(&s, DATE_RELATIVE));
c3a670de 730 return placeholder_len;
cde75e59 731 case 'i': /* date, ISO 8601 */
9dbe7c3d 732 strbuf_addstr(sb, show_ident_date(&s, DATE_ISO8601));
c3a670de 733 return placeholder_len;
cde75e59 734 }
c3a670de
MC
735
736skip:
737 /*
4b340cfa
JH
738 * reading from either a bogus commit, or a reflog entry with
739 * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
740 * to compute a valid return value.
c3a670de
MC
741 */
742 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
743 || part == 'D' || part == 'r' || part == 'i')
744 return placeholder_len;
745
746 return 0; /* unknown placeholder */
93fc05eb
JS
747}
748
f29d5958
RS
749struct chunk {
750 size_t off;
751 size_t len;
752};
753
a5752342
NTND
754enum flush_type {
755 no_flush,
756 flush_right,
757 flush_left,
1640632b 758 flush_left_and_steal,
a5752342
NTND
759 flush_both
760};
761
a7f01c6b
NTND
762enum trunc_type {
763 trunc_none,
764 trunc_left,
765 trunc_middle,
766 trunc_right
767};
768
f29d5958
RS
769struct format_commit_context {
770 const struct commit *commit;
dd2e794a 771 const struct pretty_print_context *pretty_ctx;
f53bd743
RS
772 unsigned commit_header_parsed:1;
773 unsigned commit_message_parsed:1;
ffb6d7d5 774 struct signature_check signature_check;
a5752342 775 enum flush_type flush_type;
a7f01c6b 776 enum trunc_type truncate;
177b29dc 777 char *message;
0940a76d 778 char *commit_encoding;
02edd56b 779 size_t width, indent1, indent2;
a95f067e 780 int auto_color;
a5752342 781 int padding;
f29d5958
RS
782
783 /* These offsets are relative to the start of the commit message. */
f29d5958
RS
784 struct chunk author;
785 struct chunk committer;
f53bd743
RS
786 size_t message_off;
787 size_t subject_off;
f29d5958 788 size_t body_off;
b9c62321
RS
789
790 /* The following ones are relative to the result struct strbuf. */
791 struct chunk abbrev_commit_hash;
792 struct chunk abbrev_tree_hash;
793 struct chunk abbrev_parent_hashes;
02edd56b 794 size_t wrap_start;
f29d5958
RS
795};
796
b9c62321
RS
797static int add_again(struct strbuf *sb, struct chunk *chunk)
798{
799 if (chunk->len) {
800 strbuf_adddup(sb, chunk->off, chunk->len);
801 return 1;
802 }
803
804 /*
805 * We haven't seen this chunk before. Our caller is surely
806 * going to add it the hard way now. Remember the most likely
807 * start of the to-be-added chunk: the current end of the
808 * struct strbuf.
809 */
810 chunk->off = sb->len;
811 return 0;
812}
813
f29d5958 814static void parse_commit_header(struct format_commit_context *context)
93fc05eb 815{
177b29dc 816 const char *msg = context->message;
93fc05eb 817 int i;
f29d5958 818
f53bd743 819 for (i = 0; msg[i]; i++) {
f29d5958
RS
820 int eol;
821 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
822 ; /* do nothing */
823
f29d5958 824 if (i == eol) {
f53bd743 825 break;
f29d5958
RS
826 } else if (!prefixcmp(msg + i, "author ")) {
827 context->author.off = i + 7;
828 context->author.len = eol - i - 7;
829 } else if (!prefixcmp(msg + i, "committer ")) {
830 context->committer.off = i + 10;
831 context->committer.len = eol - i - 10;
f29d5958
RS
832 }
833 i = eol;
834 }
f53bd743 835 context->message_off = i;
f29d5958
RS
836 context->commit_header_parsed = 1;
837}
838
46d164b0
SB
839static int istitlechar(char c)
840{
841 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
842 (c >= '0' && c <= '9') || c == '.' || c == '_';
843}
844
845static void format_sanitized_subject(struct strbuf *sb, const char *msg)
846{
847 size_t trimlen;
871d21d4 848 size_t start_len = sb->len;
46d164b0
SB
849 int space = 2;
850
851 for (; *msg && *msg != '\n'; msg++) {
852 if (istitlechar(*msg)) {
853 if (space == 1)
854 strbuf_addch(sb, '-');
855 space = 0;
856 strbuf_addch(sb, *msg);
857 if (*msg == '.')
858 while (*(msg+1) == '.')
859 msg++;
860 } else
861 space |= 1;
862 }
863
864 /* trim any trailing '.' or '-' characters */
865 trimlen = 0;
871d21d4
SB
866 while (sb->len - trimlen > start_len &&
867 (sb->buf[sb->len - 1 - trimlen] == '.'
868 || sb->buf[sb->len - 1 - trimlen] == '-'))
46d164b0
SB
869 trimlen++;
870 strbuf_remove(sb, sb->len - trimlen, trimlen);
871}
872
cec08717
RS
873const char *format_subject(struct strbuf *sb, const char *msg,
874 const char *line_separator)
88c44735
RS
875{
876 int first = 1;
877
878 for (;;) {
879 const char *line = msg;
880 int linelen = get_one_line(line);
881
882 msg += linelen;
883 if (!linelen || is_empty_line(line, &linelen))
884 break;
885
f53bd743
RS
886 if (!sb)
887 continue;
88c44735
RS
888 strbuf_grow(sb, linelen + 2);
889 if (!first)
890 strbuf_addstr(sb, line_separator);
891 strbuf_add(sb, line, linelen);
892 first = 0;
893 }
894 return msg;
895}
896
f53bd743
RS
897static void parse_commit_message(struct format_commit_context *c)
898{
177b29dc
PN
899 const char *msg = c->message + c->message_off;
900 const char *start = c->message;
f53bd743
RS
901
902 msg = skip_empty_lines(msg);
903 c->subject_off = msg - start;
904
905 msg = format_subject(NULL, msg, NULL);
906 msg = skip_empty_lines(msg);
907 c->body_off = msg - start;
908
909 c->commit_message_parsed = 1;
910}
911
02edd56b
RS
912static void strbuf_wrap(struct strbuf *sb, size_t pos,
913 size_t width, size_t indent1, size_t indent2)
914{
915 struct strbuf tmp = STRBUF_INIT;
916
917 if (pos)
918 strbuf_add(&tmp, sb->buf, pos);
919 strbuf_add_wrapped_text(&tmp, sb->buf + pos,
920 (int) indent1, (int) indent2, (int) width);
921 strbuf_swap(&tmp, sb);
922 strbuf_release(&tmp);
923}
924
925static void rewrap_message_tail(struct strbuf *sb,
926 struct format_commit_context *c,
927 size_t new_width, size_t new_indent1,
928 size_t new_indent2)
929{
930 if (c->width == new_width && c->indent1 == new_indent1 &&
931 c->indent2 == new_indent2)
932 return;
32ca4249 933 if (c->wrap_start < sb->len)
02edd56b
RS
934 strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
935 c->wrap_start = sb->len;
936 c->width = new_width;
937 c->indent1 = new_indent1;
938 c->indent2 = new_indent2;
939}
940
cd1957f5
JK
941static int format_reflog_person(struct strbuf *sb,
942 char part,
943 struct reflog_walk_info *log,
944 enum date_mode dmode)
945{
946 const char *ident;
947
948 if (!log)
949 return 2;
950
951 ident = get_reflog_ident(log);
952 if (!ident)
953 return 2;
954
955 return format_person_part(sb, part, ident, strlen(ident), dmode);
956}
957
fcabc2d9
NTND
958static size_t parse_color(struct strbuf *sb, /* in UTF-8 */
959 const char *placeholder,
960 struct format_commit_context *c)
961{
962 if (placeholder[1] == '(') {
963 const char *begin = placeholder + 2;
964 const char *end = strchr(begin, ')');
965 char color[COLOR_MAXLEN];
966
967 if (!end)
968 return 0;
969 if (!prefixcmp(begin, "auto,")) {
970 if (!want_color(c->pretty_ctx->color))
971 return end - placeholder + 1;
972 begin += 5;
973 }
974 color_parse_mem(begin,
975 end - begin,
976 "--pretty format", color);
977 strbuf_addstr(sb, color);
978 return end - placeholder + 1;
979 }
980 if (!prefixcmp(placeholder + 1, "red")) {
981 strbuf_addstr(sb, GIT_COLOR_RED);
982 return 4;
983 } else if (!prefixcmp(placeholder + 1, "green")) {
984 strbuf_addstr(sb, GIT_COLOR_GREEN);
985 return 6;
986 } else if (!prefixcmp(placeholder + 1, "blue")) {
987 strbuf_addstr(sb, GIT_COLOR_BLUE);
988 return 5;
989 } else if (!prefixcmp(placeholder + 1, "reset")) {
990 strbuf_addstr(sb, GIT_COLOR_RESET);
991 return 6;
992 } else
993 return 0;
994}
995
a5752342
NTND
996static size_t parse_padding_placeholder(struct strbuf *sb,
997 const char *placeholder,
998 struct format_commit_context *c)
999{
1000 const char *ch = placeholder;
1001 enum flush_type flush_type;
1002 int to_column = 0;
1003
1004 switch (*ch++) {
1005 case '<':
1006 flush_type = flush_right;
1007 break;
1008 case '>':
1009 if (*ch == '<') {
1010 flush_type = flush_both;
1011 ch++;
1640632b
NTND
1012 } else if (*ch == '>') {
1013 flush_type = flush_left_and_steal;
1014 ch++;
a5752342
NTND
1015 } else
1016 flush_type = flush_left;
1017 break;
1018 default:
1019 return 0;
1020 }
1021
1022 /* the next value means "wide enough to that column" */
1023 if (*ch == '|') {
1024 to_column = 1;
1025 ch++;
1026 }
1027
1028 if (*ch == '(') {
1029 const char *start = ch + 1;
a7f01c6b 1030 const char *end = start + strcspn(start, ",)");
a5752342
NTND
1031 char *next;
1032 int width;
1033 if (!end || end == start)
1034 return 0;
1035 width = strtoul(start, &next, 10);
1036 if (next == start || width == 0)
1037 return 0;
1038 c->padding = to_column ? -width : width;
1039 c->flush_type = flush_type;
a7f01c6b
NTND
1040
1041 if (*end == ',') {
1042 start = end + 1;
1043 end = strchr(start, ')');
1044 if (!end || end == start)
1045 return 0;
1046 if (!prefixcmp(start, "trunc)"))
1047 c->truncate = trunc_right;
1048 else if (!prefixcmp(start, "ltrunc)"))
1049 c->truncate = trunc_left;
1050 else if (!prefixcmp(start, "mtrunc)"))
1051 c->truncate = trunc_middle;
1052 else
1053 return 0;
1054 } else
1055 c->truncate = trunc_none;
1056
a5752342
NTND
1057 return end - placeholder + 1;
1058 }
1059 return 0;
1060}
1061
7e77df39
NTND
1062static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */
1063 const char *placeholder,
9fa708da 1064 void *context)
f29d5958
RS
1065{
1066 struct format_commit_context *c = context;
1067 const struct commit *commit = c->commit;
177b29dc 1068 const char *msg = c->message;
f29d5958 1069 struct commit_list *p;
42c8c74c 1070 int h1, h2;
93fc05eb 1071
93fc05eb 1072 /* these are independent of the commit */
cde75e59
RS
1073 switch (placeholder[0]) {
1074 case 'C':
a95f067e
NTND
1075 if (!prefixcmp(placeholder + 1, "(auto)")) {
1076 c->auto_color = 1;
1077 return 7; /* consumed 7 bytes, "C(auto)" */
1078 } else {
1079 int ret = parse_color(sb, placeholder, c);
1080 if (ret)
1081 c->auto_color = 0;
1082 /*
1083 * Otherwise, we decided to treat %C<unknown>
1084 * as a literal string, and the previous
1085 * %C(auto) is still valid.
1086 */
1087 return ret;
c002922a 1088 }
cde75e59
RS
1089 case 'n': /* newline */
1090 strbuf_addch(sb, '\n');
c3a670de 1091 return 1;
42c8c74c
GS
1092 case 'x':
1093 /* %x00 == NUL, %x0a == LF, etc. */
1094 if (0 <= (h1 = hexval_table[0xff & placeholder[1]]) &&
1095 h1 <= 16 &&
1096 0 <= (h2 = hexval_table[0xff & placeholder[2]]) &&
1097 h2 <= 16) {
1098 strbuf_addch(sb, (h1<<4)|h2);
1099 return 3;
1100 } else
1101 return 0;
02edd56b
RS
1102 case 'w':
1103 if (placeholder[1] == '(') {
1104 unsigned long width = 0, indent1 = 0, indent2 = 0;
1105 char *next;
1106 const char *start = placeholder + 2;
1107 const char *end = strchr(start, ')');
1108 if (!end)
1109 return 0;
1110 if (end > start) {
1111 width = strtoul(start, &next, 10);
1112 if (*next == ',') {
1113 indent1 = strtoul(next + 1, &next, 10);
1114 if (*next == ',') {
1115 indent2 = strtoul(next + 1,
1116 &next, 10);
1117 }
1118 }
1119 if (*next != ')')
1120 return 0;
1121 }
1122 rewrap_message_tail(sb, c, width, indent1, indent2);
1123 return end - placeholder + 1;
1124 } else
1125 return 0;
a5752342
NTND
1126
1127 case '<':
1128 case '>':
1129 return parse_padding_placeholder(sb, placeholder, c);
cde75e59 1130 }
93fc05eb
JS
1131
1132 /* these depend on the commit */
1133 if (!commit->object.parsed)
1134 parse_object(commit->object.sha1);
93fc05eb 1135
cde75e59
RS
1136 switch (placeholder[0]) {
1137 case 'H': /* commit hash */
a95f067e 1138 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
cde75e59 1139 strbuf_addstr(sb, sha1_to_hex(commit->object.sha1));
a95f067e 1140 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
c3a670de 1141 return 1;
cde75e59 1142 case 'h': /* abbreviated commit hash */
a95f067e
NTND
1143 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_COMMIT));
1144 if (add_again(sb, &c->abbrev_commit_hash)) {
1145 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
c3a670de 1146 return 1;
a95f067e 1147 }
cde75e59 1148 strbuf_addstr(sb, find_unique_abbrev(commit->object.sha1,
c1977021 1149 c->pretty_ctx->abbrev));
a95f067e 1150 strbuf_addstr(sb, diff_get_color(c->auto_color, DIFF_RESET));
b9c62321 1151 c->abbrev_commit_hash.len = sb->len - c->abbrev_commit_hash.off;
c3a670de 1152 return 1;
cde75e59
RS
1153 case 'T': /* tree hash */
1154 strbuf_addstr(sb, sha1_to_hex(commit->tree->object.sha1));
c3a670de 1155 return 1;
cde75e59 1156 case 't': /* abbreviated tree hash */
b9c62321 1157 if (add_again(sb, &c->abbrev_tree_hash))
c3a670de 1158 return 1;
cde75e59 1159 strbuf_addstr(sb, find_unique_abbrev(commit->tree->object.sha1,
c1977021 1160 c->pretty_ctx->abbrev));
b9c62321 1161 c->abbrev_tree_hash.len = sb->len - c->abbrev_tree_hash.off;
c3a670de 1162 return 1;
cde75e59
RS
1163 case 'P': /* parent hashes */
1164 for (p = commit->parents; p; p = p->next) {
1165 if (p != commit->parents)
1166 strbuf_addch(sb, ' ');
1167 strbuf_addstr(sb, sha1_to_hex(p->item->object.sha1));
1168 }
c3a670de 1169 return 1;
cde75e59 1170 case 'p': /* abbreviated parent hashes */
b9c62321 1171 if (add_again(sb, &c->abbrev_parent_hashes))
c3a670de 1172 return 1;
cde75e59
RS
1173 for (p = commit->parents; p; p = p->next) {
1174 if (p != commit->parents)
1175 strbuf_addch(sb, ' ');
1176 strbuf_addstr(sb, find_unique_abbrev(
c1977021
WP
1177 p->item->object.sha1,
1178 c->pretty_ctx->abbrev));
cde75e59 1179 }
b9c62321
RS
1180 c->abbrev_parent_hashes.len = sb->len -
1181 c->abbrev_parent_hashes.off;
c3a670de 1182 return 1;
cde75e59 1183 case 'm': /* left/right/bottom */
1df2d656 1184 strbuf_addstr(sb, get_revision_mark(NULL, commit));
c3a670de 1185 return 1;
3b3d443f 1186 case 'd':
9d3f002f 1187 load_ref_decorations(DECORATE_SHORT_REFS);
a95f067e 1188 format_decorations(sb, commit, c->auto_color);
3b3d443f 1189 return 1;
8f8f5476
TR
1190 case 'g': /* reflog info */
1191 switch(placeholder[1]) {
1192 case 'd': /* reflog selector */
1193 case 'D':
1194 if (c->pretty_ctx->reflog_info)
1195 get_reflog_selector(sb,
1196 c->pretty_ctx->reflog_info,
1197 c->pretty_ctx->date_mode,
55ccf85a 1198 c->pretty_ctx->date_mode_explicit,
8f8f5476
TR
1199 (placeholder[1] == 'd'));
1200 return 2;
1201 case 's': /* reflog message */
1202 if (c->pretty_ctx->reflog_info)
1203 get_reflog_message(sb, c->pretty_ctx->reflog_info);
1204 return 2;
cd1957f5
JK
1205 case 'n':
1206 case 'N':
1207 case 'e':
1208 case 'E':
1209 return format_reflog_person(sb,
1210 placeholder[1],
1211 c->pretty_ctx->reflog_info,
1212 c->pretty_ctx->date_mode);
8f8f5476
TR
1213 }
1214 return 0; /* unknown %g placeholder */
8b208f02 1215 case 'N':
ddf333f6
JH
1216 if (c->pretty_ctx->notes_message) {
1217 strbuf_addstr(sb, c->pretty_ctx->notes_message);
5b163603
JG
1218 return 1;
1219 }
1220 return 0;
cde75e59
RS
1221 }
1222
f6667c5e 1223 if (placeholder[0] == 'G') {
ffb6d7d5
SG
1224 if (!c->signature_check.result)
1225 check_commit_signature(c->commit, &(c->signature_check));
f6667c5e
JH
1226 switch (placeholder[1]) {
1227 case 'G':
ffb6d7d5
SG
1228 if (c->signature_check.gpg_output)
1229 strbuf_addstr(sb, c->signature_check.gpg_output);
f6667c5e
JH
1230 break;
1231 case '?':
ffb6d7d5 1232 switch (c->signature_check.result) {
f6667c5e
JH
1233 case 'G':
1234 case 'B':
e290c4b9
SG
1235 case 'U':
1236 case 'N':
ffb6d7d5 1237 strbuf_addch(sb, c->signature_check.result);
f6667c5e
JH
1238 }
1239 break;
1240 case 'S':
ffb6d7d5
SG
1241 if (c->signature_check.signer)
1242 strbuf_addstr(sb, c->signature_check.signer);
f6667c5e 1243 break;
0174eeaa 1244 case 'K':
ffb6d7d5
SG
1245 if (c->signature_check.key)
1246 strbuf_addstr(sb, c->signature_check.key);
0174eeaa 1247 break;
f6667c5e
JH
1248 }
1249 return 2;
1250 }
1251
1252
cde75e59 1253 /* For the rest we have to parse the commit header. */
f29d5958
RS
1254 if (!c->commit_header_parsed)
1255 parse_commit_header(c);
93fc05eb 1256
f29d5958 1257 switch (placeholder[0]) {
c3a670de
MC
1258 case 'a': /* author ... */
1259 return format_person_part(sb, placeholder[1],
d36f8679 1260 msg + c->author.off, c->author.len,
dd2e794a 1261 c->pretty_ctx->date_mode);
c3a670de
MC
1262 case 'c': /* committer ... */
1263 return format_person_part(sb, placeholder[1],
d36f8679 1264 msg + c->committer.off, c->committer.len,
dd2e794a 1265 c->pretty_ctx->date_mode);
c3a670de 1266 case 'e': /* encoding */
0940a76d
NTND
1267 if (c->commit_encoding)
1268 strbuf_addstr(sb, c->commit_encoding);
c3a670de 1269 return 1;
1367b12a
EB
1270 case 'B': /* raw body */
1271 /* message_off is always left at the initial newline */
1272 strbuf_addstr(sb, msg + c->message_off + 1);
1273 return 1;
f53bd743
RS
1274 }
1275
1276 /* Now we need to parse the commit message. */
1277 if (!c->commit_message_parsed)
1278 parse_commit_message(c);
1279
1280 switch (placeholder[0]) {
1281 case 's': /* subject */
1282 format_subject(sb, msg + c->subject_off, " ");
1283 return 1;
46d164b0
SB
1284 case 'f': /* sanitized subject */
1285 format_sanitized_subject(sb, msg + c->subject_off);
1286 return 1;
c3a670de 1287 case 'b': /* body */
f29d5958 1288 strbuf_addstr(sb, msg + c->body_off);
c3a670de 1289 return 1;
93fc05eb 1290 }
c3a670de 1291 return 0; /* unknown placeholder */
cde75e59
RS
1292}
1293
a5752342
NTND
1294static size_t format_and_pad_commit(struct strbuf *sb, /* in UTF-8 */
1295 const char *placeholder,
1296 struct format_commit_context *c)
1297{
1298 struct strbuf local_sb = STRBUF_INIT;
1299 int total_consumed = 0, len, padding = c->padding;
1300 if (padding < 0) {
1301 const char *start = strrchr(sb->buf, '\n');
1302 int occupied;
1303 if (!start)
1304 start = sb->buf;
1305 occupied = utf8_strnwidth(start, -1, 1);
1306 padding = (-padding) - occupied;
1307 }
1308 while (1) {
1309 int modifier = *placeholder == 'C';
1310 int consumed = format_commit_one(&local_sb, placeholder, c);
1311 total_consumed += consumed;
1312
1313 if (!modifier)
1314 break;
1315
1316 placeholder += consumed;
1317 if (*placeholder != '%')
1318 break;
1319 placeholder++;
1320 total_consumed++;
1321 }
1322 len = utf8_strnwidth(local_sb.buf, -1, 1);
1640632b
NTND
1323
1324 if (c->flush_type == flush_left_and_steal) {
1325 const char *ch = sb->buf + sb->len - 1;
1326 while (len > padding && ch > sb->buf) {
1327 const char *p;
1328 if (*ch == ' ') {
1329 ch--;
1330 padding++;
1331 continue;
1332 }
1333 /* check for trailing ansi sequences */
1334 if (*ch != 'm')
1335 break;
1336 p = ch - 1;
1337 while (ch - p < 10 && *p != '\033')
1338 p--;
1339 if (*p != '\033' ||
1340 ch + 1 - p != display_mode_esc_sequence_len(p))
1341 break;
1342 /*
1343 * got a good ansi sequence, put it back to
1344 * local_sb as we're cutting sb
1345 */
1346 strbuf_insert(&local_sb, 0, p, ch + 1 - p);
1347 ch = p - 1;
1348 }
1349 strbuf_setlen(sb, ch + 1 - sb->buf);
1350 c->flush_type = flush_left;
1351 }
1352
a7f01c6b
NTND
1353 if (len > padding) {
1354 switch (c->truncate) {
1355 case trunc_left:
1356 strbuf_utf8_replace(&local_sb,
1357 0, len - (padding - 2),
1358 "..");
1359 break;
1360 case trunc_middle:
1361 strbuf_utf8_replace(&local_sb,
1362 padding / 2 - 1,
1363 len - (padding - 2),
1364 "..");
1365 break;
1366 case trunc_right:
1367 strbuf_utf8_replace(&local_sb,
1368 padding - 2, len - (padding - 2),
1369 "..");
1370 break;
1371 case trunc_none:
1372 break;
1373 }
a5752342 1374 strbuf_addstr(sb, local_sb.buf);
a7f01c6b 1375 } else {
a5752342
NTND
1376 int sb_len = sb->len, offset = 0;
1377 if (c->flush_type == flush_left)
1378 offset = padding - len;
1379 else if (c->flush_type == flush_both)
1380 offset = (padding - len) / 2;
1381 /*
1382 * we calculate padding in columns, now
1383 * convert it back to chars
1384 */
1385 padding = padding - len + local_sb.len;
1386 strbuf_grow(sb, padding);
1387 strbuf_setlen(sb, sb_len + padding);
1388 memset(sb->buf + sb_len, ' ', sb->len - sb_len);
1389 memcpy(sb->buf + sb_len + offset, local_sb.buf,
1390 local_sb.len);
1391 }
1392 strbuf_release(&local_sb);
1393 c->flush_type = no_flush;
1394 return total_consumed;
1395}
1396
7e77df39
NTND
1397static size_t format_commit_item(struct strbuf *sb, /* in UTF-8 */
1398 const char *placeholder,
9fa708da
JH
1399 void *context)
1400{
1401 int consumed;
1402 size_t orig_len;
1403 enum {
1404 NO_MAGIC,
1405 ADD_LF_BEFORE_NON_EMPTY,
1406 DEL_LF_BEFORE_EMPTY,
223a923c 1407 ADD_SP_BEFORE_NON_EMPTY
9fa708da
JH
1408 } magic = NO_MAGIC;
1409
1410 switch (placeholder[0]) {
1411 case '-':
1412 magic = DEL_LF_BEFORE_EMPTY;
1413 break;
1414 case '+':
1415 magic = ADD_LF_BEFORE_NON_EMPTY;
1416 break;
7b88176e
MG
1417 case ' ':
1418 magic = ADD_SP_BEFORE_NON_EMPTY;
1419 break;
9fa708da
JH
1420 default:
1421 break;
1422 }
1423 if (magic != NO_MAGIC)
1424 placeholder++;
1425
1426 orig_len = sb->len;
a5752342
NTND
1427 if (((struct format_commit_context *)context)->flush_type != no_flush)
1428 consumed = format_and_pad_commit(sb, placeholder, context);
1429 else
1430 consumed = format_commit_one(sb, placeholder, context);
9fa708da
JH
1431 if (magic == NO_MAGIC)
1432 return consumed;
1433
1434 if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1435 while (sb->len && sb->buf[sb->len - 1] == '\n')
1436 strbuf_setlen(sb, sb->len - 1);
7b88176e
MG
1437 } else if (orig_len != sb->len) {
1438 if (magic == ADD_LF_BEFORE_NON_EMPTY)
1439 strbuf_insert(sb, orig_len, "\n", 1);
1440 else if (magic == ADD_SP_BEFORE_NON_EMPTY)
1441 strbuf_insert(sb, orig_len, " ", 1);
9fa708da
JH
1442 }
1443 return consumed + 1;
1444}
1445
5b163603
JG
1446static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1447 void *context)
1448{
1449 struct userformat_want *w = context;
1450
7b88176e 1451 if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
5b163603
JG
1452 placeholder++;
1453
1454 switch (*placeholder) {
1455 case 'N':
1456 w->notes = 1;
1457 break;
1458 }
1459 return 0;
1460}
1461
1462void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1463{
1464 struct strbuf dummy = STRBUF_INIT;
1465
1466 if (!fmt) {
1467 if (!user_format)
1468 return;
1469 fmt = user_format;
1470 }
a6253d10 1471 strbuf_expand(&dummy, fmt, userformat_want_item, w);
5b163603
JG
1472 strbuf_release(&dummy);
1473}
1474
cde75e59 1475void format_commit_message(const struct commit *commit,
7f98ebc8 1476 const char *format, struct strbuf *sb,
dd2e794a 1477 const struct pretty_print_context *pretty_ctx)
cde75e59 1478{
f29d5958 1479 struct format_commit_context context;
177b29dc 1480 const char *output_enc = pretty_ctx->output_encoding;
7e77df39 1481 const char *utf8 = "UTF-8";
f29d5958
RS
1482
1483 memset(&context, 0, sizeof(context));
1484 context.commit = commit;
dd2e794a 1485 context.pretty_ctx = pretty_ctx;
02edd56b 1486 context.wrap_start = sb->len;
0940a76d
NTND
1487 context.message = logmsg_reencode(commit,
1488 &context.commit_encoding,
1489 output_enc);
177b29dc 1490
c3a670de 1491 strbuf_expand(sb, format, format_commit_item, &context);
02edd56b 1492 rewrap_message_tail(sb, &context, 0, 0, 0);
177b29dc 1493
7e77df39
NTND
1494 if (output_enc) {
1495 if (same_encoding(utf8, output_enc))
1496 output_enc = NULL;
1497 } else {
1498 if (context.commit_encoding &&
1499 !same_encoding(context.commit_encoding, utf8))
1500 output_enc = context.commit_encoding;
1501 }
1502
1503 if (output_enc) {
1504 int outsz;
1505 char *out = reencode_string_len(sb->buf, sb->len,
1506 output_enc, utf8, &outsz);
1507 if (out)
1508 strbuf_attach(sb, out, outsz, outsz + 1);
1509 }
1510
0940a76d 1511 free(context.commit_encoding);
dd0d388c 1512 logmsg_free(context.message, commit);
ffb6d7d5
SG
1513 free(context.signature_check.gpg_output);
1514 free(context.signature_check.signer);
93fc05eb
JS
1515}
1516
6bf13944 1517static void pp_header(const struct pretty_print_context *pp,
93fc05eb
JS
1518 const char *encoding,
1519 const struct commit *commit,
1520 const char **msg_p,
1521 struct strbuf *sb)
1522{
1523 int parents_shown = 0;
1524
1525 for (;;) {
1526 const char *line = *msg_p;
1527 int linelen = get_one_line(*msg_p);
1528
1529 if (!linelen)
1530 return;
1531 *msg_p += linelen;
1532
1533 if (linelen == 1)
1534 /* End of header */
1535 return;
1536
6bf13944 1537 if (pp->fmt == CMIT_FMT_RAW) {
93fc05eb
JS
1538 strbuf_add(sb, line, linelen);
1539 continue;
1540 }
1541
8a692d27 1542 if (!prefixcmp(line, "parent ")) {
93fc05eb
JS
1543 if (linelen != 48)
1544 die("bad parent line in commit");
1545 continue;
1546 }
1547
1548 if (!parents_shown) {
1549 struct commit_list *parent;
1550 int num;
1551 for (parent = commit->parents, num = 0;
1552 parent;
1553 parent = parent->next, num++)
1554 ;
1555 /* with enough slop */
1556 strbuf_grow(sb, num * 50 + 20);
6bf13944 1557 add_merge_info(pp, sb, commit);
93fc05eb
JS
1558 parents_shown = 1;
1559 }
1560
1561 /*
1562 * MEDIUM == DEFAULT shows only author with dates.
1563 * FULL shows both authors but not dates.
1564 * FULLER shows both authors and dates.
1565 */
8a692d27 1566 if (!prefixcmp(line, "author ")) {
93fc05eb 1567 strbuf_grow(sb, linelen + 80);
6bf13944 1568 pp_user_info(pp, "Author", sb, line + 7, encoding);
93fc05eb 1569 }
8a692d27 1570 if (!prefixcmp(line, "committer ") &&
6bf13944 1571 (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
93fc05eb 1572 strbuf_grow(sb, linelen + 80);
6bf13944 1573 pp_user_info(pp, "Commit", sb, line + 10, encoding);
93fc05eb
JS
1574 }
1575 }
1576}
1577
6bf13944 1578void pp_title_line(const struct pretty_print_context *pp,
b02bd65f
DB
1579 const char **msg_p,
1580 struct strbuf *sb,
b02bd65f 1581 const char *encoding,
267123b4 1582 int need_8bit_cte)
93fc05eb 1583{
41dd00ba 1584 static const int max_length = 78; /* per rfc2047 */
93fc05eb
JS
1585 struct strbuf title;
1586
1587 strbuf_init(&title, 80);
9553d2b2
JK
1588 *msg_p = format_subject(&title, *msg_p,
1589 pp->preserve_subject ? "\n" : " ");
93fc05eb
JS
1590
1591 strbuf_grow(sb, title.len + 1024);
6bf13944
JK
1592 if (pp->subject) {
1593 strbuf_addstr(sb, pp->subject);
41dd00ba
JS
1594 if (needs_rfc2047_encoding(title.buf, title.len, RFC2047_SUBJECT))
1595 add_rfc2047(sb, title.buf, title.len,
1596 encoding, RFC2047_SUBJECT);
1597 else
1598 strbuf_add_wrapped_bytes(sb, title.buf, title.len,
1599 -last_line_length(sb), 1, max_length);
93fc05eb
JS
1600 } else {
1601 strbuf_addbuf(sb, &title);
1602 }
1603 strbuf_addch(sb, '\n');
1604
6bf4f1b4 1605 if (need_8bit_cte > 0) {
93fc05eb
JS
1606 const char *header_fmt =
1607 "MIME-Version: 1.0\n"
1608 "Content-Type: text/plain; charset=%s\n"
1609 "Content-Transfer-Encoding: 8bit\n";
1610 strbuf_addf(sb, header_fmt, encoding);
1611 }
6bf13944
JK
1612 if (pp->after_subject) {
1613 strbuf_addstr(sb, pp->after_subject);
93fc05eb 1614 }
6bf13944 1615 if (pp->fmt == CMIT_FMT_EMAIL) {
93fc05eb
JS
1616 strbuf_addch(sb, '\n');
1617 }
1618 strbuf_release(&title);
1619}
1620
6bf13944 1621void pp_remainder(const struct pretty_print_context *pp,
b02bd65f
DB
1622 const char **msg_p,
1623 struct strbuf *sb,
1624 int indent)
93fc05eb
JS
1625{
1626 int first = 1;
1627 for (;;) {
1628 const char *line = *msg_p;
1629 int linelen = get_one_line(line);
1630 *msg_p += linelen;
1631
1632 if (!linelen)
1633 break;
1634
1635 if (is_empty_line(line, &linelen)) {
1636 if (first)
1637 continue;
6bf13944 1638 if (pp->fmt == CMIT_FMT_SHORT)
93fc05eb
JS
1639 break;
1640 }
1641 first = 0;
1642
1643 strbuf_grow(sb, linelen + indent + 20);
1644 if (indent) {
1645 memset(sb->buf + sb->len, ' ', indent);
1646 strbuf_setlen(sb, sb->len + indent);
1647 }
1648 strbuf_add(sb, line, linelen);
1649 strbuf_addch(sb, '\n');
1650 }
1651}
1652
6bf13944
JK
1653void pretty_print_commit(const struct pretty_print_context *pp,
1654 const struct commit *commit,
1655 struct strbuf *sb)
93fc05eb
JS
1656{
1657 unsigned long beginning_of_body;
1658 int indent = 4;
dd0d388c 1659 const char *msg;
93fc05eb
JS
1660 char *reencoded;
1661 const char *encoding;
6bf13944 1662 int need_8bit_cte = pp->need_8bit_cte;
93fc05eb 1663
6bf13944
JK
1664 if (pp->fmt == CMIT_FMT_USERFORMAT) {
1665 format_commit_message(commit, user_format, sb, pp);
93fc05eb
JS
1666 return;
1667 }
1668
e297cf5a 1669 encoding = get_log_output_encoding();
5a10d236 1670 msg = reencoded = logmsg_reencode(commit, NULL, encoding);
93fc05eb 1671
6bf13944 1672 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
93fc05eb
JS
1673 indent = 0;
1674
6bf4f1b4
JH
1675 /*
1676 * We need to check and emit Content-type: to mark it
1677 * as 8-bit if we haven't done so.
93fc05eb 1678 */
6bf13944 1679 if (pp->fmt == CMIT_FMT_EMAIL && need_8bit_cte == 0) {
93fc05eb
JS
1680 int i, ch, in_body;
1681
1682 for (in_body = i = 0; (ch = msg[i]); i++) {
1683 if (!in_body) {
1684 /* author could be non 7-bit ASCII but
1685 * the log may be so; skip over the
1686 * header part first.
1687 */
1688 if (ch == '\n' && msg[i+1] == '\n')
1689 in_body = 1;
1690 }
1691 else if (non_ascii(ch)) {
6bf4f1b4 1692 need_8bit_cte = 1;
93fc05eb
JS
1693 break;
1694 }
1695 }
1696 }
1697
6bf13944
JK
1698 pp_header(pp, encoding, commit, &msg, sb);
1699 if (pp->fmt != CMIT_FMT_ONELINE && !pp->subject) {
93fc05eb
JS
1700 strbuf_addch(sb, '\n');
1701 }
1702
1703 /* Skip excess blank lines at the beginning of body, if any... */
a0109668 1704 msg = skip_empty_lines(msg);
93fc05eb
JS
1705
1706 /* These formats treat the title line specially. */
6bf13944
JK
1707 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1708 pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
93fc05eb
JS
1709
1710 beginning_of_body = sb->len;
6bf13944
JK
1711 if (pp->fmt != CMIT_FMT_ONELINE)
1712 pp_remainder(pp, &msg, sb, indent);
93fc05eb
JS
1713 strbuf_rtrim(sb);
1714
1715 /* Make sure there is an EOLN for the non-oneline case */
6bf13944 1716 if (pp->fmt != CMIT_FMT_ONELINE)
93fc05eb
JS
1717 strbuf_addch(sb, '\n');
1718
1719 /*
1720 * The caller may append additional body text in e-mail
1721 * format. Make sure we did not strip the blank line
1722 * between the header and the body.
1723 */
6bf13944 1724 if (pp->fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body)
93fc05eb 1725 strbuf_addch(sb, '\n');
a97a7468 1726
dd0d388c 1727 logmsg_free(reencoded, commit);
93fc05eb 1728}
8b8a5374
JK
1729
1730void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
1731 struct strbuf *sb)
1732{
1733 struct pretty_print_context pp = {0};
6bf13944
JK
1734 pp.fmt = fmt;
1735 pretty_print_commit(&pp, commit, sb);
8b8a5374 1736}