builtin-log.con commit Teach "git diff -p" Python funcname patterns (7c17205)
   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 "color.h"
   9#include "commit.h"
  10#include "diff.h"
  11#include "revision.h"
  12#include "log-tree.h"
  13#include "builtin.h"
  14#include "tag.h"
  15#include "reflog-walk.h"
  16#include "patch-ids.h"
  17#include "refs.h"
  18#include "run-command.h"
  19#include "shortlog.h"
  20
  21/* Set a default date-time format for git log ("log.date" config variable) */
  22static const char *default_date_mode = NULL;
  23
  24static int default_show_root = 1;
  25static const char *fmt_patch_subject_prefix = "PATCH";
  26static const char *fmt_pretty;
  27
  28static void add_name_decoration(const char *prefix, const char *name, struct object *obj)
  29{
  30        int plen = strlen(prefix);
  31        int nlen = strlen(name);
  32        struct name_decoration *res = xmalloc(sizeof(struct name_decoration) + plen + nlen);
  33        memcpy(res->name, prefix, plen);
  34        memcpy(res->name + plen, name, nlen + 1);
  35        res->next = add_decoration(&name_decoration, obj, res);
  36}
  37
  38static int add_ref_decoration(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
  39{
  40        struct object *obj = parse_object(sha1);
  41        if (!obj)
  42                return 0;
  43        add_name_decoration("", refname, obj);
  44        while (obj->type == OBJ_TAG) {
  45                obj = ((struct tag *)obj)->tagged;
  46                if (!obj)
  47                        break;
  48                add_name_decoration("tag: ", refname, obj);
  49        }
  50        return 0;
  51}
  52
  53static void cmd_log_init(int argc, const char **argv, const char *prefix,
  54                      struct rev_info *rev)
  55{
  56        int i;
  57        int decorate = 0;
  58
  59        rev->abbrev = DEFAULT_ABBREV;
  60        rev->commit_format = CMIT_FMT_DEFAULT;
  61        if (fmt_pretty)
  62                get_commit_format(fmt_pretty, rev);
  63        rev->verbose_header = 1;
  64        DIFF_OPT_SET(&rev->diffopt, RECURSIVE);
  65        rev->show_root_diff = default_show_root;
  66        rev->subject_prefix = fmt_patch_subject_prefix;
  67
  68        if (default_date_mode)
  69                rev->date_mode = parse_date_format(default_date_mode);
  70
  71        argc = setup_revisions(argc, argv, rev, "HEAD");
  72
  73        if (rev->diffopt.pickaxe || rev->diffopt.filter)
  74                rev->always_show_header = 0;
  75        if (DIFF_OPT_TST(&rev->diffopt, FOLLOW_RENAMES)) {
  76                rev->always_show_header = 0;
  77                if (rev->diffopt.nr_paths != 1)
  78                        usage("git logs can only follow renames on one pathname at a time");
  79        }
  80        for (i = 1; i < argc; i++) {
  81                const char *arg = argv[i];
  82                if (!strcmp(arg, "--decorate")) {
  83                        if (!decorate)
  84                                for_each_ref(add_ref_decoration, NULL);
  85                        decorate = 1;
  86                } else
  87                        die("unrecognized argument: %s", arg);
  88        }
  89}
  90
  91/*
  92 * This gives a rough estimate for how many commits we
  93 * will print out in the list.
  94 */
  95static int estimate_commit_count(struct rev_info *rev, struct commit_list *list)
  96{
  97        int n = 0;
  98
  99        while (list) {
 100                struct commit *commit = list->item;
 101                unsigned int flags = commit->object.flags;
 102                list = list->next;
 103                if (!(flags & (TREESAME | UNINTERESTING)))
 104                        n++;
 105        }
 106        return n;
 107}
 108
 109static void show_early_header(struct rev_info *rev, const char *stage, int nr)
 110{
 111        if (rev->shown_one) {
 112                rev->shown_one = 0;
 113                if (rev->commit_format != CMIT_FMT_ONELINE)
 114                        putchar(rev->diffopt.line_termination);
 115        }
 116        printf("Final output: %d %s\n", nr, stage);
 117}
 118
 119struct itimerval early_output_timer;
 120
 121static void log_show_early(struct rev_info *revs, struct commit_list *list)
 122{
 123        int i = revs->early_output;
 124        int show_header = 1;
 125
 126        sort_in_topological_order(&list, revs->lifo);
 127        while (list && i) {
 128                struct commit *commit = list->item;
 129                switch (simplify_commit(revs, commit)) {
 130                case commit_show:
 131                        if (show_header) {
 132                                int n = estimate_commit_count(revs, list);
 133                                show_early_header(revs, "incomplete", n);
 134                                show_header = 0;
 135                        }
 136                        log_tree_commit(revs, commit);
 137                        i--;
 138                        break;
 139                case commit_ignore:
 140                        break;
 141                case commit_error:
 142                        return;
 143                }
 144                list = list->next;
 145        }
 146
 147        /* Did we already get enough commits for the early output? */
 148        if (!i)
 149                return;
 150
 151        /*
 152         * ..if no, then repeat it twice a second until we
 153         * do.
 154         *
 155         * NOTE! We don't use "it_interval", because if the
 156         * reader isn't listening, we want our output to be
 157         * throttled by the writing, and not have the timer
 158         * trigger every second even if we're blocked on a
 159         * reader!
 160         */
 161        early_output_timer.it_value.tv_sec = 0;
 162        early_output_timer.it_value.tv_usec = 500000;
 163        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 164}
 165
 166static void early_output(int signal)
 167{
 168        show_early_output = log_show_early;
 169}
 170
 171static void setup_early_output(struct rev_info *rev)
 172{
 173        struct sigaction sa;
 174
 175        /*
 176         * Set up the signal handler, minimally intrusively:
 177         * we only set a single volatile integer word (not
 178         * using sigatomic_t - trying to avoid unnecessary
 179         * system dependencies and headers), and using
 180         * SA_RESTART.
 181         */
 182        memset(&sa, 0, sizeof(sa));
 183        sa.sa_handler = early_output;
 184        sigemptyset(&sa.sa_mask);
 185        sa.sa_flags = SA_RESTART;
 186        sigaction(SIGALRM, &sa, NULL);
 187
 188        /*
 189         * If we can get the whole output in less than a
 190         * tenth of a second, don't even bother doing the
 191         * early-output thing..
 192         *
 193         * This is a one-time-only trigger.
 194         */
 195        early_output_timer.it_value.tv_sec = 0;
 196        early_output_timer.it_value.tv_usec = 100000;
 197        setitimer(ITIMER_REAL, &early_output_timer, NULL);
 198}
 199
 200static void finish_early_output(struct rev_info *rev)
 201{
 202        int n = estimate_commit_count(rev, rev->commits);
 203        signal(SIGALRM, SIG_IGN);
 204        show_early_header(rev, "done", n);
 205}
 206
 207static int cmd_log_walk(struct rev_info *rev)
 208{
 209        struct commit *commit;
 210
 211        if (rev->early_output)
 212                setup_early_output(rev);
 213
 214        if (prepare_revision_walk(rev))
 215                die("revision walk setup failed");
 216
 217        if (rev->early_output)
 218                finish_early_output(rev);
 219
 220        /*
 221         * For --check and --exit-code, the exit code is based on CHECK_FAILED
 222         * and HAS_CHANGES being accumulated in rev->diffopt, so be careful to
 223         * retain that state information if replacing rev->diffopt in this loop
 224         */
 225        while ((commit = get_revision(rev)) != NULL) {
 226                log_tree_commit(rev, commit);
 227                if (!rev->reflog_info) {
 228                        /* we allow cycles in reflog ancestry */
 229                        free(commit->buffer);
 230                        commit->buffer = NULL;
 231                }
 232                free_commit_list(commit->parents);
 233                commit->parents = NULL;
 234        }
 235        if (rev->diffopt.output_format & DIFF_FORMAT_CHECKDIFF &&
 236            DIFF_OPT_TST(&rev->diffopt, CHECK_FAILED)) {
 237                return 02;
 238        }
 239        return diff_result_code(&rev->diffopt, 0);
 240}
 241
 242static int git_log_config(const char *var, const char *value, void *cb)
 243{
 244        if (!strcmp(var, "format.pretty"))
 245                return git_config_string(&fmt_pretty, var, value);
 246        if (!strcmp(var, "format.subjectprefix"))
 247                return git_config_string(&fmt_patch_subject_prefix, var, value);
 248        if (!strcmp(var, "log.date"))
 249                return git_config_string(&default_date_mode, var, value);
 250        if (!strcmp(var, "log.showroot")) {
 251                default_show_root = git_config_bool(var, value);
 252                return 0;
 253        }
 254        return git_diff_ui_config(var, value, cb);
 255}
 256
 257int cmd_whatchanged(int argc, const char **argv, const char *prefix)
 258{
 259        struct rev_info rev;
 260
 261        git_config(git_log_config, NULL);
 262
 263        if (diff_use_color_default == -1)
 264                diff_use_color_default = git_use_color_default;
 265
 266        init_revisions(&rev, prefix);
 267        rev.diff = 1;
 268        rev.simplify_history = 0;
 269        cmd_log_init(argc, argv, prefix, &rev);
 270        if (!rev.diffopt.output_format)
 271                rev.diffopt.output_format = DIFF_FORMAT_RAW;
 272        return cmd_log_walk(&rev);
 273}
 274
 275static void show_tagger(char *buf, int len, struct rev_info *rev)
 276{
 277        char *email_end, *p;
 278        unsigned long date;
 279        int tz;
 280
 281        email_end = memchr(buf, '>', len);
 282        if (!email_end)
 283                return;
 284        p = ++email_end;
 285        while (isspace(*p))
 286                p++;
 287        date = strtoul(p, &p, 10);
 288        while (isspace(*p))
 289                p++;
 290        tz = (int)strtol(p, NULL, 10);
 291        printf("Tagger: %.*s\nDate:   %s\n", (int)(email_end - buf), buf,
 292               show_date(date, tz, rev->date_mode));
 293}
 294
 295static int show_object(const unsigned char *sha1, int show_tag_object,
 296        struct rev_info *rev)
 297{
 298        unsigned long size;
 299        enum object_type type;
 300        char *buf = read_sha1_file(sha1, &type, &size);
 301        int offset = 0;
 302
 303        if (!buf)
 304                return error("Could not read object %s", sha1_to_hex(sha1));
 305
 306        if (show_tag_object)
 307                while (offset < size && buf[offset] != '\n') {
 308                        int new_offset = offset + 1;
 309                        while (new_offset < size && buf[new_offset++] != '\n')
 310                                ; /* do nothing */
 311                        if (!prefixcmp(buf + offset, "tagger "))
 312                                show_tagger(buf + offset + 7,
 313                                            new_offset - offset - 7, rev);
 314                        offset = new_offset;
 315                }
 316
 317        if (offset < size)
 318                fwrite(buf + offset, size - offset, 1, stdout);
 319        free(buf);
 320        return 0;
 321}
 322
 323static int show_tree_object(const unsigned char *sha1,
 324                const char *base, int baselen,
 325                const char *pathname, unsigned mode, int stage, void *context)
 326{
 327        printf("%s%s\n", pathname, S_ISDIR(mode) ? "/" : "");
 328        return 0;
 329}
 330
 331int cmd_show(int argc, const char **argv, const char *prefix)
 332{
 333        struct rev_info rev;
 334        struct object_array_entry *objects;
 335        int i, count, ret = 0;
 336
 337        git_config(git_log_config, NULL);
 338
 339        if (diff_use_color_default == -1)
 340                diff_use_color_default = git_use_color_default;
 341
 342        init_revisions(&rev, prefix);
 343        rev.diff = 1;
 344        rev.combine_merges = 1;
 345        rev.dense_combined_merges = 1;
 346        rev.always_show_header = 1;
 347        rev.ignore_merges = 0;
 348        rev.no_walk = 1;
 349        cmd_log_init(argc, argv, prefix, &rev);
 350
 351        count = rev.pending.nr;
 352        objects = rev.pending.objects;
 353        for (i = 0; i < count && !ret; i++) {
 354                struct object *o = objects[i].item;
 355                const char *name = objects[i].name;
 356                switch (o->type) {
 357                case OBJ_BLOB:
 358                        ret = show_object(o->sha1, 0, NULL);
 359                        break;
 360                case OBJ_TAG: {
 361                        struct tag *t = (struct tag *)o;
 362
 363                        printf("%stag %s%s\n",
 364                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 365                                        t->tag,
 366                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 367                        ret = show_object(o->sha1, 1, &rev);
 368                        objects[i].item = parse_object(t->tagged->sha1);
 369                        i--;
 370                        break;
 371                }
 372                case OBJ_TREE:
 373                        printf("%stree %s%s\n\n",
 374                                        diff_get_color_opt(&rev.diffopt, DIFF_COMMIT),
 375                                        name,
 376                                        diff_get_color_opt(&rev.diffopt, DIFF_RESET));
 377                        read_tree_recursive((struct tree *)o, "", 0, 0, NULL,
 378                                        show_tree_object, NULL);
 379                        break;
 380                case OBJ_COMMIT:
 381                        rev.pending.nr = rev.pending.alloc = 0;
 382                        rev.pending.objects = NULL;
 383                        add_object_array(o, name, &rev.pending);
 384                        ret = cmd_log_walk(&rev);
 385                        break;
 386                default:
 387                        ret = error("Unknown type: %d", o->type);
 388                }
 389        }
 390        free(objects);
 391        return ret;
 392}
 393
 394/*
 395 * This is equivalent to "git log -g --abbrev-commit --pretty=oneline"
 396 */
 397int cmd_log_reflog(int argc, const char **argv, const char *prefix)
 398{
 399        struct rev_info rev;
 400
 401        git_config(git_log_config, NULL);
 402
 403        if (diff_use_color_default == -1)
 404                diff_use_color_default = git_use_color_default;
 405
 406        init_revisions(&rev, prefix);
 407        init_reflog_walk(&rev.reflog_info);
 408        rev.abbrev_commit = 1;
 409        rev.verbose_header = 1;
 410        cmd_log_init(argc, argv, prefix, &rev);
 411
 412        /*
 413         * This means that we override whatever commit format the user gave
 414         * on the cmd line.  Sad, but cmd_log_init() currently doesn't
 415         * allow us to set a different default.
 416         */
 417        rev.commit_format = CMIT_FMT_ONELINE;
 418        rev.use_terminator = 1;
 419        rev.always_show_header = 1;
 420
 421        /*
 422         * We get called through "git reflog", so unlike the other log
 423         * routines, we need to set up our pager manually..
 424         */
 425        setup_pager();
 426
 427        return cmd_log_walk(&rev);
 428}
 429
 430int cmd_log(int argc, const char **argv, const char *prefix)
 431{
 432        struct rev_info rev;
 433
 434        git_config(git_log_config, NULL);
 435
 436        if (diff_use_color_default == -1)
 437                diff_use_color_default = git_use_color_default;
 438
 439        init_revisions(&rev, prefix);
 440        rev.always_show_header = 1;
 441        cmd_log_init(argc, argv, prefix, &rev);
 442        return cmd_log_walk(&rev);
 443}
 444
 445/* format-patch */
 446#define FORMAT_PATCH_NAME_MAX 64
 447
 448static int istitlechar(char c)
 449{
 450        return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
 451                (c >= '0' && c <= '9') || c == '.' || c == '_';
 452}
 453
 454static const char *fmt_patch_suffix = ".patch";
 455static int numbered = 0;
 456static int auto_number = 0;
 457
 458static char **extra_hdr;
 459static int extra_hdr_nr;
 460static int extra_hdr_alloc;
 461
 462static char **extra_to;
 463static int extra_to_nr;
 464static int extra_to_alloc;
 465
 466static char **extra_cc;
 467static int extra_cc_nr;
 468static int extra_cc_alloc;
 469
 470static void add_header(const char *value)
 471{
 472        int len = strlen(value);
 473        while (len && value[len - 1] == '\n')
 474                len--;
 475        if (!strncasecmp(value, "to: ", 4)) {
 476                ALLOC_GROW(extra_to, extra_to_nr + 1, extra_to_alloc);
 477                extra_to[extra_to_nr++] = xstrndup(value + 4, len - 4);
 478                return;
 479        }
 480        if (!strncasecmp(value, "cc: ", 4)) {
 481                ALLOC_GROW(extra_cc, extra_cc_nr + 1, extra_cc_alloc);
 482                extra_cc[extra_cc_nr++] = xstrndup(value + 4, len - 4);
 483                return;
 484        }
 485        ALLOC_GROW(extra_hdr, extra_hdr_nr + 1, extra_hdr_alloc);
 486        extra_hdr[extra_hdr_nr++] = xstrndup(value, len);
 487}
 488
 489static int git_format_config(const char *var, const char *value, void *cb)
 490{
 491        if (!strcmp(var, "format.headers")) {
 492                if (!value)
 493                        die("format.headers without value");
 494                add_header(value);
 495                return 0;
 496        }
 497        if (!strcmp(var, "format.suffix"))
 498                return git_config_string(&fmt_patch_suffix, var, value);
 499        if (!strcmp(var, "format.cc")) {
 500                if (!value)
 501                        return config_error_nonbool(var);
 502                ALLOC_GROW(extra_cc, extra_cc_nr + 1, extra_cc_alloc);
 503                extra_cc[extra_cc_nr++] = xstrdup(value);
 504                return 0;
 505        }
 506        if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
 507                return 0;
 508        }
 509        if (!strcmp(var, "format.numbered")) {
 510                if (value && !strcasecmp(value, "auto")) {
 511                        auto_number = 1;
 512                        return 0;
 513                }
 514                numbered = git_config_bool(var, value);
 515                return 0;
 516        }
 517
 518        return git_log_config(var, value, cb);
 519}
 520
 521
 522static const char *get_oneline_for_filename(struct commit *commit,
 523                                            int keep_subject)
 524{
 525        static char filename[PATH_MAX];
 526        char *sol;
 527        int len = 0;
 528        int suffix_len = strlen(fmt_patch_suffix) + 1;
 529
 530        sol = strstr(commit->buffer, "\n\n");
 531        if (!sol)
 532                filename[0] = '\0';
 533        else {
 534                int j, space = 0;
 535
 536                sol += 2;
 537                /* strip [PATCH] or [PATCH blabla] */
 538                if (!keep_subject && !prefixcmp(sol, "[PATCH")) {
 539                        char *eos = strchr(sol + 6, ']');
 540                        if (eos) {
 541                                while (isspace(*eos))
 542                                        eos++;
 543                                sol = eos;
 544                        }
 545                }
 546
 547                for (j = 0;
 548                     j < FORMAT_PATCH_NAME_MAX - suffix_len - 5 &&
 549                             len < sizeof(filename) - suffix_len &&
 550                             sol[j] && sol[j] != '\n';
 551                     j++) {
 552                        if (istitlechar(sol[j])) {
 553                                if (space) {
 554                                        filename[len++] = '-';
 555                                        space = 0;
 556                                }
 557                                filename[len++] = sol[j];
 558                                if (sol[j] == '.')
 559                                        while (sol[j + 1] == '.')
 560                                                j++;
 561                        } else
 562                                space = 1;
 563                }
 564                while (filename[len - 1] == '.'
 565                       || filename[len - 1] == '-')
 566                        len--;
 567                filename[len] = '\0';
 568        }
 569        return filename;
 570}
 571
 572static FILE *realstdout = NULL;
 573static const char *output_directory = NULL;
 574
 575static int reopen_stdout(const char *oneline, int nr, int total)
 576{
 577        char filename[PATH_MAX];
 578        int len = 0;
 579        int suffix_len = strlen(fmt_patch_suffix) + 1;
 580
 581        if (output_directory) {
 582                len = snprintf(filename, sizeof(filename), "%s",
 583                                output_directory);
 584                if (len >=
 585                    sizeof(filename) - FORMAT_PATCH_NAME_MAX - suffix_len)
 586                        return error("name of output directory is too long");
 587                if (filename[len - 1] != '/')
 588                        filename[len++] = '/';
 589        }
 590
 591        if (!oneline)
 592                len += sprintf(filename + len, "%d", nr);
 593        else {
 594                len += sprintf(filename + len, "%04d-", nr);
 595                len += snprintf(filename + len, sizeof(filename) - len - 1
 596                                - suffix_len, "%s", oneline);
 597                strcpy(filename + len, fmt_patch_suffix);
 598        }
 599
 600        fprintf(realstdout, "%s\n", filename);
 601        if (freopen(filename, "w", stdout) == NULL)
 602                return error("Cannot open patch file %s",filename);
 603
 604        return 0;
 605}
 606
 607static void get_patch_ids(struct rev_info *rev, struct patch_ids *ids, const char *prefix)
 608{
 609        struct rev_info check_rev;
 610        struct commit *commit;
 611        struct object *o1, *o2;
 612        unsigned flags1, flags2;
 613
 614        if (rev->pending.nr != 2)
 615                die("Need exactly one range.");
 616
 617        o1 = rev->pending.objects[0].item;
 618        flags1 = o1->flags;
 619        o2 = rev->pending.objects[1].item;
 620        flags2 = o2->flags;
 621
 622        if ((flags1 & UNINTERESTING) == (flags2 & UNINTERESTING))
 623                die("Not a range.");
 624
 625        init_patch_ids(ids);
 626
 627        /* given a range a..b get all patch ids for b..a */
 628        init_revisions(&check_rev, prefix);
 629        o1->flags ^= UNINTERESTING;
 630        o2->flags ^= UNINTERESTING;
 631        add_pending_object(&check_rev, o1, "o1");
 632        add_pending_object(&check_rev, o2, "o2");
 633        if (prepare_revision_walk(&check_rev))
 634                die("revision walk setup failed");
 635
 636        while ((commit = get_revision(&check_rev)) != NULL) {
 637                /* ignore merges */
 638                if (commit->parents && commit->parents->next)
 639                        continue;
 640
 641                add_commit_patch_id(commit, ids);
 642        }
 643
 644        /* reset for next revision walk */
 645        clear_commit_marks((struct commit *)o1,
 646                        SEEN | UNINTERESTING | SHOWN | ADDED);
 647        clear_commit_marks((struct commit *)o2,
 648                        SEEN | UNINTERESTING | SHOWN | ADDED);
 649        o1->flags = flags1;
 650        o2->flags = flags2;
 651}
 652
 653static void gen_message_id(struct rev_info *info, char *base)
 654{
 655        const char *committer = git_committer_info(IDENT_WARN_ON_NO_NAME);
 656        const char *email_start = strrchr(committer, '<');
 657        const char *email_end = strrchr(committer, '>');
 658        struct strbuf buf;
 659        if (!email_start || !email_end || email_start > email_end - 1)
 660                die("Could not extract email from committer identity.");
 661        strbuf_init(&buf, 0);
 662        strbuf_addf(&buf, "%s.%lu.git.%.*s", base,
 663                    (unsigned long) time(NULL),
 664                    (int)(email_end - email_start - 1), email_start + 1);
 665        info->message_id = strbuf_detach(&buf, NULL);
 666}
 667
 668static void make_cover_letter(struct rev_info *rev, int use_stdout,
 669                              int numbered, int numbered_files,
 670                              struct commit *origin,
 671                              int nr, struct commit **list, struct commit *head)
 672{
 673        const char *committer;
 674        char *head_sha1;
 675        const char *subject_start = NULL;
 676        const char *body = "*** SUBJECT HERE ***\n\n*** BLURB HERE ***\n";
 677        const char *msg;
 678        const char *extra_headers = rev->extra_headers;
 679        struct shortlog log;
 680        struct strbuf sb;
 681        int i;
 682        const char *encoding = "utf-8";
 683        struct diff_options opts;
 684        int need_8bit_cte = 0;
 685
 686        if (rev->commit_format != CMIT_FMT_EMAIL)
 687                die("Cover letter needs email format");
 688
 689        if (!use_stdout && reopen_stdout(numbered_files ?
 690                                NULL : "cover-letter", 0, rev->total))
 691                return;
 692
 693        head_sha1 = sha1_to_hex(head->object.sha1);
 694
 695        log_write_email_headers(rev, head_sha1, &subject_start, &extra_headers,
 696                                &need_8bit_cte);
 697
 698        committer = git_committer_info(0);
 699
 700        msg = body;
 701        strbuf_init(&sb, 0);
 702        pp_user_info(NULL, CMIT_FMT_EMAIL, &sb, committer, DATE_RFC2822,
 703                     encoding);
 704        pp_title_line(CMIT_FMT_EMAIL, &msg, &sb, subject_start, extra_headers,
 705                      encoding, need_8bit_cte);
 706        pp_remainder(CMIT_FMT_EMAIL, &msg, &sb, 0);
 707        printf("%s\n", sb.buf);
 708
 709        strbuf_release(&sb);
 710
 711        shortlog_init(&log);
 712        log.wrap_lines = 1;
 713        log.wrap = 72;
 714        log.in1 = 2;
 715        log.in2 = 4;
 716        for (i = 0; i < nr; i++)
 717                shortlog_add_commit(&log, list[i]);
 718
 719        shortlog_output(&log);
 720
 721        /*
 722         * We can only do diffstat with a unique reference point
 723         */
 724        if (!origin)
 725                return;
 726
 727        memcpy(&opts, &rev->diffopt, sizeof(opts));
 728        opts.output_format = DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
 729
 730        diff_setup_done(&opts);
 731
 732        diff_tree_sha1(origin->tree->object.sha1,
 733                       head->tree->object.sha1,
 734                       "", &opts);
 735        diffcore_std(&opts);
 736        diff_flush(&opts);
 737
 738        printf("\n");
 739}
 740
 741static const char *clean_message_id(const char *msg_id)
 742{
 743        char ch;
 744        const char *a, *z, *m;
 745
 746        m = msg_id;
 747        while ((ch = *m) && (isspace(ch) || (ch == '<')))
 748                m++;
 749        a = m;
 750        z = NULL;
 751        while ((ch = *m)) {
 752                if (!isspace(ch) && (ch != '>'))
 753                        z = m;
 754                m++;
 755        }
 756        if (!z)
 757                die("insane in-reply-to: %s", msg_id);
 758        if (++z == m)
 759                return a;
 760        return xmemdupz(a, z - a);
 761}
 762
 763int cmd_format_patch(int argc, const char **argv, const char *prefix)
 764{
 765        struct commit *commit;
 766        struct commit **list = NULL;
 767        struct rev_info rev;
 768        int nr = 0, total, i, j;
 769        int use_stdout = 0;
 770        int start_number = -1;
 771        int keep_subject = 0;
 772        int numbered_files = 0;         /* _just_ numbers */
 773        int subject_prefix = 0;
 774        int ignore_if_in_upstream = 0;
 775        int thread = 0;
 776        int cover_letter = 0;
 777        int boundary_count = 0;
 778        int no_binary_diff = 0;
 779        struct commit *origin = NULL, *head = NULL;
 780        const char *in_reply_to = NULL;
 781        struct patch_ids ids;
 782        char *add_signoff = NULL;
 783        struct strbuf buf;
 784
 785        git_config(git_format_config, NULL);
 786        init_revisions(&rev, prefix);
 787        rev.commit_format = CMIT_FMT_EMAIL;
 788        rev.verbose_header = 1;
 789        rev.diff = 1;
 790        rev.combine_merges = 0;
 791        rev.ignore_merges = 1;
 792        DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
 793
 794        rev.subject_prefix = fmt_patch_subject_prefix;
 795
 796        /*
 797         * Parse the arguments before setup_revisions(), or something
 798         * like "git format-patch -o a123 HEAD^.." may fail; a123 is
 799         * possibly a valid SHA1.
 800         */
 801        for (i = 1, j = 1; i < argc; i++) {
 802                if (!strcmp(argv[i], "--stdout"))
 803                        use_stdout = 1;
 804                else if (!strcmp(argv[i], "-n") ||
 805                                !strcmp(argv[i], "--numbered"))
 806                        numbered = 1;
 807                else if (!strcmp(argv[i], "-N") ||
 808                                !strcmp(argv[i], "--no-numbered")) {
 809                        numbered = 0;
 810                        auto_number = 0;
 811                }
 812                else if (!prefixcmp(argv[i], "--start-number="))
 813                        start_number = strtol(argv[i] + 15, NULL, 10);
 814                else if (!strcmp(argv[i], "--numbered-files"))
 815                        numbered_files = 1;
 816                else if (!strcmp(argv[i], "--start-number")) {
 817                        i++;
 818                        if (i == argc)
 819                                die("Need a number for --start-number");
 820                        start_number = strtol(argv[i], NULL, 10);
 821                }
 822                else if (!prefixcmp(argv[i], "--cc=")) {
 823                        ALLOC_GROW(extra_cc, extra_cc_nr + 1, extra_cc_alloc);
 824                        extra_cc[extra_cc_nr++] = xstrdup(argv[i] + 5);
 825                }
 826                else if (!strcmp(argv[i], "-k") ||
 827                                !strcmp(argv[i], "--keep-subject")) {
 828                        keep_subject = 1;
 829                        rev.total = -1;
 830                }
 831                else if (!strcmp(argv[i], "--output-directory") ||
 832                         !strcmp(argv[i], "-o")) {
 833                        i++;
 834                        if (argc <= i)
 835                                die("Which directory?");
 836                        if (output_directory)
 837                                die("Two output directories?");
 838                        output_directory = argv[i];
 839                }
 840                else if (!strcmp(argv[i], "--signoff") ||
 841                         !strcmp(argv[i], "-s")) {
 842                        const char *committer;
 843                        const char *endpos;
 844                        committer = git_committer_info(IDENT_ERROR_ON_NO_NAME);
 845                        endpos = strchr(committer, '>');
 846                        if (!endpos)
 847                                die("bogos committer info %s\n", committer);
 848                        add_signoff = xmemdupz(committer, endpos - committer + 1);
 849                }
 850                else if (!strcmp(argv[i], "--attach")) {
 851                        rev.mime_boundary = git_version_string;
 852                        rev.no_inline = 1;
 853                }
 854                else if (!prefixcmp(argv[i], "--attach=")) {
 855                        rev.mime_boundary = argv[i] + 9;
 856                        rev.no_inline = 1;
 857                }
 858                else if (!strcmp(argv[i], "--inline")) {
 859                        rev.mime_boundary = git_version_string;
 860                        rev.no_inline = 0;
 861                }
 862                else if (!prefixcmp(argv[i], "--inline=")) {
 863                        rev.mime_boundary = argv[i] + 9;
 864                        rev.no_inline = 0;
 865                }
 866                else if (!strcmp(argv[i], "--ignore-if-in-upstream"))
 867                        ignore_if_in_upstream = 1;
 868                else if (!strcmp(argv[i], "--thread"))
 869                        thread = 1;
 870                else if (!prefixcmp(argv[i], "--in-reply-to="))
 871                        in_reply_to = argv[i] + 14;
 872                else if (!strcmp(argv[i], "--in-reply-to")) {
 873                        i++;
 874                        if (i == argc)
 875                                die("Need a Message-Id for --in-reply-to");
 876                        in_reply_to = argv[i];
 877                } else if (!prefixcmp(argv[i], "--subject-prefix=")) {
 878                        subject_prefix = 1;
 879                        rev.subject_prefix = argv[i] + 17;
 880                } else if (!prefixcmp(argv[i], "--suffix="))
 881                        fmt_patch_suffix = argv[i] + 9;
 882                else if (!strcmp(argv[i], "--cover-letter"))
 883                        cover_letter = 1;
 884                else if (!strcmp(argv[i], "--no-binary"))
 885                        no_binary_diff = 1;
 886                else
 887                        argv[j++] = argv[i];
 888        }
 889        argc = j;
 890
 891        strbuf_init(&buf, 0);
 892
 893        for (i = 0; i < extra_hdr_nr; i++) {
 894                strbuf_addstr(&buf, extra_hdr[i]);
 895                strbuf_addch(&buf, '\n');
 896        }
 897
 898        if (extra_to_nr)
 899                strbuf_addstr(&buf, "To: ");
 900        for (i = 0; i < extra_to_nr; i++) {
 901                if (i)
 902                        strbuf_addstr(&buf, "    ");
 903                strbuf_addstr(&buf, extra_to[i]);
 904                if (i + 1 < extra_to_nr)
 905                        strbuf_addch(&buf, ',');
 906                strbuf_addch(&buf, '\n');
 907        }
 908
 909        if (extra_cc_nr)
 910                strbuf_addstr(&buf, "Cc: ");
 911        for (i = 0; i < extra_cc_nr; i++) {
 912                if (i)
 913                        strbuf_addstr(&buf, "    ");
 914                strbuf_addstr(&buf, extra_cc[i]);
 915                if (i + 1 < extra_cc_nr)
 916                        strbuf_addch(&buf, ',');
 917                strbuf_addch(&buf, '\n');
 918        }
 919
 920        rev.extra_headers = strbuf_detach(&buf, 0);
 921
 922        if (start_number < 0)
 923                start_number = 1;
 924        if (numbered && keep_subject)
 925                die ("-n and -k are mutually exclusive.");
 926        if (keep_subject && subject_prefix)
 927                die ("--subject-prefix and -k are mutually exclusive.");
 928        if (numbered_files && use_stdout)
 929                die ("--numbered-files and --stdout are mutually exclusive.");
 930
 931        argc = setup_revisions(argc, argv, &rev, "HEAD");
 932        if (argc > 1)
 933                die ("unrecognized argument: %s", argv[1]);
 934
 935        if (!rev.diffopt.output_format)
 936                rev.diffopt.output_format = DIFF_FORMAT_DIFFSTAT | DIFF_FORMAT_SUMMARY | DIFF_FORMAT_PATCH;
 937
 938        if (!DIFF_OPT_TST(&rev.diffopt, TEXT) && !no_binary_diff)
 939                DIFF_OPT_SET(&rev.diffopt, BINARY);
 940
 941        if (!output_directory && !use_stdout)
 942                output_directory = prefix;
 943
 944        if (output_directory) {
 945                if (use_stdout)
 946                        die("standard output, or directory, which one?");
 947                if (mkdir(output_directory, 0777) < 0 && errno != EEXIST)
 948                        die("Could not create directory %s",
 949                            output_directory);
 950        }
 951
 952        if (rev.pending.nr == 1) {
 953                if (rev.max_count < 0 && !rev.show_root_diff) {
 954                        /*
 955                         * This is traditional behaviour of "git format-patch
 956                         * origin" that prepares what the origin side still
 957                         * does not have.
 958                         */
 959                        rev.pending.objects[0].item->flags |= UNINTERESTING;
 960                        add_head_to_pending(&rev);
 961                }
 962                /*
 963                 * Otherwise, it is "format-patch -22 HEAD", and/or
 964                 * "format-patch --root HEAD".  The user wants
 965                 * get_revision() to do the usual traversal.
 966                 */
 967        }
 968        if (cover_letter) {
 969                /* remember the range */
 970                int i;
 971                for (i = 0; i < rev.pending.nr; i++) {
 972                        struct object *o = rev.pending.objects[i].item;
 973                        if (!(o->flags & UNINTERESTING))
 974                                head = (struct commit *)o;
 975                }
 976                /* We can't generate a cover letter without any patches */
 977                if (!head)
 978                        return 0;
 979        }
 980
 981        if (ignore_if_in_upstream)
 982                get_patch_ids(&rev, &ids, prefix);
 983
 984        if (!use_stdout)
 985                realstdout = xfdopen(xdup(1), "w");
 986
 987        if (prepare_revision_walk(&rev))
 988                die("revision walk setup failed");
 989        rev.boundary = 1;
 990        while ((commit = get_revision(&rev)) != NULL) {
 991                if (commit->object.flags & BOUNDARY) {
 992                        boundary_count++;
 993                        origin = (boundary_count == 1) ? commit : NULL;
 994                        continue;
 995                }
 996
 997                /* ignore merges */
 998                if (commit->parents && commit->parents->next)
 999                        continue;
1000
1001                if (ignore_if_in_upstream &&
1002                                has_commit_patch_id(commit, &ids))
1003                        continue;
1004
1005                nr++;
1006                list = xrealloc(list, nr * sizeof(list[0]));
1007                list[nr - 1] = commit;
1008        }
1009        total = nr;
1010        if (!keep_subject && auto_number && total > 1)
1011                numbered = 1;
1012        if (numbered)
1013                rev.total = total + start_number - 1;
1014        if (in_reply_to)
1015                rev.ref_message_id = clean_message_id(in_reply_to);
1016        if (cover_letter) {
1017                if (thread)
1018                        gen_message_id(&rev, "cover");
1019                make_cover_letter(&rev, use_stdout, numbered, numbered_files,
1020                                  origin, nr, list, head);
1021                total++;
1022                start_number--;
1023        }
1024        rev.add_signoff = add_signoff;
1025        while (0 <= --nr) {
1026                int shown;
1027                commit = list[nr];
1028                rev.nr = total - nr + (start_number - 1);
1029                /* Make the second and subsequent mails replies to the first */
1030                if (thread) {
1031                        /* Have we already had a message ID? */
1032                        if (rev.message_id) {
1033                                /*
1034                                 * If we've got the ID to be a reply
1035                                 * to, discard the current ID;
1036                                 * otherwise, make everything a reply
1037                                 * to that.
1038                                 */
1039                                if (rev.ref_message_id)
1040                                        free(rev.message_id);
1041                                else
1042                                        rev.ref_message_id = rev.message_id;
1043                        }
1044                        gen_message_id(&rev, sha1_to_hex(commit->object.sha1));
1045                }
1046                if (!use_stdout && reopen_stdout(numbered_files ? NULL :
1047                                get_oneline_for_filename(commit, keep_subject),
1048                                rev.nr, rev.total))
1049                        die("Failed to create output files");
1050                shown = log_tree_commit(&rev, commit);
1051                free(commit->buffer);
1052                commit->buffer = NULL;
1053
1054                /* We put one extra blank line between formatted
1055                 * patches and this flag is used by log-tree code
1056                 * to see if it needs to emit a LF before showing
1057                 * the log; when using one file per patch, we do
1058                 * not want the extra blank line.
1059                 */
1060                if (!use_stdout)
1061                        rev.shown_one = 0;
1062                if (shown) {
1063                        if (rev.mime_boundary)
1064                                printf("\n--%s%s--\n\n\n",
1065                                       mime_boundary_leader,
1066                                       rev.mime_boundary);
1067                        else
1068                                printf("-- \n%s\n\n", git_version_string);
1069                }
1070                if (!use_stdout)
1071                        fclose(stdout);
1072        }
1073        free(list);
1074        if (ignore_if_in_upstream)
1075                free_patch_ids(&ids);
1076        return 0;
1077}
1078
1079static int add_pending_commit(const char *arg, struct rev_info *revs, int flags)
1080{
1081        unsigned char sha1[20];
1082        if (get_sha1(arg, sha1) == 0) {
1083                struct commit *commit = lookup_commit_reference(sha1);
1084                if (commit) {
1085                        commit->object.flags |= flags;
1086                        add_pending_object(revs, &commit->object, arg);
1087                        return 0;
1088                }
1089        }
1090        return -1;
1091}
1092
1093static const char cherry_usage[] =
1094"git cherry [-v] <upstream> [<head>] [<limit>]";
1095int cmd_cherry(int argc, const char **argv, const char *prefix)
1096{
1097        struct rev_info revs;
1098        struct patch_ids ids;
1099        struct commit *commit;
1100        struct commit_list *list = NULL;
1101        const char *upstream;
1102        const char *head = "HEAD";
1103        const char *limit = NULL;
1104        int verbose = 0;
1105
1106        if (argc > 1 && !strcmp(argv[1], "-v")) {
1107                verbose = 1;
1108                argc--;
1109                argv++;
1110        }
1111
1112        switch (argc) {
1113        case 4:
1114                limit = argv[3];
1115                /* FALLTHROUGH */
1116        case 3:
1117                head = argv[2];
1118                /* FALLTHROUGH */
1119        case 2:
1120                upstream = argv[1];
1121                break;
1122        default:
1123                usage(cherry_usage);
1124        }
1125
1126        init_revisions(&revs, prefix);
1127        revs.diff = 1;
1128        revs.combine_merges = 0;
1129        revs.ignore_merges = 1;
1130        DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
1131
1132        if (add_pending_commit(head, &revs, 0))
1133                die("Unknown commit %s", head);
1134        if (add_pending_commit(upstream, &revs, UNINTERESTING))
1135                die("Unknown commit %s", upstream);
1136
1137        /* Don't say anything if head and upstream are the same. */
1138        if (revs.pending.nr == 2) {
1139                struct object_array_entry *o = revs.pending.objects;
1140                if (hashcmp(o[0].item->sha1, o[1].item->sha1) == 0)
1141                        return 0;
1142        }
1143
1144        get_patch_ids(&revs, &ids, prefix);
1145
1146        if (limit && add_pending_commit(limit, &revs, UNINTERESTING))
1147                die("Unknown commit %s", limit);
1148
1149        /* reverse the list of commits */
1150        if (prepare_revision_walk(&revs))
1151                die("revision walk setup failed");
1152        while ((commit = get_revision(&revs)) != NULL) {
1153                /* ignore merges */
1154                if (commit->parents && commit->parents->next)
1155                        continue;
1156
1157                commit_list_insert(commit, &list);
1158        }
1159
1160        while (list) {
1161                char sign = '+';
1162
1163                commit = list->item;
1164                if (has_commit_patch_id(commit, &ids))
1165                        sign = '-';
1166
1167                if (verbose) {
1168                        struct strbuf buf;
1169                        strbuf_init(&buf, 0);
1170                        pretty_print_commit(CMIT_FMT_ONELINE, commit,
1171                                            &buf, 0, NULL, NULL, 0, 0);
1172                        printf("%c %s %s\n", sign,
1173                               sha1_to_hex(commit->object.sha1), buf.buf);
1174                        strbuf_release(&buf);
1175                }
1176                else {
1177                        printf("%c %s\n", sign,
1178                               sha1_to_hex(commit->object.sha1));
1179                }
1180
1181                list = list->next;
1182        }
1183
1184        free_patch_ids(&ids);
1185        return 0;
1186}