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