revision.con commit revision.c: Make --full-history consider more merges (d0af663)
   1#include "cache.h"
   2#include "tag.h"
   3#include "blob.h"
   4#include "tree.h"
   5#include "commit.h"
   6#include "diff.h"
   7#include "refs.h"
   8#include "revision.h"
   9#include "graph.h"
  10#include "grep.h"
  11#include "reflog-walk.h"
  12#include "patch-ids.h"
  13#include "decorate.h"
  14#include "log-tree.h"
  15#include "string-list.h"
  16#include "mailmap.h"
  17
  18volatile show_early_output_fn_t show_early_output;
  19
  20char *path_name(const struct name_path *path, const char *name)
  21{
  22        const struct name_path *p;
  23        char *n, *m;
  24        int nlen = strlen(name);
  25        int len = nlen + 1;
  26
  27        for (p = path; p; p = p->up) {
  28                if (p->elem_len)
  29                        len += p->elem_len + 1;
  30        }
  31        n = xmalloc(len);
  32        m = n + len - (nlen + 1);
  33        strcpy(m, name);
  34        for (p = path; p; p = p->up) {
  35                if (p->elem_len) {
  36                        m -= p->elem_len + 1;
  37                        memcpy(m, p->elem, p->elem_len);
  38                        m[p->elem_len] = '/';
  39                }
  40        }
  41        return n;
  42}
  43
  44static int show_path_component_truncated(FILE *out, const char *name, int len)
  45{
  46        int cnt;
  47        for (cnt = 0; cnt < len; cnt++) {
  48                int ch = name[cnt];
  49                if (!ch || ch == '\n')
  50                        return -1;
  51                fputc(ch, out);
  52        }
  53        return len;
  54}
  55
  56static int show_path_truncated(FILE *out, const struct name_path *path)
  57{
  58        int emitted, ours;
  59
  60        if (!path)
  61                return 0;
  62        emitted = show_path_truncated(out, path->up);
  63        if (emitted < 0)
  64                return emitted;
  65        if (emitted)
  66                fputc('/', out);
  67        ours = show_path_component_truncated(out, path->elem, path->elem_len);
  68        if (ours < 0)
  69                return ours;
  70        return ours || emitted;
  71}
  72
  73void show_object_with_name(FILE *out, struct object *obj, const struct name_path *path, const char *component)
  74{
  75        struct name_path leaf;
  76        leaf.up = (struct name_path *)path;
  77        leaf.elem = component;
  78        leaf.elem_len = strlen(component);
  79
  80        fprintf(out, "%s ", sha1_to_hex(obj->sha1));
  81        show_path_truncated(out, &leaf);
  82        fputc('\n', out);
  83}
  84
  85void add_object(struct object *obj,
  86                struct object_array *p,
  87                struct name_path *path,
  88                const char *name)
  89{
  90        add_object_array(obj, path_name(path, name), p);
  91}
  92
  93static void mark_blob_uninteresting(struct blob *blob)
  94{
  95        if (!blob)
  96                return;
  97        if (blob->object.flags & UNINTERESTING)
  98                return;
  99        blob->object.flags |= UNINTERESTING;
 100}
 101
 102void mark_tree_uninteresting(struct tree *tree)
 103{
 104        struct tree_desc desc;
 105        struct name_entry entry;
 106        struct object *obj = &tree->object;
 107
 108        if (!tree)
 109                return;
 110        if (obj->flags & UNINTERESTING)
 111                return;
 112        obj->flags |= UNINTERESTING;
 113        if (!has_sha1_file(obj->sha1))
 114                return;
 115        if (parse_tree(tree) < 0)
 116                die("bad tree %s", sha1_to_hex(obj->sha1));
 117
 118        init_tree_desc(&desc, tree->buffer, tree->size);
 119        while (tree_entry(&desc, &entry)) {
 120                switch (object_type(entry.mode)) {
 121                case OBJ_TREE:
 122                        mark_tree_uninteresting(lookup_tree(entry.sha1));
 123                        break;
 124                case OBJ_BLOB:
 125                        mark_blob_uninteresting(lookup_blob(entry.sha1));
 126                        break;
 127                default:
 128                        /* Subproject commit - not in this repository */
 129                        break;
 130                }
 131        }
 132
 133        /*
 134         * We don't care about the tree any more
 135         * after it has been marked uninteresting.
 136         */
 137        free(tree->buffer);
 138        tree->buffer = NULL;
 139}
 140
 141void mark_parents_uninteresting(struct commit *commit)
 142{
 143        struct commit_list *parents = NULL, *l;
 144
 145        for (l = commit->parents; l; l = l->next)
 146                commit_list_insert(l->item, &parents);
 147
 148        while (parents) {
 149                struct commit *commit = parents->item;
 150                l = parents;
 151                parents = parents->next;
 152                free(l);
 153
 154                while (commit) {
 155                        /*
 156                         * A missing commit is ok iff its parent is marked
 157                         * uninteresting.
 158                         *
 159                         * We just mark such a thing parsed, so that when
 160                         * it is popped next time around, we won't be trying
 161                         * to parse it and get an error.
 162                         */
 163                        if (!has_sha1_file(commit->object.sha1))
 164                                commit->object.parsed = 1;
 165
 166                        if (commit->object.flags & UNINTERESTING)
 167                                break;
 168
 169                        commit->object.flags |= UNINTERESTING;
 170
 171                        /*
 172                         * Normally we haven't parsed the parent
 173                         * yet, so we won't have a parent of a parent
 174                         * here. However, it may turn out that we've
 175                         * reached this commit some other way (where it
 176                         * wasn't uninteresting), in which case we need
 177                         * to mark its parents recursively too..
 178                         */
 179                        if (!commit->parents)
 180                                break;
 181
 182                        for (l = commit->parents->next; l; l = l->next)
 183                                commit_list_insert(l->item, &parents);
 184                        commit = commit->parents->item;
 185                }
 186        }
 187}
 188
 189static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode)
 190{
 191        if (!obj)
 192                return;
 193        if (revs->no_walk && (obj->flags & UNINTERESTING))
 194                revs->no_walk = 0;
 195        if (revs->reflog_info && obj->type == OBJ_COMMIT) {
 196                struct strbuf buf = STRBUF_INIT;
 197                int len = interpret_branch_name(name, &buf);
 198                int st;
 199
 200                if (0 < len && name[len] && buf.len)
 201                        strbuf_addstr(&buf, name + len);
 202                st = add_reflog_for_walk(revs->reflog_info,
 203                                         (struct commit *)obj,
 204                                         buf.buf[0] ? buf.buf: name);
 205                strbuf_release(&buf);
 206                if (st)
 207                        return;
 208        }
 209        add_object_array_with_mode(obj, name, &revs->pending, mode);
 210}
 211
 212void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
 213{
 214        add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
 215}
 216
 217void add_head_to_pending(struct rev_info *revs)
 218{
 219        unsigned char sha1[20];
 220        struct object *obj;
 221        if (get_sha1("HEAD", sha1))
 222                return;
 223        obj = parse_object(sha1);
 224        if (!obj)
 225                return;
 226        add_pending_object(revs, obj, "HEAD");
 227}
 228
 229static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags)
 230{
 231        struct object *object;
 232
 233        object = parse_object(sha1);
 234        if (!object) {
 235                if (revs->ignore_missing)
 236                        return object;
 237                die("bad object %s", name);
 238        }
 239        object->flags |= flags;
 240        return object;
 241}
 242
 243void add_pending_sha1(struct rev_info *revs, const char *name,
 244                      const unsigned char *sha1, unsigned int flags)
 245{
 246        struct object *object = get_reference(revs, name, sha1, flags);
 247        add_pending_object(revs, object, name);
 248}
 249
 250static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
 251{
 252        unsigned long flags = object->flags;
 253
 254        /*
 255         * Tag object? Look what it points to..
 256         */
 257        while (object->type == OBJ_TAG) {
 258                struct tag *tag = (struct tag *) object;
 259                if (revs->tag_objects && !(flags & UNINTERESTING))
 260                        add_pending_object(revs, object, tag->tag);
 261                if (!tag->tagged)
 262                        die("bad tag");
 263                object = parse_object(tag->tagged->sha1);
 264                if (!object) {
 265                        if (flags & UNINTERESTING)
 266                                return NULL;
 267                        die("bad object %s", sha1_to_hex(tag->tagged->sha1));
 268                }
 269        }
 270
 271        /*
 272         * Commit object? Just return it, we'll do all the complex
 273         * reachability crud.
 274         */
 275        if (object->type == OBJ_COMMIT) {
 276                struct commit *commit = (struct commit *)object;
 277                if (parse_commit(commit) < 0)
 278                        die("unable to parse commit %s", name);
 279                if (flags & UNINTERESTING) {
 280                        commit->object.flags |= UNINTERESTING;
 281                        mark_parents_uninteresting(commit);
 282                        revs->limited = 1;
 283                }
 284                if (revs->show_source && !commit->util)
 285                        commit->util = (void *) name;
 286                return commit;
 287        }
 288
 289        /*
 290         * Tree object? Either mark it uninteresting, or add it
 291         * to the list of objects to look at later..
 292         */
 293        if (object->type == OBJ_TREE) {
 294                struct tree *tree = (struct tree *)object;
 295                if (!revs->tree_objects)
 296                        return NULL;
 297                if (flags & UNINTERESTING) {
 298                        mark_tree_uninteresting(tree);
 299                        return NULL;
 300                }
 301                add_pending_object(revs, object, "");
 302                return NULL;
 303        }
 304
 305        /*
 306         * Blob object? You know the drill by now..
 307         */
 308        if (object->type == OBJ_BLOB) {
 309                struct blob *blob = (struct blob *)object;
 310                if (!revs->blob_objects)
 311                        return NULL;
 312                if (flags & UNINTERESTING) {
 313                        mark_blob_uninteresting(blob);
 314                        return NULL;
 315                }
 316                add_pending_object(revs, object, "");
 317                return NULL;
 318        }
 319        die("%s is unknown object", name);
 320}
 321
 322static int everybody_uninteresting(struct commit_list *orig)
 323{
 324        struct commit_list *list = orig;
 325        while (list) {
 326                struct commit *commit = list->item;
 327                list = list->next;
 328                if (commit->object.flags & UNINTERESTING)
 329                        continue;
 330                return 0;
 331        }
 332        return 1;
 333}
 334
 335/*
 336 * The goal is to get REV_TREE_NEW as the result only if the
 337 * diff consists of all '+' (and no other changes), REV_TREE_OLD
 338 * if the whole diff is removal of old data, and otherwise
 339 * REV_TREE_DIFFERENT (of course if the trees are the same we
 340 * want REV_TREE_SAME).
 341 * That means that once we get to REV_TREE_DIFFERENT, we do not
 342 * have to look any further.
 343 */
 344static int tree_difference = REV_TREE_SAME;
 345
 346static void file_add_remove(struct diff_options *options,
 347                    int addremove, unsigned mode,
 348                    const unsigned char *sha1,
 349                    int sha1_valid,
 350                    const char *fullpath, unsigned dirty_submodule)
 351{
 352        int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
 353
 354        tree_difference |= diff;
 355        if (tree_difference == REV_TREE_DIFFERENT)
 356                DIFF_OPT_SET(options, HAS_CHANGES);
 357}
 358
 359static void file_change(struct diff_options *options,
 360                 unsigned old_mode, unsigned new_mode,
 361                 const unsigned char *old_sha1,
 362                 const unsigned char *new_sha1,
 363                 int old_sha1_valid, int new_sha1_valid,
 364                 const char *fullpath,
 365                 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
 366{
 367        tree_difference = REV_TREE_DIFFERENT;
 368        DIFF_OPT_SET(options, HAS_CHANGES);
 369}
 370
 371static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
 372{
 373        struct tree *t1 = parent->tree;
 374        struct tree *t2 = commit->tree;
 375
 376        if (!t1)
 377                return REV_TREE_NEW;
 378        if (!t2)
 379                return REV_TREE_OLD;
 380
 381        if (revs->simplify_by_decoration) {
 382                /*
 383                 * If we are simplifying by decoration, then the commit
 384                 * is worth showing if it has a tag pointing at it.
 385                 */
 386                if (lookup_decoration(&name_decoration, &commit->object))
 387                        return REV_TREE_DIFFERENT;
 388                /*
 389                 * A commit that is not pointed by a tag is uninteresting
 390                 * if we are not limited by path.  This means that you will
 391                 * see the usual "commits that touch the paths" plus any
 392                 * tagged commit by specifying both --simplify-by-decoration
 393                 * and pathspec.
 394                 */
 395                if (!revs->prune_data.nr)
 396                        return REV_TREE_SAME;
 397        }
 398
 399        tree_difference = REV_TREE_SAME;
 400        DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
 401        if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
 402                           &revs->pruning) < 0)
 403                return REV_TREE_DIFFERENT;
 404        return tree_difference;
 405}
 406
 407static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
 408{
 409        int retval;
 410        void *tree;
 411        unsigned long size;
 412        struct tree_desc empty, real;
 413        struct tree *t1 = commit->tree;
 414
 415        if (!t1)
 416                return 0;
 417
 418        tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
 419        if (!tree)
 420                return 0;
 421        init_tree_desc(&real, tree, size);
 422        init_tree_desc(&empty, "", 0);
 423
 424        tree_difference = REV_TREE_SAME;
 425        DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
 426        retval = diff_tree(&empty, &real, "", &revs->pruning);
 427        free(tree);
 428
 429        return retval >= 0 && (tree_difference == REV_TREE_SAME);
 430}
 431
 432struct treesame_state {
 433        unsigned int nparents;
 434        unsigned char treesame[FLEX_ARRAY];
 435};
 436
 437static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
 438{
 439        unsigned n = commit_list_count(commit->parents);
 440        struct treesame_state *st = xcalloc(1, sizeof(*st) + n);
 441        st->nparents = n;
 442        add_decoration(&revs->treesame, &commit->object, st);
 443        return st;
 444}
 445
 446/*
 447 * Must be called immediately after removing the nth_parent from a commit's
 448 * parent list, if we are maintaining the per-parent treesame[] decoration.
 449 * This does not recalculate the master TREESAME flag - update_treesame()
 450 * should be called to update it after a sequence of treesame[] modifications
 451 * that may have affected it.
 452 */
 453static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
 454{
 455        struct treesame_state *st;
 456        int old_same;
 457
 458        if (!commit->parents) {
 459                /*
 460                 * Have just removed the only parent from a non-merge.
 461                 * Different handling, as we lack decoration.
 462                 */
 463                if (nth_parent != 0)
 464                        die("compact_treesame %u", nth_parent);
 465                old_same = !!(commit->object.flags & TREESAME);
 466                if (rev_same_tree_as_empty(revs, commit))
 467                        commit->object.flags |= TREESAME;
 468                else
 469                        commit->object.flags &= ~TREESAME;
 470                return old_same;
 471        }
 472
 473        st = lookup_decoration(&revs->treesame, &commit->object);
 474        if (!st || nth_parent >= st->nparents)
 475                die("compact_treesame %u", nth_parent);
 476
 477        old_same = st->treesame[nth_parent];
 478        memmove(st->treesame + nth_parent,
 479                st->treesame + nth_parent + 1,
 480                st->nparents - nth_parent - 1);
 481
 482        /*
 483         * If we've just become a non-merge commit, update TREESAME
 484         * immediately, and remove the no-longer-needed decoration.
 485         * If still a merge, defer update until update_treesame().
 486         */
 487        if (--st->nparents == 1) {
 488                if (commit->parents->next)
 489                        die("compact_treesame parents mismatch");
 490                if (st->treesame[0] && revs->dense)
 491                        commit->object.flags |= TREESAME;
 492                else
 493                        commit->object.flags &= ~TREESAME;
 494                free(add_decoration(&revs->treesame, &commit->object, NULL));
 495        }
 496
 497        return old_same;
 498}
 499
 500static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
 501{
 502        if (commit->parents && commit->parents->next) {
 503                unsigned n;
 504                struct treesame_state *st;
 505
 506                st = lookup_decoration(&revs->treesame, &commit->object);
 507                if (!st)
 508                        die("update_treesame %s", sha1_to_hex(commit->object.sha1));
 509                commit->object.flags |= TREESAME;
 510                for (n = 0; n < st->nparents; n++) {
 511                        if (!st->treesame[n]) {
 512                                commit->object.flags &= ~TREESAME;
 513                                break;
 514                        }
 515                }
 516        }
 517
 518        return commit->object.flags & TREESAME;
 519}
 520
 521static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
 522{
 523        struct commit_list **pp, *parent;
 524        struct treesame_state *ts = NULL;
 525        int tree_changed = 0, nth_parent;
 526
 527        /*
 528         * If we don't do pruning, everything is interesting
 529         */
 530        if (!revs->prune)
 531                return;
 532
 533        if (!commit->tree)
 534                return;
 535
 536        if (!commit->parents) {
 537                if (rev_same_tree_as_empty(revs, commit))
 538                        commit->object.flags |= TREESAME;
 539                return;
 540        }
 541
 542        /*
 543         * Normal non-merge commit? If we don't want to make the
 544         * history dense, we consider it always to be a change..
 545         */
 546        if (!revs->dense && !commit->parents->next)
 547                return;
 548
 549        for (pp = &commit->parents, nth_parent = 0;
 550             (parent = *pp) != NULL;
 551             pp = &parent->next, nth_parent++) {
 552                struct commit *p = parent->item;
 553
 554                if (nth_parent == 1) {
 555                        /*
 556                         * This our second loop iteration - so we now know
 557                         * we're dealing with a merge.
 558                         *
 559                         * Do not compare with later parents when we care only about
 560                         * the first parent chain, in order to avoid derailing the
 561                         * traversal to follow a side branch that brought everything
 562                         * in the path we are limited to by the pathspec.
 563                         */
 564                        if (revs->first_parent_only)
 565                                break;
 566                        /*
 567                         * If this will remain a potentially-simplifiable
 568                         * merge, remember per-parent treesame if needed.
 569                         * Initialise the array with the comparison from our
 570                         * first iteration.
 571                         */
 572                        if (revs->treesame.name &&
 573                            !revs->simplify_history &&
 574                            !(commit->object.flags & UNINTERESTING)) {
 575                                ts = initialise_treesame(revs, commit);
 576                                if (!tree_changed)
 577                                        ts->treesame[0] = 1;
 578                        }
 579                }
 580                if (parse_commit(p) < 0)
 581                        die("cannot simplify commit %s (because of %s)",
 582                            sha1_to_hex(commit->object.sha1),
 583                            sha1_to_hex(p->object.sha1));
 584                switch (rev_compare_tree(revs, p, commit)) {
 585                case REV_TREE_SAME:
 586                        if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
 587                                /* Even if a merge with an uninteresting
 588                                 * side branch brought the entire change
 589                                 * we are interested in, we do not want
 590                                 * to lose the other branches of this
 591                                 * merge, so we just keep going.
 592                                 */
 593                                if (ts)
 594                                        ts->treesame[nth_parent] = 1;
 595                                continue;
 596                        }
 597                        parent->next = NULL;
 598                        commit->parents = parent;
 599                        commit->object.flags |= TREESAME;
 600                        return;
 601
 602                case REV_TREE_NEW:
 603                        if (revs->remove_empty_trees &&
 604                            rev_same_tree_as_empty(revs, p)) {
 605                                /* We are adding all the specified
 606                                 * paths from this parent, so the
 607                                 * history beyond this parent is not
 608                                 * interesting.  Remove its parents
 609                                 * (they are grandparents for us).
 610                                 * IOW, we pretend this parent is a
 611                                 * "root" commit.
 612                                 */
 613                                if (parse_commit(p) < 0)
 614                                        die("cannot simplify commit %s (invalid %s)",
 615                                            sha1_to_hex(commit->object.sha1),
 616                                            sha1_to_hex(p->object.sha1));
 617                                p->parents = NULL;
 618                        }
 619                /* fallthrough */
 620                case REV_TREE_OLD:
 621                case REV_TREE_DIFFERENT:
 622                        tree_changed = 1;
 623                        continue;
 624                }
 625                die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
 626        }
 627        if (tree_changed)
 628                return;
 629        commit->object.flags |= TREESAME;
 630}
 631
 632static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
 633                    struct commit_list *cached_base, struct commit_list **cache)
 634{
 635        struct commit_list *new_entry;
 636
 637        if (cached_base && p->date < cached_base->item->date)
 638                new_entry = commit_list_insert_by_date(p, &cached_base->next);
 639        else
 640                new_entry = commit_list_insert_by_date(p, head);
 641
 642        if (cache && (!*cache || p->date < (*cache)->item->date))
 643                *cache = new_entry;
 644}
 645
 646static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
 647                    struct commit_list **list, struct commit_list **cache_ptr)
 648{
 649        struct commit_list *parent = commit->parents;
 650        unsigned left_flag;
 651        struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
 652
 653        if (commit->object.flags & ADDED)
 654                return 0;
 655        commit->object.flags |= ADDED;
 656
 657        /*
 658         * If the commit is uninteresting, don't try to
 659         * prune parents - we want the maximal uninteresting
 660         * set.
 661         *
 662         * Normally we haven't parsed the parent
 663         * yet, so we won't have a parent of a parent
 664         * here. However, it may turn out that we've
 665         * reached this commit some other way (where it
 666         * wasn't uninteresting), in which case we need
 667         * to mark its parents recursively too..
 668         */
 669        if (commit->object.flags & UNINTERESTING) {
 670                while (parent) {
 671                        struct commit *p = parent->item;
 672                        parent = parent->next;
 673                        if (p)
 674                                p->object.flags |= UNINTERESTING;
 675                        if (parse_commit(p) < 0)
 676                                continue;
 677                        if (p->parents)
 678                                mark_parents_uninteresting(p);
 679                        if (p->object.flags & SEEN)
 680                                continue;
 681                        p->object.flags |= SEEN;
 682                        commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
 683                }
 684                return 0;
 685        }
 686
 687        /*
 688         * Ok, the commit wasn't uninteresting. Try to
 689         * simplify the commit history and find the parent
 690         * that has no differences in the path set if one exists.
 691         */
 692        try_to_simplify_commit(revs, commit);
 693
 694        if (revs->no_walk)
 695                return 0;
 696
 697        left_flag = (commit->object.flags & SYMMETRIC_LEFT);
 698
 699        for (parent = commit->parents; parent; parent = parent->next) {
 700                struct commit *p = parent->item;
 701
 702                if (parse_commit(p) < 0)
 703                        return -1;
 704                if (revs->show_source && !p->util)
 705                        p->util = commit->util;
 706                p->object.flags |= left_flag;
 707                if (!(p->object.flags & SEEN)) {
 708                        p->object.flags |= SEEN;
 709                        commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
 710                }
 711                if (revs->first_parent_only)
 712                        break;
 713        }
 714        return 0;
 715}
 716
 717static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
 718{
 719        struct commit_list *p;
 720        int left_count = 0, right_count = 0;
 721        int left_first;
 722        struct patch_ids ids;
 723        unsigned cherry_flag;
 724
 725        /* First count the commits on the left and on the right */
 726        for (p = list; p; p = p->next) {
 727                struct commit *commit = p->item;
 728                unsigned flags = commit->object.flags;
 729                if (flags & BOUNDARY)
 730                        ;
 731                else if (flags & SYMMETRIC_LEFT)
 732                        left_count++;
 733                else
 734                        right_count++;
 735        }
 736
 737        if (!left_count || !right_count)
 738                return;
 739
 740        left_first = left_count < right_count;
 741        init_patch_ids(&ids);
 742        ids.diffopts.pathspec = revs->diffopt.pathspec;
 743
 744        /* Compute patch-ids for one side */
 745        for (p = list; p; p = p->next) {
 746                struct commit *commit = p->item;
 747                unsigned flags = commit->object.flags;
 748
 749                if (flags & BOUNDARY)
 750                        continue;
 751                /*
 752                 * If we have fewer left, left_first is set and we omit
 753                 * commits on the right branch in this loop.  If we have
 754                 * fewer right, we skip the left ones.
 755                 */
 756                if (left_first != !!(flags & SYMMETRIC_LEFT))
 757                        continue;
 758                commit->util = add_commit_patch_id(commit, &ids);
 759        }
 760
 761        /* either cherry_mark or cherry_pick are true */
 762        cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
 763
 764        /* Check the other side */
 765        for (p = list; p; p = p->next) {
 766                struct commit *commit = p->item;
 767                struct patch_id *id;
 768                unsigned flags = commit->object.flags;
 769
 770                if (flags & BOUNDARY)
 771                        continue;
 772                /*
 773                 * If we have fewer left, left_first is set and we omit
 774                 * commits on the left branch in this loop.
 775                 */
 776                if (left_first == !!(flags & SYMMETRIC_LEFT))
 777                        continue;
 778
 779                /*
 780                 * Have we seen the same patch id?
 781                 */
 782                id = has_commit_patch_id(commit, &ids);
 783                if (!id)
 784                        continue;
 785                id->seen = 1;
 786                commit->object.flags |= cherry_flag;
 787        }
 788
 789        /* Now check the original side for seen ones */
 790        for (p = list; p; p = p->next) {
 791                struct commit *commit = p->item;
 792                struct patch_id *ent;
 793
 794                ent = commit->util;
 795                if (!ent)
 796                        continue;
 797                if (ent->seen)
 798                        commit->object.flags |= cherry_flag;
 799                commit->util = NULL;
 800        }
 801
 802        free_patch_ids(&ids);
 803}
 804
 805/* How many extra uninteresting commits we want to see.. */
 806#define SLOP 5
 807
 808static int still_interesting(struct commit_list *src, unsigned long date, int slop)
 809{
 810        /*
 811         * No source list at all? We're definitely done..
 812         */
 813        if (!src)
 814                return 0;
 815
 816        /*
 817         * Does the destination list contain entries with a date
 818         * before the source list? Definitely _not_ done.
 819         */
 820        if (date <= src->item->date)
 821                return SLOP;
 822
 823        /*
 824         * Does the source list still have interesting commits in
 825         * it? Definitely not done..
 826         */
 827        if (!everybody_uninteresting(src))
 828                return SLOP;
 829
 830        /* Ok, we're closing in.. */
 831        return slop-1;
 832}
 833
 834/*
 835 * "rev-list --ancestry-path A..B" computes commits that are ancestors
 836 * of B but not ancestors of A but further limits the result to those
 837 * that are descendants of A.  This takes the list of bottom commits and
 838 * the result of "A..B" without --ancestry-path, and limits the latter
 839 * further to the ones that can reach one of the commits in "bottom".
 840 */
 841static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
 842{
 843        struct commit_list *p;
 844        struct commit_list *rlist = NULL;
 845        int made_progress;
 846
 847        /*
 848         * Reverse the list so that it will be likely that we would
 849         * process parents before children.
 850         */
 851        for (p = list; p; p = p->next)
 852                commit_list_insert(p->item, &rlist);
 853
 854        for (p = bottom; p; p = p->next)
 855                p->item->object.flags |= TMP_MARK;
 856
 857        /*
 858         * Mark the ones that can reach bottom commits in "list",
 859         * in a bottom-up fashion.
 860         */
 861        do {
 862                made_progress = 0;
 863                for (p = rlist; p; p = p->next) {
 864                        struct commit *c = p->item;
 865                        struct commit_list *parents;
 866                        if (c->object.flags & (TMP_MARK | UNINTERESTING))
 867                                continue;
 868                        for (parents = c->parents;
 869                             parents;
 870                             parents = parents->next) {
 871                                if (!(parents->item->object.flags & TMP_MARK))
 872                                        continue;
 873                                c->object.flags |= TMP_MARK;
 874                                made_progress = 1;
 875                                break;
 876                        }
 877                }
 878        } while (made_progress);
 879
 880        /*
 881         * NEEDSWORK: decide if we want to remove parents that are
 882         * not marked with TMP_MARK from commit->parents for commits
 883         * in the resulting list.  We may not want to do that, though.
 884         */
 885
 886        /*
 887         * The ones that are not marked with TMP_MARK are uninteresting
 888         */
 889        for (p = list; p; p = p->next) {
 890                struct commit *c = p->item;
 891                if (c->object.flags & TMP_MARK)
 892                        continue;
 893                c->object.flags |= UNINTERESTING;
 894        }
 895
 896        /* We are done with the TMP_MARK */
 897        for (p = list; p; p = p->next)
 898                p->item->object.flags &= ~TMP_MARK;
 899        for (p = bottom; p; p = p->next)
 900                p->item->object.flags &= ~TMP_MARK;
 901        free_commit_list(rlist);
 902}
 903
 904/*
 905 * Before walking the history, keep the set of "negative" refs the
 906 * caller has asked to exclude.
 907 *
 908 * This is used to compute "rev-list --ancestry-path A..B", as we need
 909 * to filter the result of "A..B" further to the ones that can actually
 910 * reach A.
 911 */
 912static struct commit_list *collect_bottom_commits(struct rev_info *revs)
 913{
 914        struct commit_list *bottom = NULL;
 915        int i;
 916        for (i = 0; i < revs->cmdline.nr; i++) {
 917                struct rev_cmdline_entry *elem = &revs->cmdline.rev[i];
 918                if ((elem->flags & UNINTERESTING) &&
 919                    elem->item->type == OBJ_COMMIT)
 920                        commit_list_insert((struct commit *)elem->item, &bottom);
 921        }
 922        return bottom;
 923}
 924
 925/* Assumes either left_only or right_only is set */
 926static void limit_left_right(struct commit_list *list, struct rev_info *revs)
 927{
 928        struct commit_list *p;
 929
 930        for (p = list; p; p = p->next) {
 931                struct commit *commit = p->item;
 932
 933                if (revs->right_only) {
 934                        if (commit->object.flags & SYMMETRIC_LEFT)
 935                                commit->object.flags |= SHOWN;
 936                } else  /* revs->left_only is set */
 937                        if (!(commit->object.flags & SYMMETRIC_LEFT))
 938                                commit->object.flags |= SHOWN;
 939        }
 940}
 941
 942static int limit_list(struct rev_info *revs)
 943{
 944        int slop = SLOP;
 945        unsigned long date = ~0ul;
 946        struct commit_list *list = revs->commits;
 947        struct commit_list *newlist = NULL;
 948        struct commit_list **p = &newlist;
 949        struct commit_list *bottom = NULL;
 950
 951        if (revs->ancestry_path) {
 952                bottom = collect_bottom_commits(revs);
 953                if (!bottom)
 954                        die("--ancestry-path given but there are no bottom commits");
 955        }
 956
 957        while (list) {
 958                struct commit_list *entry = list;
 959                struct commit *commit = list->item;
 960                struct object *obj = &commit->object;
 961                show_early_output_fn_t show;
 962
 963                list = list->next;
 964                free(entry);
 965
 966                if (revs->max_age != -1 && (commit->date < revs->max_age))
 967                        obj->flags |= UNINTERESTING;
 968                if (add_parents_to_list(revs, commit, &list, NULL) < 0)
 969                        return -1;
 970                if (obj->flags & UNINTERESTING) {
 971                        mark_parents_uninteresting(commit);
 972                        if (revs->show_all)
 973                                p = &commit_list_insert(commit, p)->next;
 974                        slop = still_interesting(list, date, slop);
 975                        if (slop)
 976                                continue;
 977                        /* If showing all, add the whole pending list to the end */
 978                        if (revs->show_all)
 979                                *p = list;
 980                        break;
 981                }
 982                if (revs->min_age != -1 && (commit->date > revs->min_age))
 983                        continue;
 984                date = commit->date;
 985                p = &commit_list_insert(commit, p)->next;
 986
 987                show = show_early_output;
 988                if (!show)
 989                        continue;
 990
 991                show(revs, newlist);
 992                show_early_output = NULL;
 993        }
 994        if (revs->cherry_pick || revs->cherry_mark)
 995                cherry_pick_list(newlist, revs);
 996
 997        if (revs->left_only || revs->right_only)
 998                limit_left_right(newlist, revs);
 999
1000        if (bottom) {
1001                limit_to_ancestry(bottom, newlist);
1002                free_commit_list(bottom);
1003        }
1004
1005        revs->commits = newlist;
1006        return 0;
1007}
1008
1009static void add_rev_cmdline(struct rev_info *revs,
1010                            struct object *item,
1011                            const char *name,
1012                            int whence,
1013                            unsigned flags)
1014{
1015        struct rev_cmdline_info *info = &revs->cmdline;
1016        int nr = info->nr;
1017
1018        ALLOC_GROW(info->rev, nr + 1, info->alloc);
1019        info->rev[nr].item = item;
1020        info->rev[nr].name = name;
1021        info->rev[nr].whence = whence;
1022        info->rev[nr].flags = flags;
1023        info->nr++;
1024}
1025
1026static void add_rev_cmdline_list(struct rev_info *revs,
1027                                 struct commit_list *commit_list,
1028                                 int whence,
1029                                 unsigned flags)
1030{
1031        while (commit_list) {
1032                struct object *object = &commit_list->item->object;
1033                add_rev_cmdline(revs, object, sha1_to_hex(object->sha1),
1034                                whence, flags);
1035                commit_list = commit_list->next;
1036        }
1037}
1038
1039struct all_refs_cb {
1040        int all_flags;
1041        int warned_bad_reflog;
1042        struct rev_info *all_revs;
1043        const char *name_for_errormsg;
1044};
1045
1046static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
1047{
1048        struct all_refs_cb *cb = cb_data;
1049        struct object *object = get_reference(cb->all_revs, path, sha1,
1050                                              cb->all_flags);
1051        add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1052        add_pending_sha1(cb->all_revs, path, sha1, cb->all_flags);
1053        return 0;
1054}
1055
1056static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1057        unsigned flags)
1058{
1059        cb->all_revs = revs;
1060        cb->all_flags = flags;
1061}
1062
1063static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags,
1064                int (*for_each)(const char *, each_ref_fn, void *))
1065{
1066        struct all_refs_cb cb;
1067        init_all_refs_cb(&cb, revs, flags);
1068        for_each(submodule, handle_one_ref, &cb);
1069}
1070
1071static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
1072{
1073        struct all_refs_cb *cb = cb_data;
1074        if (!is_null_sha1(sha1)) {
1075                struct object *o = parse_object(sha1);
1076                if (o) {
1077                        o->flags |= cb->all_flags;
1078                        /* ??? CMDLINEFLAGS ??? */
1079                        add_pending_object(cb->all_revs, o, "");
1080                }
1081                else if (!cb->warned_bad_reflog) {
1082                        warning("reflog of '%s' references pruned commits",
1083                                cb->name_for_errormsg);
1084                        cb->warned_bad_reflog = 1;
1085                }
1086        }
1087}
1088
1089static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
1090                const char *email, unsigned long timestamp, int tz,
1091                const char *message, void *cb_data)
1092{
1093        handle_one_reflog_commit(osha1, cb_data);
1094        handle_one_reflog_commit(nsha1, cb_data);
1095        return 0;
1096}
1097
1098static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
1099{
1100        struct all_refs_cb *cb = cb_data;
1101        cb->warned_bad_reflog = 0;
1102        cb->name_for_errormsg = path;
1103        for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
1104        return 0;
1105}
1106
1107static void handle_reflog(struct rev_info *revs, unsigned flags)
1108{
1109        struct all_refs_cb cb;
1110        cb.all_revs = revs;
1111        cb.all_flags = flags;
1112        for_each_reflog(handle_one_reflog, &cb);
1113}
1114
1115static int add_parents_only(struct rev_info *revs, const char *arg_, int flags)
1116{
1117        unsigned char sha1[20];
1118        struct object *it;
1119        struct commit *commit;
1120        struct commit_list *parents;
1121        const char *arg = arg_;
1122
1123        if (*arg == '^') {
1124                flags ^= UNINTERESTING;
1125                arg++;
1126        }
1127        if (get_sha1_committish(arg, sha1))
1128                return 0;
1129        while (1) {
1130                it = get_reference(revs, arg, sha1, 0);
1131                if (!it && revs->ignore_missing)
1132                        return 0;
1133                if (it->type != OBJ_TAG)
1134                        break;
1135                if (!((struct tag*)it)->tagged)
1136                        return 0;
1137                hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
1138        }
1139        if (it->type != OBJ_COMMIT)
1140                return 0;
1141        commit = (struct commit *)it;
1142        for (parents = commit->parents; parents; parents = parents->next) {
1143                it = &parents->item->object;
1144                it->flags |= flags;
1145                add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1146                add_pending_object(revs, it, arg);
1147        }
1148        return 1;
1149}
1150
1151void init_revisions(struct rev_info *revs, const char *prefix)
1152{
1153        memset(revs, 0, sizeof(*revs));
1154
1155        revs->abbrev = DEFAULT_ABBREV;
1156        revs->ignore_merges = 1;
1157        revs->simplify_history = 1;
1158        DIFF_OPT_SET(&revs->pruning, RECURSIVE);
1159        DIFF_OPT_SET(&revs->pruning, QUICK);
1160        revs->pruning.add_remove = file_add_remove;
1161        revs->pruning.change = file_change;
1162        revs->lifo = 1;
1163        revs->dense = 1;
1164        revs->prefix = prefix;
1165        revs->max_age = -1;
1166        revs->min_age = -1;
1167        revs->skip_count = -1;
1168        revs->max_count = -1;
1169        revs->max_parents = -1;
1170
1171        revs->commit_format = CMIT_FMT_DEFAULT;
1172
1173        init_grep_defaults();
1174        grep_init(&revs->grep_filter, prefix);
1175        revs->grep_filter.status_only = 1;
1176        revs->grep_filter.regflags = REG_NEWLINE;
1177
1178        diff_setup(&revs->diffopt);
1179        if (prefix && !revs->diffopt.prefix) {
1180                revs->diffopt.prefix = prefix;
1181                revs->diffopt.prefix_length = strlen(prefix);
1182        }
1183
1184        revs->notes_opt.use_default_notes = -1;
1185}
1186
1187static void add_pending_commit_list(struct rev_info *revs,
1188                                    struct commit_list *commit_list,
1189                                    unsigned int flags)
1190{
1191        while (commit_list) {
1192                struct object *object = &commit_list->item->object;
1193                object->flags |= flags;
1194                add_pending_object(revs, object, sha1_to_hex(object->sha1));
1195                commit_list = commit_list->next;
1196        }
1197}
1198
1199static void prepare_show_merge(struct rev_info *revs)
1200{
1201        struct commit_list *bases;
1202        struct commit *head, *other;
1203        unsigned char sha1[20];
1204        const char **prune = NULL;
1205        int i, prune_num = 1; /* counting terminating NULL */
1206
1207        if (get_sha1("HEAD", sha1))
1208                die("--merge without HEAD?");
1209        head = lookup_commit_or_die(sha1, "HEAD");
1210        if (get_sha1("MERGE_HEAD", sha1))
1211                die("--merge without MERGE_HEAD?");
1212        other = lookup_commit_or_die(sha1, "MERGE_HEAD");
1213        add_pending_object(revs, &head->object, "HEAD");
1214        add_pending_object(revs, &other->object, "MERGE_HEAD");
1215        bases = get_merge_bases(head, other, 1);
1216        add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING);
1217        add_pending_commit_list(revs, bases, UNINTERESTING);
1218        free_commit_list(bases);
1219        head->object.flags |= SYMMETRIC_LEFT;
1220
1221        if (!active_nr)
1222                read_cache();
1223        for (i = 0; i < active_nr; i++) {
1224                struct cache_entry *ce = active_cache[i];
1225                if (!ce_stage(ce))
1226                        continue;
1227                if (ce_path_match(ce, &revs->prune_data)) {
1228                        prune_num++;
1229                        prune = xrealloc(prune, sizeof(*prune) * prune_num);
1230                        prune[prune_num-2] = ce->name;
1231                        prune[prune_num-1] = NULL;
1232                }
1233                while ((i+1 < active_nr) &&
1234                       ce_same_name(ce, active_cache[i+1]))
1235                        i++;
1236        }
1237        free_pathspec(&revs->prune_data);
1238        init_pathspec(&revs->prune_data, prune);
1239        revs->limited = 1;
1240}
1241
1242int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
1243{
1244        struct object_context oc;
1245        char *dotdot;
1246        struct object *object;
1247        unsigned char sha1[20];
1248        int local_flags;
1249        const char *arg = arg_;
1250        int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
1251        unsigned get_sha1_flags = 0;
1252
1253        dotdot = strstr(arg, "..");
1254        if (dotdot) {
1255                unsigned char from_sha1[20];
1256                const char *next = dotdot + 2;
1257                const char *this = arg;
1258                int symmetric = *next == '.';
1259                unsigned int flags_exclude = flags ^ UNINTERESTING;
1260                static const char head_by_default[] = "HEAD";
1261                unsigned int a_flags;
1262
1263                *dotdot = 0;
1264                next += symmetric;
1265
1266                if (!*next)
1267                        next = head_by_default;
1268                if (dotdot == arg)
1269                        this = head_by_default;
1270                if (this == head_by_default && next == head_by_default &&
1271                    !symmetric) {
1272                        /*
1273                         * Just ".."?  That is not a range but the
1274                         * pathspec for the parent directory.
1275                         */
1276                        if (!cant_be_filename) {
1277                                *dotdot = '.';
1278                                return -1;
1279                        }
1280                }
1281                if (!get_sha1_committish(this, from_sha1) &&
1282                    !get_sha1_committish(next, sha1)) {
1283                        struct commit *a, *b;
1284                        struct commit_list *exclude;
1285
1286                        a = lookup_commit_reference(from_sha1);
1287                        b = lookup_commit_reference(sha1);
1288                        if (!a || !b) {
1289                                if (revs->ignore_missing)
1290                                        return 0;
1291                                die(symmetric ?
1292                                    "Invalid symmetric difference expression %s...%s" :
1293                                    "Invalid revision range %s..%s",
1294                                    arg, next);
1295                        }
1296
1297                        if (!cant_be_filename) {
1298                                *dotdot = '.';
1299                                verify_non_filename(revs->prefix, arg);
1300                        }
1301
1302                        if (symmetric) {
1303                                exclude = get_merge_bases(a, b, 1);
1304                                add_rev_cmdline_list(revs, exclude,
1305                                                     REV_CMD_MERGE_BASE,
1306                                                     flags_exclude);
1307                                add_pending_commit_list(revs, exclude,
1308                                                        flags_exclude);
1309                                free_commit_list(exclude);
1310                                a_flags = flags | SYMMETRIC_LEFT;
1311                        } else
1312                                a_flags = flags_exclude;
1313                        a->object.flags |= a_flags;
1314                        b->object.flags |= flags;
1315                        add_rev_cmdline(revs, &a->object, this,
1316                                        REV_CMD_LEFT, a_flags);
1317                        add_rev_cmdline(revs, &b->object, next,
1318                                        REV_CMD_RIGHT, flags);
1319                        add_pending_object(revs, &a->object, this);
1320                        add_pending_object(revs, &b->object, next);
1321                        return 0;
1322                }
1323                *dotdot = '.';
1324        }
1325        dotdot = strstr(arg, "^@");
1326        if (dotdot && !dotdot[2]) {
1327                *dotdot = 0;
1328                if (add_parents_only(revs, arg, flags))
1329                        return 0;
1330                *dotdot = '^';
1331        }
1332        dotdot = strstr(arg, "^!");
1333        if (dotdot && !dotdot[2]) {
1334                *dotdot = 0;
1335                if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1336                        *dotdot = '^';
1337        }
1338
1339        local_flags = 0;
1340        if (*arg == '^') {
1341                local_flags = UNINTERESTING;
1342                arg++;
1343        }
1344
1345        if (revarg_opt & REVARG_COMMITTISH)
1346                get_sha1_flags = GET_SHA1_COMMITTISH;
1347
1348        if (get_sha1_with_context(arg, get_sha1_flags, sha1, &oc))
1349                return revs->ignore_missing ? 0 : -1;
1350        if (!cant_be_filename)
1351                verify_non_filename(revs->prefix, arg);
1352        object = get_reference(revs, arg, sha1, flags ^ local_flags);
1353        add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1354        add_pending_object_with_mode(revs, object, arg, oc.mode);
1355        return 0;
1356}
1357
1358struct cmdline_pathspec {
1359        int alloc;
1360        int nr;
1361        const char **path;
1362};
1363
1364static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
1365{
1366        while (*av) {
1367                ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1368                prune->path[prune->nr++] = *(av++);
1369        }
1370}
1371
1372static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1373                                     struct cmdline_pathspec *prune)
1374{
1375        while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1376                int len = sb->len;
1377                if (len && sb->buf[len - 1] == '\n')
1378                        sb->buf[--len] = '\0';
1379                ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1380                prune->path[prune->nr++] = xstrdup(sb->buf);
1381        }
1382}
1383
1384static void read_revisions_from_stdin(struct rev_info *revs,
1385                                      struct cmdline_pathspec *prune)
1386{
1387        struct strbuf sb;
1388        int seen_dashdash = 0;
1389
1390        strbuf_init(&sb, 1000);
1391        while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1392                int len = sb.len;
1393                if (len && sb.buf[len - 1] == '\n')
1394                        sb.buf[--len] = '\0';
1395                if (!len)
1396                        break;
1397                if (sb.buf[0] == '-') {
1398                        if (len == 2 && sb.buf[1] == '-') {
1399                                seen_dashdash = 1;
1400                                break;
1401                        }
1402                        die("options not supported in --stdin mode");
1403                }
1404                if (handle_revision_arg(xstrdup(sb.buf), revs, 0,
1405                                        REVARG_CANNOT_BE_FILENAME))
1406                        die("bad revision '%s'", sb.buf);
1407        }
1408        if (seen_dashdash)
1409                read_pathspec_from_stdin(revs, &sb, prune);
1410        strbuf_release(&sb);
1411}
1412
1413static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1414{
1415        append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1416}
1417
1418static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1419{
1420        append_header_grep_pattern(&revs->grep_filter, field, pattern);
1421}
1422
1423static void add_message_grep(struct rev_info *revs, const char *pattern)
1424{
1425        add_grep(revs, pattern, GREP_PATTERN_BODY);
1426}
1427
1428static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1429                               int *unkc, const char **unkv)
1430{
1431        const char *arg = argv[0];
1432        const char *optarg;
1433        int argcount;
1434
1435        /* pseudo revision arguments */
1436        if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1437            !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1438            !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1439            !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1440            !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") ||
1441            !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") ||
1442            !prefixcmp(arg, "--remotes=") || !prefixcmp(arg, "--no-walk="))
1443        {
1444                unkv[(*unkc)++] = arg;
1445                return 1;
1446        }
1447
1448        if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1449                revs->max_count = atoi(optarg);
1450                revs->no_walk = 0;
1451                return argcount;
1452        } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1453                revs->skip_count = atoi(optarg);
1454                return argcount;
1455        } else if ((*arg == '-') && isdigit(arg[1])) {
1456        /* accept -<digit>, like traditional "head" */
1457                revs->max_count = atoi(arg + 1);
1458                revs->no_walk = 0;
1459        } else if (!strcmp(arg, "-n")) {
1460                if (argc <= 1)
1461                        return error("-n requires an argument");
1462                revs->max_count = atoi(argv[1]);
1463                revs->no_walk = 0;
1464                return 2;
1465        } else if (!prefixcmp(arg, "-n")) {
1466                revs->max_count = atoi(arg + 2);
1467                revs->no_walk = 0;
1468        } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1469                revs->max_age = atoi(optarg);
1470                return argcount;
1471        } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1472                revs->max_age = approxidate(optarg);
1473                return argcount;
1474        } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1475                revs->max_age = approxidate(optarg);
1476                return argcount;
1477        } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1478                revs->min_age = atoi(optarg);
1479                return argcount;
1480        } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1481                revs->min_age = approxidate(optarg);
1482                return argcount;
1483        } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1484                revs->min_age = approxidate(optarg);
1485                return argcount;
1486        } else if (!strcmp(arg, "--first-parent")) {
1487                revs->first_parent_only = 1;
1488        } else if (!strcmp(arg, "--ancestry-path")) {
1489                revs->ancestry_path = 1;
1490                revs->simplify_history = 0;
1491                revs->limited = 1;
1492        } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1493                init_reflog_walk(&revs->reflog_info);
1494        } else if (!strcmp(arg, "--default")) {
1495                if (argc <= 1)
1496                        return error("bad --default argument");
1497                revs->def = argv[1];
1498                return 2;
1499        } else if (!strcmp(arg, "--merge")) {
1500                revs->show_merge = 1;
1501        } else if (!strcmp(arg, "--topo-order")) {
1502                revs->lifo = 1;
1503                revs->topo_order = 1;
1504        } else if (!strcmp(arg, "--simplify-merges")) {
1505                revs->simplify_merges = 1;
1506                revs->topo_order = 1;
1507                revs->rewrite_parents = 1;
1508                revs->simplify_history = 0;
1509                revs->limited = 1;
1510        } else if (!strcmp(arg, "--simplify-by-decoration")) {
1511                revs->simplify_merges = 1;
1512                revs->topo_order = 1;
1513                revs->rewrite_parents = 1;
1514                revs->simplify_history = 0;
1515                revs->simplify_by_decoration = 1;
1516                revs->limited = 1;
1517                revs->prune = 1;
1518                load_ref_decorations(DECORATE_SHORT_REFS);
1519        } else if (!strcmp(arg, "--date-order")) {
1520                revs->lifo = 0;
1521                revs->topo_order = 1;
1522        } else if (!prefixcmp(arg, "--early-output")) {
1523                int count = 100;
1524                switch (arg[14]) {
1525                case '=':
1526                        count = atoi(arg+15);
1527                        /* Fallthrough */
1528                case 0:
1529                        revs->topo_order = 1;
1530                       revs->early_output = count;
1531                }
1532        } else if (!strcmp(arg, "--parents")) {
1533                revs->rewrite_parents = 1;
1534                revs->print_parents = 1;
1535        } else if (!strcmp(arg, "--dense")) {
1536                revs->dense = 1;
1537        } else if (!strcmp(arg, "--sparse")) {
1538                revs->dense = 0;
1539        } else if (!strcmp(arg, "--show-all")) {
1540                revs->show_all = 1;
1541        } else if (!strcmp(arg, "--remove-empty")) {
1542                revs->remove_empty_trees = 1;
1543        } else if (!strcmp(arg, "--merges")) {
1544                revs->min_parents = 2;
1545        } else if (!strcmp(arg, "--no-merges")) {
1546                revs->max_parents = 1;
1547        } else if (!prefixcmp(arg, "--min-parents=")) {
1548                revs->min_parents = atoi(arg+14);
1549        } else if (!prefixcmp(arg, "--no-min-parents")) {
1550                revs->min_parents = 0;
1551        } else if (!prefixcmp(arg, "--max-parents=")) {
1552                revs->max_parents = atoi(arg+14);
1553        } else if (!prefixcmp(arg, "--no-max-parents")) {
1554                revs->max_parents = -1;
1555        } else if (!strcmp(arg, "--boundary")) {
1556                revs->boundary = 1;
1557        } else if (!strcmp(arg, "--left-right")) {
1558                revs->left_right = 1;
1559        } else if (!strcmp(arg, "--left-only")) {
1560                if (revs->right_only)
1561                        die("--left-only is incompatible with --right-only"
1562                            " or --cherry");
1563                revs->left_only = 1;
1564        } else if (!strcmp(arg, "--right-only")) {
1565                if (revs->left_only)
1566                        die("--right-only is incompatible with --left-only");
1567                revs->right_only = 1;
1568        } else if (!strcmp(arg, "--cherry")) {
1569                if (revs->left_only)
1570                        die("--cherry is incompatible with --left-only");
1571                revs->cherry_mark = 1;
1572                revs->right_only = 1;
1573                revs->max_parents = 1;
1574                revs->limited = 1;
1575        } else if (!strcmp(arg, "--count")) {
1576                revs->count = 1;
1577        } else if (!strcmp(arg, "--cherry-mark")) {
1578                if (revs->cherry_pick)
1579                        die("--cherry-mark is incompatible with --cherry-pick");
1580                revs->cherry_mark = 1;
1581                revs->limited = 1; /* needs limit_list() */
1582        } else if (!strcmp(arg, "--cherry-pick")) {
1583                if (revs->cherry_mark)
1584                        die("--cherry-pick is incompatible with --cherry-mark");
1585                revs->cherry_pick = 1;
1586                revs->limited = 1;
1587        } else if (!strcmp(arg, "--objects")) {
1588                revs->tag_objects = 1;
1589                revs->tree_objects = 1;
1590                revs->blob_objects = 1;
1591        } else if (!strcmp(arg, "--objects-edge")) {
1592                revs->tag_objects = 1;
1593                revs->tree_objects = 1;
1594                revs->blob_objects = 1;
1595                revs->edge_hint = 1;
1596        } else if (!strcmp(arg, "--verify-objects")) {
1597                revs->tag_objects = 1;
1598                revs->tree_objects = 1;
1599                revs->blob_objects = 1;
1600                revs->verify_objects = 1;
1601        } else if (!strcmp(arg, "--unpacked")) {
1602                revs->unpacked = 1;
1603        } else if (!prefixcmp(arg, "--unpacked=")) {
1604                die("--unpacked=<packfile> no longer supported.");
1605        } else if (!strcmp(arg, "-r")) {
1606                revs->diff = 1;
1607                DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1608        } else if (!strcmp(arg, "-t")) {
1609                revs->diff = 1;
1610                DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1611                DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1612        } else if (!strcmp(arg, "-m")) {
1613                revs->ignore_merges = 0;
1614        } else if (!strcmp(arg, "-c")) {
1615                revs->diff = 1;
1616                revs->dense_combined_merges = 0;
1617                revs->combine_merges = 1;
1618        } else if (!strcmp(arg, "--cc")) {
1619                revs->diff = 1;
1620                revs->dense_combined_merges = 1;
1621                revs->combine_merges = 1;
1622        } else if (!strcmp(arg, "-v")) {
1623                revs->verbose_header = 1;
1624        } else if (!strcmp(arg, "--pretty")) {
1625                revs->verbose_header = 1;
1626                revs->pretty_given = 1;
1627                get_commit_format(arg+8, revs);
1628        } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
1629                /*
1630                 * Detached form ("--pretty X" as opposed to "--pretty=X")
1631                 * not allowed, since the argument is optional.
1632                 */
1633                revs->verbose_header = 1;
1634                revs->pretty_given = 1;
1635                get_commit_format(arg+9, revs);
1636        } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
1637                revs->show_notes = 1;
1638                revs->show_notes_given = 1;
1639                revs->notes_opt.use_default_notes = 1;
1640        } else if (!strcmp(arg, "--show-signature")) {
1641                revs->show_signature = 1;
1642        } else if (!prefixcmp(arg, "--show-notes=") ||
1643                   !prefixcmp(arg, "--notes=")) {
1644                struct strbuf buf = STRBUF_INIT;
1645                revs->show_notes = 1;
1646                revs->show_notes_given = 1;
1647                if (!prefixcmp(arg, "--show-notes")) {
1648                        if (revs->notes_opt.use_default_notes < 0)
1649                                revs->notes_opt.use_default_notes = 1;
1650                        strbuf_addstr(&buf, arg+13);
1651                }
1652                else
1653                        strbuf_addstr(&buf, arg+8);
1654                expand_notes_ref(&buf);
1655                string_list_append(&revs->notes_opt.extra_notes_refs,
1656                                   strbuf_detach(&buf, NULL));
1657        } else if (!strcmp(arg, "--no-notes")) {
1658                revs->show_notes = 0;
1659                revs->show_notes_given = 1;
1660                revs->notes_opt.use_default_notes = -1;
1661                /* we have been strdup'ing ourselves, so trick
1662                 * string_list into free()ing strings */
1663                revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1664                string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1665                revs->notes_opt.extra_notes_refs.strdup_strings = 0;
1666        } else if (!strcmp(arg, "--standard-notes")) {
1667                revs->show_notes_given = 1;
1668                revs->notes_opt.use_default_notes = 1;
1669        } else if (!strcmp(arg, "--no-standard-notes")) {
1670                revs->notes_opt.use_default_notes = 0;
1671        } else if (!strcmp(arg, "--oneline")) {
1672                revs->verbose_header = 1;
1673                get_commit_format("oneline", revs);
1674                revs->pretty_given = 1;
1675                revs->abbrev_commit = 1;
1676        } else if (!strcmp(arg, "--graph")) {
1677                revs->topo_order = 1;
1678                revs->rewrite_parents = 1;
1679                revs->graph = graph_init(revs);
1680        } else if (!strcmp(arg, "--root")) {
1681                revs->show_root_diff = 1;
1682        } else if (!strcmp(arg, "--no-commit-id")) {
1683                revs->no_commit_id = 1;
1684        } else if (!strcmp(arg, "--always")) {
1685                revs->always_show_header = 1;
1686        } else if (!strcmp(arg, "--no-abbrev")) {
1687                revs->abbrev = 0;
1688        } else if (!strcmp(arg, "--abbrev")) {
1689                revs->abbrev = DEFAULT_ABBREV;
1690        } else if (!prefixcmp(arg, "--abbrev=")) {
1691                revs->abbrev = strtoul(arg + 9, NULL, 10);
1692                if (revs->abbrev < MINIMUM_ABBREV)
1693                        revs->abbrev = MINIMUM_ABBREV;
1694                else if (revs->abbrev > 40)
1695                        revs->abbrev = 40;
1696        } else if (!strcmp(arg, "--abbrev-commit")) {
1697                revs->abbrev_commit = 1;
1698                revs->abbrev_commit_given = 1;
1699        } else if (!strcmp(arg, "--no-abbrev-commit")) {
1700                revs->abbrev_commit = 0;
1701        } else if (!strcmp(arg, "--full-diff")) {
1702                revs->diff = 1;
1703                revs->full_diff = 1;
1704        } else if (!strcmp(arg, "--full-history")) {
1705                revs->simplify_history = 0;
1706        } else if (!strcmp(arg, "--relative-date")) {
1707                revs->date_mode = DATE_RELATIVE;
1708                revs->date_mode_explicit = 1;
1709        } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1710                revs->date_mode = parse_date_format(optarg);
1711                revs->date_mode_explicit = 1;
1712                return argcount;
1713        } else if (!strcmp(arg, "--log-size")) {
1714                revs->show_log_size = 1;
1715        }
1716        /*
1717         * Grepping the commit log
1718         */
1719        else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1720                add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1721                return argcount;
1722        } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1723                add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1724                return argcount;
1725        } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
1726                add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
1727                return argcount;
1728        } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1729                add_message_grep(revs, optarg);
1730                return argcount;
1731        } else if (!strcmp(arg, "--grep-debug")) {
1732                revs->grep_filter.debug = 1;
1733        } else if (!strcmp(arg, "--basic-regexp")) {
1734                grep_set_pattern_type_option(GREP_PATTERN_TYPE_BRE, &revs->grep_filter);
1735        } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1736                grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, &revs->grep_filter);
1737        } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1738                revs->grep_filter.regflags |= REG_ICASE;
1739                DIFF_OPT_SET(&revs->diffopt, PICKAXE_IGNORE_CASE);
1740        } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1741                grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED, &revs->grep_filter);
1742        } else if (!strcmp(arg, "--perl-regexp")) {
1743                grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE, &revs->grep_filter);
1744        } else if (!strcmp(arg, "--all-match")) {
1745                revs->grep_filter.all_match = 1;
1746        } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1747                if (strcmp(optarg, "none"))
1748                        git_log_output_encoding = xstrdup(optarg);
1749                else
1750                        git_log_output_encoding = "";
1751                return argcount;
1752        } else if (!strcmp(arg, "--reverse")) {
1753                revs->reverse ^= 1;
1754        } else if (!strcmp(arg, "--children")) {
1755                revs->children.name = "children";
1756                revs->limited = 1;
1757        } else if (!strcmp(arg, "--ignore-missing")) {
1758                revs->ignore_missing = 1;
1759        } else {
1760                int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1761                if (!opts)
1762                        unkv[(*unkc)++] = arg;
1763                return opts;
1764        }
1765
1766        return 1;
1767}
1768
1769void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1770                        const struct option *options,
1771                        const char * const usagestr[])
1772{
1773        int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1774                                    &ctx->cpidx, ctx->out);
1775        if (n <= 0) {
1776                error("unknown option `%s'", ctx->argv[0]);
1777                usage_with_options(usagestr, options);
1778        }
1779        ctx->argv += n;
1780        ctx->argc -= n;
1781}
1782
1783static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1784{
1785        return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
1786}
1787
1788static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1789{
1790        return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
1791}
1792
1793static int handle_revision_pseudo_opt(const char *submodule,
1794                                struct rev_info *revs,
1795                                int argc, const char **argv, int *flags)
1796{
1797        const char *arg = argv[0];
1798        const char *optarg;
1799        int argcount;
1800
1801        /*
1802         * NOTE!
1803         *
1804         * Commands like "git shortlog" will not accept the options below
1805         * unless parse_revision_opt queues them (as opposed to erroring
1806         * out).
1807         *
1808         * When implementing your new pseudo-option, remember to
1809         * register it in the list at the top of handle_revision_opt.
1810         */
1811        if (!strcmp(arg, "--all")) {
1812                handle_refs(submodule, revs, *flags, for_each_ref_submodule);
1813                handle_refs(submodule, revs, *flags, head_ref_submodule);
1814        } else if (!strcmp(arg, "--branches")) {
1815                handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
1816        } else if (!strcmp(arg, "--bisect")) {
1817                handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
1818                handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref);
1819                revs->bisect = 1;
1820        } else if (!strcmp(arg, "--tags")) {
1821                handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
1822        } else if (!strcmp(arg, "--remotes")) {
1823                handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
1824        } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
1825                struct all_refs_cb cb;
1826                init_all_refs_cb(&cb, revs, *flags);
1827                for_each_glob_ref(handle_one_ref, optarg, &cb);
1828                return argcount;
1829        } else if (!prefixcmp(arg, "--branches=")) {
1830                struct all_refs_cb cb;
1831                init_all_refs_cb(&cb, revs, *flags);
1832                for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1833        } else if (!prefixcmp(arg, "--tags=")) {
1834                struct all_refs_cb cb;
1835                init_all_refs_cb(&cb, revs, *flags);
1836                for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1837        } else if (!prefixcmp(arg, "--remotes=")) {
1838                struct all_refs_cb cb;
1839                init_all_refs_cb(&cb, revs, *flags);
1840                for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1841        } else if (!strcmp(arg, "--reflog")) {
1842                handle_reflog(revs, *flags);
1843        } else if (!strcmp(arg, "--not")) {
1844                *flags ^= UNINTERESTING;
1845        } else if (!strcmp(arg, "--no-walk")) {
1846                revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
1847        } else if (!prefixcmp(arg, "--no-walk=")) {
1848                /*
1849                 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
1850                 * not allowed, since the argument is optional.
1851                 */
1852                if (!strcmp(arg + 10, "sorted"))
1853                        revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
1854                else if (!strcmp(arg + 10, "unsorted"))
1855                        revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
1856                else
1857                        return error("invalid argument to --no-walk");
1858        } else if (!strcmp(arg, "--do-walk")) {
1859                revs->no_walk = 0;
1860        } else {
1861                return 0;
1862        }
1863
1864        return 1;
1865}
1866
1867/*
1868 * Parse revision information, filling in the "rev_info" structure,
1869 * and removing the used arguments from the argument list.
1870 *
1871 * Returns the number of arguments left that weren't recognized
1872 * (which are also moved to the head of the argument list)
1873 */
1874int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
1875{
1876        int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0, revarg_opt;
1877        struct cmdline_pathspec prune_data;
1878        const char *submodule = NULL;
1879
1880        memset(&prune_data, 0, sizeof(prune_data));
1881        if (opt)
1882                submodule = opt->submodule;
1883
1884        /* First, search for "--" */
1885        if (opt && opt->assume_dashdash) {
1886                seen_dashdash = 1;
1887        } else {
1888                seen_dashdash = 0;
1889                for (i = 1; i < argc; i++) {
1890                        const char *arg = argv[i];
1891                        if (strcmp(arg, "--"))
1892                                continue;
1893                        argv[i] = NULL;
1894                        argc = i;
1895                        if (argv[i + 1])
1896                                append_prune_data(&prune_data, argv + i + 1);
1897                        seen_dashdash = 1;
1898                        break;
1899                }
1900        }
1901
1902        /* Second, deal with arguments and options */
1903        flags = 0;
1904        revarg_opt = opt ? opt->revarg_opt : 0;
1905        if (seen_dashdash)
1906                revarg_opt |= REVARG_CANNOT_BE_FILENAME;
1907        read_from_stdin = 0;
1908        for (left = i = 1; i < argc; i++) {
1909                const char *arg = argv[i];
1910                if (*arg == '-') {
1911                        int opts;
1912
1913                        opts = handle_revision_pseudo_opt(submodule,
1914                                                revs, argc - i, argv + i,
1915                                                &flags);
1916                        if (opts > 0) {
1917                                i += opts - 1;
1918                                continue;
1919                        }
1920
1921                        if (!strcmp(arg, "--stdin")) {
1922                                if (revs->disable_stdin) {
1923                                        argv[left++] = arg;
1924                                        continue;
1925                                }
1926                                if (read_from_stdin++)
1927                                        die("--stdin given twice?");
1928                                read_revisions_from_stdin(revs, &prune_data);
1929                                continue;
1930                        }
1931
1932                        opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1933                        if (opts > 0) {
1934                                i += opts - 1;
1935                                continue;
1936                        }
1937                        if (opts < 0)
1938                                exit(128);
1939                        continue;
1940                }
1941
1942
1943                if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
1944                        int j;
1945                        if (seen_dashdash || *arg == '^')
1946                                die("bad revision '%s'", arg);
1947
1948                        /* If we didn't have a "--":
1949                         * (1) all filenames must exist;
1950                         * (2) all rev-args must not be interpretable
1951                         *     as a valid filename.
1952                         * but the latter we have checked in the main loop.
1953                         */
1954                        for (j = i; j < argc; j++)
1955                                verify_filename(revs->prefix, argv[j], j == i);
1956
1957                        append_prune_data(&prune_data, argv + i);
1958                        break;
1959                }
1960                else
1961                        got_rev_arg = 1;
1962        }
1963
1964        if (prune_data.nr) {
1965                /*
1966                 * If we need to introduce the magic "a lone ':' means no
1967                 * pathspec whatsoever", here is the place to do so.
1968                 *
1969                 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1970                 *      prune_data.nr = 0;
1971                 *      prune_data.alloc = 0;
1972                 *      free(prune_data.path);
1973                 *      prune_data.path = NULL;
1974                 * } else {
1975                 *      terminate prune_data.alloc with NULL and
1976                 *      call init_pathspec() to set revs->prune_data here.
1977                 * }
1978                 */
1979                ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc);
1980                prune_data.path[prune_data.nr++] = NULL;
1981                init_pathspec(&revs->prune_data,
1982                              get_pathspec(revs->prefix, prune_data.path));
1983        }
1984
1985        if (revs->def == NULL)
1986                revs->def = opt ? opt->def : NULL;
1987        if (opt && opt->tweak)
1988                opt->tweak(revs, opt);
1989        if (revs->show_merge)
1990                prepare_show_merge(revs);
1991        if (revs->def && !revs->pending.nr && !got_rev_arg) {
1992                unsigned char sha1[20];
1993                struct object *object;
1994                struct object_context oc;
1995                if (get_sha1_with_context(revs->def, 0, sha1, &oc))
1996                        die("bad default revision '%s'", revs->def);
1997                object = get_reference(revs, revs->def, sha1, 0);
1998                add_pending_object_with_mode(revs, object, revs->def, oc.mode);
1999        }
2000
2001        /* Did the user ask for any diff output? Run the diff! */
2002        if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2003                revs->diff = 1;
2004
2005        /* Pickaxe, diff-filter and rename following need diffs */
2006        if (revs->diffopt.pickaxe ||
2007            revs->diffopt.filter ||
2008            DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
2009                revs->diff = 1;
2010
2011        if (revs->topo_order)
2012                revs->limited = 1;
2013
2014        if (revs->prune_data.nr) {
2015                diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning);
2016                /* Can't prune commits with rename following: the paths change.. */
2017                if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
2018                        revs->prune = 1;
2019                if (!revs->full_diff)
2020                        diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt);
2021        }
2022        if (revs->combine_merges)
2023                revs->ignore_merges = 0;
2024        revs->diffopt.abbrev = revs->abbrev;
2025        diff_setup_done(&revs->diffopt);
2026
2027        grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
2028                                 &revs->grep_filter);
2029        compile_grep_patterns(&revs->grep_filter);
2030
2031        if (revs->reverse && revs->reflog_info)
2032                die("cannot combine --reverse with --walk-reflogs");
2033        if (revs->rewrite_parents && revs->children.name)
2034                die("cannot combine --parents and --children");
2035
2036        /*
2037         * Limitations on the graph functionality
2038         */
2039        if (revs->reverse && revs->graph)
2040                die("cannot combine --reverse with --graph");
2041
2042        if (revs->reflog_info && revs->graph)
2043                die("cannot combine --walk-reflogs with --graph");
2044        if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
2045                die("cannot use --grep-reflog without --walk-reflogs");
2046
2047        return left;
2048}
2049
2050static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2051{
2052        struct commit_list *l = xcalloc(1, sizeof(*l));
2053
2054        l->item = child;
2055        l->next = add_decoration(&revs->children, &parent->object, l);
2056}
2057
2058static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
2059{
2060        struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2061        struct commit_list **pp, *p;
2062        int surviving_parents;
2063
2064        /* Examine existing parents while marking ones we have seen... */
2065        pp = &commit->parents;
2066        surviving_parents = 0;
2067        while ((p = *pp) != NULL) {
2068                struct commit *parent = p->item;
2069                if (parent->object.flags & TMP_MARK) {
2070                        *pp = p->next;
2071                        if (ts)
2072                                compact_treesame(revs, commit, surviving_parents);
2073                        continue;
2074                }
2075                parent->object.flags |= TMP_MARK;
2076                surviving_parents++;
2077                pp = &p->next;
2078        }
2079        /* clear the temporary mark */
2080        for (p = commit->parents; p; p = p->next) {
2081                p->item->object.flags &= ~TMP_MARK;
2082        }
2083        /* no update_treesame() - removing duplicates can't affect TREESAME */
2084        return surviving_parents;
2085}
2086
2087struct merge_simplify_state {
2088        struct commit *simplified;
2089};
2090
2091static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2092{
2093        struct merge_simplify_state *st;
2094
2095        st = lookup_decoration(&revs->merge_simplification, &commit->object);
2096        if (!st) {
2097                st = xcalloc(1, sizeof(*st));
2098                add_decoration(&revs->merge_simplification, &commit->object, st);
2099        }
2100        return st;
2101}
2102
2103static int mark_redundant_parents(struct rev_info *revs, struct commit *commit)
2104{
2105        struct commit_list *h = reduce_heads(commit->parents);
2106        int i = 0, marked = 0;
2107        struct commit_list *po, *pn;
2108
2109        /* Want these for sanity-checking only */
2110        int orig_cnt = commit_list_count(commit->parents);
2111        int cnt = commit_list_count(h);
2112
2113        /*
2114         * Not ready to remove items yet, just mark them for now, based
2115         * on the output of reduce_heads(). reduce_heads outputs the reduced
2116         * set in its original order, so this isn't too hard.
2117         */
2118        po = commit->parents;
2119        pn = h;
2120        while (po) {
2121                if (pn && po->item == pn->item) {
2122                        pn = pn->next;
2123                        i++;
2124                } else {
2125                        po->item->object.flags |= TMP_MARK;
2126                        marked++;
2127                }
2128                po=po->next;
2129        }
2130
2131        if (i != cnt || cnt+marked != orig_cnt)
2132                die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
2133
2134        free_commit_list(h);
2135
2136        return marked;
2137}
2138
2139static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
2140{
2141        struct commit_list **pp, *p;
2142        int nth_parent, removed = 0;
2143
2144        pp = &commit->parents;
2145        nth_parent = 0;
2146        while ((p = *pp) != NULL) {
2147                struct commit *parent = p->item;
2148                if (parent->object.flags & TMP_MARK) {
2149                        parent->object.flags &= ~TMP_MARK;
2150                        *pp = p->next;
2151                        free(p);
2152                        removed++;
2153                        compact_treesame(revs, commit, nth_parent);
2154                        continue;
2155                }
2156                pp = &p->next;
2157                nth_parent++;
2158        }
2159
2160        /* Removing parents can only increase TREESAMEness */
2161        if (removed && !(commit->object.flags & TREESAME))
2162                update_treesame(revs, commit);
2163
2164        return nth_parent;
2165}
2166
2167static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
2168{
2169        struct commit_list *p;
2170        struct merge_simplify_state *st, *pst;
2171        int cnt;
2172
2173        st = locate_simplify_state(revs, commit);
2174
2175        /*
2176         * Have we handled this one?
2177         */
2178        if (st->simplified)
2179                return tail;
2180
2181        /*
2182         * An UNINTERESTING commit simplifies to itself, so does a
2183         * root commit.  We do not rewrite parents of such commit
2184         * anyway.
2185         */
2186        if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
2187                st->simplified = commit;
2188                return tail;
2189        }
2190
2191        /*
2192         * Do we know what commit all of our parents that matter
2193         * should be rewritten to?  Otherwise we are not ready to
2194         * rewrite this one yet.
2195         */
2196        for (cnt = 0, p = commit->parents; p; p = p->next) {
2197                pst = locate_simplify_state(revs, p->item);
2198                if (!pst->simplified) {
2199                        tail = &commit_list_insert(p->item, tail)->next;
2200                        cnt++;
2201                }
2202                if (revs->first_parent_only)
2203                        break;
2204        }
2205        if (cnt) {
2206                tail = &commit_list_insert(commit, tail)->next;
2207                return tail;
2208        }
2209
2210        /*
2211         * Rewrite our list of parents. Note that this cannot
2212         * affect our TREESAME flags in any way - a commit is
2213         * always TREESAME to its simplification.
2214         */
2215        for (p = commit->parents; p; p = p->next) {
2216                pst = locate_simplify_state(revs, p->item);
2217                p->item = pst->simplified;
2218                if (revs->first_parent_only)
2219                        break;
2220        }
2221
2222        if (revs->first_parent_only)
2223                cnt = 1;
2224        else
2225                cnt = remove_duplicate_parents(revs, commit);
2226
2227        /*
2228         * It is possible that we are a merge and one side branch
2229         * does not have any commit that touches the given paths;
2230         * in such a case, the immediate parent from that branch
2231         * will be rewritten to be the merge base.
2232         *
2233         *      o----X          X: the commit we are looking at;
2234         *     /    /           o: a commit that touches the paths;
2235         * ---o----'
2236         *
2237         * Detect and simplify this case.
2238         */
2239        if (1 < cnt) {
2240                int marked = mark_redundant_parents(revs, commit);
2241                if (marked)
2242                        cnt = remove_marked_parents(revs, commit);
2243        }
2244
2245        /*
2246         * A commit simplifies to itself if it is a root, if it is
2247         * UNINTERESTING, if it touches the given paths, or if it is a
2248         * merge and its parents simplify to more than one commit
2249         * (the first two cases are already handled at the beginning of
2250         * this function).
2251         *
2252         * Otherwise, it simplifies to what its sole parent simplifies to.
2253         */
2254        if (!cnt ||
2255            (commit->object.flags & UNINTERESTING) ||
2256            !(commit->object.flags & TREESAME) ||
2257            (1 < cnt))
2258                st->simplified = commit;
2259        else {
2260                pst = locate_simplify_state(revs, commit->parents->item);
2261                st->simplified = pst->simplified;
2262        }
2263        return tail;
2264}
2265
2266static void simplify_merges(struct rev_info *revs)
2267{
2268        struct commit_list *list, *next;
2269        struct commit_list *yet_to_do, **tail;
2270        struct commit *commit;
2271
2272        if (!revs->prune)
2273                return;
2274
2275        /* feed the list reversed */
2276        yet_to_do = NULL;
2277        for (list = revs->commits; list; list = next) {
2278                commit = list->item;
2279                next = list->next;
2280                /*
2281                 * Do not free(list) here yet; the original list
2282                 * is used later in this function.
2283                 */
2284                commit_list_insert(commit, &yet_to_do);
2285        }
2286        while (yet_to_do) {
2287                list = yet_to_do;
2288                yet_to_do = NULL;
2289                tail = &yet_to_do;
2290                while (list) {
2291                        commit = list->item;
2292                        next = list->next;
2293                        free(list);
2294                        list = next;
2295                        tail = simplify_one(revs, commit, tail);
2296                }
2297        }
2298
2299        /* clean up the result, removing the simplified ones */
2300        list = revs->commits;
2301        revs->commits = NULL;
2302        tail = &revs->commits;
2303        while (list) {
2304                struct merge_simplify_state *st;
2305
2306                commit = list->item;
2307                next = list->next;
2308                free(list);
2309                list = next;
2310                st = locate_simplify_state(revs, commit);
2311                if (st->simplified == commit)
2312                        tail = &commit_list_insert(commit, tail)->next;
2313        }
2314}
2315
2316static void set_children(struct rev_info *revs)
2317{
2318        struct commit_list *l;
2319        for (l = revs->commits; l; l = l->next) {
2320                struct commit *commit = l->item;
2321                struct commit_list *p;
2322
2323                for (p = commit->parents; p; p = p->next)
2324                        add_child(revs, p->item, commit);
2325        }
2326}
2327
2328void reset_revision_walk(void)
2329{
2330        clear_object_flags(SEEN | ADDED | SHOWN);
2331}
2332
2333int prepare_revision_walk(struct rev_info *revs)
2334{
2335        int nr = revs->pending.nr;
2336        struct object_array_entry *e, *list;
2337        struct commit_list **next = &revs->commits;
2338
2339        e = list = revs->pending.objects;
2340        revs->pending.nr = 0;
2341        revs->pending.alloc = 0;
2342        revs->pending.objects = NULL;
2343        while (--nr >= 0) {
2344                struct commit *commit = handle_commit(revs, e->item, e->name);
2345                if (commit) {
2346                        if (!(commit->object.flags & SEEN)) {
2347                                commit->object.flags |= SEEN;
2348                                next = commit_list_append(commit, next);
2349                        }
2350                }
2351                e++;
2352        }
2353        if (!revs->leak_pending)
2354                free(list);
2355
2356        /* Signal whether we need per-parent treesame decoration */
2357        if (revs->simplify_merges)
2358                revs->treesame.name = "treesame";
2359
2360        if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
2361                commit_list_sort_by_date(&revs->commits);
2362        if (revs->no_walk)
2363                return 0;
2364        if (revs->limited)
2365                if (limit_list(revs) < 0)
2366                        return -1;
2367        if (revs->topo_order)
2368                sort_in_topological_order(&revs->commits, revs->lifo);
2369        if (revs->simplify_merges)
2370                simplify_merges(revs);
2371        if (revs->children.name)
2372                set_children(revs);
2373        return 0;
2374}
2375
2376enum rewrite_result {
2377        rewrite_one_ok,
2378        rewrite_one_noparents,
2379        rewrite_one_error
2380};
2381
2382static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
2383{
2384        struct commit_list *cache = NULL;
2385
2386        for (;;) {
2387                struct commit *p = *pp;
2388                if (!revs->limited)
2389                        if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
2390                                return rewrite_one_error;
2391                if (p->parents && p->parents->next)
2392                        return rewrite_one_ok;
2393                if (p->object.flags & UNINTERESTING)
2394                        return rewrite_one_ok;
2395                if (!(p->object.flags & TREESAME))
2396                        return rewrite_one_ok;
2397                if (!p->parents)
2398                        return rewrite_one_noparents;
2399                *pp = p->parents->item;
2400        }
2401}
2402
2403static int rewrite_parents(struct rev_info *revs, struct commit *commit)
2404{
2405        struct commit_list **pp = &commit->parents;
2406        while (*pp) {
2407                struct commit_list *parent = *pp;
2408                switch (rewrite_one(revs, &parent->item)) {
2409                case rewrite_one_ok:
2410                        break;
2411                case rewrite_one_noparents:
2412                        *pp = parent->next;
2413                        continue;
2414                case rewrite_one_error:
2415                        return -1;
2416                }
2417                pp = &parent->next;
2418        }
2419        remove_duplicate_parents(revs, commit);
2420        return 0;
2421}
2422
2423static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
2424{
2425        char *person, *endp;
2426        size_t len, namelen, maillen;
2427        const char *name;
2428        const char *mail;
2429        struct ident_split ident;
2430
2431        person = strstr(buf->buf, what);
2432        if (!person)
2433                return 0;
2434
2435        person += strlen(what);
2436        endp = strchr(person, '\n');
2437        if (!endp)
2438                return 0;
2439
2440        len = endp - person;
2441
2442        if (split_ident_line(&ident, person, len))
2443                return 0;
2444
2445        mail = ident.mail_begin;
2446        maillen = ident.mail_end - ident.mail_begin;
2447        name = ident.name_begin;
2448        namelen = ident.name_end - ident.name_begin;
2449
2450        if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
2451                struct strbuf namemail = STRBUF_INIT;
2452
2453                strbuf_addf(&namemail, "%.*s <%.*s>",
2454                            (int)namelen, name, (int)maillen, mail);
2455
2456                strbuf_splice(buf, ident.name_begin - buf->buf,
2457                              ident.mail_end - ident.name_begin + 1,
2458                              namemail.buf, namemail.len);
2459
2460                strbuf_release(&namemail);
2461
2462                return 1;
2463        }
2464
2465        return 0;
2466}
2467
2468static int commit_match(struct commit *commit, struct rev_info *opt)
2469{
2470        int retval;
2471        const char *encoding;
2472        char *message;
2473        struct strbuf buf = STRBUF_INIT;
2474
2475        if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
2476                return 1;
2477
2478        /* Prepend "fake" headers as needed */
2479        if (opt->grep_filter.use_reflog_filter) {
2480                strbuf_addstr(&buf, "reflog ");
2481                get_reflog_message(&buf, opt->reflog_info);
2482                strbuf_addch(&buf, '\n');
2483        }
2484
2485        /*
2486         * We grep in the user's output encoding, under the assumption that it
2487         * is the encoding they are most likely to write their grep pattern
2488         * for. In addition, it means we will match the "notes" encoding below,
2489         * so we will not end up with a buffer that has two different encodings
2490         * in it.
2491         */
2492        encoding = get_log_output_encoding();
2493        message = logmsg_reencode(commit, NULL, encoding);
2494
2495        /* Copy the commit to temporary if we are using "fake" headers */
2496        if (buf.len)
2497                strbuf_addstr(&buf, message);
2498
2499        if (opt->grep_filter.header_list && opt->mailmap) {
2500                if (!buf.len)
2501                        strbuf_addstr(&buf, message);
2502
2503                commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
2504                commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
2505        }
2506
2507        /* Append "fake" message parts as needed */
2508        if (opt->show_notes) {
2509                if (!buf.len)
2510                        strbuf_addstr(&buf, message);
2511                format_display_notes(commit->object.sha1, &buf, encoding, 1);
2512        }
2513
2514        /* Find either in the original commit message, or in the temporary */
2515        if (buf.len)
2516                retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
2517        else
2518                retval = grep_buffer(&opt->grep_filter,
2519                                     message, strlen(message));
2520        strbuf_release(&buf);
2521        logmsg_free(message, commit);
2522        return retval;
2523}
2524
2525static inline int want_ancestry(struct rev_info *revs)
2526{
2527        return (revs->rewrite_parents || revs->children.name);
2528}
2529
2530enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
2531{
2532        if (commit->object.flags & SHOWN)
2533                return commit_ignore;
2534        if (revs->unpacked && has_sha1_pack(commit->object.sha1))
2535                return commit_ignore;
2536        if (revs->show_all)
2537                return commit_show;
2538        if (commit->object.flags & UNINTERESTING)
2539                return commit_ignore;
2540        if (revs->min_age != -1 && (commit->date > revs->min_age))
2541                return commit_ignore;
2542        if (revs->min_parents || (revs->max_parents >= 0)) {
2543                int n = 0;
2544                struct commit_list *p;
2545                for (p = commit->parents; p; p = p->next)
2546                        n++;
2547                if ((n < revs->min_parents) ||
2548                    ((revs->max_parents >= 0) && (n > revs->max_parents)))
2549                        return commit_ignore;
2550        }
2551        if (!commit_match(commit, revs))
2552                return commit_ignore;
2553        if (revs->prune && revs->dense) {
2554                /* Commit without changes? */
2555                if (commit->object.flags & TREESAME) {
2556                        /* drop merges unless we want parenthood */
2557                        if (!want_ancestry(revs))
2558                                return commit_ignore;
2559                        /* non-merge - always ignore it */
2560                        if (!commit->parents || !commit->parents->next)
2561                                return commit_ignore;
2562                }
2563        }
2564        return commit_show;
2565}
2566
2567enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2568{
2569        enum commit_action action = get_commit_action(revs, commit);
2570
2571        if (action == commit_show &&
2572            !revs->show_all &&
2573            revs->prune && revs->dense && want_ancestry(revs)) {
2574                if (rewrite_parents(revs, commit) < 0)
2575                        return commit_error;
2576        }
2577        return action;
2578}
2579
2580static struct commit *get_revision_1(struct rev_info *revs)
2581{
2582        if (!revs->commits)
2583                return NULL;
2584
2585        do {
2586                struct commit_list *entry = revs->commits;
2587                struct commit *commit = entry->item;
2588
2589                revs->commits = entry->next;
2590                free(entry);
2591
2592                if (revs->reflog_info) {
2593                        fake_reflog_parent(revs->reflog_info, commit);
2594                        commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2595                }
2596
2597                /*
2598                 * If we haven't done the list limiting, we need to look at
2599                 * the parents here. We also need to do the date-based limiting
2600                 * that we'd otherwise have done in limit_list().
2601                 */
2602                if (!revs->limited) {
2603                        if (revs->max_age != -1 &&
2604                            (commit->date < revs->max_age))
2605                                continue;
2606                        if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
2607                                die("Failed to traverse parents of commit %s",
2608                                    sha1_to_hex(commit->object.sha1));
2609                }
2610
2611                switch (simplify_commit(revs, commit)) {
2612                case commit_ignore:
2613                        continue;
2614                case commit_error:
2615                        die("Failed to simplify parents of commit %s",
2616                            sha1_to_hex(commit->object.sha1));
2617                default:
2618                        return commit;
2619                }
2620        } while (revs->commits);
2621        return NULL;
2622}
2623
2624static void gc_boundary(struct object_array *array)
2625{
2626        unsigned nr = array->nr;
2627        unsigned alloc = array->alloc;
2628        struct object_array_entry *objects = array->objects;
2629
2630        if (alloc <= nr) {
2631                unsigned i, j;
2632                for (i = j = 0; i < nr; i++) {
2633                        if (objects[i].item->flags & SHOWN)
2634                                continue;
2635                        if (i != j)
2636                                objects[j] = objects[i];
2637                        j++;
2638                }
2639                for (i = j; i < nr; i++)
2640                        objects[i].item = NULL;
2641                array->nr = j;
2642        }
2643}
2644
2645static void create_boundary_commit_list(struct rev_info *revs)
2646{
2647        unsigned i;
2648        struct commit *c;
2649        struct object_array *array = &revs->boundary_commits;
2650        struct object_array_entry *objects = array->objects;
2651
2652        /*
2653         * If revs->commits is non-NULL at this point, an error occurred in
2654         * get_revision_1().  Ignore the error and continue printing the
2655         * boundary commits anyway.  (This is what the code has always
2656         * done.)
2657         */
2658        if (revs->commits) {
2659                free_commit_list(revs->commits);
2660                revs->commits = NULL;
2661        }
2662
2663        /*
2664         * Put all of the actual boundary commits from revs->boundary_commits
2665         * into revs->commits
2666         */
2667        for (i = 0; i < array->nr; i++) {
2668                c = (struct commit *)(objects[i].item);
2669                if (!c)
2670                        continue;
2671                if (!(c->object.flags & CHILD_SHOWN))
2672                        continue;
2673                if (c->object.flags & (SHOWN | BOUNDARY))
2674                        continue;
2675                c->object.flags |= BOUNDARY;
2676                commit_list_insert(c, &revs->commits);
2677        }
2678
2679        /*
2680         * If revs->topo_order is set, sort the boundary commits
2681         * in topological order
2682         */
2683        sort_in_topological_order(&revs->commits, revs->lifo);
2684}
2685
2686static struct commit *get_revision_internal(struct rev_info *revs)
2687{
2688        struct commit *c = NULL;
2689        struct commit_list *l;
2690
2691        if (revs->boundary == 2) {
2692                /*
2693                 * All of the normal commits have already been returned,
2694                 * and we are now returning boundary commits.
2695                 * create_boundary_commit_list() has populated
2696                 * revs->commits with the remaining commits to return.
2697                 */
2698                c = pop_commit(&revs->commits);
2699                if (c)
2700                        c->object.flags |= SHOWN;
2701                return c;
2702        }
2703
2704        /*
2705         * If our max_count counter has reached zero, then we are done. We
2706         * don't simply return NULL because we still might need to show
2707         * boundary commits. But we want to avoid calling get_revision_1, which
2708         * might do a considerable amount of work finding the next commit only
2709         * for us to throw it away.
2710         *
2711         * If it is non-zero, then either we don't have a max_count at all
2712         * (-1), or it is still counting, in which case we decrement.
2713         */
2714        if (revs->max_count) {
2715                c = get_revision_1(revs);
2716                if (c) {
2717                        while (0 < revs->skip_count) {
2718                                revs->skip_count--;
2719                                c = get_revision_1(revs);
2720                                if (!c)
2721                                        break;
2722                        }
2723                }
2724
2725                if (revs->max_count > 0)
2726                        revs->max_count--;
2727        }
2728
2729        if (c)
2730                c->object.flags |= SHOWN;
2731
2732        if (!revs->boundary) {
2733                return c;
2734        }
2735
2736        if (!c) {
2737                /*
2738                 * get_revision_1() runs out the commits, and
2739                 * we are done computing the boundaries.
2740                 * switch to boundary commits output mode.
2741                 */
2742                revs->boundary = 2;
2743
2744                /*
2745                 * Update revs->commits to contain the list of
2746                 * boundary commits.
2747                 */
2748                create_boundary_commit_list(revs);
2749
2750                return get_revision_internal(revs);
2751        }
2752
2753        /*
2754         * boundary commits are the commits that are parents of the
2755         * ones we got from get_revision_1() but they themselves are
2756         * not returned from get_revision_1().  Before returning
2757         * 'c', we need to mark its parents that they could be boundaries.
2758         */
2759
2760        for (l = c->parents; l; l = l->next) {
2761                struct object *p;
2762                p = &(l->item->object);
2763                if (p->flags & (CHILD_SHOWN | SHOWN))
2764                        continue;
2765                p->flags |= CHILD_SHOWN;
2766                gc_boundary(&revs->boundary_commits);
2767                add_object_array(p, NULL, &revs->boundary_commits);
2768        }
2769
2770        return c;
2771}
2772
2773struct commit *get_revision(struct rev_info *revs)
2774{
2775        struct commit *c;
2776        struct commit_list *reversed;
2777
2778        if (revs->reverse) {
2779                reversed = NULL;
2780                while ((c = get_revision_internal(revs))) {
2781                        commit_list_insert(c, &reversed);
2782                }
2783                revs->commits = reversed;
2784                revs->reverse = 0;
2785                revs->reverse_output_stage = 1;
2786        }
2787
2788        if (revs->reverse_output_stage)
2789                return pop_commit(&revs->commits);
2790
2791        c = get_revision_internal(revs);
2792        if (c && revs->graph)
2793                graph_update(revs->graph, c);
2794        return c;
2795}
2796
2797char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
2798{
2799        if (commit->object.flags & BOUNDARY)
2800                return "-";
2801        else if (commit->object.flags & UNINTERESTING)
2802                return "^";
2803        else if (commit->object.flags & PATCHSAME)
2804                return "=";
2805        else if (!revs || revs->left_right) {
2806                if (commit->object.flags & SYMMETRIC_LEFT)
2807                        return "<";
2808                else
2809                        return ">";
2810        } else if (revs->graph)
2811                return "*";
2812        else if (revs->cherry_mark)
2813                return "+";
2814        return "";
2815}
2816
2817void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
2818{
2819        char *mark = get_revision_mark(revs, commit);
2820        if (!strlen(mark))
2821                return;
2822        fputs(mark, stdout);
2823        putchar(' ');
2824}