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