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