builtin / log.con commit Merge branch 'br/svn-doc-include-paths-config' (49c15c0)
   1/*
   2 * Builtin "git log" and related commands (show, whatchanged)
   3 *
   4 * (C) Copyright 2006 Linus Torvalds
   5 *               2006 Junio Hamano
   6 */
   7#include "cache.h"
   8#include "refs.h"
   9#include "color.h"
  10#include "commit.h"
  11#include "diff.h"
  12#include "revision.h"
  13#include "log-tree.h"
  14#include "builtin.h"
  15#include "tag.h"
  16#include "reflog-walk.h"
  17#include "patch-ids.h"
  18#include "run-command.h"
  19#include "shortlog.h"
  20#include "remote.h"
  21#include "string-list.h"
  22#include "parse-options.h"
  23#include "line-log.h"
  24#include "branch.h"
  25#include "streaming.h"
  26#include "version.h"
  27#include "mailmap.h"
  28#include "gpg-interface.h"
  29
  30/* Set a default date-time format for git log ("log.date" config variable) */
  31static const char *default_date_mode = NULL;
  32
  33static int default_abbrev_commit;
  34static int default_show_root = 1;
  35static int default_follow;
  36static int decoration_style;
  37static int decoration_given;
  38static int use_mailmap_config;
  39static const char *fmt_patch_subject_prefix = "PATCH";
  40static const char *fmt_pretty;
  41
  42static const char * const builtin_log_usage[] = {
  43        N_("git log [<options>] [<revision-range>] [[--] <path>...]"),
  44        N_("git show [<options>] <object>..."),
  45        NULL
  46};
  47
  48struct line_opt_callback_data {
  49        struct rev_info *rev;
  50        const char *prefix;
  51        struct string_list args;
  52};
  53
  54static int parse_decoration_style(const char *var, const char *value)
  55{
  56        switch (git_config_maybe_bool(var, value)) {
  57        case 1:
  58                return DECORATE_SHORT_REFS;
  59        case 0:
  60                return 0;
  61        default:
  62                break;
  63        }
  64        if (!strcmp(value, "full"))
  65                return DECORATE_FULL_REFS;
  66        else if (!strcmp(value, "short"))
  67                return DECORATE_SHORT_REFS;
  68        else if (!strcmp(value, "auto"))
  69                return (isatty(1) || pager_in_use()) ? DECORATE_SHORT_REFS : 0;
  70        return -1;
  71}
  72
  73static int decorate_callback(const struct option *opt, const char *arg, int unset)
  74{
  75        if (unset)
  76                decoration_style = 0;
  77        else if (arg)
  78                decoration_style = parse_decoration_style("command line", arg);
  79        else
  80                decoration_style = DECORATE_SHORT_REFS;
  81
  82        if (decoration_style < 0)
  83                die(_("invalid --decorate option: %s"), arg);
  84
  85        decoration_given = 1;
  86
  87        return 0;
  88}
  89
  90static int log_line_range_callback(const struct option *option, const char *arg, int unset)
  91{
  92        struct line_opt_callback_data *data = option->value;
  93
  94        if (!arg)
  95                return -1;
  96
  97        data->rev->line_level_traverse = 1;
  98        string_list_append(&data->args, arg);
  99
 100        return 0;
 101}
 102
 103static void cmd_log_init_defaults(struct rev_info *rev)
 104{
 105        if (fmt_pretty)
 106                get_commit_format(fmt_pretty, rev);
 107        if (default_follow)
 108                DIFF_OPT_SET(&rev->diffopt, DEFAULT_FOLLOW_RENAMES);
 109        rev->verbose_header = 1;
 110        DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
 111        rev->diffopt.stat_width = -1; /* use full terminal width */
 112        rev->diffopt.stat_graph_width = -1; /* respect statGraphWidth config */
 113        rev->abbrev_commit = default_abbrev_commit;
 114        rev->show_root_diff = default_show_root;
 115        rev->subject_prefix = fmt_patch_subject_prefix;
 116        DIFF_OPT_SET(&rev->diffopt, ALLOW_TEXTCONV);
 117
 118        if (default_date_mode)
 119                parse_date_format(default_date_mode, &rev->date_mode);
 120        rev->diffopt.touched_flags = 0;
 121}
 122
 123static void cmd_log_init_finish(int argc, const char **argv, const char *prefix,
 124                         struct rev_info *rev, struct setup_revision_opt *opt)
 125{
 126        struct userformat_want w;
 127        int quiet = 0, source = 0, mailmap = 0;
 128        static struct line_opt_callback_data line_cb = {NULL, NULL, STRING_LIST_INIT_DUP};
 129
 130        const struct option builtin_log_options[] = {
 131                OPT__QUIET(&quiet, N_("suppress diff output")),
 132                OPT_BOOL(0, "source", &source, N_("show source")),
 133                OPT_BOOL(0, "use-mailmap", &mailmap, N_("Use mail map file")),
 134                { OPTION_CALLBACK, 0, "decorate", NULL, NULL, N_("decorate options"),
 135                  PARSE_OPT_OPTARG, decorate_callback},
 136                OPT_CALLBACK('L', NULL, &line_cb, "n,m:file",
 137                             N_("Process line range n,m in file, counting from 1"),
 138                             log_line_range_callback),
 139                OPT_END()
 140        };
 141
 142        line_cb.rev = rev;
 143        line_cb.prefix = prefix;
 144
 145        mailmap = use_mailmap_config;
 146        argc = parse_options(argc, argv, prefix,
 147                             builtin_log_options, builtin_log_usage,
 148                             PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
 149                             PARSE_OPT_KEEP_DASHDASH);
 150
 151        if (quiet)
 152                rev->diffopt.output_format |= DIFF_FORMAT_NO_OUTPUT;
 153        argc = setup_revisions(argc, argv, rev, opt);
 154
 155        /* Any arguments at this point are not recognized */
 156        if (argc > 1)
 157                die(_("unrecognized argument: %s"), argv[1]);
 158
 159        memset(&w, 0, sizeof(w));
 160        userformat_find_requirements(NULL, &w);
 161
 162        if (!rev->show_notes_given && (!rev->pretty_given || w.notes))
 163                rev->show_notes = 1;
 164        if (rev->show_notes)
 165                init_display_notes(&rev->notes_opt);
 166
 167        if (rev->diffopt.pickaxe || rev->diffopt.filter ||
 168            DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES))
 169                rev->always_show_header = 0;
 170
 171        if (source)
 172                rev->show_source = 1;
 173
 174        if (mailmap) {
 175                rev->mailmap = xcalloc(1, sizeof(struct string_list));
 176                read_mailmap(rev->mailmap, NULL);
 177        }
 178
 179        if (rev->pretty_given && rev->commit_format == CMIT_FMT_RAW) {
 180                /*
 181                 * "log --pretty=raw" is special; ignore UI oriented
 182                 * configuration variables such as decoration.
 183                 */
 184                if (!decoration_given)
 185                        decoration_style = 0;
 186                if (!rev->abbrev_commit_given)
 187                        rev->abbrev_commit = 0;
 188        }
 189
 190        if (decoration_style) {
 191                rev->show_decorations = 1;
 192                load_ref_decorations(decoration_style);
 193        }
 194
 195        if (rev->line_level_traverse)
 196                line_log_init(rev, line_cb.prefix, &line_cb.args);
 197
 198        setup_pager();
 199}
 200
 201static void cmd_log_init(int argc, const char **argv, const char *prefix,
 202                         struct rev_info *rev, struct setup_revision_opt *opt)
 203{
 204        cmd_log_init_defaults(rev);
 205        cmd_log_init_finish(argc, argv, prefix, rev, opt);
 206}
 207
 208/*
 209 * This gives a rough estimate for how many commits we
 210 * will print out in the list.
 211 */
 212static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
 213{
 214        int n = 0;
 215
 216        while (list) {
 217                struct commit *commit = list->item;
 218                unsigned int flags = commit->object.flags;
 219                list = list->next;
 220                if (!(flags & (TREESAME | UNINTERESTING)))
 221                        n++;
 222        }
 223        return n;
 224}
 225
 226static void show_early_header(struct rev_info *rev, const char *stage, int nr)
 227{
 228        if (rev->shown_one) {
 229                rev->shown_one = 0;
 230                if (rev->commit_format != CMIT_FMT_ONELINE)
 231                        putchar(rev->diffopt.line_termination);
 232        }
 233        printf(_("Final output: %d %s\n"), nr, stage);
 234}
 235
 236static struct itimerval early_output_timer;
 237
 238static void log_show_early(struct rev_info *revs, struct commit_list *list)
 239{
 240        int i = revs->early_output;
 241        int show_header = 1;
 242
 243        sort_in_topological_order(&list, revs->sort_order);
 244        while (list && i) {
 245                struct commit *commit = list->item;
 246                switch (simplify_commit(revs, commit)) {
 247                case commit_show:
 248                        if (show_header) {
 249                                int n = estimate_commit_count(revs, list);
 250                                show_early_header(revs, "incomplete", n);
 251                                show_header = 0;
 252                        }
 253                        log_tree_commit(revs, commit);
 254                        i--;
 255                        break;
 256                case commit_ignore:
 257                        break;
 258                case commit_error:
 259                        return;
 260                }
 261                list = list->next;
 262        }
 263
 264        /* Did we already get enough commits for the early output? */
 265        if (!i)
 266                return;
 267
 268        /*
 269         * ..if no, then repeat it twice a second until we
 270         * do.
 271         *
 272         * NOTE! We don't use "it_interval", because if the
 273         * reader isn't listening, we want our output to be
 274         * throttled by the writing, and not have the timer
 275         * trigger every second even if we're blocked on a
 276         * reader!
 277         */
 278        early_output_timer.it_value.tv_sec = 0;
 279        early_output_timer.it_value.tv_usec = 500000;
 280        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 281}
 282
 283static void early_output(int signal)
 284{
 285        show_early_output = log_show_early;
 286}
 287
 288static void setup_early_output(struct rev_info *rev)
 289{
 290        struct sigaction sa;
 291
 292        /*
 293         * Set up the signal handler, minimally intrusively:
 294         * we only set a single volatile integer word (not
 295         * using sigatomic_t - trying to avoid unnecessary
 296         * system dependencies and headers), and using
 297         * SA_RESTART.
 298         */
 299        memset(&sa, 0, sizeof(sa));
 300        sa.sa_handler = early_output;
 301        sigemptyset(&sa.sa_mask);
 302        sa.sa_flags = SA_RESTART;
 303        sigaction(SIGALRM, &sa, NULL);
 304
 305        /*
 306         * If we can get the whole output in less than a
 307         * tenth of a second, don't even bother doing the
 308         * early-output thing..
 309         *
 310         * This is a one-time-only trigger.
 311         */
 312        early_output_timer.it_value.tv_sec = 0;
 313        early_output_timer.it_value.tv_usec = 100000;
 314        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 315}
 316
 317static void finish_early_output(struct rev_info *rev)
 318{
 319        int n = estimate_commit_count(rev, rev->commits);
 320        signal(SIGALRM, SIG_IGN);
 321        show_early_header(rev, "done", n);
 322}
 323
 324static int cmd_log_walk(struct rev_info *rev)
 325{
 326        struct commit *commit;
 327        int saved_nrl = 0;
 328        int saved_dcctc = 0;
 329
 330        if (rev->early_output)
 331                setup_early_output(rev);
 332
 333        if (prepare_revision_walk(rev))
 334                die(_("revision walk setup failed"));
 335
 336        if (rev->early_output)
 337                finish_early_output(rev);
 338
 339        /*
 340         * For --check and --exit-code, the exit code is based on CHECK_FAILED
 341         * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
 342         * retain that state information if replacing rev->diffopt in this loop
 343         */
 344        while ((commit = get_revision(rev)) != NULL) {
 345                if (!log_tree_commit(rev, commit) && rev->max_count >= 0)
 346                        /*
 347                         * We decremented max_count in get_revision,
 348                         * but we didn't actually show the commit.
 349                         */
 350                        rev->max_count++;
 351                if (!rev->reflog_info) {
 352                        /* we allow cycles in reflog ancestry */
 353                        free_commit_buffer(commit);
 354                }
 355                free_commit_list(commit->parents);
 356                commit->parents = NULL;
 357                if (saved_nrl < rev->diffopt.needed_rename_limit)
 358                        saved_nrl = rev->diffopt.needed_rename_limit;
 359                if (rev->diffopt.degraded_cc_to_c)
 360                        saved_dcctc = 1;
 361        }
 362        rev->diffopt.degraded_cc_to_c = saved_dcctc;
 363        rev->diffopt.needed_rename_limit = saved_nrl;
 364
 365        if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
 366            DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
 367                return 02;
 368        }
 369        return diff_result_code(&rev->diffopt, 0);
 370}
 371
 372static int git_log_config(const char *var, const char *value, void *cb)
 373{
 374        const char *slot_name;
 375
 376        if (!strcmp(var, "format.pretty"))
 377                return git_config_string(&fmt_pretty, var, value);
 378        if (!strcmp(var, "format.subjectprefix"))
 379                return git_config_string(&fmt_patch_subject_prefix, var, value);
 380        if (!strcmp(var, "log.abbrevcommit")) {
 381                default_abbrev_commit = git_config_bool(var, value);
 382                return 0;
 383        }
 384        if (!strcmp(var, "log.date"))
 385                return git_config_string(&default_date_mode, var, value);
 386        if (!strcmp(var, "log.decorate")) {
 387                decoration_style = parse_decoration_style(var, value);
 388                if (decoration_style < 0)
 389                        decoration_style = 0; /* maybe warn? */
 390                return 0;
 391        }
 392        if (!strcmp(var, "log.showroot")) {
 393                default_show_root = git_config_bool(var, value);
 394                return 0;
 395        }
 396        if (!strcmp(var, "log.follow")) {
 397                default_follow = git_config_bool(var, value);
 398                return 0;
 399        }
 400        if (skip_prefix(var, "color.decorate.", &slot_name))
 401                return parse_decorate_color_config(var, slot_name, value);
 402        if (!strcmp(var, "log.mailmap")) {
 403                use_mailmap_config = git_config_bool(var, value);
 404                return 0;
 405        }
 406
 407        if (grep_config(var, value, cb) < 0)
 408                return -1;
 409        if (git_gpg_config(var, value, cb) < 0)
 410                return -1;
 411        return git_diff_ui_config(var, value, cb);
 412}
 413
 414int cmd_whatchanged(int argc, const char **argv, const char *prefix)
 415{
 416        struct rev_info rev;
 417        struct setup_revision_opt opt;
 418
 419        init_grep_defaults();
 420        git_config(git_log_config, NULL);
 421
 422        init_revisions(&rev, prefix);
 423        rev.diff = 1;
 424        rev.simplify_history = 0;
 425        memset(&opt, 0, sizeof(opt));
 426        opt.def = "HEAD";
 427        opt.revarg_opt = REVARG_COMMITTISH;
 428        cmd_log_init(argc, argv, prefix, &rev, &opt);
 429        if (!rev.diffopt.output_format)
 430                rev.diffopt.output_format = DIFF_FORMAT_RAW;
 431        return cmd_log_walk(&rev);
 432}
 433
 434static void show_tagger(char *buf, int len, struct rev_info *rev)
 435{
 436        struct strbuf out = STRBUF_INIT;
 437        struct pretty_print_context pp = {0};
 438
 439        pp.fmt = rev->commit_format;
 440        pp.date_mode = rev->date_mode;
 441        pp_user_info(&pp, "Tagger", &out, buf, get_log_output_encoding());
 442        printf("%s", out.buf);
 443        strbuf_release(&out);
 444}
 445
 446static int show_blob_object(const unsigned char *sha1, struct rev_info *rev, const char *obj_name)
 447{
 448        unsigned char sha1c[20];
 449        struct object_context obj_context;
 450        char *buf;
 451        unsigned long size;
 452
 453        fflush(stdout);
 454        if (!DIFF_OPT_TOUCHED(&rev->diffopt, ALLOW_TEXTCONV) ||
 455            !DIFF_OPT_TST(&rev->diffopt, ALLOW_TEXTCONV))
 456                return stream_blob_to_fd(1, sha1, NULL, 0);
 457
 458        if (get_sha1_with_context(obj_name, 0, sha1c, &obj_context))
 459                die(_("Not a valid object name %s"), obj_name);
 460        if (!obj_context.path[0] ||
 461            !textconv_object(obj_context.path, obj_context.mode, sha1c, 1, &buf, &size))
 462                return stream_blob_to_fd(1, sha1, NULL, 0);
 463
 464        if (!buf)
 465                die(_("git show %s: bad file"), obj_name);
 466
 467        write_or_die(1, buf, size);
 468        return 0;
 469}
 470
 471static int show_tag_object(const unsigned char *sha1, struct rev_info *rev)
 472{
 473        unsigned long size;
 474        enum object_type type;
 475        char *buf = read_sha1_file(sha1, &type, &size);
 476        int offset = 0;
 477
 478        if (!buf)
 479                return error(_("Could not read object %s"), sha1_to_hex(sha1));
 480
 481        assert(type == OBJ_TAG);
 482        while (offset < size && buf[offset] != '\n') {
 483                int new_offset = offset + 1;
 484                while (new_offset < size && buf[new_offset++] != '\n')
 485                        ; /* do nothing */
 486                if (starts_with(buf + offset, "tagger "))
 487                        show_tagger(buf + offset + 7,
 488                                    new_offset - offset - 7, rev);
 489                offset = new_offset;
 490        }
 491
 492        if (offset < size)
 493                fwrite(buf + offset, size - offset, 1, stdout);
 494        free(buf);
 495        return 0;
 496}
 497
 498static int show_tree_object(const unsigned char *sha1,
 499                struct strbuf *base,
 500                const char *pathname, unsigned mode, int stage, void *context)
 501{
 502        printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
 503        return 0;
 504}
 505
 506static void show_setup_revisions_tweak(struct rev_info *rev,
 507                                       struct setup_revision_opt *opt)
 508{
 509        if (rev->ignore_merges) {
 510                /* There was no "-m" on the command line */
 511                rev->ignore_merges = 0;
 512                if (!rev->first_parent_only && !rev->combine_merges) {
 513                        /* No "--first-parent", "-c", or "--cc" */
 514                        rev->combine_merges = 1;
 515                        rev->dense_combined_merges = 1;
 516                }
 517        }
 518        if (!rev->diffopt.output_format)
 519                rev->diffopt.output_format = DIFF_FORMAT_PATCH;
 520}
 521
 522int cmd_show(int argc, const char **argv, const char *prefix)
 523{
 524        struct rev_info rev;
 525        struct object_array_entry *objects;
 526        struct setup_revision_opt opt;
 527        struct pathspec match_all;
 528        int i, count, ret = 0;
 529
 530        init_grep_defaults();
 531        git_config(git_log_config, NULL);
 532
 533        memset(&match_all, 0, sizeof(match_all));
 534        init_revisions(&rev, prefix);
 535        rev.diff = 1;
 536        rev.always_show_header = 1;
 537        rev.no_walk = REVISION_WALK_NO_WALK_SORTED;
 538        rev.diffopt.stat_width = -1;    /* Scale to real terminal size */
 539
 540        memset(&opt, 0, sizeof(opt));
 541        opt.def = "HEAD";
 542        opt.tweak = show_setup_revisions_tweak;
 543        cmd_log_init(argc, argv, prefix, &rev, &opt);
 544
 545        if (!rev.no_walk)
 546                return cmd_log_walk(&rev);
 547
 548        count = rev.pending.nr;
 549        objects = rev.pending.objects;
 550        for (i = 0; i < count && !ret; i++) {
 551                struct object *o = objects[i].item;
 552                const char *name = objects[i].name;
 553                switch (o->type) {
 554                case OBJ_BLOB:
 555                        ret = show_blob_object(o->sha1, &rev, name);
 556                        break;
 557                case OBJ_TAG: {
 558                        struct tag *t = (struct tag *)o;
 559
 560                        if (rev.shown_one)
 561                                putchar('\n');
 562                        printf("%stag %s%s\n",
 563                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 564                                        t->tag,
 565                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 566                        ret = show_tag_object(o->sha1, &rev);
 567                        rev.shown_one = 1;
 568                        if (ret)
 569                                break;
 570                        o = parse_object(t->tagged->sha1);
 571                        if (!o)
 572                                ret = error(_("Could not read object %s"),
 573                                            sha1_to_hex(t->tagged->sha1));
 574                        objects[i].item = o;
 575                        i--;
 576                        break;
 577                }
 578                case OBJ_TREE:
 579                        if (rev.shown_one)
 580                                putchar('\n');
 581                        printf("%stree %s%s\n\n",
 582                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 583                                        name,
 584                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 585                        read_tree_recursive((struct tree *)o, "", 0, 0, &match_all,
 586                                        show_tree_object, NULL);
 587                        rev.shown_one = 1;
 588                        break;
 589                case OBJ_COMMIT:
 590                        rev.pending.nr = rev.pending.alloc = 0;
 591                        rev.pending.objects = NULL;
 592                        add_object_array(o, name, &rev.pending);
 593                        ret = cmd_log_walk(&rev);
 594                        break;
 595                default:
 596                        ret = error(_("Unknown type: %d"), o->type);
 597                }
 598        }
 599        free(objects);
 600        return ret;
 601}
 602
 603/*
 604 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
 605 */
 606int cmd_log_reflog(int argc, const char **argv, const char *prefix)
 607{
 608        struct rev_info rev;
 609        struct setup_revision_opt opt;
 610
 611        init_grep_defaults();
 612        git_config(git_log_config, NULL);
 613
 614        init_revisions(&rev, prefix);
 615        init_reflog_walk(&rev.reflog_info);
 616        rev.verbose_header = 1;
 617        memset(&opt, 0, sizeof(opt));
 618        opt.def = "HEAD";
 619        cmd_log_init_defaults(&rev);
 620        rev.abbrev_commit = 1;
 621        rev.commit_format = CMIT_FMT_ONELINE;
 622        rev.use_terminator = 1;
 623        rev.always_show_header = 1;
 624        cmd_log_init_finish(argc, argv, prefix, &rev, &opt);
 625
 626        return cmd_log_walk(&rev);
 627}
 628
 629static void log_setup_revisions_tweak(struct rev_info *rev,
 630                                      struct setup_revision_opt *opt)
 631{
 632        if (DIFF_OPT_TST(&rev->diffopt, DEFAULT_FOLLOW_RENAMES) &&
 633            rev->prune_data.nr == 1)
 634                DIFF_OPT_SET(&rev->diffopt, FOLLOW_RENAMES);
 635
 636        /* Turn --cc/-c into -p --cc/-c when -p was not given */
 637        if (!rev->diffopt.output_format && rev->combine_merges)
 638                rev->diffopt.output_format = DIFF_FORMAT_PATCH;
 639
 640        /* Turn -m on when --cc/-c was given */
 641        if (rev->combine_merges)
 642                rev->ignore_merges = 0;
 643}
 644
 645int cmd_log(int argc, const char **argv, const char *prefix)
 646{
 647        struct rev_info rev;
 648        struct setup_revision_opt opt;
 649
 650        init_grep_defaults();
 651        git_config(git_log_config, NULL);
 652
 653        init_revisions(&rev, prefix);
 654        rev.always_show_header = 1;
 655        memset(&opt, 0, sizeof(opt));
 656        opt.def = "HEAD";
 657        opt.revarg_opt = REVARG_COMMITTISH;
 658        opt.tweak = log_setup_revisions_tweak;
 659        cmd_log_init(argc, argv, prefix, &rev, &opt);
 660        return cmd_log_walk(&rev);
 661}
 662
 663/* format-patch */
 664
 665static const char *fmt_patch_suffix = ".patch";
 666static int numbered = 0;
 667static int auto_number = 1;
 668
 669static char *default_attach = NULL;
 670
 671static struct string_list extra_hdr;
 672static struct string_list extra_to;
 673static struct string_list extra_cc;
 674
 675static void add_header(const char *value)
 676{
 677        struct string_list_item *item;
 678        int len = strlen(value);
 679        while (len && value[len - 1] == '\n')
 680                len--;
 681
 682        if (!strncasecmp(value, "to: ", 4)) {
 683                item = string_list_append(&extra_to, value + 4);
 684                len -= 4;
 685        } else if (!strncasecmp(value, "cc: ", 4)) {
 686                item = string_list_append(&extra_cc, value + 4);
 687                len -= 4;
 688        } else {
 689                item = string_list_append(&extra_hdr, value);
 690        }
 691
 692        item->string[len] = '\0';
 693}
 694
 695#define THREAD_SHALLOW 1
 696#define THREAD_DEEP 2
 697static int thread;
 698static int do_signoff;
 699static const char *signature = git_version_string;
 700static const char *signature_file;
 701static int config_cover_letter;
 702
 703enum {
 704        COVER_UNSET,
 705        COVER_OFF,
 706        COVER_ON,
 707        COVER_AUTO
 708};
 709
 710static int git_format_config(const char *var, const char *value, void *cb)
 711{
 712        if (!strcmp(var, "format.headers")) {
 713                if (!value)
 714                        die(_("format.headers without value"));
 715                add_header(value);
 716                return 0;
 717        }
 718        if (!strcmp(var, "format.suffix"))
 719                return git_config_string(&fmt_patch_suffix, var, value);
 720        if (!strcmp(var, "format.to")) {
 721                if (!value)
 722                        return config_error_nonbool(var);
 723                string_list_append(&extra_to, value);
 724                return 0;
 725        }
 726        if (!strcmp(var, "format.cc")) {
 727                if (!value)
 728                        return config_error_nonbool(var);
 729                string_list_append(&extra_cc, value);
 730                return 0;
 731        }
 732        if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
 733            !strcmp(var, "color.ui") || !strcmp(var, "diff.submodule")) {
 734                return 0;
 735        }
 736        if (!strcmp(var, "format.numbered")) {
 737                if (value && !strcasecmp(value, "auto")) {
 738                        auto_number = 1;
 739                        return 0;
 740                }
 741                numbered = git_config_bool(var, value);
 742                auto_number = auto_number && numbered;
 743                return 0;
 744        }
 745        if (!strcmp(var, "format.attach")) {
 746                if (value && *value)
 747                        default_attach = xstrdup(value);
 748                else
 749                        default_attach = xstrdup(git_version_string);
 750                return 0;
 751        }
 752        if (!strcmp(var, "format.thread")) {
 753                if (value && !strcasecmp(value, "deep")) {
 754                        thread = THREAD_DEEP;
 755                        return 0;
 756                }
 757                if (value && !strcasecmp(value, "shallow")) {
 758                        thread = THREAD_SHALLOW;
 759                        return 0;
 760                }
 761                thread = git_config_bool(var, value) && THREAD_SHALLOW;
 762                return 0;
 763        }
 764        if (!strcmp(var, "format.signoff")) {
 765                do_signoff = git_config_bool(var, value);
 766                return 0;
 767        }
 768        if (!strcmp(var, "format.signature"))
 769                return git_config_string(&signature, var, value);
 770        if (!strcmp(var, "format.signaturefile"))
 771                return git_config_pathname(&signature_file, var, value);
 772        if (!strcmp(var, "format.coverletter")) {
 773                if (value && !strcasecmp(value, "auto")) {
 774                        config_cover_letter = COVER_AUTO;
 775                        return 0;
 776                }
 777                config_cover_letter = git_config_bool(var, value) ? COVER_ON : COVER_OFF;
 778                return 0;
 779        }
 780
 781        return git_log_config(var, value, cb);
 782}
 783
 784static FILE *realstdout = NULL;
 785static const char *output_directory = NULL;
 786static int outdir_offset;
 787
 788static int reopen_stdout(struct commit *commit, const char *subject,
 789                         struct rev_info *rev, int quiet)
 790{
 791        struct strbuf filename = STRBUF_INIT;
 792        int suffix_len = strlen(rev->patch_suffix) + 1;
 793
 794        if (output_directory) {
 795                strbuf_addstr(&filename, output_directory);
 796                if (filename.len >=
 797                    PATH_MAX - FORMAT_PATCH_NAME_MAX - suffix_len)
 798                        return error(_("name of output directory is too long"));
 799                if (filename.buf[filename.len - 1] != '/')
 800                        strbuf_addch(&filename, '/');
 801        }
 802
 803        if (rev->numbered_files)
 804                strbuf_addf(&filename, "%d", rev->nr);
 805        else if (commit)
 806                fmt_output_commit(&filename, commit, rev);
 807        else
 808                fmt_output_subject(&filename, subject, rev);
 809
 810        if (!quiet)
 811                fprintf(realstdout, "%s\n", filename.buf + outdir_offset);
 812
 813        if (freopen(filename.buf, "w", stdout) == NULL)
 814                return error(_("Cannot open patch file %s"), filename.buf);
 815
 816        strbuf_release(&filename);
 817        return 0;
 818}
 819
 820static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids)
 821{
 822        struct rev_info check_rev;
 823        struct commit *commit, *c1, *c2;
 824        struct object *o1, *o2;
 825        unsigned flags1, flags2;
 826
 827        if (rev->pending.nr != 2)
 828                die(_("Need exactly one range."));
 829
 830        o1 = rev->pending.objects[0].item;
 831        o2 = rev->pending.objects[1].item;
 832        flags1 = o1->flags;
 833        flags2 = o2->flags;
 834        c1 = lookup_commit_reference(o1->sha1);
 835        c2 = lookup_commit_reference(o2->sha1);
 836
 837        if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
 838                die(_("Not a range."));
 839
 840        init_patch_ids(ids);
 841
 842        /* given a range a..b get all patch ids for b..a */
 843        init_revisions(&check_rev, rev->prefix);
 844        check_rev.max_parents = 1;
 845        o1->flags ^= UNINTERESTING;
 846        o2->flags ^= UNINTERESTING;
 847        add_pending_object(&check_rev, o1, "o1");
 848        add_pending_object(&check_rev, o2, "o2");
 849        if (prepare_revision_walk(&check_rev))
 850                die(_("revision walk setup failed"));
 851
 852        while ((commit = get_revision(&check_rev)) != NULL) {
 853                add_commit_patch_id(commit, ids);
 854        }
 855
 856        /* reset for next revision walk */
 857        clear_commit_marks(c1, SEEN | UNINTERESTING | SHOWN | ADDED);
 858        clear_commit_marks(c2, SEEN | UNINTERESTING | SHOWN | ADDED);
 859        o1->flags = flags1;
 860        o2->flags = flags2;
 861}
 862
 863static void gen_message_id(struct rev_info *info, char *base)
 864{
 865        struct strbuf buf = STRBUF_INIT;
 866        strbuf_addf(&buf, "%s.%lu.git.%s", base,
 867                    (unsigned long) time(NULL),
 868                    git_committer_info(IDENT_NO_NAME|IDENT_NO_DATE|IDENT_STRICT));
 869        info->message_id = strbuf_detach(&buf, NULL);
 870}
 871
 872static void print_signature(void)
 873{
 874        if (!signature || !*signature)
 875                return;
 876
 877        printf("-- \n%s", signature);
 878        if (signature[strlen(signature)-1] != '\n')
 879                putchar('\n');
 880        putchar('\n');
 881}
 882
 883static void add_branch_description(struct strbuf *buf, const char *branch_name)
 884{
 885        struct strbuf desc = STRBUF_INIT;
 886        if (!branch_name || !*branch_name)
 887                return;
 888        read_branch_desc(&desc, branch_name);
 889        if (desc.len) {
 890                strbuf_addch(buf, '\n');
 891                strbuf_addbuf(buf, &desc);
 892                strbuf_addch(buf, '\n');
 893        }
 894        strbuf_release(&desc);
 895}
 896
 897static char *find_branch_name(struct rev_info *rev)
 898{
 899        int i, positive = -1;
 900        unsigned char branch_sha1[20];
 901        const unsigned char *tip_sha1;
 902        const char *ref, *v;
 903        char *full_ref, *branch = NULL;
 904
 905        for (i = 0; i < rev->cmdline.nr; i++) {
 906                if (rev->cmdline.rev[i].flags & UNINTERESTING)
 907                        continue;
 908                if (positive < 0)
 909                        positive = i;
 910                else
 911                        return NULL;
 912        }
 913        if (positive < 0)
 914                return NULL;
 915        ref = rev->cmdline.rev[positive].name;
 916        tip_sha1 = rev->cmdline.rev[positive].item->sha1;
 917        if (dwim_ref(ref, strlen(ref), branch_sha1, &full_ref) &&
 918            skip_prefix(full_ref, "refs/heads/", &v) &&
 919            !hashcmp(tip_sha1, branch_sha1))
 920                branch = xstrdup(v);
 921        free(full_ref);
 922        return branch;
 923}
 924
 925static void make_cover_letter(struct rev_info *rev, int use_stdout,
 926                              struct commit *origin,
 927                              int nr, struct commit **list,
 928                              const char *branch_name,
 929                              int quiet)
 930{
 931        const char *committer;
 932        const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
 933        const char *msg;
 934        struct shortlog log;
 935        struct strbuf sb = STRBUF_INIT;
 936        int i;
 937        const char *encoding = "UTF-8";
 938        struct diff_options opts;
 939        int need_8bit_cte = 0;
 940        struct pretty_print_context pp = {0};
 941        struct commit *head = list[0];
 942
 943        if (rev->commit_format != CMIT_FMT_EMAIL)
 944                die(_("Cover letter needs email format"));
 945
 946        committer = git_committer_info(0);
 947
 948        if (!use_stdout &&
 949            reopen_stdout(NULL, rev->numbered_files ? NULL : "cover-letter", rev, quiet))
 950                return;
 951
 952        log_write_email_headers(rev, head, &pp.subject, &pp.after_subject,
 953                                &need_8bit_cte);
 954
 955        for (i = 0; !need_8bit_cte && i < nr; i++) {
 956                const char *buf = get_commit_buffer(list[i], NULL);
 957                if (has_non_ascii(buf))
 958                        need_8bit_cte = 1;
 959                unuse_commit_buffer(list[i], buf);
 960        }
 961
 962        if (!branch_name)
 963                branch_name = find_branch_name(rev);
 964
 965        msg = body;
 966        pp.fmt = CMIT_FMT_EMAIL;
 967        pp.date_mode.type = DATE_RFC2822;
 968        pp_user_info(&pp, NULL, &sb, committer, encoding);
 969        pp_title_line(&pp, &msg, &sb, encoding, need_8bit_cte);
 970        pp_remainder(&pp, &msg, &sb, 0);
 971        add_branch_description(&sb, branch_name);
 972        printf("%s\n", sb.buf);
 973
 974        strbuf_release(&sb);
 975
 976        shortlog_init(&log);
 977        log.wrap_lines = 1;
 978        log.wrap = 72;
 979        log.in1 = 2;
 980        log.in2 = 4;
 981        for (i = 0; i < nr; i++)
 982                shortlog_add_commit(&log, list[i]);
 983
 984        shortlog_output(&log);
 985
 986        /*
 987         * We can only do diffstat with a unique reference point
 988         */
 989        if (!origin)
 990                return;
 991
 992        memcpy(&opts, &rev->diffopt, sizeof(opts));
 993        opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
 994
 995        diff_setup_done(&opts);
 996
 997        diff_tree_sha1(origin->tree->object.sha1,
 998                       head->tree->object.sha1,
 999                       "", &opts);
1000        diffcore_std(&opts);
1001        diff_flush(&opts);
1002
1003        printf("\n");
1004        print_signature();
1005}
1006
1007static const char *clean_message_id(const char *msg_id)
1008{
1009        char ch;
1010        const char *a, *z, *m;
1011
1012        m = msg_id;
1013        while ((ch = *m) && (isspace(ch) || (ch == '<')))
1014                m++;
1015        a = m;
1016        z = NULL;
1017        while ((ch = *m)) {
1018                if (!isspace(ch) && (ch != '>'))
1019                        z = m;
1020                m++;
1021        }
1022        if (!z)
1023                die(_("insane in-reply-to: %s"), msg_id);
1024        if (++z == m)
1025                return a;
1026        return xmemdupz(a, z - a);
1027}
1028
1029static const char *set_outdir(const char *prefix, const char *output_directory)
1030{
1031        if (output_directory && is_absolute_path(output_directory))
1032                return output_directory;
1033
1034        if (!prefix || !*prefix) {
1035                if (output_directory)
1036                        return output_directory;
1037                /* The user did not explicitly ask for "./" */
1038                outdir_offset = 2;
1039                return "./";
1040        }
1041
1042        outdir_offset = strlen(prefix);
1043        if (!output_directory)
1044                return prefix;
1045
1046        return xstrdup(prefix_filename(prefix, outdir_offset,
1047                                       output_directory));
1048}
1049
1050static const char * const builtin_format_patch_usage[] = {
1051        N_("git format-patch [<options>] [<since> | <revision-range>]"),
1052        NULL
1053};
1054
1055static int keep_subject = 0;
1056
1057static int keep_callback(const struct option *opt, const char *arg, int unset)
1058{
1059        ((struct rev_info *)opt->value)->total = -1;
1060        keep_subject = 1;
1061        return 0;
1062}
1063
1064static int subject_prefix = 0;
1065
1066static int subject_prefix_callback(const struct option *opt, const char *arg,
1067                            int unset)
1068{
1069        subject_prefix = 1;
1070        ((struct rev_info *)opt->value)->subject_prefix = arg;
1071        return 0;
1072}
1073
1074static int numbered_cmdline_opt = 0;
1075
1076static int numbered_callback(const struct option *opt, const char *arg,
1077                             int unset)
1078{
1079        *(int *)opt->value = numbered_cmdline_opt = unset ? 0 : 1;
1080        if (unset)
1081                auto_number =  0;
1082        return 0;
1083}
1084
1085static int no_numbered_callback(const struct option *opt, const char *arg,
1086                                int unset)
1087{
1088        return numbered_callback(opt, arg, 1);
1089}
1090
1091static int output_directory_callback(const struct option *opt, const char *arg,
1092                              int unset)
1093{
1094        const char **dir = (const char **)opt->value;
1095        if (*dir)
1096                die(_("Two output directories?"));
1097        *dir = arg;
1098        return 0;
1099}
1100
1101static int thread_callback(const struct option *opt, const char *arg, int unset)
1102{
1103        int *thread = (int *)opt->value;
1104        if (unset)
1105                *thread = 0;
1106        else if (!arg || !strcmp(arg, "shallow"))
1107                *thread = THREAD_SHALLOW;
1108        else if (!strcmp(arg, "deep"))
1109                *thread = THREAD_DEEP;
1110        else
1111                return 1;
1112        return 0;
1113}
1114
1115static int attach_callback(const struct option *opt, const char *arg, int unset)
1116{
1117        struct rev_info *rev = (struct rev_info *)opt->value;
1118        if (unset)
1119                rev->mime_boundary = NULL;
1120        else if (arg)
1121                rev->mime_boundary = arg;
1122        else
1123                rev->mime_boundary = git_version_string;
1124        rev->no_inline = unset ? 0 : 1;
1125        return 0;
1126}
1127
1128static int inline_callback(const struct option *opt, const char *arg, int unset)
1129{
1130        struct rev_info *rev = (struct rev_info *)opt->value;
1131        if (unset)
1132                rev->mime_boundary = NULL;
1133        else if (arg)
1134                rev->mime_boundary = arg;
1135        else
1136                rev->mime_boundary = git_version_string;
1137        rev->no_inline = 0;
1138        return 0;
1139}
1140
1141static int header_callback(const struct option *opt, const char *arg, int unset)
1142{
1143        if (unset) {
1144                string_list_clear(&extra_hdr, 0);
1145                string_list_clear(&extra_to, 0);
1146                string_list_clear(&extra_cc, 0);
1147        } else {
1148            add_header(arg);
1149        }
1150        return 0;
1151}
1152
1153static int to_callback(const struct option *opt, const char *arg, int unset)
1154{
1155        if (unset)
1156                string_list_clear(&extra_to, 0);
1157        else
1158                string_list_append(&extra_to, arg);
1159        return 0;
1160}
1161
1162static int cc_callback(const struct option *opt, const char *arg, int unset)
1163{
1164        if (unset)
1165                string_list_clear(&extra_cc, 0);
1166        else
1167                string_list_append(&extra_cc, arg);
1168        return 0;
1169}
1170
1171static int from_callback(const struct option *opt, const char *arg, int unset)
1172{
1173        char **from = opt->value;
1174
1175        free(*from);
1176
1177        if (unset)
1178                *from = NULL;
1179        else if (arg)
1180                *from = xstrdup(arg);
1181        else
1182                *from = xstrdup(git_committer_info(IDENT_NO_DATE));
1183        return 0;
1184}
1185
1186int cmd_format_patch(int argc, const char **argv, const char *prefix)
1187{
1188        struct commit *commit;
1189        struct commit **list = NULL;
1190        struct rev_info rev;
1191        struct setup_revision_opt s_r_opt;
1192        int nr = 0, total, i;
1193        int use_stdout = 0;
1194        int start_number = -1;
1195        int just_numbers = 0;
1196        int ignore_if_in_upstream = 0;
1197        int cover_letter = -1;
1198        int boundary_count = 0;
1199        int no_binary_diff = 0;
1200        struct commit *origin = NULL;
1201        const char *in_reply_to = NULL;
1202        struct patch_ids ids;
1203        struct strbuf buf = STRBUF_INIT;
1204        int use_patch_format = 0;
1205        int quiet = 0;
1206        int reroll_count = -1;
1207        char *branch_name = NULL;
1208        char *from = NULL;
1209        const struct option builtin_format_patch_options[] = {
1210                { OPTION_CALLBACK, 'n', "numbered", &numbered, NULL,
1211                            N_("use [PATCH n/m] even with a single patch"),
1212                            PARSE_OPT_NOARG, numbered_callback },
1213                { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL,
1214                            N_("use [PATCH] even with multiple patches"),
1215                            PARSE_OPT_NOARG, no_numbered_callback },
1216                OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")),
1217                OPT_BOOL(0, "stdout", &use_stdout,
1218                            N_("print patches to standard out")),
1219                OPT_BOOL(0, "cover-letter", &cover_letter,
1220                            N_("generate a cover letter")),
1221                OPT_BOOL(0, "numbered-files", &just_numbers,
1222                            N_("use simple number sequence for output file names")),
1223                OPT_STRING(0, "suffix", &fmt_patch_suffix, N_("sfx"),
1224                            N_("use <sfx> instead of '.patch'")),
1225                OPT_INTEGER(0, "start-number", &start_number,
1226                            N_("start numbering patches at <n> instead of 1")),
1227                OPT_INTEGER('v', "reroll-count", &reroll_count,
1228                            N_("mark the series as Nth re-roll")),
1229                { OPTION_CALLBACK, 0, "subject-prefix", &rev, N_("prefix"),
1230                            N_("Use [<prefix>] instead of [PATCH]"),
1231                            PARSE_OPT_NONEG, subject_prefix_callback },
1232                { OPTION_CALLBACK, 'o', "output-directory", &output_directory,
1233                            N_("dir"), N_("store resulting files in <dir>"),
1234                            PARSE_OPT_NONEG, output_directory_callback },
1235                { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL,
1236                            N_("don't strip/add [PATCH]"),
1237                            PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback },
1238                OPT_BOOL(0, "no-binary", &no_binary_diff,
1239                         N_("don't output binary diffs")),
1240                OPT_BOOL(0, "ignore-if-in-upstream", &ignore_if_in_upstream,
1241                         N_("don't include a patch matching a commit upstream")),
1242                { OPTION_SET_INT, 'p', "no-stat", &use_patch_format, NULL,
1243                  N_("show patch format instead of default (patch + stat)"),
1244                  PARSE_OPT_NONEG | PARSE_OPT_NOARG, NULL, 1},
1245                OPT_GROUP(N_("Messaging")),
1246                { OPTION_CALLBACK, 0, "add-header", NULL, N_("header"),
1247                            N_("add email header"), 0, header_callback },
1248                { OPTION_CALLBACK, 0, "to", NULL, N_("email"), N_("add To: header"),
1249                            0, to_callback },
1250                { OPTION_CALLBACK, 0, "cc", NULL, N_("email"), N_("add Cc: header"),
1251                            0, cc_callback },
1252                { OPTION_CALLBACK, 0, "from", &from, N_("ident"),
1253                            N_("set From address to <ident> (or committer ident if absent)"),
1254                            PARSE_OPT_OPTARG, from_callback },
1255                OPT_STRING(0, "in-reply-to", &in_reply_to, N_("message-id"),
1256                            N_("make first mail a reply to <message-id>")),
1257                { OPTION_CALLBACK, 0, "attach", &rev, N_("boundary"),
1258                            N_("attach the patch"), PARSE_OPT_OPTARG,
1259                            attach_callback },
1260                { OPTION_CALLBACK, 0, "inline", &rev, N_("boundary"),
1261                            N_("inline the patch"),
1262                            PARSE_OPT_OPTARG | PARSE_OPT_NONEG,
1263                            inline_callback },
1264                { OPTION_CALLBACK, 0, "thread", &thread, N_("style"),
1265                            N_("enable message threading, styles: shallow, deep"),
1266                            PARSE_OPT_OPTARG, thread_callback },
1267                OPT_STRING(0, "signature", &signature, N_("signature"),
1268                            N_("add a signature")),
1269                OPT_FILENAME(0, "signature-file", &signature_file,
1270                                N_("add a signature from a file")),
1271                OPT__QUIET(&quiet, N_("don't print the patch filenames")),
1272                OPT_END()
1273        };
1274
1275        extra_hdr.strdup_strings = 1;
1276        extra_to.strdup_strings = 1;
1277        extra_cc.strdup_strings = 1;
1278        init_grep_defaults();
1279        git_config(git_format_config, NULL);
1280        init_revisions(&rev, prefix);
1281        rev.commit_format = CMIT_FMT_EMAIL;
1282        rev.verbose_header = 1;
1283        rev.diff = 1;
1284        rev.max_parents = 1;
1285        DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
1286        rev.subject_prefix = fmt_patch_subject_prefix;
1287        memset(&s_r_opt, 0, sizeof(s_r_opt));
1288        s_r_opt.def = "HEAD";
1289        s_r_opt.revarg_opt = REVARG_COMMITTISH;
1290
1291        if (default_attach) {
1292                rev.mime_boundary = default_attach;
1293                rev.no_inline = 1;
1294        }
1295
1296        /*
1297         * Parse the arguments before setup_revisions(), or something
1298         * like "git format-patch -o a123 HEAD^.." may fail; a123 is
1299         * possibly a valid SHA1.
1300         */
1301        argc = parse_options(argc, argv, prefix, builtin_format_patch_options,
1302                             builtin_format_patch_usage,
1303                             PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN |
1304                             PARSE_OPT_KEEP_DASHDASH);
1305
1306        if (0 < reroll_count) {
1307                struct strbuf sprefix = STRBUF_INIT;
1308                strbuf_addf(&sprefix, "%s v%d",
1309                            rev.subject_prefix, reroll_count);
1310                rev.reroll_count = reroll_count;
1311                rev.subject_prefix = strbuf_detach(&sprefix, NULL);
1312        }
1313
1314        for (i = 0; i < extra_hdr.nr; i++) {
1315                strbuf_addstr(&buf, extra_hdr.items[i].string);
1316                strbuf_addch(&buf, '\n');
1317        }
1318
1319        if (extra_to.nr)
1320                strbuf_addstr(&buf, "To: ");
1321        for (i = 0; i < extra_to.nr; i++) {
1322                if (i)
1323                        strbuf_addstr(&buf, "    ");
1324                strbuf_addstr(&buf, extra_to.items[i].string);
1325                if (i + 1 < extra_to.nr)
1326                        strbuf_addch(&buf, ',');
1327                strbuf_addch(&buf, '\n');
1328        }
1329
1330        if (extra_cc.nr)
1331                strbuf_addstr(&buf, "Cc: ");
1332        for (i = 0; i < extra_cc.nr; i++) {
1333                if (i)
1334                        strbuf_addstr(&buf, "    ");
1335                strbuf_addstr(&buf, extra_cc.items[i].string);
1336                if (i + 1 < extra_cc.nr)
1337                        strbuf_addch(&buf, ',');
1338                strbuf_addch(&buf, '\n');
1339        }
1340
1341        rev.extra_headers = strbuf_detach(&buf, NULL);
1342
1343        if (from) {
1344                if (split_ident_line(&rev.from_ident, from, strlen(from)))
1345                        die(_("invalid ident line: %s"), from);
1346        }
1347
1348        if (start_number < 0)
1349                start_number = 1;
1350
1351        /*
1352         * If numbered is set solely due to format.numbered in config,
1353         * and it would conflict with --keep-subject (-k) from the
1354         * command line, reset "numbered".
1355         */
1356        if (numbered && keep_subject && !numbered_cmdline_opt)
1357                numbered = 0;
1358
1359        if (numbered && keep_subject)
1360                die (_("-n and -k are mutually exclusive."));
1361        if (keep_subject && subject_prefix)
1362                die (_("--subject-prefix and -k are mutually exclusive."));
1363        rev.preserve_subject = keep_subject;
1364
1365        argc = setup_revisions(argc, argv, &rev, &s_r_opt);
1366        if (argc > 1)
1367                die (_("unrecognized argument: %s"), argv[1]);
1368
1369        if (rev.diffopt.output_format & DIFF_FORMAT_NAME)
1370                die(_("--name-only does not make sense"));
1371        if (rev.diffopt.output_format & DIFF_FORMAT_NAME_STATUS)
1372                die(_("--name-status does not make sense"));
1373        if (rev.diffopt.output_format & DIFF_FORMAT_CHECKDIFF)
1374                die(_("--check does not make sense"));
1375
1376        if (!use_patch_format &&
1377                (!rev.diffopt.output_format ||
1378                 rev.diffopt.output_format == DIFF_FORMAT_PATCH))
1379                rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY;
1380
1381        /* Always generate a patch */
1382        rev.diffopt.output_format |= DIFF_FORMAT_PATCH;
1383
1384        if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
1385                DIFF_OPT_SET(&rev.diffopt, BINARY);
1386
1387        if (rev.show_notes)
1388                init_display_notes(&rev.notes_opt);
1389
1390        if (!use_stdout)
1391                output_directory = set_outdir(prefix, output_directory);
1392        else
1393                setup_pager();
1394
1395        if (output_directory) {
1396                if (use_stdout)
1397                        die(_("standard output, or directory, which one?"));
1398                if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
1399                        die_errno(_("Could not create directory '%s'"),
1400                                  output_directory);
1401        }
1402
1403        if (rev.pending.nr == 1) {
1404                int check_head = 0;
1405
1406                if (rev.max_count < 0 && !rev.show_root_diff) {
1407                        /*
1408                         * This is traditional behaviour of "git format-patch
1409                         * origin" that prepares what the origin side still
1410                         * does not have.
1411                         */
1412                        rev.pending.objects[0].item->flags |= UNINTERESTING;
1413                        add_head_to_pending(&rev);
1414                        check_head = 1;
1415                }
1416                /*
1417                 * Otherwise, it is "format-patch -22 HEAD", and/or
1418                 * "format-patch --root HEAD".  The user wants
1419                 * get_revision() to do the usual traversal.
1420                 */
1421
1422                if (!strcmp(rev.pending.objects[0].name, "HEAD"))
1423                        check_head = 1;
1424
1425                if (check_head) {
1426                        unsigned char sha1[20];
1427                        const char *ref, *v;
1428                        ref = resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
1429                                                 sha1, NULL);
1430                        if (ref && skip_prefix(ref, "refs/heads/", &v))
1431                                branch_name = xstrdup(v);
1432                        else
1433                                branch_name = xstrdup(""); /* no branch */
1434                }
1435        }
1436
1437        /*
1438         * We cannot move this anywhere earlier because we do want to
1439         * know if --root was given explicitly from the command line.
1440         */
1441        rev.show_root_diff = 1;
1442
1443        if (ignore_if_in_upstream) {
1444                /* Don't say anything if head and upstream are the same. */
1445                if (rev.pending.nr == 2) {
1446                        struct object_array_entry *o = rev.pending.objects;
1447                        if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1448                                return 0;
1449                }
1450                get_patch_ids(&rev, &ids);
1451        }
1452
1453        if (!use_stdout)
1454                realstdout = xfdopen(xdup(1), "w");
1455
1456        if (prepare_revision_walk(&rev))
1457                die(_("revision walk setup failed"));
1458        rev.boundary = 1;
1459        while ((commit = get_revision(&rev)) != NULL) {
1460                if (commit->object.flags & BOUNDARY) {
1461                        boundary_count++;
1462                        origin = (boundary_count == 1) ? commit : NULL;
1463                        continue;
1464                }
1465
1466                if (ignore_if_in_upstream && has_commit_patch_id(commit, &ids))
1467                        continue;
1468
1469                nr++;
1470                REALLOC_ARRAY(list, nr);
1471                list[nr - 1] = commit;
1472        }
1473        if (nr == 0)
1474                /* nothing to do */
1475                return 0;
1476        total = nr;
1477        if (!keep_subject && auto_number && total > 1)
1478                numbered = 1;
1479        if (numbered)
1480                rev.total = total + start_number - 1;
1481        if (cover_letter == -1) {
1482                if (config_cover_letter == COVER_AUTO)
1483                        cover_letter = (total > 1);
1484                else
1485                        cover_letter = (config_cover_letter == COVER_ON);
1486        }
1487
1488        if (!signature) {
1489                ; /* --no-signature inhibits all signatures */
1490        } else if (signature && signature != git_version_string) {
1491                ; /* non-default signature already set */
1492        } else if (signature_file) {
1493                struct strbuf buf = STRBUF_INIT;
1494
1495                if (strbuf_read_file(&buf, signature_file, 128) < 0)
1496                        die_errno(_("unable to read signature file '%s'"), signature_file);
1497                signature = strbuf_detach(&buf, NULL);
1498        }
1499
1500        if (in_reply_to || thread || cover_letter)
1501                rev.ref_message_ids = xcalloc(1, sizeof(struct string_list));
1502        if (in_reply_to) {
1503                const char *msgid = clean_message_id(in_reply_to);
1504                string_list_append(rev.ref_message_ids, msgid);
1505        }
1506        rev.numbered_files = just_numbers;
1507        rev.patch_suffix = fmt_patch_suffix;
1508        if (cover_letter) {
1509                if (thread)
1510                        gen_message_id(&rev, "cover");
1511                make_cover_letter(&rev, use_stdout,
1512                                  origin, nr, list, branch_name, quiet);
1513                total++;
1514                start_number--;
1515        }
1516        rev.add_signoff = do_signoff;
1517        while (0 <= --nr) {
1518                int shown;
1519                commit = list[nr];
1520                rev.nr = total - nr + (start_number - 1);
1521                /* Make the second and subsequent mails replies to the first */
1522                if (thread) {
1523                        /* Have we already had a message ID? */
1524                        if (rev.message_id) {
1525                                /*
1526                                 * For deep threading: make every mail
1527                                 * a reply to the previous one, no
1528                                 * matter what other options are set.
1529                                 *
1530                                 * For shallow threading:
1531                                 *
1532                                 * Without --cover-letter and
1533                                 * --in-reply-to, make every mail a
1534                                 * reply to the one before.
1535                                 *
1536                                 * With --in-reply-to but no
1537                                 * --cover-letter, make every mail a
1538                                 * reply to the <reply-to>.
1539                                 *
1540                                 * With --cover-letter, make every
1541                                 * mail but the cover letter a reply
1542                                 * to the cover letter.  The cover
1543                                 * letter is a reply to the
1544                                 * --in-reply-to, if specified.
1545                                 */
1546                                if (thread == THREAD_SHALLOW
1547                                    && rev.ref_message_ids->nr > 0
1548                                    && (!cover_letter || rev.nr > 1))
1549                                        free(rev.message_id);
1550                                else
1551                                        string_list_append(rev.ref_message_ids,
1552                                                           rev.message_id);
1553                        }
1554                        gen_message_id(&rev, sha1_to_hex(commit->object.sha1));
1555                }
1556
1557                if (!use_stdout &&
1558                    reopen_stdout(rev.numbered_files ? NULL : commit, NULL, &rev, quiet))
1559                        die(_("Failed to create output files"));
1560                shown = log_tree_commit(&rev, commit);
1561                free_commit_buffer(commit);
1562
1563                /* We put one extra blank line between formatted
1564                 * patches and this flag is used by log-tree code
1565                 * to see if it needs to emit a LF before showing
1566                 * the log; when using one file per patch, we do
1567                 * not want the extra blank line.
1568                 */
1569                if (!use_stdout)
1570                        rev.shown_one = 0;
1571                if (shown) {
1572                        if (rev.mime_boundary)
1573                                printf("\n--%s%s--\n\n\n",
1574                                       mime_boundary_leader,
1575                                       rev.mime_boundary);
1576                        else
1577                                print_signature();
1578                }
1579                if (!use_stdout)
1580                        fclose(stdout);
1581        }
1582        free(list);
1583        free(branch_name);
1584        string_list_clear(&extra_to, 0);
1585        string_list_clear(&extra_cc, 0);
1586        string_list_clear(&extra_hdr, 0);
1587        if (ignore_if_in_upstream)
1588                free_patch_ids(&ids);
1589        return 0;
1590}
1591
1592static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1593{
1594        unsigned char sha1[20];
1595        if (get_sha1(arg, sha1) == 0) {
1596                struct commit *commit = lookup_commit_reference(sha1);
1597                if (commit) {
1598                        commit->object.flags |= flags;
1599                        add_pending_object(revs, &commit->object, arg);
1600                        return 0;
1601                }
1602        }
1603        return -1;
1604}
1605
1606static const char * const cherry_usage[] = {
1607        N_("git cherry [-v] [<upstream> [<head> [<limit>]]]"),
1608        NULL
1609};
1610
1611static void print_commit(char sign, struct commit *commit, int verbose,
1612                         int abbrev)
1613{
1614        if (!verbose) {
1615                printf("%c %s\n", sign,
1616                       find_unique_abbrev(commit->object.sha1, abbrev));
1617        } else {
1618                struct strbuf buf = STRBUF_INIT;
1619                pp_commit_easy(CMIT_FMT_ONELINE, commit, &buf);
1620                printf("%c %s %s\n", sign,
1621                       find_unique_abbrev(commit->object.sha1, abbrev),
1622                       buf.buf);
1623                strbuf_release(&buf);
1624        }
1625}
1626
1627int cmd_cherry(int argc, const char **argv, const char *prefix)
1628{
1629        struct rev_info revs;
1630        struct patch_ids ids;
1631        struct commit *commit;
1632        struct commit_list *list = NULL;
1633        struct branch *current_branch;
1634        const char *upstream;
1635        const char *head = "HEAD";
1636        const char *limit = NULL;
1637        int verbose = 0, abbrev = 0;
1638
1639        struct option options[] = {
1640                OPT__ABBREV(&abbrev),
1641                OPT__VERBOSE(&verbose, N_("be verbose")),
1642                OPT_END()
1643        };
1644
1645        argc = parse_options(argc, argv, prefix, options, cherry_usage, 0);
1646
1647        switch (argc) {
1648        case 3:
1649                limit = argv[2];
1650                /* FALLTHROUGH */
1651        case 2:
1652                head = argv[1];
1653                /* FALLTHROUGH */
1654        case 1:
1655                upstream = argv[0];
1656                break;
1657        default:
1658                current_branch = branch_get(NULL);
1659                upstream = branch_get_upstream(current_branch, NULL);
1660                if (!upstream) {
1661                        fprintf(stderr, _("Could not find a tracked"
1662                                        " remote branch, please"
1663                                        " specify <upstream> manually.\n"));
1664                        usage_with_options(cherry_usage, options);
1665                }
1666        }
1667
1668        init_revisions(&revs, prefix);
1669        revs.max_parents = 1;
1670
1671        if (add_pending_commit(head, &revs, 0))
1672                die(_("Unknown commit %s"), head);
1673        if (add_pending_commit(upstream, &revs, UNINTERESTING))
1674                die(_("Unknown commit %s"), upstream);
1675
1676        /* Don't say anything if head and upstream are the same. */
1677        if (revs.pending.nr == 2) {
1678                struct object_array_entry *o = revs.pending.objects;
1679                if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1680                        return 0;
1681        }
1682
1683        get_patch_ids(&revs, &ids);
1684
1685        if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1686                die(_("Unknown commit %s"), limit);
1687
1688        /* reverse the list of commits */
1689        if (prepare_revision_walk(&revs))
1690                die(_("revision walk setup failed"));
1691        while ((commit = get_revision(&revs)) != NULL) {
1692                commit_list_insert(commit, &list);
1693        }
1694
1695        while (list) {
1696                char sign = '+';
1697
1698                commit = list->item;
1699                if (has_commit_patch_id(commit, &ids))
1700                        sign = '-';
1701                print_commit(sign, commit, verbose, abbrev);
1702                list = list->next;
1703        }
1704
1705        free_patch_ids(&ids);
1706        return 0;
1707}