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