350d1df3fe1d0b2809e10da1d5022dca716d7ec1
   1#include "cache.h"
   2#include "commit.h"
   3#include "utf8.h"
   4#include "diff.h"
   5#include "revision.h"
   6#include "string-list.h"
   7#include "mailmap.h"
   8#include "log-tree.h"
   9#include "notes.h"
  10#include "color.h"
  11#include "reflog-walk.h"
  12#include "gpg-interface.h"
  13
  14static char *user_format;
  15static struct cmt_fmt_map {
  16        const char *name;
  17        enum cmit_fmt format;
  18        int is_tformat;
  19        int is_alias;
  20        const char *user_format;
  21} *commit_formats;
  22static size_t builtin_formats_len;
  23static size_t commit_formats_len;
  24static size_t commit_formats_alloc;
  25static struct cmt_fmt_map *find_commit_format(const char *sought);
  26
  27static void save_user_format(struct rev_info *rev, const char *cp, int is_tformat)
  28{
  29        free(user_format);
  30        user_format = xstrdup(cp);
  31        if (is_tformat)
  32                rev->use_terminator = 1;
  33        rev->commit_format = CMIT_FMT_USERFORMAT;
  34}
  35
  36static int git_pretty_formats_config(const char *var, const char *value, void *cb)
  37{
  38        struct cmt_fmt_map *commit_format = NULL;
  39        const char *name;
  40        const char *fmt;
  41        int i;
  42
  43        if (prefixcmp(var, "pretty."))
  44                return 0;
  45
  46        name = var + strlen("pretty.");
  47        for (i = 0; i < builtin_formats_len; i++) {
  48                if (!strcmp(commit_formats[i].name, name))
  49                        return 0;
  50        }
  51
  52        for (i = builtin_formats_len; i < commit_formats_len; i++) {
  53                if (!strcmp(commit_formats[i].name, name)) {
  54                        commit_format = &commit_formats[i];
  55                        break;
  56                }
  57        }
  58
  59        if (!commit_format) {
  60                ALLOC_GROW(commit_formats, commit_formats_len+1,
  61                           commit_formats_alloc);
  62                commit_format = &commit_formats[commit_formats_len];
  63                memset(commit_format, 0, sizeof(*commit_format));
  64                commit_formats_len++;
  65        }
  66
  67        commit_format->name = xstrdup(name);
  68        commit_format->format = CMIT_FMT_USERFORMAT;
  69        git_config_string(&fmt, var, value);
  70        if (!prefixcmp(fmt, "format:") || !prefixcmp(fmt, "tformat:")) {
  71                commit_format->is_tformat = fmt[0] == 't';
  72                fmt = strchr(fmt, ':') + 1;
  73        } else if (strchr(fmt, '%'))
  74                commit_format->is_tformat = 1;
  75        else
  76                commit_format->is_alias = 1;
  77        commit_format->user_format = fmt;
  78
  79        return 0;
  80}
  81
  82static void setup_commit_formats(void)
  83{
  84        struct cmt_fmt_map builtin_formats[] = {
  85                { "raw",        CMIT_FMT_RAW,           0 },
  86                { "medium",     CMIT_FMT_MEDIUM,        0 },
  87                { "short",      CMIT_FMT_SHORT,         0 },
  88                { "email",      CMIT_FMT_EMAIL,         0 },
  89                { "fuller",     CMIT_FMT_FULLER,        0 },
  90                { "full",       CMIT_FMT_FULL,          0 },
  91                { "oneline",    CMIT_FMT_ONELINE,       1 }
  92        };
  93        commit_formats_len = ARRAY_SIZE(builtin_formats);
  94        builtin_formats_len = commit_formats_len;
  95        ALLOC_GROW(commit_formats, commit_formats_len, commit_formats_alloc);
  96        memcpy(commit_formats, builtin_formats,
  97               sizeof(*builtin_formats)*ARRAY_SIZE(builtin_formats));
  98
  99        git_config(git_pretty_formats_config, NULL);
 100}
 101
 102static struct cmt_fmt_map *find_commit_format_recursive(const char *sought,
 103                                                        const char *original,
 104                                                        int num_redirections)
 105{
 106        struct cmt_fmt_map *found = NULL;
 107        size_t found_match_len = 0;
 108        int i;
 109
 110        if (num_redirections >= commit_formats_len)
 111                die("invalid --pretty format: "
 112                    "'%s' references an alias which points to itself",
 113                    original);
 114
 115        for (i = 0; i < commit_formats_len; i++) {
 116                size_t match_len;
 117
 118                if (prefixcmp(commit_formats[i].name, sought))
 119                        continue;
 120
 121                match_len = strlen(commit_formats[i].name);
 122                if (found == NULL || found_match_len > match_len) {
 123                        found = &commit_formats[i];
 124                        found_match_len = match_len;
 125                }
 126        }
 127
 128        if (found && found->is_alias) {
 129                found = find_commit_format_recursive(found->user_format,
 130                                                     original,
 131                                                     num_redirections+1);
 132        }
 133
 134        return found;
 135}
 136
 137static struct cmt_fmt_map *find_commit_format(const char *sought)
 138{
 139        if (!commit_formats)
 140                setup_commit_formats();
 141
 142        return find_commit_format_recursive(sought, sought, 0);
 143}
 144
 145void get_commit_format(const char *arg, struct rev_info *rev)
 146{
 147        struct cmt_fmt_map *commit_format;
 148
 149        rev->use_terminator = 0;
 150        if (!arg || !*arg) {
 151                rev->commit_format = CMIT_FMT_DEFAULT;
 152                return;
 153        }
 154        if (!prefixcmp(arg, "format:") || !prefixcmp(arg, "tformat:")) {
 155                save_user_format(rev, strchr(arg, ':') + 1, arg[0] == 't');
 156                return;
 157        }
 158
 159        if (strchr(arg, '%')) {
 160                save_user_format(rev, arg, 1);
 161                return;
 162        }
 163
 164        commit_format = find_commit_format(arg);
 165        if (!commit_format)
 166                die("invalid --pretty format: %s", arg);
 167
 168        rev->commit_format = commit_format->format;
 169        rev->use_terminator = commit_format->is_tformat;
 170        if (commit_format->format == CMIT_FMT_USERFORMAT) {
 171                save_user_format(rev, commit_format->user_format,
 172                                 commit_format->is_tformat);
 173        }
 174}
 175
 176/*
 177 * Generic support for pretty-printing the header
 178 */
 179static int get_one_line(const char *msg)
 180{
 181        int ret = 0;
 182
 183        for (;;) {
 184                char c = *msg++;
 185                if (!c)
 186                        break;
 187                ret++;
 188                if (c == '\n')
 189                        break;
 190        }
 191        return ret;
 192}
 193
 194/* High bit set, or ISO-2022-INT */
 195static int non_ascii(int ch)
 196{
 197        return !isascii(ch) || ch == '\033';
 198}
 199
 200int has_non_ascii(const char *s)
 201{
 202        int ch;
 203        if (!s)
 204                return 0;
 205        while ((ch = *s++) != '\0') {
 206                if (non_ascii(ch))
 207                        return 1;
 208        }
 209        return 0;
 210}
 211
 212static int is_rfc822_special(char ch)
 213{
 214        switch (ch) {
 215        case '(':
 216        case ')':
 217        case '<':
 218        case '>':
 219        case '[':
 220        case ']':
 221        case ':':
 222        case ';':
 223        case '@':
 224        case ',':
 225        case '.':
 226        case '"':
 227        case '\\':
 228                return 1;
 229        default:
 230                return 0;
 231        }
 232}
 233
 234static int needs_rfc822_quoting(const char *s, int len)
 235{
 236        int i;
 237        for (i = 0; i < len; i++)
 238                if (is_rfc822_special(s[i]))
 239                        return 1;
 240        return 0;
 241}
 242
 243static int last_line_length(struct strbuf *sb)
 244{
 245        int i;
 246
 247        /* How many bytes are already used on the last line? */
 248        for (i = sb->len - 1; i >= 0; i--)
 249                if (sb->buf[i] == '\n')
 250                        break;
 251        return sb->len - (i + 1);
 252}
 253
 254static void add_rfc822_quoted(struct strbuf *out, const char *s, int len)
 255{
 256        int i;
 257
 258        /* just a guess, we may have to also backslash-quote */
 259        strbuf_grow(out, len + 2);
 260
 261        strbuf_addch(out, '"');
 262        for (i = 0; i < len; i++) {
 263                switch (s[i]) {
 264                case '"':
 265                case '\\':
 266                        strbuf_addch(out, '\\');
 267                        /* fall through */
 268                default:
 269                        strbuf_addch(out, s[i]);
 270                }
 271        }
 272        strbuf_addch(out, '"');
 273}
 274
 275enum rfc2047_type {
 276        RFC2047_SUBJECT,
 277        RFC2047_ADDRESS,
 278};
 279
 280static int is_rfc2047_special(char ch, enum rfc2047_type type)
 281{
 282        /*
 283         * rfc2047, section 4.2:
 284         *
 285         *    8-bit values which correspond to printable ASCII characters other
 286         *    than "=", "?", and "_" (underscore), MAY be represented as those
 287         *    characters.  (But see section 5 for restrictions.)  In
 288         *    particular, SPACE and TAB MUST NOT be represented as themselves
 289         *    within encoded words.
 290         */
 291
 292        /*
 293         * rule out non-ASCII characters and non-printable characters (the
 294         * non-ASCII check should be redundant as isprint() is not localized
 295         * and only knows about ASCII, but be defensive about that)
 296         */
 297        if (non_ascii(ch) || !isprint(ch))
 298                return 1;
 299
 300        /*
 301         * rule out special printable characters (' ' should be the only
 302         * whitespace character considered printable, but be defensive and use
 303         * isspace())
 304         */
 305        if (isspace(ch) || ch == '=' || ch == '?' || ch == '_')
 306                return 1;
 307
 308        /*
 309         * rfc2047, section 5.3:
 310         *
 311         *    As a replacement for a 'word' entity within a 'phrase', for example,
 312         *    one that precedes an address in a From, To, or Cc header.  The ABNF
 313         *    definition for 'phrase' from RFC 822 thus becomes:
 314         *
 315         *    phrase = 1*( encoded-word / word )
 316         *
 317         *    In this case the set of characters that may be used in a "Q"-encoded
 318         *    'encoded-word' is restricted to: <upper and lower case ASCII
 319         *    letters, decimal digits, "!", "*", "+", "-", "/", "=", and "_"
 320         *    (underscore, ASCII 95.)>.  An 'encoded-word' that appears within a
 321         *    'phrase' MUST be separated from any adjacent 'word', 'text' or
 322         *    'special' by 'linear-white-space'.
 323         */
 324
 325        if (type != RFC2047_ADDRESS)
 326                return 0;
 327
 328        /* '=' and '_' are special cases and have been checked above */
 329        return !(isalnum(ch) || ch == '!' || ch == '*' || ch == '+' || ch == '-' || ch == '/');
 330}
 331
 332static int needs_rfc2047_encoding(const char *line, int len,
 333                                  enum rfc2047_type type)
 334{
 335        int i;
 336
 337        for (i = 0; i < len; i++) {
 338                int ch = line[i];
 339                if (non_ascii(ch) || ch == '\n')
 340                        return 1;
 341                if ((i + 1 < len) && (ch == '=' && line[i+1] == '?'))
 342                        return 1;
 343        }
 344
 345        return 0;
 346}
 347
 348static void add_rfc2047(struct strbuf *sb, const char *line, int len,
 349                       const char *encoding, enum rfc2047_type type)
 350{
 351        static const int max_encoded_length = 76; /* per rfc2047 */
 352        int i;
 353        int line_len = last_line_length(sb);
 354
 355        strbuf_grow(sb, len * 3 + strlen(encoding) + 100);
 356        strbuf_addf(sb, "=?%s?q?", encoding);
 357        line_len += strlen(encoding) + 5; /* 5 for =??q? */
 358        for (i = 0; i < len; i++) {
 359                unsigned ch = line[i] & 0xFF;
 360                int is_special = is_rfc2047_special(ch, type);
 361
 362                /*
 363                 * According to RFC 2047, we could encode the special character
 364                 * ' ' (space) with '_' (underscore) for readability. But many
 365                 * programs do not understand this and just leave the
 366                 * underscore in place. Thus, we do nothing special here, which
 367                 * causes ' ' to be encoded as '=20', avoiding this problem.
 368                 */
 369
 370                if (line_len + 2 + (is_special ? 3 : 1) > max_encoded_length) {
 371                        strbuf_addf(sb, "?=\n =?%s?q?", encoding);
 372                        line_len = strlen(encoding) + 5 + 1; /* =??q? plus SP */
 373                }
 374
 375                if (is_special) {
 376                        strbuf_addf(sb, "=%02X", ch);
 377                        line_len += 3;
 378                } else {
 379                        strbuf_addch(sb, ch);
 380                        line_len++;
 381                }
 382        }
 383        strbuf_addstr(sb, "?=");
 384}
 385
 386void pp_user_info(const struct pretty_print_context *pp,
 387                  const char *what, struct strbuf *sb,
 388                  const char *line, const char *encoding)
 389{
 390        struct ident_split ident;
 391        int linelen, namelen;
 392        char *line_end, *date;
 393        int max_length = 78; /* per rfc2822 */
 394        unsigned long time;
 395        int tz;
 396
 397        if (pp->fmt == CMIT_FMT_ONELINE)
 398                return;
 399
 400        line_end = strchr(line, '\n');
 401        if (!line_end) {
 402                line_end = strchr(line, '\0');
 403                if (!line_end)
 404                        return;
 405        }
 406
 407        linelen = ++line_end - line;
 408        if (split_ident_line(&ident, line, linelen))
 409                return;
 410
 411        namelen = ident.mail_end - ident.name_begin + 1;
 412        time = strtoul(ident.date_begin, &date, 10);
 413        tz = strtol(date, NULL, 10);
 414
 415        if (pp->fmt == CMIT_FMT_EMAIL) {
 416                int display_name_length;
 417
 418                display_name_length = ident.name_end - ident.name_begin;
 419
 420                strbuf_addstr(sb, "From: ");
 421                if (needs_rfc2047_encoding(line, display_name_length, RFC2047_ADDRESS)) {
 422                        add_rfc2047(sb, line, display_name_length,
 423                                                encoding, RFC2047_ADDRESS);
 424                        max_length = 76; /* per rfc2047 */
 425                } else if (needs_rfc822_quoting(line, display_name_length)) {
 426                        struct strbuf quoted = STRBUF_INIT;
 427                        add_rfc822_quoted(&quoted, line, display_name_length);
 428                        strbuf_add_wrapped_bytes(sb, quoted.buf, quoted.len,
 429                                                        -6, 1, max_length);
 430                        strbuf_release(&quoted);
 431                } else {
 432                        strbuf_add_wrapped_bytes(sb, line, display_name_length,
 433                                                        -6, 1, max_length);
 434                }
 435                if (namelen - display_name_length + last_line_length(sb) > max_length) {
 436                        strbuf_addch(sb, '\n');
 437                        if (!isspace(ident.name_end[0]))
 438                                strbuf_addch(sb, ' ');
 439                }
 440                strbuf_add(sb, ident.name_end, namelen - display_name_length);
 441                strbuf_addch(sb, '\n');
 442        } else {
 443                strbuf_addf(sb, "%s: %.*s%.*s\n", what,
 444                              (pp->fmt == CMIT_FMT_FULLER) ? 4 : 0,
 445                              "    ", namelen, line);
 446        }
 447        switch (pp->fmt) {
 448        case CMIT_FMT_MEDIUM:
 449                strbuf_addf(sb, "Date:   %s\n", show_date(time, tz, pp->date_mode));
 450                break;
 451        case CMIT_FMT_EMAIL:
 452                strbuf_addf(sb, "Date: %s\n", show_date(time, tz, DATE_RFC2822));
 453                break;
 454        case CMIT_FMT_FULLER:
 455                strbuf_addf(sb, "%sDate: %s\n", what, show_date(time, tz, pp->date_mode));
 456                break;
 457        default:
 458                /* notin' */
 459                break;
 460        }
 461}
 462
 463static int is_empty_line(const char *line, int *len_p)
 464{
 465        int len = *len_p;
 466        while (len && isspace(line[len-1]))
 467                len--;
 468        *len_p = len;
 469        return !len;
 470}
 471
 472static const char *skip_empty_lines(const char *msg)
 473{
 474        for (;;) {
 475                int linelen = get_one_line(msg);
 476                int ll = linelen;
 477                if (!linelen)
 478                        break;
 479                if (!is_empty_line(msg, &ll))
 480                        break;
 481                msg += linelen;
 482        }
 483        return msg;
 484}
 485
 486static void add_merge_info(const struct pretty_print_context *pp,
 487                           struct strbuf *sb, const struct commit *commit)
 488{
 489        struct commit_list *parent = commit->parents;
 490
 491        if ((pp->fmt == CMIT_FMT_ONELINE) || (pp->fmt == CMIT_FMT_EMAIL) ||
 492            !parent || !parent->next)
 493                return;
 494
 495        strbuf_addstr(sb, "Merge:");
 496
 497        while (parent) {
 498                struct commit *p = parent->item;
 499                const char *hex = NULL;
 500                if (pp->abbrev)
 501                        hex = find_unique_abbrev(p->object.sha1, pp->abbrev);
 502                if (!hex)
 503                        hex = sha1_to_hex(p->object.sha1);
 504                parent = parent->next;
 505
 506                strbuf_addf(sb, " %s", hex);
 507        }
 508        strbuf_addch(sb, '\n');
 509}
 510
 511static char *get_header(const struct commit *commit, const char *key)
 512{
 513        int key_len = strlen(key);
 514        const char *line = commit->buffer;
 515
 516        while (line) {
 517                const char *eol = strchr(line, '\n'), *next;
 518
 519                if (line == eol)
 520                        return NULL;
 521                if (!eol) {
 522                        warning("malformed commit (header is missing newline): %s",
 523                                sha1_to_hex(commit->object.sha1));
 524                        eol = line + strlen(line);
 525                        next = NULL;
 526                } else
 527                        next = eol + 1;
 528                if (eol - line > key_len &&
 529                    !strncmp(line, key, key_len) &&
 530                    line[key_len] == ' ') {
 531                        return xmemdupz(line + key_len + 1, eol - line - key_len - 1);
 532                }
 533                line = next;
 534        }
 535        return NULL;
 536}
 537
 538static char *replace_encoding_header(char *buf, const char *encoding)
 539{
 540        struct strbuf tmp = STRBUF_INIT;
 541        size_t start, len;
 542        char *cp = buf;
 543
 544        /* guess if there is an encoding header before a \n\n */
 545        while (strncmp(cp, "encoding ", strlen("encoding "))) {
 546                cp = strchr(cp, '\n');
 547                if (!cp || *++cp == '\n')
 548                        return buf;
 549        }
 550        start = cp - buf;
 551        cp = strchr(cp, '\n');
 552        if (!cp)
 553                return buf; /* should not happen but be defensive */
 554        len = cp + 1 - (buf + start);
 555
 556        strbuf_attach(&tmp, buf, strlen(buf), strlen(buf) + 1);
 557        if (is_encoding_utf8(encoding)) {
 558                /* we have re-coded to UTF-8; drop the header */
 559                strbuf_remove(&tmp, start, len);
 560        } else {
 561                /* just replaces XXXX in 'encoding XXXX\n' */
 562                strbuf_splice(&tmp, start + strlen("encoding "),
 563                                          len - strlen("encoding \n"),
 564                                          encoding, strlen(encoding));
 565        }
 566        return strbuf_detach(&tmp, NULL);
 567}
 568
 569char *logmsg_reencode(const struct commit *commit,
 570                      const char *output_encoding)
 571{
 572        static const char *utf8 = "UTF-8";
 573        const char *use_encoding;
 574        char *encoding;
 575        char *out;
 576
 577        if (!*output_encoding)
 578                return NULL;
 579        encoding = get_header(commit, "encoding");
 580        use_encoding = encoding ? encoding : utf8;
 581        if (same_encoding(use_encoding, output_encoding))
 582                if (encoding) /* we'll strip encoding header later */
 583                        out = xstrdup(commit->buffer);
 584                else
 585                        return NULL; /* nothing to do */
 586        else
 587                out = reencode_string(commit->buffer,
 588                                      output_encoding, use_encoding);
 589        if (out)
 590                out = replace_encoding_header(out, output_encoding);
 591
 592        free(encoding);
 593        return out;
 594}
 595
 596static int mailmap_name(char *email, int email_len, char *name, int name_len)
 597{
 598        static struct string_list *mail_map;
 599        if (!mail_map) {
 600                mail_map = xcalloc(1, sizeof(*mail_map));
 601                read_mailmap(mail_map, NULL);
 602        }
 603        return mail_map->nr && map_user(mail_map, email, email_len, name, name_len);
 604}
 605
 606static size_t format_person_part(struct strbuf *sb, char part,
 607                                 const char *msg, int len, enum date_mode dmode)
 608{
 609        /* currently all placeholders have same length */
 610        const int placeholder_len = 2;
 611        int tz;
 612        unsigned long date = 0;
 613        char person_name[1024];
 614        char person_mail[1024];
 615        struct ident_split s;
 616        const char *name_start, *name_end, *mail_start, *mail_end;
 617
 618        if (split_ident_line(&s, msg, len) < 0)
 619                goto skip;
 620
 621        name_start = s.name_begin;
 622        name_end = s.name_end;
 623        mail_start = s.mail_begin;
 624        mail_end = s.mail_end;
 625
 626        if (part == 'N' || part == 'E') { /* mailmap lookup */
 627                snprintf(person_name, sizeof(person_name), "%.*s",
 628                         (int)(name_end - name_start), name_start);
 629                snprintf(person_mail, sizeof(person_mail), "%.*s",
 630                         (int)(mail_end - mail_start), mail_start);
 631                mailmap_name(person_mail, sizeof(person_mail), person_name, sizeof(person_name));
 632                name_start = person_name;
 633                name_end = name_start + strlen(person_name);
 634                mail_start = person_mail;
 635                mail_end = mail_start +  strlen(person_mail);
 636        }
 637        if (part == 'n' || part == 'N') {       /* name */
 638                strbuf_add(sb, name_start, name_end-name_start);
 639                return placeholder_len;
 640        }
 641        if (part == 'e' || part == 'E') {       /* email */
 642                strbuf_add(sb, mail_start, mail_end-mail_start);
 643                return placeholder_len;
 644        }
 645
 646        if (!s.date_begin)
 647                goto skip;
 648
 649        date = strtoul(s.date_begin, NULL, 10);
 650
 651        if (part == 't') {      /* date, UNIX timestamp */
 652                strbuf_add(sb, s.date_begin, s.date_end - s.date_begin);
 653                return placeholder_len;
 654        }
 655
 656        /* parse tz */
 657        tz = strtoul(s.tz_begin + 1, NULL, 10);
 658        if (*s.tz_begin == '-')
 659                tz = -tz;
 660
 661        switch (part) {
 662        case 'd':       /* date */
 663                strbuf_addstr(sb, show_date(date, tz, dmode));
 664                return placeholder_len;
 665        case 'D':       /* date, RFC2822 style */
 666                strbuf_addstr(sb, show_date(date, tz, DATE_RFC2822));
 667                return placeholder_len;
 668        case 'r':       /* date, relative */
 669                strbuf_addstr(sb, show_date(date, tz, DATE_RELATIVE));
 670                return placeholder_len;
 671        case 'i':       /* date, ISO 8601 */
 672                strbuf_addstr(sb, show_date(date, tz, DATE_ISO8601));
 673                return placeholder_len;
 674        }
 675
 676skip:
 677        /*
 678         * reading from either a bogus commit, or a reflog entry with
 679         * %gn, %ge, etc.; 'sb' cannot be updated, but we still need
 680         * to compute a valid return value.
 681         */
 682        if (part == 'n' || part == 'e' || part == 't' || part == 'd'
 683            || part == 'D' || part == 'r' || part == 'i')
 684                return placeholder_len;
 685
 686        return 0; /* unknown placeholder */
 687}
 688
 689struct chunk {
 690        size_t off;
 691        size_t len;
 692};
 693
 694struct format_commit_context {
 695        const struct commit *commit;
 696        const struct pretty_print_context *pretty_ctx;
 697        unsigned commit_header_parsed:1;
 698        unsigned commit_message_parsed:1;
 699        unsigned commit_signature_parsed:1;
 700        struct {
 701                char *gpg_output;
 702                char good_bad;
 703                char *signer;
 704        } signature;
 705        char *message;
 706        size_t width, indent1, indent2;
 707
 708        /* These offsets are relative to the start of the commit message. */
 709        struct chunk author;
 710        struct chunk committer;
 711        struct chunk encoding;
 712        size_t message_off;
 713        size_t subject_off;
 714        size_t body_off;
 715
 716        /* The following ones are relative to the result struct strbuf. */
 717        struct chunk abbrev_commit_hash;
 718        struct chunk abbrev_tree_hash;
 719        struct chunk abbrev_parent_hashes;
 720        size_t wrap_start;
 721};
 722
 723static int add_again(struct strbuf *sb, struct chunk *chunk)
 724{
 725        if (chunk->len) {
 726                strbuf_adddup(sb, chunk->off, chunk->len);
 727                return 1;
 728        }
 729
 730        /*
 731         * We haven't seen this chunk before.  Our caller is surely
 732         * going to add it the hard way now.  Remember the most likely
 733         * start of the to-be-added chunk: the current end of the
 734         * struct strbuf.
 735         */
 736        chunk->off = sb->len;
 737        return 0;
 738}
 739
 740static void parse_commit_header(struct format_commit_context *context)
 741{
 742        const char *msg = context->message;
 743        int i;
 744
 745        for (i = 0; msg[i]; i++) {
 746                int eol;
 747                for (eol = i; msg[eol] && msg[eol] != '\n'; eol++)
 748                        ; /* do nothing */
 749
 750                if (i == eol) {
 751                        break;
 752                } else if (!prefixcmp(msg + i, "author ")) {
 753                        context->author.off = i + 7;
 754                        context->author.len = eol - i - 7;
 755                } else if (!prefixcmp(msg + i, "committer ")) {
 756                        context->committer.off = i + 10;
 757                        context->committer.len = eol - i - 10;
 758                } else if (!prefixcmp(msg + i, "encoding ")) {
 759                        context->encoding.off = i + 9;
 760                        context->encoding.len = eol - i - 9;
 761                }
 762                i = eol;
 763        }
 764        context->message_off = i;
 765        context->commit_header_parsed = 1;
 766}
 767
 768static int istitlechar(char c)
 769{
 770        return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
 771                (c >= '0' && c <= '9') || c == '.' || c == '_';
 772}
 773
 774static void format_sanitized_subject(struct strbuf *sb, const char *msg)
 775{
 776        size_t trimlen;
 777        size_t start_len = sb->len;
 778        int space = 2;
 779
 780        for (; *msg && *msg != '\n'; msg++) {
 781                if (istitlechar(*msg)) {
 782                        if (space == 1)
 783                                strbuf_addch(sb, '-');
 784                        space = 0;
 785                        strbuf_addch(sb, *msg);
 786                        if (*msg == '.')
 787                                while (*(msg+1) == '.')
 788                                        msg++;
 789                } else
 790                        space |= 1;
 791        }
 792
 793        /* trim any trailing '.' or '-' characters */
 794        trimlen = 0;
 795        while (sb->len - trimlen > start_len &&
 796                (sb->buf[sb->len - 1 - trimlen] == '.'
 797                || sb->buf[sb->len - 1 - trimlen] == '-'))
 798                trimlen++;
 799        strbuf_remove(sb, sb->len - trimlen, trimlen);
 800}
 801
 802const char *format_subject(struct strbuf *sb, const char *msg,
 803                           const char *line_separator)
 804{
 805        int first = 1;
 806
 807        for (;;) {
 808                const char *line = msg;
 809                int linelen = get_one_line(line);
 810
 811                msg += linelen;
 812                if (!linelen || is_empty_line(line, &linelen))
 813                        break;
 814
 815                if (!sb)
 816                        continue;
 817                strbuf_grow(sb, linelen + 2);
 818                if (!first)
 819                        strbuf_addstr(sb, line_separator);
 820                strbuf_add(sb, line, linelen);
 821                first = 0;
 822        }
 823        return msg;
 824}
 825
 826static void parse_commit_message(struct format_commit_context *c)
 827{
 828        const char *msg = c->message + c->message_off;
 829        const char *start = c->message;
 830
 831        msg = skip_empty_lines(msg);
 832        c->subject_off = msg - start;
 833
 834        msg = format_subject(NULL, msg, NULL);
 835        msg = skip_empty_lines(msg);
 836        c->body_off = msg - start;
 837
 838        c->commit_message_parsed = 1;
 839}
 840
 841static void format_decoration(struct strbuf *sb, const struct commit *commit)
 842{
 843        struct name_decoration *d;
 844        const char *prefix = " (";
 845
 846        load_ref_decorations(DECORATE_SHORT_REFS);
 847        d = lookup_decoration(&name_decoration, &commit->object);
 848        while (d) {
 849                strbuf_addstr(sb, prefix);
 850                prefix = ", ";
 851                strbuf_addstr(sb, d->name);
 852                d = d->next;
 853        }
 854        if (prefix[0] == ',')
 855                strbuf_addch(sb, ')');
 856}
 857
 858static void strbuf_wrap(struct strbuf *sb, size_t pos,
 859                        size_t width, size_t indent1, size_t indent2)
 860{
 861        struct strbuf tmp = STRBUF_INIT;
 862
 863        if (pos)
 864                strbuf_add(&tmp, sb->buf, pos);
 865        strbuf_add_wrapped_text(&tmp, sb->buf + pos,
 866                                (int) indent1, (int) indent2, (int) width);
 867        strbuf_swap(&tmp, sb);
 868        strbuf_release(&tmp);
 869}
 870
 871static void rewrap_message_tail(struct strbuf *sb,
 872                                struct format_commit_context *c,
 873                                size_t new_width, size_t new_indent1,
 874                                size_t new_indent2)
 875{
 876        if (c->width == new_width && c->indent1 == new_indent1 &&
 877            c->indent2 == new_indent2)
 878                return;
 879        if (c->wrap_start < sb->len)
 880                strbuf_wrap(sb, c->wrap_start, c->width, c->indent1, c->indent2);
 881        c->wrap_start = sb->len;
 882        c->width = new_width;
 883        c->indent1 = new_indent1;
 884        c->indent2 = new_indent2;
 885}
 886
 887static struct {
 888        char result;
 889        const char *check;
 890} signature_check[] = {
 891        { 'G', ": Good signature from " },
 892        { 'B', ": BAD signature from " },
 893};
 894
 895static void parse_signature_lines(struct format_commit_context *ctx)
 896{
 897        const char *buf = ctx->signature.gpg_output;
 898        int i;
 899
 900        for (i = 0; i < ARRAY_SIZE(signature_check); i++) {
 901                const char *found = strstr(buf, signature_check[i].check);
 902                const char *next;
 903                if (!found)
 904                        continue;
 905                ctx->signature.good_bad = signature_check[i].result;
 906                found += strlen(signature_check[i].check);
 907                next = strchrnul(found, '\n');
 908                ctx->signature.signer = xmemdupz(found, next - found);
 909                break;
 910        }
 911}
 912
 913static void parse_commit_signature(struct format_commit_context *ctx)
 914{
 915        struct strbuf payload = STRBUF_INIT;
 916        struct strbuf signature = STRBUF_INIT;
 917        struct strbuf gpg_output = STRBUF_INIT;
 918        int status;
 919
 920        ctx->commit_signature_parsed = 1;
 921
 922        if (parse_signed_commit(ctx->commit->object.sha1,
 923                                &payload, &signature) <= 0)
 924                goto out;
 925        status = verify_signed_buffer(payload.buf, payload.len,
 926                                      signature.buf, signature.len,
 927                                      &gpg_output);
 928        if (status && !gpg_output.len)
 929                goto out;
 930        ctx->signature.gpg_output = strbuf_detach(&gpg_output, NULL);
 931        parse_signature_lines(ctx);
 932
 933 out:
 934        strbuf_release(&gpg_output);
 935        strbuf_release(&payload);
 936        strbuf_release(&signature);
 937}
 938
 939
 940static int format_reflog_person(struct strbuf *sb,
 941                                char part,
 942                                struct reflog_walk_info *log,
 943                                enum date_mode dmode)
 944{
 945        const char *ident;
 946
 947        if (!log)
 948                return 2;
 949
 950        ident = get_reflog_ident(log);
 951        if (!ident)
 952                return 2;
 953
 954        return format_person_part(sb, part, ident, strlen(ident), dmode);
 955}
 956
 957static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
 958                                void *context)
 959{
 960        struct format_commit_context *c = context;
 961        const struct commit *commit = c->commit;
 962        const char *msg = c->message;
 963        struct commit_list *p;
 964        int h1, h2;
 965
 966        /* these are independent of the commit */
 967        switch (placeholder[0]) {
 968        case 'C':
 969                if (placeholder[1] == '(') {
 970                        const char *end = strchr(placeholder + 2, ')');
 971                        char color[COLOR_MAXLEN];
 972                        if (!end)
 973                                return 0;
 974                        color_parse_mem(placeholder + 2,
 975                                        end - (placeholder + 2),
 976                                        "--pretty format", color);
 977                        strbuf_addstr(sb, color);
 978                        return end - placeholder + 1;
 979                }
 980                if (!prefixcmp(placeholder + 1, "red")) {
 981                        strbuf_addstr(sb, GIT_COLOR_RED);
 982                        return 4;
 983                } else if (!prefixcmp(placeholder + 1, "green")) {
 984                        strbuf_addstr(sb, GIT_COLOR_GREEN);
 985                        return 6;
 986                } else if (!prefixcmp(placeholder + 1, "blue")) {
 987                        strbuf_addstr(sb, GIT_COLOR_BLUE);
 988                        return 5;
 989                } else if (!prefixcmp(placeholder + 1, "reset")) {
 990                        strbuf_addstr(sb, GIT_COLOR_RESET);
 991                        return 6;
 992                } else
 993                        return 0;
 994        case 'n':               /* newline */
 995                strbuf_addch(sb, '\n');
 996                return 1;
 997        case 'x':
 998                /* %x00 == NUL, %x0a == LF, etc. */
 999                if (0 <= (h1 = hexval_table[0xff & placeholder[1]]) &&
1000                    h1 <= 16 &&
1001                    0 <= (h2 = hexval_table[0xff & placeholder[2]]) &&
1002                    h2 <= 16) {
1003                        strbuf_addch(sb, (h1<<4)|h2);
1004                        return 3;
1005                } else
1006                        return 0;
1007        case 'w':
1008                if (placeholder[1] == '(') {
1009                        unsigned long width = 0, indent1 = 0, indent2 = 0;
1010                        char *next;
1011                        const char *start = placeholder + 2;
1012                        const char *end = strchr(start, ')');
1013                        if (!end)
1014                                return 0;
1015                        if (end > start) {
1016                                width = strtoul(start, &next, 10);
1017                                if (*next == ',') {
1018                                        indent1 = strtoul(next + 1, &next, 10);
1019                                        if (*next == ',') {
1020                                                indent2 = strtoul(next + 1,
1021                                                                 &next, 10);
1022                                        }
1023                                }
1024                                if (*next != ')')
1025                                        return 0;
1026                        }
1027                        rewrap_message_tail(sb, c, width, indent1, indent2);
1028                        return end - placeholder + 1;
1029                } else
1030                        return 0;
1031        }
1032
1033        /* these depend on the commit */
1034        if (!commit->object.parsed)
1035                parse_object(commit->object.sha1);
1036
1037        switch (placeholder[0]) {
1038        case 'H':               /* commit hash */
1039                strbuf_addstr(sb, sha1_to_hex(commit->object.sha1));
1040                return 1;
1041        case 'h':               /* abbreviated commit hash */
1042                if (add_again(sb, &c->abbrev_commit_hash))
1043                        return 1;
1044                strbuf_addstr(sb, find_unique_abbrev(commit->object.sha1,
1045                                                     c->pretty_ctx->abbrev));
1046                c->abbrev_commit_hash.len = sb->len - c->abbrev_commit_hash.off;
1047                return 1;
1048        case 'T':               /* tree hash */
1049                strbuf_addstr(sb, sha1_to_hex(commit->tree->object.sha1));
1050                return 1;
1051        case 't':               /* abbreviated tree hash */
1052                if (add_again(sb, &c->abbrev_tree_hash))
1053                        return 1;
1054                strbuf_addstr(sb, find_unique_abbrev(commit->tree->object.sha1,
1055                                                     c->pretty_ctx->abbrev));
1056                c->abbrev_tree_hash.len = sb->len - c->abbrev_tree_hash.off;
1057                return 1;
1058        case 'P':               /* parent hashes */
1059                for (p = commit->parents; p; p = p->next) {
1060                        if (p != commit->parents)
1061                                strbuf_addch(sb, ' ');
1062                        strbuf_addstr(sb, sha1_to_hex(p->item->object.sha1));
1063                }
1064                return 1;
1065        case 'p':               /* abbreviated parent hashes */
1066                if (add_again(sb, &c->abbrev_parent_hashes))
1067                        return 1;
1068                for (p = commit->parents; p; p = p->next) {
1069                        if (p != commit->parents)
1070                                strbuf_addch(sb, ' ');
1071                        strbuf_addstr(sb, find_unique_abbrev(
1072                                        p->item->object.sha1,
1073                                        c->pretty_ctx->abbrev));
1074                }
1075                c->abbrev_parent_hashes.len = sb->len -
1076                                              c->abbrev_parent_hashes.off;
1077                return 1;
1078        case 'm':               /* left/right/bottom */
1079                strbuf_addstr(sb, get_revision_mark(NULL, commit));
1080                return 1;
1081        case 'd':
1082                format_decoration(sb, commit);
1083                return 1;
1084        case 'g':               /* reflog info */
1085                switch(placeholder[1]) {
1086                case 'd':       /* reflog selector */
1087                case 'D':
1088                        if (c->pretty_ctx->reflog_info)
1089                                get_reflog_selector(sb,
1090                                                    c->pretty_ctx->reflog_info,
1091                                                    c->pretty_ctx->date_mode,
1092                                                    c->pretty_ctx->date_mode_explicit,
1093                                                    (placeholder[1] == 'd'));
1094                        return 2;
1095                case 's':       /* reflog message */
1096                        if (c->pretty_ctx->reflog_info)
1097                                get_reflog_message(sb, c->pretty_ctx->reflog_info);
1098                        return 2;
1099                case 'n':
1100                case 'N':
1101                case 'e':
1102                case 'E':
1103                        return format_reflog_person(sb,
1104                                                    placeholder[1],
1105                                                    c->pretty_ctx->reflog_info,
1106                                                    c->pretty_ctx->date_mode);
1107                }
1108                return 0;       /* unknown %g placeholder */
1109        case 'N':
1110                if (c->pretty_ctx->notes_message) {
1111                        strbuf_addstr(sb, c->pretty_ctx->notes_message);
1112                        return 1;
1113                }
1114                return 0;
1115        }
1116
1117        if (placeholder[0] == 'G') {
1118                if (!c->commit_signature_parsed)
1119                        parse_commit_signature(c);
1120                switch (placeholder[1]) {
1121                case 'G':
1122                        if (c->signature.gpg_output)
1123                                strbuf_addstr(sb, c->signature.gpg_output);
1124                        break;
1125                case '?':
1126                        switch (c->signature.good_bad) {
1127                        case 'G':
1128                        case 'B':
1129                                strbuf_addch(sb, c->signature.good_bad);
1130                        }
1131                        break;
1132                case 'S':
1133                        if (c->signature.signer)
1134                                strbuf_addstr(sb, c->signature.signer);
1135                        break;
1136                }
1137                return 2;
1138        }
1139
1140
1141        /* For the rest we have to parse the commit header. */
1142        if (!c->commit_header_parsed)
1143                parse_commit_header(c);
1144
1145        switch (placeholder[0]) {
1146        case 'a':       /* author ... */
1147                return format_person_part(sb, placeholder[1],
1148                                   msg + c->author.off, c->author.len,
1149                                   c->pretty_ctx->date_mode);
1150        case 'c':       /* committer ... */
1151                return format_person_part(sb, placeholder[1],
1152                                   msg + c->committer.off, c->committer.len,
1153                                   c->pretty_ctx->date_mode);
1154        case 'e':       /* encoding */
1155                strbuf_add(sb, msg + c->encoding.off, c->encoding.len);
1156                return 1;
1157        case 'B':       /* raw body */
1158                /* message_off is always left at the initial newline */
1159                strbuf_addstr(sb, msg + c->message_off + 1);
1160                return 1;
1161        }
1162
1163        /* Now we need to parse the commit message. */
1164        if (!c->commit_message_parsed)
1165                parse_commit_message(c);
1166
1167        switch (placeholder[0]) {
1168        case 's':       /* subject */
1169                format_subject(sb, msg + c->subject_off, " ");
1170                return 1;
1171        case 'f':       /* sanitized subject */
1172                format_sanitized_subject(sb, msg + c->subject_off);
1173                return 1;
1174        case 'b':       /* body */
1175                strbuf_addstr(sb, msg + c->body_off);
1176                return 1;
1177        }
1178        return 0;       /* unknown placeholder */
1179}
1180
1181static size_t format_commit_item(struct strbuf *sb, const char *placeholder,
1182                                 void *context)
1183{
1184        int consumed;
1185        size_t orig_len;
1186        enum {
1187                NO_MAGIC,
1188                ADD_LF_BEFORE_NON_EMPTY,
1189                DEL_LF_BEFORE_EMPTY,
1190                ADD_SP_BEFORE_NON_EMPTY
1191        } magic = NO_MAGIC;
1192
1193        switch (placeholder[0]) {
1194        case '-':
1195                magic = DEL_LF_BEFORE_EMPTY;
1196                break;
1197        case '+':
1198                magic = ADD_LF_BEFORE_NON_EMPTY;
1199                break;
1200        case ' ':
1201                magic = ADD_SP_BEFORE_NON_EMPTY;
1202                break;
1203        default:
1204                break;
1205        }
1206        if (magic != NO_MAGIC)
1207                placeholder++;
1208
1209        orig_len = sb->len;
1210        consumed = format_commit_one(sb, placeholder, context);
1211        if (magic == NO_MAGIC)
1212                return consumed;
1213
1214        if ((orig_len == sb->len) && magic == DEL_LF_BEFORE_EMPTY) {
1215                while (sb->len && sb->buf[sb->len - 1] == '\n')
1216                        strbuf_setlen(sb, sb->len - 1);
1217        } else if (orig_len != sb->len) {
1218                if (magic == ADD_LF_BEFORE_NON_EMPTY)
1219                        strbuf_insert(sb, orig_len, "\n", 1);
1220                else if (magic == ADD_SP_BEFORE_NON_EMPTY)
1221                        strbuf_insert(sb, orig_len, " ", 1);
1222        }
1223        return consumed + 1;
1224}
1225
1226static size_t userformat_want_item(struct strbuf *sb, const char *placeholder,
1227                                   void *context)
1228{
1229        struct userformat_want *w = context;
1230
1231        if (*placeholder == '+' || *placeholder == '-' || *placeholder == ' ')
1232                placeholder++;
1233
1234        switch (*placeholder) {
1235        case 'N':
1236                w->notes = 1;
1237                break;
1238        }
1239        return 0;
1240}
1241
1242void userformat_find_requirements(const char *fmt, struct userformat_want *w)
1243{
1244        struct strbuf dummy = STRBUF_INIT;
1245
1246        if (!fmt) {
1247                if (!user_format)
1248                        return;
1249                fmt = user_format;
1250        }
1251        strbuf_expand(&dummy, fmt, userformat_want_item, w);
1252        strbuf_release(&dummy);
1253}
1254
1255void format_commit_message(const struct commit *commit,
1256                           const char *format, struct strbuf *sb,
1257                           const struct pretty_print_context *pretty_ctx)
1258{
1259        struct format_commit_context context;
1260        static const char utf8[] = "UTF-8";
1261        const char *output_enc = pretty_ctx->output_encoding;
1262
1263        memset(&context, 0, sizeof(context));
1264        context.commit = commit;
1265        context.pretty_ctx = pretty_ctx;
1266        context.wrap_start = sb->len;
1267        context.message = commit->buffer;
1268        if (output_enc) {
1269                char *enc = get_header(commit, "encoding");
1270                if (strcmp(enc ? enc : utf8, output_enc)) {
1271                        context.message = logmsg_reencode(commit, output_enc);
1272                        if (!context.message)
1273                                context.message = commit->buffer;
1274                }
1275                free(enc);
1276        }
1277
1278        strbuf_expand(sb, format, format_commit_item, &context);
1279        rewrap_message_tail(sb, &context, 0, 0, 0);
1280
1281        if (context.message != commit->buffer)
1282                free(context.message);
1283        free(context.signature.gpg_output);
1284        free(context.signature.signer);
1285}
1286
1287static void pp_header(const struct pretty_print_context *pp,
1288                      const char *encoding,
1289                      const struct commit *commit,
1290                      const char **msg_p,
1291                      struct strbuf *sb)
1292{
1293        int parents_shown = 0;
1294
1295        for (;;) {
1296                const char *line = *msg_p;
1297                int linelen = get_one_line(*msg_p);
1298
1299                if (!linelen)
1300                        return;
1301                *msg_p += linelen;
1302
1303                if (linelen == 1)
1304                        /* End of header */
1305                        return;
1306
1307                if (pp->fmt == CMIT_FMT_RAW) {
1308                        strbuf_add(sb, line, linelen);
1309                        continue;
1310                }
1311
1312                if (!memcmp(line, "parent ", 7)) {
1313                        if (linelen != 48)
1314                                die("bad parent line in commit");
1315                        continue;
1316                }
1317
1318                if (!parents_shown) {
1319                        struct commit_list *parent;
1320                        int num;
1321                        for (parent = commit->parents, num = 0;
1322                             parent;
1323                             parent = parent->next, num++)
1324                                ;
1325                        /* with enough slop */
1326                        strbuf_grow(sb, num * 50 + 20);
1327                        add_merge_info(pp, sb, commit);
1328                        parents_shown = 1;
1329                }
1330
1331                /*
1332                 * MEDIUM == DEFAULT shows only author with dates.
1333                 * FULL shows both authors but not dates.
1334                 * FULLER shows both authors and dates.
1335                 */
1336                if (!memcmp(line, "author ", 7)) {
1337                        strbuf_grow(sb, linelen + 80);
1338                        pp_user_info(pp, "Author", sb, line + 7, encoding);
1339                }
1340                if (!memcmp(line, "committer ", 10) &&
1341                    (pp->fmt == CMIT_FMT_FULL || pp->fmt == CMIT_FMT_FULLER)) {
1342                        strbuf_grow(sb, linelen + 80);
1343                        pp_user_info(pp, "Commit", sb, line + 10, encoding);
1344                }
1345        }
1346}
1347
1348void pp_title_line(const struct pretty_print_context *pp,
1349                   const char **msg_p,
1350                   struct strbuf *sb,
1351                   const char *encoding,
1352                   int need_8bit_cte)
1353{
1354        static const int max_length = 78; /* per rfc2047 */
1355        struct strbuf title;
1356
1357        strbuf_init(&title, 80);
1358        *msg_p = format_subject(&title, *msg_p,
1359                                pp->preserve_subject ? "\n" : " ");
1360
1361        strbuf_grow(sb, title.len + 1024);
1362        if (pp->subject) {
1363                strbuf_addstr(sb, pp->subject);
1364                if (needs_rfc2047_encoding(title.buf, title.len, RFC2047_SUBJECT))
1365                        add_rfc2047(sb, title.buf, title.len,
1366                                                encoding, RFC2047_SUBJECT);
1367                else
1368                        strbuf_add_wrapped_bytes(sb, title.buf, title.len,
1369                                         -last_line_length(sb), 1, max_length);
1370        } else {
1371                strbuf_addbuf(sb, &title);
1372        }
1373        strbuf_addch(sb, '\n');
1374
1375        if (need_8bit_cte > 0) {
1376                const char *header_fmt =
1377                        "MIME-Version: 1.0\n"
1378                        "Content-Type: text/plain; charset=%s\n"
1379                        "Content-Transfer-Encoding: 8bit\n";
1380                strbuf_addf(sb, header_fmt, encoding);
1381        }
1382        if (pp->after_subject) {
1383                strbuf_addstr(sb, pp->after_subject);
1384        }
1385        if (pp->fmt == CMIT_FMT_EMAIL) {
1386                strbuf_addch(sb, '\n');
1387        }
1388        strbuf_release(&title);
1389}
1390
1391void pp_remainder(const struct pretty_print_context *pp,
1392                  const char **msg_p,
1393                  struct strbuf *sb,
1394                  int indent)
1395{
1396        int first = 1;
1397        for (;;) {
1398                const char *line = *msg_p;
1399                int linelen = get_one_line(line);
1400                *msg_p += linelen;
1401
1402                if (!linelen)
1403                        break;
1404
1405                if (is_empty_line(line, &linelen)) {
1406                        if (first)
1407                                continue;
1408                        if (pp->fmt == CMIT_FMT_SHORT)
1409                                break;
1410                }
1411                first = 0;
1412
1413                strbuf_grow(sb, linelen + indent + 20);
1414                if (indent) {
1415                        memset(sb->buf + sb->len, ' ', indent);
1416                        strbuf_setlen(sb, sb->len + indent);
1417                }
1418                strbuf_add(sb, line, linelen);
1419                strbuf_addch(sb, '\n');
1420        }
1421}
1422
1423void pretty_print_commit(const struct pretty_print_context *pp,
1424                         const struct commit *commit,
1425                         struct strbuf *sb)
1426{
1427        unsigned long beginning_of_body;
1428        int indent = 4;
1429        const char *msg = commit->buffer;
1430        char *reencoded;
1431        const char *encoding;
1432        int need_8bit_cte = pp->need_8bit_cte;
1433
1434        if (pp->fmt == CMIT_FMT_USERFORMAT) {
1435                format_commit_message(commit, user_format, sb, pp);
1436                return;
1437        }
1438
1439        encoding = get_log_output_encoding();
1440        reencoded = logmsg_reencode(commit, encoding);
1441        if (reencoded) {
1442                msg = reencoded;
1443        }
1444
1445        if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1446                indent = 0;
1447
1448        /*
1449         * We need to check and emit Content-type: to mark it
1450         * as 8-bit if we haven't done so.
1451         */
1452        if (pp->fmt == CMIT_FMT_EMAIL && need_8bit_cte == 0) {
1453                int i, ch, in_body;
1454
1455                for (in_body = i = 0; (ch = msg[i]); i++) {
1456                        if (!in_body) {
1457                                /* author could be non 7-bit ASCII but
1458                                 * the log may be so; skip over the
1459                                 * header part first.
1460                                 */
1461                                if (ch == '\n' && msg[i+1] == '\n')
1462                                        in_body = 1;
1463                        }
1464                        else if (non_ascii(ch)) {
1465                                need_8bit_cte = 1;
1466                                break;
1467                        }
1468                }
1469        }
1470
1471        pp_header(pp, encoding, commit, &msg, sb);
1472        if (pp->fmt != CMIT_FMT_ONELINE && !pp->subject) {
1473                strbuf_addch(sb, '\n');
1474        }
1475
1476        /* Skip excess blank lines at the beginning of body, if any... */
1477        msg = skip_empty_lines(msg);
1478
1479        /* These formats treat the title line specially. */
1480        if (pp->fmt == CMIT_FMT_ONELINE || pp->fmt == CMIT_FMT_EMAIL)
1481                pp_title_line(pp, &msg, sb, encoding, need_8bit_cte);
1482
1483        beginning_of_body = sb->len;
1484        if (pp->fmt != CMIT_FMT_ONELINE)
1485                pp_remainder(pp, &msg, sb, indent);
1486        strbuf_rtrim(sb);
1487
1488        /* Make sure there is an EOLN for the non-oneline case */
1489        if (pp->fmt != CMIT_FMT_ONELINE)
1490                strbuf_addch(sb, '\n');
1491
1492        /*
1493         * The caller may append additional body text in e-mail
1494         * format.  Make sure we did not strip the blank line
1495         * between the header and the body.
1496         */
1497        if (pp->fmt == CMIT_FMT_EMAIL && sb->len <= beginning_of_body)
1498                strbuf_addch(sb, '\n');
1499
1500        free(reencoded);
1501}
1502
1503void pp_commit_easy(enum cmit_fmt fmt, const struct commit *commit,
1504                    struct strbuf *sb)
1505{
1506        struct pretty_print_context pp = {0};
1507        pp.fmt = fmt;
1508        pretty_print_commit(&pp, commit, sb);
1509}