6 #include "string-list.h"
11 #include "reflog-walk.h"
13 static char *user_format;
14 static struct cmt_fmt_map {
19 const char *user_format;
21 static size_t builtin_formats_len;
22 static size_t commit_formats_len;
23 static size_t commit_formats_alloc;
24 static struct cmt_fmt_map *find_commit_format(const char *sought);
26 static void save_user_format(struct rev_info *rev, const char *cp, int is_tformat)
29 user_format = xstrdup(cp);
31 rev->use_terminator = 1;
32 rev->commit_format = CMIT_FMT_USERFORMAT;
35 static int git_pretty_formats_config(const char *var, const char *value, void *cb)
37 struct cmt_fmt_map *commit_format = NULL;
42 if (prefixcmp(var, "pretty."))
45 name = var + strlen("pretty.");
46 for (i = 0; i < builtin_formats_len; i++) {
47 if (!strcmp(commit_formats[i].name, name))
51 for (i = builtin_formats_len; i < commit_formats_len; i++) {
52 if (!strcmp(commit_formats[i].name, name)) {
53 commit_format = &commit_formats[i];
59 ALLOC_GROW(commit_formats, commit_formats_len+1,
60 commit_formats_alloc);
61 commit_format = &commit_formats[commit_formats_len];
62 memset(commit_format, 0, sizeof(*commit_format));
66 commit_format->name = xstrdup(name);
67 commit_format->format = CMIT_FMT_USERFORMAT;
68 git_config_string(&fmt, var, value);
69 if (!prefixcmp(fmt, "format:") || !prefixcmp(fmt, "tformat:")) {
70 commit_format->is_tformat = fmt[0] == 't';
71 fmt = strchr(fmt, ':') + 1;
72 } else if (strchr(fmt, '%'))
73 commit_format->is_tformat = 1;
75 commit_format->is_alias = 1;
76 commit_format->user_format = fmt;
81 static void setup_commit_formats(void)
83 struct cmt_fmt_map builtin_formats[] = {
84 { "raw", CMIT_FMT_RAW, 0 },
85 { "medium", CMIT_FMT_MEDIUM, 0 },
86 { "short", CMIT_FMT_SHORT, 0 },
87 { "email", CMIT_FMT_EMAIL, 0 },
88 { "fuller", CMIT_FMT_FULLER, 0 },
89 { "full", CMIT_FMT_FULL, 0 },
90 { "oneline", CMIT_FMT_ONELINE, 1 }
92 commit_formats_len = ARRAY_SIZE(builtin_formats);
93 builtin_formats_len = commit_formats_len;
94 ALLOC_GROW(commit_formats, commit_formats_len, commit_formats_alloc);
95 memcpy(commit_formats, builtin_formats,
96 sizeof(*builtin_formats)*ARRAY_SIZE(builtin_formats));
98 git_config(git_pretty_formats_config, NULL);
101 static struct cmt_fmt_map *find_commit_format_recursive(const char *sought,
102 const char *original,
103 int num_redirections)
105 struct cmt_fmt_map *found = NULL;
106 size_t found_match_len = 0;
109 if (num_redirections >= commit_formats_len)
110 die("invalid --pretty format: "
111 "'%s' references an alias which points to itself",
114 for (i = 0; i < commit_formats_len; i++) {
117 if (prefixcmp(commit_formats[i].name, sought))
120 match_len = strlen(commit_formats[i].name);
121 if (found == NULL || found_match_len > match_len) {
122 found = &commit_formats[i];
123 found_match_len = match_len;
127 if (found && found->is_alias) {
128 found = find_commit_format_recursive(found->user_format,
136 static struct cmt_fmt_map *find_commit_format(const char *sought)
139 setup_commit_formats();
141 return find_commit_format_recursive(sought, sought, 0);
144 void get_commit_format(const char *arg, struct rev_info *rev)
146 struct cmt_fmt_map *commit_format;
148 rev->use_terminator = 0;
150 rev->commit_format = CMIT_FMT_DEFAULT;
153 if (!prefixcmp(arg, "format:") || !prefixcmp(arg, "tformat:")) {
154 save_user_format(rev, strchr(arg, ':') + 1, arg[0] == 't');
158 if (strchr(arg, '%')) {
159 save_user_format(rev, arg, 1);
163 commit_format = find_commit_format(arg);
165 die("invalid --pretty format: %s", arg);
167 rev->commit_format = commit_format->format;
168 rev->use_terminator = commit_format->is_tformat;
169 if (commit_format->format == CMIT_FMT_USERFORMAT) {
170 save_user_format(rev, commit_format->user_format,
171 commit_format->is_tformat);
176 * Generic support for pretty-printing the header
178 static int get_one_line(const char *msg)
193 /* High bit set, or ISO-2022-INT */
194 static int non_ascii(int ch)
196 return !isascii(ch) || ch == '\033';
199 int has_non_ascii(const char *s)
204 while ((ch = *s++) != '\0') {
211 static int is_rfc822_special(char ch)
233 static int has_rfc822_specials(const char *s, int len)
236 for (i = 0; i < len; i++)
237 if (is_rfc822_special(s[i]))
242 static void add_rfc822_quoted(struct strbuf *out, const char *s, int len)
246 /* just a guess, we may have to also backslash-quote */
247 strbuf_grow(out, len + 2);
249 strbuf_addch(out, '"');
250 for (i = 0; i < len; i++) {
254 strbuf_addch(out, '\\');
257 strbuf_addch(out, s[i]);
260 strbuf_addch(out, '"');
263 static int is_rfc2047_special(char ch)
265 return (non_ascii(ch) || (ch == '=') || (ch == '?') || (ch == '_'));
268 static void add_rfc2047(struct strbuf *sb, const char *line, int len,
269 const char *encoding)
271 static const int max_length = 78; /* per rfc2822 */
275 /* How many bytes are already used on the current line? */
276 for (i = sb->len - 1; i >= 0; i--)
277 if (sb->buf[i] == '\n')
279 line_len = sb->len - (i+1);
281 for (i = 0; i < len; i++) {
283 if (non_ascii(ch) || ch == '\n')
285 if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
288 strbuf_add_wrapped_bytes(sb, line, len, 0, 1, max_length - line_len);
292 strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
293 strbuf_addf(sb, "=?%s?q?", encoding);
294 line_len += strlen(encoding) + 5; /* 5 for =??q? */
295 for (i = 0; i < len; i++) {
296 unsigned ch = line[i] & 0xFF;
298 if (line_len >= max_length - 2) {
299 strbuf_addf(sb, "?=\n =?%s?q?", encoding);
300 line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
304 * We encode ' ' using '=20' even though rfc2047
305 * allows using '_' for readability. Unfortunately,
306 * many programs do not understand this and just
307 * leave the underscore in place.
309 if (is_rfc2047_special(ch) || ch == ' ' || ch == '\n') {
310 strbuf_addf(sb, "=%02X", ch);
314 strbuf_addch(sb, ch);
318 strbuf_addstr(sb, "?=");
321 void pp_user_info(const struct pretty_print_context *pp,
322 const char *what, struct strbuf *sb,
323 const char *line, const char *encoding)
330 if (pp->fmt == CMIT_FMT_ONELINE)
332 date = strchr(line, '>');
335 namelen = ++date - line;
336 time = strtoul(date, &date, 10);
337 tz = strtol(date, NULL, 10);
339 if (pp->fmt == CMIT_FMT_EMAIL) {
340 char *name_tail = strchr(line, '<');
341 int display_name_length;
345 while (line < name_tail && isspace(name_tail[-1]))
347 display_name_length = name_tail - line;
348 strbuf_addstr(sb, "From: ");
349 if (!has_rfc822_specials(line, display_name_length)) {
350 add_rfc2047(sb, line, display_name_length, encoding);
352 struct strbuf quoted = STRBUF_INIT;
353 add_rfc822_quoted("ed, line, display_name_length);
354 add_rfc2047(sb, quoted.buf, quoted.len, encoding);
355 strbuf_release("ed);
357 for (final_line = 0; final_line < sb->len; final_line++)
358 if (sb->buf[sb->len - final_line - 1] == '\n')
360 if (namelen - display_name_length + final_line > 78) {
361 strbuf_addch(sb, '\n');
362 if (!isspace(name_tail[0]))
363 strbuf_addch(sb, ' ');
365 strbuf_add(sb, name_tail, namelen - display_name_length);
366 strbuf_addch(sb, '\n');
368 strbuf_addf(sb, "%s: %.*s%.*s\n", what,
369 (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0,
373 case CMIT_FMT_MEDIUM:
374 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, pp->date_mode));
377 strbuf_addf(sb, "Date: %s\n", show_date(time, tz, DATE_RFC2822));
379 case CMIT_FMT_FULLER:
380 strbuf_addf(sb, "%sDate: %s\n", what, show_date(time, tz, pp->date_mode));
388 static int is_empty_line(const char *line, int *len_p)
391 while (len && isspace(line[len-1]))
397 static const char *skip_empty_lines(const char *msg)
400 int linelen = get_one_line(msg);
404 if (!is_empty_line(msg, &ll))
411 static void add_merge_info(const struct pretty_print_context *pp,
412 struct strbuf *sb, const struct commit *commit)
414 struct commit_list *parent = commit->parents;
416 if ((pp->fmt == CMIT_FMT_ONELINE) || (pp->fmt == CMIT_FMT_EMAIL) ||
417 !parent || !parent->next)
420 strbuf_addstr(sb, "Merge:");
423 struct commit *p = parent->item;
424 const char *hex = NULL;
426 hex = find_unique_abbrev(p->object.sha1, pp->abbrev);
428 hex = sha1_to_hex(p->object.sha1);
429 parent = parent->next;
431 strbuf_addf(sb, " %s", hex);
433 strbuf_addch(sb, '\n');
436 static char *get_header(const struct commit *commit, const char *key)
438 int key_len = strlen(key);
439 const char *line = commit->buffer;
442 const char *eol = strchr(line, '\n'), *next;
447 eol = line + strlen(line);
451 if (eol - line > key_len &&
452 !strncmp(line, key, key_len) &&
453 line[key_len] == ' ') {
454 return xmemdupz(line + key_len + 1, eol - line - key_len - 1);
460 static char *replace_encoding_header(char *buf, const char *encoding)
462 struct strbuf tmp = STRBUF_INIT;
466 /* guess if there is an encoding header before a \n\n */
467 while (strncmp(cp, "encoding ", strlen("encoding "))) {
468 cp = strchr(cp, '\n');
469 if (!cp || *++cp == '\n')
473 cp = strchr(cp, '\n');
475 return buf; /* should not happen but be defensive */
476 len = cp + 1 - (buf + start);
478 strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
479 if (is_encoding_utf8(encoding)) {
480 /* we have re-coded to UTF-8; drop the header */
481 strbuf_remove(&tmp, start, len);
483 /* just replaces XXXX in 'encoding XXXX\n' */
484 strbuf_splice(&tmp, start + strlen("encoding "),
485 len - strlen("encoding \n"),
486 encoding, strlen(encoding));
488 return strbuf_detach(&tmp, NULL);
491 char *logmsg_reencode(const struct commit *commit,
492 const char *output_encoding)
494 static const char *utf8 = "UTF-8";
495 const char *use_encoding;
499 if (!*output_encoding)
501 encoding = get_header(commit, "encoding");
502 use_encoding = encoding ? encoding : utf8;
503 if (!strcmp(use_encoding, output_encoding))
504 if (encoding) /* we'll strip encoding header later */
505 out = xstrdup(commit->buffer);
507 return NULL; /* nothing to do */
509 out = reencode_string(commit->buffer,
510 output_encoding, use_encoding);
512 out = replace_encoding_header(out, output_encoding);
518 static int mailmap_name(char *email, int email_len, char *name, int name_len)
520 static struct string_list *mail_map;
522 mail_map = xcalloc(1, sizeof(*mail_map));
523 read_mailmap(mail_map, NULL);
525 return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
528 static size_t format_person_part(struct strbuf *sb, char part,
529 const char *msg, int len, enum date_mode dmode)
531 /* currently all placeholders have same length */
532 const int placeholder_len = 2;
533 int start, end, tz = 0;
534 unsigned long date = 0;
536 const char *name_start, *name_end, *mail_start, *mail_end, *msg_end = msg+len;
537 char person_name[1024];
538 char person_mail[1024];
540 /* advance 'end' to point to email start delimiter */
541 for (end = 0; end < len && msg[end] != '<'; end++)
545 * When end points at the '<' that we found, it should have
546 * matching '>' later, which means 'end' must be strictly
552 /* Seek for both name and email part */
555 while (name_end > name_start && isspace(*(name_end-1)))
557 mail_start = msg+end+1;
558 mail_end = mail_start;
559 while (mail_end < msg_end && *mail_end != '>')
561 if (mail_end == msg_end)
565 if (part == 'N' || part == 'E') { /* mailmap lookup */
566 strlcpy(person_name, name_start, name_end-name_start+1);
567 strlcpy(person_mail, mail_start, mail_end-mail_start+1);
568 mailmap_name(person_mail, sizeof(person_mail), person_name, sizeof(person_name));
569 name_start = person_name;
570 name_end = name_start + strlen(person_name);
571 mail_start = person_mail;
572 mail_end = mail_start + strlen(person_mail);
574 if (part == 'n' || part == 'N') { /* name */
575 strbuf_add(sb, name_start, name_end-name_start);
576 return placeholder_len;
578 if (part == 'e' || part == 'E') { /* email */
579 strbuf_add(sb, mail_start, mail_end-mail_start);
580 return placeholder_len;
583 /* advance 'start' to point to date start delimiter */
584 for (start = end + 1; start < len && isspace(msg[start]); start++)
588 date = strtoul(msg + start, &ep, 10);
589 if (msg + start == ep)
592 if (part == 't') { /* date, UNIX timestamp */
593 strbuf_add(sb, msg + start, ep - (msg + start));
594 return placeholder_len;
598 for (start = ep - msg + 1; start < len && isspace(msg[start]); start++)
600 if (start + 1 < len) {
601 tz = strtoul(msg + start + 1, NULL, 10);
602 if (msg[start] == '-')
608 strbuf_addstr(sb, show_date(date, tz, dmode));
609 return placeholder_len;
610 case 'D': /* date, RFC2822 style */
611 strbuf_addstr(sb, show_date(date, tz, DATE_RFC2822));
612 return placeholder_len;
613 case 'r': /* date, relative */
614 strbuf_addstr(sb, show_date(date, tz, DATE_RELATIVE));
615 return placeholder_len;
616 case 'i': /* date, ISO 8601 */
617 strbuf_addstr(sb, show_date(date, tz, DATE_ISO8601));
618 return placeholder_len;
623 * bogus commit, 'sb' cannot be updated, but we still need to
624 * compute a valid return value.
626 if (part == 'n' || part == 'e' || part == 't' || part == 'd'
627 || part == 'D' || part == 'r' || part == 'i')
628 return placeholder_len;
630 return 0; /* unknown placeholder */
638 struct format_commit_context {
639 const struct commit *commit;
640 const struct pretty_print_context *pretty_ctx;
641 unsigned commit_header_parsed:1;
642 unsigned commit_message_parsed:1;
644 size_t width, indent1, indent2;
646 /* These offsets are relative to the start of the commit message. */
648 struct chunk committer;
649 struct chunk encoding;
654 /* The following ones are relative to the result struct strbuf. */
655 struct chunk abbrev_commit_hash;
656 struct chunk abbrev_tree_hash;
657 struct chunk abbrev_parent_hashes;
661 static int add_again(struct strbuf *sb, struct chunk *chunk)
664 strbuf_adddup(sb, chunk->off, chunk->len);
669 * We haven't seen this chunk before. Our caller is surely
670 * going to add it the hard way now. Remember the most likely
671 * start of the to-be-added chunk: the current end of the
674 chunk->off = sb->len;
678 static void parse_commit_header(struct format_commit_context *context)
680 const char *msg = context->message;
683 for (i = 0; msg[i]; i++) {
685 for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
690 } else if (!prefixcmp(msg + i, "author ")) {
691 context->author.off = i + 7;
692 context->author.len = eol - i - 7;
693 } else if (!prefixcmp(msg + i, "committer ")) {
694 context->committer.off = i + 10;
695 context->committer.len = eol - i - 10;
696 } else if (!prefixcmp(msg + i, "encoding ")) {
697 context->encoding.off = i + 9;
698 context->encoding.len = eol - i - 9;
702 context->message_off = i;
703 context->commit_header_parsed = 1;
706 static int istitlechar(char c)
708 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
709 (c >= '0' && c <= '9') || c == '.' || c == '_';
712 static void format_sanitized_subject(struct strbuf *sb, const char *msg)
715 size_t start_len = sb->len;
718 for (; *msg && *msg != '\n'; msg++) {
719 if (istitlechar(*msg)) {
721 strbuf_addch(sb, '-');
723 strbuf_addch(sb, *msg);
725 while (*(msg+1) == '.')
731 /* trim any trailing '.' or '-' characters */
733 while (sb->len - trimlen > start_len &&
734 (sb->buf[sb->len - 1 - trimlen] == '.'
735 || sb->buf[sb->len - 1 - trimlen] == '-'))
737 strbuf_remove(sb, sb->len - trimlen, trimlen);
740 const char *format_subject(struct strbuf *sb, const char *msg,
741 const char *line_separator)
746 const char *line = msg;
747 int linelen = get_one_line(line);
750 if (!linelen || is_empty_line(line, &linelen))
755 strbuf_grow(sb, linelen + 2);
757 strbuf_addstr(sb, line_separator);
758 strbuf_add(sb, line, linelen);
764 static void parse_commit_message(struct format_commit_context *c)
766 const char *msg = c->message + c->message_off;
767 const char *start = c->message;
769 msg = skip_empty_lines(msg);
770 c->subject_off = msg - start;
772 msg = format_subject(NULL, msg, NULL);
773 msg = skip_empty_lines(msg);
774 c->body_off = msg - start;
776 c->commit_message_parsed = 1;
779 static void format_decoration(struct strbuf *sb, const struct commit *commit)
781 struct name_decoration *d;
782 const char *prefix = " (";
784 load_ref_decorations(DECORATE_SHORT_REFS);
785 d = lookup_decoration(&name_decoration, &commit->object);
787 strbuf_addstr(sb, prefix);
789 strbuf_addstr(sb, d->name);
792 if (prefix[0] == ',')
793 strbuf_addch(sb, ')');
796 static void strbuf_wrap(struct strbuf *sb, size_t pos,
797 size_t width, size_t indent1, size_t indent2)
799 struct strbuf tmp = STRBUF_INIT;
802 strbuf_add(&tmp, sb->buf, pos);
803 strbuf_add_wrapped_text(&tmp, sb->buf + pos,
804 (int) indent1, (int) indent2, (int) width);
805 strbuf_swap(&tmp, sb);
806 strbuf_release(&tmp);
809 static void rewrap_message_tail(struct strbuf *sb,
810 struct format_commit_context *c,
811 size_t new_width, size_t new_indent1,
814 if (c->width == new_width && c->indent1 == new_indent1 &&
815 c->indent2 == new_indent2)
817 if (c->wrap_start < sb->len)
818 strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
819 c->wrap_start = sb->len;
820 c->width = new_width;
821 c->indent1 = new_indent1;
822 c->indent2 = new_indent2;
825 static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
828 struct format_commit_context *c = context;
829 const struct commit *commit = c->commit;
830 const char *msg = c->message;
831 struct commit_list *p;
834 /* these are independent of the commit */
835 switch (placeholder[0]) {
837 if (placeholder[1] == '(') {
838 const char *end = strchr(placeholder + 2, ')');
839 char color[COLOR_MAXLEN];
842 color_parse_mem(placeholder + 2,
843 end - (placeholder + 2),
844 "--pretty format", color);
845 strbuf_addstr(sb, color);
846 return end - placeholder + 1;
848 if (!prefixcmp(placeholder + 1, "red")) {
849 strbuf_addstr(sb, GIT_COLOR_RED);
851 } else if (!prefixcmp(placeholder + 1, "green")) {
852 strbuf_addstr(sb, GIT_COLOR_GREEN);
854 } else if (!prefixcmp(placeholder + 1, "blue")) {
855 strbuf_addstr(sb, GIT_COLOR_BLUE);
857 } else if (!prefixcmp(placeholder + 1, "reset")) {
858 strbuf_addstr(sb, GIT_COLOR_RESET);
862 case 'n': /* newline */
863 strbuf_addch(sb, '\n');
866 /* %x00 == NUL, %x0a == LF, etc. */
867 if (0 <= (h1 = hexval_table[0xff & placeholder[1]]) &&
869 0 <= (h2 = hexval_table[0xff & placeholder[2]]) &&
871 strbuf_addch(sb, (h1<<4)|h2);
876 if (placeholder[1] == '(') {
877 unsigned long width = 0, indent1 = 0, indent2 = 0;
879 const char *start = placeholder + 2;
880 const char *end = strchr(start, ')');
884 width = strtoul(start, &next, 10);
886 indent1 = strtoul(next + 1, &next, 10);
888 indent2 = strtoul(next + 1,
895 rewrap_message_tail(sb, c, width, indent1, indent2);
896 return end - placeholder + 1;
901 /* these depend on the commit */
902 if (!commit->object.parsed)
903 parse_object(commit->object.sha1);
905 switch (placeholder[0]) {
906 case 'H': /* commit hash */
907 strbuf_addstr(sb, sha1_to_hex(commit->object.sha1));
909 case 'h': /* abbreviated commit hash */
910 if (add_again(sb, &c->abbrev_commit_hash))
912 strbuf_addstr(sb, find_unique_abbrev(commit->object.sha1,
913 c->pretty_ctx->abbrev));
914 c->abbrev_commit_hash.len = sb->len - c->abbrev_commit_hash.off;
916 case 'T': /* tree hash */
917 strbuf_addstr(sb, sha1_to_hex(commit->tree->object.sha1));
919 case 't': /* abbreviated tree hash */
920 if (add_again(sb, &c->abbrev_tree_hash))
922 strbuf_addstr(sb, find_unique_abbrev(commit->tree->object.sha1,
923 c->pretty_ctx->abbrev));
924 c->abbrev_tree_hash.len = sb->len - c->abbrev_tree_hash.off;
926 case 'P': /* parent hashes */
927 for (p = commit->parents; p; p = p->next) {
928 if (p != commit->parents)
929 strbuf_addch(sb, ' ');
930 strbuf_addstr(sb, sha1_to_hex(p->item->object.sha1));
933 case 'p': /* abbreviated parent hashes */
934 if (add_again(sb, &c->abbrev_parent_hashes))
936 for (p = commit->parents; p; p = p->next) {
937 if (p != commit->parents)
938 strbuf_addch(sb, ' ');
939 strbuf_addstr(sb, find_unique_abbrev(
940 p->item->object.sha1,
941 c->pretty_ctx->abbrev));
943 c->abbrev_parent_hashes.len = sb->len -
944 c->abbrev_parent_hashes.off;
946 case 'm': /* left/right/bottom */
947 strbuf_addstr(sb, get_revision_mark(NULL, commit));
950 format_decoration(sb, commit);
952 case 'g': /* reflog info */
953 switch(placeholder[1]) {
954 case 'd': /* reflog selector */
956 if (c->pretty_ctx->reflog_info)
957 get_reflog_selector(sb,
958 c->pretty_ctx->reflog_info,
959 c->pretty_ctx->date_mode,
960 (placeholder[1] == 'd'));
962 case 's': /* reflog message */
963 if (c->pretty_ctx->reflog_info)
964 get_reflog_message(sb, c->pretty_ctx->reflog_info);
967 return 0; /* unknown %g placeholder */
969 if (c->pretty_ctx->show_notes) {
970 format_display_notes(commit->object.sha1, sb,
971 get_log_output_encoding(), 0);
977 /* For the rest we have to parse the commit header. */
978 if (!c->commit_header_parsed)
979 parse_commit_header(c);
981 switch (placeholder[0]) {
982 case 'a': /* author ... */
983 return format_person_part(sb, placeholder[1],
984 msg + c->author.off, c->author.len,
985 c->pretty_ctx->date_mode);
986 case 'c': /* committer ... */
987 return format_person_part(sb, placeholder[1],
988 msg + c->committer.off, c->committer.len,
989 c->pretty_ctx->date_mode);
990 case 'e': /* encoding */
991 strbuf_add(sb, msg + c->encoding.off, c->encoding.len);
993 case 'B': /* raw body */
994 /* message_off is always left at the initial newline */
995 strbuf_addstr(sb, msg + c->message_off + 1);
999 /* Now we need to parse the commit message. */
1000 if (!c->commit_message_parsed)
1001 parse_commit_message(c);
1003 switch (placeholder[0]) {
1004 case 's': /* subject */
1005 format_subject(sb, msg + c->subject_off, " ");
1007 case 'f': /* sanitized subject */
1008 format_sanitized_subject(sb, msg + c->subject_off);
1010 case 'b': /* body */
1011 strbuf_addstr(sb, msg + c->body_off);
1014 return 0; /* unknown placeholder */
1017 static size_t format_commit_item(struct strbuf *sb, const char *placeholder,
1024 ADD_LF_BEFORE_NON_EMPTY,
1025 DEL_LF_BEFORE_EMPTY,
1026 ADD_SP_BEFORE_NON_EMPTY
1029 switch (placeholder[0]) {
1031 magic = DEL_LF_BEFORE_EMPTY;
1034 magic = ADD_LF_BEFORE_NON_EMPTY;
1037 magic = ADD_SP_BEFORE_NON_EMPTY;
1042 if (magic != NO_MAGIC)
1046 consumed = format_commit_one(sb, placeholder, context);
1047 if (magic == NO_MAGIC)
1050 if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1051 while (sb->len && sb->buf[sb->len - 1] == '\n')
1052 strbuf_setlen(sb, sb->len - 1);
1053 } else if (orig_len != sb->len) {
1054 if (magic == ADD_LF_BEFORE_NON_EMPTY)
1055 strbuf_insert(sb, orig_len, "\n", 1);
1056 else if (magic == ADD_SP_BEFORE_NON_EMPTY)
1057 strbuf_insert(sb, orig_len, " ", 1);
1059 return consumed + 1;
1062 static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1065 struct userformat_want *w = context;
1067 if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
1070 switch (*placeholder) {
1078 void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1080 struct strbuf dummy = STRBUF_INIT;
1087 strbuf_expand(&dummy, fmt, userformat_want_item, w);
1088 strbuf_release(&dummy);
1091 void format_commit_message(const struct commit *commit,
1092 const char *format, struct strbuf *sb,
1093 const struct pretty_print_context *pretty_ctx)
1095 struct format_commit_context context;
1096 static const char utf8[] = "UTF-8";
1098 const char *output_enc = pretty_ctx->output_encoding;
1100 memset(&context, 0, sizeof(context));
1101 context.commit = commit;
1102 context.pretty_ctx = pretty_ctx;
1103 context.wrap_start = sb->len;
1104 context.message = commit->buffer;
1106 enc = get_header(commit, "encoding");
1107 enc = enc ? enc : utf8;
1108 if (strcmp(enc, output_enc))
1109 context.message = logmsg_reencode(commit, output_enc);
1112 strbuf_expand(sb, format, format_commit_item, &context);
1113 rewrap_message_tail(sb, &context, 0, 0, 0);
1115 if (context.message != commit->buffer)
1116 free(context.message);
1119 static void pp_header(const struct pretty_print_context *pp,
1120 const char *encoding,
1121 const struct commit *commit,
1125 int parents_shown = 0;
1128 const char *line = *msg_p;
1129 int linelen = get_one_line(*msg_p);
1139 if (pp->fmt == CMIT_FMT_RAW) {
1140 strbuf_add(sb, line, linelen);
1144 if (!memcmp(line, "parent ", 7)) {
1146 die("bad parent line in commit");
1150 if (!parents_shown) {
1151 struct commit_list *parent;
1153 for (parent = commit->parents, num = 0;
1155 parent = parent->next, num++)
1157 /* with enough slop */
1158 strbuf_grow(sb, num * 50 + 20);
1159 add_merge_info(pp, sb, commit);
1164 * MEDIUM == DEFAULT shows only author with dates.
1165 * FULL shows both authors but not dates.
1166 * FULLER shows both authors and dates.
1168 if (!memcmp(line, "author ", 7)) {
1169 strbuf_grow(sb, linelen + 80);
1170 pp_user_info(pp, "Author", sb, line + 7, encoding);
1172 if (!memcmp(line, "committer ", 10) &&
1173 (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
1174 strbuf_grow(sb, linelen + 80);
1175 pp_user_info(pp, "Commit", sb, line + 10, encoding);
1180 void pp_title_line(const struct pretty_print_context *pp,
1183 const char *encoding,
1186 struct strbuf title;
1188 strbuf_init(&title, 80);
1189 *msg_p = format_subject(&title, *msg_p,
1190 pp->preserve_subject ? "\n" : " ");
1192 strbuf_grow(sb, title.len + 1024);
1194 strbuf_addstr(sb, pp->subject);
1195 add_rfc2047(sb, title.buf, title.len, encoding);
1197 strbuf_addbuf(sb, &title);
1199 strbuf_addch(sb, '\n');
1201 if (need_8bit_cte > 0) {
1202 const char *header_fmt =
1203 "MIME-Version: 1.0\n"
1204 "Content-Type: text/plain; charset=%s\n"
1205 "Content-Transfer-Encoding: 8bit\n";
1206 strbuf_addf(sb, header_fmt, encoding);
1208 if (pp->after_subject) {
1209 strbuf_addstr(sb, pp->after_subject);
1211 if (pp->fmt == CMIT_FMT_EMAIL) {
1212 strbuf_addch(sb, '\n');
1214 strbuf_release(&title);
1217 void pp_remainder(const struct pretty_print_context *pp,
1224 const char *line = *msg_p;
1225 int linelen = get_one_line(line);
1231 if (is_empty_line(line, &linelen)) {
1234 if (pp->fmt == CMIT_FMT_SHORT)
1239 strbuf_grow(sb, linelen + indent + 20);
1241 memset(sb->buf + sb->len, ' ', indent);
1242 strbuf_setlen(sb, sb->len + indent);
1244 strbuf_add(sb, line, linelen);
1245 strbuf_addch(sb, '\n');
1249 char *reencode_commit_message(const struct commit *commit, const char **encoding_p)
1251 const char *encoding;
1253 encoding = get_log_output_encoding();
1255 *encoding_p = encoding;
1256 return logmsg_reencode(commit, encoding);
1259 void pretty_print_commit(const struct pretty_print_context *pp,
1260 const struct commit *commit,
1263 unsigned long beginning_of_body;
1265 const char *msg = commit->buffer;
1267 const char *encoding;
1268 int need_8bit_cte = pp->need_8bit_cte;
1270 if (pp->fmt == CMIT_FMT_USERFORMAT) {
1271 format_commit_message(commit, user_format, sb, pp);
1275 reencoded = reencode_commit_message(commit, &encoding);
1280 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1284 * We need to check and emit Content-type: to mark it
1285 * as 8-bit if we haven't done so.
1287 if (pp->fmt == CMIT_FMT_EMAIL && need_8bit_cte == 0) {
1290 for (in_body = i = 0; (ch = msg[i]); i++) {
1292 /* author could be non 7-bit ASCII but
1293 * the log may be so; skip over the
1294 * header part first.
1296 if (ch == '\n' && msg[i+1] == '\n')
1299 else if (non_ascii(ch)) {
1306 pp_header(pp, encoding, commit, &msg, sb);
1307 if (pp->fmt != CMIT_FMT_ONELINE && !pp->subject) {
1308 strbuf_addch(sb, '\n');
1311 /* Skip excess blank lines at the beginning of body, if any... */
1312 msg = skip_empty_lines(msg);
1314 /* These formats treat the title line specially. */
1315 if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1316 pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
1318 beginning_of_body = sb->len;
1319 if (pp->fmt != CMIT_FMT_ONELINE)
1320 pp_remainder(pp, &msg, sb, indent);
1323 /* Make sure there is an EOLN for the non-oneline case */
1324 if (pp->fmt != CMIT_FMT_ONELINE)
1325 strbuf_addch(sb, '\n');
1328 * The caller may append additional body text in e-mail
1329 * format. Make sure we did not strip the blank line
1330 * between the header and the body.
1332 if (pp->fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body)
1333 strbuf_addch(sb, '\n');
1336 format_display_notes(commit->object.sha1, sb, encoding,
1337 NOTES_SHOW_HEADER | NOTES_INDENT);
1342 void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
1345 struct pretty_print_context pp = {0};
1347 pretty_print_commit(&pp, commit, sb);