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