eb6f849cef2455b69a77b3ef6bc04cf57cbd4a69
   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
  17volatile show_early_output_fn_t show_early_output;
  18
  19char *path_name(const struct name_path *path, const char *name)
  20{
  21        const struct name_path *p;
  22        char *n, *m;
  23        int nlen = strlen(name);
  24        int len = nlen + 1;
  25
  26        for (p = path; p; p = p->up) {
  27                if (p->elem_len)
  28                        len += p->elem_len + 1;
  29        }
  30        n = xmalloc(len);
  31        m = n + len - (nlen + 1);
  32        strcpy(m, name);
  33        for (p = path; p; p = p->up) {
  34                if (p->elem_len) {
  35                        m -= p->elem_len + 1;
  36                        memcpy(m, p->elem, p->elem_len);
  37                        m[p->elem_len] = '/';
  38                }
  39        }
  40        return n;
  41}
  42
  43void add_object(struct object *obj,
  44                struct object_array *p,
  45                struct name_path *path,
  46                const char *name)
  47{
  48        add_object_array(obj, path_name(path, name), p);
  49}
  50
  51static void mark_blob_uninteresting(struct blob *blob)
  52{
  53        if (!blob)
  54                return;
  55        if (blob->object.flags & UNINTERESTING)
  56                return;
  57        blob->object.flags |= UNINTERESTING;
  58}
  59
  60void mark_tree_uninteresting(struct tree *tree)
  61{
  62        struct tree_desc desc;
  63        struct name_entry entry;
  64        struct object *obj = &tree->object;
  65
  66        if (!tree)
  67                return;
  68        if (obj->flags & UNINTERESTING)
  69                return;
  70        obj->flags |= UNINTERESTING;
  71        if (!has_sha1_file(obj->sha1))
  72                return;
  73        if (parse_tree(tree) < 0)
  74                die("bad tree %s", sha1_to_hex(obj->sha1));
  75
  76        init_tree_desc(&desc, tree->buffer, tree->size);
  77        while (tree_entry(&desc, &entry)) {
  78                switch (object_type(entry.mode)) {
  79                case OBJ_TREE:
  80                        mark_tree_uninteresting(lookup_tree(entry.sha1));
  81                        break;
  82                case OBJ_BLOB:
  83                        mark_blob_uninteresting(lookup_blob(entry.sha1));
  84                        break;
  85                default:
  86                        /* Subproject commit - not in this repository */
  87                        break;
  88                }
  89        }
  90
  91        /*
  92         * We don't care about the tree any more
  93         * after it has been marked uninteresting.
  94         */
  95        free(tree->buffer);
  96        tree->buffer = NULL;
  97}
  98
  99void mark_parents_uninteresting(struct commit *commit)
 100{
 101        struct commit_list *parents = commit->parents;
 102
 103        while (parents) {
 104                struct commit *commit = parents->item;
 105                if (!(commit->object.flags & UNINTERESTING)) {
 106                        commit->object.flags |= UNINTERESTING;
 107
 108                        /*
 109                         * Normally we haven't parsed the parent
 110                         * yet, so we won't have a parent of a parent
 111                         * here. However, it may turn out that we've
 112                         * reached this commit some other way (where it
 113                         * wasn't uninteresting), in which case we need
 114                         * to mark its parents recursively too..
 115                         */
 116                        if (commit->parents)
 117                                mark_parents_uninteresting(commit);
 118                }
 119
 120                /*
 121                 * A missing commit is ok iff its parent is marked
 122                 * uninteresting.
 123                 *
 124                 * We just mark such a thing parsed, so that when
 125                 * it is popped next time around, we won't be trying
 126                 * to parse it and get an error.
 127                 */
 128                if (!has_sha1_file(commit->object.sha1))
 129                        commit->object.parsed = 1;
 130                parents = parents->next;
 131        }
 132}
 133
 134static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode)
 135{
 136        if (revs->no_walk && (obj->flags & UNINTERESTING))
 137                revs->no_walk = 0;
 138        if (revs->reflog_info && obj->type == OBJ_COMMIT) {
 139                struct strbuf buf = STRBUF_INIT;
 140                int len = interpret_branch_name(name, &buf);
 141                int st;
 142
 143                if (0 < len && name[len] && buf.len)
 144                        strbuf_addstr(&buf, name + len);
 145                st = add_reflog_for_walk(revs->reflog_info,
 146                                         (struct commit *)obj,
 147                                         buf.buf[0] ? buf.buf: name);
 148                strbuf_release(&buf);
 149                if (st)
 150                        return;
 151        }
 152        add_object_array_with_mode(obj, name, &revs->pending, mode);
 153}
 154
 155void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
 156{
 157        add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
 158}
 159
 160void add_head_to_pending(struct rev_info *revs)
 161{
 162        unsigned char sha1[20];
 163        struct object *obj;
 164        if (get_sha1("HEAD", sha1))
 165                return;
 166        obj = parse_object(sha1);
 167        if (!obj)
 168                return;
 169        add_pending_object(revs, obj, "HEAD");
 170}
 171
 172static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags)
 173{
 174        struct object *object;
 175
 176        object = parse_object(sha1);
 177        if (!object)
 178                die("bad object %s", name);
 179        object->flags |= flags;
 180        return object;
 181}
 182
 183static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
 184{
 185        unsigned long flags = object->flags;
 186
 187        /*
 188         * Tag object? Look what it points to..
 189         */
 190        while (object->type == OBJ_TAG) {
 191                struct tag *tag = (struct tag *) object;
 192                if (revs->tag_objects && !(flags & UNINTERESTING))
 193                        add_pending_object(revs, object, tag->tag);
 194                if (!tag->tagged)
 195                        die("bad tag");
 196                object = parse_object(tag->tagged->sha1);
 197                if (!object) {
 198                        if (flags & UNINTERESTING)
 199                                return NULL;
 200                        die("bad object %s", sha1_to_hex(tag->tagged->sha1));
 201                }
 202        }
 203
 204        /*
 205         * Commit object? Just return it, we'll do all the complex
 206         * reachability crud.
 207         */
 208        if (object->type == OBJ_COMMIT) {
 209                struct commit *commit = (struct commit *)object;
 210                if (parse_commit(commit) < 0)
 211                        die("unable to parse commit %s", name);
 212                if (flags & UNINTERESTING) {
 213                        commit->object.flags |= UNINTERESTING;
 214                        mark_parents_uninteresting(commit);
 215                        revs->limited = 1;
 216                }
 217                if (revs->show_source && !commit->util)
 218                        commit->util = (void *) name;
 219                return commit;
 220        }
 221
 222        /*
 223         * Tree object? Either mark it uninteresting, or add it
 224         * to the list of objects to look at later..
 225         */
 226        if (object->type == OBJ_TREE) {
 227                struct tree *tree = (struct tree *)object;
 228                if (!revs->tree_objects)
 229                        return NULL;
 230                if (flags & UNINTERESTING) {
 231                        mark_tree_uninteresting(tree);
 232                        return NULL;
 233                }
 234                add_pending_object(revs, object, "");
 235                return NULL;
 236        }
 237
 238        /*
 239         * Blob object? You know the drill by now..
 240         */
 241        if (object->type == OBJ_BLOB) {
 242                struct blob *blob = (struct blob *)object;
 243                if (!revs->blob_objects)
 244                        return NULL;
 245                if (flags & UNINTERESTING) {
 246                        mark_blob_uninteresting(blob);
 247                        return NULL;
 248                }
 249                add_pending_object(revs, object, "");
 250                return NULL;
 251        }
 252        die("%s is unknown object", name);
 253}
 254
 255static int everybody_uninteresting(struct commit_list *orig)
 256{
 257        struct commit_list *list = orig;
 258        while (list) {
 259                struct commit *commit = list->item;
 260                list = list->next;
 261                if (commit->object.flags & UNINTERESTING)
 262                        continue;
 263                return 0;
 264        }
 265        return 1;
 266}
 267
 268/*
 269 * The goal is to get REV_TREE_NEW as the result only if the
 270 * diff consists of all '+' (and no other changes), REV_TREE_OLD
 271 * if the whole diff is removal of old data, and otherwise
 272 * REV_TREE_DIFFERENT (of course if the trees are the same we
 273 * want REV_TREE_SAME).
 274 * That means that once we get to REV_TREE_DIFFERENT, we do not
 275 * have to look any further.
 276 */
 277static int tree_difference = REV_TREE_SAME;
 278
 279static void file_add_remove(struct diff_options *options,
 280                    int addremove, unsigned mode,
 281                    const unsigned char *sha1,
 282                    const char *fullpath, unsigned dirty_submodule)
 283{
 284        int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
 285
 286        tree_difference |= diff;
 287        if (tree_difference == REV_TREE_DIFFERENT)
 288                DIFF_OPT_SET(options, HAS_CHANGES);
 289}
 290
 291static void file_change(struct diff_options *options,
 292                 unsigned old_mode, unsigned new_mode,
 293                 const unsigned char *old_sha1,
 294                 const unsigned char *new_sha1,
 295                 const char *fullpath,
 296                 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
 297{
 298        tree_difference = REV_TREE_DIFFERENT;
 299        DIFF_OPT_SET(options, HAS_CHANGES);
 300}
 301
 302static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
 303{
 304        struct tree *t1 = parent->tree;
 305        struct tree *t2 = commit->tree;
 306
 307        if (!t1)
 308                return REV_TREE_NEW;
 309        if (!t2)
 310                return REV_TREE_OLD;
 311
 312        if (revs->simplify_by_decoration) {
 313                /*
 314                 * If we are simplifying by decoration, then the commit
 315                 * is worth showing if it has a tag pointing at it.
 316                 */
 317                if (lookup_decoration(&name_decoration, &commit->object))
 318                        return REV_TREE_DIFFERENT;
 319                /*
 320                 * A commit that is not pointed by a tag is uninteresting
 321                 * if we are not limited by path.  This means that you will
 322                 * see the usual "commits that touch the paths" plus any
 323                 * tagged commit by specifying both --simplify-by-decoration
 324                 * and pathspec.
 325                 */
 326                if (!revs->prune_data)
 327                        return REV_TREE_SAME;
 328        }
 329
 330        tree_difference = REV_TREE_SAME;
 331        DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
 332        if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
 333                           &revs->pruning) < 0)
 334                return REV_TREE_DIFFERENT;
 335        return tree_difference;
 336}
 337
 338static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
 339{
 340        int retval;
 341        void *tree;
 342        unsigned long size;
 343        struct tree_desc empty, real;
 344        struct tree *t1 = commit->tree;
 345
 346        if (!t1)
 347                return 0;
 348
 349        tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
 350        if (!tree)
 351                return 0;
 352        init_tree_desc(&real, tree, size);
 353        init_tree_desc(&empty, "", 0);
 354
 355        tree_difference = REV_TREE_SAME;
 356        DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
 357        retval = diff_tree(&empty, &real, "", &revs->pruning);
 358        free(tree);
 359
 360        return retval >= 0 && (tree_difference == REV_TREE_SAME);
 361}
 362
 363static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
 364{
 365        struct commit_list **pp, *parent;
 366        int tree_changed = 0, tree_same = 0;
 367
 368        /*
 369         * If we don't do pruning, everything is interesting
 370         */
 371        if (!revs->prune)
 372                return;
 373
 374        if (!commit->tree)
 375                return;
 376
 377        if (!commit->parents) {
 378                if (rev_same_tree_as_empty(revs, commit))
 379                        commit->object.flags |= TREESAME;
 380                return;
 381        }
 382
 383        /*
 384         * Normal non-merge commit? If we don't want to make the
 385         * history dense, we consider it always to be a change..
 386         */
 387        if (!revs->dense && !commit->parents->next)
 388                return;
 389
 390        pp = &commit->parents;
 391        while ((parent = *pp) != NULL) {
 392                struct commit *p = parent->item;
 393
 394                if (parse_commit(p) < 0)
 395                        die("cannot simplify commit %s (because of %s)",
 396                            sha1_to_hex(commit->object.sha1),
 397                            sha1_to_hex(p->object.sha1));
 398                switch (rev_compare_tree(revs, p, commit)) {
 399                case REV_TREE_SAME:
 400                        tree_same = 1;
 401                        if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
 402                                /* Even if a merge with an uninteresting
 403                                 * side branch brought the entire change
 404                                 * we are interested in, we do not want
 405                                 * to lose the other branches of this
 406                                 * merge, so we just keep going.
 407                                 */
 408                                pp = &parent->next;
 409                                continue;
 410                        }
 411                        parent->next = NULL;
 412                        commit->parents = parent;
 413                        commit->object.flags |= TREESAME;
 414                        return;
 415
 416                case REV_TREE_NEW:
 417                        if (revs->remove_empty_trees &&
 418                            rev_same_tree_as_empty(revs, p)) {
 419                                /* We are adding all the specified
 420                                 * paths from this parent, so the
 421                                 * history beyond this parent is not
 422                                 * interesting.  Remove its parents
 423                                 * (they are grandparents for us).
 424                                 * IOW, we pretend this parent is a
 425                                 * "root" commit.
 426                                 */
 427                                if (parse_commit(p) < 0)
 428                                        die("cannot simplify commit %s (invalid %s)",
 429                                            sha1_to_hex(commit->object.sha1),
 430                                            sha1_to_hex(p->object.sha1));
 431                                p->parents = NULL;
 432                        }
 433                /* fallthrough */
 434                case REV_TREE_OLD:
 435                case REV_TREE_DIFFERENT:
 436                        tree_changed = 1;
 437                        pp = &parent->next;
 438                        continue;
 439                }
 440                die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
 441        }
 442        if (tree_changed && !tree_same)
 443                return;
 444        commit->object.flags |= TREESAME;
 445}
 446
 447static void insert_by_date_cached(struct commit *p, struct commit_list **head,
 448                    struct commit_list *cached_base, struct commit_list **cache)
 449{
 450        struct commit_list *new_entry;
 451
 452        if (cached_base && p->date < cached_base->item->date)
 453                new_entry = insert_by_date(p, &cached_base->next);
 454        else
 455                new_entry = insert_by_date(p, head);
 456
 457        if (cache && (!*cache || p->date < (*cache)->item->date))
 458                *cache = new_entry;
 459}
 460
 461static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
 462                    struct commit_list **list, struct commit_list **cache_ptr)
 463{
 464        struct commit_list *parent = commit->parents;
 465        unsigned left_flag;
 466        struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
 467
 468        if (commit->object.flags & ADDED)
 469                return 0;
 470        commit->object.flags |= ADDED;
 471
 472        /*
 473         * If the commit is uninteresting, don't try to
 474         * prune parents - we want the maximal uninteresting
 475         * set.
 476         *
 477         * Normally we haven't parsed the parent
 478         * yet, so we won't have a parent of a parent
 479         * here. However, it may turn out that we've
 480         * reached this commit some other way (where it
 481         * wasn't uninteresting), in which case we need
 482         * to mark its parents recursively too..
 483         */
 484        if (commit->object.flags & UNINTERESTING) {
 485                while (parent) {
 486                        struct commit *p = parent->item;
 487                        parent = parent->next;
 488                        if (p)
 489                                p->object.flags |= UNINTERESTING;
 490                        if (parse_commit(p) < 0)
 491                                continue;
 492                        if (p->parents)
 493                                mark_parents_uninteresting(p);
 494                        if (p->object.flags & SEEN)
 495                                continue;
 496                        p->object.flags |= SEEN;
 497                        insert_by_date_cached(p, list, cached_base, cache_ptr);
 498                }
 499                return 0;
 500        }
 501
 502        /*
 503         * Ok, the commit wasn't uninteresting. Try to
 504         * simplify the commit history and find the parent
 505         * that has no differences in the path set if one exists.
 506         */
 507        try_to_simplify_commit(revs, commit);
 508
 509        if (revs->no_walk)
 510                return 0;
 511
 512        left_flag = (commit->object.flags & SYMMETRIC_LEFT);
 513
 514        for (parent = commit->parents; parent; parent = parent->next) {
 515                struct commit *p = parent->item;
 516
 517                if (parse_commit(p) < 0)
 518                        return -1;
 519                if (revs->show_source && !p->util)
 520                        p->util = commit->util;
 521                p->object.flags |= left_flag;
 522                if (!(p->object.flags & SEEN)) {
 523                        p->object.flags |= SEEN;
 524                        insert_by_date_cached(p, list, cached_base, cache_ptr);
 525                }
 526                if (revs->first_parent_only)
 527                        break;
 528        }
 529        return 0;
 530}
 531
 532static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
 533{
 534        struct commit_list *p;
 535        int left_count = 0, right_count = 0;
 536        int left_first;
 537        struct patch_ids ids;
 538
 539        /* First count the commits on the left and on the right */
 540        for (p = list; p; p = p->next) {
 541                struct commit *commit = p->item;
 542                unsigned flags = commit->object.flags;
 543                if (flags & BOUNDARY)
 544                        ;
 545                else if (flags & SYMMETRIC_LEFT)
 546                        left_count++;
 547                else
 548                        right_count++;
 549        }
 550
 551        if (!left_count || !right_count)
 552                return;
 553
 554        left_first = left_count < right_count;
 555        init_patch_ids(&ids);
 556        if (revs->diffopt.nr_paths) {
 557                ids.diffopts.nr_paths = revs->diffopt.nr_paths;
 558                ids.diffopts.paths = revs->diffopt.paths;
 559                ids.diffopts.pathlens = revs->diffopt.pathlens;
 560        }
 561
 562        /* Compute patch-ids for one side */
 563        for (p = list; p; p = p->next) {
 564                struct commit *commit = p->item;
 565                unsigned flags = commit->object.flags;
 566
 567                if (flags & BOUNDARY)
 568                        continue;
 569                /*
 570                 * If we have fewer left, left_first is set and we omit
 571                 * commits on the right branch in this loop.  If we have
 572                 * fewer right, we skip the left ones.
 573                 */
 574                if (left_first != !!(flags & SYMMETRIC_LEFT))
 575                        continue;
 576                commit->util = add_commit_patch_id(commit, &ids);
 577        }
 578
 579        /* Check the other side */
 580        for (p = list; p; p = p->next) {
 581                struct commit *commit = p->item;
 582                struct patch_id *id;
 583                unsigned flags = commit->object.flags;
 584
 585                if (flags & BOUNDARY)
 586                        continue;
 587                /*
 588                 * If we have fewer left, left_first is set and we omit
 589                 * commits on the left branch in this loop.
 590                 */
 591                if (left_first == !!(flags & SYMMETRIC_LEFT))
 592                        continue;
 593
 594                /*
 595                 * Have we seen the same patch id?
 596                 */
 597                id = has_commit_patch_id(commit, &ids);
 598                if (!id)
 599                        continue;
 600                id->seen = 1;
 601                commit->object.flags |= SHOWN;
 602        }
 603
 604        /* Now check the original side for seen ones */
 605        for (p = list; p; p = p->next) {
 606                struct commit *commit = p->item;
 607                struct patch_id *ent;
 608
 609                ent = commit->util;
 610                if (!ent)
 611                        continue;
 612                if (ent->seen)
 613                        commit->object.flags |= SHOWN;
 614                commit->util = NULL;
 615        }
 616
 617        free_patch_ids(&ids);
 618}
 619
 620/* How many extra uninteresting commits we want to see.. */
 621#define SLOP 5
 622
 623static int still_interesting(struct commit_list *src, unsigned long date, int slop)
 624{
 625        /*
 626         * No source list at all? We're definitely done..
 627         */
 628        if (!src)
 629                return 0;
 630
 631        /*
 632         * Does the destination list contain entries with a date
 633         * before the source list? Definitely _not_ done.
 634         */
 635        if (date < src->item->date)
 636                return SLOP;
 637
 638        /*
 639         * Does the source list still have interesting commits in
 640         * it? Definitely not done..
 641         */
 642        if (!everybody_uninteresting(src))
 643                return SLOP;
 644
 645        /* Ok, we're closing in.. */
 646        return slop-1;
 647}
 648
 649/*
 650 * "rev-list --ancestry-path A..B" computes commits that are ancestors
 651 * of B but not ancestors of A but further limits the result to those
 652 * that are descendants of A.  This takes the list of bottom commits and
 653 * the result of "A..B" without --ancestry-path, and limits the latter
 654 * further to the ones that can reach one of the commits in "bottom".
 655 */
 656static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
 657{
 658        struct commit_list *p;
 659        struct commit_list *rlist = NULL;
 660        int made_progress;
 661
 662        /*
 663         * Reverse the list so that it will be likely that we would
 664         * process parents before children.
 665         */
 666        for (p = list; p; p = p->next)
 667                commit_list_insert(p->item, &rlist);
 668
 669        for (p = bottom; p; p = p->next)
 670                p->item->object.flags |= TMP_MARK;
 671
 672        /*
 673         * Mark the ones that can reach bottom commits in "list",
 674         * in a bottom-up fashion.
 675         */
 676        do {
 677                made_progress = 0;
 678                for (p = rlist; p; p = p->next) {
 679                        struct commit *c = p->item;
 680                        struct commit_list *parents;
 681                        if (c->object.flags & (TMP_MARK | UNINTERESTING))
 682                                continue;
 683                        for (parents = c->parents;
 684                             parents;
 685                             parents = parents->next) {
 686                                if (!(parents->item->object.flags & TMP_MARK))
 687                                        continue;
 688                                c->object.flags |= TMP_MARK;
 689                                made_progress = 1;
 690                                break;
 691                        }
 692                }
 693        } while (made_progress);
 694
 695        /*
 696         * NEEDSWORK: decide if we want to remove parents that are
 697         * not marked with TMP_MARK from commit->parents for commits
 698         * in the resulting list.  We may not want to do that, though.
 699         */
 700
 701        /*
 702         * The ones that are not marked with TMP_MARK are uninteresting
 703         */
 704        for (p = list; p; p = p->next) {
 705                struct commit *c = p->item;
 706                if (c->object.flags & TMP_MARK)
 707                        continue;
 708                c->object.flags |= UNINTERESTING;
 709        }
 710
 711        /* We are done with the TMP_MARK */
 712        for (p = list; p; p = p->next)
 713                p->item->object.flags &= ~TMP_MARK;
 714        for (p = bottom; p; p = p->next)
 715                p->item->object.flags &= ~TMP_MARK;
 716        free_commit_list(rlist);
 717}
 718
 719/*
 720 * Before walking the history, keep the set of "negative" refs the
 721 * caller has asked to exclude.
 722 *
 723 * This is used to compute "rev-list --ancestry-path A..B", as we need
 724 * to filter the result of "A..B" further to the ones that can actually
 725 * reach A.
 726 */
 727static struct commit_list *collect_bottom_commits(struct commit_list *list)
 728{
 729        struct commit_list *elem, *bottom = NULL;
 730        for (elem = list; elem; elem = elem->next)
 731                if (elem->item->object.flags & UNINTERESTING)
 732                        commit_list_insert(elem->item, &bottom);
 733        return bottom;
 734}
 735
 736static int limit_list(struct rev_info *revs)
 737{
 738        int slop = SLOP;
 739        unsigned long date = ~0ul;
 740        struct commit_list *list = revs->commits;
 741        struct commit_list *newlist = NULL;
 742        struct commit_list **p = &newlist;
 743        struct commit_list *bottom = NULL;
 744
 745        if (revs->ancestry_path) {
 746                bottom = collect_bottom_commits(list);
 747                if (!bottom)
 748                        die("--ancestry-path given but there are no bottom commits");
 749        }
 750
 751        while (list) {
 752                struct commit_list *entry = list;
 753                struct commit *commit = list->item;
 754                struct object *obj = &commit->object;
 755                show_early_output_fn_t show;
 756
 757                list = list->next;
 758                free(entry);
 759
 760                if (revs->max_age != -1 && (commit->date < revs->max_age))
 761                        obj->flags |= UNINTERESTING;
 762                if (add_parents_to_list(revs, commit, &list, NULL) < 0)
 763                        return -1;
 764                if (obj->flags & UNINTERESTING) {
 765                        mark_parents_uninteresting(commit);
 766                        if (revs->show_all)
 767                                p = &commit_list_insert(commit, p)->next;
 768                        slop = still_interesting(list, date, slop);
 769                        if (slop)
 770                                continue;
 771                        /* If showing all, add the whole pending list to the end */
 772                        if (revs->show_all)
 773                                *p = list;
 774                        break;
 775                }
 776                if (revs->min_age != -1 && (commit->date > revs->min_age))
 777                        continue;
 778                date = commit->date;
 779                p = &commit_list_insert(commit, p)->next;
 780
 781                show = show_early_output;
 782                if (!show)
 783                        continue;
 784
 785                show(revs, newlist);
 786                show_early_output = NULL;
 787        }
 788        if (revs->cherry_pick)
 789                cherry_pick_list(newlist, revs);
 790
 791        if (bottom) {
 792                limit_to_ancestry(bottom, newlist);
 793                free_commit_list(bottom);
 794        }
 795
 796        revs->commits = newlist;
 797        return 0;
 798}
 799
 800struct all_refs_cb {
 801        int all_flags;
 802        int warned_bad_reflog;
 803        struct rev_info *all_revs;
 804        const char *name_for_errormsg;
 805};
 806
 807static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
 808{
 809        struct all_refs_cb *cb = cb_data;
 810        struct object *object = get_reference(cb->all_revs, path, sha1,
 811                                              cb->all_flags);
 812        add_pending_object(cb->all_revs, object, path);
 813        return 0;
 814}
 815
 816static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
 817        unsigned flags)
 818{
 819        cb->all_revs = revs;
 820        cb->all_flags = flags;
 821}
 822
 823static void handle_refs(struct rev_info *revs, unsigned flags,
 824                int (*for_each)(each_ref_fn, void *))
 825{
 826        struct all_refs_cb cb;
 827        init_all_refs_cb(&cb, revs, flags);
 828        for_each(handle_one_ref, &cb);
 829}
 830
 831static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
 832{
 833        struct all_refs_cb *cb = cb_data;
 834        if (!is_null_sha1(sha1)) {
 835                struct object *o = parse_object(sha1);
 836                if (o) {
 837                        o->flags |= cb->all_flags;
 838                        add_pending_object(cb->all_revs, o, "");
 839                }
 840                else if (!cb->warned_bad_reflog) {
 841                        warning("reflog of '%s' references pruned commits",
 842                                cb->name_for_errormsg);
 843                        cb->warned_bad_reflog = 1;
 844                }
 845        }
 846}
 847
 848static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
 849                const char *email, unsigned long timestamp, int tz,
 850                const char *message, void *cb_data)
 851{
 852        handle_one_reflog_commit(osha1, cb_data);
 853        handle_one_reflog_commit(nsha1, cb_data);
 854        return 0;
 855}
 856
 857static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
 858{
 859        struct all_refs_cb *cb = cb_data;
 860        cb->warned_bad_reflog = 0;
 861        cb->name_for_errormsg = path;
 862        for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
 863        return 0;
 864}
 865
 866static void handle_reflog(struct rev_info *revs, unsigned flags)
 867{
 868        struct all_refs_cb cb;
 869        cb.all_revs = revs;
 870        cb.all_flags = flags;
 871        for_each_reflog(handle_one_reflog, &cb);
 872}
 873
 874static int add_parents_only(struct rev_info *revs, const char *arg, int flags)
 875{
 876        unsigned char sha1[20];
 877        struct object *it;
 878        struct commit *commit;
 879        struct commit_list *parents;
 880
 881        if (*arg == '^') {
 882                flags ^= UNINTERESTING;
 883                arg++;
 884        }
 885        if (get_sha1(arg, sha1))
 886                return 0;
 887        while (1) {
 888                it = get_reference(revs, arg, sha1, 0);
 889                if (it->type != OBJ_TAG)
 890                        break;
 891                if (!((struct tag*)it)->tagged)
 892                        return 0;
 893                hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
 894        }
 895        if (it->type != OBJ_COMMIT)
 896                return 0;
 897        commit = (struct commit *)it;
 898        for (parents = commit->parents; parents; parents = parents->next) {
 899                it = &parents->item->object;
 900                it->flags |= flags;
 901                add_pending_object(revs, it, arg);
 902        }
 903        return 1;
 904}
 905
 906void init_revisions(struct rev_info *revs, const char *prefix)
 907{
 908        memset(revs, 0, sizeof(*revs));
 909
 910        revs->abbrev = DEFAULT_ABBREV;
 911        revs->ignore_merges = 1;
 912        revs->simplify_history = 1;
 913        DIFF_OPT_SET(&revs->pruning, RECURSIVE);
 914        DIFF_OPT_SET(&revs->pruning, QUICK);
 915        revs->pruning.add_remove = file_add_remove;
 916        revs->pruning.change = file_change;
 917        revs->lifo = 1;
 918        revs->dense = 1;
 919        revs->prefix = prefix;
 920        revs->max_age = -1;
 921        revs->min_age = -1;
 922        revs->skip_count = -1;
 923        revs->max_count = -1;
 924
 925        revs->commit_format = CMIT_FMT_DEFAULT;
 926
 927        revs->grep_filter.status_only = 1;
 928        revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list);
 929        revs->grep_filter.header_tail = &(revs->grep_filter.header_list);
 930        revs->grep_filter.regflags = REG_NEWLINE;
 931
 932        diff_setup(&revs->diffopt);
 933        if (prefix && !revs->diffopt.prefix) {
 934                revs->diffopt.prefix = prefix;
 935                revs->diffopt.prefix_length = strlen(prefix);
 936        }
 937}
 938
 939static void add_pending_commit_list(struct rev_info *revs,
 940                                    struct commit_list *commit_list,
 941                                    unsigned int flags)
 942{
 943        while (commit_list) {
 944                struct object *object = &commit_list->item->object;
 945                object->flags |= flags;
 946                add_pending_object(revs, object, sha1_to_hex(object->sha1));
 947                commit_list = commit_list->next;
 948        }
 949}
 950
 951static void prepare_show_merge(struct rev_info *revs)
 952{
 953        struct commit_list *bases;
 954        struct commit *head, *other;
 955        unsigned char sha1[20];
 956        const char **prune = NULL;
 957        int i, prune_num = 1; /* counting terminating NULL */
 958
 959        if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1)))
 960                die("--merge without HEAD?");
 961        if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1)))
 962                die("--merge without MERGE_HEAD?");
 963        add_pending_object(revs, &head->object, "HEAD");
 964        add_pending_object(revs, &other->object, "MERGE_HEAD");
 965        bases = get_merge_bases(head, other, 1);
 966        add_pending_commit_list(revs, bases, UNINTERESTING);
 967        free_commit_list(bases);
 968        head->object.flags |= SYMMETRIC_LEFT;
 969
 970        if (!active_nr)
 971                read_cache();
 972        for (i = 0; i < active_nr; i++) {
 973                struct cache_entry *ce = active_cache[i];
 974                if (!ce_stage(ce))
 975                        continue;
 976                if (ce_path_match(ce, revs->prune_data)) {
 977                        prune_num++;
 978                        prune = xrealloc(prune, sizeof(*prune) * prune_num);
 979                        prune[prune_num-2] = ce->name;
 980                        prune[prune_num-1] = NULL;
 981                }
 982                while ((i+1 < active_nr) &&
 983                       ce_same_name(ce, active_cache[i+1]))
 984                        i++;
 985        }
 986        revs->prune_data = prune;
 987        revs->limited = 1;
 988}
 989
 990int handle_revision_arg(const char *arg, struct rev_info *revs,
 991                        int flags,
 992                        int cant_be_filename)
 993{
 994        unsigned mode;
 995        char *dotdot;
 996        struct object *object;
 997        unsigned char sha1[20];
 998        int local_flags;
 999
1000        dotdot = strstr(arg, "..");
1001        if (dotdot) {
1002                unsigned char from_sha1[20];
1003                const char *next = dotdot + 2;
1004                const char *this = arg;
1005                int symmetric = *next == '.';
1006                unsigned int flags_exclude = flags ^ UNINTERESTING;
1007
1008                *dotdot = 0;
1009                next += symmetric;
1010
1011                if (!*next)
1012                        next = "HEAD";
1013                if (dotdot == arg)
1014                        this = "HEAD";
1015                if (!get_sha1(this, from_sha1) &&
1016                    !get_sha1(next, sha1)) {
1017                        struct commit *a, *b;
1018                        struct commit_list *exclude;
1019
1020                        a = lookup_commit_reference(from_sha1);
1021                        b = lookup_commit_reference(sha1);
1022                        if (!a || !b) {
1023                                die(symmetric ?
1024                                    "Invalid symmetric difference expression %s...%s" :
1025                                    "Invalid revision range %s..%s",
1026                                    arg, next);
1027                        }
1028
1029                        if (!cant_be_filename) {
1030                                *dotdot = '.';
1031                                verify_non_filename(revs->prefix, arg);
1032                        }
1033
1034                        if (symmetric) {
1035                                exclude = get_merge_bases(a, b, 1);
1036                                add_pending_commit_list(revs, exclude,
1037                                                        flags_exclude);
1038                                free_commit_list(exclude);
1039                                a->object.flags |= flags | SYMMETRIC_LEFT;
1040                        } else
1041                                a->object.flags |= flags_exclude;
1042                        b->object.flags |= flags;
1043                        add_pending_object(revs, &a->object, this);
1044                        add_pending_object(revs, &b->object, next);
1045                        return 0;
1046                }
1047                *dotdot = '.';
1048        }
1049        dotdot = strstr(arg, "^@");
1050        if (dotdot && !dotdot[2]) {
1051                *dotdot = 0;
1052                if (add_parents_only(revs, arg, flags))
1053                        return 0;
1054                *dotdot = '^';
1055        }
1056        dotdot = strstr(arg, "^!");
1057        if (dotdot && !dotdot[2]) {
1058                *dotdot = 0;
1059                if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1060                        *dotdot = '^';
1061        }
1062
1063        local_flags = 0;
1064        if (*arg == '^') {
1065                local_flags = UNINTERESTING;
1066                arg++;
1067        }
1068        if (get_sha1_with_mode(arg, sha1, &mode))
1069                return -1;
1070        if (!cant_be_filename)
1071                verify_non_filename(revs->prefix, arg);
1072        object = get_reference(revs, arg, sha1, flags ^ local_flags);
1073        add_pending_object_with_mode(revs, object, arg, mode);
1074        return 0;
1075}
1076
1077static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb, const char ***prune_data)
1078{
1079        const char **prune = *prune_data;
1080        int prune_nr;
1081        int prune_alloc;
1082
1083        /* count existing ones */
1084        if (!prune)
1085                prune_nr = 0;
1086        else
1087                for (prune_nr = 0; prune[prune_nr]; prune_nr++)
1088                        ;
1089        prune_alloc = prune_nr; /* not really, but we do not know */
1090
1091        while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1092                int len = sb->len;
1093                if (len && sb->buf[len - 1] == '\n')
1094                        sb->buf[--len] = '\0';
1095                ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1096                prune[prune_nr++] = xstrdup(sb->buf);
1097        }
1098        if (prune) {
1099                ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1100                prune[prune_nr] = NULL;
1101        }
1102        *prune_data = prune;
1103}
1104
1105static void read_revisions_from_stdin(struct rev_info *revs, const char ***prune)
1106{
1107        struct strbuf sb;
1108        int seen_dashdash = 0;
1109
1110        strbuf_init(&sb, 1000);
1111        while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1112                int len = sb.len;
1113                if (len && sb.buf[len - 1] == '\n')
1114                        sb.buf[--len] = '\0';
1115                if (!len)
1116                        break;
1117                if (sb.buf[0] == '-') {
1118                        if (len == 2 && sb.buf[1] == '-') {
1119                                seen_dashdash = 1;
1120                                break;
1121                        }
1122                        die("options not supported in --stdin mode");
1123                }
1124                if (handle_revision_arg(sb.buf, revs, 0, 1))
1125                        die("bad revision '%s'", sb.buf);
1126        }
1127        if (seen_dashdash)
1128                read_pathspec_from_stdin(revs, &sb, prune);
1129        strbuf_release(&sb);
1130}
1131
1132static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1133{
1134        append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1135}
1136
1137static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1138{
1139        append_header_grep_pattern(&revs->grep_filter, field, pattern);
1140}
1141
1142static void add_message_grep(struct rev_info *revs, const char *pattern)
1143{
1144        add_grep(revs, pattern, GREP_PATTERN_BODY);
1145}
1146
1147static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1148                               int *unkc, const char **unkv)
1149{
1150        const char *arg = argv[0];
1151
1152        /* pseudo revision arguments */
1153        if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1154            !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1155            !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1156            !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1157            !strcmp(arg, "--bisect"))
1158        {
1159                unkv[(*unkc)++] = arg;
1160                return 1;
1161        }
1162
1163        if (!prefixcmp(arg, "--max-count=")) {
1164                revs->max_count = atoi(arg + 12);
1165        } else if (!prefixcmp(arg, "--skip=")) {
1166                revs->skip_count = atoi(arg + 7);
1167        } else if ((*arg == '-') && isdigit(arg[1])) {
1168        /* accept -<digit>, like traditional "head" */
1169                revs->max_count = atoi(arg + 1);
1170        } else if (!strcmp(arg, "-n")) {
1171                if (argc <= 1)
1172                        return error("-n requires an argument");
1173                revs->max_count = atoi(argv[1]);
1174                return 2;
1175        } else if (!prefixcmp(arg, "-n")) {
1176                revs->max_count = atoi(arg + 2);
1177        } else if (!prefixcmp(arg, "--max-age=")) {
1178                revs->max_age = atoi(arg + 10);
1179        } else if (!prefixcmp(arg, "--since=")) {
1180                revs->max_age = approxidate(arg + 8);
1181        } else if (!prefixcmp(arg, "--after=")) {
1182                revs->max_age = approxidate(arg + 8);
1183        } else if (!prefixcmp(arg, "--min-age=")) {
1184                revs->min_age = atoi(arg + 10);
1185        } else if (!prefixcmp(arg, "--before=")) {
1186                revs->min_age = approxidate(arg + 9);
1187        } else if (!prefixcmp(arg, "--until=")) {
1188                revs->min_age = approxidate(arg + 8);
1189        } else if (!strcmp(arg, "--first-parent")) {
1190                revs->first_parent_only = 1;
1191        } else if (!strcmp(arg, "--ancestry-path")) {
1192                revs->ancestry_path = 1;
1193                revs->limited = 1;
1194        } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1195                init_reflog_walk(&revs->reflog_info);
1196        } else if (!strcmp(arg, "--default")) {
1197                if (argc <= 1)
1198                        return error("bad --default argument");
1199                revs->def = argv[1];
1200                return 2;
1201        } else if (!strcmp(arg, "--merge")) {
1202                revs->show_merge = 1;
1203        } else if (!strcmp(arg, "--topo-order")) {
1204                revs->lifo = 1;
1205                revs->topo_order = 1;
1206        } else if (!strcmp(arg, "--simplify-merges")) {
1207                revs->simplify_merges = 1;
1208                revs->rewrite_parents = 1;
1209                revs->simplify_history = 0;
1210                revs->limited = 1;
1211        } else if (!strcmp(arg, "--simplify-by-decoration")) {
1212                revs->simplify_merges = 1;
1213                revs->rewrite_parents = 1;
1214                revs->simplify_history = 0;
1215                revs->simplify_by_decoration = 1;
1216                revs->limited = 1;
1217                revs->prune = 1;
1218                load_ref_decorations(DECORATE_SHORT_REFS);
1219        } else if (!strcmp(arg, "--date-order")) {
1220                revs->lifo = 0;
1221                revs->topo_order = 1;
1222        } else if (!prefixcmp(arg, "--early-output")) {
1223                int count = 100;
1224                switch (arg[14]) {
1225                case '=':
1226                        count = atoi(arg+15);
1227                        /* Fallthrough */
1228                case 0:
1229                        revs->topo_order = 1;
1230                       revs->early_output = count;
1231                }
1232        } else if (!strcmp(arg, "--parents")) {
1233                revs->rewrite_parents = 1;
1234                revs->print_parents = 1;
1235        } else if (!strcmp(arg, "--dense")) {
1236                revs->dense = 1;
1237        } else if (!strcmp(arg, "--sparse")) {
1238                revs->dense = 0;
1239        } else if (!strcmp(arg, "--show-all")) {
1240                revs->show_all = 1;
1241        } else if (!strcmp(arg, "--remove-empty")) {
1242                revs->remove_empty_trees = 1;
1243        } else if (!strcmp(arg, "--merges")) {
1244                revs->merges_only = 1;
1245        } else if (!strcmp(arg, "--no-merges")) {
1246                revs->no_merges = 1;
1247        } else if (!strcmp(arg, "--boundary")) {
1248                revs->boundary = 1;
1249        } else if (!strcmp(arg, "--left-right")) {
1250                revs->left_right = 1;
1251        } else if (!strcmp(arg, "--cherry-pick")) {
1252                revs->cherry_pick = 1;
1253                revs->limited = 1;
1254        } else if (!strcmp(arg, "--objects")) {
1255                revs->tag_objects = 1;
1256                revs->tree_objects = 1;
1257                revs->blob_objects = 1;
1258        } else if (!strcmp(arg, "--objects-edge")) {
1259                revs->tag_objects = 1;
1260                revs->tree_objects = 1;
1261                revs->blob_objects = 1;
1262                revs->edge_hint = 1;
1263        } else if (!strcmp(arg, "--unpacked")) {
1264                revs->unpacked = 1;
1265        } else if (!prefixcmp(arg, "--unpacked=")) {
1266                die("--unpacked=<packfile> no longer supported.");
1267        } else if (!strcmp(arg, "-r")) {
1268                revs->diff = 1;
1269                DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1270        } else if (!strcmp(arg, "-t")) {
1271                revs->diff = 1;
1272                DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1273                DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1274        } else if (!strcmp(arg, "-m")) {
1275                revs->ignore_merges = 0;
1276        } else if (!strcmp(arg, "-c")) {
1277                revs->diff = 1;
1278                revs->dense_combined_merges = 0;
1279                revs->combine_merges = 1;
1280        } else if (!strcmp(arg, "--cc")) {
1281                revs->diff = 1;
1282                revs->dense_combined_merges = 1;
1283                revs->combine_merges = 1;
1284        } else if (!strcmp(arg, "-v")) {
1285                revs->verbose_header = 1;
1286        } else if (!strcmp(arg, "--pretty")) {
1287                revs->verbose_header = 1;
1288                revs->pretty_given = 1;
1289                get_commit_format(arg+8, revs);
1290        } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
1291                revs->verbose_header = 1;
1292                revs->pretty_given = 1;
1293                get_commit_format(arg+9, revs);
1294        } else if (!strcmp(arg, "--show-notes")) {
1295                revs->show_notes = 1;
1296                revs->show_notes_given = 1;
1297        } else if (!prefixcmp(arg, "--show-notes=")) {
1298                struct strbuf buf = STRBUF_INIT;
1299                revs->show_notes = 1;
1300                revs->show_notes_given = 1;
1301                if (!revs->notes_opt.extra_notes_refs)
1302                        revs->notes_opt.extra_notes_refs = xcalloc(1, sizeof(struct string_list));
1303                if (!prefixcmp(arg+13, "refs/"))
1304                        /* happy */;
1305                else if (!prefixcmp(arg+13, "notes/"))
1306                        strbuf_addstr(&buf, "refs/");
1307                else
1308                        strbuf_addstr(&buf, "refs/notes/");
1309                strbuf_addstr(&buf, arg+13);
1310                string_list_append(strbuf_detach(&buf, NULL),
1311                                   revs->notes_opt.extra_notes_refs);
1312        } else if (!strcmp(arg, "--no-notes")) {
1313                revs->show_notes = 0;
1314                revs->show_notes_given = 1;
1315        } else if (!strcmp(arg, "--standard-notes")) {
1316                revs->show_notes_given = 1;
1317                revs->notes_opt.suppress_default_notes = 0;
1318        } else if (!strcmp(arg, "--no-standard-notes")) {
1319                revs->notes_opt.suppress_default_notes = 1;
1320        } else if (!strcmp(arg, "--oneline")) {
1321                revs->verbose_header = 1;
1322                get_commit_format("oneline", revs);
1323                revs->pretty_given = 1;
1324                revs->abbrev_commit = 1;
1325        } else if (!strcmp(arg, "--graph")) {
1326                revs->topo_order = 1;
1327                revs->rewrite_parents = 1;
1328                revs->graph = graph_init(revs);
1329        } else if (!strcmp(arg, "--root")) {
1330                revs->show_root_diff = 1;
1331        } else if (!strcmp(arg, "--no-commit-id")) {
1332                revs->no_commit_id = 1;
1333        } else if (!strcmp(arg, "--always")) {
1334                revs->always_show_header = 1;
1335        } else if (!strcmp(arg, "--no-abbrev")) {
1336                revs->abbrev = 0;
1337        } else if (!strcmp(arg, "--abbrev")) {
1338                revs->abbrev = DEFAULT_ABBREV;
1339        } else if (!prefixcmp(arg, "--abbrev=")) {
1340                revs->abbrev = strtoul(arg + 9, NULL, 10);
1341                if (revs->abbrev < MINIMUM_ABBREV)
1342                        revs->abbrev = MINIMUM_ABBREV;
1343                else if (revs->abbrev > 40)
1344                        revs->abbrev = 40;
1345        } else if (!strcmp(arg, "--abbrev-commit")) {
1346                revs->abbrev_commit = 1;
1347        } else if (!strcmp(arg, "--full-diff")) {
1348                revs->diff = 1;
1349                revs->full_diff = 1;
1350        } else if (!strcmp(arg, "--full-history")) {
1351                revs->simplify_history = 0;
1352        } else if (!strcmp(arg, "--relative-date")) {
1353                revs->date_mode = DATE_RELATIVE;
1354                revs->date_mode_explicit = 1;
1355        } else if (!strncmp(arg, "--date=", 7)) {
1356                revs->date_mode = parse_date_format(arg + 7);
1357                revs->date_mode_explicit = 1;
1358        } else if (!strcmp(arg, "--log-size")) {
1359                revs->show_log_size = 1;
1360        }
1361        /*
1362         * Grepping the commit log
1363         */
1364        else if (!prefixcmp(arg, "--author=")) {
1365                add_header_grep(revs, GREP_HEADER_AUTHOR, arg+9);
1366        } else if (!prefixcmp(arg, "--committer=")) {
1367                add_header_grep(revs, GREP_HEADER_COMMITTER, arg+12);
1368        } else if (!prefixcmp(arg, "--grep=")) {
1369                add_message_grep(revs, arg+7);
1370        } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1371                revs->grep_filter.regflags |= REG_EXTENDED;
1372        } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1373                revs->grep_filter.regflags |= REG_ICASE;
1374        } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1375                revs->grep_filter.fixed = 1;
1376        } else if (!strcmp(arg, "--all-match")) {
1377                revs->grep_filter.all_match = 1;
1378        } else if (!prefixcmp(arg, "--encoding=")) {
1379                arg += 11;
1380                if (strcmp(arg, "none"))
1381                        git_log_output_encoding = xstrdup(arg);
1382                else
1383                        git_log_output_encoding = "";
1384        } else if (!strcmp(arg, "--reverse")) {
1385                revs->reverse ^= 1;
1386        } else if (!strcmp(arg, "--children")) {
1387                revs->children.name = "children";
1388                revs->limited = 1;
1389        } else {
1390                int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1391                if (!opts)
1392                        unkv[(*unkc)++] = arg;
1393                return opts;
1394        }
1395
1396        return 1;
1397}
1398
1399void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1400                        const struct option *options,
1401                        const char * const usagestr[])
1402{
1403        int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1404                                    &ctx->cpidx, ctx->out);
1405        if (n <= 0) {
1406                error("unknown option `%s'", ctx->argv[0]);
1407                usage_with_options(usagestr, options);
1408        }
1409        ctx->argv += n;
1410        ctx->argc -= n;
1411}
1412
1413static int for_each_bad_bisect_ref(each_ref_fn fn, void *cb_data)
1414{
1415        return for_each_ref_in("refs/bisect/bad", fn, cb_data);
1416}
1417
1418static int for_each_good_bisect_ref(each_ref_fn fn, void *cb_data)
1419{
1420        return for_each_ref_in("refs/bisect/good", fn, cb_data);
1421}
1422
1423static void append_prune_data(const char ***prune_data, const char **av)
1424{
1425        const char **prune = *prune_data;
1426        int prune_nr;
1427        int prune_alloc;
1428
1429        if (!prune) {
1430                *prune_data = av;
1431                return;
1432        }
1433
1434        /* count existing ones */
1435        for (prune_nr = 0; prune[prune_nr]; prune_nr++)
1436                ;
1437        prune_alloc = prune_nr; /* not really, but we do not know */
1438
1439        while (*av) {
1440                ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1441                prune[prune_nr++] = *av;
1442                av++;
1443        }
1444        if (prune) {
1445                ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1446                prune[prune_nr] = NULL;
1447        }
1448        *prune_data = prune;
1449}
1450
1451/*
1452 * Parse revision information, filling in the "rev_info" structure,
1453 * and removing the used arguments from the argument list.
1454 *
1455 * Returns the number of arguments left that weren't recognized
1456 * (which are also moved to the head of the argument list)
1457 */
1458int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
1459{
1460        int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0;
1461        const char **prune_data = NULL;
1462
1463        /* First, search for "--" */
1464        seen_dashdash = 0;
1465        for (i = 1; i < argc; i++) {
1466                const char *arg = argv[i];
1467                if (strcmp(arg, "--"))
1468                        continue;
1469                argv[i] = NULL;
1470                argc = i;
1471                if (argv[i + 1])
1472                        prune_data = argv + i + 1;
1473                seen_dashdash = 1;
1474                break;
1475        }
1476
1477        /* Second, deal with arguments and options */
1478        flags = 0;
1479        read_from_stdin = 0;
1480        for (left = i = 1; i < argc; i++) {
1481                const char *arg = argv[i];
1482                if (*arg == '-') {
1483                        int opts;
1484
1485                        if (!strcmp(arg, "--all")) {
1486                                handle_refs(revs, flags, for_each_ref);
1487                                handle_refs(revs, flags, head_ref);
1488                                continue;
1489                        }
1490                        if (!strcmp(arg, "--branches")) {
1491                                handle_refs(revs, flags, for_each_branch_ref);
1492                                continue;
1493                        }
1494                        if (!strcmp(arg, "--bisect")) {
1495                                handle_refs(revs, flags, for_each_bad_bisect_ref);
1496                                handle_refs(revs, flags ^ UNINTERESTING, for_each_good_bisect_ref);
1497                                revs->bisect = 1;
1498                                continue;
1499                        }
1500                        if (!strcmp(arg, "--tags")) {
1501                                handle_refs(revs, flags, for_each_tag_ref);
1502                                continue;
1503                        }
1504                        if (!strcmp(arg, "--remotes")) {
1505                                handle_refs(revs, flags, for_each_remote_ref);
1506                                continue;
1507                        }
1508                        if (!prefixcmp(arg, "--glob=")) {
1509                                struct all_refs_cb cb;
1510                                init_all_refs_cb(&cb, revs, flags);
1511                                for_each_glob_ref(handle_one_ref, arg + 7, &cb);
1512                                continue;
1513                        }
1514                        if (!prefixcmp(arg, "--branches=")) {
1515                                struct all_refs_cb cb;
1516                                init_all_refs_cb(&cb, revs, flags);
1517                                for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1518                                continue;
1519                        }
1520                        if (!prefixcmp(arg, "--tags=")) {
1521                                struct all_refs_cb cb;
1522                                init_all_refs_cb(&cb, revs, flags);
1523                                for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1524                                continue;
1525                        }
1526                        if (!prefixcmp(arg, "--remotes=")) {
1527                                struct all_refs_cb cb;
1528                                init_all_refs_cb(&cb, revs, flags);
1529                                for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1530                                continue;
1531                        }
1532                        if (!strcmp(arg, "--reflog")) {
1533                                handle_reflog(revs, flags);
1534                                continue;
1535                        }
1536                        if (!strcmp(arg, "--not")) {
1537                                flags ^= UNINTERESTING;
1538                                continue;
1539                        }
1540                        if (!strcmp(arg, "--no-walk")) {
1541                                revs->no_walk = 1;
1542                                continue;
1543                        }
1544                        if (!strcmp(arg, "--do-walk")) {
1545                                revs->no_walk = 0;
1546                                continue;
1547                        }
1548                        if (!strcmp(arg, "--stdin")) {
1549                                if (revs->disable_stdin) {
1550                                        argv[left++] = arg;
1551                                        continue;
1552                                }
1553                                if (read_from_stdin++)
1554                                        die("--stdin given twice?");
1555                                read_revisions_from_stdin(revs, &prune_data);
1556                                continue;
1557                        }
1558
1559                        opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1560                        if (opts > 0) {
1561                                i += opts - 1;
1562                                continue;
1563                        }
1564                        if (opts < 0)
1565                                exit(128);
1566                        continue;
1567                }
1568
1569                if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
1570                        int j;
1571                        if (seen_dashdash || *arg == '^')
1572                                die("bad revision '%s'", arg);
1573
1574                        /* If we didn't have a "--":
1575                         * (1) all filenames must exist;
1576                         * (2) all rev-args must not be interpretable
1577                         *     as a valid filename.
1578                         * but the latter we have checked in the main loop.
1579                         */
1580                        for (j = i; j < argc; j++)
1581                                verify_filename(revs->prefix, argv[j]);
1582
1583                        append_prune_data(&prune_data, argv + i);
1584                        break;
1585                }
1586                else
1587                        got_rev_arg = 1;
1588        }
1589
1590        if (prune_data)
1591                revs->prune_data = get_pathspec(revs->prefix, prune_data);
1592
1593        if (revs->def == NULL)
1594                revs->def = opt ? opt->def : NULL;
1595        if (opt && opt->tweak)
1596                opt->tweak(revs, opt);
1597        if (revs->show_merge)
1598                prepare_show_merge(revs);
1599        if (revs->def && !revs->pending.nr && !got_rev_arg) {
1600                unsigned char sha1[20];
1601                struct object *object;
1602                unsigned mode;
1603                if (get_sha1_with_mode(revs->def, sha1, &mode))
1604                        die("bad default revision '%s'", revs->def);
1605                object = get_reference(revs, revs->def, sha1, 0);
1606                add_pending_object_with_mode(revs, object, revs->def, mode);
1607        }
1608
1609        /* Did the user ask for any diff output? Run the diff! */
1610        if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1611                revs->diff = 1;
1612
1613        /* Pickaxe, diff-filter and rename following need diffs */
1614        if (revs->diffopt.pickaxe ||
1615            revs->diffopt.filter ||
1616            DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1617                revs->diff = 1;
1618
1619        if (revs->topo_order)
1620                revs->limited = 1;
1621
1622        if (revs->prune_data) {
1623                diff_tree_setup_paths(revs->prune_data, &revs->pruning);
1624                /* Can't prune commits with rename following: the paths change.. */
1625                if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1626                        revs->prune = 1;
1627                if (!revs->full_diff)
1628                        diff_tree_setup_paths(revs->prune_data, &revs->diffopt);
1629        }
1630        if (revs->combine_merges)
1631                revs->ignore_merges = 0;
1632        revs->diffopt.abbrev = revs->abbrev;
1633        if (diff_setup_done(&revs->diffopt) < 0)
1634                die("diff_setup_done failed");
1635
1636        compile_grep_patterns(&revs->grep_filter);
1637
1638        if (revs->reverse && revs->reflog_info)
1639                die("cannot combine --reverse with --walk-reflogs");
1640        if (revs->rewrite_parents && revs->children.name)
1641                die("cannot combine --parents and --children");
1642
1643        /*
1644         * Limitations on the graph functionality
1645         */
1646        if (revs->reverse && revs->graph)
1647                die("cannot combine --reverse with --graph");
1648
1649        if (revs->reflog_info && revs->graph)
1650                die("cannot combine --walk-reflogs with --graph");
1651
1652        return left;
1653}
1654
1655static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1656{
1657        struct commit_list *l = xcalloc(1, sizeof(*l));
1658
1659        l->item = child;
1660        l->next = add_decoration(&revs->children, &parent->object, l);
1661}
1662
1663static int remove_duplicate_parents(struct commit *commit)
1664{
1665        struct commit_list **pp, *p;
1666        int surviving_parents;
1667
1668        /* Examine existing parents while marking ones we have seen... */
1669        pp = &commit->parents;
1670        while ((p = *pp) != NULL) {
1671                struct commit *parent = p->item;
1672                if (parent->object.flags & TMP_MARK) {
1673                        *pp = p->next;
1674                        continue;
1675                }
1676                parent->object.flags |= TMP_MARK;
1677                pp = &p->next;
1678        }
1679        /* count them while clearing the temporary mark */
1680        surviving_parents = 0;
1681        for (p = commit->parents; p; p = p->next) {
1682                p->item->object.flags &= ~TMP_MARK;
1683                surviving_parents++;
1684        }
1685        return surviving_parents;
1686}
1687
1688struct merge_simplify_state {
1689        struct commit *simplified;
1690};
1691
1692static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1693{
1694        struct merge_simplify_state *st;
1695
1696        st = lookup_decoration(&revs->merge_simplification, &commit->object);
1697        if (!st) {
1698                st = xcalloc(1, sizeof(*st));
1699                add_decoration(&revs->merge_simplification, &commit->object, st);
1700        }
1701        return st;
1702}
1703
1704static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
1705{
1706        struct commit_list *p;
1707        struct merge_simplify_state *st, *pst;
1708        int cnt;
1709
1710        st = locate_simplify_state(revs, commit);
1711
1712        /*
1713         * Have we handled this one?
1714         */
1715        if (st->simplified)
1716                return tail;
1717
1718        /*
1719         * An UNINTERESTING commit simplifies to itself, so does a
1720         * root commit.  We do not rewrite parents of such commit
1721         * anyway.
1722         */
1723        if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
1724                st->simplified = commit;
1725                return tail;
1726        }
1727
1728        /*
1729         * Do we know what commit all of our parents should be rewritten to?
1730         * Otherwise we are not ready to rewrite this one yet.
1731         */
1732        for (cnt = 0, p = commit->parents; p; p = p->next) {
1733                pst = locate_simplify_state(revs, p->item);
1734                if (!pst->simplified) {
1735                        tail = &commit_list_insert(p->item, tail)->next;
1736                        cnt++;
1737                }
1738        }
1739        if (cnt) {
1740                tail = &commit_list_insert(commit, tail)->next;
1741                return tail;
1742        }
1743
1744        /*
1745         * Rewrite our list of parents.
1746         */
1747        for (p = commit->parents; p; p = p->next) {
1748                pst = locate_simplify_state(revs, p->item);
1749                p->item = pst->simplified;
1750        }
1751        cnt = remove_duplicate_parents(commit);
1752
1753        /*
1754         * It is possible that we are a merge and one side branch
1755         * does not have any commit that touches the given paths;
1756         * in such a case, the immediate parents will be rewritten
1757         * to different commits.
1758         *
1759         *      o----X          X: the commit we are looking at;
1760         *     /    /           o: a commit that touches the paths;
1761         * ---o----'
1762         *
1763         * Further reduce the parents by removing redundant parents.
1764         */
1765        if (1 < cnt) {
1766                struct commit_list *h = reduce_heads(commit->parents);
1767                cnt = commit_list_count(h);
1768                free_commit_list(commit->parents);
1769                commit->parents = h;
1770        }
1771
1772        /*
1773         * A commit simplifies to itself if it is a root, if it is
1774         * UNINTERESTING, if it touches the given paths, or if it is a
1775         * merge and its parents simplifies to more than one commits
1776         * (the first two cases are already handled at the beginning of
1777         * this function).
1778         *
1779         * Otherwise, it simplifies to what its sole parent simplifies to.
1780         */
1781        if (!cnt ||
1782            (commit->object.flags & UNINTERESTING) ||
1783            !(commit->object.flags & TREESAME) ||
1784            (1 < cnt))
1785                st->simplified = commit;
1786        else {
1787                pst = locate_simplify_state(revs, commit->parents->item);
1788                st->simplified = pst->simplified;
1789        }
1790        return tail;
1791}
1792
1793static void simplify_merges(struct rev_info *revs)
1794{
1795        struct commit_list *list;
1796        struct commit_list *yet_to_do, **tail;
1797
1798        if (!revs->topo_order)
1799                sort_in_topological_order(&revs->commits, revs->lifo);
1800        if (!revs->prune)
1801                return;
1802
1803        /* feed the list reversed */
1804        yet_to_do = NULL;
1805        for (list = revs->commits; list; list = list->next)
1806                commit_list_insert(list->item, &yet_to_do);
1807        while (yet_to_do) {
1808                list = yet_to_do;
1809                yet_to_do = NULL;
1810                tail = &yet_to_do;
1811                while (list) {
1812                        struct commit *commit = list->item;
1813                        struct commit_list *next = list->next;
1814                        free(list);
1815                        list = next;
1816                        tail = simplify_one(revs, commit, tail);
1817                }
1818        }
1819
1820        /* clean up the result, removing the simplified ones */
1821        list = revs->commits;
1822        revs->commits = NULL;
1823        tail = &revs->commits;
1824        while (list) {
1825                struct commit *commit = list->item;
1826                struct commit_list *next = list->next;
1827                struct merge_simplify_state *st;
1828                free(list);
1829                list = next;
1830                st = locate_simplify_state(revs, commit);
1831                if (st->simplified == commit)
1832                        tail = &commit_list_insert(commit, tail)->next;
1833        }
1834}
1835
1836static void set_children(struct rev_info *revs)
1837{
1838        struct commit_list *l;
1839        for (l = revs->commits; l; l = l->next) {
1840                struct commit *commit = l->item;
1841                struct commit_list *p;
1842
1843                for (p = commit->parents; p; p = p->next)
1844                        add_child(revs, p->item, commit);
1845        }
1846}
1847
1848int prepare_revision_walk(struct rev_info *revs)
1849{
1850        int nr = revs->pending.nr;
1851        struct object_array_entry *e, *list;
1852
1853        e = list = revs->pending.objects;
1854        revs->pending.nr = 0;
1855        revs->pending.alloc = 0;
1856        revs->pending.objects = NULL;
1857        while (--nr >= 0) {
1858                struct commit *commit = handle_commit(revs, e->item, e->name);
1859                if (commit) {
1860                        if (!(commit->object.flags & SEEN)) {
1861                                commit->object.flags |= SEEN;
1862                                insert_by_date(commit, &revs->commits);
1863                        }
1864                }
1865                e++;
1866        }
1867        free(list);
1868
1869        if (revs->no_walk)
1870                return 0;
1871        if (revs->limited)
1872                if (limit_list(revs) < 0)
1873                        return -1;
1874        if (revs->topo_order)
1875                sort_in_topological_order(&revs->commits, revs->lifo);
1876        if (revs->simplify_merges)
1877                simplify_merges(revs);
1878        if (revs->children.name)
1879                set_children(revs);
1880        return 0;
1881}
1882
1883enum rewrite_result {
1884        rewrite_one_ok,
1885        rewrite_one_noparents,
1886        rewrite_one_error,
1887};
1888
1889static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
1890{
1891        struct commit_list *cache = NULL;
1892
1893        for (;;) {
1894                struct commit *p = *pp;
1895                if (!revs->limited)
1896                        if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
1897                                return rewrite_one_error;
1898                if (p->parents && p->parents->next)
1899                        return rewrite_one_ok;
1900                if (p->object.flags & UNINTERESTING)
1901                        return rewrite_one_ok;
1902                if (!(p->object.flags & TREESAME))
1903                        return rewrite_one_ok;
1904                if (!p->parents)
1905                        return rewrite_one_noparents;
1906                *pp = p->parents->item;
1907        }
1908}
1909
1910static int rewrite_parents(struct rev_info *revs, struct commit *commit)
1911{
1912        struct commit_list **pp = &commit->parents;
1913        while (*pp) {
1914                struct commit_list *parent = *pp;
1915                switch (rewrite_one(revs, &parent->item)) {
1916                case rewrite_one_ok:
1917                        break;
1918                case rewrite_one_noparents:
1919                        *pp = parent->next;
1920                        continue;
1921                case rewrite_one_error:
1922                        return -1;
1923                }
1924                pp = &parent->next;
1925        }
1926        remove_duplicate_parents(commit);
1927        return 0;
1928}
1929
1930static int commit_match(struct commit *commit, struct rev_info *opt)
1931{
1932        if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
1933                return 1;
1934        return grep_buffer(&opt->grep_filter,
1935                           NULL, /* we say nothing, not even filename */
1936                           commit->buffer, strlen(commit->buffer));
1937}
1938
1939static inline int want_ancestry(struct rev_info *revs)
1940{
1941        return (revs->rewrite_parents || revs->children.name);
1942}
1943
1944enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
1945{
1946        if (commit->object.flags & SHOWN)
1947                return commit_ignore;
1948        if (revs->unpacked && has_sha1_pack(commit->object.sha1))
1949                return commit_ignore;
1950        if (revs->show_all)
1951                return commit_show;
1952        if (commit->object.flags & UNINTERESTING)
1953                return commit_ignore;
1954        if (revs->min_age != -1 && (commit->date > revs->min_age))
1955                return commit_ignore;
1956        if (revs->no_merges && commit->parents && commit->parents->next)
1957                return commit_ignore;
1958        if (revs->merges_only && !(commit->parents && commit->parents->next))
1959                return commit_ignore;
1960        if (!commit_match(commit, revs))
1961                return commit_ignore;
1962        if (revs->prune && revs->dense) {
1963                /* Commit without changes? */
1964                if (commit->object.flags & TREESAME) {
1965                        /* drop merges unless we want parenthood */
1966                        if (!want_ancestry(revs))
1967                                return commit_ignore;
1968                        /* non-merge - always ignore it */
1969                        if (!commit->parents || !commit->parents->next)
1970                                return commit_ignore;
1971                }
1972        }
1973        return commit_show;
1974}
1975
1976enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
1977{
1978        enum commit_action action = get_commit_action(revs, commit);
1979
1980        if (action == commit_show &&
1981            !revs->show_all &&
1982            revs->prune && revs->dense && want_ancestry(revs)) {
1983                if (rewrite_parents(revs, commit) < 0)
1984                        return commit_error;
1985        }
1986        return action;
1987}
1988
1989static struct commit *get_revision_1(struct rev_info *revs)
1990{
1991        if (!revs->commits)
1992                return NULL;
1993
1994        do {
1995                struct commit_list *entry = revs->commits;
1996                struct commit *commit = entry->item;
1997
1998                revs->commits = entry->next;
1999                free(entry);
2000
2001                if (revs->reflog_info)
2002                        fake_reflog_parent(revs->reflog_info, commit);
2003
2004                /*
2005                 * If we haven't done the list limiting, we need to look at
2006                 * the parents here. We also need to do the date-based limiting
2007                 * that we'd otherwise have done in limit_list().
2008                 */
2009                if (!revs->limited) {
2010                        if (revs->max_age != -1 &&
2011                            (commit->date < revs->max_age))
2012                                continue;
2013                        if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
2014                                die("Failed to traverse parents of commit %s",
2015                                    sha1_to_hex(commit->object.sha1));
2016                }
2017
2018                switch (simplify_commit(revs, commit)) {
2019                case commit_ignore:
2020                        continue;
2021                case commit_error:
2022                        die("Failed to simplify parents of commit %s",
2023                            sha1_to_hex(commit->object.sha1));
2024                default:
2025                        return commit;
2026                }
2027        } while (revs->commits);
2028        return NULL;
2029}
2030
2031static void gc_boundary(struct object_array *array)
2032{
2033        unsigned nr = array->nr;
2034        unsigned alloc = array->alloc;
2035        struct object_array_entry *objects = array->objects;
2036
2037        if (alloc <= nr) {
2038                unsigned i, j;
2039                for (i = j = 0; i < nr; i++) {
2040                        if (objects[i].item->flags & SHOWN)
2041                                continue;
2042                        if (i != j)
2043                                objects[j] = objects[i];
2044                        j++;
2045                }
2046                for (i = j; i < nr; i++)
2047                        objects[i].item = NULL;
2048                array->nr = j;
2049        }
2050}
2051
2052static void create_boundary_commit_list(struct rev_info *revs)
2053{
2054        unsigned i;
2055        struct commit *c;
2056        struct object_array *array = &revs->boundary_commits;
2057        struct object_array_entry *objects = array->objects;
2058
2059        /*
2060         * If revs->commits is non-NULL at this point, an error occurred in
2061         * get_revision_1().  Ignore the error and continue printing the
2062         * boundary commits anyway.  (This is what the code has always
2063         * done.)
2064         */
2065        if (revs->commits) {
2066                free_commit_list(revs->commits);
2067                revs->commits = NULL;
2068        }
2069
2070        /*
2071         * Put all of the actual boundary commits from revs->boundary_commits
2072         * into revs->commits
2073         */
2074        for (i = 0; i < array->nr; i++) {
2075                c = (struct commit *)(objects[i].item);
2076                if (!c)
2077                        continue;
2078                if (!(c->object.flags & CHILD_SHOWN))
2079                        continue;
2080                if (c->object.flags & (SHOWN | BOUNDARY))
2081                        continue;
2082                c->object.flags |= BOUNDARY;
2083                commit_list_insert(c, &revs->commits);
2084        }
2085
2086        /*
2087         * If revs->topo_order is set, sort the boundary commits
2088         * in topological order
2089         */
2090        sort_in_topological_order(&revs->commits, revs->lifo);
2091}
2092
2093static struct commit *get_revision_internal(struct rev_info *revs)
2094{
2095        struct commit *c = NULL;
2096        struct commit_list *l;
2097
2098        if (revs->boundary == 2) {
2099                /*
2100                 * All of the normal commits have already been returned,
2101                 * and we are now returning boundary commits.
2102                 * create_boundary_commit_list() has populated
2103                 * revs->commits with the remaining commits to return.
2104                 */
2105                c = pop_commit(&revs->commits);
2106                if (c)
2107                        c->object.flags |= SHOWN;
2108                return c;
2109        }
2110
2111        /*
2112         * Now pick up what they want to give us
2113         */
2114        c = get_revision_1(revs);
2115        if (c) {
2116                while (0 < revs->skip_count) {
2117                        revs->skip_count--;
2118                        c = get_revision_1(revs);
2119                        if (!c)
2120                                break;
2121                }
2122        }
2123
2124        /*
2125         * Check the max_count.
2126         */
2127        switch (revs->max_count) {
2128        case -1:
2129                break;
2130        case 0:
2131                c = NULL;
2132                break;
2133        default:
2134                revs->max_count--;
2135        }
2136
2137        if (c)
2138                c->object.flags |= SHOWN;
2139
2140        if (!revs->boundary) {
2141                return c;
2142        }
2143
2144        if (!c) {
2145                /*
2146                 * get_revision_1() runs out the commits, and
2147                 * we are done computing the boundaries.
2148                 * switch to boundary commits output mode.
2149                 */
2150                revs->boundary = 2;
2151
2152                /*
2153                 * Update revs->commits to contain the list of
2154                 * boundary commits.
2155                 */
2156                create_boundary_commit_list(revs);
2157
2158                return get_revision_internal(revs);
2159        }
2160
2161        /*
2162         * boundary commits are the commits that are parents of the
2163         * ones we got from get_revision_1() but they themselves are
2164         * not returned from get_revision_1().  Before returning
2165         * 'c', we need to mark its parents that they could be boundaries.
2166         */
2167
2168        for (l = c->parents; l; l = l->next) {
2169                struct object *p;
2170                p = &(l->item->object);
2171                if (p->flags & (CHILD_SHOWN | SHOWN))
2172                        continue;
2173                p->flags |= CHILD_SHOWN;
2174                gc_boundary(&revs->boundary_commits);
2175                add_object_array(p, NULL, &revs->boundary_commits);
2176        }
2177
2178        return c;
2179}
2180
2181struct commit *get_revision(struct rev_info *revs)
2182{
2183        struct commit *c;
2184        struct commit_list *reversed;
2185
2186        if (revs->reverse) {
2187                reversed = NULL;
2188                while ((c = get_revision_internal(revs))) {
2189                        commit_list_insert(c, &reversed);
2190                }
2191                revs->commits = reversed;
2192                revs->reverse = 0;
2193                revs->reverse_output_stage = 1;
2194        }
2195
2196        if (revs->reverse_output_stage)
2197                return pop_commit(&revs->commits);
2198
2199        c = get_revision_internal(revs);
2200        if (c && revs->graph)
2201                graph_update(revs->graph, c);
2202        return c;
2203}