6 #include "string-list.h"
11 #include "reflog-walk.h"
12 #include "gpg-interface.h"
14 static char *user_format
;
15 static struct cmt_fmt_map
{
20 const char *user_format
;
22 static size_t builtin_formats_len
;
23 static size_t commit_formats_len
;
24 static size_t commit_formats_alloc
;
25 static struct cmt_fmt_map
*find_commit_format(const char *sought
);
27 static void save_user_format(struct rev_info
*rev
, const char *cp
, int is_tformat
)
30 user_format
= xstrdup(cp
);
32 rev
->use_terminator
= 1;
33 rev
->commit_format
= CMIT_FMT_USERFORMAT
;
36 static int git_pretty_formats_config(const char *var
, const char *value
, void *cb
)
38 struct cmt_fmt_map
*commit_format
= NULL
;
43 if (prefixcmp(var
, "pretty."))
46 name
= var
+ strlen("pretty.");
47 for (i
= 0; i
< builtin_formats_len
; i
++) {
48 if (!strcmp(commit_formats
[i
].name
, name
))
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
];
60 ALLOC_GROW(commit_formats
, commit_formats_len
+1,
61 commit_formats_alloc
);
62 commit_format
= &commit_formats
[commit_formats_len
];
63 memset(commit_format
, 0, sizeof(*commit_format
));
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;
76 commit_format
->is_alias
= 1;
77 commit_format
->user_format
= fmt
;
82 static void setup_commit_formats(void)
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 }
93 commit_formats_len
= ARRAY_SIZE(builtin_formats
);
94 builtin_formats_len
= commit_formats_len
;
95 ALLOC_GROW(commit_formats
, commit_formats_len
, commit_formats_alloc
);
96 memcpy(commit_formats
, builtin_formats
,
97 sizeof(*builtin_formats
)*ARRAY_SIZE(builtin_formats
));
99 git_config(git_pretty_formats_config
, NULL
);
102 static struct cmt_fmt_map
*find_commit_format_recursive(const char *sought
,
103 const char *original
,
104 int num_redirections
)
106 struct cmt_fmt_map
*found
= NULL
;
107 size_t found_match_len
= 0;
110 if (num_redirections
>= commit_formats_len
)
111 die("invalid --pretty format: "
112 "'%s' references an alias which points to itself",
115 for (i
= 0; i
< commit_formats_len
; i
++) {
118 if (prefixcmp(commit_formats
[i
].name
, sought
))
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
;
128 if (found
&& found
->is_alias
) {
129 found
= find_commit_format_recursive(found
->user_format
,
137 static struct cmt_fmt_map
*find_commit_format(const char *sought
)
140 setup_commit_formats();
142 return find_commit_format_recursive(sought
, sought
, 0);
145 void get_commit_format(const char *arg
, struct rev_info
*rev
)
147 struct cmt_fmt_map
*commit_format
;
149 rev
->use_terminator
= 0;
151 rev
->commit_format
= CMIT_FMT_DEFAULT
;
154 if (!prefixcmp(arg
, "format:") || !prefixcmp(arg
, "tformat:")) {
155 save_user_format(rev
, strchr(arg
, ':') + 1, arg
[0] == 't');
159 if (strchr(arg
, '%')) {
160 save_user_format(rev
, arg
, 1);
164 commit_format
= find_commit_format(arg
);
166 die("invalid --pretty format: %s", arg
);
168 rev
->commit_format
= commit_format
->format
;
169 rev
->use_terminator
= commit_format
->is_tformat
;
170 if (commit_format
->format
== CMIT_FMT_USERFORMAT
) {
171 save_user_format(rev
, commit_format
->user_format
,
172 commit_format
->is_tformat
);
177 * Generic support for pretty-printing the header
179 static int get_one_line(const char *msg
)
194 /* High bit set, or ISO-2022-INT */
195 static int non_ascii(int ch
)
197 return !isascii(ch
) || ch
== '\033';
200 int has_non_ascii(const char *s
)
205 while ((ch
= *s
++) != '\0') {
212 static int is_rfc822_special(char ch
)
234 static int needs_rfc822_quoting(const char *s
, int len
)
237 for (i
= 0; i
< len
; i
++)
238 if (is_rfc822_special(s
[i
]))
243 static int last_line_length(struct strbuf
*sb
)
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')
251 return sb
->len
- (i
+ 1);
254 static void add_rfc822_quoted(struct strbuf
*out
, const char *s
, int len
)
258 /* just a guess, we may have to also backslash-quote */
259 strbuf_grow(out
, len
+ 2);
261 strbuf_addch(out
, '"');
262 for (i
= 0; i
< len
; i
++) {
266 strbuf_addch(out
, '\\');
269 strbuf_addch(out
, s
[i
]);
272 strbuf_addch(out
, '"');
280 static int is_rfc2047_special(char ch
, enum rfc2047_type type
)
283 * rfc2047, section 4.2:
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.
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)
297 if (non_ascii(ch
) || !isprint(ch
))
301 * rule out special printable characters (' ' should be the only
302 * whitespace character considered printable, but be defensive and use
305 if (isspace(ch
) || ch
== '=' || ch
== '?' || ch
== '_')
309 * rfc2047, section 5.3:
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:
315 * phrase = 1*( encoded-word / word )
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'.
325 if (type
!= RFC2047_ADDRESS
)
328 /* '=' and '_' are special cases and have been checked above */
329 return !(isalnum(ch
) || ch
== '!' || ch
== '*' || ch
== '+' || ch
== '-' || ch
== '/');
332 static int needs_rfc2047_encoding(const char *line
, int len
,
333 enum rfc2047_type type
)
337 for (i
= 0; i
< len
; i
++) {
339 if (non_ascii(ch
) || ch
== '\n')
341 if ((i
+ 1 < len
) && (ch
== '=' && line
[i
+1] == '?'))
348 static void add_rfc2047(struct strbuf
*sb
, const char *line
, int len
,
349 const char *encoding
, enum rfc2047_type type
)
351 static const int max_encoded_length
= 76; /* per rfc2047 */
353 int line_len
= last_line_length(sb
);
355 strbuf_grow(sb
, len
* 3 + strlen(encoding
) + 100);
356 strbuf_addf(sb
, "=?%s?q?", encoding
);
357 line_len
+= strlen(encoding
) + 5; /* 5 for =??q? */
358 for (i
= 0; i
< len
; i
++) {
359 unsigned ch
= line
[i
] & 0xFF;
360 int is_special
= is_rfc2047_special(ch
, type
);
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.
370 if (line_len
+ 2 + (is_special
? 3 : 1) > max_encoded_length
) {
371 strbuf_addf(sb
, "?=\n =?%s?q?", encoding
);
372 line_len
= strlen(encoding
) + 5 + 1; /* =??q? plus SP */
376 strbuf_addf(sb
, "=%02X", ch
);
379 strbuf_addch(sb
, ch
);
383 strbuf_addstr(sb
, "?=");
386 void pp_user_info(const struct pretty_print_context
*pp
,
387 const char *what
, struct strbuf
*sb
,
388 const char *line
, const char *encoding
)
390 int max_length
= 78; /* per rfc2822 */
396 if (pp
->fmt
== CMIT_FMT_ONELINE
)
398 date
= strchr(line
, '>');
401 namelen
= ++date
- line
;
402 time
= strtoul(date
, &date
, 10);
403 tz
= strtol(date
, NULL
, 10);
405 if (pp
->fmt
== CMIT_FMT_EMAIL
) {
406 char *name_tail
= strchr(line
, '<');
407 int display_name_length
;
410 while (line
< name_tail
&& isspace(name_tail
[-1]))
412 display_name_length
= name_tail
- line
;
413 strbuf_addstr(sb
, "From: ");
414 if (needs_rfc2047_encoding(line
, display_name_length
, RFC2047_ADDRESS
)) {
415 add_rfc2047(sb
, line
, display_name_length
,
416 encoding
, RFC2047_ADDRESS
);
417 max_length
= 76; /* per rfc2047 */
418 } else if (needs_rfc822_quoting(line
, display_name_length
)) {
419 struct strbuf quoted
= STRBUF_INIT
;
420 add_rfc822_quoted("ed
, line
, display_name_length
);
421 strbuf_add_wrapped_bytes(sb
, quoted
.buf
, quoted
.len
,
423 strbuf_release("ed
);
425 strbuf_add_wrapped_bytes(sb
, line
, display_name_length
,
428 if (namelen
- display_name_length
+ last_line_length(sb
) > max_length
) {
429 strbuf_addch(sb
, '\n');
430 if (!isspace(name_tail
[0]))
431 strbuf_addch(sb
, ' ');
433 strbuf_add(sb
, name_tail
, namelen
- display_name_length
);
434 strbuf_addch(sb
, '\n');
436 strbuf_addf(sb
, "%s: %.*s%.*s\n", what
,
437 (pp
->fmt
== CMIT_FMT_FULLER
) ? 4 : 0,
441 case CMIT_FMT_MEDIUM
:
442 strbuf_addf(sb
, "Date: %s\n", show_date(time
, tz
, pp
->date_mode
));
445 strbuf_addf(sb
, "Date: %s\n", show_date(time
, tz
, DATE_RFC2822
));
447 case CMIT_FMT_FULLER
:
448 strbuf_addf(sb
, "%sDate: %s\n", what
, show_date(time
, tz
, pp
->date_mode
));
456 static int is_empty_line(const char *line
, int *len_p
)
459 while (len
&& isspace(line
[len
-1]))
465 static const char *skip_empty_lines(const char *msg
)
468 int linelen
= get_one_line(msg
);
472 if (!is_empty_line(msg
, &ll
))
479 static void add_merge_info(const struct pretty_print_context
*pp
,
480 struct strbuf
*sb
, const struct commit
*commit
)
482 struct commit_list
*parent
= commit
->parents
;
484 if ((pp
->fmt
== CMIT_FMT_ONELINE
) || (pp
->fmt
== CMIT_FMT_EMAIL
) ||
485 !parent
|| !parent
->next
)
488 strbuf_addstr(sb
, "Merge:");
491 struct commit
*p
= parent
->item
;
492 const char *hex
= NULL
;
494 hex
= find_unique_abbrev(p
->object
.sha1
, pp
->abbrev
);
496 hex
= sha1_to_hex(p
->object
.sha1
);
497 parent
= parent
->next
;
499 strbuf_addf(sb
, " %s", hex
);
501 strbuf_addch(sb
, '\n');
504 static char *get_header(const struct commit
*commit
, const char *key
)
506 int key_len
= strlen(key
);
507 const char *line
= commit
->buffer
;
510 const char *eol
= strchr(line
, '\n'), *next
;
515 warning("malformed commit (header is missing newline): %s",
516 sha1_to_hex(commit
->object
.sha1
));
517 eol
= line
+ strlen(line
);
521 if (eol
- line
> key_len
&&
522 !strncmp(line
, key
, key_len
) &&
523 line
[key_len
] == ' ') {
524 return xmemdupz(line
+ key_len
+ 1, eol
- line
- key_len
- 1);
531 static char *replace_encoding_header(char *buf
, const char *encoding
)
533 struct strbuf tmp
= STRBUF_INIT
;
537 /* guess if there is an encoding header before a \n\n */
538 while (strncmp(cp
, "encoding ", strlen("encoding "))) {
539 cp
= strchr(cp
, '\n');
540 if (!cp
|| *++cp
== '\n')
544 cp
= strchr(cp
, '\n');
546 return buf
; /* should not happen but be defensive */
547 len
= cp
+ 1 - (buf
+ start
);
549 strbuf_attach(&tmp
, buf
, strlen(buf
), strlen(buf
) + 1);
550 if (is_encoding_utf8(encoding
)) {
551 /* we have re-coded to UTF-8; drop the header */
552 strbuf_remove(&tmp
, start
, len
);
554 /* just replaces XXXX in 'encoding XXXX\n' */
555 strbuf_splice(&tmp
, start
+ strlen("encoding "),
556 len
- strlen("encoding \n"),
557 encoding
, strlen(encoding
));
559 return strbuf_detach(&tmp
, NULL
);
562 char *logmsg_reencode(const struct commit
*commit
,
563 const char *output_encoding
)
565 static const char *utf8
= "UTF-8";
566 const char *use_encoding
;
570 if (!*output_encoding
)
572 encoding
= get_header(commit
, "encoding");
573 use_encoding
= encoding
? encoding
: utf8
;
574 if (!strcmp(use_encoding
, output_encoding
))
575 if (encoding
) /* we'll strip encoding header later */
576 out
= xstrdup(commit
->buffer
);
578 return NULL
; /* nothing to do */
580 out
= reencode_string(commit
->buffer
,
581 output_encoding
, use_encoding
);
583 out
= replace_encoding_header(out
, output_encoding
);
589 static int mailmap_name(char *email
, int email_len
, char *name
, int name_len
)
591 static struct string_list
*mail_map
;
593 mail_map
= xcalloc(1, sizeof(*mail_map
));
594 read_mailmap(mail_map
, NULL
);
596 return mail_map
->nr
&& map_user(mail_map
, email
, email_len
, name
, name_len
);
599 static size_t format_person_part(struct strbuf
*sb
, char part
,
600 const char *msg
, int len
, enum date_mode dmode
)
602 /* currently all placeholders have same length */
603 const int placeholder_len
= 2;
605 unsigned long date
= 0;
606 char person_name
[1024];
607 char person_mail
[1024];
608 struct ident_split s
;
609 const char *name_start
, *name_end
, *mail_start
, *mail_end
;
611 if (split_ident_line(&s
, msg
, len
) < 0)
614 name_start
= s
.name_begin
;
615 name_end
= s
.name_end
;
616 mail_start
= s
.mail_begin
;
617 mail_end
= s
.mail_end
;
619 if (part
== 'N' || part
== 'E') { /* mailmap lookup */
620 snprintf(person_name
, sizeof(person_name
), "%.*s",
621 (int)(name_end
- name_start
), name_start
);
622 snprintf(person_mail
, sizeof(person_mail
), "%.*s",
623 (int)(mail_end
- mail_start
), mail_start
);
624 mailmap_name(person_mail
, sizeof(person_mail
), person_name
, sizeof(person_name
));
625 name_start
= person_name
;
626 name_end
= name_start
+ strlen(person_name
);
627 mail_start
= person_mail
;
628 mail_end
= mail_start
+ strlen(person_mail
);
630 if (part
== 'n' || part
== 'N') { /* name */
631 strbuf_add(sb
, name_start
, name_end
-name_start
);
632 return placeholder_len
;
634 if (part
== 'e' || part
== 'E') { /* email */
635 strbuf_add(sb
, mail_start
, mail_end
-mail_start
);
636 return placeholder_len
;
642 date
= strtoul(s
.date_begin
, NULL
, 10);
644 if (part
== 't') { /* date, UNIX timestamp */
645 strbuf_add(sb
, s
.date_begin
, s
.date_end
- s
.date_begin
);
646 return placeholder_len
;
650 tz
= strtoul(s
.tz_begin
+ 1, NULL
, 10);
651 if (*s
.tz_begin
== '-')
656 strbuf_addstr(sb
, show_date(date
, tz
, dmode
));
657 return placeholder_len
;
658 case 'D': /* date, RFC2822 style */
659 strbuf_addstr(sb
, show_date(date
, tz
, DATE_RFC2822
));
660 return placeholder_len
;
661 case 'r': /* date, relative */
662 strbuf_addstr(sb
, show_date(date
, tz
, DATE_RELATIVE
));
663 return placeholder_len
;
664 case 'i': /* date, ISO 8601 */
665 strbuf_addstr(sb
, show_date(date
, tz
, DATE_ISO8601
));
666 return placeholder_len
;
671 * reading from either a bogus commit, or a reflog entry with
672 * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
673 * to compute a valid return value.
675 if (part
== 'n' || part
== 'e' || part
== 't' || part
== 'd'
676 || part
== 'D' || part
== 'r' || part
== 'i')
677 return placeholder_len
;
679 return 0; /* unknown placeholder */
687 struct format_commit_context
{
688 const struct commit
*commit
;
689 const struct pretty_print_context
*pretty_ctx
;
690 unsigned commit_header_parsed
:1;
691 unsigned commit_message_parsed
:1;
692 unsigned commit_signature_parsed
:1;
699 size_t width
, indent1
, indent2
;
701 /* These offsets are relative to the start of the commit message. */
703 struct chunk committer
;
704 struct chunk encoding
;
709 /* The following ones are relative to the result struct strbuf. */
710 struct chunk abbrev_commit_hash
;
711 struct chunk abbrev_tree_hash
;
712 struct chunk abbrev_parent_hashes
;
716 static int add_again(struct strbuf
*sb
, struct chunk
*chunk
)
719 strbuf_adddup(sb
, chunk
->off
, chunk
->len
);
724 * We haven't seen this chunk before. Our caller is surely
725 * going to add it the hard way now. Remember the most likely
726 * start of the to-be-added chunk: the current end of the
729 chunk
->off
= sb
->len
;
733 static void parse_commit_header(struct format_commit_context
*context
)
735 const char *msg
= context
->message
;
738 for (i
= 0; msg
[i
]; i
++) {
740 for (eol
= i
; msg
[eol
] && msg
[eol
] != '\n'; eol
++)
745 } else if (!prefixcmp(msg
+ i
, "author ")) {
746 context
->author
.off
= i
+ 7;
747 context
->author
.len
= eol
- i
- 7;
748 } else if (!prefixcmp(msg
+ i
, "committer ")) {
749 context
->committer
.off
= i
+ 10;
750 context
->committer
.len
= eol
- i
- 10;
751 } else if (!prefixcmp(msg
+ i
, "encoding ")) {
752 context
->encoding
.off
= i
+ 9;
753 context
->encoding
.len
= eol
- i
- 9;
757 context
->message_off
= i
;
758 context
->commit_header_parsed
= 1;
761 static int istitlechar(char c
)
763 return (c
>= 'a' && c
<= 'z') || (c
>= 'A' && c
<= 'Z') ||
764 (c
>= '0' && c
<= '9') || c
== '.' || c
== '_';
767 static void format_sanitized_subject(struct strbuf
*sb
, const char *msg
)
770 size_t start_len
= sb
->len
;
773 for (; *msg
&& *msg
!= '\n'; msg
++) {
774 if (istitlechar(*msg
)) {
776 strbuf_addch(sb
, '-');
778 strbuf_addch(sb
, *msg
);
780 while (*(msg
+1) == '.')
786 /* trim any trailing '.' or '-' characters */
788 while (sb
->len
- trimlen
> start_len
&&
789 (sb
->buf
[sb
->len
- 1 - trimlen
] == '.'
790 || sb
->buf
[sb
->len
- 1 - trimlen
] == '-'))
792 strbuf_remove(sb
, sb
->len
- trimlen
, trimlen
);
795 const char *format_subject(struct strbuf
*sb
, const char *msg
,
796 const char *line_separator
)
801 const char *line
= msg
;
802 int linelen
= get_one_line(line
);
805 if (!linelen
|| is_empty_line(line
, &linelen
))
810 strbuf_grow(sb
, linelen
+ 2);
812 strbuf_addstr(sb
, line_separator
);
813 strbuf_add(sb
, line
, linelen
);
819 static void parse_commit_message(struct format_commit_context
*c
)
821 const char *msg
= c
->message
+ c
->message_off
;
822 const char *start
= c
->message
;
824 msg
= skip_empty_lines(msg
);
825 c
->subject_off
= msg
- start
;
827 msg
= format_subject(NULL
, msg
, NULL
);
828 msg
= skip_empty_lines(msg
);
829 c
->body_off
= msg
- start
;
831 c
->commit_message_parsed
= 1;
834 static void format_decoration(struct strbuf
*sb
, const struct commit
*commit
)
836 struct name_decoration
*d
;
837 const char *prefix
= " (";
839 load_ref_decorations(DECORATE_SHORT_REFS
);
840 d
= lookup_decoration(&name_decoration
, &commit
->object
);
842 strbuf_addstr(sb
, prefix
);
844 strbuf_addstr(sb
, d
->name
);
847 if (prefix
[0] == ',')
848 strbuf_addch(sb
, ')');
851 static void strbuf_wrap(struct strbuf
*sb
, size_t pos
,
852 size_t width
, size_t indent1
, size_t indent2
)
854 struct strbuf tmp
= STRBUF_INIT
;
857 strbuf_add(&tmp
, sb
->buf
, pos
);
858 strbuf_add_wrapped_text(&tmp
, sb
->buf
+ pos
,
859 (int) indent1
, (int) indent2
, (int) width
);
860 strbuf_swap(&tmp
, sb
);
861 strbuf_release(&tmp
);
864 static void rewrap_message_tail(struct strbuf
*sb
,
865 struct format_commit_context
*c
,
866 size_t new_width
, size_t new_indent1
,
869 if (c
->width
== new_width
&& c
->indent1
== new_indent1
&&
870 c
->indent2
== new_indent2
)
872 if (c
->wrap_start
< sb
->len
)
873 strbuf_wrap(sb
, c
->wrap_start
, c
->width
, c
->indent1
, c
->indent2
);
874 c
->wrap_start
= sb
->len
;
875 c
->width
= new_width
;
876 c
->indent1
= new_indent1
;
877 c
->indent2
= new_indent2
;
883 } signature_check
[] = {
884 { 'G', ": Good signature from " },
885 { 'B', ": BAD signature from " },
888 static void parse_signature_lines(struct format_commit_context
*ctx
)
890 const char *buf
= ctx
->signature
.gpg_output
;
893 for (i
= 0; i
< ARRAY_SIZE(signature_check
); i
++) {
894 const char *found
= strstr(buf
, signature_check
[i
].check
);
898 ctx
->signature
.good_bad
= signature_check
[i
].result
;
899 found
+= strlen(signature_check
[i
].check
);
900 next
= strchrnul(found
, '\n');
901 ctx
->signature
.signer
= xmemdupz(found
, next
- found
);
906 static void parse_commit_signature(struct format_commit_context
*ctx
)
908 struct strbuf payload
= STRBUF_INIT
;
909 struct strbuf signature
= STRBUF_INIT
;
910 struct strbuf gpg_output
= STRBUF_INIT
;
913 ctx
->commit_signature_parsed
= 1;
915 if (parse_signed_commit(ctx
->commit
->object
.sha1
,
916 &payload
, &signature
) <= 0)
918 status
= verify_signed_buffer(payload
.buf
, payload
.len
,
919 signature
.buf
, signature
.len
,
921 if (status
&& !gpg_output
.len
)
923 ctx
->signature
.gpg_output
= strbuf_detach(&gpg_output
, NULL
);
924 parse_signature_lines(ctx
);
927 strbuf_release(&gpg_output
);
928 strbuf_release(&payload
);
929 strbuf_release(&signature
);
933 static int format_reflog_person(struct strbuf
*sb
,
935 struct reflog_walk_info
*log
,
936 enum date_mode dmode
)
943 ident
= get_reflog_ident(log
);
947 return format_person_part(sb
, part
, ident
, strlen(ident
), dmode
);
950 static size_t format_commit_one(struct strbuf
*sb
, const char *placeholder
,
953 struct format_commit_context
*c
= context
;
954 const struct commit
*commit
= c
->commit
;
955 const char *msg
= c
->message
;
956 struct commit_list
*p
;
959 /* these are independent of the commit */
960 switch (placeholder
[0]) {
962 if (placeholder
[1] == '(') {
963 const char *end
= strchr(placeholder
+ 2, ')');
964 char color
[COLOR_MAXLEN
];
967 color_parse_mem(placeholder
+ 2,
968 end
- (placeholder
+ 2),
969 "--pretty format", color
);
970 strbuf_addstr(sb
, color
);
971 return end
- placeholder
+ 1;
973 if (!prefixcmp(placeholder
+ 1, "red")) {
974 strbuf_addstr(sb
, GIT_COLOR_RED
);
976 } else if (!prefixcmp(placeholder
+ 1, "green")) {
977 strbuf_addstr(sb
, GIT_COLOR_GREEN
);
979 } else if (!prefixcmp(placeholder
+ 1, "blue")) {
980 strbuf_addstr(sb
, GIT_COLOR_BLUE
);
982 } else if (!prefixcmp(placeholder
+ 1, "reset")) {
983 strbuf_addstr(sb
, GIT_COLOR_RESET
);
987 case 'n': /* newline */
988 strbuf_addch(sb
, '\n');
991 /* %x00 == NUL, %x0a == LF, etc. */
992 if (0 <= (h1
= hexval_table
[0xff & placeholder
[1]]) &&
994 0 <= (h2
= hexval_table
[0xff & placeholder
[2]]) &&
996 strbuf_addch(sb
, (h1
<<4)|h2
);
1001 if (placeholder
[1] == '(') {
1002 unsigned long width
= 0, indent1
= 0, indent2
= 0;
1004 const char *start
= placeholder
+ 2;
1005 const char *end
= strchr(start
, ')');
1009 width
= strtoul(start
, &next
, 10);
1011 indent1
= strtoul(next
+ 1, &next
, 10);
1013 indent2
= strtoul(next
+ 1,
1020 rewrap_message_tail(sb
, c
, width
, indent1
, indent2
);
1021 return end
- placeholder
+ 1;
1026 /* these depend on the commit */
1027 if (!commit
->object
.parsed
)
1028 parse_object(commit
->object
.sha1
);
1030 switch (placeholder
[0]) {
1031 case 'H': /* commit hash */
1032 strbuf_addstr(sb
, sha1_to_hex(commit
->object
.sha1
));
1034 case 'h': /* abbreviated commit hash */
1035 if (add_again(sb
, &c
->abbrev_commit_hash
))
1037 strbuf_addstr(sb
, find_unique_abbrev(commit
->object
.sha1
,
1038 c
->pretty_ctx
->abbrev
));
1039 c
->abbrev_commit_hash
.len
= sb
->len
- c
->abbrev_commit_hash
.off
;
1041 case 'T': /* tree hash */
1042 strbuf_addstr(sb
, sha1_to_hex(commit
->tree
->object
.sha1
));
1044 case 't': /* abbreviated tree hash */
1045 if (add_again(sb
, &c
->abbrev_tree_hash
))
1047 strbuf_addstr(sb
, find_unique_abbrev(commit
->tree
->object
.sha1
,
1048 c
->pretty_ctx
->abbrev
));
1049 c
->abbrev_tree_hash
.len
= sb
->len
- c
->abbrev_tree_hash
.off
;
1051 case 'P': /* parent hashes */
1052 for (p
= commit
->parents
; p
; p
= p
->next
) {
1053 if (p
!= commit
->parents
)
1054 strbuf_addch(sb
, ' ');
1055 strbuf_addstr(sb
, sha1_to_hex(p
->item
->object
.sha1
));
1058 case 'p': /* abbreviated parent hashes */
1059 if (add_again(sb
, &c
->abbrev_parent_hashes
))
1061 for (p
= commit
->parents
; p
; p
= p
->next
) {
1062 if (p
!= commit
->parents
)
1063 strbuf_addch(sb
, ' ');
1064 strbuf_addstr(sb
, find_unique_abbrev(
1065 p
->item
->object
.sha1
,
1066 c
->pretty_ctx
->abbrev
));
1068 c
->abbrev_parent_hashes
.len
= sb
->len
-
1069 c
->abbrev_parent_hashes
.off
;
1071 case 'm': /* left/right/bottom */
1072 strbuf_addstr(sb
, get_revision_mark(NULL
, commit
));
1075 format_decoration(sb
, commit
);
1077 case 'g': /* reflog info */
1078 switch(placeholder
[1]) {
1079 case 'd': /* reflog selector */
1081 if (c
->pretty_ctx
->reflog_info
)
1082 get_reflog_selector(sb
,
1083 c
->pretty_ctx
->reflog_info
,
1084 c
->pretty_ctx
->date_mode
,
1085 c
->pretty_ctx
->date_mode_explicit
,
1086 (placeholder
[1] == 'd'));
1088 case 's': /* reflog message */
1089 if (c
->pretty_ctx
->reflog_info
)
1090 get_reflog_message(sb
, c
->pretty_ctx
->reflog_info
);
1096 return format_reflog_person(sb
,
1098 c
->pretty_ctx
->reflog_info
,
1099 c
->pretty_ctx
->date_mode
);
1101 return 0; /* unknown %g placeholder */
1103 if (c
->pretty_ctx
->show_notes
) {
1104 format_display_notes(commit
->object
.sha1
, sb
,
1105 get_log_output_encoding(), 0);
1111 if (placeholder
[0] == 'G') {
1112 if (!c
->commit_signature_parsed
)
1113 parse_commit_signature(c
);
1114 switch (placeholder
[1]) {
1116 if (c
->signature
.gpg_output
)
1117 strbuf_addstr(sb
, c
->signature
.gpg_output
);
1120 switch (c
->signature
.good_bad
) {
1123 strbuf_addch(sb
, c
->signature
.good_bad
);
1127 if (c
->signature
.signer
)
1128 strbuf_addstr(sb
, c
->signature
.signer
);
1135 /* For the rest we have to parse the commit header. */
1136 if (!c
->commit_header_parsed
)
1137 parse_commit_header(c
);
1139 switch (placeholder
[0]) {
1140 case 'a': /* author ... */
1141 return format_person_part(sb
, placeholder
[1],
1142 msg
+ c
->author
.off
, c
->author
.len
,
1143 c
->pretty_ctx
->date_mode
);
1144 case 'c': /* committer ... */
1145 return format_person_part(sb
, placeholder
[1],
1146 msg
+ c
->committer
.off
, c
->committer
.len
,
1147 c
->pretty_ctx
->date_mode
);
1148 case 'e': /* encoding */
1149 strbuf_add(sb
, msg
+ c
->encoding
.off
, c
->encoding
.len
);
1151 case 'B': /* raw body */
1152 /* message_off is always left at the initial newline */
1153 strbuf_addstr(sb
, msg
+ c
->message_off
+ 1);
1157 /* Now we need to parse the commit message. */
1158 if (!c
->commit_message_parsed
)
1159 parse_commit_message(c
);
1161 switch (placeholder
[0]) {
1162 case 's': /* subject */
1163 format_subject(sb
, msg
+ c
->subject_off
, " ");
1165 case 'f': /* sanitized subject */
1166 format_sanitized_subject(sb
, msg
+ c
->subject_off
);
1168 case 'b': /* body */
1169 strbuf_addstr(sb
, msg
+ c
->body_off
);
1172 return 0; /* unknown placeholder */
1175 static size_t format_commit_item(struct strbuf
*sb
, const char *placeholder
,
1182 ADD_LF_BEFORE_NON_EMPTY
,
1183 DEL_LF_BEFORE_EMPTY
,
1184 ADD_SP_BEFORE_NON_EMPTY
1187 switch (placeholder
[0]) {
1189 magic
= DEL_LF_BEFORE_EMPTY
;
1192 magic
= ADD_LF_BEFORE_NON_EMPTY
;
1195 magic
= ADD_SP_BEFORE_NON_EMPTY
;
1200 if (magic
!= NO_MAGIC
)
1204 consumed
= format_commit_one(sb
, placeholder
, context
);
1205 if (magic
== NO_MAGIC
)
1208 if ((orig_len
== sb
->len
) && magic
== DEL_LF_BEFORE_EMPTY
) {
1209 while (sb
->len
&& sb
->buf
[sb
->len
- 1] == '\n')
1210 strbuf_setlen(sb
, sb
->len
- 1);
1211 } else if (orig_len
!= sb
->len
) {
1212 if (magic
== ADD_LF_BEFORE_NON_EMPTY
)
1213 strbuf_insert(sb
, orig_len
, "\n", 1);
1214 else if (magic
== ADD_SP_BEFORE_NON_EMPTY
)
1215 strbuf_insert(sb
, orig_len
, " ", 1);
1217 return consumed
+ 1;
1220 static size_t userformat_want_item(struct strbuf
*sb
, const char *placeholder
,
1223 struct userformat_want
*w
= context
;
1225 if (*placeholder
== '+' || *placeholder
== '-' || *placeholder
== ' ')
1228 switch (*placeholder
) {
1236 void userformat_find_requirements(const char *fmt
, struct userformat_want
*w
)
1238 struct strbuf dummy
= STRBUF_INIT
;
1245 strbuf_expand(&dummy
, fmt
, userformat_want_item
, w
);
1246 strbuf_release(&dummy
);
1249 void format_commit_message(const struct commit
*commit
,
1250 const char *format
, struct strbuf
*sb
,
1251 const struct pretty_print_context
*pretty_ctx
)
1253 struct format_commit_context context
;
1254 static const char utf8
[] = "UTF-8";
1255 const char *output_enc
= pretty_ctx
->output_encoding
;
1257 memset(&context
, 0, sizeof(context
));
1258 context
.commit
= commit
;
1259 context
.pretty_ctx
= pretty_ctx
;
1260 context
.wrap_start
= sb
->len
;
1261 context
.message
= commit
->buffer
;
1263 char *enc
= get_header(commit
, "encoding");
1264 if (strcmp(enc
? enc
: utf8
, output_enc
)) {
1265 context
.message
= logmsg_reencode(commit
, output_enc
);
1266 if (!context
.message
)
1267 context
.message
= commit
->buffer
;
1272 strbuf_expand(sb
, format
, format_commit_item
, &context
);
1273 rewrap_message_tail(sb
, &context
, 0, 0, 0);
1275 if (context
.message
!= commit
->buffer
)
1276 free(context
.message
);
1277 free(context
.signature
.gpg_output
);
1278 free(context
.signature
.signer
);
1281 static void pp_header(const struct pretty_print_context
*pp
,
1282 const char *encoding
,
1283 const struct commit
*commit
,
1287 int parents_shown
= 0;
1290 const char *line
= *msg_p
;
1291 int linelen
= get_one_line(*msg_p
);
1301 if (pp
->fmt
== CMIT_FMT_RAW
) {
1302 strbuf_add(sb
, line
, linelen
);
1306 if (!memcmp(line
, "parent ", 7)) {
1308 die("bad parent line in commit");
1312 if (!parents_shown
) {
1313 struct commit_list
*parent
;
1315 for (parent
= commit
->parents
, num
= 0;
1317 parent
= parent
->next
, num
++)
1319 /* with enough slop */
1320 strbuf_grow(sb
, num
* 50 + 20);
1321 add_merge_info(pp
, sb
, commit
);
1326 * MEDIUM == DEFAULT shows only author with dates.
1327 * FULL shows both authors but not dates.
1328 * FULLER shows both authors and dates.
1330 if (!memcmp(line
, "author ", 7)) {
1331 strbuf_grow(sb
, linelen
+ 80);
1332 pp_user_info(pp
, "Author", sb
, line
+ 7, encoding
);
1334 if (!memcmp(line
, "committer ", 10) &&
1335 (pp
->fmt
== CMIT_FMT_FULL
|| pp
->fmt
== CMIT_FMT_FULLER
)) {
1336 strbuf_grow(sb
, linelen
+ 80);
1337 pp_user_info(pp
, "Commit", sb
, line
+ 10, encoding
);
1342 void pp_title_line(const struct pretty_print_context
*pp
,
1345 const char *encoding
,
1348 static const int max_length
= 78; /* per rfc2047 */
1349 struct strbuf title
;
1351 strbuf_init(&title
, 80);
1352 *msg_p
= format_subject(&title
, *msg_p
,
1353 pp
->preserve_subject
? "\n" : " ");
1355 strbuf_grow(sb
, title
.len
+ 1024);
1357 strbuf_addstr(sb
, pp
->subject
);
1358 if (needs_rfc2047_encoding(title
.buf
, title
.len
, RFC2047_SUBJECT
))
1359 add_rfc2047(sb
, title
.buf
, title
.len
,
1360 encoding
, RFC2047_SUBJECT
);
1362 strbuf_add_wrapped_bytes(sb
, title
.buf
, title
.len
,
1363 -last_line_length(sb
), 1, max_length
);
1365 strbuf_addbuf(sb
, &title
);
1367 strbuf_addch(sb
, '\n');
1369 if (need_8bit_cte
> 0) {
1370 const char *header_fmt
=
1371 "MIME-Version: 1.0\n"
1372 "Content-Type: text/plain; charset=%s\n"
1373 "Content-Transfer-Encoding: 8bit\n";
1374 strbuf_addf(sb
, header_fmt
, encoding
);
1376 if (pp
->after_subject
) {
1377 strbuf_addstr(sb
, pp
->after_subject
);
1379 if (pp
->fmt
== CMIT_FMT_EMAIL
) {
1380 strbuf_addch(sb
, '\n');
1382 strbuf_release(&title
);
1385 void pp_remainder(const struct pretty_print_context
*pp
,
1392 const char *line
= *msg_p
;
1393 int linelen
= get_one_line(line
);
1399 if (is_empty_line(line
, &linelen
)) {
1402 if (pp
->fmt
== CMIT_FMT_SHORT
)
1407 strbuf_grow(sb
, linelen
+ indent
+ 20);
1409 memset(sb
->buf
+ sb
->len
, ' ', indent
);
1410 strbuf_setlen(sb
, sb
->len
+ indent
);
1412 strbuf_add(sb
, line
, linelen
);
1413 strbuf_addch(sb
, '\n');
1417 char *reencode_commit_message(const struct commit
*commit
, const char **encoding_p
)
1419 const char *encoding
;
1421 encoding
= get_log_output_encoding();
1423 *encoding_p
= encoding
;
1424 return logmsg_reencode(commit
, encoding
);
1427 void pretty_print_commit(const struct pretty_print_context
*pp
,
1428 const struct commit
*commit
,
1431 unsigned long beginning_of_body
;
1433 const char *msg
= commit
->buffer
;
1435 const char *encoding
;
1436 int need_8bit_cte
= pp
->need_8bit_cte
;
1438 if (pp
->fmt
== CMIT_FMT_USERFORMAT
) {
1439 format_commit_message(commit
, user_format
, sb
, pp
);
1443 reencoded
= reencode_commit_message(commit
, &encoding
);
1448 if (pp
->fmt
== CMIT_FMT_ONELINE
|| pp
->fmt
== CMIT_FMT_EMAIL
)
1452 * We need to check and emit Content-type: to mark it
1453 * as 8-bit if we haven't done so.
1455 if (pp
->fmt
== CMIT_FMT_EMAIL
&& need_8bit_cte
== 0) {
1458 for (in_body
= i
= 0; (ch
= msg
[i
]); i
++) {
1460 /* author could be non 7-bit ASCII but
1461 * the log may be so; skip over the
1462 * header part first.
1464 if (ch
== '\n' && msg
[i
+1] == '\n')
1467 else if (non_ascii(ch
)) {
1474 pp_header(pp
, encoding
, commit
, &msg
, sb
);
1475 if (pp
->fmt
!= CMIT_FMT_ONELINE
&& !pp
->subject
) {
1476 strbuf_addch(sb
, '\n');
1479 /* Skip excess blank lines at the beginning of body, if any... */
1480 msg
= skip_empty_lines(msg
);
1482 /* These formats treat the title line specially. */
1483 if (pp
->fmt
== CMIT_FMT_ONELINE
|| pp
->fmt
== CMIT_FMT_EMAIL
)
1484 pp_title_line(pp
, &msg
, sb
, encoding
, need_8bit_cte
);
1486 beginning_of_body
= sb
->len
;
1487 if (pp
->fmt
!= CMIT_FMT_ONELINE
)
1488 pp_remainder(pp
, &msg
, sb
, indent
);
1491 /* Make sure there is an EOLN for the non-oneline case */
1492 if (pp
->fmt
!= CMIT_FMT_ONELINE
)
1493 strbuf_addch(sb
, '\n');
1496 * The caller may append additional body text in e-mail
1497 * format. Make sure we did not strip the blank line
1498 * between the header and the body.
1500 if (pp
->fmt
== CMIT_FMT_EMAIL
&& sb
->len
<= beginning_of_body
)
1501 strbuf_addch(sb
, '\n');
1504 format_display_notes(commit
->object
.sha1
, sb
, encoding
,
1505 NOTES_SHOW_HEADER
| NOTES_INDENT
);
1510 void pp_commit_easy(enum cmit_fmt fmt
, const struct commit
*commit
,
1513 struct pretty_print_context pp
= {0};
1515 pretty_print_commit(&pp
, commit
, sb
);