2 #include "object-store.h"
10 #include "repository.h"
13 #include "reflog-walk.h"
14 #include "patch-ids.h"
17 #include "string-list.h"
20 #include "commit-slab.h"
22 #include "cache-tree.h"
26 #include "argv-array.h"
27 #include "commit-reach.h"
28 #include "commit-graph.h"
29 #include "prio-queue.h"
31 volatile show_early_output_fn_t show_early_output
;
33 static const char *term_bad
;
34 static const char *term_good
;
36 implement_shared_commit_slab(revision_sources
, char *);
38 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
42 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
43 for (p
= name
; *p
&& *p
!= '\n'; p
++)
48 static void mark_blob_uninteresting(struct blob
*blob
)
52 if (blob
->object
.flags
& UNINTERESTING
)
54 blob
->object
.flags
|= UNINTERESTING
;
57 static void mark_tree_contents_uninteresting(struct repository
*r
,
60 struct tree_desc desc
;
61 struct name_entry entry
;
63 if (parse_tree_gently(tree
, 1) < 0)
66 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
67 while (tree_entry(&desc
, &entry
)) {
68 switch (object_type(entry
.mode
)) {
70 mark_tree_uninteresting(r
, lookup_tree(r
, &entry
.oid
));
73 mark_blob_uninteresting(lookup_blob(r
, &entry
.oid
));
76 /* Subproject commit - not in this repository */
82 * We don't care about the tree any more
83 * after it has been marked uninteresting.
85 free_tree_buffer(tree
);
88 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
)
96 if (obj
->flags
& UNINTERESTING
)
98 obj
->flags
|= UNINTERESTING
;
99 mark_tree_contents_uninteresting(r
, tree
);
102 struct commit_stack
{
103 struct commit
**items
;
106 #define COMMIT_STACK_INIT { NULL, 0, 0 }
108 static void commit_stack_push(struct commit_stack
*stack
, struct commit
*commit
)
110 ALLOC_GROW(stack
->items
, stack
->nr
+ 1, stack
->alloc
);
111 stack
->items
[stack
->nr
++] = commit
;
114 static struct commit
*commit_stack_pop(struct commit_stack
*stack
)
116 return stack
->nr
? stack
->items
[--stack
->nr
] : NULL
;
119 static void commit_stack_clear(struct commit_stack
*stack
)
121 FREE_AND_NULL(stack
->items
);
122 stack
->nr
= stack
->alloc
= 0;
125 static void mark_one_parent_uninteresting(struct commit
*commit
,
126 struct commit_stack
*pending
)
128 struct commit_list
*l
;
130 if (commit
->object
.flags
& UNINTERESTING
)
132 commit
->object
.flags
|= UNINTERESTING
;
135 * Normally we haven't parsed the parent
136 * yet, so we won't have a parent of a parent
137 * here. However, it may turn out that we've
138 * reached this commit some other way (where it
139 * wasn't uninteresting), in which case we need
140 * to mark its parents recursively too..
142 for (l
= commit
->parents
; l
; l
= l
->next
)
143 commit_stack_push(pending
, l
->item
);
146 void mark_parents_uninteresting(struct commit
*commit
)
148 struct commit_stack pending
= COMMIT_STACK_INIT
;
149 struct commit_list
*l
;
151 for (l
= commit
->parents
; l
; l
= l
->next
)
152 mark_one_parent_uninteresting(l
->item
, &pending
);
154 while (pending
.nr
> 0)
155 mark_one_parent_uninteresting(commit_stack_pop(&pending
),
158 commit_stack_clear(&pending
);
161 static void add_pending_object_with_path(struct rev_info
*revs
,
163 const char *name
, unsigned mode
,
168 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
170 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
171 struct strbuf buf
= STRBUF_INIT
;
172 int len
= interpret_branch_name(name
, 0, &buf
, 0);
174 if (0 < len
&& name
[len
] && buf
.len
)
175 strbuf_addstr(&buf
, name
+ len
);
176 add_reflog_for_walk(revs
->reflog_info
,
177 (struct commit
*)obj
,
178 buf
.buf
[0] ? buf
.buf
: name
);
179 strbuf_release(&buf
);
180 return; /* do not add the commit itself */
182 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
185 static void add_pending_object_with_mode(struct rev_info
*revs
,
187 const char *name
, unsigned mode
)
189 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
192 void add_pending_object(struct rev_info
*revs
,
193 struct object
*obj
, const char *name
)
195 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
198 void add_head_to_pending(struct rev_info
*revs
)
200 struct object_id oid
;
202 if (get_oid("HEAD", &oid
))
204 obj
= parse_object(revs
->repo
, &oid
);
207 add_pending_object(revs
, obj
, "HEAD");
210 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
211 const struct object_id
*oid
,
214 struct object
*object
;
217 * If the repository has commit graphs, repo_parse_commit() avoids
218 * reading the object buffer, so use it whenever possible.
220 if (oid_object_info(revs
->repo
, oid
, NULL
) == OBJ_COMMIT
) {
221 struct commit
*c
= lookup_commit(revs
->repo
, oid
);
222 if (!repo_parse_commit(revs
->repo
, c
))
223 object
= (struct object
*) c
;
227 object
= parse_object(revs
->repo
, oid
);
231 if (revs
->ignore_missing
)
233 if (revs
->exclude_promisor_objects
&& is_promisor_object(oid
))
235 die("bad object %s", name
);
237 object
->flags
|= flags
;
241 void add_pending_oid(struct rev_info
*revs
, const char *name
,
242 const struct object_id
*oid
, unsigned int flags
)
244 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
245 add_pending_object(revs
, object
, name
);
248 static struct commit
*handle_commit(struct rev_info
*revs
,
249 struct object_array_entry
*entry
)
251 struct object
*object
= entry
->item
;
252 const char *name
= entry
->name
;
253 const char *path
= entry
->path
;
254 unsigned int mode
= entry
->mode
;
255 unsigned long flags
= object
->flags
;
258 * Tag object? Look what it points to..
260 while (object
->type
== OBJ_TAG
) {
261 struct tag
*tag
= (struct tag
*) object
;
262 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
263 add_pending_object(revs
, object
, tag
->tag
);
266 object
= parse_object(revs
->repo
, &tag
->tagged
->oid
);
268 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
270 if (revs
->exclude_promisor_objects
&&
271 is_promisor_object(&tag
->tagged
->oid
))
273 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
275 object
->flags
|= flags
;
277 * We'll handle the tagged object by looping or dropping
278 * through to the non-tag handlers below. Do not
279 * propagate path data from the tag's pending entry.
286 * Commit object? Just return it, we'll do all the complex
289 if (object
->type
== OBJ_COMMIT
) {
290 struct commit
*commit
= (struct commit
*)object
;
292 if (parse_commit(commit
) < 0)
293 die("unable to parse commit %s", name
);
294 if (flags
& UNINTERESTING
) {
295 mark_parents_uninteresting(commit
);
299 char **slot
= revision_sources_at(revs
->sources
, commit
);
302 *slot
= xstrdup(name
);
308 * Tree object? Either mark it uninteresting, or add it
309 * to the list of objects to look at later..
311 if (object
->type
== OBJ_TREE
) {
312 struct tree
*tree
= (struct tree
*)object
;
313 if (!revs
->tree_objects
)
315 if (flags
& UNINTERESTING
) {
316 mark_tree_contents_uninteresting(revs
->repo
, tree
);
319 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
324 * Blob object? You know the drill by now..
326 if (object
->type
== OBJ_BLOB
) {
327 if (!revs
->blob_objects
)
329 if (flags
& UNINTERESTING
)
331 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
334 die("%s is unknown object", name
);
337 static int everybody_uninteresting(struct commit_list
*orig
,
338 struct commit
**interesting_cache
)
340 struct commit_list
*list
= orig
;
342 if (*interesting_cache
) {
343 struct commit
*commit
= *interesting_cache
;
344 if (!(commit
->object
.flags
& UNINTERESTING
))
349 struct commit
*commit
= list
->item
;
351 if (commit
->object
.flags
& UNINTERESTING
)
354 *interesting_cache
= commit
;
361 * A definition of "relevant" commit that we can use to simplify limited graphs
362 * by eliminating side branches.
364 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
365 * in our list), or that is a specified BOTTOM commit. Then after computing
366 * a limited list, during processing we can generally ignore boundary merges
367 * coming from outside the graph, (ie from irrelevant parents), and treat
368 * those merges as if they were single-parent. TREESAME is defined to consider
369 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
370 * we don't care if we were !TREESAME to non-graph parents.
372 * Treating bottom commits as relevant ensures that a limited graph's
373 * connection to the actual bottom commit is not viewed as a side branch, but
374 * treated as part of the graph. For example:
376 * ....Z...A---X---o---o---B
380 * When computing "A..B", the A-X connection is at least as important as
381 * Y-X, despite A being flagged UNINTERESTING.
383 * And when computing --ancestry-path "A..B", the A-X connection is more
384 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
386 static inline int relevant_commit(struct commit
*commit
)
388 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
392 * Return a single relevant commit from a parent list. If we are a TREESAME
393 * commit, and this selects one of our parents, then we can safely simplify to
396 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
397 struct commit_list
*orig
)
399 struct commit_list
*list
= orig
;
400 struct commit
*relevant
= NULL
;
406 * For 1-parent commits, or if first-parent-only, then return that
407 * first parent (even if not "relevant" by the above definition).
408 * TREESAME will have been set purely on that parent.
410 if (revs
->first_parent_only
|| !orig
->next
)
414 * For multi-parent commits, identify a sole relevant parent, if any.
415 * If we have only one relevant parent, then TREESAME will be set purely
416 * with regard to that parent, and we can simplify accordingly.
418 * If we have more than one relevant parent, or no relevant parents
419 * (and multiple irrelevant ones), then we can't select a parent here
423 struct commit
*commit
= list
->item
;
425 if (relevant_commit(commit
)) {
435 * The goal is to get REV_TREE_NEW as the result only if the
436 * diff consists of all '+' (and no other changes), REV_TREE_OLD
437 * if the whole diff is removal of old data, and otherwise
438 * REV_TREE_DIFFERENT (of course if the trees are the same we
439 * want REV_TREE_SAME).
441 * The only time we care about the distinction is when
442 * remove_empty_trees is in effect, in which case we care only about
443 * whether the whole change is REV_TREE_NEW, or if there's another type
444 * of change. Which means we can stop the diff early in either of these
447 * 1. We're not using remove_empty_trees at all.
449 * 2. We saw anything except REV_TREE_NEW.
451 static int tree_difference
= REV_TREE_SAME
;
453 static void file_add_remove(struct diff_options
*options
,
454 int addremove
, unsigned mode
,
455 const struct object_id
*oid
,
457 const char *fullpath
, unsigned dirty_submodule
)
459 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
460 struct rev_info
*revs
= options
->change_fn_data
;
462 tree_difference
|= diff
;
463 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
464 options
->flags
.has_changes
= 1;
467 static void file_change(struct diff_options
*options
,
468 unsigned old_mode
, unsigned new_mode
,
469 const struct object_id
*old_oid
,
470 const struct object_id
*new_oid
,
471 int old_oid_valid
, int new_oid_valid
,
472 const char *fullpath
,
473 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
475 tree_difference
= REV_TREE_DIFFERENT
;
476 options
->flags
.has_changes
= 1;
479 static int rev_compare_tree(struct rev_info
*revs
,
480 struct commit
*parent
, struct commit
*commit
)
482 struct tree
*t1
= get_commit_tree(parent
);
483 struct tree
*t2
= get_commit_tree(commit
);
490 if (revs
->simplify_by_decoration
) {
492 * If we are simplifying by decoration, then the commit
493 * is worth showing if it has a tag pointing at it.
495 if (get_name_decoration(&commit
->object
))
496 return REV_TREE_DIFFERENT
;
498 * A commit that is not pointed by a tag is uninteresting
499 * if we are not limited by path. This means that you will
500 * see the usual "commits that touch the paths" plus any
501 * tagged commit by specifying both --simplify-by-decoration
504 if (!revs
->prune_data
.nr
)
505 return REV_TREE_SAME
;
508 tree_difference
= REV_TREE_SAME
;
509 revs
->pruning
.flags
.has_changes
= 0;
510 if (diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "",
512 return REV_TREE_DIFFERENT
;
513 return tree_difference
;
516 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
519 struct tree
*t1
= get_commit_tree(commit
);
524 tree_difference
= REV_TREE_SAME
;
525 revs
->pruning
.flags
.has_changes
= 0;
526 retval
= diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
528 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
531 struct treesame_state
{
532 unsigned int nparents
;
533 unsigned char treesame
[FLEX_ARRAY
];
536 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
538 unsigned n
= commit_list_count(commit
->parents
);
539 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
541 add_decoration(&revs
->treesame
, &commit
->object
, st
);
546 * Must be called immediately after removing the nth_parent from a commit's
547 * parent list, if we are maintaining the per-parent treesame[] decoration.
548 * This does not recalculate the master TREESAME flag - update_treesame()
549 * should be called to update it after a sequence of treesame[] modifications
550 * that may have affected it.
552 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
554 struct treesame_state
*st
;
557 if (!commit
->parents
) {
559 * Have just removed the only parent from a non-merge.
560 * Different handling, as we lack decoration.
563 die("compact_treesame %u", nth_parent
);
564 old_same
= !!(commit
->object
.flags
& TREESAME
);
565 if (rev_same_tree_as_empty(revs
, commit
))
566 commit
->object
.flags
|= TREESAME
;
568 commit
->object
.flags
&= ~TREESAME
;
572 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
573 if (!st
|| nth_parent
>= st
->nparents
)
574 die("compact_treesame %u", nth_parent
);
576 old_same
= st
->treesame
[nth_parent
];
577 memmove(st
->treesame
+ nth_parent
,
578 st
->treesame
+ nth_parent
+ 1,
579 st
->nparents
- nth_parent
- 1);
582 * If we've just become a non-merge commit, update TREESAME
583 * immediately, and remove the no-longer-needed decoration.
584 * If still a merge, defer update until update_treesame().
586 if (--st
->nparents
== 1) {
587 if (commit
->parents
->next
)
588 die("compact_treesame parents mismatch");
589 if (st
->treesame
[0] && revs
->dense
)
590 commit
->object
.flags
|= TREESAME
;
592 commit
->object
.flags
&= ~TREESAME
;
593 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
599 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
601 if (commit
->parents
&& commit
->parents
->next
) {
603 struct treesame_state
*st
;
604 struct commit_list
*p
;
605 unsigned relevant_parents
;
606 unsigned relevant_change
, irrelevant_change
;
608 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
610 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
611 relevant_parents
= 0;
612 relevant_change
= irrelevant_change
= 0;
613 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
614 if (relevant_commit(p
->item
)) {
615 relevant_change
|= !st
->treesame
[n
];
618 irrelevant_change
|= !st
->treesame
[n
];
620 if (relevant_parents
? relevant_change
: irrelevant_change
)
621 commit
->object
.flags
&= ~TREESAME
;
623 commit
->object
.flags
|= TREESAME
;
626 return commit
->object
.flags
& TREESAME
;
629 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
632 * TREESAME is irrelevant unless prune && dense;
633 * if simplify_history is set, we can't have a mixture of TREESAME and
634 * !TREESAME INTERESTING parents (and we don't have treesame[]
635 * decoration anyway);
636 * if first_parent_only is set, then the TREESAME flag is locked
637 * against the first parent (and again we lack treesame[] decoration).
639 return revs
->prune
&& revs
->dense
&&
640 !revs
->simplify_history
&&
641 !revs
->first_parent_only
;
644 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
646 struct commit_list
**pp
, *parent
;
647 struct treesame_state
*ts
= NULL
;
648 int relevant_change
= 0, irrelevant_change
= 0;
649 int relevant_parents
, nth_parent
;
652 * If we don't do pruning, everything is interesting
657 if (!get_commit_tree(commit
))
660 if (!commit
->parents
) {
661 if (rev_same_tree_as_empty(revs
, commit
))
662 commit
->object
.flags
|= TREESAME
;
667 * Normal non-merge commit? If we don't want to make the
668 * history dense, we consider it always to be a change..
670 if (!revs
->dense
&& !commit
->parents
->next
)
673 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
674 (parent
= *pp
) != NULL
;
675 pp
= &parent
->next
, nth_parent
++) {
676 struct commit
*p
= parent
->item
;
677 if (relevant_commit(p
))
680 if (nth_parent
== 1) {
682 * This our second loop iteration - so we now know
683 * we're dealing with a merge.
685 * Do not compare with later parents when we care only about
686 * the first parent chain, in order to avoid derailing the
687 * traversal to follow a side branch that brought everything
688 * in the path we are limited to by the pathspec.
690 if (revs
->first_parent_only
)
693 * If this will remain a potentially-simplifiable
694 * merge, remember per-parent treesame if needed.
695 * Initialise the array with the comparison from our
698 if (revs
->treesame
.name
&&
699 !revs
->simplify_history
&&
700 !(commit
->object
.flags
& UNINTERESTING
)) {
701 ts
= initialise_treesame(revs
, commit
);
702 if (!(irrelevant_change
|| relevant_change
))
706 if (parse_commit(p
) < 0)
707 die("cannot simplify commit %s (because of %s)",
708 oid_to_hex(&commit
->object
.oid
),
709 oid_to_hex(&p
->object
.oid
));
710 switch (rev_compare_tree(revs
, p
, commit
)) {
712 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
713 /* Even if a merge with an uninteresting
714 * side branch brought the entire change
715 * we are interested in, we do not want
716 * to lose the other branches of this
717 * merge, so we just keep going.
720 ts
->treesame
[nth_parent
] = 1;
724 commit
->parents
= parent
;
725 commit
->object
.flags
|= TREESAME
;
729 if (revs
->remove_empty_trees
&&
730 rev_same_tree_as_empty(revs
, p
)) {
731 /* We are adding all the specified
732 * paths from this parent, so the
733 * history beyond this parent is not
734 * interesting. Remove its parents
735 * (they are grandparents for us).
736 * IOW, we pretend this parent is a
739 if (parse_commit(p
) < 0)
740 die("cannot simplify commit %s (invalid %s)",
741 oid_to_hex(&commit
->object
.oid
),
742 oid_to_hex(&p
->object
.oid
));
747 case REV_TREE_DIFFERENT
:
748 if (relevant_commit(p
))
751 irrelevant_change
= 1;
754 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
758 * TREESAME is straightforward for single-parent commits. For merge
759 * commits, it is most useful to define it so that "irrelevant"
760 * parents cannot make us !TREESAME - if we have any relevant
761 * parents, then we only consider TREESAMEness with respect to them,
762 * allowing irrelevant merges from uninteresting branches to be
763 * simplified away. Only if we have only irrelevant parents do we
764 * base TREESAME on them. Note that this logic is replicated in
765 * update_treesame, which should be kept in sync.
767 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
768 commit
->object
.flags
|= TREESAME
;
771 static void commit_list_insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
772 struct commit_list
*cached_base
, struct commit_list
**cache
)
774 struct commit_list
*new_entry
;
776 if (cached_base
&& p
->date
< cached_base
->item
->date
)
777 new_entry
= commit_list_insert_by_date(p
, &cached_base
->next
);
779 new_entry
= commit_list_insert_by_date(p
, head
);
781 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
785 static int process_parents(struct rev_info
*revs
, struct commit
*commit
,
786 struct commit_list
**list
, struct commit_list
**cache_ptr
)
788 struct commit_list
*parent
= commit
->parents
;
790 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
792 if (commit
->object
.flags
& ADDED
)
794 commit
->object
.flags
|= ADDED
;
796 if (revs
->include_check
&&
797 !revs
->include_check(commit
, revs
->include_check_data
))
801 * If the commit is uninteresting, don't try to
802 * prune parents - we want the maximal uninteresting
805 * Normally we haven't parsed the parent
806 * yet, so we won't have a parent of a parent
807 * here. However, it may turn out that we've
808 * reached this commit some other way (where it
809 * wasn't uninteresting), in which case we need
810 * to mark its parents recursively too..
812 if (commit
->object
.flags
& UNINTERESTING
) {
814 struct commit
*p
= parent
->item
;
815 parent
= parent
->next
;
817 p
->object
.flags
|= UNINTERESTING
;
818 if (parse_commit_gently(p
, 1) < 0)
821 mark_parents_uninteresting(p
);
822 if (p
->object
.flags
& SEEN
)
824 p
->object
.flags
|= SEEN
;
826 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
832 * Ok, the commit wasn't uninteresting. Try to
833 * simplify the commit history and find the parent
834 * that has no differences in the path set if one exists.
836 try_to_simplify_commit(revs
, commit
);
841 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
843 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
844 struct commit
*p
= parent
->item
;
845 int gently
= revs
->ignore_missing_links
||
846 revs
->exclude_promisor_objects
;
847 if (parse_commit_gently(p
, gently
) < 0) {
848 if (revs
->exclude_promisor_objects
&&
849 is_promisor_object(&p
->object
.oid
)) {
850 if (revs
->first_parent_only
)
857 char **slot
= revision_sources_at(revs
->sources
, p
);
860 *slot
= *revision_sources_at(revs
->sources
, commit
);
862 p
->object
.flags
|= left_flag
;
863 if (!(p
->object
.flags
& SEEN
)) {
864 p
->object
.flags
|= SEEN
;
866 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
868 if (revs
->first_parent_only
)
874 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
876 struct commit_list
*p
;
877 int left_count
= 0, right_count
= 0;
879 struct patch_ids ids
;
880 unsigned cherry_flag
;
882 /* First count the commits on the left and on the right */
883 for (p
= list
; p
; p
= p
->next
) {
884 struct commit
*commit
= p
->item
;
885 unsigned flags
= commit
->object
.flags
;
886 if (flags
& BOUNDARY
)
888 else if (flags
& SYMMETRIC_LEFT
)
894 if (!left_count
|| !right_count
)
897 left_first
= left_count
< right_count
;
898 init_patch_ids(revs
->repo
, &ids
);
899 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
901 /* Compute patch-ids for one side */
902 for (p
= list
; p
; p
= p
->next
) {
903 struct commit
*commit
= p
->item
;
904 unsigned flags
= commit
->object
.flags
;
906 if (flags
& BOUNDARY
)
909 * If we have fewer left, left_first is set and we omit
910 * commits on the right branch in this loop. If we have
911 * fewer right, we skip the left ones.
913 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
915 add_commit_patch_id(commit
, &ids
);
918 /* either cherry_mark or cherry_pick are true */
919 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
921 /* Check the other side */
922 for (p
= list
; p
; p
= p
->next
) {
923 struct commit
*commit
= p
->item
;
925 unsigned flags
= commit
->object
.flags
;
927 if (flags
& BOUNDARY
)
930 * If we have fewer left, left_first is set and we omit
931 * commits on the left branch in this loop.
933 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
937 * Have we seen the same patch id?
939 id
= has_commit_patch_id(commit
, &ids
);
943 commit
->object
.flags
|= cherry_flag
;
944 id
->commit
->object
.flags
|= cherry_flag
;
947 free_patch_ids(&ids
);
950 /* How many extra uninteresting commits we want to see.. */
953 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
954 struct commit
**interesting_cache
)
957 * No source list at all? We're definitely done..
963 * Does the destination list contain entries with a date
964 * before the source list? Definitely _not_ done.
966 if (date
<= src
->item
->date
)
970 * Does the source list still have interesting commits in
971 * it? Definitely not done..
973 if (!everybody_uninteresting(src
, interesting_cache
))
976 /* Ok, we're closing in.. */
981 * "rev-list --ancestry-path A..B" computes commits that are ancestors
982 * of B but not ancestors of A but further limits the result to those
983 * that are descendants of A. This takes the list of bottom commits and
984 * the result of "A..B" without --ancestry-path, and limits the latter
985 * further to the ones that can reach one of the commits in "bottom".
987 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
989 struct commit_list
*p
;
990 struct commit_list
*rlist
= NULL
;
994 * Reverse the list so that it will be likely that we would
995 * process parents before children.
997 for (p
= list
; p
; p
= p
->next
)
998 commit_list_insert(p
->item
, &rlist
);
1000 for (p
= bottom
; p
; p
= p
->next
)
1001 p
->item
->object
.flags
|= TMP_MARK
;
1004 * Mark the ones that can reach bottom commits in "list",
1005 * in a bottom-up fashion.
1009 for (p
= rlist
; p
; p
= p
->next
) {
1010 struct commit
*c
= p
->item
;
1011 struct commit_list
*parents
;
1012 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
1014 for (parents
= c
->parents
;
1016 parents
= parents
->next
) {
1017 if (!(parents
->item
->object
.flags
& TMP_MARK
))
1019 c
->object
.flags
|= TMP_MARK
;
1024 } while (made_progress
);
1027 * NEEDSWORK: decide if we want to remove parents that are
1028 * not marked with TMP_MARK from commit->parents for commits
1029 * in the resulting list. We may not want to do that, though.
1033 * The ones that are not marked with TMP_MARK are uninteresting
1035 for (p
= list
; p
; p
= p
->next
) {
1036 struct commit
*c
= p
->item
;
1037 if (c
->object
.flags
& TMP_MARK
)
1039 c
->object
.flags
|= UNINTERESTING
;
1042 /* We are done with the TMP_MARK */
1043 for (p
= list
; p
; p
= p
->next
)
1044 p
->item
->object
.flags
&= ~TMP_MARK
;
1045 for (p
= bottom
; p
; p
= p
->next
)
1046 p
->item
->object
.flags
&= ~TMP_MARK
;
1047 free_commit_list(rlist
);
1051 * Before walking the history, keep the set of "negative" refs the
1052 * caller has asked to exclude.
1054 * This is used to compute "rev-list --ancestry-path A..B", as we need
1055 * to filter the result of "A..B" further to the ones that can actually
1058 static struct commit_list
*collect_bottom_commits(struct commit_list
*list
)
1060 struct commit_list
*elem
, *bottom
= NULL
;
1061 for (elem
= list
; elem
; elem
= elem
->next
)
1062 if (elem
->item
->object
.flags
& BOTTOM
)
1063 commit_list_insert(elem
->item
, &bottom
);
1067 /* Assumes either left_only or right_only is set */
1068 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1070 struct commit_list
*p
;
1072 for (p
= list
; p
; p
= p
->next
) {
1073 struct commit
*commit
= p
->item
;
1075 if (revs
->right_only
) {
1076 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1077 commit
->object
.flags
|= SHOWN
;
1078 } else /* revs->left_only is set */
1079 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1080 commit
->object
.flags
|= SHOWN
;
1084 static int limit_list(struct rev_info
*revs
)
1087 timestamp_t date
= TIME_MAX
;
1088 struct commit_list
*list
= revs
->commits
;
1089 struct commit_list
*newlist
= NULL
;
1090 struct commit_list
**p
= &newlist
;
1091 struct commit_list
*bottom
= NULL
;
1092 struct commit
*interesting_cache
= NULL
;
1094 if (revs
->ancestry_path
) {
1095 bottom
= collect_bottom_commits(list
);
1097 die("--ancestry-path given but there are no bottom commits");
1101 struct commit
*commit
= pop_commit(&list
);
1102 struct object
*obj
= &commit
->object
;
1103 show_early_output_fn_t show
;
1105 if (commit
== interesting_cache
)
1106 interesting_cache
= NULL
;
1108 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1109 obj
->flags
|= UNINTERESTING
;
1110 if (process_parents(revs
, commit
, &list
, NULL
) < 0)
1112 if (obj
->flags
& UNINTERESTING
) {
1113 mark_parents_uninteresting(commit
);
1114 slop
= still_interesting(list
, date
, slop
, &interesting_cache
);
1119 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1121 date
= commit
->date
;
1122 p
= &commit_list_insert(commit
, p
)->next
;
1124 show
= show_early_output
;
1128 show(revs
, newlist
);
1129 show_early_output
= NULL
;
1131 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1132 cherry_pick_list(newlist
, revs
);
1134 if (revs
->left_only
|| revs
->right_only
)
1135 limit_left_right(newlist
, revs
);
1138 limit_to_ancestry(bottom
, newlist
);
1139 free_commit_list(bottom
);
1143 * Check if any commits have become TREESAME by some of their parents
1144 * becoming UNINTERESTING.
1146 if (limiting_can_increase_treesame(revs
))
1147 for (list
= newlist
; list
; list
= list
->next
) {
1148 struct commit
*c
= list
->item
;
1149 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1151 update_treesame(revs
, c
);
1154 revs
->commits
= newlist
;
1159 * Add an entry to refs->cmdline with the specified information.
1162 static void add_rev_cmdline(struct rev_info
*revs
,
1163 struct object
*item
,
1168 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1169 unsigned int nr
= info
->nr
;
1171 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1172 info
->rev
[nr
].item
= item
;
1173 info
->rev
[nr
].name
= xstrdup(name
);
1174 info
->rev
[nr
].whence
= whence
;
1175 info
->rev
[nr
].flags
= flags
;
1179 static void add_rev_cmdline_list(struct rev_info
*revs
,
1180 struct commit_list
*commit_list
,
1184 while (commit_list
) {
1185 struct object
*object
= &commit_list
->item
->object
;
1186 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1188 commit_list
= commit_list
->next
;
1192 struct all_refs_cb
{
1194 int warned_bad_reflog
;
1195 struct rev_info
*all_revs
;
1196 const char *name_for_errormsg
;
1197 struct worktree
*wt
;
1200 int ref_excluded(struct string_list
*ref_excludes
, const char *path
)
1202 struct string_list_item
*item
;
1206 for_each_string_list_item(item
, ref_excludes
) {
1207 if (!wildmatch(item
->string
, path
, 0))
1213 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1214 int flag
, void *cb_data
)
1216 struct all_refs_cb
*cb
= cb_data
;
1217 struct object
*object
;
1219 if (ref_excluded(cb
->all_revs
->ref_excludes
, path
))
1222 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1223 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1224 add_pending_oid(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1228 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1231 cb
->all_revs
= revs
;
1232 cb
->all_flags
= flags
;
1233 revs
->rev_input_given
= 1;
1237 void clear_ref_exclusion(struct string_list
**ref_excludes_p
)
1239 if (*ref_excludes_p
) {
1240 string_list_clear(*ref_excludes_p
, 0);
1241 free(*ref_excludes_p
);
1243 *ref_excludes_p
= NULL
;
1246 void add_ref_exclusion(struct string_list
**ref_excludes_p
, const char *exclude
)
1248 if (!*ref_excludes_p
) {
1249 *ref_excludes_p
= xcalloc(1, sizeof(**ref_excludes_p
));
1250 (*ref_excludes_p
)->strdup_strings
= 1;
1252 string_list_append(*ref_excludes_p
, exclude
);
1255 static void handle_refs(struct ref_store
*refs
,
1256 struct rev_info
*revs
, unsigned flags
,
1257 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1259 struct all_refs_cb cb
;
1262 /* this could happen with uninitialized submodules */
1266 init_all_refs_cb(&cb
, revs
, flags
);
1267 for_each(refs
, handle_one_ref
, &cb
);
1270 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1272 struct all_refs_cb
*cb
= cb_data
;
1273 if (!is_null_oid(oid
)) {
1274 struct object
*o
= parse_object(cb
->all_revs
->repo
, oid
);
1276 o
->flags
|= cb
->all_flags
;
1277 /* ??? CMDLINEFLAGS ??? */
1278 add_pending_object(cb
->all_revs
, o
, "");
1280 else if (!cb
->warned_bad_reflog
) {
1281 warning("reflog of '%s' references pruned commits",
1282 cb
->name_for_errormsg
);
1283 cb
->warned_bad_reflog
= 1;
1288 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1289 const char *email
, timestamp_t timestamp
, int tz
,
1290 const char *message
, void *cb_data
)
1292 handle_one_reflog_commit(ooid
, cb_data
);
1293 handle_one_reflog_commit(noid
, cb_data
);
1297 static int handle_one_reflog(const char *refname_in_wt
,
1298 const struct object_id
*oid
,
1299 int flag
, void *cb_data
)
1301 struct all_refs_cb
*cb
= cb_data
;
1302 struct strbuf refname
= STRBUF_INIT
;
1304 cb
->warned_bad_reflog
= 0;
1305 strbuf_worktree_ref(cb
->wt
, &refname
, refname_in_wt
);
1306 cb
->name_for_errormsg
= refname
.buf
;
1307 refs_for_each_reflog_ent(get_main_ref_store(the_repository
),
1309 handle_one_reflog_ent
, cb_data
);
1310 strbuf_release(&refname
);
1314 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1316 struct worktree
**worktrees
, **p
;
1318 worktrees
= get_worktrees(0);
1319 for (p
= worktrees
; *p
; p
++) {
1320 struct worktree
*wt
= *p
;
1326 refs_for_each_reflog(get_worktree_ref_store(wt
),
1330 free_worktrees(worktrees
);
1333 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1335 struct all_refs_cb cb
;
1338 cb
.all_flags
= flags
;
1340 for_each_reflog(handle_one_reflog
, &cb
);
1342 if (!revs
->single_worktree
)
1343 add_other_reflogs_to_pending(&cb
);
1346 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1347 struct strbuf
*path
, unsigned int flags
)
1349 size_t baselen
= path
->len
;
1352 if (it
->entry_count
>= 0) {
1353 struct tree
*tree
= lookup_tree(revs
->repo
, &it
->oid
);
1354 tree
->object
.flags
|= flags
;
1355 add_pending_object_with_path(revs
, &tree
->object
, "",
1359 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1360 struct cache_tree_sub
*sub
= it
->down
[i
];
1361 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1362 add_cache_tree(sub
->cache_tree
, revs
, path
, flags
);
1363 strbuf_setlen(path
, baselen
);
1368 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1369 struct index_state
*istate
,
1374 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1375 struct cache_entry
*ce
= istate
->cache
[i
];
1378 if (S_ISGITLINK(ce
->ce_mode
))
1381 blob
= lookup_blob(revs
->repo
, &ce
->oid
);
1383 die("unable to add index blob to traversal");
1384 blob
->object
.flags
|= flags
;
1385 add_pending_object_with_path(revs
, &blob
->object
, "",
1386 ce
->ce_mode
, ce
->name
);
1389 if (istate
->cache_tree
) {
1390 struct strbuf path
= STRBUF_INIT
;
1391 add_cache_tree(istate
->cache_tree
, revs
, &path
, flags
);
1392 strbuf_release(&path
);
1396 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1398 struct worktree
**worktrees
, **p
;
1400 read_index(revs
->repo
->index
);
1401 do_add_index_objects_to_pending(revs
, revs
->repo
->index
, flags
);
1403 if (revs
->single_worktree
)
1406 worktrees
= get_worktrees(0);
1407 for (p
= worktrees
; *p
; p
++) {
1408 struct worktree
*wt
= *p
;
1409 struct index_state istate
= { NULL
};
1412 continue; /* current index already taken care of */
1414 if (read_index_from(&istate
,
1415 worktree_git_path(wt
, "index"),
1416 get_worktree_git_dir(wt
)) > 0)
1417 do_add_index_objects_to_pending(revs
, &istate
, flags
);
1418 discard_index(&istate
);
1420 free_worktrees(worktrees
);
1423 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1426 struct object_id oid
;
1428 struct commit
*commit
;
1429 struct commit_list
*parents
;
1431 const char *arg
= arg_
;
1434 flags
^= UNINTERESTING
| BOTTOM
;
1437 if (get_oid_committish(arg
, &oid
))
1440 it
= get_reference(revs
, arg
, &oid
, 0);
1441 if (!it
&& revs
->ignore_missing
)
1443 if (it
->type
!= OBJ_TAG
)
1445 if (!((struct tag
*)it
)->tagged
)
1447 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1449 if (it
->type
!= OBJ_COMMIT
)
1451 commit
= (struct commit
*)it
;
1452 if (exclude_parent
&&
1453 exclude_parent
> commit_list_count(commit
->parents
))
1455 for (parents
= commit
->parents
, parent_number
= 1;
1457 parents
= parents
->next
, parent_number
++) {
1458 if (exclude_parent
&& parent_number
!= exclude_parent
)
1461 it
= &parents
->item
->object
;
1463 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1464 add_pending_object(revs
, it
, arg
);
1469 void repo_init_revisions(struct repository
*r
,
1470 struct rev_info
*revs
,
1473 memset(revs
, 0, sizeof(*revs
));
1476 revs
->abbrev
= DEFAULT_ABBREV
;
1477 revs
->ignore_merges
= 1;
1478 revs
->simplify_history
= 1;
1479 revs
->pruning
.repo
= r
;
1480 revs
->pruning
.flags
.recursive
= 1;
1481 revs
->pruning
.flags
.quick
= 1;
1482 revs
->pruning
.add_remove
= file_add_remove
;
1483 revs
->pruning
.change
= file_change
;
1484 revs
->pruning
.change_fn_data
= revs
;
1485 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
1487 revs
->prefix
= prefix
;
1490 revs
->skip_count
= -1;
1491 revs
->max_count
= -1;
1492 revs
->max_parents
= -1;
1493 revs
->expand_tabs_in_log
= -1;
1495 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1496 revs
->expand_tabs_in_log_default
= 8;
1498 init_grep_defaults(revs
->repo
);
1499 grep_init(&revs
->grep_filter
, revs
->repo
, prefix
);
1500 revs
->grep_filter
.status_only
= 1;
1502 repo_diff_setup(revs
->repo
, &revs
->diffopt
);
1503 if (prefix
&& !revs
->diffopt
.prefix
) {
1504 revs
->diffopt
.prefix
= prefix
;
1505 revs
->diffopt
.prefix_length
= strlen(prefix
);
1508 revs
->notes_opt
.use_default_notes
= -1;
1511 static void add_pending_commit_list(struct rev_info
*revs
,
1512 struct commit_list
*commit_list
,
1515 while (commit_list
) {
1516 struct object
*object
= &commit_list
->item
->object
;
1517 object
->flags
|= flags
;
1518 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1519 commit_list
= commit_list
->next
;
1523 static void prepare_show_merge(struct rev_info
*revs
)
1525 struct commit_list
*bases
;
1526 struct commit
*head
, *other
;
1527 struct object_id oid
;
1528 const char **prune
= NULL
;
1529 int i
, prune_num
= 1; /* counting terminating NULL */
1530 struct index_state
*istate
= revs
->repo
->index
;
1532 if (get_oid("HEAD", &oid
))
1533 die("--merge without HEAD?");
1534 head
= lookup_commit_or_die(&oid
, "HEAD");
1535 if (get_oid("MERGE_HEAD", &oid
))
1536 die("--merge without MERGE_HEAD?");
1537 other
= lookup_commit_or_die(&oid
, "MERGE_HEAD");
1538 add_pending_object(revs
, &head
->object
, "HEAD");
1539 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1540 bases
= get_merge_bases(head
, other
);
1541 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
1542 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
1543 free_commit_list(bases
);
1544 head
->object
.flags
|= SYMMETRIC_LEFT
;
1546 if (!istate
->cache_nr
)
1548 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1549 const struct cache_entry
*ce
= istate
->cache
[i
];
1552 if (ce_path_match(istate
, ce
, &revs
->prune_data
, NULL
)) {
1554 REALLOC_ARRAY(prune
, prune_num
);
1555 prune
[prune_num
-2] = ce
->name
;
1556 prune
[prune_num
-1] = NULL
;
1558 while ((i
+1 < istate
->cache_nr
) &&
1559 ce_same_name(ce
, istate
->cache
[i
+1]))
1562 clear_pathspec(&revs
->prune_data
);
1563 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1564 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
1568 static int dotdot_missing(const char *arg
, char *dotdot
,
1569 struct rev_info
*revs
, int symmetric
)
1571 if (revs
->ignore_missing
)
1573 /* de-munge so we report the full argument */
1576 ? "Invalid symmetric difference expression %s"
1577 : "Invalid revision range %s", arg
);
1580 static int handle_dotdot_1(const char *arg
, char *dotdot
,
1581 struct rev_info
*revs
, int flags
,
1582 int cant_be_filename
,
1583 struct object_context
*a_oc
,
1584 struct object_context
*b_oc
)
1586 const char *a_name
, *b_name
;
1587 struct object_id a_oid
, b_oid
;
1588 struct object
*a_obj
, *b_obj
;
1589 unsigned int a_flags
, b_flags
;
1591 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
1592 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
1598 b_name
= dotdot
+ 2;
1599 if (*b_name
== '.') {
1606 if (get_oid_with_context(a_name
, oc_flags
, &a_oid
, a_oc
) ||
1607 get_oid_with_context(b_name
, oc_flags
, &b_oid
, b_oc
))
1610 if (!cant_be_filename
) {
1612 verify_non_filename(revs
->prefix
, arg
);
1616 a_obj
= parse_object(revs
->repo
, &a_oid
);
1617 b_obj
= parse_object(revs
->repo
, &b_oid
);
1618 if (!a_obj
|| !b_obj
)
1619 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1624 a_flags
= flags_exclude
;
1626 /* A...B -- find merge bases between the two */
1627 struct commit
*a
, *b
;
1628 struct commit_list
*exclude
;
1630 a
= lookup_commit_reference(revs
->repo
, &a_obj
->oid
);
1631 b
= lookup_commit_reference(revs
->repo
, &b_obj
->oid
);
1633 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1635 exclude
= get_merge_bases(a
, b
);
1636 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
1638 add_pending_commit_list(revs
, exclude
, flags_exclude
);
1639 free_commit_list(exclude
);
1642 a_flags
= flags
| SYMMETRIC_LEFT
;
1645 a_obj
->flags
|= a_flags
;
1646 b_obj
->flags
|= b_flags
;
1647 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
1648 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
1649 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
1650 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
1654 static int handle_dotdot(const char *arg
,
1655 struct rev_info
*revs
, int flags
,
1656 int cant_be_filename
)
1658 struct object_context a_oc
, b_oc
;
1659 char *dotdot
= strstr(arg
, "..");
1665 memset(&a_oc
, 0, sizeof(a_oc
));
1666 memset(&b_oc
, 0, sizeof(b_oc
));
1669 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
1679 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
1681 struct object_context oc
;
1683 struct object
*object
;
1684 struct object_id oid
;
1686 const char *arg
= arg_
;
1687 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
1688 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
1690 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
1692 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
1694 * Just ".."? That is not a range but the
1695 * pathspec for the parent directory.
1700 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
1703 mark
= strstr(arg
, "^@");
1704 if (mark
&& !mark
[2]) {
1706 if (add_parents_only(revs
, arg
, flags
, 0))
1710 mark
= strstr(arg
, "^!");
1711 if (mark
&& !mark
[2]) {
1713 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
1716 mark
= strstr(arg
, "^-");
1718 int exclude_parent
= 1;
1722 exclude_parent
= strtoul(mark
+ 2, &end
, 10);
1723 if (*end
!= '\0' || !exclude_parent
)
1728 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
1734 local_flags
= UNINTERESTING
| BOTTOM
;
1738 if (revarg_opt
& REVARG_COMMITTISH
)
1739 get_sha1_flags
|= GET_OID_COMMITTISH
;
1741 if (get_oid_with_context(arg
, get_sha1_flags
, &oid
, &oc
))
1742 return revs
->ignore_missing
? 0 : -1;
1743 if (!cant_be_filename
)
1744 verify_non_filename(revs
->prefix
, arg
);
1745 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
1747 return revs
->ignore_missing
? 0 : -1;
1748 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
1749 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
1754 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
,
1755 struct argv_array
*prune
)
1757 while (strbuf_getline(sb
, stdin
) != EOF
)
1758 argv_array_push(prune
, sb
->buf
);
1761 static void read_revisions_from_stdin(struct rev_info
*revs
,
1762 struct argv_array
*prune
)
1765 int seen_dashdash
= 0;
1768 save_warning
= warn_on_object_refname_ambiguity
;
1769 warn_on_object_refname_ambiguity
= 0;
1771 strbuf_init(&sb
, 1000);
1772 while (strbuf_getline(&sb
, stdin
) != EOF
) {
1776 if (sb
.buf
[0] == '-') {
1777 if (len
== 2 && sb
.buf
[1] == '-') {
1781 die("options not supported in --stdin mode");
1783 if (handle_revision_arg(sb
.buf
, revs
, 0,
1784 REVARG_CANNOT_BE_FILENAME
))
1785 die("bad revision '%s'", sb
.buf
);
1788 read_pathspec_from_stdin(revs
, &sb
, prune
);
1790 strbuf_release(&sb
);
1791 warn_on_object_refname_ambiguity
= save_warning
;
1794 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1796 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1799 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1801 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1804 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1806 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1809 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1810 int *unkc
, const char **unkv
,
1811 const struct setup_revision_opt
* opt
)
1813 const char *arg
= argv
[0];
1816 const unsigned hexsz
= the_hash_algo
->hexsz
;
1818 /* pseudo revision arguments */
1819 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1820 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1821 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1822 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1823 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
1824 !strcmp(arg
, "--indexed-objects") ||
1825 starts_with(arg
, "--exclude=") ||
1826 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
1827 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
1829 unkv
[(*unkc
)++] = arg
;
1833 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
1834 revs
->max_count
= atoi(optarg
);
1837 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
1838 revs
->skip_count
= atoi(optarg
);
1840 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1841 /* accept -<digit>, like traditional "head" */
1842 if (strtol_i(arg
+ 1, 10, &revs
->max_count
) < 0 ||
1843 revs
->max_count
< 0)
1844 die("'%s': not a non-negative integer", arg
+ 1);
1846 } else if (!strcmp(arg
, "-n")) {
1848 return error("-n requires an argument");
1849 revs
->max_count
= atoi(argv
[1]);
1852 } else if (skip_prefix(arg
, "-n", &optarg
)) {
1853 revs
->max_count
= atoi(optarg
);
1855 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
1856 revs
->max_age
= atoi(optarg
);
1858 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
1859 revs
->max_age
= approxidate(optarg
);
1861 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
1862 revs
->max_age
= approxidate(optarg
);
1864 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
1865 revs
->min_age
= atoi(optarg
);
1867 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
1868 revs
->min_age
= approxidate(optarg
);
1870 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
1871 revs
->min_age
= approxidate(optarg
);
1873 } else if (!strcmp(arg
, "--first-parent")) {
1874 revs
->first_parent_only
= 1;
1875 } else if (!strcmp(arg
, "--ancestry-path")) {
1876 revs
->ancestry_path
= 1;
1877 revs
->simplify_history
= 0;
1879 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1880 init_reflog_walk(&revs
->reflog_info
);
1881 } else if (!strcmp(arg
, "--default")) {
1883 return error("bad --default argument");
1884 revs
->def
= argv
[1];
1886 } else if (!strcmp(arg
, "--merge")) {
1887 revs
->show_merge
= 1;
1888 } else if (!strcmp(arg
, "--topo-order")) {
1889 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
1890 revs
->topo_order
= 1;
1891 } else if (!strcmp(arg
, "--simplify-merges")) {
1892 revs
->simplify_merges
= 1;
1893 revs
->topo_order
= 1;
1894 revs
->rewrite_parents
= 1;
1895 revs
->simplify_history
= 0;
1897 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1898 revs
->simplify_merges
= 1;
1899 revs
->topo_order
= 1;
1900 revs
->rewrite_parents
= 1;
1901 revs
->simplify_history
= 0;
1902 revs
->simplify_by_decoration
= 1;
1905 load_ref_decorations(NULL
, DECORATE_SHORT_REFS
);
1906 } else if (!strcmp(arg
, "--date-order")) {
1907 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
1908 revs
->topo_order
= 1;
1909 } else if (!strcmp(arg
, "--author-date-order")) {
1910 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
1911 revs
->topo_order
= 1;
1912 } else if (!strcmp(arg
, "--early-output")) {
1913 revs
->early_output
= 100;
1914 revs
->topo_order
= 1;
1915 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
1916 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
1917 die("'%s': not a non-negative integer", optarg
);
1918 revs
->topo_order
= 1;
1919 } else if (!strcmp(arg
, "--parents")) {
1920 revs
->rewrite_parents
= 1;
1921 revs
->print_parents
= 1;
1922 } else if (!strcmp(arg
, "--dense")) {
1924 } else if (!strcmp(arg
, "--sparse")) {
1926 } else if (!strcmp(arg
, "--in-commit-order")) {
1927 revs
->tree_blobs_in_commit_order
= 1;
1928 } else if (!strcmp(arg
, "--remove-empty")) {
1929 revs
->remove_empty_trees
= 1;
1930 } else if (!strcmp(arg
, "--merges")) {
1931 revs
->min_parents
= 2;
1932 } else if (!strcmp(arg
, "--no-merges")) {
1933 revs
->max_parents
= 1;
1934 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
1935 revs
->min_parents
= atoi(optarg
);
1936 } else if (!strcmp(arg
, "--no-min-parents")) {
1937 revs
->min_parents
= 0;
1938 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
1939 revs
->max_parents
= atoi(optarg
);
1940 } else if (!strcmp(arg
, "--no-max-parents")) {
1941 revs
->max_parents
= -1;
1942 } else if (!strcmp(arg
, "--boundary")) {
1944 } else if (!strcmp(arg
, "--left-right")) {
1945 revs
->left_right
= 1;
1946 } else if (!strcmp(arg
, "--left-only")) {
1947 if (revs
->right_only
)
1948 die("--left-only is incompatible with --right-only"
1950 revs
->left_only
= 1;
1951 } else if (!strcmp(arg
, "--right-only")) {
1952 if (revs
->left_only
)
1953 die("--right-only is incompatible with --left-only");
1954 revs
->right_only
= 1;
1955 } else if (!strcmp(arg
, "--cherry")) {
1956 if (revs
->left_only
)
1957 die("--cherry is incompatible with --left-only");
1958 revs
->cherry_mark
= 1;
1959 revs
->right_only
= 1;
1960 revs
->max_parents
= 1;
1962 } else if (!strcmp(arg
, "--count")) {
1964 } else if (!strcmp(arg
, "--cherry-mark")) {
1965 if (revs
->cherry_pick
)
1966 die("--cherry-mark is incompatible with --cherry-pick");
1967 revs
->cherry_mark
= 1;
1968 revs
->limited
= 1; /* needs limit_list() */
1969 } else if (!strcmp(arg
, "--cherry-pick")) {
1970 if (revs
->cherry_mark
)
1971 die("--cherry-pick is incompatible with --cherry-mark");
1972 revs
->cherry_pick
= 1;
1974 } else if (!strcmp(arg
, "--objects")) {
1975 revs
->tag_objects
= 1;
1976 revs
->tree_objects
= 1;
1977 revs
->blob_objects
= 1;
1978 } else if (!strcmp(arg
, "--objects-edge")) {
1979 revs
->tag_objects
= 1;
1980 revs
->tree_objects
= 1;
1981 revs
->blob_objects
= 1;
1982 revs
->edge_hint
= 1;
1983 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
1984 revs
->tag_objects
= 1;
1985 revs
->tree_objects
= 1;
1986 revs
->blob_objects
= 1;
1987 revs
->edge_hint
= 1;
1988 revs
->edge_hint_aggressive
= 1;
1989 } else if (!strcmp(arg
, "--verify-objects")) {
1990 revs
->tag_objects
= 1;
1991 revs
->tree_objects
= 1;
1992 revs
->blob_objects
= 1;
1993 revs
->verify_objects
= 1;
1994 } else if (!strcmp(arg
, "--unpacked")) {
1996 } else if (starts_with(arg
, "--unpacked=")) {
1997 die("--unpacked=<packfile> no longer supported.");
1998 } else if (!strcmp(arg
, "-r")) {
2000 revs
->diffopt
.flags
.recursive
= 1;
2001 } else if (!strcmp(arg
, "-t")) {
2003 revs
->diffopt
.flags
.recursive
= 1;
2004 revs
->diffopt
.flags
.tree_in_recursive
= 1;
2005 } else if (!strcmp(arg
, "-m")) {
2006 revs
->ignore_merges
= 0;
2007 } else if (!strcmp(arg
, "-c")) {
2009 revs
->dense_combined_merges
= 0;
2010 revs
->combine_merges
= 1;
2011 } else if (!strcmp(arg
, "--cc")) {
2013 revs
->dense_combined_merges
= 1;
2014 revs
->combine_merges
= 1;
2015 } else if (!strcmp(arg
, "-v")) {
2016 revs
->verbose_header
= 1;
2017 } else if (!strcmp(arg
, "--pretty")) {
2018 revs
->verbose_header
= 1;
2019 revs
->pretty_given
= 1;
2020 get_commit_format(NULL
, revs
);
2021 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
2022 skip_prefix(arg
, "--format=", &optarg
)) {
2024 * Detached form ("--pretty X" as opposed to "--pretty=X")
2025 * not allowed, since the argument is optional.
2027 revs
->verbose_header
= 1;
2028 revs
->pretty_given
= 1;
2029 get_commit_format(optarg
, revs
);
2030 } else if (!strcmp(arg
, "--expand-tabs")) {
2031 revs
->expand_tabs_in_log
= 8;
2032 } else if (!strcmp(arg
, "--no-expand-tabs")) {
2033 revs
->expand_tabs_in_log
= 0;
2034 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
2036 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
2037 die("'%s': not a non-negative integer", arg
);
2038 revs
->expand_tabs_in_log
= val
;
2039 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
2040 revs
->show_notes
= 1;
2041 revs
->show_notes_given
= 1;
2042 revs
->notes_opt
.use_default_notes
= 1;
2043 } else if (!strcmp(arg
, "--show-signature")) {
2044 revs
->show_signature
= 1;
2045 } else if (!strcmp(arg
, "--no-show-signature")) {
2046 revs
->show_signature
= 0;
2047 } else if (!strcmp(arg
, "--show-linear-break")) {
2048 revs
->break_bar
= " ..........";
2049 revs
->track_linear
= 1;
2050 revs
->track_first_time
= 1;
2051 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
2052 revs
->break_bar
= xstrdup(optarg
);
2053 revs
->track_linear
= 1;
2054 revs
->track_first_time
= 1;
2055 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
2056 skip_prefix(arg
, "--notes=", &optarg
)) {
2057 struct strbuf buf
= STRBUF_INIT
;
2058 revs
->show_notes
= 1;
2059 revs
->show_notes_given
= 1;
2060 if (starts_with(arg
, "--show-notes=") &&
2061 revs
->notes_opt
.use_default_notes
< 0)
2062 revs
->notes_opt
.use_default_notes
= 1;
2063 strbuf_addstr(&buf
, optarg
);
2064 expand_notes_ref(&buf
);
2065 string_list_append(&revs
->notes_opt
.extra_notes_refs
,
2066 strbuf_detach(&buf
, NULL
));
2067 } else if (!strcmp(arg
, "--no-notes")) {
2068 revs
->show_notes
= 0;
2069 revs
->show_notes_given
= 1;
2070 revs
->notes_opt
.use_default_notes
= -1;
2071 /* we have been strdup'ing ourselves, so trick
2072 * string_list into free()ing strings */
2073 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 1;
2074 string_list_clear(&revs
->notes_opt
.extra_notes_refs
, 0);
2075 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 0;
2076 } else if (!strcmp(arg
, "--standard-notes")) {
2077 revs
->show_notes_given
= 1;
2078 revs
->notes_opt
.use_default_notes
= 1;
2079 } else if (!strcmp(arg
, "--no-standard-notes")) {
2080 revs
->notes_opt
.use_default_notes
= 0;
2081 } else if (!strcmp(arg
, "--oneline")) {
2082 revs
->verbose_header
= 1;
2083 get_commit_format("oneline", revs
);
2084 revs
->pretty_given
= 1;
2085 revs
->abbrev_commit
= 1;
2086 } else if (!strcmp(arg
, "--graph")) {
2087 revs
->topo_order
= 1;
2088 revs
->rewrite_parents
= 1;
2089 revs
->graph
= graph_init(revs
);
2090 } else if (!strcmp(arg
, "--root")) {
2091 revs
->show_root_diff
= 1;
2092 } else if (!strcmp(arg
, "--no-commit-id")) {
2093 revs
->no_commit_id
= 1;
2094 } else if (!strcmp(arg
, "--always")) {
2095 revs
->always_show_header
= 1;
2096 } else if (!strcmp(arg
, "--no-abbrev")) {
2098 } else if (!strcmp(arg
, "--abbrev")) {
2099 revs
->abbrev
= DEFAULT_ABBREV
;
2100 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2101 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2102 if (revs
->abbrev
< MINIMUM_ABBREV
)
2103 revs
->abbrev
= MINIMUM_ABBREV
;
2104 else if (revs
->abbrev
> hexsz
)
2105 revs
->abbrev
= hexsz
;
2106 } else if (!strcmp(arg
, "--abbrev-commit")) {
2107 revs
->abbrev_commit
= 1;
2108 revs
->abbrev_commit_given
= 1;
2109 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2110 revs
->abbrev_commit
= 0;
2111 } else if (!strcmp(arg
, "--full-diff")) {
2113 revs
->full_diff
= 1;
2114 } else if (!strcmp(arg
, "--full-history")) {
2115 revs
->simplify_history
= 0;
2116 } else if (!strcmp(arg
, "--relative-date")) {
2117 revs
->date_mode
.type
= DATE_RELATIVE
;
2118 revs
->date_mode_explicit
= 1;
2119 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2120 parse_date_format(optarg
, &revs
->date_mode
);
2121 revs
->date_mode_explicit
= 1;
2123 } else if (!strcmp(arg
, "--log-size")) {
2124 revs
->show_log_size
= 1;
2127 * Grepping the commit log
2129 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2130 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2132 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2133 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2135 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2136 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2138 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2139 add_message_grep(revs
, optarg
);
2141 } else if (!strcmp(arg
, "--grep-debug")) {
2142 revs
->grep_filter
.debug
= 1;
2143 } else if (!strcmp(arg
, "--basic-regexp")) {
2144 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2145 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2146 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2147 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2148 revs
->grep_filter
.ignore_case
= 1;
2149 revs
->diffopt
.pickaxe_opts
|= DIFF_PICKAXE_IGNORE_CASE
;
2150 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2151 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2152 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2153 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2154 } else if (!strcmp(arg
, "--all-match")) {
2155 revs
->grep_filter
.all_match
= 1;
2156 } else if (!strcmp(arg
, "--invert-grep")) {
2157 revs
->invert_grep
= 1;
2158 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2159 if (strcmp(optarg
, "none"))
2160 git_log_output_encoding
= xstrdup(optarg
);
2162 git_log_output_encoding
= "";
2164 } else if (!strcmp(arg
, "--reverse")) {
2166 } else if (!strcmp(arg
, "--children")) {
2167 revs
->children
.name
= "children";
2169 } else if (!strcmp(arg
, "--ignore-missing")) {
2170 revs
->ignore_missing
= 1;
2171 } else if (opt
&& opt
->allow_exclude_promisor_objects
&&
2172 !strcmp(arg
, "--exclude-promisor-objects")) {
2173 if (fetch_if_missing
)
2174 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2175 revs
->exclude_promisor_objects
= 1;
2177 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2179 unkv
[(*unkc
)++] = arg
;
2182 if (revs
->graph
&& revs
->track_linear
)
2183 die("--show-linear-break and --graph are incompatible");
2188 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2189 const struct option
*options
,
2190 const char * const usagestr
[])
2192 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2193 &ctx
->cpidx
, ctx
->out
, NULL
);
2195 error("unknown option `%s'", ctx
->argv
[0]);
2196 usage_with_options(usagestr
, options
);
2202 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2203 void *cb_data
, const char *term
)
2205 struct strbuf bisect_refs
= STRBUF_INIT
;
2207 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2208 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, fn
, cb_data
, 0);
2209 strbuf_release(&bisect_refs
);
2213 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2215 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2218 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2220 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2223 static int handle_revision_pseudo_opt(const char *submodule
,
2224 struct rev_info
*revs
,
2225 int argc
, const char **argv
, int *flags
)
2227 const char *arg
= argv
[0];
2229 struct ref_store
*refs
;
2234 * We need some something like get_submodule_worktrees()
2235 * before we can go through all worktrees of a submodule,
2236 * .e.g with adding all HEADs from --all, which is not
2237 * supported right now, so stick to single worktree.
2239 if (!revs
->single_worktree
)
2240 BUG("--single-worktree cannot be used together with submodule");
2241 refs
= get_submodule_ref_store(submodule
);
2243 refs
= get_main_ref_store(revs
->repo
);
2248 * Commands like "git shortlog" will not accept the options below
2249 * unless parse_revision_opt queues them (as opposed to erroring
2252 * When implementing your new pseudo-option, remember to
2253 * register it in the list at the top of handle_revision_opt.
2255 if (!strcmp(arg
, "--all")) {
2256 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2257 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2258 if (!revs
->single_worktree
) {
2259 struct all_refs_cb cb
;
2261 init_all_refs_cb(&cb
, revs
, *flags
);
2262 other_head_refs(handle_one_ref
, &cb
);
2264 clear_ref_exclusion(&revs
->ref_excludes
);
2265 } else if (!strcmp(arg
, "--branches")) {
2266 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2267 clear_ref_exclusion(&revs
->ref_excludes
);
2268 } else if (!strcmp(arg
, "--bisect")) {
2269 read_bisect_terms(&term_bad
, &term_good
);
2270 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2271 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2272 for_each_good_bisect_ref
);
2274 } else if (!strcmp(arg
, "--tags")) {
2275 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2276 clear_ref_exclusion(&revs
->ref_excludes
);
2277 } else if (!strcmp(arg
, "--remotes")) {
2278 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2279 clear_ref_exclusion(&revs
->ref_excludes
);
2280 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2281 struct all_refs_cb cb
;
2282 init_all_refs_cb(&cb
, revs
, *flags
);
2283 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
2284 clear_ref_exclusion(&revs
->ref_excludes
);
2286 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2287 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2289 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2290 struct all_refs_cb cb
;
2291 init_all_refs_cb(&cb
, revs
, *flags
);
2292 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/heads/", &cb
);
2293 clear_ref_exclusion(&revs
->ref_excludes
);
2294 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2295 struct all_refs_cb cb
;
2296 init_all_refs_cb(&cb
, revs
, *flags
);
2297 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/tags/", &cb
);
2298 clear_ref_exclusion(&revs
->ref_excludes
);
2299 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2300 struct all_refs_cb cb
;
2301 init_all_refs_cb(&cb
, revs
, *flags
);
2302 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/remotes/", &cb
);
2303 clear_ref_exclusion(&revs
->ref_excludes
);
2304 } else if (!strcmp(arg
, "--reflog")) {
2305 add_reflogs_to_pending(revs
, *flags
);
2306 } else if (!strcmp(arg
, "--indexed-objects")) {
2307 add_index_objects_to_pending(revs
, *flags
);
2308 } else if (!strcmp(arg
, "--not")) {
2309 *flags
^= UNINTERESTING
| BOTTOM
;
2310 } else if (!strcmp(arg
, "--no-walk")) {
2311 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2312 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2314 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2315 * not allowed, since the argument is optional.
2317 if (!strcmp(optarg
, "sorted"))
2318 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2319 else if (!strcmp(optarg
, "unsorted"))
2320 revs
->no_walk
= REVISION_WALK_NO_WALK_UNSORTED
;
2322 return error("invalid argument to --no-walk");
2323 } else if (!strcmp(arg
, "--do-walk")) {
2325 } else if (!strcmp(arg
, "--single-worktree")) {
2326 revs
->single_worktree
= 1;
2334 static void NORETURN
diagnose_missing_default(const char *def
)
2337 const char *refname
;
2339 refname
= resolve_ref_unsafe(def
, 0, NULL
, &flags
);
2340 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2341 die(_("your current branch appears to be broken"));
2343 skip_prefix(refname
, "refs/heads/", &refname
);
2344 die(_("your current branch '%s' does not have any commits yet"),
2349 * Parse revision information, filling in the "rev_info" structure,
2350 * and removing the used arguments from the argument list.
2352 * Returns the number of arguments left that weren't recognized
2353 * (which are also moved to the head of the argument list)
2355 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2357 int i
, flags
, left
, seen_dashdash
, got_rev_arg
= 0, revarg_opt
;
2358 struct argv_array prune_data
= ARGV_ARRAY_INIT
;
2359 const char *submodule
= NULL
;
2362 submodule
= opt
->submodule
;
2364 /* First, search for "--" */
2365 if (opt
&& opt
->assume_dashdash
) {
2369 for (i
= 1; i
< argc
; i
++) {
2370 const char *arg
= argv
[i
];
2371 if (strcmp(arg
, "--"))
2376 argv_array_pushv(&prune_data
, argv
+ i
+ 1);
2382 /* Second, deal with arguments and options */
2384 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2386 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2387 for (left
= i
= 1; i
< argc
; i
++) {
2388 const char *arg
= argv
[i
];
2392 opts
= handle_revision_pseudo_opt(submodule
,
2393 revs
, argc
- i
, argv
+ i
,
2400 if (!strcmp(arg
, "--stdin")) {
2401 if (revs
->disable_stdin
) {
2405 if (revs
->read_from_stdin
++)
2406 die("--stdin given twice?");
2407 read_revisions_from_stdin(revs
, &prune_data
);
2411 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
,
2423 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
2425 if (seen_dashdash
|| *arg
== '^')
2426 die("bad revision '%s'", arg
);
2428 /* If we didn't have a "--":
2429 * (1) all filenames must exist;
2430 * (2) all rev-args must not be interpretable
2431 * as a valid filename.
2432 * but the latter we have checked in the main loop.
2434 for (j
= i
; j
< argc
; j
++)
2435 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
2437 argv_array_pushv(&prune_data
, argv
+ i
);
2444 if (prune_data
.argc
) {
2446 * If we need to introduce the magic "a lone ':' means no
2447 * pathspec whatsoever", here is the place to do so.
2449 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2450 * prune_data.nr = 0;
2451 * prune_data.alloc = 0;
2452 * free(prune_data.path);
2453 * prune_data.path = NULL;
2455 * terminate prune_data.alloc with NULL and
2456 * call init_pathspec() to set revs->prune_data here.
2459 parse_pathspec(&revs
->prune_data
, 0, 0,
2460 revs
->prefix
, prune_data
.argv
);
2462 argv_array_clear(&prune_data
);
2464 if (revs
->def
== NULL
)
2465 revs
->def
= opt
? opt
->def
: NULL
;
2466 if (opt
&& opt
->tweak
)
2467 opt
->tweak(revs
, opt
);
2468 if (revs
->show_merge
)
2469 prepare_show_merge(revs
);
2470 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
&& !got_rev_arg
) {
2471 struct object_id oid
;
2472 struct object
*object
;
2473 struct object_context oc
;
2474 if (get_oid_with_context(revs
->def
, 0, &oid
, &oc
))
2475 diagnose_missing_default(revs
->def
);
2476 object
= get_reference(revs
, revs
->def
, &oid
, 0);
2477 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
2480 /* Did the user ask for any diff output? Run the diff! */
2481 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
2484 /* Pickaxe, diff-filter and rename following need diffs */
2485 if ((revs
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
2486 revs
->diffopt
.filter
||
2487 revs
->diffopt
.flags
.follow_renames
)
2490 if (revs
->diffopt
.objfind
)
2491 revs
->simplify_history
= 0;
2493 if (revs
->topo_order
&& !generation_numbers_enabled(the_repository
))
2496 if (revs
->prune_data
.nr
) {
2497 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
2498 /* Can't prune commits with rename following: the paths change.. */
2499 if (!revs
->diffopt
.flags
.follow_renames
)
2501 if (!revs
->full_diff
)
2502 copy_pathspec(&revs
->diffopt
.pathspec
,
2505 if (revs
->combine_merges
)
2506 revs
->ignore_merges
= 0;
2507 revs
->diffopt
.abbrev
= revs
->abbrev
;
2509 if (revs
->line_level_traverse
) {
2511 revs
->topo_order
= 1;
2514 diff_setup_done(&revs
->diffopt
);
2516 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED
,
2517 &revs
->grep_filter
);
2518 compile_grep_patterns(&revs
->grep_filter
);
2520 if (revs
->reverse
&& revs
->reflog_info
)
2521 die("cannot combine --reverse with --walk-reflogs");
2522 if (revs
->reflog_info
&& revs
->limited
)
2523 die("cannot combine --walk-reflogs with history-limiting options");
2524 if (revs
->rewrite_parents
&& revs
->children
.name
)
2525 die("cannot combine --parents and --children");
2528 * Limitations on the graph functionality
2530 if (revs
->reverse
&& revs
->graph
)
2531 die("cannot combine --reverse with --graph");
2533 if (revs
->reflog_info
&& revs
->graph
)
2534 die("cannot combine --walk-reflogs with --graph");
2535 if (revs
->no_walk
&& revs
->graph
)
2536 die("cannot combine --no-walk with --graph");
2537 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
2538 die("cannot use --grep-reflog without --walk-reflogs");
2540 if (revs
->first_parent_only
&& revs
->bisect
)
2541 die(_("--first-parent is incompatible with --bisect"));
2543 if (revs
->expand_tabs_in_log
< 0)
2544 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
2549 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
2551 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
2554 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
2557 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
2559 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2560 struct commit_list
**pp
, *p
;
2561 int surviving_parents
;
2563 /* Examine existing parents while marking ones we have seen... */
2564 pp
= &commit
->parents
;
2565 surviving_parents
= 0;
2566 while ((p
= *pp
) != NULL
) {
2567 struct commit
*parent
= p
->item
;
2568 if (parent
->object
.flags
& TMP_MARK
) {
2571 compact_treesame(revs
, commit
, surviving_parents
);
2574 parent
->object
.flags
|= TMP_MARK
;
2575 surviving_parents
++;
2578 /* clear the temporary mark */
2579 for (p
= commit
->parents
; p
; p
= p
->next
) {
2580 p
->item
->object
.flags
&= ~TMP_MARK
;
2582 /* no update_treesame() - removing duplicates can't affect TREESAME */
2583 return surviving_parents
;
2586 struct merge_simplify_state
{
2587 struct commit
*simplified
;
2590 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
2592 struct merge_simplify_state
*st
;
2594 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
2596 st
= xcalloc(1, sizeof(*st
));
2597 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
2602 static int mark_redundant_parents(struct rev_info
*revs
, struct commit
*commit
)
2604 struct commit_list
*h
= reduce_heads(commit
->parents
);
2605 int i
= 0, marked
= 0;
2606 struct commit_list
*po
, *pn
;
2608 /* Want these for sanity-checking only */
2609 int orig_cnt
= commit_list_count(commit
->parents
);
2610 int cnt
= commit_list_count(h
);
2613 * Not ready to remove items yet, just mark them for now, based
2614 * on the output of reduce_heads(). reduce_heads outputs the reduced
2615 * set in its original order, so this isn't too hard.
2617 po
= commit
->parents
;
2620 if (pn
&& po
->item
== pn
->item
) {
2624 po
->item
->object
.flags
|= TMP_MARK
;
2630 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
2631 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
2633 free_commit_list(h
);
2638 static int mark_treesame_root_parents(struct rev_info
*revs
, struct commit
*commit
)
2640 struct commit_list
*p
;
2643 for (p
= commit
->parents
; p
; p
= p
->next
) {
2644 struct commit
*parent
= p
->item
;
2645 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
2646 parent
->object
.flags
|= TMP_MARK
;
2655 * Awkward naming - this means one parent we are TREESAME to.
2656 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2657 * empty tree). Better name suggestions?
2659 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
2661 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2662 struct commit
*unmarked
= NULL
, *marked
= NULL
;
2663 struct commit_list
*p
;
2666 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
2667 if (ts
->treesame
[n
]) {
2668 if (p
->item
->object
.flags
& TMP_MARK
) {
2681 * If we are TREESAME to a marked-for-deletion parent, but not to any
2682 * unmarked parents, unmark the first TREESAME parent. This is the
2683 * parent that the default simplify_history==1 scan would have followed,
2684 * and it doesn't make sense to omit that path when asking for a
2685 * simplified full history. Retaining it improves the chances of
2686 * understanding odd missed merges that took an old version of a file.
2690 * I--------*X A modified the file, but mainline merge X used
2691 * \ / "-s ours", so took the version from I. X is
2692 * `-*A--' TREESAME to I and !TREESAME to A.
2694 * Default log from X would produce "I". Without this check,
2695 * --full-history --simplify-merges would produce "I-A-X", showing
2696 * the merge commit X and that it changed A, but not making clear that
2697 * it had just taken the I version. With this check, the topology above
2700 * Note that it is possible that the simplification chooses a different
2701 * TREESAME parent from the default, in which case this test doesn't
2702 * activate, and we _do_ drop the default parent. Example:
2704 * I------X A modified the file, but it was reverted in B,
2705 * \ / meaning mainline merge X is TREESAME to both
2708 * Default log would produce "I" by following the first parent;
2709 * --full-history --simplify-merges will produce "I-A-B". But this is a
2710 * reasonable result - it presents a logical full history leading from
2711 * I to X, and X is not an important merge.
2713 if (!unmarked
&& marked
) {
2714 marked
->object
.flags
&= ~TMP_MARK
;
2721 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
2723 struct commit_list
**pp
, *p
;
2724 int nth_parent
, removed
= 0;
2726 pp
= &commit
->parents
;
2728 while ((p
= *pp
) != NULL
) {
2729 struct commit
*parent
= p
->item
;
2730 if (parent
->object
.flags
& TMP_MARK
) {
2731 parent
->object
.flags
&= ~TMP_MARK
;
2735 compact_treesame(revs
, commit
, nth_parent
);
2742 /* Removing parents can only increase TREESAMEness */
2743 if (removed
&& !(commit
->object
.flags
& TREESAME
))
2744 update_treesame(revs
, commit
);
2749 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
2751 struct commit_list
*p
;
2752 struct commit
*parent
;
2753 struct merge_simplify_state
*st
, *pst
;
2756 st
= locate_simplify_state(revs
, commit
);
2759 * Have we handled this one?
2765 * An UNINTERESTING commit simplifies to itself, so does a
2766 * root commit. We do not rewrite parents of such commit
2769 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
2770 st
->simplified
= commit
;
2775 * Do we know what commit all of our parents that matter
2776 * should be rewritten to? Otherwise we are not ready to
2777 * rewrite this one yet.
2779 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
2780 pst
= locate_simplify_state(revs
, p
->item
);
2781 if (!pst
->simplified
) {
2782 tail
= &commit_list_insert(p
->item
, tail
)->next
;
2785 if (revs
->first_parent_only
)
2789 tail
= &commit_list_insert(commit
, tail
)->next
;
2794 * Rewrite our list of parents. Note that this cannot
2795 * affect our TREESAME flags in any way - a commit is
2796 * always TREESAME to its simplification.
2798 for (p
= commit
->parents
; p
; p
= p
->next
) {
2799 pst
= locate_simplify_state(revs
, p
->item
);
2800 p
->item
= pst
->simplified
;
2801 if (revs
->first_parent_only
)
2805 if (revs
->first_parent_only
)
2808 cnt
= remove_duplicate_parents(revs
, commit
);
2811 * It is possible that we are a merge and one side branch
2812 * does not have any commit that touches the given paths;
2813 * in such a case, the immediate parent from that branch
2814 * will be rewritten to be the merge base.
2816 * o----X X: the commit we are looking at;
2817 * / / o: a commit that touches the paths;
2820 * Further, a merge of an independent branch that doesn't
2821 * touch the path will reduce to a treesame root parent:
2823 * ----o----X X: the commit we are looking at;
2824 * / o: a commit that touches the paths;
2825 * r r: a root commit not touching the paths
2827 * Detect and simplify both cases.
2830 int marked
= mark_redundant_parents(revs
, commit
);
2831 marked
+= mark_treesame_root_parents(revs
, commit
);
2833 marked
-= leave_one_treesame_to_parent(revs
, commit
);
2835 cnt
= remove_marked_parents(revs
, commit
);
2839 * A commit simplifies to itself if it is a root, if it is
2840 * UNINTERESTING, if it touches the given paths, or if it is a
2841 * merge and its parents don't simplify to one relevant commit
2842 * (the first two cases are already handled at the beginning of
2845 * Otherwise, it simplifies to what its sole relevant parent
2849 (commit
->object
.flags
& UNINTERESTING
) ||
2850 !(commit
->object
.flags
& TREESAME
) ||
2851 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
)
2852 st
->simplified
= commit
;
2854 pst
= locate_simplify_state(revs
, parent
);
2855 st
->simplified
= pst
->simplified
;
2860 static void simplify_merges(struct rev_info
*revs
)
2862 struct commit_list
*list
, *next
;
2863 struct commit_list
*yet_to_do
, **tail
;
2864 struct commit
*commit
;
2869 /* feed the list reversed */
2871 for (list
= revs
->commits
; list
; list
= next
) {
2872 commit
= list
->item
;
2875 * Do not free(list) here yet; the original list
2876 * is used later in this function.
2878 commit_list_insert(commit
, &yet_to_do
);
2885 commit
= pop_commit(&list
);
2886 tail
= simplify_one(revs
, commit
, tail
);
2890 /* clean up the result, removing the simplified ones */
2891 list
= revs
->commits
;
2892 revs
->commits
= NULL
;
2893 tail
= &revs
->commits
;
2895 struct merge_simplify_state
*st
;
2897 commit
= pop_commit(&list
);
2898 st
= locate_simplify_state(revs
, commit
);
2899 if (st
->simplified
== commit
)
2900 tail
= &commit_list_insert(commit
, tail
)->next
;
2904 static void set_children(struct rev_info
*revs
)
2906 struct commit_list
*l
;
2907 for (l
= revs
->commits
; l
; l
= l
->next
) {
2908 struct commit
*commit
= l
->item
;
2909 struct commit_list
*p
;
2911 for (p
= commit
->parents
; p
; p
= p
->next
)
2912 add_child(revs
, p
->item
, commit
);
2916 void reset_revision_walk(void)
2918 clear_object_flags(SEEN
| ADDED
| SHOWN
);
2921 static int mark_uninteresting(const struct object_id
*oid
,
2922 struct packed_git
*pack
,
2926 struct rev_info
*revs
= cb
;
2927 struct object
*o
= parse_object(revs
->repo
, oid
);
2928 o
->flags
|= UNINTERESTING
| SEEN
;
2932 define_commit_slab(indegree_slab
, int);
2933 define_commit_slab(author_date_slab
, timestamp_t
);
2935 struct topo_walk_info
{
2936 uint32_t min_generation
;
2937 struct prio_queue explore_queue
;
2938 struct prio_queue indegree_queue
;
2939 struct prio_queue topo_queue
;
2940 struct indegree_slab indegree
;
2941 struct author_date_slab author_date
;
2944 static inline void test_flag_and_insert(struct prio_queue
*q
, struct commit
*c
, int flag
)
2946 if (c
->object
.flags
& flag
)
2949 c
->object
.flags
|= flag
;
2950 prio_queue_put(q
, c
);
2953 static void explore_walk_step(struct rev_info
*revs
)
2955 struct topo_walk_info
*info
= revs
->topo_walk_info
;
2956 struct commit_list
*p
;
2957 struct commit
*c
= prio_queue_get(&info
->explore_queue
);
2962 if (parse_commit_gently(c
, 1) < 0)
2965 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
2966 record_author_date(&info
->author_date
, c
);
2968 if (revs
->max_age
!= -1 && (c
->date
< revs
->max_age
))
2969 c
->object
.flags
|= UNINTERESTING
;
2971 if (process_parents(revs
, c
, NULL
, NULL
) < 0)
2974 if (c
->object
.flags
& UNINTERESTING
)
2975 mark_parents_uninteresting(c
);
2977 for (p
= c
->parents
; p
; p
= p
->next
)
2978 test_flag_and_insert(&info
->explore_queue
, p
->item
, TOPO_WALK_EXPLORED
);
2981 static void explore_to_depth(struct rev_info
*revs
,
2982 uint32_t gen_cutoff
)
2984 struct topo_walk_info
*info
= revs
->topo_walk_info
;
2986 while ((c
= prio_queue_peek(&info
->explore_queue
)) &&
2987 c
->generation
>= gen_cutoff
)
2988 explore_walk_step(revs
);
2991 static void indegree_walk_step(struct rev_info
*revs
)
2993 struct commit_list
*p
;
2994 struct topo_walk_info
*info
= revs
->topo_walk_info
;
2995 struct commit
*c
= prio_queue_get(&info
->indegree_queue
);
3000 if (parse_commit_gently(c
, 1) < 0)
3003 explore_to_depth(revs
, c
->generation
);
3005 for (p
= c
->parents
; p
; p
= p
->next
) {
3006 struct commit
*parent
= p
->item
;
3007 int *pi
= indegree_slab_at(&info
->indegree
, parent
);
3014 test_flag_and_insert(&info
->indegree_queue
, parent
, TOPO_WALK_INDEGREE
);
3016 if (revs
->first_parent_only
)
3021 static void compute_indegrees_to_depth(struct rev_info
*revs
,
3022 uint32_t gen_cutoff
)
3024 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3026 while ((c
= prio_queue_peek(&info
->indegree_queue
)) &&
3027 c
->generation
>= gen_cutoff
)
3028 indegree_walk_step(revs
);
3031 static void init_topo_walk(struct rev_info
*revs
)
3033 struct topo_walk_info
*info
;
3034 struct commit_list
*list
;
3035 revs
->topo_walk_info
= xmalloc(sizeof(struct topo_walk_info
));
3036 info
= revs
->topo_walk_info
;
3037 memset(info
, 0, sizeof(struct topo_walk_info
));
3039 init_indegree_slab(&info
->indegree
);
3040 memset(&info
->explore_queue
, 0, sizeof(info
->explore_queue
));
3041 memset(&info
->indegree_queue
, 0, sizeof(info
->indegree_queue
));
3042 memset(&info
->topo_queue
, 0, sizeof(info
->topo_queue
));
3044 switch (revs
->sort_order
) {
3045 default: /* REV_SORT_IN_GRAPH_ORDER */
3046 info
->topo_queue
.compare
= NULL
;
3048 case REV_SORT_BY_COMMIT_DATE
:
3049 info
->topo_queue
.compare
= compare_commits_by_commit_date
;
3051 case REV_SORT_BY_AUTHOR_DATE
:
3052 init_author_date_slab(&info
->author_date
);
3053 info
->topo_queue
.compare
= compare_commits_by_author_date
;
3054 info
->topo_queue
.cb_data
= &info
->author_date
;
3058 info
->explore_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3059 info
->indegree_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3061 info
->min_generation
= GENERATION_NUMBER_INFINITY
;
3062 for (list
= revs
->commits
; list
; list
= list
->next
) {
3063 struct commit
*c
= list
->item
;
3065 if (parse_commit_gently(c
, 1))
3068 test_flag_and_insert(&info
->explore_queue
, c
, TOPO_WALK_EXPLORED
);
3069 test_flag_and_insert(&info
->indegree_queue
, c
, TOPO_WALK_INDEGREE
);
3071 if (c
->generation
< info
->min_generation
)
3072 info
->min_generation
= c
->generation
;
3074 *(indegree_slab_at(&info
->indegree
, c
)) = 1;
3076 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3077 record_author_date(&info
->author_date
, c
);
3079 compute_indegrees_to_depth(revs
, info
->min_generation
);
3081 for (list
= revs
->commits
; list
; list
= list
->next
) {
3082 struct commit
*c
= list
->item
;
3084 if (*(indegree_slab_at(&info
->indegree
, c
)) == 1)
3085 prio_queue_put(&info
->topo_queue
, c
);
3089 * This is unfortunate; the initial tips need to be shown
3090 * in the order given from the revision traversal machinery.
3092 if (revs
->sort_order
== REV_SORT_IN_GRAPH_ORDER
)
3093 prio_queue_reverse(&info
->topo_queue
);
3096 static struct commit
*next_topo_commit(struct rev_info
*revs
)
3099 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3101 /* pop next off of topo_queue */
3102 c
= prio_queue_get(&info
->topo_queue
);
3105 *(indegree_slab_at(&info
->indegree
, c
)) = 0;
3110 static void expand_topo_walk(struct rev_info
*revs
, struct commit
*commit
)
3112 struct commit_list
*p
;
3113 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3114 if (process_parents(revs
, commit
, NULL
, NULL
) < 0) {
3115 if (!revs
->ignore_missing_links
)
3116 die("Failed to traverse parents of commit %s",
3117 oid_to_hex(&commit
->object
.oid
));
3120 for (p
= commit
->parents
; p
; p
= p
->next
) {
3121 struct commit
*parent
= p
->item
;
3124 if (parse_commit_gently(parent
, 1) < 0)
3127 if (parent
->generation
< info
->min_generation
) {
3128 info
->min_generation
= parent
->generation
;
3129 compute_indegrees_to_depth(revs
, info
->min_generation
);
3132 pi
= indegree_slab_at(&info
->indegree
, parent
);
3136 prio_queue_put(&info
->topo_queue
, parent
);
3138 if (revs
->first_parent_only
)
3143 int prepare_revision_walk(struct rev_info
*revs
)
3146 struct object_array old_pending
;
3147 struct commit_list
**next
= &revs
->commits
;
3149 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
3150 revs
->pending
.nr
= 0;
3151 revs
->pending
.alloc
= 0;
3152 revs
->pending
.objects
= NULL
;
3153 for (i
= 0; i
< old_pending
.nr
; i
++) {
3154 struct object_array_entry
*e
= old_pending
.objects
+ i
;
3155 struct commit
*commit
= handle_commit(revs
, e
);
3157 if (!(commit
->object
.flags
& SEEN
)) {
3158 commit
->object
.flags
|= SEEN
;
3159 next
= commit_list_append(commit
, next
);
3163 object_array_clear(&old_pending
);
3165 /* Signal whether we need per-parent treesame decoration */
3166 if (revs
->simplify_merges
||
3167 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
3168 revs
->treesame
.name
= "treesame";
3170 if (revs
->exclude_promisor_objects
) {
3171 for_each_packed_object(mark_uninteresting
, revs
,
3172 FOR_EACH_OBJECT_PROMISOR_ONLY
);
3175 if (revs
->no_walk
!= REVISION_WALK_NO_WALK_UNSORTED
)
3176 commit_list_sort_by_date(&revs
->commits
);
3179 if (revs
->limited
) {
3180 if (limit_list(revs
) < 0)
3182 if (revs
->topo_order
)
3183 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3184 } else if (revs
->topo_order
)
3185 init_topo_walk(revs
);
3186 if (revs
->line_level_traverse
)
3187 line_log_filter(revs
);
3188 if (revs
->simplify_merges
)
3189 simplify_merges(revs
);
3190 if (revs
->children
.name
)
3195 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
3197 struct commit_list
*cache
= NULL
;
3200 struct commit
*p
= *pp
;
3202 if (process_parents(revs
, p
, &revs
->commits
, &cache
) < 0)
3203 return rewrite_one_error
;
3204 if (p
->object
.flags
& UNINTERESTING
)
3205 return rewrite_one_ok
;
3206 if (!(p
->object
.flags
& TREESAME
))
3207 return rewrite_one_ok
;
3209 return rewrite_one_noparents
;
3210 if ((p
= one_relevant_parent(revs
, p
->parents
)) == NULL
)
3211 return rewrite_one_ok
;
3216 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
3217 rewrite_parent_fn_t rewrite_parent
)
3219 struct commit_list
**pp
= &commit
->parents
;
3221 struct commit_list
*parent
= *pp
;
3222 switch (rewrite_parent(revs
, &parent
->item
)) {
3223 case rewrite_one_ok
:
3225 case rewrite_one_noparents
:
3228 case rewrite_one_error
:
3233 remove_duplicate_parents(revs
, commit
);
3237 static int commit_rewrite_person(struct strbuf
*buf
, const char *what
, struct string_list
*mailmap
)
3239 char *person
, *endp
;
3240 size_t len
, namelen
, maillen
;
3243 struct ident_split ident
;
3245 person
= strstr(buf
->buf
, what
);
3249 person
+= strlen(what
);
3250 endp
= strchr(person
, '\n');
3254 len
= endp
- person
;
3256 if (split_ident_line(&ident
, person
, len
))
3259 mail
= ident
.mail_begin
;
3260 maillen
= ident
.mail_end
- ident
.mail_begin
;
3261 name
= ident
.name_begin
;
3262 namelen
= ident
.name_end
- ident
.name_begin
;
3264 if (map_user(mailmap
, &mail
, &maillen
, &name
, &namelen
)) {
3265 struct strbuf namemail
= STRBUF_INIT
;
3267 strbuf_addf(&namemail
, "%.*s <%.*s>",
3268 (int)namelen
, name
, (int)maillen
, mail
);
3270 strbuf_splice(buf
, ident
.name_begin
- buf
->buf
,
3271 ident
.mail_end
- ident
.name_begin
+ 1,
3272 namemail
.buf
, namemail
.len
);
3274 strbuf_release(&namemail
);
3282 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
3285 const char *encoding
;
3286 const char *message
;
3287 struct strbuf buf
= STRBUF_INIT
;
3289 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
3292 /* Prepend "fake" headers as needed */
3293 if (opt
->grep_filter
.use_reflog_filter
) {
3294 strbuf_addstr(&buf
, "reflog ");
3295 get_reflog_message(&buf
, opt
->reflog_info
);
3296 strbuf_addch(&buf
, '\n');
3300 * We grep in the user's output encoding, under the assumption that it
3301 * is the encoding they are most likely to write their grep pattern
3302 * for. In addition, it means we will match the "notes" encoding below,
3303 * so we will not end up with a buffer that has two different encodings
3306 encoding
= get_log_output_encoding();
3307 message
= logmsg_reencode(commit
, NULL
, encoding
);
3309 /* Copy the commit to temporary if we are using "fake" headers */
3311 strbuf_addstr(&buf
, message
);
3313 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
3315 strbuf_addstr(&buf
, message
);
3317 commit_rewrite_person(&buf
, "\nauthor ", opt
->mailmap
);
3318 commit_rewrite_person(&buf
, "\ncommitter ", opt
->mailmap
);
3321 /* Append "fake" message parts as needed */
3322 if (opt
->show_notes
) {
3324 strbuf_addstr(&buf
, message
);
3325 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
3329 * Find either in the original commit message, or in the temporary.
3330 * Note that we cast away the constness of "message" here. It is
3331 * const because it may come from the cached commit buffer. That's OK,
3332 * because we know that it is modifiable heap memory, and that while
3333 * grep_buffer may modify it for speed, it will restore any
3334 * changes before returning.
3337 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
3339 retval
= grep_buffer(&opt
->grep_filter
,
3340 (char *)message
, strlen(message
));
3341 strbuf_release(&buf
);
3342 unuse_commit_buffer(commit
, message
);
3343 return opt
->invert_grep
? !retval
: retval
;
3346 static inline int want_ancestry(const struct rev_info
*revs
)
3348 return (revs
->rewrite_parents
|| revs
->children
.name
);
3352 * Return a timestamp to be used for --since/--until comparisons for this
3353 * commit, based on the revision options.
3355 static timestamp_t
comparison_date(const struct rev_info
*revs
,
3356 struct commit
*commit
)
3358 return revs
->reflog_info
?
3359 get_reflog_timestamp(revs
->reflog_info
) :
3363 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
3365 if (commit
->object
.flags
& SHOWN
)
3366 return commit_ignore
;
3367 if (revs
->unpacked
&& has_object_pack(&commit
->object
.oid
))
3368 return commit_ignore
;
3369 if (commit
->object
.flags
& UNINTERESTING
)
3370 return commit_ignore
;
3371 if (revs
->min_age
!= -1 &&
3372 comparison_date(revs
, commit
) > revs
->min_age
)
3373 return commit_ignore
;
3374 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
3375 int n
= commit_list_count(commit
->parents
);
3376 if ((n
< revs
->min_parents
) ||
3377 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
3378 return commit_ignore
;
3380 if (!commit_match(commit
, revs
))
3381 return commit_ignore
;
3382 if (revs
->prune
&& revs
->dense
) {
3383 /* Commit without changes? */
3384 if (commit
->object
.flags
& TREESAME
) {
3386 struct commit_list
*p
;
3387 /* drop merges unless we want parenthood */
3388 if (!want_ancestry(revs
))
3389 return commit_ignore
;
3391 * If we want ancestry, then need to keep any merges
3392 * between relevant commits to tie together topology.
3393 * For consistency with TREESAME and simplification
3394 * use "relevant" here rather than just INTERESTING,
3395 * to treat bottom commit(s) as part of the topology.
3397 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
3398 if (relevant_commit(p
->item
))
3401 return commit_ignore
;
3407 define_commit_slab(saved_parents
, struct commit_list
*);
3409 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3412 * You may only call save_parents() once per commit (this is checked
3413 * for non-root commits).
3415 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
3417 struct commit_list
**pp
;
3419 if (!revs
->saved_parents_slab
) {
3420 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
3421 init_saved_parents(revs
->saved_parents_slab
);
3424 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
3427 * When walking with reflogs, we may visit the same commit
3428 * several times: once for each appearance in the reflog.
3430 * In this case, save_parents() will be called multiple times.
3431 * We want to keep only the first set of parents. We need to
3432 * store a sentinel value for an empty (i.e., NULL) parent
3433 * list to distinguish it from a not-yet-saved list, however.
3437 if (commit
->parents
)
3438 *pp
= copy_commit_list(commit
->parents
);
3440 *pp
= EMPTY_PARENT_LIST
;
3443 static void free_saved_parents(struct rev_info
*revs
)
3445 if (revs
->saved_parents_slab
)
3446 clear_saved_parents(revs
->saved_parents_slab
);
3449 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
3451 struct commit_list
*parents
;
3453 if (!revs
->saved_parents_slab
)
3454 return commit
->parents
;
3456 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
3457 if (parents
== EMPTY_PARENT_LIST
)
3462 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
3464 enum commit_action action
= get_commit_action(revs
, commit
);
3466 if (action
== commit_show
&&
3467 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
3469 * --full-diff on simplified parents is no good: it
3470 * will show spurious changes from the commits that
3471 * were elided. So we save the parents on the side
3472 * when --full-diff is in effect.
3474 if (revs
->full_diff
)
3475 save_parents(revs
, commit
);
3476 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
3477 return commit_error
;
3482 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
3484 if (revs
->track_first_time
) {
3486 revs
->track_first_time
= 0;
3488 struct commit_list
*p
;
3489 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
3490 if (p
->item
== NULL
|| /* first commit */
3491 oideq(&p
->item
->object
.oid
, &commit
->object
.oid
))
3493 revs
->linear
= p
!= NULL
;
3495 if (revs
->reverse
) {
3497 commit
->object
.flags
|= TRACK_LINEAR
;
3499 free_commit_list(revs
->previous_parents
);
3500 revs
->previous_parents
= copy_commit_list(commit
->parents
);
3503 static struct commit
*get_revision_1(struct rev_info
*revs
)
3506 struct commit
*commit
;
3508 if (revs
->reflog_info
)
3509 commit
= next_reflog_entry(revs
->reflog_info
);
3510 else if (revs
->topo_walk_info
)
3511 commit
= next_topo_commit(revs
);
3513 commit
= pop_commit(&revs
->commits
);
3518 if (revs
->reflog_info
)
3519 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
3522 * If we haven't done the list limiting, we need to look at
3523 * the parents here. We also need to do the date-based limiting
3524 * that we'd otherwise have done in limit_list().
3526 if (!revs
->limited
) {
3527 if (revs
->max_age
!= -1 &&
3528 comparison_date(revs
, commit
) < revs
->max_age
)
3531 if (revs
->reflog_info
)
3532 try_to_simplify_commit(revs
, commit
);
3533 else if (revs
->topo_walk_info
)
3534 expand_topo_walk(revs
, commit
);
3535 else if (process_parents(revs
, commit
, &revs
->commits
, NULL
) < 0) {
3536 if (!revs
->ignore_missing_links
)
3537 die("Failed to traverse parents of commit %s",
3538 oid_to_hex(&commit
->object
.oid
));
3542 switch (simplify_commit(revs
, commit
)) {
3546 die("Failed to simplify parents of commit %s",
3547 oid_to_hex(&commit
->object
.oid
));
3549 if (revs
->track_linear
)
3550 track_linear(revs
, commit
);
3557 * Return true for entries that have not yet been shown. (This is an
3558 * object_array_each_func_t.)
3560 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data_unused
)
3562 return !(entry
->item
->flags
& SHOWN
);
3566 * If array is on the verge of a realloc, garbage-collect any entries
3567 * that have already been shown to try to free up some space.
3569 static void gc_boundary(struct object_array
*array
)
3571 if (array
->nr
== array
->alloc
)
3572 object_array_filter(array
, entry_unshown
, NULL
);
3575 static void create_boundary_commit_list(struct rev_info
*revs
)
3579 struct object_array
*array
= &revs
->boundary_commits
;
3580 struct object_array_entry
*objects
= array
->objects
;
3583 * If revs->commits is non-NULL at this point, an error occurred in
3584 * get_revision_1(). Ignore the error and continue printing the
3585 * boundary commits anyway. (This is what the code has always
3588 if (revs
->commits
) {
3589 free_commit_list(revs
->commits
);
3590 revs
->commits
= NULL
;
3594 * Put all of the actual boundary commits from revs->boundary_commits
3595 * into revs->commits
3597 for (i
= 0; i
< array
->nr
; i
++) {
3598 c
= (struct commit
*)(objects
[i
].item
);
3601 if (!(c
->object
.flags
& CHILD_SHOWN
))
3603 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
3605 c
->object
.flags
|= BOUNDARY
;
3606 commit_list_insert(c
, &revs
->commits
);
3610 * If revs->topo_order is set, sort the boundary commits
3611 * in topological order
3613 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3616 static struct commit
*get_revision_internal(struct rev_info
*revs
)
3618 struct commit
*c
= NULL
;
3619 struct commit_list
*l
;
3621 if (revs
->boundary
== 2) {
3623 * All of the normal commits have already been returned,
3624 * and we are now returning boundary commits.
3625 * create_boundary_commit_list() has populated
3626 * revs->commits with the remaining commits to return.
3628 c
= pop_commit(&revs
->commits
);
3630 c
->object
.flags
|= SHOWN
;
3635 * If our max_count counter has reached zero, then we are done. We
3636 * don't simply return NULL because we still might need to show
3637 * boundary commits. But we want to avoid calling get_revision_1, which
3638 * might do a considerable amount of work finding the next commit only
3639 * for us to throw it away.
3641 * If it is non-zero, then either we don't have a max_count at all
3642 * (-1), or it is still counting, in which case we decrement.
3644 if (revs
->max_count
) {
3645 c
= get_revision_1(revs
);
3647 while (revs
->skip_count
> 0) {
3649 c
= get_revision_1(revs
);
3655 if (revs
->max_count
> 0)
3660 c
->object
.flags
|= SHOWN
;
3662 if (!revs
->boundary
)
3667 * get_revision_1() runs out the commits, and
3668 * we are done computing the boundaries.
3669 * switch to boundary commits output mode.
3674 * Update revs->commits to contain the list of
3677 create_boundary_commit_list(revs
);
3679 return get_revision_internal(revs
);
3683 * boundary commits are the commits that are parents of the
3684 * ones we got from get_revision_1() but they themselves are
3685 * not returned from get_revision_1(). Before returning
3686 * 'c', we need to mark its parents that they could be boundaries.
3689 for (l
= c
->parents
; l
; l
= l
->next
) {
3691 p
= &(l
->item
->object
);
3692 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
3694 p
->flags
|= CHILD_SHOWN
;
3695 gc_boundary(&revs
->boundary_commits
);
3696 add_object_array(p
, NULL
, &revs
->boundary_commits
);
3702 struct commit
*get_revision(struct rev_info
*revs
)
3705 struct commit_list
*reversed
;
3707 if (revs
->reverse
) {
3709 while ((c
= get_revision_internal(revs
)))
3710 commit_list_insert(c
, &reversed
);
3711 revs
->commits
= reversed
;
3713 revs
->reverse_output_stage
= 1;
3716 if (revs
->reverse_output_stage
) {
3717 c
= pop_commit(&revs
->commits
);
3718 if (revs
->track_linear
)
3719 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
3723 c
= get_revision_internal(revs
);
3724 if (c
&& revs
->graph
)
3725 graph_update(revs
->graph
, c
);
3727 free_saved_parents(revs
);
3728 if (revs
->previous_parents
) {
3729 free_commit_list(revs
->previous_parents
);
3730 revs
->previous_parents
= NULL
;
3736 char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
3738 if (commit
->object
.flags
& BOUNDARY
)
3740 else if (commit
->object
.flags
& UNINTERESTING
)
3742 else if (commit
->object
.flags
& PATCHSAME
)
3744 else if (!revs
|| revs
->left_right
) {
3745 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
3749 } else if (revs
->graph
)
3751 else if (revs
->cherry_mark
)
3756 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
3758 char *mark
= get_revision_mark(revs
, commit
);
3761 fputs(mark
, stdout
);