revision.con commit Merge branch 'es/doc-worktree-guessremote-config' (540ee40)
   1#include "cache.h"
   2#include "object-store.h"
   3#include "tag.h"
   4#include "blob.h"
   5#include "tree.h"
   6#include "commit.h"
   7#include "diff.h"
   8#include "refs.h"
   9#include "revision.h"
  10#include "repository.h"
  11#include "graph.h"
  12#include "grep.h"
  13#include "reflog-walk.h"
  14#include "patch-ids.h"
  15#include "decorate.h"
  16#include "log-tree.h"
  17#include "string-list.h"
  18#include "line-log.h"
  19#include "mailmap.h"
  20#include "commit-slab.h"
  21#include "dir.h"
  22#include "cache-tree.h"
  23#include "bisect.h"
  24#include "packfile.h"
  25#include "worktree.h"
  26#include "argv-array.h"
  27#include "commit-reach.h"
  28#include "commit-graph.h"
  29#include "prio-queue.h"
  30
  31volatile show_early_output_fn_t show_early_output;
  32
  33static const char *term_bad;
  34static const char *term_good;
  35
  36implement_shared_commit_slab(revision_sources, char *);
  37
  38void show_object_with_name(FILE *out, struct object *obj, const char *name)
  39{
  40        const char *p;
  41
  42        fprintf(out, "%s ", oid_to_hex(&obj->oid));
  43        for (p = name; *p && *p != '\n'; p++)
  44                fputc(*p, out);
  45        fputc('\n', out);
  46}
  47
  48static void mark_blob_uninteresting(struct blob *blob)
  49{
  50        if (!blob)
  51                return;
  52        if (blob->object.flags & UNINTERESTING)
  53                return;
  54        blob->object.flags |= UNINTERESTING;
  55}
  56
  57static void mark_tree_contents_uninteresting(struct repository *r,
  58                                             struct tree *tree)
  59{
  60        struct tree_desc desc;
  61        struct name_entry entry;
  62
  63        if (parse_tree_gently(tree, 1) < 0)
  64                return;
  65
  66        init_tree_desc(&desc, tree->buffer, tree->size);
  67        while (tree_entry(&desc, &entry)) {
  68                switch (object_type(entry.mode)) {
  69                case OBJ_TREE:
  70                        mark_tree_uninteresting(r, lookup_tree(r, entry.oid));
  71                        break;
  72                case OBJ_BLOB:
  73                        mark_blob_uninteresting(lookup_blob(r, entry.oid));
  74                        break;
  75                default:
  76                        /* Subproject commit - not in this repository */
  77                        break;
  78                }
  79        }
  80
  81        /*
  82         * We don't care about the tree any more
  83         * after it has been marked uninteresting.
  84         */
  85        free_tree_buffer(tree);
  86}
  87
  88void mark_tree_uninteresting(struct repository *r, struct tree *tree)
  89{
  90        struct object *obj;
  91
  92        if (!tree)
  93                return;
  94
  95        obj = &tree->object;
  96        if (obj->flags & UNINTERESTING)
  97                return;
  98        obj->flags |= UNINTERESTING;
  99        mark_tree_contents_uninteresting(r, tree);
 100}
 101
 102struct commit_stack {
 103        struct commit **items;
 104        size_t nr, alloc;
 105};
 106#define COMMIT_STACK_INIT { NULL, 0, 0 }
 107
 108static void commit_stack_push(struct commit_stack *stack, struct commit *commit)
 109{
 110        ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
 111        stack->items[stack->nr++] = commit;
 112}
 113
 114static struct commit *commit_stack_pop(struct commit_stack *stack)
 115{
 116        return stack->nr ? stack->items[--stack->nr] : NULL;
 117}
 118
 119static void commit_stack_clear(struct commit_stack *stack)
 120{
 121        FREE_AND_NULL(stack->items);
 122        stack->nr = stack->alloc = 0;
 123}
 124
 125static void mark_one_parent_uninteresting(struct commit *commit,
 126                                          struct commit_stack *pending)
 127{
 128        struct commit_list *l;
 129
 130        if (commit->object.flags & UNINTERESTING)
 131                return;
 132        commit->object.flags |= UNINTERESTING;
 133
 134        /*
 135         * Normally we haven't parsed the parent
 136         * yet, so we won't have a parent of a parent
 137         * here. However, it may turn out that we've
 138         * reached this commit some other way (where it
 139         * wasn't uninteresting), in which case we need
 140         * to mark its parents recursively too..
 141         */
 142        for (l = commit->parents; l; l = l->next)
 143                commit_stack_push(pending, l->item);
 144}
 145
 146void mark_parents_uninteresting(struct commit *commit)
 147{
 148        struct commit_stack pending = COMMIT_STACK_INIT;
 149        struct commit_list *l;
 150
 151        for (l = commit->parents; l; l = l->next)
 152                mark_one_parent_uninteresting(l->item, &pending);
 153
 154        while (pending.nr > 0)
 155                mark_one_parent_uninteresting(commit_stack_pop(&pending),
 156                                              &pending);
 157
 158        commit_stack_clear(&pending);
 159}
 160
 161static void add_pending_object_with_path(struct rev_info *revs,
 162                                         struct object *obj,
 163                                         const char *name, unsigned mode,
 164                                         const char *path)
 165{
 166        if (!obj)
 167                return;
 168        if (revs->no_walk && (obj->flags & UNINTERESTING))
 169                revs->no_walk = 0;
 170        if (revs->reflog_info && obj->type == OBJ_COMMIT) {
 171                struct strbuf buf = STRBUF_INIT;
 172                int len = interpret_branch_name(name, 0, &buf, 0);
 173
 174                if (0 < len && name[len] && buf.len)
 175                        strbuf_addstr(&buf, name + len);
 176                add_reflog_for_walk(revs->reflog_info,
 177                                    (struct commit *)obj,
 178                                    buf.buf[0] ? buf.buf: name);
 179                strbuf_release(&buf);
 180                return; /* do not add the commit itself */
 181        }
 182        add_object_array_with_path(obj, name, &revs->pending, mode, path);
 183}
 184
 185static void add_pending_object_with_mode(struct rev_info *revs,
 186                                         struct object *obj,
 187                                         const char *name, unsigned mode)
 188{
 189        add_pending_object_with_path(revs, obj, name, mode, NULL);
 190}
 191
 192void add_pending_object(struct rev_info *revs,
 193                        struct object *obj, const char *name)
 194{
 195        add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
 196}
 197
 198void add_head_to_pending(struct rev_info *revs)
 199{
 200        struct object_id oid;
 201        struct object *obj;
 202        if (get_oid("HEAD", &oid))
 203                return;
 204        obj = parse_object(revs->repo, &oid);
 205        if (!obj)
 206                return;
 207        add_pending_object(revs, obj, "HEAD");
 208}
 209
 210static struct object *get_reference(struct rev_info *revs, const char *name,
 211                                    const struct object_id *oid,
 212                                    unsigned int flags)
 213{
 214        struct object *object;
 215
 216        object = parse_object(revs->repo, oid);
 217        if (!object) {
 218                if (revs->ignore_missing)
 219                        return object;
 220                if (revs->exclude_promisor_objects && is_promisor_object(oid))
 221                        return NULL;
 222                die("bad object %s", name);
 223        }
 224        object->flags |= flags;
 225        return object;
 226}
 227
 228void add_pending_oid(struct rev_info *revs, const char *name,
 229                      const struct object_id *oid, unsigned int flags)
 230{
 231        struct object *object = get_reference(revs, name, oid, flags);
 232        add_pending_object(revs, object, name);
 233}
 234
 235static struct commit *handle_commit(struct rev_info *revs,
 236                                    struct object_array_entry *entry)
 237{
 238        struct object *object = entry->item;
 239        const char *name = entry->name;
 240        const char *path = entry->path;
 241        unsigned int mode = entry->mode;
 242        unsigned long flags = object->flags;
 243
 244        /*
 245         * Tag object? Look what it points to..
 246         */
 247        while (object->type == OBJ_TAG) {
 248                struct tag *tag = (struct tag *) object;
 249                if (revs->tag_objects && !(flags & UNINTERESTING))
 250                        add_pending_object(revs, object, tag->tag);
 251                if (!tag->tagged)
 252                        die("bad tag");
 253                object = parse_object(revs->repo, &tag->tagged->oid);
 254                if (!object) {
 255                        if (revs->ignore_missing_links || (flags & UNINTERESTING))
 256                                return NULL;
 257                        if (revs->exclude_promisor_objects &&
 258                            is_promisor_object(&tag->tagged->oid))
 259                                return NULL;
 260                        die("bad object %s", oid_to_hex(&tag->tagged->oid));
 261                }
 262                object->flags |= flags;
 263                /*
 264                 * We'll handle the tagged object by looping or dropping
 265                 * through to the non-tag handlers below. Do not
 266                 * propagate path data from the tag's pending entry.
 267                 */
 268                path = NULL;
 269                mode = 0;
 270        }
 271
 272        /*
 273         * Commit object? Just return it, we'll do all the complex
 274         * reachability crud.
 275         */
 276        if (object->type == OBJ_COMMIT) {
 277                struct commit *commit = (struct commit *)object;
 278
 279                if (parse_commit(commit) < 0)
 280                        die("unable to parse commit %s", name);
 281                if (flags & UNINTERESTING) {
 282                        mark_parents_uninteresting(commit);
 283                        revs->limited = 1;
 284                }
 285                if (revs->sources) {
 286                        char **slot = revision_sources_at(revs->sources, commit);
 287
 288                        if (!*slot)
 289                                *slot = xstrdup(name);
 290                }
 291                return commit;
 292        }
 293
 294        /*
 295         * Tree object? Either mark it uninteresting, or add it
 296         * to the list of objects to look at later..
 297         */
 298        if (object->type == OBJ_TREE) {
 299                struct tree *tree = (struct tree *)object;
 300                if (!revs->tree_objects)
 301                        return NULL;
 302                if (flags & UNINTERESTING) {
 303                        mark_tree_contents_uninteresting(revs->repo, tree);
 304                        return NULL;
 305                }
 306                add_pending_object_with_path(revs, object, name, mode, path);
 307                return NULL;
 308        }
 309
 310        /*
 311         * Blob object? You know the drill by now..
 312         */
 313        if (object->type == OBJ_BLOB) {
 314                if (!revs->blob_objects)
 315                        return NULL;
 316                if (flags & UNINTERESTING)
 317                        return NULL;
 318                add_pending_object_with_path(revs, object, name, mode, path);
 319                return NULL;
 320        }
 321        die("%s is unknown object", name);
 322}
 323
 324static int everybody_uninteresting(struct commit_list *orig,
 325                                   struct commit **interesting_cache)
 326{
 327        struct commit_list *list = orig;
 328
 329        if (*interesting_cache) {
 330                struct commit *commit = *interesting_cache;
 331                if (!(commit->object.flags & UNINTERESTING))
 332                        return 0;
 333        }
 334
 335        while (list) {
 336                struct commit *commit = list->item;
 337                list = list->next;
 338                if (commit->object.flags & UNINTERESTING)
 339                        continue;
 340
 341                *interesting_cache = commit;
 342                return 0;
 343        }
 344        return 1;
 345}
 346
 347/*
 348 * A definition of "relevant" commit that we can use to simplify limited graphs
 349 * by eliminating side branches.
 350 *
 351 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
 352 * in our list), or that is a specified BOTTOM commit. Then after computing
 353 * a limited list, during processing we can generally ignore boundary merges
 354 * coming from outside the graph, (ie from irrelevant parents), and treat
 355 * those merges as if they were single-parent. TREESAME is defined to consider
 356 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
 357 * we don't care if we were !TREESAME to non-graph parents.
 358 *
 359 * Treating bottom commits as relevant ensures that a limited graph's
 360 * connection to the actual bottom commit is not viewed as a side branch, but
 361 * treated as part of the graph. For example:
 362 *
 363 *   ....Z...A---X---o---o---B
 364 *        .     /
 365 *         W---Y
 366 *
 367 * When computing "A..B", the A-X connection is at least as important as
 368 * Y-X, despite A being flagged UNINTERESTING.
 369 *
 370 * And when computing --ancestry-path "A..B", the A-X connection is more
 371 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
 372 */
 373static inline int relevant_commit(struct commit *commit)
 374{
 375        return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
 376}
 377
 378/*
 379 * Return a single relevant commit from a parent list. If we are a TREESAME
 380 * commit, and this selects one of our parents, then we can safely simplify to
 381 * that parent.
 382 */
 383static struct commit *one_relevant_parent(const struct rev_info *revs,
 384                                          struct commit_list *orig)
 385{
 386        struct commit_list *list = orig;
 387        struct commit *relevant = NULL;
 388
 389        if (!orig)
 390                return NULL;
 391
 392        /*
 393         * For 1-parent commits, or if first-parent-only, then return that
 394         * first parent (even if not "relevant" by the above definition).
 395         * TREESAME will have been set purely on that parent.
 396         */
 397        if (revs->first_parent_only || !orig->next)
 398                return orig->item;
 399
 400        /*
 401         * For multi-parent commits, identify a sole relevant parent, if any.
 402         * If we have only one relevant parent, then TREESAME will be set purely
 403         * with regard to that parent, and we can simplify accordingly.
 404         *
 405         * If we have more than one relevant parent, or no relevant parents
 406         * (and multiple irrelevant ones), then we can't select a parent here
 407         * and return NULL.
 408         */
 409        while (list) {
 410                struct commit *commit = list->item;
 411                list = list->next;
 412                if (relevant_commit(commit)) {
 413                        if (relevant)
 414                                return NULL;
 415                        relevant = commit;
 416                }
 417        }
 418        return relevant;
 419}
 420
 421/*
 422 * The goal is to get REV_TREE_NEW as the result only if the
 423 * diff consists of all '+' (and no other changes), REV_TREE_OLD
 424 * if the whole diff is removal of old data, and otherwise
 425 * REV_TREE_DIFFERENT (of course if the trees are the same we
 426 * want REV_TREE_SAME).
 427 *
 428 * The only time we care about the distinction is when
 429 * remove_empty_trees is in effect, in which case we care only about
 430 * whether the whole change is REV_TREE_NEW, or if there's another type
 431 * of change. Which means we can stop the diff early in either of these
 432 * cases:
 433 *
 434 *   1. We're not using remove_empty_trees at all.
 435 *
 436 *   2. We saw anything except REV_TREE_NEW.
 437 */
 438static int tree_difference = REV_TREE_SAME;
 439
 440static void file_add_remove(struct diff_options *options,
 441                    int addremove, unsigned mode,
 442                    const struct object_id *oid,
 443                    int oid_valid,
 444                    const char *fullpath, unsigned dirty_submodule)
 445{
 446        int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
 447        struct rev_info *revs = options->change_fn_data;
 448
 449        tree_difference |= diff;
 450        if (!revs->remove_empty_trees || tree_difference != REV_TREE_NEW)
 451                options->flags.has_changes = 1;
 452}
 453
 454static void file_change(struct diff_options *options,
 455                 unsigned old_mode, unsigned new_mode,
 456                 const struct object_id *old_oid,
 457                 const struct object_id *new_oid,
 458                 int old_oid_valid, int new_oid_valid,
 459                 const char *fullpath,
 460                 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
 461{
 462        tree_difference = REV_TREE_DIFFERENT;
 463        options->flags.has_changes = 1;
 464}
 465
 466static int rev_compare_tree(struct rev_info *revs,
 467                            struct commit *parent, struct commit *commit)
 468{
 469        struct tree *t1 = get_commit_tree(parent);
 470        struct tree *t2 = get_commit_tree(commit);
 471
 472        if (!t1)
 473                return REV_TREE_NEW;
 474        if (!t2)
 475                return REV_TREE_OLD;
 476
 477        if (revs->simplify_by_decoration) {
 478                /*
 479                 * If we are simplifying by decoration, then the commit
 480                 * is worth showing if it has a tag pointing at it.
 481                 */
 482                if (get_name_decoration(&commit->object))
 483                        return REV_TREE_DIFFERENT;
 484                /*
 485                 * A commit that is not pointed by a tag is uninteresting
 486                 * if we are not limited by path.  This means that you will
 487                 * see the usual "commits that touch the paths" plus any
 488                 * tagged commit by specifying both --simplify-by-decoration
 489                 * and pathspec.
 490                 */
 491                if (!revs->prune_data.nr)
 492                        return REV_TREE_SAME;
 493        }
 494
 495        tree_difference = REV_TREE_SAME;
 496        revs->pruning.flags.has_changes = 0;
 497        if (diff_tree_oid(&t1->object.oid, &t2->object.oid, "",
 498                           &revs->pruning) < 0)
 499                return REV_TREE_DIFFERENT;
 500        return tree_difference;
 501}
 502
 503static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
 504{
 505        int retval;
 506        struct tree *t1 = get_commit_tree(commit);
 507
 508        if (!t1)
 509                return 0;
 510
 511        tree_difference = REV_TREE_SAME;
 512        revs->pruning.flags.has_changes = 0;
 513        retval = diff_tree_oid(NULL, &t1->object.oid, "", &revs->pruning);
 514
 515        return retval >= 0 && (tree_difference == REV_TREE_SAME);
 516}
 517
 518struct treesame_state {
 519        unsigned int nparents;
 520        unsigned char treesame[FLEX_ARRAY];
 521};
 522
 523static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
 524{
 525        unsigned n = commit_list_count(commit->parents);
 526        struct treesame_state *st = xcalloc(1, st_add(sizeof(*st), n));
 527        st->nparents = n;
 528        add_decoration(&revs->treesame, &commit->object, st);
 529        return st;
 530}
 531
 532/*
 533 * Must be called immediately after removing the nth_parent from a commit's
 534 * parent list, if we are maintaining the per-parent treesame[] decoration.
 535 * This does not recalculate the master TREESAME flag - update_treesame()
 536 * should be called to update it after a sequence of treesame[] modifications
 537 * that may have affected it.
 538 */
 539static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
 540{
 541        struct treesame_state *st;
 542        int old_same;
 543
 544        if (!commit->parents) {
 545                /*
 546                 * Have just removed the only parent from a non-merge.
 547                 * Different handling, as we lack decoration.
 548                 */
 549                if (nth_parent != 0)
 550                        die("compact_treesame %u", nth_parent);
 551                old_same = !!(commit->object.flags & TREESAME);
 552                if (rev_same_tree_as_empty(revs, commit))
 553                        commit->object.flags |= TREESAME;
 554                else
 555                        commit->object.flags &= ~TREESAME;
 556                return old_same;
 557        }
 558
 559        st = lookup_decoration(&revs->treesame, &commit->object);
 560        if (!st || nth_parent >= st->nparents)
 561                die("compact_treesame %u", nth_parent);
 562
 563        old_same = st->treesame[nth_parent];
 564        memmove(st->treesame + nth_parent,
 565                st->treesame + nth_parent + 1,
 566                st->nparents - nth_parent - 1);
 567
 568        /*
 569         * If we've just become a non-merge commit, update TREESAME
 570         * immediately, and remove the no-longer-needed decoration.
 571         * If still a merge, defer update until update_treesame().
 572         */
 573        if (--st->nparents == 1) {
 574                if (commit->parents->next)
 575                        die("compact_treesame parents mismatch");
 576                if (st->treesame[0] && revs->dense)
 577                        commit->object.flags |= TREESAME;
 578                else
 579                        commit->object.flags &= ~TREESAME;
 580                free(add_decoration(&revs->treesame, &commit->object, NULL));
 581        }
 582
 583        return old_same;
 584}
 585
 586static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
 587{
 588        if (commit->parents && commit->parents->next) {
 589                unsigned n;
 590                struct treesame_state *st;
 591                struct commit_list *p;
 592                unsigned relevant_parents;
 593                unsigned relevant_change, irrelevant_change;
 594
 595                st = lookup_decoration(&revs->treesame, &commit->object);
 596                if (!st)
 597                        die("update_treesame %s", oid_to_hex(&commit->object.oid));
 598                relevant_parents = 0;
 599                relevant_change = irrelevant_change = 0;
 600                for (p = commit->parents, n = 0; p; n++, p = p->next) {
 601                        if (relevant_commit(p->item)) {
 602                                relevant_change |= !st->treesame[n];
 603                                relevant_parents++;
 604                        } else
 605                                irrelevant_change |= !st->treesame[n];
 606                }
 607                if (relevant_parents ? relevant_change : irrelevant_change)
 608                        commit->object.flags &= ~TREESAME;
 609                else
 610                        commit->object.flags |= TREESAME;
 611        }
 612
 613        return commit->object.flags & TREESAME;
 614}
 615
 616static inline int limiting_can_increase_treesame(const struct rev_info *revs)
 617{
 618        /*
 619         * TREESAME is irrelevant unless prune && dense;
 620         * if simplify_history is set, we can't have a mixture of TREESAME and
 621         *    !TREESAME INTERESTING parents (and we don't have treesame[]
 622         *    decoration anyway);
 623         * if first_parent_only is set, then the TREESAME flag is locked
 624         *    against the first parent (and again we lack treesame[] decoration).
 625         */
 626        return revs->prune && revs->dense &&
 627               !revs->simplify_history &&
 628               !revs->first_parent_only;
 629}
 630
 631static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
 632{
 633        struct commit_list **pp, *parent;
 634        struct treesame_state *ts = NULL;
 635        int relevant_change = 0, irrelevant_change = 0;
 636        int relevant_parents, nth_parent;
 637
 638        /*
 639         * If we don't do pruning, everything is interesting
 640         */
 641        if (!revs->prune)
 642                return;
 643
 644        if (!get_commit_tree(commit))
 645                return;
 646
 647        if (!commit->parents) {
 648                if (rev_same_tree_as_empty(revs, commit))
 649                        commit->object.flags |= TREESAME;
 650                return;
 651        }
 652
 653        /*
 654         * Normal non-merge commit? If we don't want to make the
 655         * history dense, we consider it always to be a change..
 656         */
 657        if (!revs->dense && !commit->parents->next)
 658                return;
 659
 660        for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
 661             (parent = *pp) != NULL;
 662             pp = &parent->next, nth_parent++) {
 663                struct commit *p = parent->item;
 664                if (relevant_commit(p))
 665                        relevant_parents++;
 666
 667                if (nth_parent == 1) {
 668                        /*
 669                         * This our second loop iteration - so we now know
 670                         * we're dealing with a merge.
 671                         *
 672                         * Do not compare with later parents when we care only about
 673                         * the first parent chain, in order to avoid derailing the
 674                         * traversal to follow a side branch that brought everything
 675                         * in the path we are limited to by the pathspec.
 676                         */
 677                        if (revs->first_parent_only)
 678                                break;
 679                        /*
 680                         * If this will remain a potentially-simplifiable
 681                         * merge, remember per-parent treesame if needed.
 682                         * Initialise the array with the comparison from our
 683                         * first iteration.
 684                         */
 685                        if (revs->treesame.name &&
 686                            !revs->simplify_history &&
 687                            !(commit->object.flags & UNINTERESTING)) {
 688                                ts = initialise_treesame(revs, commit);
 689                                if (!(irrelevant_change || relevant_change))
 690                                        ts->treesame[0] = 1;
 691                        }
 692                }
 693                if (parse_commit(p) < 0)
 694                        die("cannot simplify commit %s (because of %s)",
 695                            oid_to_hex(&commit->object.oid),
 696                            oid_to_hex(&p->object.oid));
 697                switch (rev_compare_tree(revs, p, commit)) {
 698                case REV_TREE_SAME:
 699                        if (!revs->simplify_history || !relevant_commit(p)) {
 700                                /* Even if a merge with an uninteresting
 701                                 * side branch brought the entire change
 702                                 * we are interested in, we do not want
 703                                 * to lose the other branches of this
 704                                 * merge, so we just keep going.
 705                                 */
 706                                if (ts)
 707                                        ts->treesame[nth_parent] = 1;
 708                                continue;
 709                        }
 710                        parent->next = NULL;
 711                        commit->parents = parent;
 712                        commit->object.flags |= TREESAME;
 713                        return;
 714
 715                case REV_TREE_NEW:
 716                        if (revs->remove_empty_trees &&
 717                            rev_same_tree_as_empty(revs, p)) {
 718                                /* We are adding all the specified
 719                                 * paths from this parent, so the
 720                                 * history beyond this parent is not
 721                                 * interesting.  Remove its parents
 722                                 * (they are grandparents for us).
 723                                 * IOW, we pretend this parent is a
 724                                 * "root" commit.
 725                                 */
 726                                if (parse_commit(p) < 0)
 727                                        die("cannot simplify commit %s (invalid %s)",
 728                                            oid_to_hex(&commit->object.oid),
 729                                            oid_to_hex(&p->object.oid));
 730                                p->parents = NULL;
 731                        }
 732                /* fallthrough */
 733                case REV_TREE_OLD:
 734                case REV_TREE_DIFFERENT:
 735                        if (relevant_commit(p))
 736                                relevant_change = 1;
 737                        else
 738                                irrelevant_change = 1;
 739                        continue;
 740                }
 741                die("bad tree compare for commit %s", oid_to_hex(&commit->object.oid));
 742        }
 743
 744        /*
 745         * TREESAME is straightforward for single-parent commits. For merge
 746         * commits, it is most useful to define it so that "irrelevant"
 747         * parents cannot make us !TREESAME - if we have any relevant
 748         * parents, then we only consider TREESAMEness with respect to them,
 749         * allowing irrelevant merges from uninteresting branches to be
 750         * simplified away. Only if we have only irrelevant parents do we
 751         * base TREESAME on them. Note that this logic is replicated in
 752         * update_treesame, which should be kept in sync.
 753         */
 754        if (relevant_parents ? !relevant_change : !irrelevant_change)
 755                commit->object.flags |= TREESAME;
 756}
 757
 758static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
 759                    struct commit_list *cached_base, struct commit_list **cache)
 760{
 761        struct commit_list *new_entry;
 762
 763        if (cached_base && p->date < cached_base->item->date)
 764                new_entry = commit_list_insert_by_date(p, &cached_base->next);
 765        else
 766                new_entry = commit_list_insert_by_date(p, head);
 767
 768        if (cache && (!*cache || p->date < (*cache)->item->date))
 769                *cache = new_entry;
 770}
 771
 772static int process_parents(struct rev_info *revs, struct commit *commit,
 773                           struct commit_list **list, struct commit_list **cache_ptr)
 774{
 775        struct commit_list *parent = commit->parents;
 776        unsigned left_flag;
 777        struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
 778
 779        if (commit->object.flags & ADDED)
 780                return 0;
 781        commit->object.flags |= ADDED;
 782
 783        if (revs->include_check &&
 784            !revs->include_check(commit, revs->include_check_data))
 785                return 0;
 786
 787        /*
 788         * If the commit is uninteresting, don't try to
 789         * prune parents - we want the maximal uninteresting
 790         * set.
 791         *
 792         * Normally we haven't parsed the parent
 793         * yet, so we won't have a parent of a parent
 794         * here. However, it may turn out that we've
 795         * reached this commit some other way (where it
 796         * wasn't uninteresting), in which case we need
 797         * to mark its parents recursively too..
 798         */
 799        if (commit->object.flags & UNINTERESTING) {
 800                while (parent) {
 801                        struct commit *p = parent->item;
 802                        parent = parent->next;
 803                        if (p)
 804                                p->object.flags |= UNINTERESTING;
 805                        if (parse_commit_gently(p, 1) < 0)
 806                                continue;
 807                        if (p->parents)
 808                                mark_parents_uninteresting(p);
 809                        if (p->object.flags & SEEN)
 810                                continue;
 811                        p->object.flags |= SEEN;
 812                        if (list)
 813                                commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
 814                }
 815                return 0;
 816        }
 817
 818        /*
 819         * Ok, the commit wasn't uninteresting. Try to
 820         * simplify the commit history and find the parent
 821         * that has no differences in the path set if one exists.
 822         */
 823        try_to_simplify_commit(revs, commit);
 824
 825        if (revs->no_walk)
 826                return 0;
 827
 828        left_flag = (commit->object.flags & SYMMETRIC_LEFT);
 829
 830        for (parent = commit->parents; parent; parent = parent->next) {
 831                struct commit *p = parent->item;
 832                int gently = revs->ignore_missing_links ||
 833                             revs->exclude_promisor_objects;
 834                if (parse_commit_gently(p, gently) < 0) {
 835                        if (revs->exclude_promisor_objects &&
 836                            is_promisor_object(&p->object.oid)) {
 837                                if (revs->first_parent_only)
 838                                        break;
 839                                continue;
 840                        }
 841                        return -1;
 842                }
 843                if (revs->sources) {
 844                        char **slot = revision_sources_at(revs->sources, p);
 845
 846                        if (!*slot)
 847                                *slot = *revision_sources_at(revs->sources, commit);
 848                }
 849                p->object.flags |= left_flag;
 850                if (!(p->object.flags & SEEN)) {
 851                        p->object.flags |= SEEN;
 852                        if (list)
 853                                commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
 854                }
 855                if (revs->first_parent_only)
 856                        break;
 857        }
 858        return 0;
 859}
 860
 861static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
 862{
 863        struct commit_list *p;
 864        int left_count = 0, right_count = 0;
 865        int left_first;
 866        struct patch_ids ids;
 867        unsigned cherry_flag;
 868
 869        /* First count the commits on the left and on the right */
 870        for (p = list; p; p = p->next) {
 871                struct commit *commit = p->item;
 872                unsigned flags = commit->object.flags;
 873                if (flags & BOUNDARY)
 874                        ;
 875                else if (flags & SYMMETRIC_LEFT)
 876                        left_count++;
 877                else
 878                        right_count++;
 879        }
 880
 881        if (!left_count || !right_count)
 882                return;
 883
 884        left_first = left_count < right_count;
 885        init_patch_ids(revs->repo, &ids);
 886        ids.diffopts.pathspec = revs->diffopt.pathspec;
 887
 888        /* Compute patch-ids for one side */
 889        for (p = list; p; p = p->next) {
 890                struct commit *commit = p->item;
 891                unsigned flags = commit->object.flags;
 892
 893                if (flags & BOUNDARY)
 894                        continue;
 895                /*
 896                 * If we have fewer left, left_first is set and we omit
 897                 * commits on the right branch in this loop.  If we have
 898                 * fewer right, we skip the left ones.
 899                 */
 900                if (left_first != !!(flags & SYMMETRIC_LEFT))
 901                        continue;
 902                add_commit_patch_id(commit, &ids);
 903        }
 904
 905        /* either cherry_mark or cherry_pick are true */
 906        cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
 907
 908        /* Check the other side */
 909        for (p = list; p; p = p->next) {
 910                struct commit *commit = p->item;
 911                struct patch_id *id;
 912                unsigned flags = commit->object.flags;
 913
 914                if (flags & BOUNDARY)
 915                        continue;
 916                /*
 917                 * If we have fewer left, left_first is set and we omit
 918                 * commits on the left branch in this loop.
 919                 */
 920                if (left_first == !!(flags & SYMMETRIC_LEFT))
 921                        continue;
 922
 923                /*
 924                 * Have we seen the same patch id?
 925                 */
 926                id = has_commit_patch_id(commit, &ids);
 927                if (!id)
 928                        continue;
 929
 930                commit->object.flags |= cherry_flag;
 931                id->commit->object.flags |= cherry_flag;
 932        }
 933
 934        free_patch_ids(&ids);
 935}
 936
 937/* How many extra uninteresting commits we want to see.. */
 938#define SLOP 5
 939
 940static int still_interesting(struct commit_list *src, timestamp_t date, int slop,
 941                             struct commit **interesting_cache)
 942{
 943        /*
 944         * No source list at all? We're definitely done..
 945         */
 946        if (!src)
 947                return 0;
 948
 949        /*
 950         * Does the destination list contain entries with a date
 951         * before the source list? Definitely _not_ done.
 952         */
 953        if (date <= src->item->date)
 954                return SLOP;
 955
 956        /*
 957         * Does the source list still have interesting commits in
 958         * it? Definitely not done..
 959         */
 960        if (!everybody_uninteresting(src, interesting_cache))
 961                return SLOP;
 962
 963        /* Ok, we're closing in.. */
 964        return slop-1;
 965}
 966
 967/*
 968 * "rev-list --ancestry-path A..B" computes commits that are ancestors
 969 * of B but not ancestors of A but further limits the result to those
 970 * that are descendants of A.  This takes the list of bottom commits and
 971 * the result of "A..B" without --ancestry-path, and limits the latter
 972 * further to the ones that can reach one of the commits in "bottom".
 973 */
 974static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
 975{
 976        struct commit_list *p;
 977        struct commit_list *rlist = NULL;
 978        int made_progress;
 979
 980        /*
 981         * Reverse the list so that it will be likely that we would
 982         * process parents before children.
 983         */
 984        for (p = list; p; p = p->next)
 985                commit_list_insert(p->item, &rlist);
 986
 987        for (p = bottom; p; p = p->next)
 988                p->item->object.flags |= TMP_MARK;
 989
 990        /*
 991         * Mark the ones that can reach bottom commits in "list",
 992         * in a bottom-up fashion.
 993         */
 994        do {
 995                made_progress = 0;
 996                for (p = rlist; p; p = p->next) {
 997                        struct commit *c = p->item;
 998                        struct commit_list *parents;
 999                        if (c->object.flags & (TMP_MARK | UNINTERESTING))
1000                                continue;
1001                        for (parents = c->parents;
1002                             parents;
1003                             parents = parents->next) {
1004                                if (!(parents->item->object.flags & TMP_MARK))
1005                                        continue;
1006                                c->object.flags |= TMP_MARK;
1007                                made_progress = 1;
1008                                break;
1009                        }
1010                }
1011        } while (made_progress);
1012
1013        /*
1014         * NEEDSWORK: decide if we want to remove parents that are
1015         * not marked with TMP_MARK from commit->parents for commits
1016         * in the resulting list.  We may not want to do that, though.
1017         */
1018
1019        /*
1020         * The ones that are not marked with TMP_MARK are uninteresting
1021         */
1022        for (p = list; p; p = p->next) {
1023                struct commit *c = p->item;
1024                if (c->object.flags & TMP_MARK)
1025                        continue;
1026                c->object.flags |= UNINTERESTING;
1027        }
1028
1029        /* We are done with the TMP_MARK */
1030        for (p = list; p; p = p->next)
1031                p->item->object.flags &= ~TMP_MARK;
1032        for (p = bottom; p; p = p->next)
1033                p->item->object.flags &= ~TMP_MARK;
1034        free_commit_list(rlist);
1035}
1036
1037/*
1038 * Before walking the history, keep the set of "negative" refs the
1039 * caller has asked to exclude.
1040 *
1041 * This is used to compute "rev-list --ancestry-path A..B", as we need
1042 * to filter the result of "A..B" further to the ones that can actually
1043 * reach A.
1044 */
1045static struct commit_list *collect_bottom_commits(struct commit_list *list)
1046{
1047        struct commit_list *elem, *bottom = NULL;
1048        for (elem = list; elem; elem = elem->next)
1049                if (elem->item->object.flags & BOTTOM)
1050                        commit_list_insert(elem->item, &bottom);
1051        return bottom;
1052}
1053
1054/* Assumes either left_only or right_only is set */
1055static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1056{
1057        struct commit_list *p;
1058
1059        for (p = list; p; p = p->next) {
1060                struct commit *commit = p->item;
1061
1062                if (revs->right_only) {
1063                        if (commit->object.flags & SYMMETRIC_LEFT)
1064                                commit->object.flags |= SHOWN;
1065                } else  /* revs->left_only is set */
1066                        if (!(commit->object.flags & SYMMETRIC_LEFT))
1067                                commit->object.flags |= SHOWN;
1068        }
1069}
1070
1071static int limit_list(struct rev_info *revs)
1072{
1073        int slop = SLOP;
1074        timestamp_t date = TIME_MAX;
1075        struct commit_list *list = revs->commits;
1076        struct commit_list *newlist = NULL;
1077        struct commit_list **p = &newlist;
1078        struct commit_list *bottom = NULL;
1079        struct commit *interesting_cache = NULL;
1080
1081        if (revs->ancestry_path) {
1082                bottom = collect_bottom_commits(list);
1083                if (!bottom)
1084                        die("--ancestry-path given but there are no bottom commits");
1085        }
1086
1087        while (list) {
1088                struct commit *commit = pop_commit(&list);
1089                struct object *obj = &commit->object;
1090                show_early_output_fn_t show;
1091
1092                if (commit == interesting_cache)
1093                        interesting_cache = NULL;
1094
1095                if (revs->max_age != -1 && (commit->date < revs->max_age))
1096                        obj->flags |= UNINTERESTING;
1097                if (process_parents(revs, commit, &list, NULL) < 0)
1098                        return -1;
1099                if (obj->flags & UNINTERESTING) {
1100                        mark_parents_uninteresting(commit);
1101                        slop = still_interesting(list, date, slop, &interesting_cache);
1102                        if (slop)
1103                                continue;
1104                        break;
1105                }
1106                if (revs->min_age != -1 && (commit->date > revs->min_age))
1107                        continue;
1108                date = commit->date;
1109                p = &commit_list_insert(commit, p)->next;
1110
1111                show = show_early_output;
1112                if (!show)
1113                        continue;
1114
1115                show(revs, newlist);
1116                show_early_output = NULL;
1117        }
1118        if (revs->cherry_pick || revs->cherry_mark)
1119                cherry_pick_list(newlist, revs);
1120
1121        if (revs->left_only || revs->right_only)
1122                limit_left_right(newlist, revs);
1123
1124        if (bottom) {
1125                limit_to_ancestry(bottom, newlist);
1126                free_commit_list(bottom);
1127        }
1128
1129        /*
1130         * Check if any commits have become TREESAME by some of their parents
1131         * becoming UNINTERESTING.
1132         */
1133        if (limiting_can_increase_treesame(revs))
1134                for (list = newlist; list; list = list->next) {
1135                        struct commit *c = list->item;
1136                        if (c->object.flags & (UNINTERESTING | TREESAME))
1137                                continue;
1138                        update_treesame(revs, c);
1139                }
1140
1141        revs->commits = newlist;
1142        return 0;
1143}
1144
1145/*
1146 * Add an entry to refs->cmdline with the specified information.
1147 * *name is copied.
1148 */
1149static void add_rev_cmdline(struct rev_info *revs,
1150                            struct object *item,
1151                            const char *name,
1152                            int whence,
1153                            unsigned flags)
1154{
1155        struct rev_cmdline_info *info = &revs->cmdline;
1156        unsigned int nr = info->nr;
1157
1158        ALLOC_GROW(info->rev, nr + 1, info->alloc);
1159        info->rev[nr].item = item;
1160        info->rev[nr].name = xstrdup(name);
1161        info->rev[nr].whence = whence;
1162        info->rev[nr].flags = flags;
1163        info->nr++;
1164}
1165
1166static void add_rev_cmdline_list(struct rev_info *revs,
1167                                 struct commit_list *commit_list,
1168                                 int whence,
1169                                 unsigned flags)
1170{
1171        while (commit_list) {
1172                struct object *object = &commit_list->item->object;
1173                add_rev_cmdline(revs, object, oid_to_hex(&object->oid),
1174                                whence, flags);
1175                commit_list = commit_list->next;
1176        }
1177}
1178
1179struct all_refs_cb {
1180        int all_flags;
1181        int warned_bad_reflog;
1182        struct rev_info *all_revs;
1183        const char *name_for_errormsg;
1184        struct worktree *wt;
1185};
1186
1187int ref_excluded(struct string_list *ref_excludes, const char *path)
1188{
1189        struct string_list_item *item;
1190
1191        if (!ref_excludes)
1192                return 0;
1193        for_each_string_list_item(item, ref_excludes) {
1194                if (!wildmatch(item->string, path, 0))
1195                        return 1;
1196        }
1197        return 0;
1198}
1199
1200static int handle_one_ref(const char *path, const struct object_id *oid,
1201                          int flag, void *cb_data)
1202{
1203        struct all_refs_cb *cb = cb_data;
1204        struct object *object;
1205
1206        if (ref_excluded(cb->all_revs->ref_excludes, path))
1207            return 0;
1208
1209        object = get_reference(cb->all_revs, path, oid, cb->all_flags);
1210        add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1211        add_pending_oid(cb->all_revs, path, oid, cb->all_flags);
1212        return 0;
1213}
1214
1215static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1216        unsigned flags)
1217{
1218        cb->all_revs = revs;
1219        cb->all_flags = flags;
1220        revs->rev_input_given = 1;
1221        cb->wt = NULL;
1222}
1223
1224void clear_ref_exclusion(struct string_list **ref_excludes_p)
1225{
1226        if (*ref_excludes_p) {
1227                string_list_clear(*ref_excludes_p, 0);
1228                free(*ref_excludes_p);
1229        }
1230        *ref_excludes_p = NULL;
1231}
1232
1233void add_ref_exclusion(struct string_list **ref_excludes_p, const char *exclude)
1234{
1235        if (!*ref_excludes_p) {
1236                *ref_excludes_p = xcalloc(1, sizeof(**ref_excludes_p));
1237                (*ref_excludes_p)->strdup_strings = 1;
1238        }
1239        string_list_append(*ref_excludes_p, exclude);
1240}
1241
1242static void handle_refs(struct ref_store *refs,
1243                        struct rev_info *revs, unsigned flags,
1244                        int (*for_each)(struct ref_store *, each_ref_fn, void *))
1245{
1246        struct all_refs_cb cb;
1247
1248        if (!refs) {
1249                /* this could happen with uninitialized submodules */
1250                return;
1251        }
1252
1253        init_all_refs_cb(&cb, revs, flags);
1254        for_each(refs, handle_one_ref, &cb);
1255}
1256
1257static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
1258{
1259        struct all_refs_cb *cb = cb_data;
1260        if (!is_null_oid(oid)) {
1261                struct object *o = parse_object(cb->all_revs->repo, oid);
1262                if (o) {
1263                        o->flags |= cb->all_flags;
1264                        /* ??? CMDLINEFLAGS ??? */
1265                        add_pending_object(cb->all_revs, o, "");
1266                }
1267                else if (!cb->warned_bad_reflog) {
1268                        warning("reflog of '%s' references pruned commits",
1269                                cb->name_for_errormsg);
1270                        cb->warned_bad_reflog = 1;
1271                }
1272        }
1273}
1274
1275static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
1276                const char *email, timestamp_t timestamp, int tz,
1277                const char *message, void *cb_data)
1278{
1279        handle_one_reflog_commit(ooid, cb_data);
1280        handle_one_reflog_commit(noid, cb_data);
1281        return 0;
1282}
1283
1284static int handle_one_reflog(const char *refname_in_wt,
1285                             const struct object_id *oid,
1286                             int flag, void *cb_data)
1287{
1288        struct all_refs_cb *cb = cb_data;
1289        struct strbuf refname = STRBUF_INIT;
1290
1291        cb->warned_bad_reflog = 0;
1292        strbuf_worktree_ref(cb->wt, &refname, refname_in_wt);
1293        cb->name_for_errormsg = refname.buf;
1294        refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1295                                 refname.buf,
1296                                 handle_one_reflog_ent, cb_data);
1297        strbuf_release(&refname);
1298        return 0;
1299}
1300
1301static void add_other_reflogs_to_pending(struct all_refs_cb *cb)
1302{
1303        struct worktree **worktrees, **p;
1304
1305        worktrees = get_worktrees(0);
1306        for (p = worktrees; *p; p++) {
1307                struct worktree *wt = *p;
1308
1309                if (wt->is_current)
1310                        continue;
1311
1312                cb->wt = wt;
1313                refs_for_each_reflog(get_worktree_ref_store(wt),
1314                                     handle_one_reflog,
1315                                     cb);
1316        }
1317        free_worktrees(worktrees);
1318}
1319
1320void add_reflogs_to_pending(struct rev_info *revs, unsigned flags)
1321{
1322        struct all_refs_cb cb;
1323
1324        cb.all_revs = revs;
1325        cb.all_flags = flags;
1326        cb.wt = NULL;
1327        for_each_reflog(handle_one_reflog, &cb);
1328
1329        if (!revs->single_worktree)
1330                add_other_reflogs_to_pending(&cb);
1331}
1332
1333static void add_cache_tree(struct cache_tree *it, struct rev_info *revs,
1334                           struct strbuf *path, unsigned int flags)
1335{
1336        size_t baselen = path->len;
1337        int i;
1338
1339        if (it->entry_count >= 0) {
1340                struct tree *tree = lookup_tree(revs->repo, &it->oid);
1341                tree->object.flags |= flags;
1342                add_pending_object_with_path(revs, &tree->object, "",
1343                                             040000, path->buf);
1344        }
1345
1346        for (i = 0; i < it->subtree_nr; i++) {
1347                struct cache_tree_sub *sub = it->down[i];
1348                strbuf_addf(path, "%s%s", baselen ? "/" : "", sub->name);
1349                add_cache_tree(sub->cache_tree, revs, path, flags);
1350                strbuf_setlen(path, baselen);
1351        }
1352
1353}
1354
1355static void do_add_index_objects_to_pending(struct rev_info *revs,
1356                                            struct index_state *istate,
1357                                            unsigned int flags)
1358{
1359        int i;
1360
1361        for (i = 0; i < istate->cache_nr; i++) {
1362                struct cache_entry *ce = istate->cache[i];
1363                struct blob *blob;
1364
1365                if (S_ISGITLINK(ce->ce_mode))
1366                        continue;
1367
1368                blob = lookup_blob(revs->repo, &ce->oid);
1369                if (!blob)
1370                        die("unable to add index blob to traversal");
1371                blob->object.flags |= flags;
1372                add_pending_object_with_path(revs, &blob->object, "",
1373                                             ce->ce_mode, ce->name);
1374        }
1375
1376        if (istate->cache_tree) {
1377                struct strbuf path = STRBUF_INIT;
1378                add_cache_tree(istate->cache_tree, revs, &path, flags);
1379                strbuf_release(&path);
1380        }
1381}
1382
1383void add_index_objects_to_pending(struct rev_info *revs, unsigned int flags)
1384{
1385        struct worktree **worktrees, **p;
1386
1387        read_index(revs->repo->index);
1388        do_add_index_objects_to_pending(revs, revs->repo->index, flags);
1389
1390        if (revs->single_worktree)
1391                return;
1392
1393        worktrees = get_worktrees(0);
1394        for (p = worktrees; *p; p++) {
1395                struct worktree *wt = *p;
1396                struct index_state istate = { NULL };
1397
1398                if (wt->is_current)
1399                        continue; /* current index already taken care of */
1400
1401                if (read_index_from(&istate,
1402                                    worktree_git_path(wt, "index"),
1403                                    get_worktree_git_dir(wt)) > 0)
1404                        do_add_index_objects_to_pending(revs, &istate, flags);
1405                discard_index(&istate);
1406        }
1407        free_worktrees(worktrees);
1408}
1409
1410static int add_parents_only(struct rev_info *revs, const char *arg_, int flags,
1411                            int exclude_parent)
1412{
1413        struct object_id oid;
1414        struct object *it;
1415        struct commit *commit;
1416        struct commit_list *parents;
1417        int parent_number;
1418        const char *arg = arg_;
1419
1420        if (*arg == '^') {
1421                flags ^= UNINTERESTING | BOTTOM;
1422                arg++;
1423        }
1424        if (get_oid_committish(arg, &oid))
1425                return 0;
1426        while (1) {
1427                it = get_reference(revs, arg, &oid, 0);
1428                if (!it && revs->ignore_missing)
1429                        return 0;
1430                if (it->type != OBJ_TAG)
1431                        break;
1432                if (!((struct tag*)it)->tagged)
1433                        return 0;
1434                oidcpy(&oid, &((struct tag*)it)->tagged->oid);
1435        }
1436        if (it->type != OBJ_COMMIT)
1437                return 0;
1438        commit = (struct commit *)it;
1439        if (exclude_parent &&
1440            exclude_parent > commit_list_count(commit->parents))
1441                return 0;
1442        for (parents = commit->parents, parent_number = 1;
1443             parents;
1444             parents = parents->next, parent_number++) {
1445                if (exclude_parent && parent_number != exclude_parent)
1446                        continue;
1447
1448                it = &parents->item->object;
1449                it->flags |= flags;
1450                add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1451                add_pending_object(revs, it, arg);
1452        }
1453        return 1;
1454}
1455
1456void repo_init_revisions(struct repository *r,
1457                         struct rev_info *revs,
1458                         const char *prefix)
1459{
1460        memset(revs, 0, sizeof(*revs));
1461
1462        revs->repo = r;
1463        revs->abbrev = DEFAULT_ABBREV;
1464        revs->ignore_merges = 1;
1465        revs->simplify_history = 1;
1466        revs->pruning.repo = r;
1467        revs->pruning.flags.recursive = 1;
1468        revs->pruning.flags.quick = 1;
1469        revs->pruning.add_remove = file_add_remove;
1470        revs->pruning.change = file_change;
1471        revs->pruning.change_fn_data = revs;
1472        revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1473        revs->dense = 1;
1474        revs->prefix = prefix;
1475        revs->max_age = -1;
1476        revs->min_age = -1;
1477        revs->skip_count = -1;
1478        revs->max_count = -1;
1479        revs->max_parents = -1;
1480        revs->expand_tabs_in_log = -1;
1481
1482        revs->commit_format = CMIT_FMT_DEFAULT;
1483        revs->expand_tabs_in_log_default = 8;
1484
1485        init_grep_defaults(revs->repo);
1486        grep_init(&revs->grep_filter, revs->repo, prefix);
1487        revs->grep_filter.status_only = 1;
1488
1489        repo_diff_setup(revs->repo, &revs->diffopt);
1490        if (prefix && !revs->diffopt.prefix) {
1491                revs->diffopt.prefix = prefix;
1492                revs->diffopt.prefix_length = strlen(prefix);
1493        }
1494
1495        revs->notes_opt.use_default_notes = -1;
1496}
1497
1498static void add_pending_commit_list(struct rev_info *revs,
1499                                    struct commit_list *commit_list,
1500                                    unsigned int flags)
1501{
1502        while (commit_list) {
1503                struct object *object = &commit_list->item->object;
1504                object->flags |= flags;
1505                add_pending_object(revs, object, oid_to_hex(&object->oid));
1506                commit_list = commit_list->next;
1507        }
1508}
1509
1510static void prepare_show_merge(struct rev_info *revs)
1511{
1512        struct commit_list *bases;
1513        struct commit *head, *other;
1514        struct object_id oid;
1515        const char **prune = NULL;
1516        int i, prune_num = 1; /* counting terminating NULL */
1517        struct index_state *istate = revs->repo->index;
1518
1519        if (get_oid("HEAD", &oid))
1520                die("--merge without HEAD?");
1521        head = lookup_commit_or_die(&oid, "HEAD");
1522        if (get_oid("MERGE_HEAD", &oid))
1523                die("--merge without MERGE_HEAD?");
1524        other = lookup_commit_or_die(&oid, "MERGE_HEAD");
1525        add_pending_object(revs, &head->object, "HEAD");
1526        add_pending_object(revs, &other->object, "MERGE_HEAD");
1527        bases = get_merge_bases(head, other);
1528        add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
1529        add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
1530        free_commit_list(bases);
1531        head->object.flags |= SYMMETRIC_LEFT;
1532
1533        if (!istate->cache_nr)
1534                read_index(istate);
1535        for (i = 0; i < istate->cache_nr; i++) {
1536                const struct cache_entry *ce = istate->cache[i];
1537                if (!ce_stage(ce))
1538                        continue;
1539                if (ce_path_match(istate, ce, &revs->prune_data, NULL)) {
1540                        prune_num++;
1541                        REALLOC_ARRAY(prune, prune_num);
1542                        prune[prune_num-2] = ce->name;
1543                        prune[prune_num-1] = NULL;
1544                }
1545                while ((i+1 < istate->cache_nr) &&
1546                       ce_same_name(ce, istate->cache[i+1]))
1547                        i++;
1548        }
1549        clear_pathspec(&revs->prune_data);
1550        parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
1551                       PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
1552        revs->limited = 1;
1553}
1554
1555static int dotdot_missing(const char *arg, char *dotdot,
1556                          struct rev_info *revs, int symmetric)
1557{
1558        if (revs->ignore_missing)
1559                return 0;
1560        /* de-munge so we report the full argument */
1561        *dotdot = '.';
1562        die(symmetric
1563            ? "Invalid symmetric difference expression %s"
1564            : "Invalid revision range %s", arg);
1565}
1566
1567static int handle_dotdot_1(const char *arg, char *dotdot,
1568                           struct rev_info *revs, int flags,
1569                           int cant_be_filename,
1570                           struct object_context *a_oc,
1571                           struct object_context *b_oc)
1572{
1573        const char *a_name, *b_name;
1574        struct object_id a_oid, b_oid;
1575        struct object *a_obj, *b_obj;
1576        unsigned int a_flags, b_flags;
1577        int symmetric = 0;
1578        unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
1579        unsigned int oc_flags = GET_OID_COMMITTISH | GET_OID_RECORD_PATH;
1580
1581        a_name = arg;
1582        if (!*a_name)
1583                a_name = "HEAD";
1584
1585        b_name = dotdot + 2;
1586        if (*b_name == '.') {
1587                symmetric = 1;
1588                b_name++;
1589        }
1590        if (!*b_name)
1591                b_name = "HEAD";
1592
1593        if (get_oid_with_context(a_name, oc_flags, &a_oid, a_oc) ||
1594            get_oid_with_context(b_name, oc_flags, &b_oid, b_oc))
1595                return -1;
1596
1597        if (!cant_be_filename) {
1598                *dotdot = '.';
1599                verify_non_filename(revs->prefix, arg);
1600                *dotdot = '\0';
1601        }
1602
1603        a_obj = parse_object(revs->repo, &a_oid);
1604        b_obj = parse_object(revs->repo, &b_oid);
1605        if (!a_obj || !b_obj)
1606                return dotdot_missing(arg, dotdot, revs, symmetric);
1607
1608        if (!symmetric) {
1609                /* just A..B */
1610                b_flags = flags;
1611                a_flags = flags_exclude;
1612        } else {
1613                /* A...B -- find merge bases between the two */
1614                struct commit *a, *b;
1615                struct commit_list *exclude;
1616
1617                a = lookup_commit_reference(revs->repo, &a_obj->oid);
1618                b = lookup_commit_reference(revs->repo, &b_obj->oid);
1619                if (!a || !b)
1620                        return dotdot_missing(arg, dotdot, revs, symmetric);
1621
1622                exclude = get_merge_bases(a, b);
1623                add_rev_cmdline_list(revs, exclude, REV_CMD_MERGE_BASE,
1624                                     flags_exclude);
1625                add_pending_commit_list(revs, exclude, flags_exclude);
1626                free_commit_list(exclude);
1627
1628                b_flags = flags;
1629                a_flags = flags | SYMMETRIC_LEFT;
1630        }
1631
1632        a_obj->flags |= a_flags;
1633        b_obj->flags |= b_flags;
1634        add_rev_cmdline(revs, a_obj, a_name, REV_CMD_LEFT, a_flags);
1635        add_rev_cmdline(revs, b_obj, b_name, REV_CMD_RIGHT, b_flags);
1636        add_pending_object_with_path(revs, a_obj, a_name, a_oc->mode, a_oc->path);
1637        add_pending_object_with_path(revs, b_obj, b_name, b_oc->mode, b_oc->path);
1638        return 0;
1639}
1640
1641static int handle_dotdot(const char *arg,
1642                         struct rev_info *revs, int flags,
1643                         int cant_be_filename)
1644{
1645        struct object_context a_oc, b_oc;
1646        char *dotdot = strstr(arg, "..");
1647        int ret;
1648
1649        if (!dotdot)
1650                return -1;
1651
1652        memset(&a_oc, 0, sizeof(a_oc));
1653        memset(&b_oc, 0, sizeof(b_oc));
1654
1655        *dotdot = '\0';
1656        ret = handle_dotdot_1(arg, dotdot, revs, flags, cant_be_filename,
1657                              &a_oc, &b_oc);
1658        *dotdot = '.';
1659
1660        free(a_oc.path);
1661        free(b_oc.path);
1662
1663        return ret;
1664}
1665
1666int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
1667{
1668        struct object_context oc;
1669        char *mark;
1670        struct object *object;
1671        struct object_id oid;
1672        int local_flags;
1673        const char *arg = arg_;
1674        int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
1675        unsigned get_sha1_flags = GET_OID_RECORD_PATH;
1676
1677        flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
1678
1679        if (!cant_be_filename && !strcmp(arg, "..")) {
1680                /*
1681                 * Just ".."?  That is not a range but the
1682                 * pathspec for the parent directory.
1683                 */
1684                return -1;
1685        }
1686
1687        if (!handle_dotdot(arg, revs, flags, revarg_opt))
1688                return 0;
1689
1690        mark = strstr(arg, "^@");
1691        if (mark && !mark[2]) {
1692                *mark = 0;
1693                if (add_parents_only(revs, arg, flags, 0))
1694                        return 0;
1695                *mark = '^';
1696        }
1697        mark = strstr(arg, "^!");
1698        if (mark && !mark[2]) {
1699                *mark = 0;
1700                if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), 0))
1701                        *mark = '^';
1702        }
1703        mark = strstr(arg, "^-");
1704        if (mark) {
1705                int exclude_parent = 1;
1706
1707                if (mark[2]) {
1708                        char *end;
1709                        exclude_parent = strtoul(mark + 2, &end, 10);
1710                        if (*end != '\0' || !exclude_parent)
1711                                return -1;
1712                }
1713
1714                *mark = 0;
1715                if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), exclude_parent))
1716                        *mark = '^';
1717        }
1718
1719        local_flags = 0;
1720        if (*arg == '^') {
1721                local_flags = UNINTERESTING | BOTTOM;
1722                arg++;
1723        }
1724
1725        if (revarg_opt & REVARG_COMMITTISH)
1726                get_sha1_flags |= GET_OID_COMMITTISH;
1727
1728        if (get_oid_with_context(arg, get_sha1_flags, &oid, &oc))
1729                return revs->ignore_missing ? 0 : -1;
1730        if (!cant_be_filename)
1731                verify_non_filename(revs->prefix, arg);
1732        object = get_reference(revs, arg, &oid, flags ^ local_flags);
1733        if (!object)
1734                return revs->ignore_missing ? 0 : -1;
1735        add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1736        add_pending_object_with_path(revs, object, arg, oc.mode, oc.path);
1737        free(oc.path);
1738        return 0;
1739}
1740
1741static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1742                                     struct argv_array *prune)
1743{
1744        while (strbuf_getline(sb, stdin) != EOF)
1745                argv_array_push(prune, sb->buf);
1746}
1747
1748static void read_revisions_from_stdin(struct rev_info *revs,
1749                                      struct argv_array *prune)
1750{
1751        struct strbuf sb;
1752        int seen_dashdash = 0;
1753        int save_warning;
1754
1755        save_warning = warn_on_object_refname_ambiguity;
1756        warn_on_object_refname_ambiguity = 0;
1757
1758        strbuf_init(&sb, 1000);
1759        while (strbuf_getline(&sb, stdin) != EOF) {
1760                int len = sb.len;
1761                if (!len)
1762                        break;
1763                if (sb.buf[0] == '-') {
1764                        if (len == 2 && sb.buf[1] == '-') {
1765                                seen_dashdash = 1;
1766                                break;
1767                        }
1768                        die("options not supported in --stdin mode");
1769                }
1770                if (handle_revision_arg(sb.buf, revs, 0,
1771                                        REVARG_CANNOT_BE_FILENAME))
1772                        die("bad revision '%s'", sb.buf);
1773        }
1774        if (seen_dashdash)
1775                read_pathspec_from_stdin(revs, &sb, prune);
1776
1777        strbuf_release(&sb);
1778        warn_on_object_refname_ambiguity = save_warning;
1779}
1780
1781static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1782{
1783        append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1784}
1785
1786static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1787{
1788        append_header_grep_pattern(&revs->grep_filter, field, pattern);
1789}
1790
1791static void add_message_grep(struct rev_info *revs, const char *pattern)
1792{
1793        add_grep(revs, pattern, GREP_PATTERN_BODY);
1794}
1795
1796static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1797                               int *unkc, const char **unkv,
1798                               const struct setup_revision_opt* opt)
1799{
1800        const char *arg = argv[0];
1801        const char *optarg;
1802        int argcount;
1803        const unsigned hexsz = the_hash_algo->hexsz;
1804
1805        /* pseudo revision arguments */
1806        if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1807            !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1808            !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1809            !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1810            !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
1811            !strcmp(arg, "--indexed-objects") ||
1812            starts_with(arg, "--exclude=") ||
1813            starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
1814            starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
1815        {
1816                unkv[(*unkc)++] = arg;
1817                return 1;
1818        }
1819
1820        if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1821                revs->max_count = atoi(optarg);
1822                revs->no_walk = 0;
1823                return argcount;
1824        } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1825                revs->skip_count = atoi(optarg);
1826                return argcount;
1827        } else if ((*arg == '-') && isdigit(arg[1])) {
1828                /* accept -<digit>, like traditional "head" */
1829                if (strtol_i(arg + 1, 10, &revs->max_count) < 0 ||
1830                    revs->max_count < 0)
1831                        die("'%s': not a non-negative integer", arg + 1);
1832                revs->no_walk = 0;
1833        } else if (!strcmp(arg, "-n")) {
1834                if (argc <= 1)
1835                        return error("-n requires an argument");
1836                revs->max_count = atoi(argv[1]);
1837                revs->no_walk = 0;
1838                return 2;
1839        } else if (skip_prefix(arg, "-n", &optarg)) {
1840                revs->max_count = atoi(optarg);
1841                revs->no_walk = 0;
1842        } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1843                revs->max_age = atoi(optarg);
1844                return argcount;
1845        } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1846                revs->max_age = approxidate(optarg);
1847                return argcount;
1848        } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1849                revs->max_age = approxidate(optarg);
1850                return argcount;
1851        } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1852                revs->min_age = atoi(optarg);
1853                return argcount;
1854        } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1855                revs->min_age = approxidate(optarg);
1856                return argcount;
1857        } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1858                revs->min_age = approxidate(optarg);
1859                return argcount;
1860        } else if (!strcmp(arg, "--first-parent")) {
1861                revs->first_parent_only = 1;
1862        } else if (!strcmp(arg, "--ancestry-path")) {
1863                revs->ancestry_path = 1;
1864                revs->simplify_history = 0;
1865                revs->limited = 1;
1866        } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1867                init_reflog_walk(&revs->reflog_info);
1868        } else if (!strcmp(arg, "--default")) {
1869                if (argc <= 1)
1870                        return error("bad --default argument");
1871                revs->def = argv[1];
1872                return 2;
1873        } else if (!strcmp(arg, "--merge")) {
1874                revs->show_merge = 1;
1875        } else if (!strcmp(arg, "--topo-order")) {
1876                revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1877                revs->topo_order = 1;
1878        } else if (!strcmp(arg, "--simplify-merges")) {
1879                revs->simplify_merges = 1;
1880                revs->topo_order = 1;
1881                revs->rewrite_parents = 1;
1882                revs->simplify_history = 0;
1883                revs->limited = 1;
1884        } else if (!strcmp(arg, "--simplify-by-decoration")) {
1885                revs->simplify_merges = 1;
1886                revs->topo_order = 1;
1887                revs->rewrite_parents = 1;
1888                revs->simplify_history = 0;
1889                revs->simplify_by_decoration = 1;
1890                revs->limited = 1;
1891                revs->prune = 1;
1892                load_ref_decorations(NULL, DECORATE_SHORT_REFS);
1893        } else if (!strcmp(arg, "--date-order")) {
1894                revs->sort_order = REV_SORT_BY_COMMIT_DATE;
1895                revs->topo_order = 1;
1896        } else if (!strcmp(arg, "--author-date-order")) {
1897                revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
1898                revs->topo_order = 1;
1899        } else if (!strcmp(arg, "--early-output")) {
1900                revs->early_output = 100;
1901                revs->topo_order = 1;
1902        } else if (skip_prefix(arg, "--early-output=", &optarg)) {
1903                if (strtoul_ui(optarg, 10, &revs->early_output) < 0)
1904                        die("'%s': not a non-negative integer", optarg);
1905                revs->topo_order = 1;
1906        } else if (!strcmp(arg, "--parents")) {
1907                revs->rewrite_parents = 1;
1908                revs->print_parents = 1;
1909        } else if (!strcmp(arg, "--dense")) {
1910                revs->dense = 1;
1911        } else if (!strcmp(arg, "--sparse")) {
1912                revs->dense = 0;
1913        } else if (!strcmp(arg, "--in-commit-order")) {
1914                revs->tree_blobs_in_commit_order = 1;
1915        } else if (!strcmp(arg, "--remove-empty")) {
1916                revs->remove_empty_trees = 1;
1917        } else if (!strcmp(arg, "--merges")) {
1918                revs->min_parents = 2;
1919        } else if (!strcmp(arg, "--no-merges")) {
1920                revs->max_parents = 1;
1921        } else if (skip_prefix(arg, "--min-parents=", &optarg)) {
1922                revs->min_parents = atoi(optarg);
1923        } else if (!strcmp(arg, "--no-min-parents")) {
1924                revs->min_parents = 0;
1925        } else if (skip_prefix(arg, "--max-parents=", &optarg)) {
1926                revs->max_parents = atoi(optarg);
1927        } else if (!strcmp(arg, "--no-max-parents")) {
1928                revs->max_parents = -1;
1929        } else if (!strcmp(arg, "--boundary")) {
1930                revs->boundary = 1;
1931        } else if (!strcmp(arg, "--left-right")) {
1932                revs->left_right = 1;
1933        } else if (!strcmp(arg, "--left-only")) {
1934                if (revs->right_only)
1935                        die("--left-only is incompatible with --right-only"
1936                            " or --cherry");
1937                revs->left_only = 1;
1938        } else if (!strcmp(arg, "--right-only")) {
1939                if (revs->left_only)
1940                        die("--right-only is incompatible with --left-only");
1941                revs->right_only = 1;
1942        } else if (!strcmp(arg, "--cherry")) {
1943                if (revs->left_only)
1944                        die("--cherry is incompatible with --left-only");
1945                revs->cherry_mark = 1;
1946                revs->right_only = 1;
1947                revs->max_parents = 1;
1948                revs->limited = 1;
1949        } else if (!strcmp(arg, "--count")) {
1950                revs->count = 1;
1951        } else if (!strcmp(arg, "--cherry-mark")) {
1952                if (revs->cherry_pick)
1953                        die("--cherry-mark is incompatible with --cherry-pick");
1954                revs->cherry_mark = 1;
1955                revs->limited = 1; /* needs limit_list() */
1956        } else if (!strcmp(arg, "--cherry-pick")) {
1957                if (revs->cherry_mark)
1958                        die("--cherry-pick is incompatible with --cherry-mark");
1959                revs->cherry_pick = 1;
1960                revs->limited = 1;
1961        } else if (!strcmp(arg, "--objects")) {
1962                revs->tag_objects = 1;
1963                revs->tree_objects = 1;
1964                revs->blob_objects = 1;
1965        } else if (!strcmp(arg, "--objects-edge")) {
1966                revs->tag_objects = 1;
1967                revs->tree_objects = 1;
1968                revs->blob_objects = 1;
1969                revs->edge_hint = 1;
1970        } else if (!strcmp(arg, "--objects-edge-aggressive")) {
1971                revs->tag_objects = 1;
1972                revs->tree_objects = 1;
1973                revs->blob_objects = 1;
1974                revs->edge_hint = 1;
1975                revs->edge_hint_aggressive = 1;
1976        } else if (!strcmp(arg, "--verify-objects")) {
1977                revs->tag_objects = 1;
1978                revs->tree_objects = 1;
1979                revs->blob_objects = 1;
1980                revs->verify_objects = 1;
1981        } else if (!strcmp(arg, "--unpacked")) {
1982                revs->unpacked = 1;
1983        } else if (starts_with(arg, "--unpacked=")) {
1984                die("--unpacked=<packfile> no longer supported.");
1985        } else if (!strcmp(arg, "-r")) {
1986                revs->diff = 1;
1987                revs->diffopt.flags.recursive = 1;
1988        } else if (!strcmp(arg, "-t")) {
1989                revs->diff = 1;
1990                revs->diffopt.flags.recursive = 1;
1991                revs->diffopt.flags.tree_in_recursive = 1;
1992        } else if (!strcmp(arg, "-m")) {
1993                revs->ignore_merges = 0;
1994        } else if (!strcmp(arg, "-c")) {
1995                revs->diff = 1;
1996                revs->dense_combined_merges = 0;
1997                revs->combine_merges = 1;
1998        } else if (!strcmp(arg, "--cc")) {
1999                revs->diff = 1;
2000                revs->dense_combined_merges = 1;
2001                revs->combine_merges = 1;
2002        } else if (!strcmp(arg, "-v")) {
2003                revs->verbose_header = 1;
2004        } else if (!strcmp(arg, "--pretty")) {
2005                revs->verbose_header = 1;
2006                revs->pretty_given = 1;
2007                get_commit_format(NULL, revs);
2008        } else if (skip_prefix(arg, "--pretty=", &optarg) ||
2009                   skip_prefix(arg, "--format=", &optarg)) {
2010                /*
2011                 * Detached form ("--pretty X" as opposed to "--pretty=X")
2012                 * not allowed, since the argument is optional.
2013                 */
2014                revs->verbose_header = 1;
2015                revs->pretty_given = 1;
2016                get_commit_format(optarg, revs);
2017        } else if (!strcmp(arg, "--expand-tabs")) {
2018                revs->expand_tabs_in_log = 8;
2019        } else if (!strcmp(arg, "--no-expand-tabs")) {
2020                revs->expand_tabs_in_log = 0;
2021        } else if (skip_prefix(arg, "--expand-tabs=", &arg)) {
2022                int val;
2023                if (strtol_i(arg, 10, &val) < 0 || val < 0)
2024                        die("'%s': not a non-negative integer", arg);
2025                revs->expand_tabs_in_log = val;
2026        } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
2027                revs->show_notes = 1;
2028                revs->show_notes_given = 1;
2029                revs->notes_opt.use_default_notes = 1;
2030        } else if (!strcmp(arg, "--show-signature")) {
2031                revs->show_signature = 1;
2032        } else if (!strcmp(arg, "--no-show-signature")) {
2033                revs->show_signature = 0;
2034        } else if (!strcmp(arg, "--show-linear-break")) {
2035                revs->break_bar = "                    ..........";
2036                revs->track_linear = 1;
2037                revs->track_first_time = 1;
2038        } else if (skip_prefix(arg, "--show-linear-break=", &optarg)) {
2039                revs->break_bar = xstrdup(optarg);
2040                revs->track_linear = 1;
2041                revs->track_first_time = 1;
2042        } else if (skip_prefix(arg, "--show-notes=", &optarg) ||
2043                   skip_prefix(arg, "--notes=", &optarg)) {
2044                struct strbuf buf = STRBUF_INIT;
2045                revs->show_notes = 1;
2046                revs->show_notes_given = 1;
2047                if (starts_with(arg, "--show-notes=") &&
2048                    revs->notes_opt.use_default_notes < 0)
2049                        revs->notes_opt.use_default_notes = 1;
2050                strbuf_addstr(&buf, optarg);
2051                expand_notes_ref(&buf);
2052                string_list_append(&revs->notes_opt.extra_notes_refs,
2053                                   strbuf_detach(&buf, NULL));
2054        } else if (!strcmp(arg, "--no-notes")) {
2055                revs->show_notes = 0;
2056                revs->show_notes_given = 1;
2057                revs->notes_opt.use_default_notes = -1;
2058                /* we have been strdup'ing ourselves, so trick
2059                 * string_list into free()ing strings */
2060                revs->notes_opt.extra_notes_refs.strdup_strings = 1;
2061                string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
2062                revs->notes_opt.extra_notes_refs.strdup_strings = 0;
2063        } else if (!strcmp(arg, "--standard-notes")) {
2064                revs->show_notes_given = 1;
2065                revs->notes_opt.use_default_notes = 1;
2066        } else if (!strcmp(arg, "--no-standard-notes")) {
2067                revs->notes_opt.use_default_notes = 0;
2068        } else if (!strcmp(arg, "--oneline")) {
2069                revs->verbose_header = 1;
2070                get_commit_format("oneline", revs);
2071                revs->pretty_given = 1;
2072                revs->abbrev_commit = 1;
2073        } else if (!strcmp(arg, "--graph")) {
2074                revs->topo_order = 1;
2075                revs->rewrite_parents = 1;
2076                revs->graph = graph_init(revs);
2077        } else if (!strcmp(arg, "--root")) {
2078                revs->show_root_diff = 1;
2079        } else if (!strcmp(arg, "--no-commit-id")) {
2080                revs->no_commit_id = 1;
2081        } else if (!strcmp(arg, "--always")) {
2082                revs->always_show_header = 1;
2083        } else if (!strcmp(arg, "--no-abbrev")) {
2084                revs->abbrev = 0;
2085        } else if (!strcmp(arg, "--abbrev")) {
2086                revs->abbrev = DEFAULT_ABBREV;
2087        } else if (skip_prefix(arg, "--abbrev=", &optarg)) {
2088                revs->abbrev = strtoul(optarg, NULL, 10);
2089                if (revs->abbrev < MINIMUM_ABBREV)
2090                        revs->abbrev = MINIMUM_ABBREV;
2091                else if (revs->abbrev > hexsz)
2092                        revs->abbrev = hexsz;
2093        } else if (!strcmp(arg, "--abbrev-commit")) {
2094                revs->abbrev_commit = 1;
2095                revs->abbrev_commit_given = 1;
2096        } else if (!strcmp(arg, "--no-abbrev-commit")) {
2097                revs->abbrev_commit = 0;
2098        } else if (!strcmp(arg, "--full-diff")) {
2099                revs->diff = 1;
2100                revs->full_diff = 1;
2101        } else if (!strcmp(arg, "--full-history")) {
2102                revs->simplify_history = 0;
2103        } else if (!strcmp(arg, "--relative-date")) {
2104                revs->date_mode.type = DATE_RELATIVE;
2105                revs->date_mode_explicit = 1;
2106        } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
2107                parse_date_format(optarg, &revs->date_mode);
2108                revs->date_mode_explicit = 1;
2109                return argcount;
2110        } else if (!strcmp(arg, "--log-size")) {
2111                revs->show_log_size = 1;
2112        }
2113        /*
2114         * Grepping the commit log
2115         */
2116        else if ((argcount = parse_long_opt("author", argv, &optarg))) {
2117                add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
2118                return argcount;
2119        } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
2120                add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
2121                return argcount;
2122        } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
2123                add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
2124                return argcount;
2125        } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
2126                add_message_grep(revs, optarg);
2127                return argcount;
2128        } else if (!strcmp(arg, "--grep-debug")) {
2129                revs->grep_filter.debug = 1;
2130        } else if (!strcmp(arg, "--basic-regexp")) {
2131                revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_BRE;
2132        } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
2133                revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_ERE;
2134        } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
2135                revs->grep_filter.ignore_case = 1;
2136                revs->diffopt.pickaxe_opts |= DIFF_PICKAXE_IGNORE_CASE;
2137        } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
2138                revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_FIXED;
2139        } else if (!strcmp(arg, "--perl-regexp") || !strcmp(arg, "-P")) {
2140                revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_PCRE;
2141        } else if (!strcmp(arg, "--all-match")) {
2142                revs->grep_filter.all_match = 1;
2143        } else if (!strcmp(arg, "--invert-grep")) {
2144                revs->invert_grep = 1;
2145        } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
2146                if (strcmp(optarg, "none"))
2147                        git_log_output_encoding = xstrdup(optarg);
2148                else
2149                        git_log_output_encoding = "";
2150                return argcount;
2151        } else if (!strcmp(arg, "--reverse")) {
2152                revs->reverse ^= 1;
2153        } else if (!strcmp(arg, "--children")) {
2154                revs->children.name = "children";
2155                revs->limited = 1;
2156        } else if (!strcmp(arg, "--ignore-missing")) {
2157                revs->ignore_missing = 1;
2158        } else if (opt && opt->allow_exclude_promisor_objects &&
2159                   !strcmp(arg, "--exclude-promisor-objects")) {
2160                if (fetch_if_missing)
2161                        BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2162                revs->exclude_promisor_objects = 1;
2163        } else {
2164                int opts = diff_opt_parse(&revs->diffopt, argv, argc, revs->prefix);
2165                if (!opts)
2166                        unkv[(*unkc)++] = arg;
2167                return opts;
2168        }
2169        if (revs->graph && revs->track_linear)
2170                die("--show-linear-break and --graph are incompatible");
2171
2172        return 1;
2173}
2174
2175void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
2176                        const struct option *options,
2177                        const char * const usagestr[])
2178{
2179        int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
2180                                    &ctx->cpidx, ctx->out, NULL);
2181        if (n <= 0) {
2182                error("unknown option `%s'", ctx->argv[0]);
2183                usage_with_options(usagestr, options);
2184        }
2185        ctx->argv += n;
2186        ctx->argc -= n;
2187}
2188
2189static int for_each_bisect_ref(struct ref_store *refs, each_ref_fn fn,
2190                               void *cb_data, const char *term)
2191{
2192        struct strbuf bisect_refs = STRBUF_INIT;
2193        int status;
2194        strbuf_addf(&bisect_refs, "refs/bisect/%s", term);
2195        status = refs_for_each_fullref_in(refs, bisect_refs.buf, fn, cb_data, 0);
2196        strbuf_release(&bisect_refs);
2197        return status;
2198}
2199
2200static int for_each_bad_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2201{
2202        return for_each_bisect_ref(refs, fn, cb_data, term_bad);
2203}
2204
2205static int for_each_good_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2206{
2207        return for_each_bisect_ref(refs, fn, cb_data, term_good);
2208}
2209
2210static int handle_revision_pseudo_opt(const char *submodule,
2211                                struct rev_info *revs,
2212                                int argc, const char **argv, int *flags)
2213{
2214        const char *arg = argv[0];
2215        const char *optarg;
2216        struct ref_store *refs;
2217        int argcount;
2218
2219        if (submodule) {
2220                /*
2221                 * We need some something like get_submodule_worktrees()
2222                 * before we can go through all worktrees of a submodule,
2223                 * .e.g with adding all HEADs from --all, which is not
2224                 * supported right now, so stick to single worktree.
2225                 */
2226                if (!revs->single_worktree)
2227                        BUG("--single-worktree cannot be used together with submodule");
2228                refs = get_submodule_ref_store(submodule);
2229        } else
2230                refs = get_main_ref_store(revs->repo);
2231
2232        /*
2233         * NOTE!
2234         *
2235         * Commands like "git shortlog" will not accept the options below
2236         * unless parse_revision_opt queues them (as opposed to erroring
2237         * out).
2238         *
2239         * When implementing your new pseudo-option, remember to
2240         * register it in the list at the top of handle_revision_opt.
2241         */
2242        if (!strcmp(arg, "--all")) {
2243                handle_refs(refs, revs, *flags, refs_for_each_ref);
2244                handle_refs(refs, revs, *flags, refs_head_ref);
2245                if (!revs->single_worktree) {
2246                        struct all_refs_cb cb;
2247
2248                        init_all_refs_cb(&cb, revs, *flags);
2249                        other_head_refs(handle_one_ref, &cb);
2250                }
2251                clear_ref_exclusion(&revs->ref_excludes);
2252        } else if (!strcmp(arg, "--branches")) {
2253                handle_refs(refs, revs, *flags, refs_for_each_branch_ref);
2254                clear_ref_exclusion(&revs->ref_excludes);
2255        } else if (!strcmp(arg, "--bisect")) {
2256                read_bisect_terms(&term_bad, &term_good);
2257                handle_refs(refs, revs, *flags, for_each_bad_bisect_ref);
2258                handle_refs(refs, revs, *flags ^ (UNINTERESTING | BOTTOM),
2259                            for_each_good_bisect_ref);
2260                revs->bisect = 1;
2261        } else if (!strcmp(arg, "--tags")) {
2262                handle_refs(refs, revs, *flags, refs_for_each_tag_ref);
2263                clear_ref_exclusion(&revs->ref_excludes);
2264        } else if (!strcmp(arg, "--remotes")) {
2265                handle_refs(refs, revs, *flags, refs_for_each_remote_ref);
2266                clear_ref_exclusion(&revs->ref_excludes);
2267        } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
2268                struct all_refs_cb cb;
2269                init_all_refs_cb(&cb, revs, *flags);
2270                for_each_glob_ref(handle_one_ref, optarg, &cb);
2271                clear_ref_exclusion(&revs->ref_excludes);
2272                return argcount;
2273        } else if ((argcount = parse_long_opt("exclude", argv, &optarg))) {
2274                add_ref_exclusion(&revs->ref_excludes, optarg);
2275                return argcount;
2276        } else if (skip_prefix(arg, "--branches=", &optarg)) {
2277                struct all_refs_cb cb;
2278                init_all_refs_cb(&cb, revs, *flags);
2279                for_each_glob_ref_in(handle_one_ref, optarg, "refs/heads/", &cb);
2280                clear_ref_exclusion(&revs->ref_excludes);
2281        } else if (skip_prefix(arg, "--tags=", &optarg)) {
2282                struct all_refs_cb cb;
2283                init_all_refs_cb(&cb, revs, *flags);
2284                for_each_glob_ref_in(handle_one_ref, optarg, "refs/tags/", &cb);
2285                clear_ref_exclusion(&revs->ref_excludes);
2286        } else if (skip_prefix(arg, "--remotes=", &optarg)) {
2287                struct all_refs_cb cb;
2288                init_all_refs_cb(&cb, revs, *flags);
2289                for_each_glob_ref_in(handle_one_ref, optarg, "refs/remotes/", &cb);
2290                clear_ref_exclusion(&revs->ref_excludes);
2291        } else if (!strcmp(arg, "--reflog")) {
2292                add_reflogs_to_pending(revs, *flags);
2293        } else if (!strcmp(arg, "--indexed-objects")) {
2294                add_index_objects_to_pending(revs, *flags);
2295        } else if (!strcmp(arg, "--not")) {
2296                *flags ^= UNINTERESTING | BOTTOM;
2297        } else if (!strcmp(arg, "--no-walk")) {
2298                revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2299        } else if (skip_prefix(arg, "--no-walk=", &optarg)) {
2300                /*
2301                 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2302                 * not allowed, since the argument is optional.
2303                 */
2304                if (!strcmp(optarg, "sorted"))
2305                        revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2306                else if (!strcmp(optarg, "unsorted"))
2307                        revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
2308                else
2309                        return error("invalid argument to --no-walk");
2310        } else if (!strcmp(arg, "--do-walk")) {
2311                revs->no_walk = 0;
2312        } else if (!strcmp(arg, "--single-worktree")) {
2313                revs->single_worktree = 1;
2314        } else {
2315                return 0;
2316        }
2317
2318        return 1;
2319}
2320
2321static void NORETURN diagnose_missing_default(const char *def)
2322{
2323        int flags;
2324        const char *refname;
2325
2326        refname = resolve_ref_unsafe(def, 0, NULL, &flags);
2327        if (!refname || !(flags & REF_ISSYMREF) || (flags & REF_ISBROKEN))
2328                die(_("your current branch appears to be broken"));
2329
2330        skip_prefix(refname, "refs/heads/", &refname);
2331        die(_("your current branch '%s' does not have any commits yet"),
2332            refname);
2333}
2334
2335/*
2336 * Parse revision information, filling in the "rev_info" structure,
2337 * and removing the used arguments from the argument list.
2338 *
2339 * Returns the number of arguments left that weren't recognized
2340 * (which are also moved to the head of the argument list)
2341 */
2342int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
2343{
2344        int i, flags, left, seen_dashdash, got_rev_arg = 0, revarg_opt;
2345        struct argv_array prune_data = ARGV_ARRAY_INIT;
2346        const char *submodule = NULL;
2347
2348        if (opt)
2349                submodule = opt->submodule;
2350
2351        /* First, search for "--" */
2352        if (opt && opt->assume_dashdash) {
2353                seen_dashdash = 1;
2354        } else {
2355                seen_dashdash = 0;
2356                for (i = 1; i < argc; i++) {
2357                        const char *arg = argv[i];
2358                        if (strcmp(arg, "--"))
2359                                continue;
2360                        argv[i] = NULL;
2361                        argc = i;
2362                        if (argv[i + 1])
2363                                argv_array_pushv(&prune_data, argv + i + 1);
2364                        seen_dashdash = 1;
2365                        break;
2366                }
2367        }
2368
2369        /* Second, deal with arguments and options */
2370        flags = 0;
2371        revarg_opt = opt ? opt->revarg_opt : 0;
2372        if (seen_dashdash)
2373                revarg_opt |= REVARG_CANNOT_BE_FILENAME;
2374        for (left = i = 1; i < argc; i++) {
2375                const char *arg = argv[i];
2376                if (*arg == '-') {
2377                        int opts;
2378
2379                        opts = handle_revision_pseudo_opt(submodule,
2380                                                revs, argc - i, argv + i,
2381                                                &flags);
2382                        if (opts > 0) {
2383                                i += opts - 1;
2384                                continue;
2385                        }
2386
2387                        if (!strcmp(arg, "--stdin")) {
2388                                if (revs->disable_stdin) {
2389                                        argv[left++] = arg;
2390                                        continue;
2391                                }
2392                                if (revs->read_from_stdin++)
2393                                        die("--stdin given twice?");
2394                                read_revisions_from_stdin(revs, &prune_data);
2395                                continue;
2396                        }
2397
2398                        opts = handle_revision_opt(revs, argc - i, argv + i,
2399                                                   &left, argv, opt);
2400                        if (opts > 0) {
2401                                i += opts - 1;
2402                                continue;
2403                        }
2404                        if (opts < 0)
2405                                exit(128);
2406                        continue;
2407                }
2408
2409
2410                if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
2411                        int j;
2412                        if (seen_dashdash || *arg == '^')
2413                                die("bad revision '%s'", arg);
2414
2415                        /* If we didn't have a "--":
2416                         * (1) all filenames must exist;
2417                         * (2) all rev-args must not be interpretable
2418                         *     as a valid filename.
2419                         * but the latter we have checked in the main loop.
2420                         */
2421                        for (j = i; j < argc; j++)
2422                                verify_filename(revs->prefix, argv[j], j == i);
2423
2424                        argv_array_pushv(&prune_data, argv + i);
2425                        break;
2426                }
2427                else
2428                        got_rev_arg = 1;
2429        }
2430
2431        if (prune_data.argc) {
2432                /*
2433                 * If we need to introduce the magic "a lone ':' means no
2434                 * pathspec whatsoever", here is the place to do so.
2435                 *
2436                 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2437                 *      prune_data.nr = 0;
2438                 *      prune_data.alloc = 0;
2439                 *      free(prune_data.path);
2440                 *      prune_data.path = NULL;
2441                 * } else {
2442                 *      terminate prune_data.alloc with NULL and
2443                 *      call init_pathspec() to set revs->prune_data here.
2444                 * }
2445                 */
2446                parse_pathspec(&revs->prune_data, 0, 0,
2447                               revs->prefix, prune_data.argv);
2448        }
2449        argv_array_clear(&prune_data);
2450
2451        if (revs->def == NULL)
2452                revs->def = opt ? opt->def : NULL;
2453        if (opt && opt->tweak)
2454                opt->tweak(revs, opt);
2455        if (revs->show_merge)
2456                prepare_show_merge(revs);
2457        if (revs->def && !revs->pending.nr && !revs->rev_input_given && !got_rev_arg) {
2458                struct object_id oid;
2459                struct object *object;
2460                struct object_context oc;
2461                if (get_oid_with_context(revs->def, 0, &oid, &oc))
2462                        diagnose_missing_default(revs->def);
2463                object = get_reference(revs, revs->def, &oid, 0);
2464                add_pending_object_with_mode(revs, object, revs->def, oc.mode);
2465        }
2466
2467        /* Did the user ask for any diff output? Run the diff! */
2468        if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2469                revs->diff = 1;
2470
2471        /* Pickaxe, diff-filter and rename following need diffs */
2472        if ((revs->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
2473            revs->diffopt.filter ||
2474            revs->diffopt.flags.follow_renames)
2475                revs->diff = 1;
2476
2477        if (revs->diffopt.objfind)
2478                revs->simplify_history = 0;
2479
2480        if (revs->topo_order && !generation_numbers_enabled(the_repository))
2481                revs->limited = 1;
2482
2483        if (revs->prune_data.nr) {
2484                copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
2485                /* Can't prune commits with rename following: the paths change.. */
2486                if (!revs->diffopt.flags.follow_renames)
2487                        revs->prune = 1;
2488                if (!revs->full_diff)
2489                        copy_pathspec(&revs->diffopt.pathspec,
2490                                      &revs->prune_data);
2491        }
2492        if (revs->combine_merges)
2493                revs->ignore_merges = 0;
2494        revs->diffopt.abbrev = revs->abbrev;
2495
2496        if (revs->line_level_traverse) {
2497                revs->limited = 1;
2498                revs->topo_order = 1;
2499        }
2500
2501        diff_setup_done(&revs->diffopt);
2502
2503        grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
2504                                 &revs->grep_filter);
2505        compile_grep_patterns(&revs->grep_filter);
2506
2507        if (revs->reverse && revs->reflog_info)
2508                die("cannot combine --reverse with --walk-reflogs");
2509        if (revs->reflog_info && revs->limited)
2510                die("cannot combine --walk-reflogs with history-limiting options");
2511        if (revs->rewrite_parents && revs->children.name)
2512                die("cannot combine --parents and --children");
2513
2514        /*
2515         * Limitations on the graph functionality
2516         */
2517        if (revs->reverse && revs->graph)
2518                die("cannot combine --reverse with --graph");
2519
2520        if (revs->reflog_info && revs->graph)
2521                die("cannot combine --walk-reflogs with --graph");
2522        if (revs->no_walk && revs->graph)
2523                die("cannot combine --no-walk with --graph");
2524        if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
2525                die("cannot use --grep-reflog without --walk-reflogs");
2526
2527        if (revs->first_parent_only && revs->bisect)
2528                die(_("--first-parent is incompatible with --bisect"));
2529
2530        if (revs->expand_tabs_in_log < 0)
2531                revs->expand_tabs_in_log = revs->expand_tabs_in_log_default;
2532
2533        return left;
2534}
2535
2536static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2537{
2538        struct commit_list *l = xcalloc(1, sizeof(*l));
2539
2540        l->item = child;
2541        l->next = add_decoration(&revs->children, &parent->object, l);
2542}
2543
2544static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
2545{
2546        struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2547        struct commit_list **pp, *p;
2548        int surviving_parents;
2549
2550        /* Examine existing parents while marking ones we have seen... */
2551        pp = &commit->parents;
2552        surviving_parents = 0;
2553        while ((p = *pp) != NULL) {
2554                struct commit *parent = p->item;
2555                if (parent->object.flags & TMP_MARK) {
2556                        *pp = p->next;
2557                        if (ts)
2558                                compact_treesame(revs, commit, surviving_parents);
2559                        continue;
2560                }
2561                parent->object.flags |= TMP_MARK;
2562                surviving_parents++;
2563                pp = &p->next;
2564        }
2565        /* clear the temporary mark */
2566        for (p = commit->parents; p; p = p->next) {
2567                p->item->object.flags &= ~TMP_MARK;
2568        }
2569        /* no update_treesame() - removing duplicates can't affect TREESAME */
2570        return surviving_parents;
2571}
2572
2573struct merge_simplify_state {
2574        struct commit *simplified;
2575};
2576
2577static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2578{
2579        struct merge_simplify_state *st;
2580
2581        st = lookup_decoration(&revs->merge_simplification, &commit->object);
2582        if (!st) {
2583                st = xcalloc(1, sizeof(*st));
2584                add_decoration(&revs->merge_simplification, &commit->object, st);
2585        }
2586        return st;
2587}
2588
2589static int mark_redundant_parents(struct rev_info *revs, struct commit *commit)
2590{
2591        struct commit_list *h = reduce_heads(commit->parents);
2592        int i = 0, marked = 0;
2593        struct commit_list *po, *pn;
2594
2595        /* Want these for sanity-checking only */
2596        int orig_cnt = commit_list_count(commit->parents);
2597        int cnt = commit_list_count(h);
2598
2599        /*
2600         * Not ready to remove items yet, just mark them for now, based
2601         * on the output of reduce_heads(). reduce_heads outputs the reduced
2602         * set in its original order, so this isn't too hard.
2603         */
2604        po = commit->parents;
2605        pn = h;
2606        while (po) {
2607                if (pn && po->item == pn->item) {
2608                        pn = pn->next;
2609                        i++;
2610                } else {
2611                        po->item->object.flags |= TMP_MARK;
2612                        marked++;
2613                }
2614                po=po->next;
2615        }
2616
2617        if (i != cnt || cnt+marked != orig_cnt)
2618                die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
2619
2620        free_commit_list(h);
2621
2622        return marked;
2623}
2624
2625static int mark_treesame_root_parents(struct rev_info *revs, struct commit *commit)
2626{
2627        struct commit_list *p;
2628        int marked = 0;
2629
2630        for (p = commit->parents; p; p = p->next) {
2631                struct commit *parent = p->item;
2632                if (!parent->parents && (parent->object.flags & TREESAME)) {
2633                        parent->object.flags |= TMP_MARK;
2634                        marked++;
2635                }
2636        }
2637
2638        return marked;
2639}
2640
2641/*
2642 * Awkward naming - this means one parent we are TREESAME to.
2643 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2644 * empty tree). Better name suggestions?
2645 */
2646static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
2647{
2648        struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2649        struct commit *unmarked = NULL, *marked = NULL;
2650        struct commit_list *p;
2651        unsigned n;
2652
2653        for (p = commit->parents, n = 0; p; p = p->next, n++) {
2654                if (ts->treesame[n]) {
2655                        if (p->item->object.flags & TMP_MARK) {
2656                                if (!marked)
2657                                        marked = p->item;
2658                        } else {
2659                                if (!unmarked) {
2660                                        unmarked = p->item;
2661                                        break;
2662                                }
2663                        }
2664                }
2665        }
2666
2667        /*
2668         * If we are TREESAME to a marked-for-deletion parent, but not to any
2669         * unmarked parents, unmark the first TREESAME parent. This is the
2670         * parent that the default simplify_history==1 scan would have followed,
2671         * and it doesn't make sense to omit that path when asking for a
2672         * simplified full history. Retaining it improves the chances of
2673         * understanding odd missed merges that took an old version of a file.
2674         *
2675         * Example:
2676         *
2677         *   I--------*X       A modified the file, but mainline merge X used
2678         *    \       /        "-s ours", so took the version from I. X is
2679         *     `-*A--'         TREESAME to I and !TREESAME to A.
2680         *
2681         * Default log from X would produce "I". Without this check,
2682         * --full-history --simplify-merges would produce "I-A-X", showing
2683         * the merge commit X and that it changed A, but not making clear that
2684         * it had just taken the I version. With this check, the topology above
2685         * is retained.
2686         *
2687         * Note that it is possible that the simplification chooses a different
2688         * TREESAME parent from the default, in which case this test doesn't
2689         * activate, and we _do_ drop the default parent. Example:
2690         *
2691         *   I------X         A modified the file, but it was reverted in B,
2692         *    \    /          meaning mainline merge X is TREESAME to both
2693         *    *A-*B           parents.
2694         *
2695         * Default log would produce "I" by following the first parent;
2696         * --full-history --simplify-merges will produce "I-A-B". But this is a
2697         * reasonable result - it presents a logical full history leading from
2698         * I to X, and X is not an important merge.
2699         */
2700        if (!unmarked && marked) {
2701                marked->object.flags &= ~TMP_MARK;
2702                return 1;
2703        }
2704
2705        return 0;
2706}
2707
2708static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
2709{
2710        struct commit_list **pp, *p;
2711        int nth_parent, removed = 0;
2712
2713        pp = &commit->parents;
2714        nth_parent = 0;
2715        while ((p = *pp) != NULL) {
2716                struct commit *parent = p->item;
2717                if (parent->object.flags & TMP_MARK) {
2718                        parent->object.flags &= ~TMP_MARK;
2719                        *pp = p->next;
2720                        free(p);
2721                        removed++;
2722                        compact_treesame(revs, commit, nth_parent);
2723                        continue;
2724                }
2725                pp = &p->next;
2726                nth_parent++;
2727        }
2728
2729        /* Removing parents can only increase TREESAMEness */
2730        if (removed && !(commit->object.flags & TREESAME))
2731                update_treesame(revs, commit);
2732
2733        return nth_parent;
2734}
2735
2736static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
2737{
2738        struct commit_list *p;
2739        struct commit *parent;
2740        struct merge_simplify_state *st, *pst;
2741        int cnt;
2742
2743        st = locate_simplify_state(revs, commit);
2744
2745        /*
2746         * Have we handled this one?
2747         */
2748        if (st->simplified)
2749                return tail;
2750
2751        /*
2752         * An UNINTERESTING commit simplifies to itself, so does a
2753         * root commit.  We do not rewrite parents of such commit
2754         * anyway.
2755         */
2756        if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
2757                st->simplified = commit;
2758                return tail;
2759        }
2760
2761        /*
2762         * Do we know what commit all of our parents that matter
2763         * should be rewritten to?  Otherwise we are not ready to
2764         * rewrite this one yet.
2765         */
2766        for (cnt = 0, p = commit->parents; p; p = p->next) {
2767                pst = locate_simplify_state(revs, p->item);
2768                if (!pst->simplified) {
2769                        tail = &commit_list_insert(p->item, tail)->next;
2770                        cnt++;
2771                }
2772                if (revs->first_parent_only)
2773                        break;
2774        }
2775        if (cnt) {
2776                tail = &commit_list_insert(commit, tail)->next;
2777                return tail;
2778        }
2779
2780        /*
2781         * Rewrite our list of parents. Note that this cannot
2782         * affect our TREESAME flags in any way - a commit is
2783         * always TREESAME to its simplification.
2784         */
2785        for (p = commit->parents; p; p = p->next) {
2786                pst = locate_simplify_state(revs, p->item);
2787                p->item = pst->simplified;
2788                if (revs->first_parent_only)
2789                        break;
2790        }
2791
2792        if (revs->first_parent_only)
2793                cnt = 1;
2794        else
2795                cnt = remove_duplicate_parents(revs, commit);
2796
2797        /*
2798         * It is possible that we are a merge and one side branch
2799         * does not have any commit that touches the given paths;
2800         * in such a case, the immediate parent from that branch
2801         * will be rewritten to be the merge base.
2802         *
2803         *      o----X          X: the commit we are looking at;
2804         *     /    /           o: a commit that touches the paths;
2805         * ---o----'
2806         *
2807         * Further, a merge of an independent branch that doesn't
2808         * touch the path will reduce to a treesame root parent:
2809         *
2810         *  ----o----X          X: the commit we are looking at;
2811         *          /           o: a commit that touches the paths;
2812         *         r            r: a root commit not touching the paths
2813         *
2814         * Detect and simplify both cases.
2815         */
2816        if (1 < cnt) {
2817                int marked = mark_redundant_parents(revs, commit);
2818                marked += mark_treesame_root_parents(revs, commit);
2819                if (marked)
2820                        marked -= leave_one_treesame_to_parent(revs, commit);
2821                if (marked)
2822                        cnt = remove_marked_parents(revs, commit);
2823        }
2824
2825        /*
2826         * A commit simplifies to itself if it is a root, if it is
2827         * UNINTERESTING, if it touches the given paths, or if it is a
2828         * merge and its parents don't simplify to one relevant commit
2829         * (the first two cases are already handled at the beginning of
2830         * this function).
2831         *
2832         * Otherwise, it simplifies to what its sole relevant parent
2833         * simplifies to.
2834         */
2835        if (!cnt ||
2836            (commit->object.flags & UNINTERESTING) ||
2837            !(commit->object.flags & TREESAME) ||
2838            (parent = one_relevant_parent(revs, commit->parents)) == NULL)
2839                st->simplified = commit;
2840        else {
2841                pst = locate_simplify_state(revs, parent);
2842                st->simplified = pst->simplified;
2843        }
2844        return tail;
2845}
2846
2847static void simplify_merges(struct rev_info *revs)
2848{
2849        struct commit_list *list, *next;
2850        struct commit_list *yet_to_do, **tail;
2851        struct commit *commit;
2852
2853        if (!revs->prune)
2854                return;
2855
2856        /* feed the list reversed */
2857        yet_to_do = NULL;
2858        for (list = revs->commits; list; list = next) {
2859                commit = list->item;
2860                next = list->next;
2861                /*
2862                 * Do not free(list) here yet; the original list
2863                 * is used later in this function.
2864                 */
2865                commit_list_insert(commit, &yet_to_do);
2866        }
2867        while (yet_to_do) {
2868                list = yet_to_do;
2869                yet_to_do = NULL;
2870                tail = &yet_to_do;
2871                while (list) {
2872                        commit = pop_commit(&list);
2873                        tail = simplify_one(revs, commit, tail);
2874                }
2875        }
2876
2877        /* clean up the result, removing the simplified ones */
2878        list = revs->commits;
2879        revs->commits = NULL;
2880        tail = &revs->commits;
2881        while (list) {
2882                struct merge_simplify_state *st;
2883
2884                commit = pop_commit(&list);
2885                st = locate_simplify_state(revs, commit);
2886                if (st->simplified == commit)
2887                        tail = &commit_list_insert(commit, tail)->next;
2888        }
2889}
2890
2891static void set_children(struct rev_info *revs)
2892{
2893        struct commit_list *l;
2894        for (l = revs->commits; l; l = l->next) {
2895                struct commit *commit = l->item;
2896                struct commit_list *p;
2897
2898                for (p = commit->parents; p; p = p->next)
2899                        add_child(revs, p->item, commit);
2900        }
2901}
2902
2903void reset_revision_walk(void)
2904{
2905        clear_object_flags(SEEN | ADDED | SHOWN);
2906}
2907
2908static int mark_uninteresting(const struct object_id *oid,
2909                              struct packed_git *pack,
2910                              uint32_t pos,
2911                              void *cb)
2912{
2913        struct rev_info *revs = cb;
2914        struct object *o = parse_object(revs->repo, oid);
2915        o->flags |= UNINTERESTING | SEEN;
2916        return 0;
2917}
2918
2919define_commit_slab(indegree_slab, int);
2920define_commit_slab(author_date_slab, timestamp_t);
2921
2922struct topo_walk_info {
2923        uint32_t min_generation;
2924        struct prio_queue explore_queue;
2925        struct prio_queue indegree_queue;
2926        struct prio_queue topo_queue;
2927        struct indegree_slab indegree;
2928        struct author_date_slab author_date;
2929};
2930
2931static inline void test_flag_and_insert(struct prio_queue *q, struct commit *c, int flag)
2932{
2933        if (c->object.flags & flag)
2934                return;
2935
2936        c->object.flags |= flag;
2937        prio_queue_put(q, c);
2938}
2939
2940static void explore_walk_step(struct rev_info *revs)
2941{
2942        struct topo_walk_info *info = revs->topo_walk_info;
2943        struct commit_list *p;
2944        struct commit *c = prio_queue_get(&info->explore_queue);
2945
2946        if (!c)
2947                return;
2948
2949        if (parse_commit_gently(c, 1) < 0)
2950                return;
2951
2952        if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
2953                record_author_date(&info->author_date, c);
2954
2955        if (revs->max_age != -1 && (c->date < revs->max_age))
2956                c->object.flags |= UNINTERESTING;
2957
2958        if (process_parents(revs, c, NULL, NULL) < 0)
2959                return;
2960
2961        if (c->object.flags & UNINTERESTING)
2962                mark_parents_uninteresting(c);
2963
2964        for (p = c->parents; p; p = p->next)
2965                test_flag_and_insert(&info->explore_queue, p->item, TOPO_WALK_EXPLORED);
2966}
2967
2968static void explore_to_depth(struct rev_info *revs,
2969                             uint32_t gen_cutoff)
2970{
2971        struct topo_walk_info *info = revs->topo_walk_info;
2972        struct commit *c;
2973        while ((c = prio_queue_peek(&info->explore_queue)) &&
2974               c->generation >= gen_cutoff)
2975                explore_walk_step(revs);
2976}
2977
2978static void indegree_walk_step(struct rev_info *revs)
2979{
2980        struct commit_list *p;
2981        struct topo_walk_info *info = revs->topo_walk_info;
2982        struct commit *c = prio_queue_get(&info->indegree_queue);
2983
2984        if (!c)
2985                return;
2986
2987        if (parse_commit_gently(c, 1) < 0)
2988                return;
2989
2990        explore_to_depth(revs, c->generation);
2991
2992        for (p = c->parents; p; p = p->next) {
2993                struct commit *parent = p->item;
2994                int *pi = indegree_slab_at(&info->indegree, parent);
2995
2996                if (*pi)
2997                        (*pi)++;
2998                else
2999                        *pi = 2;
3000
3001                test_flag_and_insert(&info->indegree_queue, parent, TOPO_WALK_INDEGREE);
3002
3003                if (revs->first_parent_only)
3004                        return;
3005        }
3006}
3007
3008static void compute_indegrees_to_depth(struct rev_info *revs,
3009                                       uint32_t gen_cutoff)
3010{
3011        struct topo_walk_info *info = revs->topo_walk_info;
3012        struct commit *c;
3013        while ((c = prio_queue_peek(&info->indegree_queue)) &&
3014               c->generation >= gen_cutoff)
3015                indegree_walk_step(revs);
3016}
3017
3018static void init_topo_walk(struct rev_info *revs)
3019{
3020        struct topo_walk_info *info;
3021        struct commit_list *list;
3022        revs->topo_walk_info = xmalloc(sizeof(struct topo_walk_info));
3023        info = revs->topo_walk_info;
3024        memset(info, 0, sizeof(struct topo_walk_info));
3025
3026        init_indegree_slab(&info->indegree);
3027        memset(&info->explore_queue, 0, sizeof(info->explore_queue));
3028        memset(&info->indegree_queue, 0, sizeof(info->indegree_queue));
3029        memset(&info->topo_queue, 0, sizeof(info->topo_queue));
3030
3031        switch (revs->sort_order) {
3032        default: /* REV_SORT_IN_GRAPH_ORDER */
3033                info->topo_queue.compare = NULL;
3034                break;
3035        case REV_SORT_BY_COMMIT_DATE:
3036                info->topo_queue.compare = compare_commits_by_commit_date;
3037                break;
3038        case REV_SORT_BY_AUTHOR_DATE:
3039                init_author_date_slab(&info->author_date);
3040                info->topo_queue.compare = compare_commits_by_author_date;
3041                info->topo_queue.cb_data = &info->author_date;
3042                break;
3043        }
3044
3045        info->explore_queue.compare = compare_commits_by_gen_then_commit_date;
3046        info->indegree_queue.compare = compare_commits_by_gen_then_commit_date;
3047
3048        info->min_generation = GENERATION_NUMBER_INFINITY;
3049        for (list = revs->commits; list; list = list->next) {
3050                struct commit *c = list->item;
3051
3052                if (parse_commit_gently(c, 1))
3053                        continue;
3054
3055                test_flag_and_insert(&info->explore_queue, c, TOPO_WALK_EXPLORED);
3056                test_flag_and_insert(&info->indegree_queue, c, TOPO_WALK_INDEGREE);
3057
3058                if (c->generation < info->min_generation)
3059                        info->min_generation = c->generation;
3060
3061                *(indegree_slab_at(&info->indegree, c)) = 1;
3062
3063                if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3064                        record_author_date(&info->author_date, c);
3065        }
3066        compute_indegrees_to_depth(revs, info->min_generation);
3067
3068        for (list = revs->commits; list; list = list->next) {
3069                struct commit *c = list->item;
3070
3071                if (*(indegree_slab_at(&info->indegree, c)) == 1)
3072                        prio_queue_put(&info->topo_queue, c);
3073        }
3074
3075        /*
3076         * This is unfortunate; the initial tips need to be shown
3077         * in the order given from the revision traversal machinery.
3078         */
3079        if (revs->sort_order == REV_SORT_IN_GRAPH_ORDER)
3080                prio_queue_reverse(&info->topo_queue);
3081}
3082
3083static struct commit *next_topo_commit(struct rev_info *revs)
3084{
3085        struct commit *c;
3086        struct topo_walk_info *info = revs->topo_walk_info;
3087
3088        /* pop next off of topo_queue */
3089        c = prio_queue_get(&info->topo_queue);
3090
3091        if (c)
3092                *(indegree_slab_at(&info->indegree, c)) = 0;
3093
3094        return c;
3095}
3096
3097static void expand_topo_walk(struct rev_info *revs, struct commit *commit)
3098{
3099        struct commit_list *p;
3100        struct topo_walk_info *info = revs->topo_walk_info;
3101        if (process_parents(revs, commit, NULL, NULL) < 0) {
3102                if (!revs->ignore_missing_links)
3103                        die("Failed to traverse parents of commit %s",
3104                            oid_to_hex(&commit->object.oid));
3105        }
3106
3107        for (p = commit->parents; p; p = p->next) {
3108                struct commit *parent = p->item;
3109                int *pi;
3110
3111                if (parse_commit_gently(parent, 1) < 0)
3112                        continue;
3113
3114                if (parent->generation < info->min_generation) {
3115                        info->min_generation = parent->generation;
3116                        compute_indegrees_to_depth(revs, info->min_generation);
3117                }
3118
3119                pi = indegree_slab_at(&info->indegree, parent);
3120
3121                (*pi)--;
3122                if (*pi == 1)
3123                        prio_queue_put(&info->topo_queue, parent);
3124
3125                if (revs->first_parent_only)
3126                        return;
3127        }
3128}
3129
3130int prepare_revision_walk(struct rev_info *revs)
3131{
3132        int i;
3133        struct object_array old_pending;
3134        struct commit_list **next = &revs->commits;
3135
3136        memcpy(&old_pending, &revs->pending, sizeof(old_pending));
3137        revs->pending.nr = 0;
3138        revs->pending.alloc = 0;
3139        revs->pending.objects = NULL;
3140        for (i = 0; i < old_pending.nr; i++) {
3141                struct object_array_entry *e = old_pending.objects + i;
3142                struct commit *commit = handle_commit(revs, e);
3143                if (commit) {
3144                        if (!(commit->object.flags & SEEN)) {
3145                                commit->object.flags |= SEEN;
3146                                next = commit_list_append(commit, next);
3147                        }
3148                }
3149        }
3150        object_array_clear(&old_pending);
3151
3152        /* Signal whether we need per-parent treesame decoration */
3153        if (revs->simplify_merges ||
3154            (revs->limited && limiting_can_increase_treesame(revs)))
3155                revs->treesame.name = "treesame";
3156
3157        if (revs->exclude_promisor_objects) {
3158                for_each_packed_object(mark_uninteresting, revs,
3159                                       FOR_EACH_OBJECT_PROMISOR_ONLY);
3160        }
3161
3162        if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
3163                commit_list_sort_by_date(&revs->commits);
3164        if (revs->no_walk)
3165                return 0;
3166        if (revs->limited) {
3167                if (limit_list(revs) < 0)
3168                        return -1;
3169                if (revs->topo_order)
3170                        sort_in_topological_order(&revs->commits, revs->sort_order);
3171        } else if (revs->topo_order)
3172                init_topo_walk(revs);
3173        if (revs->line_level_traverse)
3174                line_log_filter(revs);
3175        if (revs->simplify_merges)
3176                simplify_merges(revs);
3177        if (revs->children.name)
3178                set_children(revs);
3179        return 0;
3180}
3181
3182static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
3183{
3184        struct commit_list *cache = NULL;
3185
3186        for (;;) {
3187                struct commit *p = *pp;
3188                if (!revs->limited)
3189                        if (process_parents(revs, p, &revs->commits, &cache) < 0)
3190                                return rewrite_one_error;
3191                if (p->object.flags & UNINTERESTING)
3192                        return rewrite_one_ok;
3193                if (!(p->object.flags & TREESAME))
3194                        return rewrite_one_ok;
3195                if (!p->parents)
3196                        return rewrite_one_noparents;
3197                if ((p = one_relevant_parent(revs, p->parents)) == NULL)
3198                        return rewrite_one_ok;
3199                *pp = p;
3200        }
3201}
3202
3203int rewrite_parents(struct rev_info *revs, struct commit *commit,
3204        rewrite_parent_fn_t rewrite_parent)
3205{
3206        struct commit_list **pp = &commit->parents;
3207        while (*pp) {
3208                struct commit_list *parent = *pp;
3209                switch (rewrite_parent(revs, &parent->item)) {
3210                case rewrite_one_ok:
3211                        break;
3212                case rewrite_one_noparents:
3213                        *pp = parent->next;
3214                        continue;
3215                case rewrite_one_error:
3216                        return -1;
3217                }
3218                pp = &parent->next;
3219        }
3220        remove_duplicate_parents(revs, commit);
3221        return 0;
3222}
3223
3224static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
3225{
3226        char *person, *endp;
3227        size_t len, namelen, maillen;
3228        const char *name;
3229        const char *mail;
3230        struct ident_split ident;
3231
3232        person = strstr(buf->buf, what);
3233        if (!person)
3234                return 0;
3235
3236        person += strlen(what);
3237        endp = strchr(person, '\n');
3238        if (!endp)
3239                return 0;
3240
3241        len = endp - person;
3242
3243        if (split_ident_line(&ident, person, len))
3244                return 0;
3245
3246        mail = ident.mail_begin;
3247        maillen = ident.mail_end - ident.mail_begin;
3248        name = ident.name_begin;
3249        namelen = ident.name_end - ident.name_begin;
3250
3251        if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
3252                struct strbuf namemail = STRBUF_INIT;
3253
3254                strbuf_addf(&namemail, "%.*s <%.*s>",
3255                            (int)namelen, name, (int)maillen, mail);
3256
3257                strbuf_splice(buf, ident.name_begin - buf->buf,
3258                              ident.mail_end - ident.name_begin + 1,
3259                              namemail.buf, namemail.len);
3260
3261                strbuf_release(&namemail);
3262
3263                return 1;
3264        }
3265
3266        return 0;
3267}
3268
3269static int commit_match(struct commit *commit, struct rev_info *opt)
3270{
3271        int retval;
3272        const char *encoding;
3273        const char *message;
3274        struct strbuf buf = STRBUF_INIT;
3275
3276        if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
3277                return 1;
3278
3279        /* Prepend "fake" headers as needed */
3280        if (opt->grep_filter.use_reflog_filter) {
3281                strbuf_addstr(&buf, "reflog ");
3282                get_reflog_message(&buf, opt->reflog_info);
3283                strbuf_addch(&buf, '\n');
3284        }
3285
3286        /*
3287         * We grep in the user's output encoding, under the assumption that it
3288         * is the encoding they are most likely to write their grep pattern
3289         * for. In addition, it means we will match the "notes" encoding below,
3290         * so we will not end up with a buffer that has two different encodings
3291         * in it.
3292         */
3293        encoding = get_log_output_encoding();
3294        message = logmsg_reencode(commit, NULL, encoding);
3295
3296        /* Copy the commit to temporary if we are using "fake" headers */
3297        if (buf.len)
3298                strbuf_addstr(&buf, message);
3299
3300        if (opt->grep_filter.header_list && opt->mailmap) {
3301                if (!buf.len)
3302                        strbuf_addstr(&buf, message);
3303
3304                commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
3305                commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
3306        }
3307
3308        /* Append "fake" message parts as needed */
3309        if (opt->show_notes) {
3310                if (!buf.len)
3311                        strbuf_addstr(&buf, message);
3312                format_display_notes(&commit->object.oid, &buf, encoding, 1);
3313        }
3314
3315        /*
3316         * Find either in the original commit message, or in the temporary.
3317         * Note that we cast away the constness of "message" here. It is
3318         * const because it may come from the cached commit buffer. That's OK,
3319         * because we know that it is modifiable heap memory, and that while
3320         * grep_buffer may modify it for speed, it will restore any
3321         * changes before returning.
3322         */
3323        if (buf.len)
3324                retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
3325        else
3326                retval = grep_buffer(&opt->grep_filter,
3327                                     (char *)message, strlen(message));
3328        strbuf_release(&buf);
3329        unuse_commit_buffer(commit, message);
3330        return opt->invert_grep ? !retval : retval;
3331}
3332
3333static inline int want_ancestry(const struct rev_info *revs)
3334{
3335        return (revs->rewrite_parents || revs->children.name);
3336}
3337
3338/*
3339 * Return a timestamp to be used for --since/--until comparisons for this
3340 * commit, based on the revision options.
3341 */
3342static timestamp_t comparison_date(const struct rev_info *revs,
3343                                   struct commit *commit)
3344{
3345        return revs->reflog_info ?
3346                get_reflog_timestamp(revs->reflog_info) :
3347                commit->date;
3348}
3349
3350enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
3351{
3352        if (commit->object.flags & SHOWN)
3353                return commit_ignore;
3354        if (revs->unpacked && has_object_pack(&commit->object.oid))
3355                return commit_ignore;
3356        if (commit->object.flags & UNINTERESTING)
3357                return commit_ignore;
3358        if (revs->min_age != -1 &&
3359            comparison_date(revs, commit) > revs->min_age)
3360                        return commit_ignore;
3361        if (revs->min_parents || (revs->max_parents >= 0)) {
3362                int n = commit_list_count(commit->parents);
3363                if ((n < revs->min_parents) ||
3364                    ((revs->max_parents >= 0) && (n > revs->max_parents)))
3365                        return commit_ignore;
3366        }
3367        if (!commit_match(commit, revs))
3368                return commit_ignore;
3369        if (revs->prune && revs->dense) {
3370                /* Commit without changes? */
3371                if (commit->object.flags & TREESAME) {
3372                        int n;
3373                        struct commit_list *p;
3374                        /* drop merges unless we want parenthood */
3375                        if (!want_ancestry(revs))
3376                                return commit_ignore;
3377                        /*
3378                         * If we want ancestry, then need to keep any merges
3379                         * between relevant commits to tie together topology.
3380                         * For consistency with TREESAME and simplification
3381                         * use "relevant" here rather than just INTERESTING,
3382                         * to treat bottom commit(s) as part of the topology.
3383                         */
3384                        for (n = 0, p = commit->parents; p; p = p->next)
3385                                if (relevant_commit(p->item))
3386                                        if (++n >= 2)
3387                                                return commit_show;
3388                        return commit_ignore;
3389                }
3390        }
3391        return commit_show;
3392}
3393
3394define_commit_slab(saved_parents, struct commit_list *);
3395
3396#define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3397
3398/*
3399 * You may only call save_parents() once per commit (this is checked
3400 * for non-root commits).
3401 */
3402static void save_parents(struct rev_info *revs, struct commit *commit)
3403{
3404        struct commit_list **pp;
3405
3406        if (!revs->saved_parents_slab) {
3407                revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
3408                init_saved_parents(revs->saved_parents_slab);
3409        }
3410
3411        pp = saved_parents_at(revs->saved_parents_slab, commit);
3412
3413        /*
3414         * When walking with reflogs, we may visit the same commit
3415         * several times: once for each appearance in the reflog.
3416         *
3417         * In this case, save_parents() will be called multiple times.
3418         * We want to keep only the first set of parents.  We need to
3419         * store a sentinel value for an empty (i.e., NULL) parent
3420         * list to distinguish it from a not-yet-saved list, however.
3421         */
3422        if (*pp)
3423                return;
3424        if (commit->parents)
3425                *pp = copy_commit_list(commit->parents);
3426        else
3427                *pp = EMPTY_PARENT_LIST;
3428}
3429
3430static void free_saved_parents(struct rev_info *revs)
3431{
3432        if (revs->saved_parents_slab)
3433                clear_saved_parents(revs->saved_parents_slab);
3434}
3435
3436struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
3437{
3438        struct commit_list *parents;
3439
3440        if (!revs->saved_parents_slab)
3441                return commit->parents;
3442
3443        parents = *saved_parents_at(revs->saved_parents_slab, commit);
3444        if (parents == EMPTY_PARENT_LIST)
3445                return NULL;
3446        return parents;
3447}
3448
3449enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
3450{
3451        enum commit_action action = get_commit_action(revs, commit);
3452
3453        if (action == commit_show &&
3454            revs->prune && revs->dense && want_ancestry(revs)) {
3455                /*
3456                 * --full-diff on simplified parents is no good: it
3457                 * will show spurious changes from the commits that
3458                 * were elided.  So we save the parents on the side
3459                 * when --full-diff is in effect.
3460                 */
3461                if (revs->full_diff)
3462                        save_parents(revs, commit);
3463                if (rewrite_parents(revs, commit, rewrite_one) < 0)
3464                        return commit_error;
3465        }
3466        return action;
3467}
3468
3469static void track_linear(struct rev_info *revs, struct commit *commit)
3470{
3471        if (revs->track_first_time) {
3472                revs->linear = 1;
3473                revs->track_first_time = 0;
3474        } else {
3475                struct commit_list *p;
3476                for (p = revs->previous_parents; p; p = p->next)
3477                        if (p->item == NULL || /* first commit */
3478                            oideq(&p->item->object.oid, &commit->object.oid))
3479                                break;
3480                revs->linear = p != NULL;
3481        }
3482        if (revs->reverse) {
3483                if (revs->linear)
3484                        commit->object.flags |= TRACK_LINEAR;
3485        }
3486        free_commit_list(revs->previous_parents);
3487        revs->previous_parents = copy_commit_list(commit->parents);
3488}
3489
3490static struct commit *get_revision_1(struct rev_info *revs)
3491{
3492        while (1) {
3493                struct commit *commit;
3494
3495                if (revs->reflog_info)
3496                        commit = next_reflog_entry(revs->reflog_info);
3497                else if (revs->topo_walk_info)
3498                        commit = next_topo_commit(revs);
3499                else
3500                        commit = pop_commit(&revs->commits);
3501
3502                if (!commit)
3503                        return NULL;
3504
3505                if (revs->reflog_info)
3506                        commit->object.flags &= ~(ADDED | SEEN | SHOWN);
3507
3508                /*
3509                 * If we haven't done the list limiting, we need to look at
3510                 * the parents here. We also need to do the date-based limiting
3511                 * that we'd otherwise have done in limit_list().
3512                 */
3513                if (!revs->limited) {
3514                        if (revs->max_age != -1 &&
3515                            comparison_date(revs, commit) < revs->max_age)
3516                                continue;
3517
3518                        if (revs->reflog_info)
3519                                try_to_simplify_commit(revs, commit);
3520                        else if (revs->topo_walk_info)
3521                                expand_topo_walk(revs, commit);
3522                        else if (process_parents(revs, commit, &revs->commits, NULL) < 0) {
3523                                if (!revs->ignore_missing_links)
3524                                        die("Failed to traverse parents of commit %s",
3525                                                oid_to_hex(&commit->object.oid));
3526                        }
3527                }
3528
3529                switch (simplify_commit(revs, commit)) {
3530                case commit_ignore:
3531                        continue;
3532                case commit_error:
3533                        die("Failed to simplify parents of commit %s",
3534                            oid_to_hex(&commit->object.oid));
3535                default:
3536                        if (revs->track_linear)
3537                                track_linear(revs, commit);
3538                        return commit;
3539                }
3540        }
3541}
3542
3543/*
3544 * Return true for entries that have not yet been shown.  (This is an
3545 * object_array_each_func_t.)
3546 */
3547static int entry_unshown(struct object_array_entry *entry, void *cb_data_unused)
3548{
3549        return !(entry->item->flags & SHOWN);
3550}
3551
3552/*
3553 * If array is on the verge of a realloc, garbage-collect any entries
3554 * that have already been shown to try to free up some space.
3555 */
3556static void gc_boundary(struct object_array *array)
3557{
3558        if (array->nr == array->alloc)
3559                object_array_filter(array, entry_unshown, NULL);
3560}
3561
3562static void create_boundary_commit_list(struct rev_info *revs)
3563{
3564        unsigned i;
3565        struct commit *c;
3566        struct object_array *array = &revs->boundary_commits;
3567        struct object_array_entry *objects = array->objects;
3568
3569        /*
3570         * If revs->commits is non-NULL at this point, an error occurred in
3571         * get_revision_1().  Ignore the error and continue printing the
3572         * boundary commits anyway.  (This is what the code has always
3573         * done.)
3574         */
3575        if (revs->commits) {
3576                free_commit_list(revs->commits);
3577                revs->commits = NULL;
3578        }
3579
3580        /*
3581         * Put all of the actual boundary commits from revs->boundary_commits
3582         * into revs->commits
3583         */
3584        for (i = 0; i < array->nr; i++) {
3585                c = (struct commit *)(objects[i].item);
3586                if (!c)
3587                        continue;
3588                if (!(c->object.flags & CHILD_SHOWN))
3589                        continue;
3590                if (c->object.flags & (SHOWN | BOUNDARY))
3591                        continue;
3592                c->object.flags |= BOUNDARY;
3593                commit_list_insert(c, &revs->commits);
3594        }
3595
3596        /*
3597         * If revs->topo_order is set, sort the boundary commits
3598         * in topological order
3599         */
3600        sort_in_topological_order(&revs->commits, revs->sort_order);
3601}
3602
3603static struct commit *get_revision_internal(struct rev_info *revs)
3604{
3605        struct commit *c = NULL;
3606        struct commit_list *l;
3607
3608        if (revs->boundary == 2) {
3609                /*
3610                 * All of the normal commits have already been returned,
3611                 * and we are now returning boundary commits.
3612                 * create_boundary_commit_list() has populated
3613                 * revs->commits with the remaining commits to return.
3614                 */
3615                c = pop_commit(&revs->commits);
3616                if (c)
3617                        c->object.flags |= SHOWN;
3618                return c;
3619        }
3620
3621        /*
3622         * If our max_count counter has reached zero, then we are done. We
3623         * don't simply return NULL because we still might need to show
3624         * boundary commits. But we want to avoid calling get_revision_1, which
3625         * might do a considerable amount of work finding the next commit only
3626         * for us to throw it away.
3627         *
3628         * If it is non-zero, then either we don't have a max_count at all
3629         * (-1), or it is still counting, in which case we decrement.
3630         */
3631        if (revs->max_count) {
3632                c = get_revision_1(revs);
3633                if (c) {
3634                        while (revs->skip_count > 0) {
3635                                revs->skip_count--;
3636                                c = get_revision_1(revs);
3637                                if (!c)
3638                                        break;
3639                        }
3640                }
3641
3642                if (revs->max_count > 0)
3643                        revs->max_count--;
3644        }
3645
3646        if (c)
3647                c->object.flags |= SHOWN;
3648
3649        if (!revs->boundary)
3650                return c;
3651
3652        if (!c) {
3653                /*
3654                 * get_revision_1() runs out the commits, and
3655                 * we are done computing the boundaries.
3656                 * switch to boundary commits output mode.
3657                 */
3658                revs->boundary = 2;
3659
3660                /*
3661                 * Update revs->commits to contain the list of
3662                 * boundary commits.
3663                 */
3664                create_boundary_commit_list(revs);
3665
3666                return get_revision_internal(revs);
3667        }
3668
3669        /*
3670         * boundary commits are the commits that are parents of the
3671         * ones we got from get_revision_1() but they themselves are
3672         * not returned from get_revision_1().  Before returning
3673         * 'c', we need to mark its parents that they could be boundaries.
3674         */
3675
3676        for (l = c->parents; l; l = l->next) {
3677                struct object *p;
3678                p = &(l->item->object);
3679                if (p->flags & (CHILD_SHOWN | SHOWN))
3680                        continue;
3681                p->flags |= CHILD_SHOWN;
3682                gc_boundary(&revs->boundary_commits);
3683                add_object_array(p, NULL, &revs->boundary_commits);
3684        }
3685
3686        return c;
3687}
3688
3689struct commit *get_revision(struct rev_info *revs)
3690{
3691        struct commit *c;
3692        struct commit_list *reversed;
3693
3694        if (revs->reverse) {
3695                reversed = NULL;
3696                while ((c = get_revision_internal(revs)))
3697                        commit_list_insert(c, &reversed);
3698                revs->commits = reversed;
3699                revs->reverse = 0;
3700                revs->reverse_output_stage = 1;
3701        }
3702
3703        if (revs->reverse_output_stage) {
3704                c = pop_commit(&revs->commits);
3705                if (revs->track_linear)
3706                        revs->linear = !!(c && c->object.flags & TRACK_LINEAR);
3707                return c;
3708        }
3709
3710        c = get_revision_internal(revs);
3711        if (c && revs->graph)
3712                graph_update(revs->graph, c);
3713        if (!c) {
3714                free_saved_parents(revs);
3715                if (revs->previous_parents) {
3716                        free_commit_list(revs->previous_parents);
3717                        revs->previous_parents = NULL;
3718                }
3719        }
3720        return c;
3721}
3722
3723char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
3724{
3725        if (commit->object.flags & BOUNDARY)
3726                return "-";
3727        else if (commit->object.flags & UNINTERESTING)
3728                return "^";
3729        else if (commit->object.flags & PATCHSAME)
3730                return "=";
3731        else if (!revs || revs->left_right) {
3732                if (commit->object.flags & SYMMETRIC_LEFT)
3733                        return "<";
3734                else
3735                        return ">";
3736        } else if (revs->graph)
3737                return "*";
3738        else if (revs->cherry_mark)
3739                return "+";
3740        return "";
3741}
3742
3743void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
3744{
3745        char *mark = get_revision_mark(revs, commit);
3746        if (!strlen(mark))
3747                return;
3748        fputs(mark, stdout);
3749        putchar(' ');
3750}