]> git.ipfire.org Git - thirdparty/git.git/blame - pretty.c
mailmap: add mailmap structure to rev_info and pp
[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
348static void add_rfc2047(struct strbuf *sb, const char *line, int len,
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
JK
357 line_len += strlen(encoding) + 5; /* 5 for =??q? */
358 for (i = 0; i < len; i++) {
93fc05eb 359 unsigned ch = line[i] & 0xFF;
0fcec2ce 360 int is_special = is_rfc2047_special(ch, type);
94f6cdf6
JS
361
362 /*
363 * According to RFC 2047, we could encode the special character
364 * ' ' (space) with '_' (underscore) for readability. But many
365 * programs do not understand this and just leave the
366 * underscore in place. Thus, we do nothing special here, which
367 * causes ' ' to be encoded as '=20', avoiding this problem.
368 */
a1f6baa5 369
94f6cdf6 370 if (line_len + 2 + (is_special ? 3 : 1) > max_encoded_length) {
a1f6baa5
JK
371 strbuf_addf(sb, "?=\n =?%s?q?", encoding);
372 line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
373 }
374
94f6cdf6 375 if (is_special) {
93fc05eb 376 strbuf_addf(sb, "=%02X", ch);
a1f6baa5 377 line_len += 3;
94f6cdf6 378 } else {
a1f6baa5
JK
379 strbuf_addch(sb, ch);
380 line_len++;
93fc05eb
JS
381 }
382 }
93fc05eb
JS
383 strbuf_addstr(sb, "?=");
384}
385
6bf13944
JK
386void pp_user_info(const struct pretty_print_context *pp,
387 const char *what, struct strbuf *sb,
388 const char *line, const char *encoding)
93fc05eb 389{
3c020bd5
AP
390 struct ident_split ident;
391 int linelen, namelen;
392 char *line_end, *date;
41dd00ba 393 int max_length = 78; /* per rfc2822 */
93fc05eb
JS
394 unsigned long time;
395 int tz;
93fc05eb 396
6bf13944 397 if (pp->fmt == CMIT_FMT_ONELINE)
93fc05eb 398 return;
3c020bd5
AP
399
400 line_end = strchr(line, '\n');
401 if (!line_end) {
402 line_end = strchr(line, '\0');
403 if (!line_end)
404 return;
405 }
406
407 linelen = ++line_end - line;
408 if (split_ident_line(&ident, line, linelen))
93fc05eb 409 return;
3c020bd5
AP
410
411 namelen = ident.mail_end - ident.name_begin + 1;
412 time = strtoul(ident.date_begin, &date, 10);
93fc05eb
JS
413 tz = strtol(date, NULL, 10);
414
6bf13944 415 if (pp->fmt == CMIT_FMT_EMAIL) {
93fc05eb 416 int display_name_length;
3c020bd5
AP
417
418 display_name_length = ident.name_end - ident.name_begin;
419
93fc05eb 420 strbuf_addstr(sb, "From: ");
41dd00ba 421 if (needs_rfc2047_encoding(line, display_name_length, RFC2047_ADDRESS)) {
0fcec2ce
JS
422 add_rfc2047(sb, line, display_name_length,
423 encoding, RFC2047_ADDRESS);
41dd00ba
JS
424 max_length = 76; /* per rfc2047 */
425 } else if (needs_rfc822_quoting(line, display_name_length)) {
4d03c18a
JK
426 struct strbuf quoted = STRBUF_INIT;
427 add_rfc822_quoted(&quoted, line, display_name_length);
41dd00ba
JS
428 strbuf_add_wrapped_bytes(sb, quoted.buf, quoted.len,
429 -6, 1, max_length);
4d03c18a 430 strbuf_release(&quoted);
41dd00ba
JS
431 } else {
432 strbuf_add_wrapped_bytes(sb, line, display_name_length,
433 -6, 1, max_length);
4d03c18a 434 }
41dd00ba 435 if (namelen - display_name_length + last_line_length(sb) > max_length) {
990f6e30 436 strbuf_addch(sb, '\n');
3c020bd5 437 if (!isspace(ident.name_end[0]))
990f6e30
JK
438 strbuf_addch(sb, ' ');
439 }
3c020bd5 440 strbuf_add(sb, ident.name_end, namelen - display_name_length);
93fc05eb
JS
441 strbuf_addch(sb, '\n');
442 } else {
443 strbuf_addf(sb, "%s: %.*s%.*s\n", what,
6bf13944 444 (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0,
8e76bf3f 445 " ", namelen, line);
93fc05eb 446 }
6bf13944 447 switch (pp->fmt) {
93fc05eb 448 case CMIT_FMT_MEDIUM:
6bf13944 449 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, pp->date_mode));
93fc05eb
JS
450 break;
451 case CMIT_FMT_EMAIL:
452 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, DATE_RFC2822));
453 break;
454 case CMIT_FMT_FULLER:
6bf13944 455 strbuf_addf(sb, "%sDate: %s\n", what, show_date(time, tz, pp->date_mode));
93fc05eb
JS
456 break;
457 default:
458 /* notin' */
459 break;
460 }
461}
462
463static int is_empty_line(const char *line, int *len_p)
464{
465 int len = *len_p;
466 while (len && isspace(line[len-1]))
467 len--;
468 *len_p = len;
469 return !len;
470}
471
a0109668
RS
472static const char *skip_empty_lines(const char *msg)
473{
474 for (;;) {
475 int linelen = get_one_line(msg);
476 int ll = linelen;
477 if (!linelen)
478 break;
479 if (!is_empty_line(msg, &ll))
480 break;
481 msg += linelen;
482 }
483 return msg;
484}
485
6bf13944
JK
486static void add_merge_info(const struct pretty_print_context *pp,
487 struct strbuf *sb, const struct commit *commit)
93fc05eb
JS
488{
489 struct commit_list *parent = commit->parents;
490
6bf13944 491 if ((pp->fmt == CMIT_FMT_ONELINE) || (pp->fmt == CMIT_FMT_EMAIL) ||
93fc05eb
JS
492 !parent || !parent->next)
493 return;
494
495 strbuf_addstr(sb, "Merge:");
496
497 while (parent) {
498 struct commit *p = parent->item;
499 const char *hex = NULL;
6bf13944
JK
500 if (pp->abbrev)
501 hex = find_unique_abbrev(p->object.sha1, pp->abbrev);
93fc05eb
JS
502 if (!hex)
503 hex = sha1_to_hex(p->object.sha1);
93fc05eb
JS
504 parent = parent->next;
505
7fcda920 506 strbuf_addf(sb, " %s", hex);
93fc05eb
JS
507 }
508 strbuf_addch(sb, '\n');
509}
510
511static char *get_header(const struct commit *commit, const char *key)
512{
513 int key_len = strlen(key);
514 const char *line = commit->buffer;
515
a9c7a8a8 516 while (line) {
93fc05eb
JS
517 const char *eol = strchr(line, '\n'), *next;
518
519 if (line == eol)
520 return NULL;
521 if (!eol) {
a9c7a8a8
JK
522 warning("malformed commit (header is missing newline): %s",
523 sha1_to_hex(commit->object.sha1));
93fc05eb
JS
524 eol = line + strlen(line);
525 next = NULL;
526 } else
527 next = eol + 1;
528 if (eol - line > key_len &&
529 !strncmp(line, key, key_len) &&
530 line[key_len] == ' ') {
531 return xmemdupz(line + key_len + 1, eol - line - key_len - 1);
532 }
533 line = next;
534 }
a9c7a8a8 535 return NULL;
93fc05eb
JS
536}
537
538static char *replace_encoding_header(char *buf, const char *encoding)
539{
f285a2d7 540 struct strbuf tmp = STRBUF_INIT;
93fc05eb
JS
541 size_t start, len;
542 char *cp = buf;
543
544 /* guess if there is an encoding header before a \n\n */
545 while (strncmp(cp, "encoding ", strlen("encoding "))) {
546 cp = strchr(cp, '\n');
547 if (!cp || *++cp == '\n')
548 return buf;
549 }
550 start = cp - buf;
551 cp = strchr(cp, '\n');
552 if (!cp)
553 return buf; /* should not happen but be defensive */
554 len = cp + 1 - (buf + start);
555
93fc05eb
JS
556 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
557 if (is_encoding_utf8(encoding)) {
558 /* we have re-coded to UTF-8; drop the header */
559 strbuf_remove(&tmp, start, len);
560 } else {
561 /* just replaces XXXX in 'encoding XXXX\n' */
562 strbuf_splice(&tmp, start + strlen("encoding "),
563 len - strlen("encoding \n"),
564 encoding, strlen(encoding));
565 }
566 return strbuf_detach(&tmp, NULL);
567}
568
177b29dc
PN
569char *logmsg_reencode(const struct commit *commit,
570 const char *output_encoding)
93fc05eb 571{
330db18c 572 static const char *utf8 = "UTF-8";
93fc05eb
JS
573 const char *use_encoding;
574 char *encoding;
575 char *out;
576
577 if (!*output_encoding)
578 return NULL;
579 encoding = get_header(commit, "encoding");
580 use_encoding = encoding ? encoding : utf8;
0e18bcd5 581 if (same_encoding(use_encoding, output_encoding))
93fc05eb
JS
582 if (encoding) /* we'll strip encoding header later */
583 out = xstrdup(commit->buffer);
584 else
585 return NULL; /* nothing to do */
586 else
587 out = reencode_string(commit->buffer,
588 output_encoding, use_encoding);
589 if (out)
590 out = replace_encoding_header(out, output_encoding);
591
592 free(encoding);
593 return out;
594}
595
ea02ffa3
AP
596static int mailmap_name(const char **email, size_t *email_len,
597 const char **name, size_t *name_len)
e0cbc397 598{
c455c87c 599 static struct string_list *mail_map;
e0cbc397
JS
600 if (!mail_map) {
601 mail_map = xcalloc(1, sizeof(*mail_map));
d551a488 602 read_mailmap(mail_map, NULL);
e0cbc397 603 }
d20d654f 604 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
e0cbc397
JS
605}
606
c3a670de 607static size_t format_person_part(struct strbuf *sb, char part,
d36f8679 608 const char *msg, int len, enum date_mode dmode)
93fc05eb 609{
c3a670de
MC
610 /* currently all placeholders have same length */
611 const int placeholder_len = 2;
4b340cfa 612 int tz;
c3a670de 613 unsigned long date = 0;
4b340cfa 614 struct ident_split s;
ea02ffa3
AP
615 const char *name, *mail;
616 size_t maillen, namelen;
93fc05eb 617
4b340cfa 618 if (split_ident_line(&s, msg, len) < 0)
c3a670de
MC
619 goto skip;
620
ea02ffa3
AP
621 name = s.name_begin;
622 namelen = s.name_end - s.name_begin;
623 mail = s.mail_begin;
624 maillen = s.mail_end - s.mail_begin;
625
626 if (part == 'N' || part == 'E') /* mailmap lookup */
627 mailmap_name(&mail, &maillen, &name, &namelen);
e0cbc397 628 if (part == 'n' || part == 'N') { /* name */
ea02ffa3 629 strbuf_add(sb, name, namelen);
c3a670de 630 return placeholder_len;
cde75e59 631 }
d20d654f 632 if (part == 'e' || part == 'E') { /* email */
ea02ffa3 633 strbuf_add(sb, mail, maillen);
c3a670de 634 return placeholder_len;
cde75e59 635 }
93fc05eb 636
4b340cfa 637 if (!s.date_begin)
c3a670de 638 goto skip;
93fc05eb 639
4b340cfa
JH
640 date = strtoul(s.date_begin, NULL, 10);
641
cde75e59 642 if (part == 't') { /* date, UNIX timestamp */
4b340cfa 643 strbuf_add(sb, s.date_begin, s.date_end - s.date_begin);
c3a670de 644 return placeholder_len;
cde75e59 645 }
93fc05eb
JS
646
647 /* parse tz */
4b340cfa
JH
648 tz = strtoul(s.tz_begin + 1, NULL, 10);
649 if (*s.tz_begin == '-')
650 tz = -tz;
93fc05eb 651
cde75e59
RS
652 switch (part) {
653 case 'd': /* date */
d36f8679 654 strbuf_addstr(sb, show_date(date, tz, dmode));
c3a670de 655 return placeholder_len;
cde75e59
RS
656 case 'D': /* date, RFC2822 style */
657 strbuf_addstr(sb, show_date(date, tz, DATE_RFC2822));
c3a670de 658 return placeholder_len;
cde75e59
RS
659 case 'r': /* date, relative */
660 strbuf_addstr(sb, show_date(date, tz, DATE_RELATIVE));
c3a670de 661 return placeholder_len;
cde75e59
RS
662 case 'i': /* date, ISO 8601 */
663 strbuf_addstr(sb, show_date(date, tz, DATE_ISO8601));
c3a670de 664 return placeholder_len;
cde75e59 665 }
c3a670de
MC
666
667skip:
668 /*
4b340cfa
JH
669 * reading from either a bogus commit, or a reflog entry with
670 * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
671 * to compute a valid return value.
c3a670de
MC
672 */
673 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
674 || part == 'D' || part == 'r' || part == 'i')
675 return placeholder_len;
676
677 return 0; /* unknown placeholder */
93fc05eb
JS
678}
679
f29d5958
RS
680struct chunk {
681 size_t off;
682 size_t len;
683};
684
685struct format_commit_context {
686 const struct commit *commit;
dd2e794a 687 const struct pretty_print_context *pretty_ctx;
f53bd743
RS
688 unsigned commit_header_parsed:1;
689 unsigned commit_message_parsed:1;
f6667c5e
JH
690 unsigned commit_signature_parsed:1;
691 struct {
692 char *gpg_output;
693 char good_bad;
694 char *signer;
695 } signature;
177b29dc 696 char *message;
02edd56b 697 size_t width, indent1, indent2;
f29d5958
RS
698
699 /* These offsets are relative to the start of the commit message. */
f29d5958
RS
700 struct chunk author;
701 struct chunk committer;
702 struct chunk encoding;
f53bd743
RS
703 size_t message_off;
704 size_t subject_off;
f29d5958 705 size_t body_off;
b9c62321
RS
706
707 /* The following ones are relative to the result struct strbuf. */
708 struct chunk abbrev_commit_hash;
709 struct chunk abbrev_tree_hash;
710 struct chunk abbrev_parent_hashes;
02edd56b 711 size_t wrap_start;
f29d5958
RS
712};
713
b9c62321
RS
714static int add_again(struct strbuf *sb, struct chunk *chunk)
715{
716 if (chunk->len) {
717 strbuf_adddup(sb, chunk->off, chunk->len);
718 return 1;
719 }
720
721 /*
722 * We haven't seen this chunk before. Our caller is surely
723 * going to add it the hard way now. Remember the most likely
724 * start of the to-be-added chunk: the current end of the
725 * struct strbuf.
726 */
727 chunk->off = sb->len;
728 return 0;
729}
730
f29d5958 731static void parse_commit_header(struct format_commit_context *context)
93fc05eb 732{
177b29dc 733 const char *msg = context->message;
93fc05eb 734 int i;
f29d5958 735
f53bd743 736 for (i = 0; msg[i]; i++) {
f29d5958
RS
737 int eol;
738 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
739 ; /* do nothing */
740
f29d5958 741 if (i == eol) {
f53bd743 742 break;
f29d5958
RS
743 } else if (!prefixcmp(msg + i, "author ")) {
744 context->author.off = i + 7;
745 context->author.len = eol - i - 7;
746 } else if (!prefixcmp(msg + i, "committer ")) {
747 context->committer.off = i + 10;
748 context->committer.len = eol - i - 10;
749 } else if (!prefixcmp(msg + i, "encoding ")) {
750 context->encoding.off = i + 9;
751 context->encoding.len = eol - i - 9;
752 }
753 i = eol;
754 }
f53bd743 755 context->message_off = i;
f29d5958
RS
756 context->commit_header_parsed = 1;
757}
758
46d164b0
SB
759static int istitlechar(char c)
760{
761 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
762 (c >= '0' && c <= '9') || c == '.' || c == '_';
763}
764
765static void format_sanitized_subject(struct strbuf *sb, const char *msg)
766{
767 size_t trimlen;
871d21d4 768 size_t start_len = sb->len;
46d164b0
SB
769 int space = 2;
770
771 for (; *msg && *msg != '\n'; msg++) {
772 if (istitlechar(*msg)) {
773 if (space == 1)
774 strbuf_addch(sb, '-');
775 space = 0;
776 strbuf_addch(sb, *msg);
777 if (*msg == '.')
778 while (*(msg+1) == '.')
779 msg++;
780 } else
781 space |= 1;
782 }
783
784 /* trim any trailing '.' or '-' characters */
785 trimlen = 0;
871d21d4
SB
786 while (sb->len - trimlen > start_len &&
787 (sb->buf[sb->len - 1 - trimlen] == '.'
788 || sb->buf[sb->len - 1 - trimlen] == '-'))
46d164b0
SB
789 trimlen++;
790 strbuf_remove(sb, sb->len - trimlen, trimlen);
791}
792
cec08717
RS
793const char *format_subject(struct strbuf *sb, const char *msg,
794 const char *line_separator)
88c44735
RS
795{
796 int first = 1;
797
798 for (;;) {
799 const char *line = msg;
800 int linelen = get_one_line(line);
801
802 msg += linelen;
803 if (!linelen || is_empty_line(line, &linelen))
804 break;
805
f53bd743
RS
806 if (!sb)
807 continue;
88c44735
RS
808 strbuf_grow(sb, linelen + 2);
809 if (!first)
810 strbuf_addstr(sb, line_separator);
811 strbuf_add(sb, line, linelen);
812 first = 0;
813 }
814 return msg;
815}
816
f53bd743
RS
817static void parse_commit_message(struct format_commit_context *c)
818{
177b29dc
PN
819 const char *msg = c->message + c->message_off;
820 const char *start = c->message;
f53bd743
RS
821
822 msg = skip_empty_lines(msg);
823 c->subject_off = msg - start;
824
825 msg = format_subject(NULL, msg, NULL);
826 msg = skip_empty_lines(msg);
827 c->body_off = msg - start;
828
829 c->commit_message_parsed = 1;
830}
831
3b3d443f
RS
832static void format_decoration(struct strbuf *sb, const struct commit *commit)
833{
834 struct name_decoration *d;
835 const char *prefix = " (";
836
33e7018c 837 load_ref_decorations(DECORATE_SHORT_REFS);
3b3d443f
RS
838 d = lookup_decoration(&name_decoration, &commit->object);
839 while (d) {
840 strbuf_addstr(sb, prefix);
841 prefix = ", ";
842 strbuf_addstr(sb, d->name);
843 d = d->next;
844 }
845 if (prefix[0] == ',')
846 strbuf_addch(sb, ')');
847}
848
02edd56b
RS
849static void strbuf_wrap(struct strbuf *sb, size_t pos,
850 size_t width, size_t indent1, size_t indent2)
851{
852 struct strbuf tmp = STRBUF_INIT;
853
854 if (pos)
855 strbuf_add(&tmp, sb->buf, pos);
856 strbuf_add_wrapped_text(&tmp, sb->buf + pos,
857 (int) indent1, (int) indent2, (int) width);
858 strbuf_swap(&tmp, sb);
859 strbuf_release(&tmp);
860}
861
862static void rewrap_message_tail(struct strbuf *sb,
863 struct format_commit_context *c,
864 size_t new_width, size_t new_indent1,
865 size_t new_indent2)
866{
867 if (c->width == new_width && c->indent1 == new_indent1 &&
868 c->indent2 == new_indent2)
869 return;
32ca4249 870 if (c->wrap_start < sb->len)
02edd56b
RS
871 strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
872 c->wrap_start = sb->len;
873 c->width = new_width;
874 c->indent1 = new_indent1;
875 c->indent2 = new_indent2;
876}
877
f6667c5e
JH
878static struct {
879 char result;
880 const char *check;
881} signature_check[] = {
882 { 'G', ": Good signature from " },
883 { 'B', ": BAD signature from " },
884};
885
886static void parse_signature_lines(struct format_commit_context *ctx)
887{
888 const char *buf = ctx->signature.gpg_output;
889 int i;
890
891 for (i = 0; i < ARRAY_SIZE(signature_check); i++) {
892 const char *found = strstr(buf, signature_check[i].check);
893 const char *next;
894 if (!found)
895 continue;
896 ctx->signature.good_bad = signature_check[i].result;
897 found += strlen(signature_check[i].check);
898 next = strchrnul(found, '\n');
899 ctx->signature.signer = xmemdupz(found, next - found);
900 break;
901 }
902}
903
904static void parse_commit_signature(struct format_commit_context *ctx)
905{
906 struct strbuf payload = STRBUF_INIT;
907 struct strbuf signature = STRBUF_INIT;
908 struct strbuf gpg_output = STRBUF_INIT;
909 int status;
910
911 ctx->commit_signature_parsed = 1;
912
913 if (parse_signed_commit(ctx->commit->object.sha1,
914 &payload, &signature) <= 0)
915 goto out;
916 status = verify_signed_buffer(payload.buf, payload.len,
917 signature.buf, signature.len,
918 &gpg_output);
919 if (status && !gpg_output.len)
920 goto out;
921 ctx->signature.gpg_output = strbuf_detach(&gpg_output, NULL);
922 parse_signature_lines(ctx);
923
924 out:
925 strbuf_release(&gpg_output);
926 strbuf_release(&payload);
927 strbuf_release(&signature);
928}
929
930
cd1957f5
JK
931static int format_reflog_person(struct strbuf *sb,
932 char part,
933 struct reflog_walk_info *log,
934 enum date_mode dmode)
935{
936 const char *ident;
937
938 if (!log)
939 return 2;
940
941 ident = get_reflog_ident(log);
942 if (!ident)
943 return 2;
944
945 return format_person_part(sb, part, ident, strlen(ident), dmode);
946}
947
9fa708da
JH
948static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
949 void *context)
f29d5958
RS
950{
951 struct format_commit_context *c = context;
952 const struct commit *commit = c->commit;
177b29dc 953 const char *msg = c->message;
f29d5958 954 struct commit_list *p;
42c8c74c 955 int h1, h2;
93fc05eb 956
93fc05eb 957 /* these are independent of the commit */
cde75e59
RS
958 switch (placeholder[0]) {
959 case 'C':
c002922a
JK
960 if (placeholder[1] == '(') {
961 const char *end = strchr(placeholder + 2, ')');
962 char color[COLOR_MAXLEN];
963 if (!end)
964 return 0;
965 color_parse_mem(placeholder + 2,
966 end - (placeholder + 2),
967 "--pretty format", color);
968 strbuf_addstr(sb, color);
969 return end - placeholder + 1;
970 }
c3a670de 971 if (!prefixcmp(placeholder + 1, "red")) {
dc6ebd4c 972 strbuf_addstr(sb, GIT_COLOR_RED);
c3a670de
MC
973 return 4;
974 } else if (!prefixcmp(placeholder + 1, "green")) {
dc6ebd4c 975 strbuf_addstr(sb, GIT_COLOR_GREEN);
c3a670de
MC
976 return 6;
977 } else if (!prefixcmp(placeholder + 1, "blue")) {
dc6ebd4c 978 strbuf_addstr(sb, GIT_COLOR_BLUE);
c3a670de
MC
979 return 5;
980 } else if (!prefixcmp(placeholder + 1, "reset")) {
dc6ebd4c 981 strbuf_addstr(sb, GIT_COLOR_RESET);
c3a670de
MC
982 return 6;
983 } else
984 return 0;
cde75e59
RS
985 case 'n': /* newline */
986 strbuf_addch(sb, '\n');
c3a670de 987 return 1;
42c8c74c
GS
988 case 'x':
989 /* %x00 == NUL, %x0a == LF, etc. */
990 if (0 <= (h1 = hexval_table[0xff & placeholder[1]]) &&
991 h1 <= 16 &&
992 0 <= (h2 = hexval_table[0xff & placeholder[2]]) &&
993 h2 <= 16) {
994 strbuf_addch(sb, (h1<<4)|h2);
995 return 3;
996 } else
997 return 0;
02edd56b
RS
998 case 'w':
999 if (placeholder[1] == '(') {
1000 unsigned long width = 0, indent1 = 0, indent2 = 0;
1001 char *next;
1002 const char *start = placeholder + 2;
1003 const char *end = strchr(start, ')');
1004 if (!end)
1005 return 0;
1006 if (end > start) {
1007 width = strtoul(start, &next, 10);
1008 if (*next == ',') {
1009 indent1 = strtoul(next + 1, &next, 10);
1010 if (*next == ',') {
1011 indent2 = strtoul(next + 1,
1012 &next, 10);
1013 }
1014 }
1015 if (*next != ')')
1016 return 0;
1017 }
1018 rewrap_message_tail(sb, c, width, indent1, indent2);
1019 return end - placeholder + 1;
1020 } else
1021 return 0;
cde75e59 1022 }
93fc05eb
JS
1023
1024 /* these depend on the commit */
1025 if (!commit->object.parsed)
1026 parse_object(commit->object.sha1);
93fc05eb 1027
cde75e59
RS
1028 switch (placeholder[0]) {
1029 case 'H': /* commit hash */
1030 strbuf_addstr(sb, sha1_to_hex(commit->object.sha1));
c3a670de 1031 return 1;
cde75e59 1032 case 'h': /* abbreviated commit hash */
b9c62321 1033 if (add_again(sb, &c->abbrev_commit_hash))
c3a670de 1034 return 1;
cde75e59 1035 strbuf_addstr(sb, find_unique_abbrev(commit->object.sha1,
c1977021 1036 c->pretty_ctx->abbrev));
b9c62321 1037 c->abbrev_commit_hash.len = sb->len - c->abbrev_commit_hash.off;
c3a670de 1038 return 1;
cde75e59
RS
1039 case 'T': /* tree hash */
1040 strbuf_addstr(sb, sha1_to_hex(commit->tree->object.sha1));
c3a670de 1041 return 1;
cde75e59 1042 case 't': /* abbreviated tree hash */
b9c62321 1043 if (add_again(sb, &c->abbrev_tree_hash))
c3a670de 1044 return 1;
cde75e59 1045 strbuf_addstr(sb, find_unique_abbrev(commit->tree->object.sha1,
c1977021 1046 c->pretty_ctx->abbrev));
b9c62321 1047 c->abbrev_tree_hash.len = sb->len - c->abbrev_tree_hash.off;
c3a670de 1048 return 1;
cde75e59
RS
1049 case 'P': /* parent hashes */
1050 for (p = commit->parents; p; p = p->next) {
1051 if (p != commit->parents)
1052 strbuf_addch(sb, ' ');
1053 strbuf_addstr(sb, sha1_to_hex(p->item->object.sha1));
1054 }
c3a670de 1055 return 1;
cde75e59 1056 case 'p': /* abbreviated parent hashes */
b9c62321 1057 if (add_again(sb, &c->abbrev_parent_hashes))
c3a670de 1058 return 1;
cde75e59
RS
1059 for (p = commit->parents; p; p = p->next) {
1060 if (p != commit->parents)
1061 strbuf_addch(sb, ' ');
1062 strbuf_addstr(sb, find_unique_abbrev(
c1977021
WP
1063 p->item->object.sha1,
1064 c->pretty_ctx->abbrev));
cde75e59 1065 }
b9c62321
RS
1066 c->abbrev_parent_hashes.len = sb->len -
1067 c->abbrev_parent_hashes.off;
c3a670de 1068 return 1;
cde75e59 1069 case 'm': /* left/right/bottom */
1df2d656 1070 strbuf_addstr(sb, get_revision_mark(NULL, commit));
c3a670de 1071 return 1;
3b3d443f
RS
1072 case 'd':
1073 format_decoration(sb, commit);
1074 return 1;
8f8f5476
TR
1075 case 'g': /* reflog info */
1076 switch(placeholder[1]) {
1077 case 'd': /* reflog selector */
1078 case 'D':
1079 if (c->pretty_ctx->reflog_info)
1080 get_reflog_selector(sb,
1081 c->pretty_ctx->reflog_info,
1082 c->pretty_ctx->date_mode,
55ccf85a 1083 c->pretty_ctx->date_mode_explicit,
8f8f5476
TR
1084 (placeholder[1] == 'd'));
1085 return 2;
1086 case 's': /* reflog message */
1087 if (c->pretty_ctx->reflog_info)
1088 get_reflog_message(sb, c->pretty_ctx->reflog_info);
1089 return 2;
cd1957f5
JK
1090 case 'n':
1091 case 'N':
1092 case 'e':
1093 case 'E':
1094 return format_reflog_person(sb,
1095 placeholder[1],
1096 c->pretty_ctx->reflog_info,
1097 c->pretty_ctx->date_mode);
8f8f5476
TR
1098 }
1099 return 0; /* unknown %g placeholder */
8b208f02 1100 case 'N':
ddf333f6
JH
1101 if (c->pretty_ctx->notes_message) {
1102 strbuf_addstr(sb, c->pretty_ctx->notes_message);
5b163603
JG
1103 return 1;
1104 }
1105 return 0;
cde75e59
RS
1106 }
1107
f6667c5e
JH
1108 if (placeholder[0] == 'G') {
1109 if (!c->commit_signature_parsed)
1110 parse_commit_signature(c);
1111 switch (placeholder[1]) {
1112 case 'G':
1113 if (c->signature.gpg_output)
1114 strbuf_addstr(sb, c->signature.gpg_output);
1115 break;
1116 case '?':
1117 switch (c->signature.good_bad) {
1118 case 'G':
1119 case 'B':
1120 strbuf_addch(sb, c->signature.good_bad);
1121 }
1122 break;
1123 case 'S':
1124 if (c->signature.signer)
1125 strbuf_addstr(sb, c->signature.signer);
1126 break;
1127 }
1128 return 2;
1129 }
1130
1131
cde75e59 1132 /* For the rest we have to parse the commit header. */
f29d5958
RS
1133 if (!c->commit_header_parsed)
1134 parse_commit_header(c);
93fc05eb 1135
f29d5958 1136 switch (placeholder[0]) {
c3a670de
MC
1137 case 'a': /* author ... */
1138 return format_person_part(sb, placeholder[1],
d36f8679 1139 msg + c->author.off, c->author.len,
dd2e794a 1140 c->pretty_ctx->date_mode);
c3a670de
MC
1141 case 'c': /* committer ... */
1142 return format_person_part(sb, placeholder[1],
d36f8679 1143 msg + c->committer.off, c->committer.len,
dd2e794a 1144 c->pretty_ctx->date_mode);
c3a670de 1145 case 'e': /* encoding */
f29d5958 1146 strbuf_add(sb, msg + c->encoding.off, c->encoding.len);
c3a670de 1147 return 1;
1367b12a
EB
1148 case 'B': /* raw body */
1149 /* message_off is always left at the initial newline */
1150 strbuf_addstr(sb, msg + c->message_off + 1);
1151 return 1;
f53bd743
RS
1152 }
1153
1154 /* Now we need to parse the commit message. */
1155 if (!c->commit_message_parsed)
1156 parse_commit_message(c);
1157
1158 switch (placeholder[0]) {
1159 case 's': /* subject */
1160 format_subject(sb, msg + c->subject_off, " ");
1161 return 1;
46d164b0
SB
1162 case 'f': /* sanitized subject */
1163 format_sanitized_subject(sb, msg + c->subject_off);
1164 return 1;
c3a670de 1165 case 'b': /* body */
f29d5958 1166 strbuf_addstr(sb, msg + c->body_off);
c3a670de 1167 return 1;
93fc05eb 1168 }
c3a670de 1169 return 0; /* unknown placeholder */
cde75e59
RS
1170}
1171
9fa708da
JH
1172static size_t format_commit_item(struct strbuf *sb, const char *placeholder,
1173 void *context)
1174{
1175 int consumed;
1176 size_t orig_len;
1177 enum {
1178 NO_MAGIC,
1179 ADD_LF_BEFORE_NON_EMPTY,
1180 DEL_LF_BEFORE_EMPTY,
223a923c 1181 ADD_SP_BEFORE_NON_EMPTY
9fa708da
JH
1182 } magic = NO_MAGIC;
1183
1184 switch (placeholder[0]) {
1185 case '-':
1186 magic = DEL_LF_BEFORE_EMPTY;
1187 break;
1188 case '+':
1189 magic = ADD_LF_BEFORE_NON_EMPTY;
1190 break;
7b88176e
MG
1191 case ' ':
1192 magic = ADD_SP_BEFORE_NON_EMPTY;
1193 break;
9fa708da
JH
1194 default:
1195 break;
1196 }
1197 if (magic != NO_MAGIC)
1198 placeholder++;
1199
1200 orig_len = sb->len;
1201 consumed = format_commit_one(sb, placeholder, context);
1202 if (magic == NO_MAGIC)
1203 return consumed;
1204
1205 if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1206 while (sb->len && sb->buf[sb->len - 1] == '\n')
1207 strbuf_setlen(sb, sb->len - 1);
7b88176e
MG
1208 } else if (orig_len != sb->len) {
1209 if (magic == ADD_LF_BEFORE_NON_EMPTY)
1210 strbuf_insert(sb, orig_len, "\n", 1);
1211 else if (magic == ADD_SP_BEFORE_NON_EMPTY)
1212 strbuf_insert(sb, orig_len, " ", 1);
9fa708da
JH
1213 }
1214 return consumed + 1;
1215}
1216
5b163603
JG
1217static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1218 void *context)
1219{
1220 struct userformat_want *w = context;
1221
7b88176e 1222 if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
5b163603
JG
1223 placeholder++;
1224
1225 switch (*placeholder) {
1226 case 'N':
1227 w->notes = 1;
1228 break;
1229 }
1230 return 0;
1231}
1232
1233void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1234{
1235 struct strbuf dummy = STRBUF_INIT;
1236
1237 if (!fmt) {
1238 if (!user_format)
1239 return;
1240 fmt = user_format;
1241 }
a6253d10 1242 strbuf_expand(&dummy, fmt, userformat_want_item, w);
5b163603
JG
1243 strbuf_release(&dummy);
1244}
1245
cde75e59 1246void format_commit_message(const struct commit *commit,
7f98ebc8 1247 const char *format, struct strbuf *sb,
dd2e794a 1248 const struct pretty_print_context *pretty_ctx)
cde75e59 1249{
f29d5958 1250 struct format_commit_context context;
177b29dc 1251 static const char utf8[] = "UTF-8";
177b29dc 1252 const char *output_enc = pretty_ctx->output_encoding;
f29d5958
RS
1253
1254 memset(&context, 0, sizeof(context));
1255 context.commit = commit;
dd2e794a 1256 context.pretty_ctx = pretty_ctx;
02edd56b 1257 context.wrap_start = sb->len;
177b29dc
PN
1258 context.message = commit->buffer;
1259 if (output_enc) {
9cd7a92b 1260 char *enc = get_header(commit, "encoding");
1d5bd615 1261 if (strcmp(enc ? enc : utf8, output_enc)) {
177b29dc 1262 context.message = logmsg_reencode(commit, output_enc);
1d5bd615
NTND
1263 if (!context.message)
1264 context.message = commit->buffer;
1265 }
9cd7a92b 1266 free(enc);
177b29dc
PN
1267 }
1268
c3a670de 1269 strbuf_expand(sb, format, format_commit_item, &context);
02edd56b 1270 rewrap_message_tail(sb, &context, 0, 0, 0);
177b29dc
PN
1271
1272 if (context.message != commit->buffer)
1273 free(context.message);
f6667c5e
JH
1274 free(context.signature.gpg_output);
1275 free(context.signature.signer);
93fc05eb
JS
1276}
1277
6bf13944 1278static void pp_header(const struct pretty_print_context *pp,
93fc05eb
JS
1279 const char *encoding,
1280 const struct commit *commit,
1281 const char **msg_p,
1282 struct strbuf *sb)
1283{
1284 int parents_shown = 0;
1285
1286 for (;;) {
1287 const char *line = *msg_p;
1288 int linelen = get_one_line(*msg_p);
1289
1290 if (!linelen)
1291 return;
1292 *msg_p += linelen;
1293
1294 if (linelen == 1)
1295 /* End of header */
1296 return;
1297
6bf13944 1298 if (pp->fmt == CMIT_FMT_RAW) {
93fc05eb
JS
1299 strbuf_add(sb, line, linelen);
1300 continue;
1301 }
1302
1303 if (!memcmp(line, "parent ", 7)) {
1304 if (linelen != 48)
1305 die("bad parent line in commit");
1306 continue;
1307 }
1308
1309 if (!parents_shown) {
1310 struct commit_list *parent;
1311 int num;
1312 for (parent = commit->parents, num = 0;
1313 parent;
1314 parent = parent->next, num++)
1315 ;
1316 /* with enough slop */
1317 strbuf_grow(sb, num * 50 + 20);
6bf13944 1318 add_merge_info(pp, sb, commit);
93fc05eb
JS
1319 parents_shown = 1;
1320 }
1321
1322 /*
1323 * MEDIUM == DEFAULT shows only author with dates.
1324 * FULL shows both authors but not dates.
1325 * FULLER shows both authors and dates.
1326 */
1327 if (!memcmp(line, "author ", 7)) {
1328 strbuf_grow(sb, linelen + 80);
6bf13944 1329 pp_user_info(pp, "Author", sb, line + 7, encoding);
93fc05eb
JS
1330 }
1331 if (!memcmp(line, "committer ", 10) &&
6bf13944 1332 (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
93fc05eb 1333 strbuf_grow(sb, linelen + 80);
6bf13944 1334 pp_user_info(pp, "Commit", sb, line + 10, encoding);
93fc05eb
JS
1335 }
1336 }
1337}
1338
6bf13944 1339void pp_title_line(const struct pretty_print_context *pp,
b02bd65f
DB
1340 const char **msg_p,
1341 struct strbuf *sb,
b02bd65f 1342 const char *encoding,
267123b4 1343 int need_8bit_cte)
93fc05eb 1344{
41dd00ba 1345 static const int max_length = 78; /* per rfc2047 */
93fc05eb
JS
1346 struct strbuf title;
1347
1348 strbuf_init(&title, 80);
9553d2b2
JK
1349 *msg_p = format_subject(&title, *msg_p,
1350 pp->preserve_subject ? "\n" : " ");
93fc05eb
JS
1351
1352 strbuf_grow(sb, title.len + 1024);
6bf13944
JK
1353 if (pp->subject) {
1354 strbuf_addstr(sb, pp->subject);
41dd00ba
JS
1355 if (needs_rfc2047_encoding(title.buf, title.len, RFC2047_SUBJECT))
1356 add_rfc2047(sb, title.buf, title.len,
1357 encoding, RFC2047_SUBJECT);
1358 else
1359 strbuf_add_wrapped_bytes(sb, title.buf, title.len,
1360 -last_line_length(sb), 1, max_length);
93fc05eb
JS
1361 } else {
1362 strbuf_addbuf(sb, &title);
1363 }
1364 strbuf_addch(sb, '\n');
1365
6bf4f1b4 1366 if (need_8bit_cte > 0) {
93fc05eb
JS
1367 const char *header_fmt =
1368 "MIME-Version: 1.0\n"
1369 "Content-Type: text/plain; charset=%s\n"
1370 "Content-Transfer-Encoding: 8bit\n";
1371 strbuf_addf(sb, header_fmt, encoding);
1372 }
6bf13944
JK
1373 if (pp->after_subject) {
1374 strbuf_addstr(sb, pp->after_subject);
93fc05eb 1375 }
6bf13944 1376 if (pp->fmt == CMIT_FMT_EMAIL) {
93fc05eb
JS
1377 strbuf_addch(sb, '\n');
1378 }
1379 strbuf_release(&title);
1380}
1381
6bf13944 1382void pp_remainder(const struct pretty_print_context *pp,
b02bd65f
DB
1383 const char **msg_p,
1384 struct strbuf *sb,
1385 int indent)
93fc05eb
JS
1386{
1387 int first = 1;
1388 for (;;) {
1389 const char *line = *msg_p;
1390 int linelen = get_one_line(line);
1391 *msg_p += linelen;
1392
1393 if (!linelen)
1394 break;
1395
1396 if (is_empty_line(line, &linelen)) {
1397 if (first)
1398 continue;
6bf13944 1399 if (pp->fmt == CMIT_FMT_SHORT)
93fc05eb
JS
1400 break;
1401 }
1402 first = 0;
1403
1404 strbuf_grow(sb, linelen + indent + 20);
1405 if (indent) {
1406 memset(sb->buf + sb->len, ' ', indent);
1407 strbuf_setlen(sb, sb->len + indent);
1408 }
1409 strbuf_add(sb, line, linelen);
1410 strbuf_addch(sb, '\n');
1411 }
1412}
1413
6bf13944
JK
1414void pretty_print_commit(const struct pretty_print_context *pp,
1415 const struct commit *commit,
1416 struct strbuf *sb)
93fc05eb
JS
1417{
1418 unsigned long beginning_of_body;
1419 int indent = 4;
1420 const char *msg = commit->buffer;
1421 char *reencoded;
1422 const char *encoding;
6bf13944 1423 int need_8bit_cte = pp->need_8bit_cte;
93fc05eb 1424
6bf13944
JK
1425 if (pp->fmt == CMIT_FMT_USERFORMAT) {
1426 format_commit_message(commit, user_format, sb, pp);
93fc05eb
JS
1427 return;
1428 }
1429
e297cf5a
JH
1430 encoding = get_log_output_encoding();
1431 reencoded = logmsg_reencode(commit, encoding);
93fc05eb
JS
1432 if (reencoded) {
1433 msg = reencoded;
1434 }
1435
6bf13944 1436 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
93fc05eb
JS
1437 indent = 0;
1438
6bf4f1b4
JH
1439 /*
1440 * We need to check and emit Content-type: to mark it
1441 * as 8-bit if we haven't done so.
93fc05eb 1442 */
6bf13944 1443 if (pp->fmt == CMIT_FMT_EMAIL && need_8bit_cte == 0) {
93fc05eb
JS
1444 int i, ch, in_body;
1445
1446 for (in_body = i = 0; (ch = msg[i]); i++) {
1447 if (!in_body) {
1448 /* author could be non 7-bit ASCII but
1449 * the log may be so; skip over the
1450 * header part first.
1451 */
1452 if (ch == '\n' && msg[i+1] == '\n')
1453 in_body = 1;
1454 }
1455 else if (non_ascii(ch)) {
6bf4f1b4 1456 need_8bit_cte = 1;
93fc05eb
JS
1457 break;
1458 }
1459 }
1460 }
1461
6bf13944
JK
1462 pp_header(pp, encoding, commit, &msg, sb);
1463 if (pp->fmt != CMIT_FMT_ONELINE && !pp->subject) {
93fc05eb
JS
1464 strbuf_addch(sb, '\n');
1465 }
1466
1467 /* Skip excess blank lines at the beginning of body, if any... */
a0109668 1468 msg = skip_empty_lines(msg);
93fc05eb
JS
1469
1470 /* These formats treat the title line specially. */
6bf13944
JK
1471 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1472 pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
93fc05eb
JS
1473
1474 beginning_of_body = sb->len;
6bf13944
JK
1475 if (pp->fmt != CMIT_FMT_ONELINE)
1476 pp_remainder(pp, &msg, sb, indent);
93fc05eb
JS
1477 strbuf_rtrim(sb);
1478
1479 /* Make sure there is an EOLN for the non-oneline case */
6bf13944 1480 if (pp->fmt != CMIT_FMT_ONELINE)
93fc05eb
JS
1481 strbuf_addch(sb, '\n');
1482
1483 /*
1484 * The caller may append additional body text in e-mail
1485 * format. Make sure we did not strip the blank line
1486 * between the header and the body.
1487 */
6bf13944 1488 if (pp->fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body)
93fc05eb 1489 strbuf_addch(sb, '\n');
a97a7468 1490
93fc05eb
JS
1491 free(reencoded);
1492}
8b8a5374
JK
1493
1494void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
1495 struct strbuf *sb)
1496{
1497 struct pretty_print_context pp = {0};
6bf13944
JK
1498 pp.fmt = fmt;
1499 pretty_print_commit(&pp, commit, sb);
8b8a5374 1500}