Merge branch 'jn/gitweb-blame' into pu
[git/spearce.git] / pretty.c
blob39dc7f9f7dca99752edee98ff3e50ef4a72e1196
1 #include "cache.h"
2 #include "commit.h"
3 #include "utf8.h"
4 #include "diff.h"
5 #include "revision.h"
6 #include "string-list.h"
7 #include "mailmap.h"
8 #include "log-tree.h"
9 #include "notes.h"
10 #include "color.h"
12 static char *user_format;
14 static void save_user_format(struct rev_info *rev, const char *cp, int is_tformat)
16 free(user_format);
17 user_format = xstrdup(cp);
18 if (is_tformat)
19 rev->use_terminator = 1;
20 rev->commit_format = CMIT_FMT_USERFORMAT;
23 void get_commit_format(const char *arg, struct rev_info *rev)
25 int i;
26 static struct cmt_fmt_map {
27 const char *n;
28 size_t cmp_len;
29 enum cmit_fmt v;
30 } cmt_fmts[] = {
31 { "raw", 1, CMIT_FMT_RAW },
32 { "medium", 1, CMIT_FMT_MEDIUM },
33 { "short", 1, CMIT_FMT_SHORT },
34 { "email", 1, CMIT_FMT_EMAIL },
35 { "full", 5, CMIT_FMT_FULL },
36 { "fuller", 5, CMIT_FMT_FULLER },
37 { "oneline", 1, CMIT_FMT_ONELINE },
40 rev->use_terminator = 0;
41 if (!arg || !*arg) {
42 rev->commit_format = CMIT_FMT_DEFAULT;
43 return;
45 if (!prefixcmp(arg, "format:") || !prefixcmp(arg, "tformat:")) {
46 save_user_format(rev, strchr(arg, ':') + 1, arg[0] == 't');
47 return;
49 for (i = 0; i < ARRAY_SIZE(cmt_fmts); i++) {
50 if (!strncmp(arg, cmt_fmts[i].n, cmt_fmts[i].cmp_len) &&
51 !strncmp(arg, cmt_fmts[i].n, strlen(arg))) {
52 if (cmt_fmts[i].v == CMIT_FMT_ONELINE)
53 rev->use_terminator = 1;
54 rev->commit_format = cmt_fmts[i].v;
55 return;
58 if (strchr(arg, '%')) {
59 save_user_format(rev, arg, 1);
60 return;
63 die("invalid --pretty format: %s", arg);
67 * Generic support for pretty-printing the header
69 static int get_one_line(const char *msg)
71 int ret = 0;
73 for (;;) {
74 char c = *msg++;
75 if (!c)
76 break;
77 ret++;
78 if (c == '\n')
79 break;
81 return ret;
84 /* High bit set, or ISO-2022-INT */
85 int non_ascii(int ch)
87 return !isascii(ch) || ch == '\033';
90 int has_non_ascii(const char *s)
92 int ch;
93 if (!s)
94 return 0;
95 while ((ch = *s++) != '\0') {
96 if (non_ascii(ch))
97 return 1;
99 return 0;
102 static int is_rfc2047_special(char ch)
104 return (non_ascii(ch) || (ch == '=') || (ch == '?') || (ch == '_'));
107 static void add_rfc2047(struct strbuf *sb, const char *line, int len,
108 const char *encoding)
110 int i, last;
112 for (i = 0; i < len; i++) {
113 int ch = line[i];
114 if (non_ascii(ch))
115 goto needquote;
116 if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
117 goto needquote;
119 strbuf_add(sb, line, len);
120 return;
122 needquote:
123 strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
124 strbuf_addf(sb, "=?%s?q?", encoding);
125 for (i = last = 0; i < len; i++) {
126 unsigned ch = line[i] & 0xFF;
128 * We encode ' ' using '=20' even though rfc2047
129 * allows using '_' for readability. Unfortunately,
130 * many programs do not understand this and just
131 * leave the underscore in place.
133 if (is_rfc2047_special(ch) || ch == ' ') {
134 strbuf_add(sb, line + last, i - last);
135 strbuf_addf(sb, "=%02X", ch);
136 last = i + 1;
139 strbuf_add(sb, line + last, len - last);
140 strbuf_addstr(sb, "?=");
143 void pp_user_info(const char *what, enum cmit_fmt fmt, struct strbuf *sb,
144 const char *line, enum date_mode dmode,
145 const char *encoding)
147 char *date;
148 int namelen;
149 unsigned long time;
150 int tz;
152 if (fmt == CMIT_FMT_ONELINE)
153 return;
154 date = strchr(line, '>');
155 if (!date)
156 return;
157 namelen = ++date - line;
158 time = strtoul(date, &date, 10);
159 tz = strtol(date, NULL, 10);
161 if (fmt == CMIT_FMT_EMAIL) {
162 char *name_tail = strchr(line, '<');
163 int display_name_length;
164 if (!name_tail)
165 return;
166 while (line < name_tail && isspace(name_tail[-1]))
167 name_tail--;
168 display_name_length = name_tail - line;
169 strbuf_addstr(sb, "From: ");
170 add_rfc2047(sb, line, display_name_length, encoding);
171 strbuf_add(sb, name_tail, namelen - display_name_length);
172 strbuf_addch(sb, '\n');
173 } else {
174 strbuf_addf(sb, "%s: %.*s%.*s\n", what,
175 (fmt == CMIT_FMT_FULLER) ? 4 : 0,
176 " ", namelen, line);
178 switch (fmt) {
179 case CMIT_FMT_MEDIUM:
180 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, dmode));
181 break;
182 case CMIT_FMT_EMAIL:
183 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, DATE_RFC2822));
184 break;
185 case CMIT_FMT_FULLER:
186 strbuf_addf(sb, "%sDate: %s\n", what, show_date(time, tz, dmode));
187 break;
188 default:
189 /* notin' */
190 break;
194 static int is_empty_line(const char *line, int *len_p)
196 int len = *len_p;
197 while (len && isspace(line[len-1]))
198 len--;
199 *len_p = len;
200 return !len;
203 static const char *skip_empty_lines(const char *msg)
205 for (;;) {
206 int linelen = get_one_line(msg);
207 int ll = linelen;
208 if (!linelen)
209 break;
210 if (!is_empty_line(msg, &ll))
211 break;
212 msg += linelen;
214 return msg;
217 static void add_merge_info(enum cmit_fmt fmt, struct strbuf *sb,
218 const struct commit *commit, int abbrev)
220 struct commit_list *parent = commit->parents;
222 if ((fmt == CMIT_FMT_ONELINE) || (fmt == CMIT_FMT_EMAIL) ||
223 !parent || !parent->next)
224 return;
226 strbuf_addstr(sb, "Merge:");
228 while (parent) {
229 struct commit *p = parent->item;
230 const char *hex = NULL;
231 if (abbrev)
232 hex = find_unique_abbrev(p->object.sha1, abbrev);
233 if (!hex)
234 hex = sha1_to_hex(p->object.sha1);
235 parent = parent->next;
237 strbuf_addf(sb, " %s", hex);
239 strbuf_addch(sb, '\n');
242 static char *get_header(const struct commit *commit, const char *key)
244 int key_len = strlen(key);
245 const char *line = commit->buffer;
247 for (;;) {
248 const char *eol = strchr(line, '\n'), *next;
250 if (line == eol)
251 return NULL;
252 if (!eol) {
253 eol = line + strlen(line);
254 next = NULL;
255 } else
256 next = eol + 1;
257 if (eol - line > key_len &&
258 !strncmp(line, key, key_len) &&
259 line[key_len] == ' ') {
260 return xmemdupz(line + key_len + 1, eol - line - key_len - 1);
262 line = next;
266 static char *replace_encoding_header(char *buf, const char *encoding)
268 struct strbuf tmp = STRBUF_INIT;
269 size_t start, len;
270 char *cp = buf;
272 /* guess if there is an encoding header before a \n\n */
273 while (strncmp(cp, "encoding ", strlen("encoding "))) {
274 cp = strchr(cp, '\n');
275 if (!cp || *++cp == '\n')
276 return buf;
278 start = cp - buf;
279 cp = strchr(cp, '\n');
280 if (!cp)
281 return buf; /* should not happen but be defensive */
282 len = cp + 1 - (buf + start);
284 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
285 if (is_encoding_utf8(encoding)) {
286 /* we have re-coded to UTF-8; drop the header */
287 strbuf_remove(&tmp, start, len);
288 } else {
289 /* just replaces XXXX in 'encoding XXXX\n' */
290 strbuf_splice(&tmp, start + strlen("encoding "),
291 len - strlen("encoding \n"),
292 encoding, strlen(encoding));
294 return strbuf_detach(&tmp, NULL);
297 static char *logmsg_reencode(const struct commit *commit,
298 const char *output_encoding)
300 static const char *utf8 = "UTF-8";
301 const char *use_encoding;
302 char *encoding;
303 char *out;
305 if (!*output_encoding)
306 return NULL;
307 encoding = get_header(commit, "encoding");
308 use_encoding = encoding ? encoding : utf8;
309 if (!strcmp(use_encoding, output_encoding))
310 if (encoding) /* we'll strip encoding header later */
311 out = xstrdup(commit->buffer);
312 else
313 return NULL; /* nothing to do */
314 else
315 out = reencode_string(commit->buffer,
316 output_encoding, use_encoding);
317 if (out)
318 out = replace_encoding_header(out, output_encoding);
320 free(encoding);
321 return out;
324 static int mailmap_name(char *email, int email_len, char *name, int name_len)
326 static struct string_list *mail_map;
327 if (!mail_map) {
328 mail_map = xcalloc(1, sizeof(*mail_map));
329 read_mailmap(mail_map, NULL);
331 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
334 static size_t format_person_part(struct strbuf *sb, char part,
335 const char *msg, int len, enum date_mode dmode)
337 /* currently all placeholders have same length */
338 const int placeholder_len = 2;
339 int start, end, tz = 0;
340 unsigned long date = 0;
341 char *ep;
342 const char *name_start, *name_end, *mail_start, *mail_end, *msg_end = msg+len;
343 char person_name[1024];
344 char person_mail[1024];
346 /* advance 'end' to point to email start delimiter */
347 for (end = 0; end < len && msg[end] != '<'; end++)
348 ; /* do nothing */
351 * When end points at the '<' that we found, it should have
352 * matching '>' later, which means 'end' must be strictly
353 * below len - 1.
355 if (end >= len - 2)
356 goto skip;
358 /* Seek for both name and email part */
359 name_start = msg;
360 name_end = msg+end;
361 while (name_end > name_start && isspace(*(name_end-1)))
362 name_end--;
363 mail_start = msg+end+1;
364 mail_end = mail_start;
365 while (mail_end < msg_end && *mail_end != '>')
366 mail_end++;
367 if (mail_end == msg_end)
368 goto skip;
369 end = mail_end-msg;
371 if (part == 'N' || part == 'E') { /* mailmap lookup */
372 strlcpy(person_name, name_start, name_end-name_start+1);
373 strlcpy(person_mail, mail_start, mail_end-mail_start+1);
374 mailmap_name(person_mail, sizeof(person_mail), person_name, sizeof(person_name));
375 name_start = person_name;
376 name_end = name_start + strlen(person_name);
377 mail_start = person_mail;
378 mail_end = mail_start + strlen(person_mail);
380 if (part == 'n' || part == 'N') { /* name */
381 strbuf_add(sb, name_start, name_end-name_start);
382 return placeholder_len;
384 if (part == 'e' || part == 'E') { /* email */
385 strbuf_add(sb, mail_start, mail_end-mail_start);
386 return placeholder_len;
389 /* advance 'start' to point to date start delimiter */
390 for (start = end + 1; start < len && isspace(msg[start]); start++)
391 ; /* do nothing */
392 if (start >= len)
393 goto skip;
394 date = strtoul(msg + start, &ep, 10);
395 if (msg + start == ep)
396 goto skip;
398 if (part == 't') { /* date, UNIX timestamp */
399 strbuf_add(sb, msg + start, ep - (msg + start));
400 return placeholder_len;
403 /* parse tz */
404 for (start = ep - msg + 1; start < len && isspace(msg[start]); start++)
405 ; /* do nothing */
406 if (start + 1 < len) {
407 tz = strtoul(msg + start + 1, NULL, 10);
408 if (msg[start] == '-')
409 tz = -tz;
412 switch (part) {
413 case 'd': /* date */
414 strbuf_addstr(sb, show_date(date, tz, dmode));
415 return placeholder_len;
416 case 'D': /* date, RFC2822 style */
417 strbuf_addstr(sb, show_date(date, tz, DATE_RFC2822));
418 return placeholder_len;
419 case 'r': /* date, relative */
420 strbuf_addstr(sb, show_date(date, tz, DATE_RELATIVE));
421 return placeholder_len;
422 case 'i': /* date, ISO 8601 */
423 strbuf_addstr(sb, show_date(date, tz, DATE_ISO8601));
424 return placeholder_len;
427 skip:
429 * bogus commit, 'sb' cannot be updated, but we still need to
430 * compute a valid return value.
432 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
433 || part == 'D' || part == 'r' || part == 'i')
434 return placeholder_len;
436 return 0; /* unknown placeholder */
439 struct chunk {
440 size_t off;
441 size_t len;
444 struct format_commit_context {
445 const struct commit *commit;
446 enum date_mode dmode;
447 unsigned commit_header_parsed:1;
448 unsigned commit_message_parsed:1;
450 /* These offsets are relative to the start of the commit message. */
451 struct chunk author;
452 struct chunk committer;
453 struct chunk encoding;
454 size_t message_off;
455 size_t subject_off;
456 size_t body_off;
458 /* The following ones are relative to the result struct strbuf. */
459 struct chunk abbrev_commit_hash;
460 struct chunk abbrev_tree_hash;
461 struct chunk abbrev_parent_hashes;
464 static int add_again(struct strbuf *sb, struct chunk *chunk)
466 if (chunk->len) {
467 strbuf_adddup(sb, chunk->off, chunk->len);
468 return 1;
472 * We haven't seen this chunk before. Our caller is surely
473 * going to add it the hard way now. Remember the most likely
474 * start of the to-be-added chunk: the current end of the
475 * struct strbuf.
477 chunk->off = sb->len;
478 return 0;
481 static void parse_commit_header(struct format_commit_context *context)
483 const char *msg = context->commit->buffer;
484 int i;
486 for (i = 0; msg[i]; i++) {
487 int eol;
488 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
489 ; /* do nothing */
491 if (i == eol) {
492 break;
493 } else if (!prefixcmp(msg + i, "author ")) {
494 context->author.off = i + 7;
495 context->author.len = eol - i - 7;
496 } else if (!prefixcmp(msg + i, "committer ")) {
497 context->committer.off = i + 10;
498 context->committer.len = eol - i - 10;
499 } else if (!prefixcmp(msg + i, "encoding ")) {
500 context->encoding.off = i + 9;
501 context->encoding.len = eol - i - 9;
503 i = eol;
505 context->message_off = i;
506 context->commit_header_parsed = 1;
509 static int istitlechar(char c)
511 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
512 (c >= '0' && c <= '9') || c == '.' || c == '_';
515 static void format_sanitized_subject(struct strbuf *sb, const char *msg)
517 size_t trimlen;
518 size_t start_len = sb->len;
519 int space = 2;
521 for (; *msg && *msg != '\n'; msg++) {
522 if (istitlechar(*msg)) {
523 if (space == 1)
524 strbuf_addch(sb, '-');
525 space = 0;
526 strbuf_addch(sb, *msg);
527 if (*msg == '.')
528 while (*(msg+1) == '.')
529 msg++;
530 } else
531 space |= 1;
534 /* trim any trailing '.' or '-' characters */
535 trimlen = 0;
536 while (sb->len - trimlen > start_len &&
537 (sb->buf[sb->len - 1 - trimlen] == '.'
538 || sb->buf[sb->len - 1 - trimlen] == '-'))
539 trimlen++;
540 strbuf_remove(sb, sb->len - trimlen, trimlen);
543 const char *format_subject(struct strbuf *sb, const char *msg,
544 const char *line_separator)
546 int first = 1;
548 for (;;) {
549 const char *line = msg;
550 int linelen = get_one_line(line);
552 msg += linelen;
553 if (!linelen || is_empty_line(line, &linelen))
554 break;
556 if (!sb)
557 continue;
558 strbuf_grow(sb, linelen + 2);
559 if (!first)
560 strbuf_addstr(sb, line_separator);
561 strbuf_add(sb, line, linelen);
562 first = 0;
564 return msg;
567 static void parse_commit_message(struct format_commit_context *c)
569 const char *msg = c->commit->buffer + c->message_off;
570 const char *start = c->commit->buffer;
572 msg = skip_empty_lines(msg);
573 c->subject_off = msg - start;
575 msg = format_subject(NULL, msg, NULL);
576 msg = skip_empty_lines(msg);
577 c->body_off = msg - start;
579 c->commit_message_parsed = 1;
582 static void format_decoration(struct strbuf *sb, const struct commit *commit)
584 struct name_decoration *d;
585 const char *prefix = " (";
587 load_ref_decorations(DECORATE_SHORT_REFS);
588 d = lookup_decoration(&name_decoration, &commit->object);
589 while (d) {
590 strbuf_addstr(sb, prefix);
591 prefix = ", ";
592 strbuf_addstr(sb, d->name);
593 d = d->next;
595 if (prefix[0] == ',')
596 strbuf_addch(sb, ')');
599 static size_t format_commit_item(struct strbuf *sb, const char *placeholder,
600 void *context)
602 struct format_commit_context *c = context;
603 const struct commit *commit = c->commit;
604 const char *msg = commit->buffer;
605 struct commit_list *p;
606 int h1, h2;
607 const char *body = msg + c->body_off;
608 const char *end = NULL;
610 /* check if we have arguments to the placeholder */
611 if (placeholder[1] == '(')
612 end = strchr(placeholder + 2, ')');
614 /* these are independent of the commit */
615 switch (placeholder[0]) {
616 case 'C':
617 if (end) {
618 char color[COLOR_MAXLEN];
619 color_parse_mem(placeholder + 2,
620 end - (placeholder + 2),
621 "--pretty format", color);
622 strbuf_addstr(sb, color);
623 return end - placeholder + 1;
625 if (!prefixcmp(placeholder + 1, "red")) {
626 strbuf_addstr(sb, GIT_COLOR_RED);
627 return 4;
628 } else if (!prefixcmp(placeholder + 1, "green")) {
629 strbuf_addstr(sb, GIT_COLOR_GREEN);
630 return 6;
631 } else if (!prefixcmp(placeholder + 1, "blue")) {
632 strbuf_addstr(sb, GIT_COLOR_BLUE);
633 return 5;
634 } else if (!prefixcmp(placeholder + 1, "reset")) {
635 strbuf_addstr(sb, GIT_COLOR_RESET);
636 return 6;
637 } else
638 return 0;
639 case 'n': /* newline */
640 strbuf_addch(sb, '\n');
641 return 1;
642 case 'x':
643 /* %x00 == NUL, %x0a == LF, etc. */
644 if (0 <= (h1 = hexval_table[0xff & placeholder[1]]) &&
645 h1 <= 16 &&
646 0 <= (h2 = hexval_table[0xff & placeholder[2]]) &&
647 h2 <= 16) {
648 strbuf_addch(sb, (h1<<4)|h2);
649 return 3;
650 } else
651 return 0;
654 /* these depend on the commit */
655 if (!commit->object.parsed)
656 parse_object(commit->object.sha1);
658 switch (placeholder[0]) {
659 case 'H': /* commit hash */
660 strbuf_addstr(sb, sha1_to_hex(commit->object.sha1));
661 return 1;
662 case 'h': /* abbreviated commit hash */
663 if (add_again(sb, &c->abbrev_commit_hash))
664 return 1;
665 strbuf_addstr(sb, find_unique_abbrev(commit->object.sha1,
666 DEFAULT_ABBREV));
667 c->abbrev_commit_hash.len = sb->len - c->abbrev_commit_hash.off;
668 return 1;
669 case 'T': /* tree hash */
670 strbuf_addstr(sb, sha1_to_hex(commit->tree->object.sha1));
671 return 1;
672 case 't': /* abbreviated tree hash */
673 if (add_again(sb, &c->abbrev_tree_hash))
674 return 1;
675 strbuf_addstr(sb, find_unique_abbrev(commit->tree->object.sha1,
676 DEFAULT_ABBREV));
677 c->abbrev_tree_hash.len = sb->len - c->abbrev_tree_hash.off;
678 return 1;
679 case 'P': /* parent hashes */
680 for (p = commit->parents; p; p = p->next) {
681 if (p != commit->parents)
682 strbuf_addch(sb, ' ');
683 strbuf_addstr(sb, sha1_to_hex(p->item->object.sha1));
685 return 1;
686 case 'p': /* abbreviated parent hashes */
687 if (add_again(sb, &c->abbrev_parent_hashes))
688 return 1;
689 for (p = commit->parents; p; p = p->next) {
690 if (p != commit->parents)
691 strbuf_addch(sb, ' ');
692 strbuf_addstr(sb, find_unique_abbrev(
693 p->item->object.sha1, DEFAULT_ABBREV));
695 c->abbrev_parent_hashes.len = sb->len -
696 c->abbrev_parent_hashes.off;
697 return 1;
698 case 'm': /* left/right/bottom */
699 strbuf_addch(sb, (commit->object.flags & BOUNDARY)
700 ? '-'
701 : (commit->object.flags & SYMMETRIC_LEFT)
702 ? '<'
703 : '>');
704 return 1;
705 case 'd':
706 format_decoration(sb, commit);
707 return 1;
708 case 'N':
709 get_commit_notes(commit, sb, git_log_output_encoding ?
710 git_log_output_encoding : git_commit_encoding, 0);
711 return 1;
714 /* For the rest we have to parse the commit header. */
715 if (!c->commit_header_parsed)
716 parse_commit_header(c);
718 switch (placeholder[0]) {
719 case 'a': /* author ... */
720 return format_person_part(sb, placeholder[1],
721 msg + c->author.off, c->author.len,
722 c->dmode);
723 case 'c': /* committer ... */
724 return format_person_part(sb, placeholder[1],
725 msg + c->committer.off, c->committer.len,
726 c->dmode);
727 case 'e': /* encoding */
728 strbuf_add(sb, msg + c->encoding.off, c->encoding.len);
729 return 1;
732 /* Now we need to parse the commit message. */
733 if (!c->commit_message_parsed)
734 parse_commit_message(c);
736 switch (placeholder[0]) {
737 case 's': /* subject */
738 format_subject(sb, msg + c->subject_off, " ");
739 return 1;
740 case 'f': /* sanitized subject */
741 format_sanitized_subject(sb, msg + c->subject_off);
742 return 1;
743 case 'b': /* body */
744 strbuf_addstr(sb, body);
745 return 1;
746 case 'B': /* body without trailing newline */
747 if (end) {
748 char *endp = NULL;
749 int indent = strtol(placeholder + 2, &endp, 10);
750 if (placeholder + 2 == endp || *endp != ')' || indent < 0)
751 return 0;
752 pp_remainder(CMIT_FMT_MEDIUM, &body, sb, indent);
753 strbuf_rtrim(sb);
754 return end - placeholder + 1;
756 strbuf_addstr(sb, body);
757 strbuf_rtrim(sb);
758 return 1;
760 return 0; /* unknown placeholder */
763 void format_commit_message(const struct commit *commit,
764 const void *format, struct strbuf *sb,
765 enum date_mode dmode)
767 struct format_commit_context context;
769 memset(&context, 0, sizeof(context));
770 context.commit = commit;
771 context.dmode = dmode;
772 strbuf_expand(sb, format, format_commit_item, &context);
775 static void pp_header(enum cmit_fmt fmt,
776 int abbrev,
777 enum date_mode dmode,
778 const char *encoding,
779 const struct commit *commit,
780 const char **msg_p,
781 struct strbuf *sb)
783 int parents_shown = 0;
785 for (;;) {
786 const char *line = *msg_p;
787 int linelen = get_one_line(*msg_p);
789 if (!linelen)
790 return;
791 *msg_p += linelen;
793 if (linelen == 1)
794 /* End of header */
795 return;
797 if (fmt == CMIT_FMT_RAW) {
798 strbuf_add(sb, line, linelen);
799 continue;
802 if (!memcmp(line, "parent ", 7)) {
803 if (linelen != 48)
804 die("bad parent line in commit");
805 continue;
808 if (!parents_shown) {
809 struct commit_list *parent;
810 int num;
811 for (parent = commit->parents, num = 0;
812 parent;
813 parent = parent->next, num++)
815 /* with enough slop */
816 strbuf_grow(sb, num * 50 + 20);
817 add_merge_info(fmt, sb, commit, abbrev);
818 parents_shown = 1;
822 * MEDIUM == DEFAULT shows only author with dates.
823 * FULL shows both authors but not dates.
824 * FULLER shows both authors and dates.
826 if (!memcmp(line, "author ", 7)) {
827 strbuf_grow(sb, linelen + 80);
828 pp_user_info("Author", fmt, sb, line + 7, dmode, encoding);
830 if (!memcmp(line, "committer ", 10) &&
831 (fmt == CMIT_FMT_FULL || fmt == CMIT_FMT_FULLER)) {
832 strbuf_grow(sb, linelen + 80);
833 pp_user_info("Commit", fmt, sb, line + 10, dmode, encoding);
838 void pp_title_line(enum cmit_fmt fmt,
839 const char **msg_p,
840 struct strbuf *sb,
841 const char *subject,
842 const char *after_subject,
843 const char *encoding,
844 int need_8bit_cte)
846 const char *line_separator = (fmt == CMIT_FMT_EMAIL) ? "\n " : " ";
847 struct strbuf title;
849 strbuf_init(&title, 80);
850 *msg_p = format_subject(&title, *msg_p, line_separator);
852 strbuf_grow(sb, title.len + 1024);
853 if (subject) {
854 strbuf_addstr(sb, subject);
855 add_rfc2047(sb, title.buf, title.len, encoding);
856 } else {
857 strbuf_addbuf(sb, &title);
859 strbuf_addch(sb, '\n');
861 if (need_8bit_cte > 0) {
862 const char *header_fmt =
863 "MIME-Version: 1.0\n"
864 "Content-Type: text/plain; charset=%s\n"
865 "Content-Transfer-Encoding: 8bit\n";
866 strbuf_addf(sb, header_fmt, encoding);
868 if (after_subject) {
869 strbuf_addstr(sb, after_subject);
871 if (fmt == CMIT_FMT_EMAIL) {
872 strbuf_addch(sb, '\n');
874 strbuf_release(&title);
877 void pp_remainder(enum cmit_fmt fmt,
878 const char **msg_p,
879 struct strbuf *sb,
880 int indent)
882 int first = 1;
883 for (;;) {
884 const char *line = *msg_p;
885 int linelen = get_one_line(line);
886 *msg_p += linelen;
888 if (!linelen)
889 break;
891 if (is_empty_line(line, &linelen)) {
892 if (first)
893 continue;
894 if (fmt == CMIT_FMT_SHORT)
895 break;
897 first = 0;
899 strbuf_grow(sb, linelen + indent + 20);
900 if (indent) {
901 memset(sb->buf + sb->len, ' ', indent);
902 strbuf_setlen(sb, sb->len + indent);
904 strbuf_add(sb, line, linelen);
905 strbuf_addch(sb, '\n');
909 char *reencode_commit_message(const struct commit *commit, const char **encoding_p)
911 const char *encoding;
913 encoding = (git_log_output_encoding
914 ? git_log_output_encoding
915 : git_commit_encoding);
916 if (!encoding)
917 encoding = "UTF-8";
918 if (encoding_p)
919 *encoding_p = encoding;
920 return logmsg_reencode(commit, encoding);
923 void pretty_print_commit(enum cmit_fmt fmt, const struct commit *commit,
924 struct strbuf *sb, int abbrev,
925 const char *subject, const char *after_subject,
926 enum date_mode dmode, int need_8bit_cte)
928 unsigned long beginning_of_body;
929 int indent = 4;
930 const char *msg = commit->buffer;
931 char *reencoded;
932 const char *encoding;
934 if (fmt == CMIT_FMT_USERFORMAT) {
935 format_commit_message(commit, user_format, sb, dmode);
936 return;
939 reencoded = reencode_commit_message(commit, &encoding);
940 if (reencoded) {
941 msg = reencoded;
944 if (fmt == CMIT_FMT_ONELINE || fmt == CMIT_FMT_EMAIL)
945 indent = 0;
948 * We need to check and emit Content-type: to mark it
949 * as 8-bit if we haven't done so.
951 if (fmt == CMIT_FMT_EMAIL && need_8bit_cte == 0) {
952 int i, ch, in_body;
954 for (in_body = i = 0; (ch = msg[i]); i++) {
955 if (!in_body) {
956 /* author could be non 7-bit ASCII but
957 * the log may be so; skip over the
958 * header part first.
960 if (ch == '\n' && msg[i+1] == '\n')
961 in_body = 1;
963 else if (non_ascii(ch)) {
964 need_8bit_cte = 1;
965 break;
970 pp_header(fmt, abbrev, dmode, encoding, commit, &msg, sb);
971 if (fmt != CMIT_FMT_ONELINE && !subject) {
972 strbuf_addch(sb, '\n');
975 /* Skip excess blank lines at the beginning of body, if any... */
976 msg = skip_empty_lines(msg);
978 /* These formats treat the title line specially. */
979 if (fmt == CMIT_FMT_ONELINE || fmt == CMIT_FMT_EMAIL)
980 pp_title_line(fmt, &msg, sb, subject,
981 after_subject, encoding, need_8bit_cte);
983 beginning_of_body = sb->len;
984 if (fmt != CMIT_FMT_ONELINE)
985 pp_remainder(fmt, &msg, sb, indent);
986 strbuf_rtrim(sb);
988 /* Make sure there is an EOLN for the non-oneline case */
989 if (fmt != CMIT_FMT_ONELINE)
990 strbuf_addch(sb, '\n');
993 * The caller may append additional body text in e-mail
994 * format. Make sure we did not strip the blank line
995 * between the header and the body.
997 if (fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body)
998 strbuf_addch(sb, '\n');
1000 if (fmt != CMIT_FMT_ONELINE)
1001 get_commit_notes(commit, sb, encoding,
1002 NOTES_SHOW_HEADER | NOTES_INDENT);
1004 free(reencoded);