Merge branch 'ma/commit-graph-docs' into maint
[git.git] / revision.c
blobe411802ebec37604a693993cb5e9f2df18dae895
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"
28 volatile show_early_output_fn_t show_early_output;
30 static const char *term_bad;
31 static const char *term_good;
33 implement_shared_commit_slab(revision_sources, char *);
35 void show_object_with_name(FILE *out, struct object *obj, const char *name)
37 const char *p;
39 fprintf(out, "%s ", oid_to_hex(&obj->oid));
40 for (p = name; *p && *p != '\n'; p++)
41 fputc(*p, out);
42 fputc('\n', out);
45 static void mark_blob_uninteresting(struct blob *blob)
47 if (!blob)
48 return;
49 if (blob->object.flags & UNINTERESTING)
50 return;
51 blob->object.flags |= UNINTERESTING;
54 static void mark_tree_contents_uninteresting(struct tree *tree)
56 struct tree_desc desc;
57 struct name_entry entry;
59 if (parse_tree_gently(tree, 1) < 0)
60 return;
62 init_tree_desc(&desc, tree->buffer, tree->size);
63 while (tree_entry(&desc, &entry)) {
64 switch (object_type(entry.mode)) {
65 case OBJ_TREE:
66 mark_tree_uninteresting(lookup_tree(the_repository, entry.oid));
67 break;
68 case OBJ_BLOB:
69 mark_blob_uninteresting(lookup_blob(the_repository, entry.oid));
70 break;
71 default:
72 /* Subproject commit - not in this repository */
73 break;
78 * We don't care about the tree any more
79 * after it has been marked uninteresting.
81 free_tree_buffer(tree);
84 void mark_tree_uninteresting(struct tree *tree)
86 struct object *obj;
88 if (!tree)
89 return;
91 obj = &tree->object;
92 if (obj->flags & UNINTERESTING)
93 return;
94 obj->flags |= UNINTERESTING;
95 mark_tree_contents_uninteresting(tree);
98 struct commit_stack {
99 struct commit **items;
100 size_t nr, alloc;
102 #define COMMIT_STACK_INIT { NULL, 0, 0 }
104 static void commit_stack_push(struct commit_stack *stack, struct commit *commit)
106 ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
107 stack->items[stack->nr++] = commit;
110 static struct commit *commit_stack_pop(struct commit_stack *stack)
112 return stack->nr ? stack->items[--stack->nr] : NULL;
115 static void commit_stack_clear(struct commit_stack *stack)
117 FREE_AND_NULL(stack->items);
118 stack->nr = stack->alloc = 0;
121 static void mark_one_parent_uninteresting(struct commit *commit,
122 struct commit_stack *pending)
124 struct commit_list *l;
126 if (commit->object.flags & UNINTERESTING)
127 return;
128 commit->object.flags |= UNINTERESTING;
131 * Normally we haven't parsed the parent
132 * yet, so we won't have a parent of a parent
133 * here. However, it may turn out that we've
134 * reached this commit some other way (where it
135 * wasn't uninteresting), in which case we need
136 * to mark its parents recursively too..
138 for (l = commit->parents; l; l = l->next)
139 commit_stack_push(pending, l->item);
142 void mark_parents_uninteresting(struct commit *commit)
144 struct commit_stack pending = COMMIT_STACK_INIT;
145 struct commit_list *l;
147 for (l = commit->parents; l; l = l->next)
148 mark_one_parent_uninteresting(l->item, &pending);
150 while (pending.nr > 0)
151 mark_one_parent_uninteresting(commit_stack_pop(&pending),
152 &pending);
154 commit_stack_clear(&pending);
157 static void add_pending_object_with_path(struct rev_info *revs,
158 struct object *obj,
159 const char *name, unsigned mode,
160 const char *path)
162 if (!obj)
163 return;
164 if (revs->no_walk && (obj->flags & UNINTERESTING))
165 revs->no_walk = 0;
166 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
167 struct strbuf buf = STRBUF_INIT;
168 int len = interpret_branch_name(name, 0, &buf, 0);
170 if (0 < len && name[len] && buf.len)
171 strbuf_addstr(&buf, name + len);
172 add_reflog_for_walk(revs->reflog_info,
173 (struct commit *)obj,
174 buf.buf[0] ? buf.buf: name);
175 strbuf_release(&buf);
176 return; /* do not add the commit itself */
178 obj->flags |= USER_GIVEN;
179 add_object_array_with_path(obj, name, &revs->pending, mode, path);
182 static void add_pending_object_with_mode(struct rev_info *revs,
183 struct object *obj,
184 const char *name, unsigned mode)
186 add_pending_object_with_path(revs, obj, name, mode, NULL);
189 void add_pending_object(struct rev_info *revs,
190 struct object *obj, const char *name)
192 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
195 void add_head_to_pending(struct rev_info *revs)
197 struct object_id oid;
198 struct object *obj;
199 if (get_oid("HEAD", &oid))
200 return;
201 obj = parse_object(the_repository, &oid);
202 if (!obj)
203 return;
204 add_pending_object(revs, obj, "HEAD");
207 static struct object *get_reference(struct rev_info *revs, const char *name,
208 const struct object_id *oid,
209 unsigned int flags)
211 struct object *object;
213 object = parse_object(the_repository, oid);
214 if (!object) {
215 if (revs->ignore_missing)
216 return object;
217 if (revs->exclude_promisor_objects && is_promisor_object(oid))
218 return NULL;
219 die("bad object %s", name);
221 object->flags |= flags;
222 return object;
225 void add_pending_oid(struct rev_info *revs, const char *name,
226 const struct object_id *oid, unsigned int flags)
228 struct object *object = get_reference(revs, name, oid, flags);
229 add_pending_object(revs, object, name);
232 static struct commit *handle_commit(struct rev_info *revs,
233 struct object_array_entry *entry)
235 struct object *object = entry->item;
236 const char *name = entry->name;
237 const char *path = entry->path;
238 unsigned int mode = entry->mode;
239 unsigned long flags = object->flags;
242 * Tag object? Look what it points to..
244 while (object->type == OBJ_TAG) {
245 struct tag *tag = (struct tag *) object;
246 if (revs->tag_objects && !(flags & UNINTERESTING))
247 add_pending_object(revs, object, tag->tag);
248 if (!tag->tagged)
249 die("bad tag");
250 object = parse_object(the_repository, &tag->tagged->oid);
251 if (!object) {
252 if (revs->ignore_missing_links || (flags & UNINTERESTING))
253 return NULL;
254 if (revs->exclude_promisor_objects &&
255 is_promisor_object(&tag->tagged->oid))
256 return NULL;
257 die("bad object %s", oid_to_hex(&tag->tagged->oid));
259 object->flags |= flags;
261 * We'll handle the tagged object by looping or dropping
262 * through to the non-tag handlers below. Do not
263 * propagate path data from the tag's pending entry.
265 path = NULL;
266 mode = 0;
270 * Commit object? Just return it, we'll do all the complex
271 * reachability crud.
273 if (object->type == OBJ_COMMIT) {
274 struct commit *commit = (struct commit *)object;
276 if (parse_commit(commit) < 0)
277 die("unable to parse commit %s", name);
278 if (flags & UNINTERESTING) {
279 mark_parents_uninteresting(commit);
280 revs->limited = 1;
282 if (revs->sources) {
283 char **slot = revision_sources_at(revs->sources, commit);
285 if (!*slot)
286 *slot = xstrdup(name);
288 return commit;
292 * Tree object? Either mark it uninteresting, or add it
293 * to the list of objects to look at later..
295 if (object->type == OBJ_TREE) {
296 struct tree *tree = (struct tree *)object;
297 if (!revs->tree_objects)
298 return NULL;
299 if (flags & UNINTERESTING) {
300 mark_tree_contents_uninteresting(tree);
301 return NULL;
303 add_pending_object_with_path(revs, object, name, mode, path);
304 return NULL;
308 * Blob object? You know the drill by now..
310 if (object->type == OBJ_BLOB) {
311 if (!revs->blob_objects)
312 return NULL;
313 if (flags & UNINTERESTING)
314 return NULL;
315 add_pending_object_with_path(revs, object, name, mode, path);
316 return NULL;
318 die("%s is unknown object", name);
321 static int everybody_uninteresting(struct commit_list *orig,
322 struct commit **interesting_cache)
324 struct commit_list *list = orig;
326 if (*interesting_cache) {
327 struct commit *commit = *interesting_cache;
328 if (!(commit->object.flags & UNINTERESTING))
329 return 0;
332 while (list) {
333 struct commit *commit = list->item;
334 list = list->next;
335 if (commit->object.flags & UNINTERESTING)
336 continue;
338 *interesting_cache = commit;
339 return 0;
341 return 1;
345 * A definition of "relevant" commit that we can use to simplify limited graphs
346 * by eliminating side branches.
348 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
349 * in our list), or that is a specified BOTTOM commit. Then after computing
350 * a limited list, during processing we can generally ignore boundary merges
351 * coming from outside the graph, (ie from irrelevant parents), and treat
352 * those merges as if they were single-parent. TREESAME is defined to consider
353 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
354 * we don't care if we were !TREESAME to non-graph parents.
356 * Treating bottom commits as relevant ensures that a limited graph's
357 * connection to the actual bottom commit is not viewed as a side branch, but
358 * treated as part of the graph. For example:
360 * ....Z...A---X---o---o---B
361 * . /
362 * W---Y
364 * When computing "A..B", the A-X connection is at least as important as
365 * Y-X, despite A being flagged UNINTERESTING.
367 * And when computing --ancestry-path "A..B", the A-X connection is more
368 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
370 static inline int relevant_commit(struct commit *commit)
372 return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
376 * Return a single relevant commit from a parent list. If we are a TREESAME
377 * commit, and this selects one of our parents, then we can safely simplify to
378 * that parent.
380 static struct commit *one_relevant_parent(const struct rev_info *revs,
381 struct commit_list *orig)
383 struct commit_list *list = orig;
384 struct commit *relevant = NULL;
386 if (!orig)
387 return NULL;
390 * For 1-parent commits, or if first-parent-only, then return that
391 * first parent (even if not "relevant" by the above definition).
392 * TREESAME will have been set purely on that parent.
394 if (revs->first_parent_only || !orig->next)
395 return orig->item;
398 * For multi-parent commits, identify a sole relevant parent, if any.
399 * If we have only one relevant parent, then TREESAME will be set purely
400 * with regard to that parent, and we can simplify accordingly.
402 * If we have more than one relevant parent, or no relevant parents
403 * (and multiple irrelevant ones), then we can't select a parent here
404 * and return NULL.
406 while (list) {
407 struct commit *commit = list->item;
408 list = list->next;
409 if (relevant_commit(commit)) {
410 if (relevant)
411 return NULL;
412 relevant = commit;
415 return relevant;
419 * The goal is to get REV_TREE_NEW as the result only if the
420 * diff consists of all '+' (and no other changes), REV_TREE_OLD
421 * if the whole diff is removal of old data, and otherwise
422 * REV_TREE_DIFFERENT (of course if the trees are the same we
423 * want REV_TREE_SAME).
425 * The only time we care about the distinction is when
426 * remove_empty_trees is in effect, in which case we care only about
427 * whether the whole change is REV_TREE_NEW, or if there's another type
428 * of change. Which means we can stop the diff early in either of these
429 * cases:
431 * 1. We're not using remove_empty_trees at all.
433 * 2. We saw anything except REV_TREE_NEW.
435 static int tree_difference = REV_TREE_SAME;
437 static void file_add_remove(struct diff_options *options,
438 int addremove, unsigned mode,
439 const struct object_id *oid,
440 int oid_valid,
441 const char *fullpath, unsigned dirty_submodule)
443 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
444 struct rev_info *revs = options->change_fn_data;
446 tree_difference |= diff;
447 if (!revs->remove_empty_trees || tree_difference != REV_TREE_NEW)
448 options->flags.has_changes = 1;
451 static void file_change(struct diff_options *options,
452 unsigned old_mode, unsigned new_mode,
453 const struct object_id *old_oid,
454 const struct object_id *new_oid,
455 int old_oid_valid, int new_oid_valid,
456 const char *fullpath,
457 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
459 tree_difference = REV_TREE_DIFFERENT;
460 options->flags.has_changes = 1;
463 static int rev_compare_tree(struct rev_info *revs,
464 struct commit *parent, struct commit *commit)
466 struct tree *t1 = get_commit_tree(parent);
467 struct tree *t2 = get_commit_tree(commit);
469 if (!t1)
470 return REV_TREE_NEW;
471 if (!t2)
472 return REV_TREE_OLD;
474 if (revs->simplify_by_decoration) {
476 * If we are simplifying by decoration, then the commit
477 * is worth showing if it has a tag pointing at it.
479 if (get_name_decoration(&commit->object))
480 return REV_TREE_DIFFERENT;
482 * A commit that is not pointed by a tag is uninteresting
483 * if we are not limited by path. This means that you will
484 * see the usual "commits that touch the paths" plus any
485 * tagged commit by specifying both --simplify-by-decoration
486 * and pathspec.
488 if (!revs->prune_data.nr)
489 return REV_TREE_SAME;
492 tree_difference = REV_TREE_SAME;
493 revs->pruning.flags.has_changes = 0;
494 if (diff_tree_oid(&t1->object.oid, &t2->object.oid, "",
495 &revs->pruning) < 0)
496 return REV_TREE_DIFFERENT;
497 return tree_difference;
500 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
502 int retval;
503 struct tree *t1 = get_commit_tree(commit);
505 if (!t1)
506 return 0;
508 tree_difference = REV_TREE_SAME;
509 revs->pruning.flags.has_changes = 0;
510 retval = diff_tree_oid(NULL, &t1->object.oid, "", &revs->pruning);
512 return retval >= 0 && (tree_difference == REV_TREE_SAME);
515 struct treesame_state {
516 unsigned int nparents;
517 unsigned char treesame[FLEX_ARRAY];
520 static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
522 unsigned n = commit_list_count(commit->parents);
523 struct treesame_state *st = xcalloc(1, st_add(sizeof(*st), n));
524 st->nparents = n;
525 add_decoration(&revs->treesame, &commit->object, st);
526 return st;
530 * Must be called immediately after removing the nth_parent from a commit's
531 * parent list, if we are maintaining the per-parent treesame[] decoration.
532 * This does not recalculate the master TREESAME flag - update_treesame()
533 * should be called to update it after a sequence of treesame[] modifications
534 * that may have affected it.
536 static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
538 struct treesame_state *st;
539 int old_same;
541 if (!commit->parents) {
543 * Have just removed the only parent from a non-merge.
544 * Different handling, as we lack decoration.
546 if (nth_parent != 0)
547 die("compact_treesame %u", nth_parent);
548 old_same = !!(commit->object.flags & TREESAME);
549 if (rev_same_tree_as_empty(revs, commit))
550 commit->object.flags |= TREESAME;
551 else
552 commit->object.flags &= ~TREESAME;
553 return old_same;
556 st = lookup_decoration(&revs->treesame, &commit->object);
557 if (!st || nth_parent >= st->nparents)
558 die("compact_treesame %u", nth_parent);
560 old_same = st->treesame[nth_parent];
561 memmove(st->treesame + nth_parent,
562 st->treesame + nth_parent + 1,
563 st->nparents - nth_parent - 1);
566 * If we've just become a non-merge commit, update TREESAME
567 * immediately, and remove the no-longer-needed decoration.
568 * If still a merge, defer update until update_treesame().
570 if (--st->nparents == 1) {
571 if (commit->parents->next)
572 die("compact_treesame parents mismatch");
573 if (st->treesame[0] && revs->dense)
574 commit->object.flags |= TREESAME;
575 else
576 commit->object.flags &= ~TREESAME;
577 free(add_decoration(&revs->treesame, &commit->object, NULL));
580 return old_same;
583 static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
585 if (commit->parents && commit->parents->next) {
586 unsigned n;
587 struct treesame_state *st;
588 struct commit_list *p;
589 unsigned relevant_parents;
590 unsigned relevant_change, irrelevant_change;
592 st = lookup_decoration(&revs->treesame, &commit->object);
593 if (!st)
594 die("update_treesame %s", oid_to_hex(&commit->object.oid));
595 relevant_parents = 0;
596 relevant_change = irrelevant_change = 0;
597 for (p = commit->parents, n = 0; p; n++, p = p->next) {
598 if (relevant_commit(p->item)) {
599 relevant_change |= !st->treesame[n];
600 relevant_parents++;
601 } else
602 irrelevant_change |= !st->treesame[n];
604 if (relevant_parents ? relevant_change : irrelevant_change)
605 commit->object.flags &= ~TREESAME;
606 else
607 commit->object.flags |= TREESAME;
610 return commit->object.flags & TREESAME;
613 static inline int limiting_can_increase_treesame(const struct rev_info *revs)
616 * TREESAME is irrelevant unless prune && dense;
617 * if simplify_history is set, we can't have a mixture of TREESAME and
618 * !TREESAME INTERESTING parents (and we don't have treesame[]
619 * decoration anyway);
620 * if first_parent_only is set, then the TREESAME flag is locked
621 * against the first parent (and again we lack treesame[] decoration).
623 return revs->prune && revs->dense &&
624 !revs->simplify_history &&
625 !revs->first_parent_only;
628 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
630 struct commit_list **pp, *parent;
631 struct treesame_state *ts = NULL;
632 int relevant_change = 0, irrelevant_change = 0;
633 int relevant_parents, nth_parent;
636 * If we don't do pruning, everything is interesting
638 if (!revs->prune)
639 return;
641 if (!get_commit_tree(commit))
642 return;
644 if (!commit->parents) {
645 if (rev_same_tree_as_empty(revs, commit))
646 commit->object.flags |= TREESAME;
647 return;
651 * Normal non-merge commit? If we don't want to make the
652 * history dense, we consider it always to be a change..
654 if (!revs->dense && !commit->parents->next)
655 return;
657 for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
658 (parent = *pp) != NULL;
659 pp = &parent->next, nth_parent++) {
660 struct commit *p = parent->item;
661 if (relevant_commit(p))
662 relevant_parents++;
664 if (nth_parent == 1) {
666 * This our second loop iteration - so we now know
667 * we're dealing with a merge.
669 * Do not compare with later parents when we care only about
670 * the first parent chain, in order to avoid derailing the
671 * traversal to follow a side branch that brought everything
672 * in the path we are limited to by the pathspec.
674 if (revs->first_parent_only)
675 break;
677 * If this will remain a potentially-simplifiable
678 * merge, remember per-parent treesame if needed.
679 * Initialise the array with the comparison from our
680 * first iteration.
682 if (revs->treesame.name &&
683 !revs->simplify_history &&
684 !(commit->object.flags & UNINTERESTING)) {
685 ts = initialise_treesame(revs, commit);
686 if (!(irrelevant_change || relevant_change))
687 ts->treesame[0] = 1;
690 if (parse_commit(p) < 0)
691 die("cannot simplify commit %s (because of %s)",
692 oid_to_hex(&commit->object.oid),
693 oid_to_hex(&p->object.oid));
694 switch (rev_compare_tree(revs, p, commit)) {
695 case REV_TREE_SAME:
696 if (!revs->simplify_history || !relevant_commit(p)) {
697 /* Even if a merge with an uninteresting
698 * side branch brought the entire change
699 * we are interested in, we do not want
700 * to lose the other branches of this
701 * merge, so we just keep going.
703 if (ts)
704 ts->treesame[nth_parent] = 1;
705 continue;
707 parent->next = NULL;
708 commit->parents = parent;
709 commit->object.flags |= TREESAME;
710 return;
712 case REV_TREE_NEW:
713 if (revs->remove_empty_trees &&
714 rev_same_tree_as_empty(revs, p)) {
715 /* We are adding all the specified
716 * paths from this parent, so the
717 * history beyond this parent is not
718 * interesting. Remove its parents
719 * (they are grandparents for us).
720 * IOW, we pretend this parent is a
721 * "root" commit.
723 if (parse_commit(p) < 0)
724 die("cannot simplify commit %s (invalid %s)",
725 oid_to_hex(&commit->object.oid),
726 oid_to_hex(&p->object.oid));
727 p->parents = NULL;
729 /* fallthrough */
730 case REV_TREE_OLD:
731 case REV_TREE_DIFFERENT:
732 if (relevant_commit(p))
733 relevant_change = 1;
734 else
735 irrelevant_change = 1;
736 continue;
738 die("bad tree compare for commit %s", oid_to_hex(&commit->object.oid));
742 * TREESAME is straightforward for single-parent commits. For merge
743 * commits, it is most useful to define it so that "irrelevant"
744 * parents cannot make us !TREESAME - if we have any relevant
745 * parents, then we only consider TREESAMEness with respect to them,
746 * allowing irrelevant merges from uninteresting branches to be
747 * simplified away. Only if we have only irrelevant parents do we
748 * base TREESAME on them. Note that this logic is replicated in
749 * update_treesame, which should be kept in sync.
751 if (relevant_parents ? !relevant_change : !irrelevant_change)
752 commit->object.flags |= TREESAME;
755 static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
756 struct commit_list *cached_base, struct commit_list **cache)
758 struct commit_list *new_entry;
760 if (cached_base && p->date < cached_base->item->date)
761 new_entry = commit_list_insert_by_date(p, &cached_base->next);
762 else
763 new_entry = commit_list_insert_by_date(p, head);
765 if (cache && (!*cache || p->date < (*cache)->item->date))
766 *cache = new_entry;
769 static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
770 struct commit_list **list, struct commit_list **cache_ptr)
772 struct commit_list *parent = commit->parents;
773 unsigned left_flag;
774 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
776 if (commit->object.flags & ADDED)
777 return 0;
778 commit->object.flags |= ADDED;
780 if (revs->include_check &&
781 !revs->include_check(commit, revs->include_check_data))
782 return 0;
785 * If the commit is uninteresting, don't try to
786 * prune parents - we want the maximal uninteresting
787 * set.
789 * Normally we haven't parsed the parent
790 * yet, so we won't have a parent of a parent
791 * here. However, it may turn out that we've
792 * reached this commit some other way (where it
793 * wasn't uninteresting), in which case we need
794 * to mark its parents recursively too..
796 if (commit->object.flags & UNINTERESTING) {
797 while (parent) {
798 struct commit *p = parent->item;
799 parent = parent->next;
800 if (p)
801 p->object.flags |= UNINTERESTING;
802 if (parse_commit_gently(p, 1) < 0)
803 continue;
804 if (p->parents)
805 mark_parents_uninteresting(p);
806 if (p->object.flags & SEEN)
807 continue;
808 p->object.flags |= SEEN;
809 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
811 return 0;
815 * Ok, the commit wasn't uninteresting. Try to
816 * simplify the commit history and find the parent
817 * that has no differences in the path set if one exists.
819 try_to_simplify_commit(revs, commit);
821 if (revs->no_walk)
822 return 0;
824 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
826 for (parent = commit->parents; parent; parent = parent->next) {
827 struct commit *p = parent->item;
828 int gently = revs->ignore_missing_links ||
829 revs->exclude_promisor_objects;
830 if (parse_commit_gently(p, gently) < 0) {
831 if (revs->exclude_promisor_objects &&
832 is_promisor_object(&p->object.oid)) {
833 if (revs->first_parent_only)
834 break;
835 continue;
837 return -1;
839 if (revs->sources) {
840 char **slot = revision_sources_at(revs->sources, p);
842 if (!*slot)
843 *slot = *revision_sources_at(revs->sources, commit);
845 p->object.flags |= left_flag;
846 if (!(p->object.flags & SEEN)) {
847 p->object.flags |= SEEN;
848 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
850 if (revs->first_parent_only)
851 break;
853 return 0;
856 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
858 struct commit_list *p;
859 int left_count = 0, right_count = 0;
860 int left_first;
861 struct patch_ids ids;
862 unsigned cherry_flag;
864 /* First count the commits on the left and on the right */
865 for (p = list; p; p = p->next) {
866 struct commit *commit = p->item;
867 unsigned flags = commit->object.flags;
868 if (flags & BOUNDARY)
870 else if (flags & SYMMETRIC_LEFT)
871 left_count++;
872 else
873 right_count++;
876 if (!left_count || !right_count)
877 return;
879 left_first = left_count < right_count;
880 init_patch_ids(&ids);
881 ids.diffopts.pathspec = revs->diffopt.pathspec;
883 /* Compute patch-ids for one side */
884 for (p = list; p; p = p->next) {
885 struct commit *commit = p->item;
886 unsigned flags = commit->object.flags;
888 if (flags & BOUNDARY)
889 continue;
891 * If we have fewer left, left_first is set and we omit
892 * commits on the right branch in this loop. If we have
893 * fewer right, we skip the left ones.
895 if (left_first != !!(flags & SYMMETRIC_LEFT))
896 continue;
897 add_commit_patch_id(commit, &ids);
900 /* either cherry_mark or cherry_pick are true */
901 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
903 /* Check the other side */
904 for (p = list; p; p = p->next) {
905 struct commit *commit = p->item;
906 struct patch_id *id;
907 unsigned flags = commit->object.flags;
909 if (flags & BOUNDARY)
910 continue;
912 * If we have fewer left, left_first is set and we omit
913 * commits on the left branch in this loop.
915 if (left_first == !!(flags & SYMMETRIC_LEFT))
916 continue;
919 * Have we seen the same patch id?
921 id = has_commit_patch_id(commit, &ids);
922 if (!id)
923 continue;
925 commit->object.flags |= cherry_flag;
926 id->commit->object.flags |= cherry_flag;
929 free_patch_ids(&ids);
932 /* How many extra uninteresting commits we want to see.. */
933 #define SLOP 5
935 static int still_interesting(struct commit_list *src, timestamp_t date, int slop,
936 struct commit **interesting_cache)
939 * No source list at all? We're definitely done..
941 if (!src)
942 return 0;
945 * Does the destination list contain entries with a date
946 * before the source list? Definitely _not_ done.
948 if (date <= src->item->date)
949 return SLOP;
952 * Does the source list still have interesting commits in
953 * it? Definitely not done..
955 if (!everybody_uninteresting(src, interesting_cache))
956 return SLOP;
958 /* Ok, we're closing in.. */
959 return slop-1;
963 * "rev-list --ancestry-path A..B" computes commits that are ancestors
964 * of B but not ancestors of A but further limits the result to those
965 * that are descendants of A. This takes the list of bottom commits and
966 * the result of "A..B" without --ancestry-path, and limits the latter
967 * further to the ones that can reach one of the commits in "bottom".
969 static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
971 struct commit_list *p;
972 struct commit_list *rlist = NULL;
973 int made_progress;
976 * Reverse the list so that it will be likely that we would
977 * process parents before children.
979 for (p = list; p; p = p->next)
980 commit_list_insert(p->item, &rlist);
982 for (p = bottom; p; p = p->next)
983 p->item->object.flags |= TMP_MARK;
986 * Mark the ones that can reach bottom commits in "list",
987 * in a bottom-up fashion.
989 do {
990 made_progress = 0;
991 for (p = rlist; p; p = p->next) {
992 struct commit *c = p->item;
993 struct commit_list *parents;
994 if (c->object.flags & (TMP_MARK | UNINTERESTING))
995 continue;
996 for (parents = c->parents;
997 parents;
998 parents = parents->next) {
999 if (!(parents->item->object.flags & TMP_MARK))
1000 continue;
1001 c->object.flags |= TMP_MARK;
1002 made_progress = 1;
1003 break;
1006 } while (made_progress);
1009 * NEEDSWORK: decide if we want to remove parents that are
1010 * not marked with TMP_MARK from commit->parents for commits
1011 * in the resulting list. We may not want to do that, though.
1015 * The ones that are not marked with TMP_MARK are uninteresting
1017 for (p = list; p; p = p->next) {
1018 struct commit *c = p->item;
1019 if (c->object.flags & TMP_MARK)
1020 continue;
1021 c->object.flags |= UNINTERESTING;
1024 /* We are done with the TMP_MARK */
1025 for (p = list; p; p = p->next)
1026 p->item->object.flags &= ~TMP_MARK;
1027 for (p = bottom; p; p = p->next)
1028 p->item->object.flags &= ~TMP_MARK;
1029 free_commit_list(rlist);
1033 * Before walking the history, keep the set of "negative" refs the
1034 * caller has asked to exclude.
1036 * This is used to compute "rev-list --ancestry-path A..B", as we need
1037 * to filter the result of "A..B" further to the ones that can actually
1038 * reach A.
1040 static struct commit_list *collect_bottom_commits(struct commit_list *list)
1042 struct commit_list *elem, *bottom = NULL;
1043 for (elem = list; elem; elem = elem->next)
1044 if (elem->item->object.flags & BOTTOM)
1045 commit_list_insert(elem->item, &bottom);
1046 return bottom;
1049 /* Assumes either left_only or right_only is set */
1050 static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1052 struct commit_list *p;
1054 for (p = list; p; p = p->next) {
1055 struct commit *commit = p->item;
1057 if (revs->right_only) {
1058 if (commit->object.flags & SYMMETRIC_LEFT)
1059 commit->object.flags |= SHOWN;
1060 } else /* revs->left_only is set */
1061 if (!(commit->object.flags & SYMMETRIC_LEFT))
1062 commit->object.flags |= SHOWN;
1066 static int limit_list(struct rev_info *revs)
1068 int slop = SLOP;
1069 timestamp_t date = TIME_MAX;
1070 struct commit_list *list = revs->commits;
1071 struct commit_list *newlist = NULL;
1072 struct commit_list **p = &newlist;
1073 struct commit_list *bottom = NULL;
1074 struct commit *interesting_cache = NULL;
1076 if (revs->ancestry_path) {
1077 bottom = collect_bottom_commits(list);
1078 if (!bottom)
1079 die("--ancestry-path given but there are no bottom commits");
1082 while (list) {
1083 struct commit *commit = pop_commit(&list);
1084 struct object *obj = &commit->object;
1085 show_early_output_fn_t show;
1087 if (commit == interesting_cache)
1088 interesting_cache = NULL;
1090 if (revs->max_age != -1 && (commit->date < revs->max_age))
1091 obj->flags |= UNINTERESTING;
1092 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
1093 return -1;
1094 if (obj->flags & UNINTERESTING) {
1095 mark_parents_uninteresting(commit);
1096 slop = still_interesting(list, date, slop, &interesting_cache);
1097 if (slop)
1098 continue;
1099 break;
1101 if (revs->min_age != -1 && (commit->date > revs->min_age))
1102 continue;
1103 date = commit->date;
1104 p = &commit_list_insert(commit, p)->next;
1106 show = show_early_output;
1107 if (!show)
1108 continue;
1110 show(revs, newlist);
1111 show_early_output = NULL;
1113 if (revs->cherry_pick || revs->cherry_mark)
1114 cherry_pick_list(newlist, revs);
1116 if (revs->left_only || revs->right_only)
1117 limit_left_right(newlist, revs);
1119 if (bottom) {
1120 limit_to_ancestry(bottom, newlist);
1121 free_commit_list(bottom);
1125 * Check if any commits have become TREESAME by some of their parents
1126 * becoming UNINTERESTING.
1128 if (limiting_can_increase_treesame(revs))
1129 for (list = newlist; list; list = list->next) {
1130 struct commit *c = list->item;
1131 if (c->object.flags & (UNINTERESTING | TREESAME))
1132 continue;
1133 update_treesame(revs, c);
1136 revs->commits = newlist;
1137 return 0;
1141 * Add an entry to refs->cmdline with the specified information.
1142 * *name is copied.
1144 static void add_rev_cmdline(struct rev_info *revs,
1145 struct object *item,
1146 const char *name,
1147 int whence,
1148 unsigned flags)
1150 struct rev_cmdline_info *info = &revs->cmdline;
1151 unsigned int nr = info->nr;
1153 ALLOC_GROW(info->rev, nr + 1, info->alloc);
1154 info->rev[nr].item = item;
1155 info->rev[nr].name = xstrdup(name);
1156 info->rev[nr].whence = whence;
1157 info->rev[nr].flags = flags;
1158 info->nr++;
1161 static void add_rev_cmdline_list(struct rev_info *revs,
1162 struct commit_list *commit_list,
1163 int whence,
1164 unsigned flags)
1166 while (commit_list) {
1167 struct object *object = &commit_list->item->object;
1168 add_rev_cmdline(revs, object, oid_to_hex(&object->oid),
1169 whence, flags);
1170 commit_list = commit_list->next;
1174 struct all_refs_cb {
1175 int all_flags;
1176 int warned_bad_reflog;
1177 struct rev_info *all_revs;
1178 const char *name_for_errormsg;
1179 struct ref_store *refs;
1182 int ref_excluded(struct string_list *ref_excludes, const char *path)
1184 struct string_list_item *item;
1186 if (!ref_excludes)
1187 return 0;
1188 for_each_string_list_item(item, ref_excludes) {
1189 if (!wildmatch(item->string, path, 0))
1190 return 1;
1192 return 0;
1195 static int handle_one_ref(const char *path, const struct object_id *oid,
1196 int flag, void *cb_data)
1198 struct all_refs_cb *cb = cb_data;
1199 struct object *object;
1201 if (ref_excluded(cb->all_revs->ref_excludes, path))
1202 return 0;
1204 object = get_reference(cb->all_revs, path, oid, cb->all_flags);
1205 add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1206 add_pending_oid(cb->all_revs, path, oid, cb->all_flags);
1207 return 0;
1210 static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1211 unsigned flags)
1213 cb->all_revs = revs;
1214 cb->all_flags = flags;
1215 revs->rev_input_given = 1;
1216 cb->refs = NULL;
1219 void clear_ref_exclusion(struct string_list **ref_excludes_p)
1221 if (*ref_excludes_p) {
1222 string_list_clear(*ref_excludes_p, 0);
1223 free(*ref_excludes_p);
1225 *ref_excludes_p = NULL;
1228 void add_ref_exclusion(struct string_list **ref_excludes_p, const char *exclude)
1230 if (!*ref_excludes_p) {
1231 *ref_excludes_p = xcalloc(1, sizeof(**ref_excludes_p));
1232 (*ref_excludes_p)->strdup_strings = 1;
1234 string_list_append(*ref_excludes_p, exclude);
1237 static void handle_refs(struct ref_store *refs,
1238 struct rev_info *revs, unsigned flags,
1239 int (*for_each)(struct ref_store *, each_ref_fn, void *))
1241 struct all_refs_cb cb;
1243 if (!refs) {
1244 /* this could happen with uninitialized submodules */
1245 return;
1248 init_all_refs_cb(&cb, revs, flags);
1249 for_each(refs, handle_one_ref, &cb);
1252 static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
1254 struct all_refs_cb *cb = cb_data;
1255 if (!is_null_oid(oid)) {
1256 struct object *o = parse_object(the_repository, oid);
1257 if (o) {
1258 o->flags |= cb->all_flags;
1259 /* ??? CMDLINEFLAGS ??? */
1260 add_pending_object(cb->all_revs, o, "");
1262 else if (!cb->warned_bad_reflog) {
1263 warning("reflog of '%s' references pruned commits",
1264 cb->name_for_errormsg);
1265 cb->warned_bad_reflog = 1;
1270 static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
1271 const char *email, timestamp_t timestamp, int tz,
1272 const char *message, void *cb_data)
1274 handle_one_reflog_commit(ooid, cb_data);
1275 handle_one_reflog_commit(noid, cb_data);
1276 return 0;
1279 static int handle_one_reflog(const char *path, const struct object_id *oid,
1280 int flag, void *cb_data)
1282 struct all_refs_cb *cb = cb_data;
1283 cb->warned_bad_reflog = 0;
1284 cb->name_for_errormsg = path;
1285 refs_for_each_reflog_ent(cb->refs, path,
1286 handle_one_reflog_ent, cb_data);
1287 return 0;
1290 static void add_other_reflogs_to_pending(struct all_refs_cb *cb)
1292 struct worktree **worktrees, **p;
1294 worktrees = get_worktrees(0);
1295 for (p = worktrees; *p; p++) {
1296 struct worktree *wt = *p;
1298 if (wt->is_current)
1299 continue;
1301 cb->refs = get_worktree_ref_store(wt);
1302 refs_for_each_reflog(cb->refs,
1303 handle_one_reflog,
1304 cb);
1306 free_worktrees(worktrees);
1309 void add_reflogs_to_pending(struct rev_info *revs, unsigned flags)
1311 struct all_refs_cb cb;
1313 cb.all_revs = revs;
1314 cb.all_flags = flags;
1315 cb.refs = get_main_ref_store(the_repository);
1316 for_each_reflog(handle_one_reflog, &cb);
1318 if (!revs->single_worktree)
1319 add_other_reflogs_to_pending(&cb);
1322 static void add_cache_tree(struct cache_tree *it, struct rev_info *revs,
1323 struct strbuf *path)
1325 size_t baselen = path->len;
1326 int i;
1328 if (it->entry_count >= 0) {
1329 struct tree *tree = lookup_tree(the_repository, &it->oid);
1330 add_pending_object_with_path(revs, &tree->object, "",
1331 040000, path->buf);
1334 for (i = 0; i < it->subtree_nr; i++) {
1335 struct cache_tree_sub *sub = it->down[i];
1336 strbuf_addf(path, "%s%s", baselen ? "/" : "", sub->name);
1337 add_cache_tree(sub->cache_tree, revs, path);
1338 strbuf_setlen(path, baselen);
1343 static void do_add_index_objects_to_pending(struct rev_info *revs,
1344 struct index_state *istate)
1346 int i;
1348 for (i = 0; i < istate->cache_nr; i++) {
1349 struct cache_entry *ce = istate->cache[i];
1350 struct blob *blob;
1352 if (S_ISGITLINK(ce->ce_mode))
1353 continue;
1355 blob = lookup_blob(the_repository, &ce->oid);
1356 if (!blob)
1357 die("unable to add index blob to traversal");
1358 add_pending_object_with_path(revs, &blob->object, "",
1359 ce->ce_mode, ce->name);
1362 if (istate->cache_tree) {
1363 struct strbuf path = STRBUF_INIT;
1364 add_cache_tree(istate->cache_tree, revs, &path);
1365 strbuf_release(&path);
1369 void add_index_objects_to_pending(struct rev_info *revs, unsigned int flags)
1371 struct worktree **worktrees, **p;
1373 read_cache();
1374 do_add_index_objects_to_pending(revs, &the_index);
1376 if (revs->single_worktree)
1377 return;
1379 worktrees = get_worktrees(0);
1380 for (p = worktrees; *p; p++) {
1381 struct worktree *wt = *p;
1382 struct index_state istate = { NULL };
1384 if (wt->is_current)
1385 continue; /* current index already taken care of */
1387 if (read_index_from(&istate,
1388 worktree_git_path(wt, "index"),
1389 get_worktree_git_dir(wt)) > 0)
1390 do_add_index_objects_to_pending(revs, &istate);
1391 discard_index(&istate);
1393 free_worktrees(worktrees);
1396 static int add_parents_only(struct rev_info *revs, const char *arg_, int flags,
1397 int exclude_parent)
1399 struct object_id oid;
1400 struct object *it;
1401 struct commit *commit;
1402 struct commit_list *parents;
1403 int parent_number;
1404 const char *arg = arg_;
1406 if (*arg == '^') {
1407 flags ^= UNINTERESTING | BOTTOM;
1408 arg++;
1410 if (get_oid_committish(arg, &oid))
1411 return 0;
1412 while (1) {
1413 it = get_reference(revs, arg, &oid, 0);
1414 if (!it && revs->ignore_missing)
1415 return 0;
1416 if (it->type != OBJ_TAG)
1417 break;
1418 if (!((struct tag*)it)->tagged)
1419 return 0;
1420 oidcpy(&oid, &((struct tag*)it)->tagged->oid);
1422 if (it->type != OBJ_COMMIT)
1423 return 0;
1424 commit = (struct commit *)it;
1425 if (exclude_parent &&
1426 exclude_parent > commit_list_count(commit->parents))
1427 return 0;
1428 for (parents = commit->parents, parent_number = 1;
1429 parents;
1430 parents = parents->next, parent_number++) {
1431 if (exclude_parent && parent_number != exclude_parent)
1432 continue;
1434 it = &parents->item->object;
1435 it->flags |= flags;
1436 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1437 add_pending_object(revs, it, arg);
1439 return 1;
1442 void init_revisions(struct rev_info *revs, const char *prefix)
1444 memset(revs, 0, sizeof(*revs));
1446 revs->abbrev = DEFAULT_ABBREV;
1447 revs->ignore_merges = 1;
1448 revs->simplify_history = 1;
1449 revs->pruning.flags.recursive = 1;
1450 revs->pruning.flags.quick = 1;
1451 revs->pruning.add_remove = file_add_remove;
1452 revs->pruning.change = file_change;
1453 revs->pruning.change_fn_data = revs;
1454 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1455 revs->dense = 1;
1456 revs->prefix = prefix;
1457 revs->max_age = -1;
1458 revs->min_age = -1;
1459 revs->skip_count = -1;
1460 revs->max_count = -1;
1461 revs->max_parents = -1;
1462 revs->expand_tabs_in_log = -1;
1464 revs->commit_format = CMIT_FMT_DEFAULT;
1465 revs->expand_tabs_in_log_default = 8;
1467 init_grep_defaults();
1468 grep_init(&revs->grep_filter, prefix);
1469 revs->grep_filter.status_only = 1;
1471 diff_setup(&revs->diffopt);
1472 if (prefix && !revs->diffopt.prefix) {
1473 revs->diffopt.prefix = prefix;
1474 revs->diffopt.prefix_length = strlen(prefix);
1477 revs->notes_opt.use_default_notes = -1;
1480 static void add_pending_commit_list(struct rev_info *revs,
1481 struct commit_list *commit_list,
1482 unsigned int flags)
1484 while (commit_list) {
1485 struct object *object = &commit_list->item->object;
1486 object->flags |= flags;
1487 add_pending_object(revs, object, oid_to_hex(&object->oid));
1488 commit_list = commit_list->next;
1492 static void prepare_show_merge(struct rev_info *revs)
1494 struct commit_list *bases;
1495 struct commit *head, *other;
1496 struct object_id oid;
1497 const char **prune = NULL;
1498 int i, prune_num = 1; /* counting terminating NULL */
1500 if (get_oid("HEAD", &oid))
1501 die("--merge without HEAD?");
1502 head = lookup_commit_or_die(&oid, "HEAD");
1503 if (get_oid("MERGE_HEAD", &oid))
1504 die("--merge without MERGE_HEAD?");
1505 other = lookup_commit_or_die(&oid, "MERGE_HEAD");
1506 add_pending_object(revs, &head->object, "HEAD");
1507 add_pending_object(revs, &other->object, "MERGE_HEAD");
1508 bases = get_merge_bases(head, other);
1509 add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
1510 add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
1511 free_commit_list(bases);
1512 head->object.flags |= SYMMETRIC_LEFT;
1514 if (!active_nr)
1515 read_cache();
1516 for (i = 0; i < active_nr; i++) {
1517 const struct cache_entry *ce = active_cache[i];
1518 if (!ce_stage(ce))
1519 continue;
1520 if (ce_path_match(&the_index, ce, &revs->prune_data, NULL)) {
1521 prune_num++;
1522 REALLOC_ARRAY(prune, prune_num);
1523 prune[prune_num-2] = ce->name;
1524 prune[prune_num-1] = NULL;
1526 while ((i+1 < active_nr) &&
1527 ce_same_name(ce, active_cache[i+1]))
1528 i++;
1530 clear_pathspec(&revs->prune_data);
1531 parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
1532 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
1533 revs->limited = 1;
1536 static int dotdot_missing(const char *arg, char *dotdot,
1537 struct rev_info *revs, int symmetric)
1539 if (revs->ignore_missing)
1540 return 0;
1541 /* de-munge so we report the full argument */
1542 *dotdot = '.';
1543 die(symmetric
1544 ? "Invalid symmetric difference expression %s"
1545 : "Invalid revision range %s", arg);
1548 static int handle_dotdot_1(const char *arg, char *dotdot,
1549 struct rev_info *revs, int flags,
1550 int cant_be_filename,
1551 struct object_context *a_oc,
1552 struct object_context *b_oc)
1554 const char *a_name, *b_name;
1555 struct object_id a_oid, b_oid;
1556 struct object *a_obj, *b_obj;
1557 unsigned int a_flags, b_flags;
1558 int symmetric = 0;
1559 unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
1560 unsigned int oc_flags = GET_OID_COMMITTISH | GET_OID_RECORD_PATH;
1562 a_name = arg;
1563 if (!*a_name)
1564 a_name = "HEAD";
1566 b_name = dotdot + 2;
1567 if (*b_name == '.') {
1568 symmetric = 1;
1569 b_name++;
1571 if (!*b_name)
1572 b_name = "HEAD";
1574 if (get_oid_with_context(a_name, oc_flags, &a_oid, a_oc) ||
1575 get_oid_with_context(b_name, oc_flags, &b_oid, b_oc))
1576 return -1;
1578 if (!cant_be_filename) {
1579 *dotdot = '.';
1580 verify_non_filename(revs->prefix, arg);
1581 *dotdot = '\0';
1584 a_obj = parse_object(the_repository, &a_oid);
1585 b_obj = parse_object(the_repository, &b_oid);
1586 if (!a_obj || !b_obj)
1587 return dotdot_missing(arg, dotdot, revs, symmetric);
1589 if (!symmetric) {
1590 /* just A..B */
1591 b_flags = flags;
1592 a_flags = flags_exclude;
1593 } else {
1594 /* A...B -- find merge bases between the two */
1595 struct commit *a, *b;
1596 struct commit_list *exclude;
1598 a = lookup_commit_reference(the_repository, &a_obj->oid);
1599 b = lookup_commit_reference(the_repository, &b_obj->oid);
1600 if (!a || !b)
1601 return dotdot_missing(arg, dotdot, revs, symmetric);
1603 exclude = get_merge_bases(a, b);
1604 add_rev_cmdline_list(revs, exclude, REV_CMD_MERGE_BASE,
1605 flags_exclude);
1606 add_pending_commit_list(revs, exclude, flags_exclude);
1607 free_commit_list(exclude);
1609 b_flags = flags;
1610 a_flags = flags | SYMMETRIC_LEFT;
1613 a_obj->flags |= a_flags;
1614 b_obj->flags |= b_flags;
1615 add_rev_cmdline(revs, a_obj, a_name, REV_CMD_LEFT, a_flags);
1616 add_rev_cmdline(revs, b_obj, b_name, REV_CMD_RIGHT, b_flags);
1617 add_pending_object_with_path(revs, a_obj, a_name, a_oc->mode, a_oc->path);
1618 add_pending_object_with_path(revs, b_obj, b_name, b_oc->mode, b_oc->path);
1619 return 0;
1622 static int handle_dotdot(const char *arg,
1623 struct rev_info *revs, int flags,
1624 int cant_be_filename)
1626 struct object_context a_oc, b_oc;
1627 char *dotdot = strstr(arg, "..");
1628 int ret;
1630 if (!dotdot)
1631 return -1;
1633 memset(&a_oc, 0, sizeof(a_oc));
1634 memset(&b_oc, 0, sizeof(b_oc));
1636 *dotdot = '\0';
1637 ret = handle_dotdot_1(arg, dotdot, revs, flags, cant_be_filename,
1638 &a_oc, &b_oc);
1639 *dotdot = '.';
1641 free(a_oc.path);
1642 free(b_oc.path);
1644 return ret;
1647 int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
1649 struct object_context oc;
1650 char *mark;
1651 struct object *object;
1652 struct object_id oid;
1653 int local_flags;
1654 const char *arg = arg_;
1655 int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
1656 unsigned get_sha1_flags = GET_OID_RECORD_PATH;
1658 flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
1660 if (!cant_be_filename && !strcmp(arg, "..")) {
1662 * Just ".."? That is not a range but the
1663 * pathspec for the parent directory.
1665 return -1;
1668 if (!handle_dotdot(arg, revs, flags, revarg_opt))
1669 return 0;
1671 mark = strstr(arg, "^@");
1672 if (mark && !mark[2]) {
1673 *mark = 0;
1674 if (add_parents_only(revs, arg, flags, 0))
1675 return 0;
1676 *mark = '^';
1678 mark = strstr(arg, "^!");
1679 if (mark && !mark[2]) {
1680 *mark = 0;
1681 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), 0))
1682 *mark = '^';
1684 mark = strstr(arg, "^-");
1685 if (mark) {
1686 int exclude_parent = 1;
1688 if (mark[2]) {
1689 char *end;
1690 exclude_parent = strtoul(mark + 2, &end, 10);
1691 if (*end != '\0' || !exclude_parent)
1692 return -1;
1695 *mark = 0;
1696 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), exclude_parent))
1697 *mark = '^';
1700 local_flags = 0;
1701 if (*arg == '^') {
1702 local_flags = UNINTERESTING | BOTTOM;
1703 arg++;
1706 if (revarg_opt & REVARG_COMMITTISH)
1707 get_sha1_flags |= GET_OID_COMMITTISH;
1709 if (get_oid_with_context(arg, get_sha1_flags, &oid, &oc))
1710 return revs->ignore_missing ? 0 : -1;
1711 if (!cant_be_filename)
1712 verify_non_filename(revs->prefix, arg);
1713 object = get_reference(revs, arg, &oid, flags ^ local_flags);
1714 add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1715 add_pending_object_with_path(revs, object, arg, oc.mode, oc.path);
1716 free(oc.path);
1717 return 0;
1720 static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1721 struct argv_array *prune)
1723 while (strbuf_getline(sb, stdin) != EOF)
1724 argv_array_push(prune, sb->buf);
1727 static void read_revisions_from_stdin(struct rev_info *revs,
1728 struct argv_array *prune)
1730 struct strbuf sb;
1731 int seen_dashdash = 0;
1732 int save_warning;
1734 save_warning = warn_on_object_refname_ambiguity;
1735 warn_on_object_refname_ambiguity = 0;
1737 strbuf_init(&sb, 1000);
1738 while (strbuf_getline(&sb, stdin) != EOF) {
1739 int len = sb.len;
1740 if (!len)
1741 break;
1742 if (sb.buf[0] == '-') {
1743 if (len == 2 && sb.buf[1] == '-') {
1744 seen_dashdash = 1;
1745 break;
1747 die("options not supported in --stdin mode");
1749 if (handle_revision_arg(sb.buf, revs, 0,
1750 REVARG_CANNOT_BE_FILENAME))
1751 die("bad revision '%s'", sb.buf);
1753 if (seen_dashdash)
1754 read_pathspec_from_stdin(revs, &sb, prune);
1756 strbuf_release(&sb);
1757 warn_on_object_refname_ambiguity = save_warning;
1760 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1762 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1765 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1767 append_header_grep_pattern(&revs->grep_filter, field, pattern);
1770 static void add_message_grep(struct rev_info *revs, const char *pattern)
1772 add_grep(revs, pattern, GREP_PATTERN_BODY);
1775 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1776 int *unkc, const char **unkv)
1778 const char *arg = argv[0];
1779 const char *optarg;
1780 int argcount;
1781 const unsigned hexsz = the_hash_algo->hexsz;
1783 /* pseudo revision arguments */
1784 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1785 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1786 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1787 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1788 !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
1789 !strcmp(arg, "--indexed-objects") ||
1790 starts_with(arg, "--exclude=") ||
1791 starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
1792 starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
1794 unkv[(*unkc)++] = arg;
1795 return 1;
1798 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1799 revs->max_count = atoi(optarg);
1800 revs->no_walk = 0;
1801 return argcount;
1802 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1803 revs->skip_count = atoi(optarg);
1804 return argcount;
1805 } else if ((*arg == '-') && isdigit(arg[1])) {
1806 /* accept -<digit>, like traditional "head" */
1807 if (strtol_i(arg + 1, 10, &revs->max_count) < 0 ||
1808 revs->max_count < 0)
1809 die("'%s': not a non-negative integer", arg + 1);
1810 revs->no_walk = 0;
1811 } else if (!strcmp(arg, "-n")) {
1812 if (argc <= 1)
1813 return error("-n requires an argument");
1814 revs->max_count = atoi(argv[1]);
1815 revs->no_walk = 0;
1816 return 2;
1817 } else if (skip_prefix(arg, "-n", &optarg)) {
1818 revs->max_count = atoi(optarg);
1819 revs->no_walk = 0;
1820 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1821 revs->max_age = atoi(optarg);
1822 return argcount;
1823 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1824 revs->max_age = approxidate(optarg);
1825 return argcount;
1826 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1827 revs->max_age = approxidate(optarg);
1828 return argcount;
1829 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1830 revs->min_age = atoi(optarg);
1831 return argcount;
1832 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1833 revs->min_age = approxidate(optarg);
1834 return argcount;
1835 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1836 revs->min_age = approxidate(optarg);
1837 return argcount;
1838 } else if (!strcmp(arg, "--first-parent")) {
1839 revs->first_parent_only = 1;
1840 } else if (!strcmp(arg, "--ancestry-path")) {
1841 revs->ancestry_path = 1;
1842 revs->simplify_history = 0;
1843 revs->limited = 1;
1844 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1845 init_reflog_walk(&revs->reflog_info);
1846 } else if (!strcmp(arg, "--default")) {
1847 if (argc <= 1)
1848 return error("bad --default argument");
1849 revs->def = argv[1];
1850 return 2;
1851 } else if (!strcmp(arg, "--merge")) {
1852 revs->show_merge = 1;
1853 } else if (!strcmp(arg, "--topo-order")) {
1854 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1855 revs->topo_order = 1;
1856 } else if (!strcmp(arg, "--simplify-merges")) {
1857 revs->simplify_merges = 1;
1858 revs->topo_order = 1;
1859 revs->rewrite_parents = 1;
1860 revs->simplify_history = 0;
1861 revs->limited = 1;
1862 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1863 revs->simplify_merges = 1;
1864 revs->topo_order = 1;
1865 revs->rewrite_parents = 1;
1866 revs->simplify_history = 0;
1867 revs->simplify_by_decoration = 1;
1868 revs->limited = 1;
1869 revs->prune = 1;
1870 load_ref_decorations(NULL, DECORATE_SHORT_REFS);
1871 } else if (!strcmp(arg, "--date-order")) {
1872 revs->sort_order = REV_SORT_BY_COMMIT_DATE;
1873 revs->topo_order = 1;
1874 } else if (!strcmp(arg, "--author-date-order")) {
1875 revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
1876 revs->topo_order = 1;
1877 } else if (!strcmp(arg, "--early-output")) {
1878 revs->early_output = 100;
1879 revs->topo_order = 1;
1880 } else if (skip_prefix(arg, "--early-output=", &optarg)) {
1881 if (strtoul_ui(optarg, 10, &revs->early_output) < 0)
1882 die("'%s': not a non-negative integer", optarg);
1883 revs->topo_order = 1;
1884 } else if (!strcmp(arg, "--parents")) {
1885 revs->rewrite_parents = 1;
1886 revs->print_parents = 1;
1887 } else if (!strcmp(arg, "--dense")) {
1888 revs->dense = 1;
1889 } else if (!strcmp(arg, "--sparse")) {
1890 revs->dense = 0;
1891 } else if (!strcmp(arg, "--in-commit-order")) {
1892 revs->tree_blobs_in_commit_order = 1;
1893 } else if (!strcmp(arg, "--remove-empty")) {
1894 revs->remove_empty_trees = 1;
1895 } else if (!strcmp(arg, "--merges")) {
1896 revs->min_parents = 2;
1897 } else if (!strcmp(arg, "--no-merges")) {
1898 revs->max_parents = 1;
1899 } else if (skip_prefix(arg, "--min-parents=", &optarg)) {
1900 revs->min_parents = atoi(optarg);
1901 } else if (!strcmp(arg, "--no-min-parents")) {
1902 revs->min_parents = 0;
1903 } else if (skip_prefix(arg, "--max-parents=", &optarg)) {
1904 revs->max_parents = atoi(optarg);
1905 } else if (!strcmp(arg, "--no-max-parents")) {
1906 revs->max_parents = -1;
1907 } else if (!strcmp(arg, "--boundary")) {
1908 revs->boundary = 1;
1909 } else if (!strcmp(arg, "--left-right")) {
1910 revs->left_right = 1;
1911 } else if (!strcmp(arg, "--left-only")) {
1912 if (revs->right_only)
1913 die("--left-only is incompatible with --right-only"
1914 " or --cherry");
1915 revs->left_only = 1;
1916 } else if (!strcmp(arg, "--right-only")) {
1917 if (revs->left_only)
1918 die("--right-only is incompatible with --left-only");
1919 revs->right_only = 1;
1920 } else if (!strcmp(arg, "--cherry")) {
1921 if (revs->left_only)
1922 die("--cherry is incompatible with --left-only");
1923 revs->cherry_mark = 1;
1924 revs->right_only = 1;
1925 revs->max_parents = 1;
1926 revs->limited = 1;
1927 } else if (!strcmp(arg, "--count")) {
1928 revs->count = 1;
1929 } else if (!strcmp(arg, "--cherry-mark")) {
1930 if (revs->cherry_pick)
1931 die("--cherry-mark is incompatible with --cherry-pick");
1932 revs->cherry_mark = 1;
1933 revs->limited = 1; /* needs limit_list() */
1934 } else if (!strcmp(arg, "--cherry-pick")) {
1935 if (revs->cherry_mark)
1936 die("--cherry-pick is incompatible with --cherry-mark");
1937 revs->cherry_pick = 1;
1938 revs->limited = 1;
1939 } else if (!strcmp(arg, "--objects")) {
1940 revs->tag_objects = 1;
1941 revs->tree_objects = 1;
1942 revs->blob_objects = 1;
1943 } else if (!strcmp(arg, "--objects-edge")) {
1944 revs->tag_objects = 1;
1945 revs->tree_objects = 1;
1946 revs->blob_objects = 1;
1947 revs->edge_hint = 1;
1948 } else if (!strcmp(arg, "--objects-edge-aggressive")) {
1949 revs->tag_objects = 1;
1950 revs->tree_objects = 1;
1951 revs->blob_objects = 1;
1952 revs->edge_hint = 1;
1953 revs->edge_hint_aggressive = 1;
1954 } else if (!strcmp(arg, "--verify-objects")) {
1955 revs->tag_objects = 1;
1956 revs->tree_objects = 1;
1957 revs->blob_objects = 1;
1958 revs->verify_objects = 1;
1959 } else if (!strcmp(arg, "--unpacked")) {
1960 revs->unpacked = 1;
1961 } else if (starts_with(arg, "--unpacked=")) {
1962 die("--unpacked=<packfile> no longer supported.");
1963 } else if (!strcmp(arg, "-r")) {
1964 revs->diff = 1;
1965 revs->diffopt.flags.recursive = 1;
1966 } else if (!strcmp(arg, "-t")) {
1967 revs->diff = 1;
1968 revs->diffopt.flags.recursive = 1;
1969 revs->diffopt.flags.tree_in_recursive = 1;
1970 } else if (!strcmp(arg, "-m")) {
1971 revs->ignore_merges = 0;
1972 } else if (!strcmp(arg, "-c")) {
1973 revs->diff = 1;
1974 revs->dense_combined_merges = 0;
1975 revs->combine_merges = 1;
1976 } else if (!strcmp(arg, "--cc")) {
1977 revs->diff = 1;
1978 revs->dense_combined_merges = 1;
1979 revs->combine_merges = 1;
1980 } else if (!strcmp(arg, "-v")) {
1981 revs->verbose_header = 1;
1982 } else if (!strcmp(arg, "--pretty")) {
1983 revs->verbose_header = 1;
1984 revs->pretty_given = 1;
1985 get_commit_format(NULL, revs);
1986 } else if (skip_prefix(arg, "--pretty=", &optarg) ||
1987 skip_prefix(arg, "--format=", &optarg)) {
1989 * Detached form ("--pretty X" as opposed to "--pretty=X")
1990 * not allowed, since the argument is optional.
1992 revs->verbose_header = 1;
1993 revs->pretty_given = 1;
1994 get_commit_format(optarg, revs);
1995 } else if (!strcmp(arg, "--expand-tabs")) {
1996 revs->expand_tabs_in_log = 8;
1997 } else if (!strcmp(arg, "--no-expand-tabs")) {
1998 revs->expand_tabs_in_log = 0;
1999 } else if (skip_prefix(arg, "--expand-tabs=", &arg)) {
2000 int val;
2001 if (strtol_i(arg, 10, &val) < 0 || val < 0)
2002 die("'%s': not a non-negative integer", arg);
2003 revs->expand_tabs_in_log = val;
2004 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
2005 revs->show_notes = 1;
2006 revs->show_notes_given = 1;
2007 revs->notes_opt.use_default_notes = 1;
2008 } else if (!strcmp(arg, "--show-signature")) {
2009 revs->show_signature = 1;
2010 } else if (!strcmp(arg, "--no-show-signature")) {
2011 revs->show_signature = 0;
2012 } else if (!strcmp(arg, "--show-linear-break")) {
2013 revs->break_bar = " ..........";
2014 revs->track_linear = 1;
2015 revs->track_first_time = 1;
2016 } else if (skip_prefix(arg, "--show-linear-break=", &optarg)) {
2017 revs->break_bar = xstrdup(optarg);
2018 revs->track_linear = 1;
2019 revs->track_first_time = 1;
2020 } else if (skip_prefix(arg, "--show-notes=", &optarg) ||
2021 skip_prefix(arg, "--notes=", &optarg)) {
2022 struct strbuf buf = STRBUF_INIT;
2023 revs->show_notes = 1;
2024 revs->show_notes_given = 1;
2025 if (starts_with(arg, "--show-notes=") &&
2026 revs->notes_opt.use_default_notes < 0)
2027 revs->notes_opt.use_default_notes = 1;
2028 strbuf_addstr(&buf, optarg);
2029 expand_notes_ref(&buf);
2030 string_list_append(&revs->notes_opt.extra_notes_refs,
2031 strbuf_detach(&buf, NULL));
2032 } else if (!strcmp(arg, "--no-notes")) {
2033 revs->show_notes = 0;
2034 revs->show_notes_given = 1;
2035 revs->notes_opt.use_default_notes = -1;
2036 /* we have been strdup'ing ourselves, so trick
2037 * string_list into free()ing strings */
2038 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
2039 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
2040 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
2041 } else if (!strcmp(arg, "--standard-notes")) {
2042 revs->show_notes_given = 1;
2043 revs->notes_opt.use_default_notes = 1;
2044 } else if (!strcmp(arg, "--no-standard-notes")) {
2045 revs->notes_opt.use_default_notes = 0;
2046 } else if (!strcmp(arg, "--oneline")) {
2047 revs->verbose_header = 1;
2048 get_commit_format("oneline", revs);
2049 revs->pretty_given = 1;
2050 revs->abbrev_commit = 1;
2051 } else if (!strcmp(arg, "--graph")) {
2052 revs->topo_order = 1;
2053 revs->rewrite_parents = 1;
2054 revs->graph = graph_init(revs);
2055 } else if (!strcmp(arg, "--root")) {
2056 revs->show_root_diff = 1;
2057 } else if (!strcmp(arg, "--no-commit-id")) {
2058 revs->no_commit_id = 1;
2059 } else if (!strcmp(arg, "--always")) {
2060 revs->always_show_header = 1;
2061 } else if (!strcmp(arg, "--no-abbrev")) {
2062 revs->abbrev = 0;
2063 } else if (!strcmp(arg, "--abbrev")) {
2064 revs->abbrev = DEFAULT_ABBREV;
2065 } else if (skip_prefix(arg, "--abbrev=", &optarg)) {
2066 revs->abbrev = strtoul(optarg, NULL, 10);
2067 if (revs->abbrev < MINIMUM_ABBREV)
2068 revs->abbrev = MINIMUM_ABBREV;
2069 else if (revs->abbrev > hexsz)
2070 revs->abbrev = hexsz;
2071 } else if (!strcmp(arg, "--abbrev-commit")) {
2072 revs->abbrev_commit = 1;
2073 revs->abbrev_commit_given = 1;
2074 } else if (!strcmp(arg, "--no-abbrev-commit")) {
2075 revs->abbrev_commit = 0;
2076 } else if (!strcmp(arg, "--full-diff")) {
2077 revs->diff = 1;
2078 revs->full_diff = 1;
2079 } else if (!strcmp(arg, "--full-history")) {
2080 revs->simplify_history = 0;
2081 } else if (!strcmp(arg, "--relative-date")) {
2082 revs->date_mode.type = DATE_RELATIVE;
2083 revs->date_mode_explicit = 1;
2084 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
2085 parse_date_format(optarg, &revs->date_mode);
2086 revs->date_mode_explicit = 1;
2087 return argcount;
2088 } else if (!strcmp(arg, "--log-size")) {
2089 revs->show_log_size = 1;
2092 * Grepping the commit log
2094 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
2095 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
2096 return argcount;
2097 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
2098 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
2099 return argcount;
2100 } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
2101 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
2102 return argcount;
2103 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
2104 add_message_grep(revs, optarg);
2105 return argcount;
2106 } else if (!strcmp(arg, "--grep-debug")) {
2107 revs->grep_filter.debug = 1;
2108 } else if (!strcmp(arg, "--basic-regexp")) {
2109 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_BRE;
2110 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
2111 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_ERE;
2112 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
2113 revs->grep_filter.ignore_case = 1;
2114 revs->diffopt.pickaxe_opts |= DIFF_PICKAXE_IGNORE_CASE;
2115 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
2116 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_FIXED;
2117 } else if (!strcmp(arg, "--perl-regexp") || !strcmp(arg, "-P")) {
2118 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_PCRE;
2119 } else if (!strcmp(arg, "--all-match")) {
2120 revs->grep_filter.all_match = 1;
2121 } else if (!strcmp(arg, "--invert-grep")) {
2122 revs->invert_grep = 1;
2123 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
2124 if (strcmp(optarg, "none"))
2125 git_log_output_encoding = xstrdup(optarg);
2126 else
2127 git_log_output_encoding = "";
2128 return argcount;
2129 } else if (!strcmp(arg, "--reverse")) {
2130 revs->reverse ^= 1;
2131 } else if (!strcmp(arg, "--children")) {
2132 revs->children.name = "children";
2133 revs->limited = 1;
2134 } else if (!strcmp(arg, "--ignore-missing")) {
2135 revs->ignore_missing = 1;
2136 } else if (revs->allow_exclude_promisor_objects_opt &&
2137 !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;
2147 if (revs->graph && revs->track_linear)
2148 die("--show-linear-break and --graph are incompatible");
2150 return 1;
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[])
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);
2163 ctx->argv += n;
2164 ctx->argc -= n;
2167 static int for_each_bisect_ref(struct ref_store *refs, each_ref_fn fn,
2168 void *cb_data, const char *term)
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;
2178 static int for_each_bad_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2180 return for_each_bisect_ref(refs, fn, cb_data, term_bad);
2183 static int for_each_good_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2185 return for_each_bisect_ref(refs, fn, cb_data, term_good);
2188 static int handle_revision_pseudo_opt(const char *submodule,
2189 struct rev_info *revs,
2190 int argc, const char **argv, int *flags)
2192 const char *arg = argv[0];
2193 const char *optarg;
2194 struct ref_store *refs;
2195 int argcount;
2197 if (submodule) {
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.
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);
2211 * NOTE!
2213 * Commands like "git shortlog" will not accept the options below
2214 * unless parse_revision_opt queues them (as opposed to erroring
2215 * out).
2217 * When implementing your new pseudo-option, remember to
2218 * register it in the list at the top of handle_revision_opt.
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;
2226 init_all_refs_cb(&cb, revs, *flags);
2227 other_head_refs(handle_one_ref, &cb);
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)) {
2279 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2280 * not allowed, since the argument is optional.
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;
2296 return 1;
2299 static void NORETURN diagnose_missing_default(const char *def)
2301 int flags;
2302 const char *refname;
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"));
2308 skip_prefix(refname, "refs/heads/", &refname);
2309 die(_("your current branch '%s' does not have any commits yet"),
2310 refname);
2314 * Parse revision information, filling in the "rev_info" structure,
2315 * and removing the used arguments from the argument list.
2317 * Returns the number of arguments left that weren't recognized
2318 * (which are also moved to the head of the argument list)
2320 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
2322 int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0, revarg_opt;
2323 struct argv_array prune_data = ARGV_ARRAY_INIT;
2324 const char *submodule = NULL;
2326 if (opt)
2327 submodule = opt->submodule;
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;
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 read_from_stdin = 0;
2353 for (left = i = 1; i < argc; i++) {
2354 const char *arg = argv[i];
2355 if (*arg == '-') {
2356 int opts;
2358 opts = handle_revision_pseudo_opt(submodule,
2359 revs, argc - i, argv + i,
2360 &flags);
2361 if (opts > 0) {
2362 i += opts - 1;
2363 continue;
2366 if (!strcmp(arg, "--stdin")) {
2367 if (revs->disable_stdin) {
2368 argv[left++] = arg;
2369 continue;
2371 if (read_from_stdin++)
2372 die("--stdin given twice?");
2373 read_revisions_from_stdin(revs, &prune_data);
2374 continue;
2377 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
2378 if (opts > 0) {
2379 i += opts - 1;
2380 continue;
2382 if (opts < 0)
2383 exit(128);
2384 continue;
2388 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
2389 int j;
2390 if (seen_dashdash || *arg == '^')
2391 die("bad revision '%s'", arg);
2393 /* If we didn't have a "--":
2394 * (1) all filenames must exist;
2395 * (2) all rev-args must not be interpretable
2396 * as a valid filename.
2397 * but the latter we have checked in the main loop.
2399 for (j = i; j < argc; j++)
2400 verify_filename(revs->prefix, argv[j], j == i);
2402 argv_array_pushv(&prune_data, argv + i);
2403 break;
2405 else
2406 got_rev_arg = 1;
2409 if (prune_data.argc) {
2411 * If we need to introduce the magic "a lone ':' means no
2412 * pathspec whatsoever", here is the place to do so.
2414 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2415 * prune_data.nr = 0;
2416 * prune_data.alloc = 0;
2417 * free(prune_data.path);
2418 * prune_data.path = NULL;
2419 * } else {
2420 * terminate prune_data.alloc with NULL and
2421 * call init_pathspec() to set revs->prune_data here.
2424 parse_pathspec(&revs->prune_data, 0, 0,
2425 revs->prefix, prune_data.argv);
2427 argv_array_clear(&prune_data);
2429 if (revs->def == NULL)
2430 revs->def = opt ? opt->def : NULL;
2431 if (opt && opt->tweak)
2432 opt->tweak(revs, opt);
2433 if (revs->show_merge)
2434 prepare_show_merge(revs);
2435 if (revs->def && !revs->pending.nr && !revs->rev_input_given && !got_rev_arg) {
2436 struct object_id oid;
2437 struct object *object;
2438 struct object_context oc;
2439 if (get_oid_with_context(revs->def, 0, &oid, &oc))
2440 diagnose_missing_default(revs->def);
2441 object = get_reference(revs, revs->def, &oid, 0);
2442 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
2445 /* Did the user ask for any diff output? Run the diff! */
2446 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2447 revs->diff = 1;
2449 /* Pickaxe, diff-filter and rename following need diffs */
2450 if ((revs->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
2451 revs->diffopt.filter ||
2452 revs->diffopt.flags.follow_renames)
2453 revs->diff = 1;
2455 if (revs->diffopt.objfind)
2456 revs->simplify_history = 0;
2458 if (revs->topo_order)
2459 revs->limited = 1;
2461 if (revs->prune_data.nr) {
2462 copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
2463 /* Can't prune commits with rename following: the paths change.. */
2464 if (!revs->diffopt.flags.follow_renames)
2465 revs->prune = 1;
2466 if (!revs->full_diff)
2467 copy_pathspec(&revs->diffopt.pathspec,
2468 &revs->prune_data);
2470 if (revs->combine_merges)
2471 revs->ignore_merges = 0;
2472 revs->diffopt.abbrev = revs->abbrev;
2474 if (revs->line_level_traverse) {
2475 revs->limited = 1;
2476 revs->topo_order = 1;
2479 diff_setup_done(&revs->diffopt);
2481 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
2482 &revs->grep_filter);
2483 compile_grep_patterns(&revs->grep_filter);
2485 if (revs->reverse && revs->reflog_info)
2486 die("cannot combine --reverse with --walk-reflogs");
2487 if (revs->reflog_info && revs->limited)
2488 die("cannot combine --walk-reflogs with history-limiting options");
2489 if (revs->rewrite_parents && revs->children.name)
2490 die("cannot combine --parents and --children");
2493 * Limitations on the graph functionality
2495 if (revs->reverse && revs->graph)
2496 die("cannot combine --reverse with --graph");
2498 if (revs->reflog_info && revs->graph)
2499 die("cannot combine --walk-reflogs with --graph");
2500 if (revs->no_walk && revs->graph)
2501 die("cannot combine --no-walk with --graph");
2502 if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
2503 die("cannot use --grep-reflog without --walk-reflogs");
2505 if (revs->first_parent_only && revs->bisect)
2506 die(_("--first-parent is incompatible with --bisect"));
2508 if (revs->expand_tabs_in_log < 0)
2509 revs->expand_tabs_in_log = revs->expand_tabs_in_log_default;
2511 return left;
2514 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2516 struct commit_list *l = xcalloc(1, sizeof(*l));
2518 l->item = child;
2519 l->next = add_decoration(&revs->children, &parent->object, l);
2522 static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
2524 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2525 struct commit_list **pp, *p;
2526 int surviving_parents;
2528 /* Examine existing parents while marking ones we have seen... */
2529 pp = &commit->parents;
2530 surviving_parents = 0;
2531 while ((p = *pp) != NULL) {
2532 struct commit *parent = p->item;
2533 if (parent->object.flags & TMP_MARK) {
2534 *pp = p->next;
2535 if (ts)
2536 compact_treesame(revs, commit, surviving_parents);
2537 continue;
2539 parent->object.flags |= TMP_MARK;
2540 surviving_parents++;
2541 pp = &p->next;
2543 /* clear the temporary mark */
2544 for (p = commit->parents; p; p = p->next) {
2545 p->item->object.flags &= ~TMP_MARK;
2547 /* no update_treesame() - removing duplicates can't affect TREESAME */
2548 return surviving_parents;
2551 struct merge_simplify_state {
2552 struct commit *simplified;
2555 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2557 struct merge_simplify_state *st;
2559 st = lookup_decoration(&revs->merge_simplification, &commit->object);
2560 if (!st) {
2561 st = xcalloc(1, sizeof(*st));
2562 add_decoration(&revs->merge_simplification, &commit->object, st);
2564 return st;
2567 static int mark_redundant_parents(struct rev_info *revs, struct commit *commit)
2569 struct commit_list *h = reduce_heads(commit->parents);
2570 int i = 0, marked = 0;
2571 struct commit_list *po, *pn;
2573 /* Want these for sanity-checking only */
2574 int orig_cnt = commit_list_count(commit->parents);
2575 int cnt = commit_list_count(h);
2578 * Not ready to remove items yet, just mark them for now, based
2579 * on the output of reduce_heads(). reduce_heads outputs the reduced
2580 * set in its original order, so this isn't too hard.
2582 po = commit->parents;
2583 pn = h;
2584 while (po) {
2585 if (pn && po->item == pn->item) {
2586 pn = pn->next;
2587 i++;
2588 } else {
2589 po->item->object.flags |= TMP_MARK;
2590 marked++;
2592 po=po->next;
2595 if (i != cnt || cnt+marked != orig_cnt)
2596 die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
2598 free_commit_list(h);
2600 return marked;
2603 static int mark_treesame_root_parents(struct rev_info *revs, struct commit *commit)
2605 struct commit_list *p;
2606 int marked = 0;
2608 for (p = commit->parents; p; p = p->next) {
2609 struct commit *parent = p->item;
2610 if (!parent->parents && (parent->object.flags & TREESAME)) {
2611 parent->object.flags |= TMP_MARK;
2612 marked++;
2616 return marked;
2620 * Awkward naming - this means one parent we are TREESAME to.
2621 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2622 * empty tree). Better name suggestions?
2624 static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
2626 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2627 struct commit *unmarked = NULL, *marked = NULL;
2628 struct commit_list *p;
2629 unsigned n;
2631 for (p = commit->parents, n = 0; p; p = p->next, n++) {
2632 if (ts->treesame[n]) {
2633 if (p->item->object.flags & TMP_MARK) {
2634 if (!marked)
2635 marked = p->item;
2636 } else {
2637 if (!unmarked) {
2638 unmarked = p->item;
2639 break;
2646 * If we are TREESAME to a marked-for-deletion parent, but not to any
2647 * unmarked parents, unmark the first TREESAME parent. This is the
2648 * parent that the default simplify_history==1 scan would have followed,
2649 * and it doesn't make sense to omit that path when asking for a
2650 * simplified full history. Retaining it improves the chances of
2651 * understanding odd missed merges that took an old version of a file.
2653 * Example:
2655 * I--------*X A modified the file, but mainline merge X used
2656 * \ / "-s ours", so took the version from I. X is
2657 * `-*A--' TREESAME to I and !TREESAME to A.
2659 * Default log from X would produce "I". Without this check,
2660 * --full-history --simplify-merges would produce "I-A-X", showing
2661 * the merge commit X and that it changed A, but not making clear that
2662 * it had just taken the I version. With this check, the topology above
2663 * is retained.
2665 * Note that it is possible that the simplification chooses a different
2666 * TREESAME parent from the default, in which case this test doesn't
2667 * activate, and we _do_ drop the default parent. Example:
2669 * I------X A modified the file, but it was reverted in B,
2670 * \ / meaning mainline merge X is TREESAME to both
2671 * *A-*B parents.
2673 * Default log would produce "I" by following the first parent;
2674 * --full-history --simplify-merges will produce "I-A-B". But this is a
2675 * reasonable result - it presents a logical full history leading from
2676 * I to X, and X is not an important merge.
2678 if (!unmarked && marked) {
2679 marked->object.flags &= ~TMP_MARK;
2680 return 1;
2683 return 0;
2686 static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
2688 struct commit_list **pp, *p;
2689 int nth_parent, removed = 0;
2691 pp = &commit->parents;
2692 nth_parent = 0;
2693 while ((p = *pp) != NULL) {
2694 struct commit *parent = p->item;
2695 if (parent->object.flags & TMP_MARK) {
2696 parent->object.flags &= ~TMP_MARK;
2697 *pp = p->next;
2698 free(p);
2699 removed++;
2700 compact_treesame(revs, commit, nth_parent);
2701 continue;
2703 pp = &p->next;
2704 nth_parent++;
2707 /* Removing parents can only increase TREESAMEness */
2708 if (removed && !(commit->object.flags & TREESAME))
2709 update_treesame(revs, commit);
2711 return nth_parent;
2714 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
2716 struct commit_list *p;
2717 struct commit *parent;
2718 struct merge_simplify_state *st, *pst;
2719 int cnt;
2721 st = locate_simplify_state(revs, commit);
2724 * Have we handled this one?
2726 if (st->simplified)
2727 return tail;
2730 * An UNINTERESTING commit simplifies to itself, so does a
2731 * root commit. We do not rewrite parents of such commit
2732 * anyway.
2734 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
2735 st->simplified = commit;
2736 return tail;
2740 * Do we know what commit all of our parents that matter
2741 * should be rewritten to? Otherwise we are not ready to
2742 * rewrite this one yet.
2744 for (cnt = 0, p = commit->parents; p; p = p->next) {
2745 pst = locate_simplify_state(revs, p->item);
2746 if (!pst->simplified) {
2747 tail = &commit_list_insert(p->item, tail)->next;
2748 cnt++;
2750 if (revs->first_parent_only)
2751 break;
2753 if (cnt) {
2754 tail = &commit_list_insert(commit, tail)->next;
2755 return tail;
2759 * Rewrite our list of parents. Note that this cannot
2760 * affect our TREESAME flags in any way - a commit is
2761 * always TREESAME to its simplification.
2763 for (p = commit->parents; p; p = p->next) {
2764 pst = locate_simplify_state(revs, p->item);
2765 p->item = pst->simplified;
2766 if (revs->first_parent_only)
2767 break;
2770 if (revs->first_parent_only)
2771 cnt = 1;
2772 else
2773 cnt = remove_duplicate_parents(revs, commit);
2776 * It is possible that we are a merge and one side branch
2777 * does not have any commit that touches the given paths;
2778 * in such a case, the immediate parent from that branch
2779 * will be rewritten to be the merge base.
2781 * o----X X: the commit we are looking at;
2782 * / / o: a commit that touches the paths;
2783 * ---o----'
2785 * Further, a merge of an independent branch that doesn't
2786 * touch the path will reduce to a treesame root parent:
2788 * ----o----X X: the commit we are looking at;
2789 * / o: a commit that touches the paths;
2790 * r r: a root commit not touching the paths
2792 * Detect and simplify both cases.
2794 if (1 < cnt) {
2795 int marked = mark_redundant_parents(revs, commit);
2796 marked += mark_treesame_root_parents(revs, commit);
2797 if (marked)
2798 marked -= leave_one_treesame_to_parent(revs, commit);
2799 if (marked)
2800 cnt = remove_marked_parents(revs, commit);
2804 * A commit simplifies to itself if it is a root, if it is
2805 * UNINTERESTING, if it touches the given paths, or if it is a
2806 * merge and its parents don't simplify to one relevant commit
2807 * (the first two cases are already handled at the beginning of
2808 * this function).
2810 * Otherwise, it simplifies to what its sole relevant parent
2811 * simplifies to.
2813 if (!cnt ||
2814 (commit->object.flags & UNINTERESTING) ||
2815 !(commit->object.flags & TREESAME) ||
2816 (parent = one_relevant_parent(revs, commit->parents)) == NULL)
2817 st->simplified = commit;
2818 else {
2819 pst = locate_simplify_state(revs, parent);
2820 st->simplified = pst->simplified;
2822 return tail;
2825 static void simplify_merges(struct rev_info *revs)
2827 struct commit_list *list, *next;
2828 struct commit_list *yet_to_do, **tail;
2829 struct commit *commit;
2831 if (!revs->prune)
2832 return;
2834 /* feed the list reversed */
2835 yet_to_do = NULL;
2836 for (list = revs->commits; list; list = next) {
2837 commit = list->item;
2838 next = list->next;
2840 * Do not free(list) here yet; the original list
2841 * is used later in this function.
2843 commit_list_insert(commit, &yet_to_do);
2845 while (yet_to_do) {
2846 list = yet_to_do;
2847 yet_to_do = NULL;
2848 tail = &yet_to_do;
2849 while (list) {
2850 commit = pop_commit(&list);
2851 tail = simplify_one(revs, commit, tail);
2855 /* clean up the result, removing the simplified ones */
2856 list = revs->commits;
2857 revs->commits = NULL;
2858 tail = &revs->commits;
2859 while (list) {
2860 struct merge_simplify_state *st;
2862 commit = pop_commit(&list);
2863 st = locate_simplify_state(revs, commit);
2864 if (st->simplified == commit)
2865 tail = &commit_list_insert(commit, tail)->next;
2869 static void set_children(struct rev_info *revs)
2871 struct commit_list *l;
2872 for (l = revs->commits; l; l = l->next) {
2873 struct commit *commit = l->item;
2874 struct commit_list *p;
2876 for (p = commit->parents; p; p = p->next)
2877 add_child(revs, p->item, commit);
2881 void reset_revision_walk(void)
2883 clear_object_flags(SEEN | ADDED | SHOWN);
2886 static int mark_uninteresting(const struct object_id *oid,
2887 struct packed_git *pack,
2888 uint32_t pos,
2889 void *unused)
2891 struct object *o = parse_object(the_repository, oid);
2892 o->flags |= UNINTERESTING | SEEN;
2893 return 0;
2896 int prepare_revision_walk(struct rev_info *revs)
2898 int i;
2899 struct object_array old_pending;
2900 struct commit_list **next = &revs->commits;
2902 memcpy(&old_pending, &revs->pending, sizeof(old_pending));
2903 revs->pending.nr = 0;
2904 revs->pending.alloc = 0;
2905 revs->pending.objects = NULL;
2906 for (i = 0; i < old_pending.nr; i++) {
2907 struct object_array_entry *e = old_pending.objects + i;
2908 struct commit *commit = handle_commit(revs, e);
2909 if (commit) {
2910 if (!(commit->object.flags & SEEN)) {
2911 commit->object.flags |= SEEN;
2912 next = commit_list_append(commit, next);
2916 object_array_clear(&old_pending);
2918 /* Signal whether we need per-parent treesame decoration */
2919 if (revs->simplify_merges ||
2920 (revs->limited && limiting_can_increase_treesame(revs)))
2921 revs->treesame.name = "treesame";
2923 if (revs->exclude_promisor_objects) {
2924 for_each_packed_object(mark_uninteresting, NULL,
2925 FOR_EACH_OBJECT_PROMISOR_ONLY);
2928 if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
2929 commit_list_sort_by_date(&revs->commits);
2930 if (revs->no_walk)
2931 return 0;
2932 if (revs->limited)
2933 if (limit_list(revs) < 0)
2934 return -1;
2935 if (revs->topo_order)
2936 sort_in_topological_order(&revs->commits, revs->sort_order);
2937 if (revs->line_level_traverse)
2938 line_log_filter(revs);
2939 if (revs->simplify_merges)
2940 simplify_merges(revs);
2941 if (revs->children.name)
2942 set_children(revs);
2943 return 0;
2946 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
2948 struct commit_list *cache = NULL;
2950 for (;;) {
2951 struct commit *p = *pp;
2952 if (!revs->limited)
2953 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
2954 return rewrite_one_error;
2955 if (p->object.flags & UNINTERESTING)
2956 return rewrite_one_ok;
2957 if (!(p->object.flags & TREESAME))
2958 return rewrite_one_ok;
2959 if (!p->parents)
2960 return rewrite_one_noparents;
2961 if ((p = one_relevant_parent(revs, p->parents)) == NULL)
2962 return rewrite_one_ok;
2963 *pp = p;
2967 int rewrite_parents(struct rev_info *revs, struct commit *commit,
2968 rewrite_parent_fn_t rewrite_parent)
2970 struct commit_list **pp = &commit->parents;
2971 while (*pp) {
2972 struct commit_list *parent = *pp;
2973 switch (rewrite_parent(revs, &parent->item)) {
2974 case rewrite_one_ok:
2975 break;
2976 case rewrite_one_noparents:
2977 *pp = parent->next;
2978 continue;
2979 case rewrite_one_error:
2980 return -1;
2982 pp = &parent->next;
2984 remove_duplicate_parents(revs, commit);
2985 return 0;
2988 static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
2990 char *person, *endp;
2991 size_t len, namelen, maillen;
2992 const char *name;
2993 const char *mail;
2994 struct ident_split ident;
2996 person = strstr(buf->buf, what);
2997 if (!person)
2998 return 0;
3000 person += strlen(what);
3001 endp = strchr(person, '\n');
3002 if (!endp)
3003 return 0;
3005 len = endp - person;
3007 if (split_ident_line(&ident, person, len))
3008 return 0;
3010 mail = ident.mail_begin;
3011 maillen = ident.mail_end - ident.mail_begin;
3012 name = ident.name_begin;
3013 namelen = ident.name_end - ident.name_begin;
3015 if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
3016 struct strbuf namemail = STRBUF_INIT;
3018 strbuf_addf(&namemail, "%.*s <%.*s>",
3019 (int)namelen, name, (int)maillen, mail);
3021 strbuf_splice(buf, ident.name_begin - buf->buf,
3022 ident.mail_end - ident.name_begin + 1,
3023 namemail.buf, namemail.len);
3025 strbuf_release(&namemail);
3027 return 1;
3030 return 0;
3033 static int commit_match(struct commit *commit, struct rev_info *opt)
3035 int retval;
3036 const char *encoding;
3037 const char *message;
3038 struct strbuf buf = STRBUF_INIT;
3040 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
3041 return 1;
3043 /* Prepend "fake" headers as needed */
3044 if (opt->grep_filter.use_reflog_filter) {
3045 strbuf_addstr(&buf, "reflog ");
3046 get_reflog_message(&buf, opt->reflog_info);
3047 strbuf_addch(&buf, '\n');
3051 * We grep in the user's output encoding, under the assumption that it
3052 * is the encoding they are most likely to write their grep pattern
3053 * for. In addition, it means we will match the "notes" encoding below,
3054 * so we will not end up with a buffer that has two different encodings
3055 * in it.
3057 encoding = get_log_output_encoding();
3058 message = logmsg_reencode(commit, NULL, encoding);
3060 /* Copy the commit to temporary if we are using "fake" headers */
3061 if (buf.len)
3062 strbuf_addstr(&buf, message);
3064 if (opt->grep_filter.header_list && opt->mailmap) {
3065 if (!buf.len)
3066 strbuf_addstr(&buf, message);
3068 commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
3069 commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
3072 /* Append "fake" message parts as needed */
3073 if (opt->show_notes) {
3074 if (!buf.len)
3075 strbuf_addstr(&buf, message);
3076 format_display_notes(&commit->object.oid, &buf, encoding, 1);
3080 * Find either in the original commit message, or in the temporary.
3081 * Note that we cast away the constness of "message" here. It is
3082 * const because it may come from the cached commit buffer. That's OK,
3083 * because we know that it is modifiable heap memory, and that while
3084 * grep_buffer may modify it for speed, it will restore any
3085 * changes before returning.
3087 if (buf.len)
3088 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
3089 else
3090 retval = grep_buffer(&opt->grep_filter,
3091 (char *)message, strlen(message));
3092 strbuf_release(&buf);
3093 unuse_commit_buffer(commit, message);
3094 return opt->invert_grep ? !retval : retval;
3097 static inline int want_ancestry(const struct rev_info *revs)
3099 return (revs->rewrite_parents || revs->children.name);
3103 * Return a timestamp to be used for --since/--until comparisons for this
3104 * commit, based on the revision options.
3106 static timestamp_t comparison_date(const struct rev_info *revs,
3107 struct commit *commit)
3109 return revs->reflog_info ?
3110 get_reflog_timestamp(revs->reflog_info) :
3111 commit->date;
3114 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
3116 if (commit->object.flags & SHOWN)
3117 return commit_ignore;
3118 if (revs->unpacked && has_object_pack(&commit->object.oid))
3119 return commit_ignore;
3120 if (commit->object.flags & UNINTERESTING)
3121 return commit_ignore;
3122 if (revs->min_age != -1 &&
3123 comparison_date(revs, commit) > revs->min_age)
3124 return commit_ignore;
3125 if (revs->min_parents || (revs->max_parents >= 0)) {
3126 int n = commit_list_count(commit->parents);
3127 if ((n < revs->min_parents) ||
3128 ((revs->max_parents >= 0) && (n > revs->max_parents)))
3129 return commit_ignore;
3131 if (!commit_match(commit, revs))
3132 return commit_ignore;
3133 if (revs->prune && revs->dense) {
3134 /* Commit without changes? */
3135 if (commit->object.flags & TREESAME) {
3136 int n;
3137 struct commit_list *p;
3138 /* drop merges unless we want parenthood */
3139 if (!want_ancestry(revs))
3140 return commit_ignore;
3142 * If we want ancestry, then need to keep any merges
3143 * between relevant commits to tie together topology.
3144 * For consistency with TREESAME and simplification
3145 * use "relevant" here rather than just INTERESTING,
3146 * to treat bottom commit(s) as part of the topology.
3148 for (n = 0, p = commit->parents; p; p = p->next)
3149 if (relevant_commit(p->item))
3150 if (++n >= 2)
3151 return commit_show;
3152 return commit_ignore;
3155 return commit_show;
3158 define_commit_slab(saved_parents, struct commit_list *);
3160 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3163 * You may only call save_parents() once per commit (this is checked
3164 * for non-root commits).
3166 static void save_parents(struct rev_info *revs, struct commit *commit)
3168 struct commit_list **pp;
3170 if (!revs->saved_parents_slab) {
3171 revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
3172 init_saved_parents(revs->saved_parents_slab);
3175 pp = saved_parents_at(revs->saved_parents_slab, commit);
3178 * When walking with reflogs, we may visit the same commit
3179 * several times: once for each appearance in the reflog.
3181 * In this case, save_parents() will be called multiple times.
3182 * We want to keep only the first set of parents. We need to
3183 * store a sentinel value for an empty (i.e., NULL) parent
3184 * list to distinguish it from a not-yet-saved list, however.
3186 if (*pp)
3187 return;
3188 if (commit->parents)
3189 *pp = copy_commit_list(commit->parents);
3190 else
3191 *pp = EMPTY_PARENT_LIST;
3194 static void free_saved_parents(struct rev_info *revs)
3196 if (revs->saved_parents_slab)
3197 clear_saved_parents(revs->saved_parents_slab);
3200 struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
3202 struct commit_list *parents;
3204 if (!revs->saved_parents_slab)
3205 return commit->parents;
3207 parents = *saved_parents_at(revs->saved_parents_slab, commit);
3208 if (parents == EMPTY_PARENT_LIST)
3209 return NULL;
3210 return parents;
3213 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
3215 enum commit_action action = get_commit_action(revs, commit);
3217 if (action == commit_show &&
3218 revs->prune && revs->dense && want_ancestry(revs)) {
3220 * --full-diff on simplified parents is no good: it
3221 * will show spurious changes from the commits that
3222 * were elided. So we save the parents on the side
3223 * when --full-diff is in effect.
3225 if (revs->full_diff)
3226 save_parents(revs, commit);
3227 if (rewrite_parents(revs, commit, rewrite_one) < 0)
3228 return commit_error;
3230 return action;
3233 static void track_linear(struct rev_info *revs, struct commit *commit)
3235 if (revs->track_first_time) {
3236 revs->linear = 1;
3237 revs->track_first_time = 0;
3238 } else {
3239 struct commit_list *p;
3240 for (p = revs->previous_parents; p; p = p->next)
3241 if (p->item == NULL || /* first commit */
3242 !oidcmp(&p->item->object.oid, &commit->object.oid))
3243 break;
3244 revs->linear = p != NULL;
3246 if (revs->reverse) {
3247 if (revs->linear)
3248 commit->object.flags |= TRACK_LINEAR;
3250 free_commit_list(revs->previous_parents);
3251 revs->previous_parents = copy_commit_list(commit->parents);
3254 static struct commit *get_revision_1(struct rev_info *revs)
3256 while (1) {
3257 struct commit *commit;
3259 if (revs->reflog_info)
3260 commit = next_reflog_entry(revs->reflog_info);
3261 else
3262 commit = pop_commit(&revs->commits);
3264 if (!commit)
3265 return NULL;
3267 if (revs->reflog_info)
3268 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
3271 * If we haven't done the list limiting, we need to look at
3272 * the parents here. We also need to do the date-based limiting
3273 * that we'd otherwise have done in limit_list().
3275 if (!revs->limited) {
3276 if (revs->max_age != -1 &&
3277 comparison_date(revs, commit) < revs->max_age)
3278 continue;
3280 if (revs->reflog_info)
3281 try_to_simplify_commit(revs, commit);
3282 else if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0) {
3283 if (!revs->ignore_missing_links)
3284 die("Failed to traverse parents of commit %s",
3285 oid_to_hex(&commit->object.oid));
3289 switch (simplify_commit(revs, commit)) {
3290 case commit_ignore:
3291 continue;
3292 case commit_error:
3293 die("Failed to simplify parents of commit %s",
3294 oid_to_hex(&commit->object.oid));
3295 default:
3296 if (revs->track_linear)
3297 track_linear(revs, commit);
3298 return commit;
3304 * Return true for entries that have not yet been shown. (This is an
3305 * object_array_each_func_t.)
3307 static int entry_unshown(struct object_array_entry *entry, void *cb_data_unused)
3309 return !(entry->item->flags & SHOWN);
3313 * If array is on the verge of a realloc, garbage-collect any entries
3314 * that have already been shown to try to free up some space.
3316 static void gc_boundary(struct object_array *array)
3318 if (array->nr == array->alloc)
3319 object_array_filter(array, entry_unshown, NULL);
3322 static void create_boundary_commit_list(struct rev_info *revs)
3324 unsigned i;
3325 struct commit *c;
3326 struct object_array *array = &revs->boundary_commits;
3327 struct object_array_entry *objects = array->objects;
3330 * If revs->commits is non-NULL at this point, an error occurred in
3331 * get_revision_1(). Ignore the error and continue printing the
3332 * boundary commits anyway. (This is what the code has always
3333 * done.)
3335 if (revs->commits) {
3336 free_commit_list(revs->commits);
3337 revs->commits = NULL;
3341 * Put all of the actual boundary commits from revs->boundary_commits
3342 * into revs->commits
3344 for (i = 0; i < array->nr; i++) {
3345 c = (struct commit *)(objects[i].item);
3346 if (!c)
3347 continue;
3348 if (!(c->object.flags & CHILD_SHOWN))
3349 continue;
3350 if (c->object.flags & (SHOWN | BOUNDARY))
3351 continue;
3352 c->object.flags |= BOUNDARY;
3353 commit_list_insert(c, &revs->commits);
3357 * If revs->topo_order is set, sort the boundary commits
3358 * in topological order
3360 sort_in_topological_order(&revs->commits, revs->sort_order);
3363 static struct commit *get_revision_internal(struct rev_info *revs)
3365 struct commit *c = NULL;
3366 struct commit_list *l;
3368 if (revs->boundary == 2) {
3370 * All of the normal commits have already been returned,
3371 * and we are now returning boundary commits.
3372 * create_boundary_commit_list() has populated
3373 * revs->commits with the remaining commits to return.
3375 c = pop_commit(&revs->commits);
3376 if (c)
3377 c->object.flags |= SHOWN;
3378 return c;
3382 * If our max_count counter has reached zero, then we are done. We
3383 * don't simply return NULL because we still might need to show
3384 * boundary commits. But we want to avoid calling get_revision_1, which
3385 * might do a considerable amount of work finding the next commit only
3386 * for us to throw it away.
3388 * If it is non-zero, then either we don't have a max_count at all
3389 * (-1), or it is still counting, in which case we decrement.
3391 if (revs->max_count) {
3392 c = get_revision_1(revs);
3393 if (c) {
3394 while (revs->skip_count > 0) {
3395 revs->skip_count--;
3396 c = get_revision_1(revs);
3397 if (!c)
3398 break;
3402 if (revs->max_count > 0)
3403 revs->max_count--;
3406 if (c)
3407 c->object.flags |= SHOWN;
3409 if (!revs->boundary)
3410 return c;
3412 if (!c) {
3414 * get_revision_1() runs out the commits, and
3415 * we are done computing the boundaries.
3416 * switch to boundary commits output mode.
3418 revs->boundary = 2;
3421 * Update revs->commits to contain the list of
3422 * boundary commits.
3424 create_boundary_commit_list(revs);
3426 return get_revision_internal(revs);
3430 * boundary commits are the commits that are parents of the
3431 * ones we got from get_revision_1() but they themselves are
3432 * not returned from get_revision_1(). Before returning
3433 * 'c', we need to mark its parents that they could be boundaries.
3436 for (l = c->parents; l; l = l->next) {
3437 struct object *p;
3438 p = &(l->item->object);
3439 if (p->flags & (CHILD_SHOWN | SHOWN))
3440 continue;
3441 p->flags |= CHILD_SHOWN;
3442 gc_boundary(&revs->boundary_commits);
3443 add_object_array(p, NULL, &revs->boundary_commits);
3446 return c;
3449 struct commit *get_revision(struct rev_info *revs)
3451 struct commit *c;
3452 struct commit_list *reversed;
3454 if (revs->reverse) {
3455 reversed = NULL;
3456 while ((c = get_revision_internal(revs)))
3457 commit_list_insert(c, &reversed);
3458 revs->commits = reversed;
3459 revs->reverse = 0;
3460 revs->reverse_output_stage = 1;
3463 if (revs->reverse_output_stage) {
3464 c = pop_commit(&revs->commits);
3465 if (revs->track_linear)
3466 revs->linear = !!(c && c->object.flags & TRACK_LINEAR);
3467 return c;
3470 c = get_revision_internal(revs);
3471 if (c && revs->graph)
3472 graph_update(revs->graph, c);
3473 if (!c) {
3474 free_saved_parents(revs);
3475 if (revs->previous_parents) {
3476 free_commit_list(revs->previous_parents);
3477 revs->previous_parents = NULL;
3480 return c;
3483 char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
3485 if (commit->object.flags & BOUNDARY)
3486 return "-";
3487 else if (commit->object.flags & UNINTERESTING)
3488 return "^";
3489 else if (commit->object.flags & PATCHSAME)
3490 return "=";
3491 else if (!revs || revs->left_right) {
3492 if (commit->object.flags & SYMMETRIC_LEFT)
3493 return "<";
3494 else
3495 return ">";
3496 } else if (revs->graph)
3497 return "*";
3498 else if (revs->cherry_mark)
3499 return "+";
3500 return "";
3503 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
3505 char *mark = get_revision_mark(revs, commit);
3506 if (!strlen(mark))
3507 return;
3508 fputs(mark, stdout);
3509 putchar(' ');