11 #include "reflog-walk.h"
12 #include "patch-ids.h"
15 #include "string-list.h"
18 #include "commit-slab.h"
20 #include "cache-tree.h"
24 #include "argv-array.h"
26 volatile show_early_output_fn_t show_early_output
;
28 static const char *term_bad
;
29 static const char *term_good
;
31 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
35 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
36 for (p
= name
; *p
&& *p
!= '\n'; p
++)
41 static void mark_blob_uninteresting(struct blob
*blob
)
45 if (blob
->object
.flags
& UNINTERESTING
)
47 blob
->object
.flags
|= UNINTERESTING
;
50 static void mark_tree_contents_uninteresting(struct tree
*tree
)
52 struct tree_desc desc
;
53 struct name_entry entry
;
54 struct object
*obj
= &tree
->object
;
56 if (!has_object_file(&obj
->oid
))
58 if (parse_tree(tree
) < 0)
59 die("bad tree %s", oid_to_hex(&obj
->oid
));
61 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
62 while (tree_entry(&desc
, &entry
)) {
63 switch (object_type(entry
.mode
)) {
65 mark_tree_uninteresting(lookup_tree(entry
.oid
));
68 mark_blob_uninteresting(lookup_blob(entry
.oid
));
71 /* Subproject commit - not in this repository */
77 * We don't care about the tree any more
78 * after it has been marked uninteresting.
80 free_tree_buffer(tree
);
83 void mark_tree_uninteresting(struct tree
*tree
)
91 if (obj
->flags
& UNINTERESTING
)
93 obj
->flags
|= UNINTERESTING
;
94 mark_tree_contents_uninteresting(tree
);
97 void mark_parents_uninteresting(struct commit
*commit
)
99 struct commit_list
*parents
= NULL
, *l
;
101 for (l
= commit
->parents
; l
; l
= l
->next
)
102 commit_list_insert(l
->item
, &parents
);
105 struct commit
*commit
= pop_commit(&parents
);
109 * A missing commit is ok iff its parent is marked
112 * We just mark such a thing parsed, so that when
113 * it is popped next time around, we won't be trying
114 * to parse it and get an error.
116 if (!has_object_file(&commit
->object
.oid
))
117 commit
->object
.parsed
= 1;
119 if (commit
->object
.flags
& UNINTERESTING
)
122 commit
->object
.flags
|= UNINTERESTING
;
125 * Normally we haven't parsed the parent
126 * yet, so we won't have a parent of a parent
127 * here. However, it may turn out that we've
128 * reached this commit some other way (where it
129 * wasn't uninteresting), in which case we need
130 * to mark its parents recursively too..
132 if (!commit
->parents
)
135 for (l
= commit
->parents
->next
; l
; l
= l
->next
)
136 commit_list_insert(l
->item
, &parents
);
137 commit
= commit
->parents
->item
;
142 static void add_pending_object_with_path(struct rev_info
*revs
,
144 const char *name
, unsigned mode
,
149 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
151 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
152 struct strbuf buf
= STRBUF_INIT
;
153 int len
= interpret_branch_name(name
, 0, &buf
, 0);
155 if (0 < len
&& name
[len
] && buf
.len
)
156 strbuf_addstr(&buf
, name
+ len
);
157 add_reflog_for_walk(revs
->reflog_info
,
158 (struct commit
*)obj
,
159 buf
.buf
[0] ? buf
.buf
: name
);
160 strbuf_release(&buf
);
161 return; /* do not add the commit itself */
163 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
166 static void add_pending_object_with_mode(struct rev_info
*revs
,
168 const char *name
, unsigned mode
)
170 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
173 void add_pending_object(struct rev_info
*revs
,
174 struct object
*obj
, const char *name
)
176 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
179 void add_head_to_pending(struct rev_info
*revs
)
181 struct object_id oid
;
183 if (get_oid("HEAD", &oid
))
185 obj
= parse_object(&oid
);
188 add_pending_object(revs
, obj
, "HEAD");
191 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
192 const struct object_id
*oid
,
195 struct object
*object
;
197 object
= parse_object(oid
);
199 if (revs
->ignore_missing
)
201 die("bad object %s", name
);
203 object
->flags
|= flags
;
207 void add_pending_oid(struct rev_info
*revs
, const char *name
,
208 const struct object_id
*oid
, unsigned int flags
)
210 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
211 add_pending_object(revs
, object
, name
);
214 static struct commit
*handle_commit(struct rev_info
*revs
,
215 struct object_array_entry
*entry
)
217 struct object
*object
= entry
->item
;
218 const char *name
= entry
->name
;
219 const char *path
= entry
->path
;
220 unsigned int mode
= entry
->mode
;
221 unsigned long flags
= object
->flags
;
224 * Tag object? Look what it points to..
226 while (object
->type
== OBJ_TAG
) {
227 struct tag
*tag
= (struct tag
*) object
;
228 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
229 add_pending_object(revs
, object
, tag
->tag
);
232 object
= parse_object(&tag
->tagged
->oid
);
234 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
236 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
238 object
->flags
|= flags
;
240 * We'll handle the tagged object by looping or dropping
241 * through to the non-tag handlers below. Do not
242 * propagate path data from the tag's pending entry.
249 * Commit object? Just return it, we'll do all the complex
252 if (object
->type
== OBJ_COMMIT
) {
253 struct commit
*commit
= (struct commit
*)object
;
254 if (parse_commit(commit
) < 0)
255 die("unable to parse commit %s", name
);
256 if (flags
& UNINTERESTING
) {
257 mark_parents_uninteresting(commit
);
260 if (revs
->show_source
&& !commit
->util
)
261 commit
->util
= xstrdup(name
);
266 * Tree object? Either mark it uninteresting, or add it
267 * to the list of objects to look at later..
269 if (object
->type
== OBJ_TREE
) {
270 struct tree
*tree
= (struct tree
*)object
;
271 if (!revs
->tree_objects
)
273 if (flags
& UNINTERESTING
) {
274 mark_tree_contents_uninteresting(tree
);
277 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
282 * Blob object? You know the drill by now..
284 if (object
->type
== OBJ_BLOB
) {
285 if (!revs
->blob_objects
)
287 if (flags
& UNINTERESTING
)
289 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
292 die("%s is unknown object", name
);
295 static int everybody_uninteresting(struct commit_list
*orig
,
296 struct commit
**interesting_cache
)
298 struct commit_list
*list
= orig
;
300 if (*interesting_cache
) {
301 struct commit
*commit
= *interesting_cache
;
302 if (!(commit
->object
.flags
& UNINTERESTING
))
307 struct commit
*commit
= list
->item
;
309 if (commit
->object
.flags
& UNINTERESTING
)
312 *interesting_cache
= commit
;
319 * A definition of "relevant" commit that we can use to simplify limited graphs
320 * by eliminating side branches.
322 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
323 * in our list), or that is a specified BOTTOM commit. Then after computing
324 * a limited list, during processing we can generally ignore boundary merges
325 * coming from outside the graph, (ie from irrelevant parents), and treat
326 * those merges as if they were single-parent. TREESAME is defined to consider
327 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
328 * we don't care if we were !TREESAME to non-graph parents.
330 * Treating bottom commits as relevant ensures that a limited graph's
331 * connection to the actual bottom commit is not viewed as a side branch, but
332 * treated as part of the graph. For example:
334 * ....Z...A---X---o---o---B
338 * When computing "A..B", the A-X connection is at least as important as
339 * Y-X, despite A being flagged UNINTERESTING.
341 * And when computing --ancestry-path "A..B", the A-X connection is more
342 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
344 static inline int relevant_commit(struct commit
*commit
)
346 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
350 * Return a single relevant commit from a parent list. If we are a TREESAME
351 * commit, and this selects one of our parents, then we can safely simplify to
354 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
355 struct commit_list
*orig
)
357 struct commit_list
*list
= orig
;
358 struct commit
*relevant
= NULL
;
364 * For 1-parent commits, or if first-parent-only, then return that
365 * first parent (even if not "relevant" by the above definition).
366 * TREESAME will have been set purely on that parent.
368 if (revs
->first_parent_only
|| !orig
->next
)
372 * For multi-parent commits, identify a sole relevant parent, if any.
373 * If we have only one relevant parent, then TREESAME will be set purely
374 * with regard to that parent, and we can simplify accordingly.
376 * If we have more than one relevant parent, or no relevant parents
377 * (and multiple irrelevant ones), then we can't select a parent here
381 struct commit
*commit
= list
->item
;
383 if (relevant_commit(commit
)) {
393 * The goal is to get REV_TREE_NEW as the result only if the
394 * diff consists of all '+' (and no other changes), REV_TREE_OLD
395 * if the whole diff is removal of old data, and otherwise
396 * REV_TREE_DIFFERENT (of course if the trees are the same we
397 * want REV_TREE_SAME).
399 * The only time we care about the distinction is when
400 * remove_empty_trees is in effect, in which case we care only about
401 * whether the whole change is REV_TREE_NEW, or if there's another type
402 * of change. Which means we can stop the diff early in either of these
405 * 1. We're not using remove_empty_trees at all.
407 * 2. We saw anything except REV_TREE_NEW.
409 static int tree_difference
= REV_TREE_SAME
;
411 static void file_add_remove(struct diff_options
*options
,
412 int addremove
, unsigned mode
,
413 const struct object_id
*oid
,
415 const char *fullpath
, unsigned dirty_submodule
)
417 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
418 struct rev_info
*revs
= options
->change_fn_data
;
420 tree_difference
|= diff
;
421 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
422 options
->flags
.has_changes
= 1;
425 static void file_change(struct diff_options
*options
,
426 unsigned old_mode
, unsigned new_mode
,
427 const struct object_id
*old_oid
,
428 const struct object_id
*new_oid
,
429 int old_oid_valid
, int new_oid_valid
,
430 const char *fullpath
,
431 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
433 tree_difference
= REV_TREE_DIFFERENT
;
434 options
->flags
.has_changes
= 1;
437 static int rev_compare_tree(struct rev_info
*revs
,
438 struct commit
*parent
, struct commit
*commit
)
440 struct tree
*t1
= parent
->tree
;
441 struct tree
*t2
= commit
->tree
;
448 if (revs
->simplify_by_decoration
) {
450 * If we are simplifying by decoration, then the commit
451 * is worth showing if it has a tag pointing at it.
453 if (get_name_decoration(&commit
->object
))
454 return REV_TREE_DIFFERENT
;
456 * A commit that is not pointed by a tag is uninteresting
457 * if we are not limited by path. This means that you will
458 * see the usual "commits that touch the paths" plus any
459 * tagged commit by specifying both --simplify-by-decoration
462 if (!revs
->prune_data
.nr
)
463 return REV_TREE_SAME
;
466 tree_difference
= REV_TREE_SAME
;
467 revs
->pruning
.flags
.has_changes
= 0;
468 if (diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "",
470 return REV_TREE_DIFFERENT
;
471 return tree_difference
;
474 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
477 struct tree
*t1
= commit
->tree
;
482 tree_difference
= REV_TREE_SAME
;
483 revs
->pruning
.flags
.has_changes
= 0;
484 retval
= diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
486 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
489 struct treesame_state
{
490 unsigned int nparents
;
491 unsigned char treesame
[FLEX_ARRAY
];
494 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
496 unsigned n
= commit_list_count(commit
->parents
);
497 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
499 add_decoration(&revs
->treesame
, &commit
->object
, st
);
504 * Must be called immediately after removing the nth_parent from a commit's
505 * parent list, if we are maintaining the per-parent treesame[] decoration.
506 * This does not recalculate the master TREESAME flag - update_treesame()
507 * should be called to update it after a sequence of treesame[] modifications
508 * that may have affected it.
510 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
512 struct treesame_state
*st
;
515 if (!commit
->parents
) {
517 * Have just removed the only parent from a non-merge.
518 * Different handling, as we lack decoration.
521 die("compact_treesame %u", nth_parent
);
522 old_same
= !!(commit
->object
.flags
& TREESAME
);
523 if (rev_same_tree_as_empty(revs
, commit
))
524 commit
->object
.flags
|= TREESAME
;
526 commit
->object
.flags
&= ~TREESAME
;
530 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
531 if (!st
|| nth_parent
>= st
->nparents
)
532 die("compact_treesame %u", nth_parent
);
534 old_same
= st
->treesame
[nth_parent
];
535 memmove(st
->treesame
+ nth_parent
,
536 st
->treesame
+ nth_parent
+ 1,
537 st
->nparents
- nth_parent
- 1);
540 * If we've just become a non-merge commit, update TREESAME
541 * immediately, and remove the no-longer-needed decoration.
542 * If still a merge, defer update until update_treesame().
544 if (--st
->nparents
== 1) {
545 if (commit
->parents
->next
)
546 die("compact_treesame parents mismatch");
547 if (st
->treesame
[0] && revs
->dense
)
548 commit
->object
.flags
|= TREESAME
;
550 commit
->object
.flags
&= ~TREESAME
;
551 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
557 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
559 if (commit
->parents
&& commit
->parents
->next
) {
561 struct treesame_state
*st
;
562 struct commit_list
*p
;
563 unsigned relevant_parents
;
564 unsigned relevant_change
, irrelevant_change
;
566 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
568 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
569 relevant_parents
= 0;
570 relevant_change
= irrelevant_change
= 0;
571 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
572 if (relevant_commit(p
->item
)) {
573 relevant_change
|= !st
->treesame
[n
];
576 irrelevant_change
|= !st
->treesame
[n
];
578 if (relevant_parents
? relevant_change
: irrelevant_change
)
579 commit
->object
.flags
&= ~TREESAME
;
581 commit
->object
.flags
|= TREESAME
;
584 return commit
->object
.flags
& TREESAME
;
587 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
590 * TREESAME is irrelevant unless prune && dense;
591 * if simplify_history is set, we can't have a mixture of TREESAME and
592 * !TREESAME INTERESTING parents (and we don't have treesame[]
593 * decoration anyway);
594 * if first_parent_only is set, then the TREESAME flag is locked
595 * against the first parent (and again we lack treesame[] decoration).
597 return revs
->prune
&& revs
->dense
&&
598 !revs
->simplify_history
&&
599 !revs
->first_parent_only
;
602 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
604 struct commit_list
**pp
, *parent
;
605 struct treesame_state
*ts
= NULL
;
606 int relevant_change
= 0, irrelevant_change
= 0;
607 int relevant_parents
, nth_parent
;
610 * If we don't do pruning, everything is interesting
618 if (!commit
->parents
) {
619 if (rev_same_tree_as_empty(revs
, commit
))
620 commit
->object
.flags
|= TREESAME
;
625 * Normal non-merge commit? If we don't want to make the
626 * history dense, we consider it always to be a change..
628 if (!revs
->dense
&& !commit
->parents
->next
)
631 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
632 (parent
= *pp
) != NULL
;
633 pp
= &parent
->next
, nth_parent
++) {
634 struct commit
*p
= parent
->item
;
635 if (relevant_commit(p
))
638 if (nth_parent
== 1) {
640 * This our second loop iteration - so we now know
641 * we're dealing with a merge.
643 * Do not compare with later parents when we care only about
644 * the first parent chain, in order to avoid derailing the
645 * traversal to follow a side branch that brought everything
646 * in the path we are limited to by the pathspec.
648 if (revs
->first_parent_only
)
651 * If this will remain a potentially-simplifiable
652 * merge, remember per-parent treesame if needed.
653 * Initialise the array with the comparison from our
656 if (revs
->treesame
.name
&&
657 !revs
->simplify_history
&&
658 !(commit
->object
.flags
& UNINTERESTING
)) {
659 ts
= initialise_treesame(revs
, commit
);
660 if (!(irrelevant_change
|| relevant_change
))
664 if (parse_commit(p
) < 0)
665 die("cannot simplify commit %s (because of %s)",
666 oid_to_hex(&commit
->object
.oid
),
667 oid_to_hex(&p
->object
.oid
));
668 switch (rev_compare_tree(revs
, p
, commit
)) {
670 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
671 /* Even if a merge with an uninteresting
672 * side branch brought the entire change
673 * we are interested in, we do not want
674 * to lose the other branches of this
675 * merge, so we just keep going.
678 ts
->treesame
[nth_parent
] = 1;
682 commit
->parents
= parent
;
683 commit
->object
.flags
|= TREESAME
;
687 if (revs
->remove_empty_trees
&&
688 rev_same_tree_as_empty(revs
, p
)) {
689 /* We are adding all the specified
690 * paths from this parent, so the
691 * history beyond this parent is not
692 * interesting. Remove its parents
693 * (they are grandparents for us).
694 * IOW, we pretend this parent is a
697 if (parse_commit(p
) < 0)
698 die("cannot simplify commit %s (invalid %s)",
699 oid_to_hex(&commit
->object
.oid
),
700 oid_to_hex(&p
->object
.oid
));
705 case REV_TREE_DIFFERENT
:
706 if (relevant_commit(p
))
709 irrelevant_change
= 1;
712 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
716 * TREESAME is straightforward for single-parent commits. For merge
717 * commits, it is most useful to define it so that "irrelevant"
718 * parents cannot make us !TREESAME - if we have any relevant
719 * parents, then we only consider TREESAMEness with respect to them,
720 * allowing irrelevant merges from uninteresting branches to be
721 * simplified away. Only if we have only irrelevant parents do we
722 * base TREESAME on them. Note that this logic is replicated in
723 * update_treesame, which should be kept in sync.
725 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
726 commit
->object
.flags
|= TREESAME
;
729 static void commit_list_insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
730 struct commit_list
*cached_base
, struct commit_list
**cache
)
732 struct commit_list
*new_entry
;
734 if (cached_base
&& p
->date
< cached_base
->item
->date
)
735 new_entry
= commit_list_insert_by_date(p
, &cached_base
->next
);
737 new_entry
= commit_list_insert_by_date(p
, head
);
739 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
743 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
744 struct commit_list
**list
, struct commit_list
**cache_ptr
)
746 struct commit_list
*parent
= commit
->parents
;
748 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
750 if (commit
->object
.flags
& ADDED
)
752 commit
->object
.flags
|= ADDED
;
754 if (revs
->include_check
&&
755 !revs
->include_check(commit
, revs
->include_check_data
))
759 * If the commit is uninteresting, don't try to
760 * prune parents - we want the maximal uninteresting
763 * Normally we haven't parsed the parent
764 * yet, so we won't have a parent of a parent
765 * here. However, it may turn out that we've
766 * reached this commit some other way (where it
767 * wasn't uninteresting), in which case we need
768 * to mark its parents recursively too..
770 if (commit
->object
.flags
& UNINTERESTING
) {
772 struct commit
*p
= parent
->item
;
773 parent
= parent
->next
;
775 p
->object
.flags
|= UNINTERESTING
;
776 if (parse_commit_gently(p
, 1) < 0)
779 mark_parents_uninteresting(p
);
780 if (p
->object
.flags
& SEEN
)
782 p
->object
.flags
|= SEEN
;
783 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
789 * Ok, the commit wasn't uninteresting. Try to
790 * simplify the commit history and find the parent
791 * that has no differences in the path set if one exists.
793 try_to_simplify_commit(revs
, commit
);
798 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
800 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
801 struct commit
*p
= parent
->item
;
803 if (parse_commit_gently(p
, revs
->ignore_missing_links
) < 0)
805 if (revs
->show_source
&& !p
->util
)
806 p
->util
= commit
->util
;
807 p
->object
.flags
|= left_flag
;
808 if (!(p
->object
.flags
& SEEN
)) {
809 p
->object
.flags
|= SEEN
;
810 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
812 if (revs
->first_parent_only
)
818 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
820 struct commit_list
*p
;
821 int left_count
= 0, right_count
= 0;
823 struct patch_ids ids
;
824 unsigned cherry_flag
;
826 /* First count the commits on the left and on the right */
827 for (p
= list
; p
; p
= p
->next
) {
828 struct commit
*commit
= p
->item
;
829 unsigned flags
= commit
->object
.flags
;
830 if (flags
& BOUNDARY
)
832 else if (flags
& SYMMETRIC_LEFT
)
838 if (!left_count
|| !right_count
)
841 left_first
= left_count
< right_count
;
842 init_patch_ids(&ids
);
843 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
845 /* Compute patch-ids for one side */
846 for (p
= list
; p
; p
= p
->next
) {
847 struct commit
*commit
= p
->item
;
848 unsigned flags
= commit
->object
.flags
;
850 if (flags
& BOUNDARY
)
853 * If we have fewer left, left_first is set and we omit
854 * commits on the right branch in this loop. If we have
855 * fewer right, we skip the left ones.
857 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
859 add_commit_patch_id(commit
, &ids
);
862 /* either cherry_mark or cherry_pick are true */
863 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
865 /* Check the other side */
866 for (p
= list
; p
; p
= p
->next
) {
867 struct commit
*commit
= p
->item
;
869 unsigned flags
= commit
->object
.flags
;
871 if (flags
& BOUNDARY
)
874 * If we have fewer left, left_first is set and we omit
875 * commits on the left branch in this loop.
877 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
881 * Have we seen the same patch id?
883 id
= has_commit_patch_id(commit
, &ids
);
887 commit
->object
.flags
|= cherry_flag
;
888 id
->commit
->object
.flags
|= cherry_flag
;
891 free_patch_ids(&ids
);
894 /* How many extra uninteresting commits we want to see.. */
897 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
898 struct commit
**interesting_cache
)
901 * No source list at all? We're definitely done..
907 * Does the destination list contain entries with a date
908 * before the source list? Definitely _not_ done.
910 if (date
<= src
->item
->date
)
914 * Does the source list still have interesting commits in
915 * it? Definitely not done..
917 if (!everybody_uninteresting(src
, interesting_cache
))
920 /* Ok, we're closing in.. */
925 * "rev-list --ancestry-path A..B" computes commits that are ancestors
926 * of B but not ancestors of A but further limits the result to those
927 * that are descendants of A. This takes the list of bottom commits and
928 * the result of "A..B" without --ancestry-path, and limits the latter
929 * further to the ones that can reach one of the commits in "bottom".
931 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
933 struct commit_list
*p
;
934 struct commit_list
*rlist
= NULL
;
938 * Reverse the list so that it will be likely that we would
939 * process parents before children.
941 for (p
= list
; p
; p
= p
->next
)
942 commit_list_insert(p
->item
, &rlist
);
944 for (p
= bottom
; p
; p
= p
->next
)
945 p
->item
->object
.flags
|= TMP_MARK
;
948 * Mark the ones that can reach bottom commits in "list",
949 * in a bottom-up fashion.
953 for (p
= rlist
; p
; p
= p
->next
) {
954 struct commit
*c
= p
->item
;
955 struct commit_list
*parents
;
956 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
958 for (parents
= c
->parents
;
960 parents
= parents
->next
) {
961 if (!(parents
->item
->object
.flags
& TMP_MARK
))
963 c
->object
.flags
|= TMP_MARK
;
968 } while (made_progress
);
971 * NEEDSWORK: decide if we want to remove parents that are
972 * not marked with TMP_MARK from commit->parents for commits
973 * in the resulting list. We may not want to do that, though.
977 * The ones that are not marked with TMP_MARK are uninteresting
979 for (p
= list
; p
; p
= p
->next
) {
980 struct commit
*c
= p
->item
;
981 if (c
->object
.flags
& TMP_MARK
)
983 c
->object
.flags
|= UNINTERESTING
;
986 /* We are done with the TMP_MARK */
987 for (p
= list
; p
; p
= p
->next
)
988 p
->item
->object
.flags
&= ~TMP_MARK
;
989 for (p
= bottom
; p
; p
= p
->next
)
990 p
->item
->object
.flags
&= ~TMP_MARK
;
991 free_commit_list(rlist
);
995 * Before walking the history, keep the set of "negative" refs the
996 * caller has asked to exclude.
998 * This is used to compute "rev-list --ancestry-path A..B", as we need
999 * to filter the result of "A..B" further to the ones that can actually
1002 static struct commit_list
*collect_bottom_commits(struct commit_list
*list
)
1004 struct commit_list
*elem
, *bottom
= NULL
;
1005 for (elem
= list
; elem
; elem
= elem
->next
)
1006 if (elem
->item
->object
.flags
& BOTTOM
)
1007 commit_list_insert(elem
->item
, &bottom
);
1011 /* Assumes either left_only or right_only is set */
1012 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1014 struct commit_list
*p
;
1016 for (p
= list
; p
; p
= p
->next
) {
1017 struct commit
*commit
= p
->item
;
1019 if (revs
->right_only
) {
1020 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1021 commit
->object
.flags
|= SHOWN
;
1022 } else /* revs->left_only is set */
1023 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1024 commit
->object
.flags
|= SHOWN
;
1028 static int limit_list(struct rev_info
*revs
)
1031 timestamp_t date
= TIME_MAX
;
1032 struct commit_list
*list
= revs
->commits
;
1033 struct commit_list
*newlist
= NULL
;
1034 struct commit_list
**p
= &newlist
;
1035 struct commit_list
*bottom
= NULL
;
1036 struct commit
*interesting_cache
= NULL
;
1038 if (revs
->ancestry_path
) {
1039 bottom
= collect_bottom_commits(list
);
1041 die("--ancestry-path given but there are no bottom commits");
1045 struct commit
*commit
= pop_commit(&list
);
1046 struct object
*obj
= &commit
->object
;
1047 show_early_output_fn_t show
;
1049 if (commit
== interesting_cache
)
1050 interesting_cache
= NULL
;
1052 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1053 obj
->flags
|= UNINTERESTING
;
1054 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
1056 if (obj
->flags
& UNINTERESTING
) {
1057 mark_parents_uninteresting(commit
);
1059 p
= &commit_list_insert(commit
, p
)->next
;
1060 slop
= still_interesting(list
, date
, slop
, &interesting_cache
);
1063 /* If showing all, add the whole pending list to the end */
1068 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1070 date
= commit
->date
;
1071 p
= &commit_list_insert(commit
, p
)->next
;
1073 show
= show_early_output
;
1077 show(revs
, newlist
);
1078 show_early_output
= NULL
;
1080 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1081 cherry_pick_list(newlist
, revs
);
1083 if (revs
->left_only
|| revs
->right_only
)
1084 limit_left_right(newlist
, revs
);
1087 limit_to_ancestry(bottom
, newlist
);
1088 free_commit_list(bottom
);
1092 * Check if any commits have become TREESAME by some of their parents
1093 * becoming UNINTERESTING.
1095 if (limiting_can_increase_treesame(revs
))
1096 for (list
= newlist
; list
; list
= list
->next
) {
1097 struct commit
*c
= list
->item
;
1098 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1100 update_treesame(revs
, c
);
1103 revs
->commits
= newlist
;
1108 * Add an entry to refs->cmdline with the specified information.
1111 static void add_rev_cmdline(struct rev_info
*revs
,
1112 struct object
*item
,
1117 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1118 unsigned int nr
= info
->nr
;
1120 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1121 info
->rev
[nr
].item
= item
;
1122 info
->rev
[nr
].name
= xstrdup(name
);
1123 info
->rev
[nr
].whence
= whence
;
1124 info
->rev
[nr
].flags
= flags
;
1128 static void add_rev_cmdline_list(struct rev_info
*revs
,
1129 struct commit_list
*commit_list
,
1133 while (commit_list
) {
1134 struct object
*object
= &commit_list
->item
->object
;
1135 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1137 commit_list
= commit_list
->next
;
1141 struct all_refs_cb
{
1143 int warned_bad_reflog
;
1144 struct rev_info
*all_revs
;
1145 const char *name_for_errormsg
;
1146 struct ref_store
*refs
;
1149 int ref_excluded(struct string_list
*ref_excludes
, const char *path
)
1151 struct string_list_item
*item
;
1155 for_each_string_list_item(item
, ref_excludes
) {
1156 if (!wildmatch(item
->string
, path
, 0))
1162 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1163 int flag
, void *cb_data
)
1165 struct all_refs_cb
*cb
= cb_data
;
1166 struct object
*object
;
1168 if (ref_excluded(cb
->all_revs
->ref_excludes
, path
))
1171 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1172 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1173 add_pending_oid(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1177 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1180 cb
->all_revs
= revs
;
1181 cb
->all_flags
= flags
;
1182 revs
->rev_input_given
= 1;
1186 void clear_ref_exclusion(struct string_list
**ref_excludes_p
)
1188 if (*ref_excludes_p
) {
1189 string_list_clear(*ref_excludes_p
, 0);
1190 free(*ref_excludes_p
);
1192 *ref_excludes_p
= NULL
;
1195 void add_ref_exclusion(struct string_list
**ref_excludes_p
, const char *exclude
)
1197 if (!*ref_excludes_p
) {
1198 *ref_excludes_p
= xcalloc(1, sizeof(**ref_excludes_p
));
1199 (*ref_excludes_p
)->strdup_strings
= 1;
1201 string_list_append(*ref_excludes_p
, exclude
);
1204 static void handle_refs(struct ref_store
*refs
,
1205 struct rev_info
*revs
, unsigned flags
,
1206 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1208 struct all_refs_cb cb
;
1211 /* this could happen with uninitialized submodules */
1215 init_all_refs_cb(&cb
, revs
, flags
);
1216 for_each(refs
, handle_one_ref
, &cb
);
1219 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1221 struct all_refs_cb
*cb
= cb_data
;
1222 if (!is_null_oid(oid
)) {
1223 struct object
*o
= parse_object(oid
);
1225 o
->flags
|= cb
->all_flags
;
1226 /* ??? CMDLINEFLAGS ??? */
1227 add_pending_object(cb
->all_revs
, o
, "");
1229 else if (!cb
->warned_bad_reflog
) {
1230 warning("reflog of '%s' references pruned commits",
1231 cb
->name_for_errormsg
);
1232 cb
->warned_bad_reflog
= 1;
1237 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1238 const char *email
, timestamp_t timestamp
, int tz
,
1239 const char *message
, void *cb_data
)
1241 handle_one_reflog_commit(ooid
, cb_data
);
1242 handle_one_reflog_commit(noid
, cb_data
);
1246 static int handle_one_reflog(const char *path
, const struct object_id
*oid
,
1247 int flag
, void *cb_data
)
1249 struct all_refs_cb
*cb
= cb_data
;
1250 cb
->warned_bad_reflog
= 0;
1251 cb
->name_for_errormsg
= path
;
1252 refs_for_each_reflog_ent(cb
->refs
, path
,
1253 handle_one_reflog_ent
, cb_data
);
1257 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1259 struct worktree
**worktrees
, **p
;
1261 worktrees
= get_worktrees(0);
1262 for (p
= worktrees
; *p
; p
++) {
1263 struct worktree
*wt
= *p
;
1268 cb
->refs
= get_worktree_ref_store(wt
);
1269 refs_for_each_reflog(cb
->refs
,
1273 free_worktrees(worktrees
);
1276 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1278 struct all_refs_cb cb
;
1281 cb
.all_flags
= flags
;
1282 cb
.refs
= get_main_ref_store();
1283 for_each_reflog(handle_one_reflog
, &cb
);
1285 if (!revs
->single_worktree
)
1286 add_other_reflogs_to_pending(&cb
);
1289 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1290 struct strbuf
*path
)
1292 size_t baselen
= path
->len
;
1295 if (it
->entry_count
>= 0) {
1296 struct tree
*tree
= lookup_tree(&it
->oid
);
1297 add_pending_object_with_path(revs
, &tree
->object
, "",
1301 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1302 struct cache_tree_sub
*sub
= it
->down
[i
];
1303 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1304 add_cache_tree(sub
->cache_tree
, revs
, path
);
1305 strbuf_setlen(path
, baselen
);
1310 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1311 struct index_state
*istate
)
1315 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1316 struct cache_entry
*ce
= istate
->cache
[i
];
1319 if (S_ISGITLINK(ce
->ce_mode
))
1322 blob
= lookup_blob(&ce
->oid
);
1324 die("unable to add index blob to traversal");
1325 add_pending_object_with_path(revs
, &blob
->object
, "",
1326 ce
->ce_mode
, ce
->name
);
1329 if (istate
->cache_tree
) {
1330 struct strbuf path
= STRBUF_INIT
;
1331 add_cache_tree(istate
->cache_tree
, revs
, &path
);
1332 strbuf_release(&path
);
1336 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1338 struct worktree
**worktrees
, **p
;
1341 do_add_index_objects_to_pending(revs
, &the_index
);
1343 if (revs
->single_worktree
)
1346 worktrees
= get_worktrees(0);
1347 for (p
= worktrees
; *p
; p
++) {
1348 struct worktree
*wt
= *p
;
1349 struct index_state istate
= { NULL
};
1352 continue; /* current index already taken care of */
1354 if (read_index_from(&istate
,
1355 worktree_git_path(wt
, "index"),
1356 get_worktree_git_dir(wt
)) > 0)
1357 do_add_index_objects_to_pending(revs
, &istate
);
1358 discard_index(&istate
);
1360 free_worktrees(worktrees
);
1363 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1366 struct object_id oid
;
1368 struct commit
*commit
;
1369 struct commit_list
*parents
;
1371 const char *arg
= arg_
;
1374 flags
^= UNINTERESTING
| BOTTOM
;
1377 if (get_oid_committish(arg
, &oid
))
1380 it
= get_reference(revs
, arg
, &oid
, 0);
1381 if (!it
&& revs
->ignore_missing
)
1383 if (it
->type
!= OBJ_TAG
)
1385 if (!((struct tag
*)it
)->tagged
)
1387 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1389 if (it
->type
!= OBJ_COMMIT
)
1391 commit
= (struct commit
*)it
;
1392 if (exclude_parent
&&
1393 exclude_parent
> commit_list_count(commit
->parents
))
1395 for (parents
= commit
->parents
, parent_number
= 1;
1397 parents
= parents
->next
, parent_number
++) {
1398 if (exclude_parent
&& parent_number
!= exclude_parent
)
1401 it
= &parents
->item
->object
;
1403 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1404 add_pending_object(revs
, it
, arg
);
1409 void init_revisions(struct rev_info
*revs
, const char *prefix
)
1411 memset(revs
, 0, sizeof(*revs
));
1413 revs
->abbrev
= DEFAULT_ABBREV
;
1414 revs
->ignore_merges
= 1;
1415 revs
->simplify_history
= 1;
1416 revs
->pruning
.flags
.recursive
= 1;
1417 revs
->pruning
.flags
.quick
= 1;
1418 revs
->pruning
.add_remove
= file_add_remove
;
1419 revs
->pruning
.change
= file_change
;
1420 revs
->pruning
.change_fn_data
= revs
;
1421 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
1423 revs
->prefix
= prefix
;
1426 revs
->skip_count
= -1;
1427 revs
->max_count
= -1;
1428 revs
->max_parents
= -1;
1429 revs
->expand_tabs_in_log
= -1;
1431 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1432 revs
->expand_tabs_in_log_default
= 8;
1434 init_grep_defaults();
1435 grep_init(&revs
->grep_filter
, prefix
);
1436 revs
->grep_filter
.status_only
= 1;
1438 diff_setup(&revs
->diffopt
);
1439 if (prefix
&& !revs
->diffopt
.prefix
) {
1440 revs
->diffopt
.prefix
= prefix
;
1441 revs
->diffopt
.prefix_length
= strlen(prefix
);
1444 revs
->notes_opt
.use_default_notes
= -1;
1447 static void add_pending_commit_list(struct rev_info
*revs
,
1448 struct commit_list
*commit_list
,
1451 while (commit_list
) {
1452 struct object
*object
= &commit_list
->item
->object
;
1453 object
->flags
|= flags
;
1454 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1455 commit_list
= commit_list
->next
;
1459 static void prepare_show_merge(struct rev_info
*revs
)
1461 struct commit_list
*bases
;
1462 struct commit
*head
, *other
;
1463 struct object_id oid
;
1464 const char **prune
= NULL
;
1465 int i
, prune_num
= 1; /* counting terminating NULL */
1467 if (get_oid("HEAD", &oid
))
1468 die("--merge without HEAD?");
1469 head
= lookup_commit_or_die(&oid
, "HEAD");
1470 if (get_oid("MERGE_HEAD", &oid
))
1471 die("--merge without MERGE_HEAD?");
1472 other
= lookup_commit_or_die(&oid
, "MERGE_HEAD");
1473 add_pending_object(revs
, &head
->object
, "HEAD");
1474 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1475 bases
= get_merge_bases(head
, other
);
1476 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
1477 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
1478 free_commit_list(bases
);
1479 head
->object
.flags
|= SYMMETRIC_LEFT
;
1483 for (i
= 0; i
< active_nr
; i
++) {
1484 const struct cache_entry
*ce
= active_cache
[i
];
1487 if (ce_path_match(ce
, &revs
->prune_data
, NULL
)) {
1489 REALLOC_ARRAY(prune
, prune_num
);
1490 prune
[prune_num
-2] = ce
->name
;
1491 prune
[prune_num
-1] = NULL
;
1493 while ((i
+1 < active_nr
) &&
1494 ce_same_name(ce
, active_cache
[i
+1]))
1497 clear_pathspec(&revs
->prune_data
);
1498 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1499 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
1503 static int dotdot_missing(const char *arg
, char *dotdot
,
1504 struct rev_info
*revs
, int symmetric
)
1506 if (revs
->ignore_missing
)
1508 /* de-munge so we report the full argument */
1511 ? "Invalid symmetric difference expression %s"
1512 : "Invalid revision range %s", arg
);
1515 static int handle_dotdot_1(const char *arg
, char *dotdot
,
1516 struct rev_info
*revs
, int flags
,
1517 int cant_be_filename
,
1518 struct object_context
*a_oc
,
1519 struct object_context
*b_oc
)
1521 const char *a_name
, *b_name
;
1522 struct object_id a_oid
, b_oid
;
1523 struct object
*a_obj
, *b_obj
;
1524 unsigned int a_flags
, b_flags
;
1526 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
1527 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
1533 b_name
= dotdot
+ 2;
1534 if (*b_name
== '.') {
1541 if (get_oid_with_context(a_name
, oc_flags
, &a_oid
, a_oc
) ||
1542 get_oid_with_context(b_name
, oc_flags
, &b_oid
, b_oc
))
1545 if (!cant_be_filename
) {
1547 verify_non_filename(revs
->prefix
, arg
);
1551 a_obj
= parse_object(&a_oid
);
1552 b_obj
= parse_object(&b_oid
);
1553 if (!a_obj
|| !b_obj
)
1554 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1559 a_flags
= flags_exclude
;
1561 /* A...B -- find merge bases between the two */
1562 struct commit
*a
, *b
;
1563 struct commit_list
*exclude
;
1565 a
= lookup_commit_reference(&a_obj
->oid
);
1566 b
= lookup_commit_reference(&b_obj
->oid
);
1568 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1570 exclude
= get_merge_bases(a
, b
);
1571 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
1573 add_pending_commit_list(revs
, exclude
, flags_exclude
);
1574 free_commit_list(exclude
);
1577 a_flags
= flags
| SYMMETRIC_LEFT
;
1580 a_obj
->flags
|= a_flags
;
1581 b_obj
->flags
|= b_flags
;
1582 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
1583 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
1584 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
1585 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
1589 static int handle_dotdot(const char *arg
,
1590 struct rev_info
*revs
, int flags
,
1591 int cant_be_filename
)
1593 struct object_context a_oc
, b_oc
;
1594 char *dotdot
= strstr(arg
, "..");
1600 memset(&a_oc
, 0, sizeof(a_oc
));
1601 memset(&b_oc
, 0, sizeof(b_oc
));
1604 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
1614 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
1616 struct object_context oc
;
1618 struct object
*object
;
1619 struct object_id oid
;
1621 const char *arg
= arg_
;
1622 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
1623 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
1625 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
1627 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
1629 * Just ".."? That is not a range but the
1630 * pathspec for the parent directory.
1635 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
1638 mark
= strstr(arg
, "^@");
1639 if (mark
&& !mark
[2]) {
1641 if (add_parents_only(revs
, arg
, flags
, 0))
1645 mark
= strstr(arg
, "^!");
1646 if (mark
&& !mark
[2]) {
1648 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
1651 mark
= strstr(arg
, "^-");
1653 int exclude_parent
= 1;
1657 exclude_parent
= strtoul(mark
+ 2, &end
, 10);
1658 if (*end
!= '\0' || !exclude_parent
)
1663 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
1669 local_flags
= UNINTERESTING
| BOTTOM
;
1673 if (revarg_opt
& REVARG_COMMITTISH
)
1674 get_sha1_flags
|= GET_OID_COMMITTISH
;
1676 if (get_oid_with_context(arg
, get_sha1_flags
, &oid
, &oc
))
1677 return revs
->ignore_missing
? 0 : -1;
1678 if (!cant_be_filename
)
1679 verify_non_filename(revs
->prefix
, arg
);
1680 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
1681 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
1682 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
1687 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
,
1688 struct argv_array
*prune
)
1690 while (strbuf_getline(sb
, stdin
) != EOF
)
1691 argv_array_push(prune
, sb
->buf
);
1694 static void read_revisions_from_stdin(struct rev_info
*revs
,
1695 struct argv_array
*prune
)
1698 int seen_dashdash
= 0;
1701 save_warning
= warn_on_object_refname_ambiguity
;
1702 warn_on_object_refname_ambiguity
= 0;
1704 strbuf_init(&sb
, 1000);
1705 while (strbuf_getline(&sb
, stdin
) != EOF
) {
1709 if (sb
.buf
[0] == '-') {
1710 if (len
== 2 && sb
.buf
[1] == '-') {
1714 die("options not supported in --stdin mode");
1716 if (handle_revision_arg(sb
.buf
, revs
, 0,
1717 REVARG_CANNOT_BE_FILENAME
))
1718 die("bad revision '%s'", sb
.buf
);
1721 read_pathspec_from_stdin(revs
, &sb
, prune
);
1723 strbuf_release(&sb
);
1724 warn_on_object_refname_ambiguity
= save_warning
;
1727 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1729 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1732 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1734 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1737 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1739 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1742 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1743 int *unkc
, const char **unkv
)
1745 const char *arg
= argv
[0];
1749 /* pseudo revision arguments */
1750 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1751 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1752 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1753 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1754 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
1755 !strcmp(arg
, "--indexed-objects") ||
1756 starts_with(arg
, "--exclude=") ||
1757 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
1758 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
1760 unkv
[(*unkc
)++] = arg
;
1764 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
1765 revs
->max_count
= atoi(optarg
);
1768 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
1769 revs
->skip_count
= atoi(optarg
);
1771 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1772 /* accept -<digit>, like traditional "head" */
1773 if (strtol_i(arg
+ 1, 10, &revs
->max_count
) < 0 ||
1774 revs
->max_count
< 0)
1775 die("'%s': not a non-negative integer", arg
+ 1);
1777 } else if (!strcmp(arg
, "-n")) {
1779 return error("-n requires an argument");
1780 revs
->max_count
= atoi(argv
[1]);
1783 } else if (skip_prefix(arg
, "-n", &optarg
)) {
1784 revs
->max_count
= atoi(optarg
);
1786 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
1787 revs
->max_age
= atoi(optarg
);
1789 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
1790 revs
->max_age
= approxidate(optarg
);
1792 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
1793 revs
->max_age
= approxidate(optarg
);
1795 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
1796 revs
->min_age
= atoi(optarg
);
1798 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
1799 revs
->min_age
= approxidate(optarg
);
1801 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
1802 revs
->min_age
= approxidate(optarg
);
1804 } else if (!strcmp(arg
, "--first-parent")) {
1805 revs
->first_parent_only
= 1;
1806 } else if (!strcmp(arg
, "--ancestry-path")) {
1807 revs
->ancestry_path
= 1;
1808 revs
->simplify_history
= 0;
1810 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1811 init_reflog_walk(&revs
->reflog_info
);
1812 } else if (!strcmp(arg
, "--default")) {
1814 return error("bad --default argument");
1815 revs
->def
= argv
[1];
1817 } else if (!strcmp(arg
, "--merge")) {
1818 revs
->show_merge
= 1;
1819 } else if (!strcmp(arg
, "--topo-order")) {
1820 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
1821 revs
->topo_order
= 1;
1822 } else if (!strcmp(arg
, "--simplify-merges")) {
1823 revs
->simplify_merges
= 1;
1824 revs
->topo_order
= 1;
1825 revs
->rewrite_parents
= 1;
1826 revs
->simplify_history
= 0;
1828 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1829 revs
->simplify_merges
= 1;
1830 revs
->topo_order
= 1;
1831 revs
->rewrite_parents
= 1;
1832 revs
->simplify_history
= 0;
1833 revs
->simplify_by_decoration
= 1;
1836 load_ref_decorations(NULL
, DECORATE_SHORT_REFS
);
1837 } else if (!strcmp(arg
, "--date-order")) {
1838 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
1839 revs
->topo_order
= 1;
1840 } else if (!strcmp(arg
, "--author-date-order")) {
1841 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
1842 revs
->topo_order
= 1;
1843 } else if (!strcmp(arg
, "--early-output")) {
1844 revs
->early_output
= 100;
1845 revs
->topo_order
= 1;
1846 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
1847 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
1848 die("'%s': not a non-negative integer", optarg
);
1849 revs
->topo_order
= 1;
1850 } else if (!strcmp(arg
, "--parents")) {
1851 revs
->rewrite_parents
= 1;
1852 revs
->print_parents
= 1;
1853 } else if (!strcmp(arg
, "--dense")) {
1855 } else if (!strcmp(arg
, "--sparse")) {
1857 } else if (!strcmp(arg
, "--show-all")) {
1859 } else if (!strcmp(arg
, "--in-commit-order")) {
1860 revs
->tree_blobs_in_commit_order
= 1;
1861 } else if (!strcmp(arg
, "--remove-empty")) {
1862 revs
->remove_empty_trees
= 1;
1863 } else if (!strcmp(arg
, "--merges")) {
1864 revs
->min_parents
= 2;
1865 } else if (!strcmp(arg
, "--no-merges")) {
1866 revs
->max_parents
= 1;
1867 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
1868 revs
->min_parents
= atoi(optarg
);
1869 } else if (!strcmp(arg
, "--no-min-parents")) {
1870 revs
->min_parents
= 0;
1871 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
1872 revs
->max_parents
= atoi(optarg
);
1873 } else if (!strcmp(arg
, "--no-max-parents")) {
1874 revs
->max_parents
= -1;
1875 } else if (!strcmp(arg
, "--boundary")) {
1877 } else if (!strcmp(arg
, "--left-right")) {
1878 revs
->left_right
= 1;
1879 } else if (!strcmp(arg
, "--left-only")) {
1880 if (revs
->right_only
)
1881 die("--left-only is incompatible with --right-only"
1883 revs
->left_only
= 1;
1884 } else if (!strcmp(arg
, "--right-only")) {
1885 if (revs
->left_only
)
1886 die("--right-only is incompatible with --left-only");
1887 revs
->right_only
= 1;
1888 } else if (!strcmp(arg
, "--cherry")) {
1889 if (revs
->left_only
)
1890 die("--cherry is incompatible with --left-only");
1891 revs
->cherry_mark
= 1;
1892 revs
->right_only
= 1;
1893 revs
->max_parents
= 1;
1895 } else if (!strcmp(arg
, "--count")) {
1897 } else if (!strcmp(arg
, "--cherry-mark")) {
1898 if (revs
->cherry_pick
)
1899 die("--cherry-mark is incompatible with --cherry-pick");
1900 revs
->cherry_mark
= 1;
1901 revs
->limited
= 1; /* needs limit_list() */
1902 } else if (!strcmp(arg
, "--cherry-pick")) {
1903 if (revs
->cherry_mark
)
1904 die("--cherry-pick is incompatible with --cherry-mark");
1905 revs
->cherry_pick
= 1;
1907 } else if (!strcmp(arg
, "--objects")) {
1908 revs
->tag_objects
= 1;
1909 revs
->tree_objects
= 1;
1910 revs
->blob_objects
= 1;
1911 } else if (!strcmp(arg
, "--objects-edge")) {
1912 revs
->tag_objects
= 1;
1913 revs
->tree_objects
= 1;
1914 revs
->blob_objects
= 1;
1915 revs
->edge_hint
= 1;
1916 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
1917 revs
->tag_objects
= 1;
1918 revs
->tree_objects
= 1;
1919 revs
->blob_objects
= 1;
1920 revs
->edge_hint
= 1;
1921 revs
->edge_hint_aggressive
= 1;
1922 } else if (!strcmp(arg
, "--verify-objects")) {
1923 revs
->tag_objects
= 1;
1924 revs
->tree_objects
= 1;
1925 revs
->blob_objects
= 1;
1926 revs
->verify_objects
= 1;
1927 } else if (!strcmp(arg
, "--unpacked")) {
1929 } else if (starts_with(arg
, "--unpacked=")) {
1930 die("--unpacked=<packfile> no longer supported.");
1931 } else if (!strcmp(arg
, "-r")) {
1933 revs
->diffopt
.flags
.recursive
= 1;
1934 } else if (!strcmp(arg
, "-t")) {
1936 revs
->diffopt
.flags
.recursive
= 1;
1937 revs
->diffopt
.flags
.tree_in_recursive
= 1;
1938 } else if (!strcmp(arg
, "-m")) {
1939 revs
->ignore_merges
= 0;
1940 } else if (!strcmp(arg
, "-c")) {
1942 revs
->dense_combined_merges
= 0;
1943 revs
->combine_merges
= 1;
1944 } else if (!strcmp(arg
, "--cc")) {
1946 revs
->dense_combined_merges
= 1;
1947 revs
->combine_merges
= 1;
1948 } else if (!strcmp(arg
, "-v")) {
1949 revs
->verbose_header
= 1;
1950 } else if (!strcmp(arg
, "--pretty")) {
1951 revs
->verbose_header
= 1;
1952 revs
->pretty_given
= 1;
1953 get_commit_format(NULL
, revs
);
1954 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
1955 skip_prefix(arg
, "--format=", &optarg
)) {
1957 * Detached form ("--pretty X" as opposed to "--pretty=X")
1958 * not allowed, since the argument is optional.
1960 revs
->verbose_header
= 1;
1961 revs
->pretty_given
= 1;
1962 get_commit_format(optarg
, revs
);
1963 } else if (!strcmp(arg
, "--expand-tabs")) {
1964 revs
->expand_tabs_in_log
= 8;
1965 } else if (!strcmp(arg
, "--no-expand-tabs")) {
1966 revs
->expand_tabs_in_log
= 0;
1967 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
1969 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
1970 die("'%s': not a non-negative integer", arg
);
1971 revs
->expand_tabs_in_log
= val
;
1972 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
1973 revs
->show_notes
= 1;
1974 revs
->show_notes_given
= 1;
1975 revs
->notes_opt
.use_default_notes
= 1;
1976 } else if (!strcmp(arg
, "--show-signature")) {
1977 revs
->show_signature
= 1;
1978 } else if (!strcmp(arg
, "--no-show-signature")) {
1979 revs
->show_signature
= 0;
1980 } else if (!strcmp(arg
, "--show-linear-break")) {
1981 revs
->break_bar
= " ..........";
1982 revs
->track_linear
= 1;
1983 revs
->track_first_time
= 1;
1984 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
1985 revs
->break_bar
= xstrdup(optarg
);
1986 revs
->track_linear
= 1;
1987 revs
->track_first_time
= 1;
1988 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
1989 skip_prefix(arg
, "--notes=", &optarg
)) {
1990 struct strbuf buf
= STRBUF_INIT
;
1991 revs
->show_notes
= 1;
1992 revs
->show_notes_given
= 1;
1993 if (starts_with(arg
, "--show-notes=") &&
1994 revs
->notes_opt
.use_default_notes
< 0)
1995 revs
->notes_opt
.use_default_notes
= 1;
1996 strbuf_addstr(&buf
, optarg
);
1997 expand_notes_ref(&buf
);
1998 string_list_append(&revs
->notes_opt
.extra_notes_refs
,
1999 strbuf_detach(&buf
, NULL
));
2000 } else if (!strcmp(arg
, "--no-notes")) {
2001 revs
->show_notes
= 0;
2002 revs
->show_notes_given
= 1;
2003 revs
->notes_opt
.use_default_notes
= -1;
2004 /* we have been strdup'ing ourselves, so trick
2005 * string_list into free()ing strings */
2006 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 1;
2007 string_list_clear(&revs
->notes_opt
.extra_notes_refs
, 0);
2008 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 0;
2009 } else if (!strcmp(arg
, "--standard-notes")) {
2010 revs
->show_notes_given
= 1;
2011 revs
->notes_opt
.use_default_notes
= 1;
2012 } else if (!strcmp(arg
, "--no-standard-notes")) {
2013 revs
->notes_opt
.use_default_notes
= 0;
2014 } else if (!strcmp(arg
, "--oneline")) {
2015 revs
->verbose_header
= 1;
2016 get_commit_format("oneline", revs
);
2017 revs
->pretty_given
= 1;
2018 revs
->abbrev_commit
= 1;
2019 } else if (!strcmp(arg
, "--graph")) {
2020 revs
->topo_order
= 1;
2021 revs
->rewrite_parents
= 1;
2022 revs
->graph
= graph_init(revs
);
2023 } else if (!strcmp(arg
, "--root")) {
2024 revs
->show_root_diff
= 1;
2025 } else if (!strcmp(arg
, "--no-commit-id")) {
2026 revs
->no_commit_id
= 1;
2027 } else if (!strcmp(arg
, "--always")) {
2028 revs
->always_show_header
= 1;
2029 } else if (!strcmp(arg
, "--no-abbrev")) {
2031 } else if (!strcmp(arg
, "--abbrev")) {
2032 revs
->abbrev
= DEFAULT_ABBREV
;
2033 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2034 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2035 if (revs
->abbrev
< MINIMUM_ABBREV
)
2036 revs
->abbrev
= MINIMUM_ABBREV
;
2037 else if (revs
->abbrev
> 40)
2039 } else if (!strcmp(arg
, "--abbrev-commit")) {
2040 revs
->abbrev_commit
= 1;
2041 revs
->abbrev_commit_given
= 1;
2042 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2043 revs
->abbrev_commit
= 0;
2044 } else if (!strcmp(arg
, "--full-diff")) {
2046 revs
->full_diff
= 1;
2047 } else if (!strcmp(arg
, "--full-history")) {
2048 revs
->simplify_history
= 0;
2049 } else if (!strcmp(arg
, "--relative-date")) {
2050 revs
->date_mode
.type
= DATE_RELATIVE
;
2051 revs
->date_mode_explicit
= 1;
2052 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2053 parse_date_format(optarg
, &revs
->date_mode
);
2054 revs
->date_mode_explicit
= 1;
2056 } else if (!strcmp(arg
, "--log-size")) {
2057 revs
->show_log_size
= 1;
2060 * Grepping the commit log
2062 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2063 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2065 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2066 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2068 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2069 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2071 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2072 add_message_grep(revs
, optarg
);
2074 } else if (!strcmp(arg
, "--grep-debug")) {
2075 revs
->grep_filter
.debug
= 1;
2076 } else if (!strcmp(arg
, "--basic-regexp")) {
2077 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2078 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2079 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2080 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2081 revs
->grep_filter
.ignore_case
= 1;
2082 revs
->diffopt
.flags
.pickaxe_ignore_case
= 1;
2083 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2084 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2085 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2086 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2087 } else if (!strcmp(arg
, "--all-match")) {
2088 revs
->grep_filter
.all_match
= 1;
2089 } else if (!strcmp(arg
, "--invert-grep")) {
2090 revs
->invert_grep
= 1;
2091 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2092 if (strcmp(optarg
, "none"))
2093 git_log_output_encoding
= xstrdup(optarg
);
2095 git_log_output_encoding
= "";
2097 } else if (!strcmp(arg
, "--reverse")) {
2099 } else if (!strcmp(arg
, "--children")) {
2100 revs
->children
.name
= "children";
2102 } else if (!strcmp(arg
, "--ignore-missing")) {
2103 revs
->ignore_missing
= 1;
2105 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2107 unkv
[(*unkc
)++] = arg
;
2110 if (revs
->graph
&& revs
->track_linear
)
2111 die("--show-linear-break and --graph are incompatible");
2116 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2117 const struct option
*options
,
2118 const char * const usagestr
[])
2120 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2121 &ctx
->cpidx
, ctx
->out
);
2123 error("unknown option `%s'", ctx
->argv
[0]);
2124 usage_with_options(usagestr
, options
);
2130 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2131 void *cb_data
, const char *term
)
2133 struct strbuf bisect_refs
= STRBUF_INIT
;
2135 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2136 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, fn
, cb_data
, 0);
2137 strbuf_release(&bisect_refs
);
2141 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2143 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2146 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2148 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2151 static int handle_revision_pseudo_opt(const char *submodule
,
2152 struct rev_info
*revs
,
2153 int argc
, const char **argv
, int *flags
)
2155 const char *arg
= argv
[0];
2157 struct ref_store
*refs
;
2162 * We need some something like get_submodule_worktrees()
2163 * before we can go through all worktrees of a submodule,
2164 * .e.g with adding all HEADs from --all, which is not
2165 * supported right now, so stick to single worktree.
2167 if (!revs
->single_worktree
)
2168 die("BUG: --single-worktree cannot be used together with submodule");
2169 refs
= get_submodule_ref_store(submodule
);
2171 refs
= get_main_ref_store();
2176 * Commands like "git shortlog" will not accept the options below
2177 * unless parse_revision_opt queues them (as opposed to erroring
2180 * When implementing your new pseudo-option, remember to
2181 * register it in the list at the top of handle_revision_opt.
2183 if (!strcmp(arg
, "--all")) {
2184 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2185 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2186 if (!revs
->single_worktree
) {
2187 struct all_refs_cb cb
;
2189 init_all_refs_cb(&cb
, revs
, *flags
);
2190 other_head_refs(handle_one_ref
, &cb
);
2192 clear_ref_exclusion(&revs
->ref_excludes
);
2193 } else if (!strcmp(arg
, "--branches")) {
2194 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2195 clear_ref_exclusion(&revs
->ref_excludes
);
2196 } else if (!strcmp(arg
, "--bisect")) {
2197 read_bisect_terms(&term_bad
, &term_good
);
2198 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2199 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2200 for_each_good_bisect_ref
);
2202 } else if (!strcmp(arg
, "--tags")) {
2203 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2204 clear_ref_exclusion(&revs
->ref_excludes
);
2205 } else if (!strcmp(arg
, "--remotes")) {
2206 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2207 clear_ref_exclusion(&revs
->ref_excludes
);
2208 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2209 struct all_refs_cb cb
;
2210 init_all_refs_cb(&cb
, revs
, *flags
);
2211 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
2212 clear_ref_exclusion(&revs
->ref_excludes
);
2214 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2215 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2217 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2218 struct all_refs_cb cb
;
2219 init_all_refs_cb(&cb
, revs
, *flags
);
2220 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/heads/", &cb
);
2221 clear_ref_exclusion(&revs
->ref_excludes
);
2222 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2223 struct all_refs_cb cb
;
2224 init_all_refs_cb(&cb
, revs
, *flags
);
2225 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/tags/", &cb
);
2226 clear_ref_exclusion(&revs
->ref_excludes
);
2227 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2228 struct all_refs_cb cb
;
2229 init_all_refs_cb(&cb
, revs
, *flags
);
2230 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/remotes/", &cb
);
2231 clear_ref_exclusion(&revs
->ref_excludes
);
2232 } else if (!strcmp(arg
, "--reflog")) {
2233 add_reflogs_to_pending(revs
, *flags
);
2234 } else if (!strcmp(arg
, "--indexed-objects")) {
2235 add_index_objects_to_pending(revs
, *flags
);
2236 } else if (!strcmp(arg
, "--not")) {
2237 *flags
^= UNINTERESTING
| BOTTOM
;
2238 } else if (!strcmp(arg
, "--no-walk")) {
2239 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2240 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2242 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2243 * not allowed, since the argument is optional.
2245 if (!strcmp(optarg
, "sorted"))
2246 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2247 else if (!strcmp(optarg
, "unsorted"))
2248 revs
->no_walk
= REVISION_WALK_NO_WALK_UNSORTED
;
2250 return error("invalid argument to --no-walk");
2251 } else if (!strcmp(arg
, "--do-walk")) {
2253 } else if (!strcmp(arg
, "--single-worktree")) {
2254 revs
->single_worktree
= 1;
2262 static void NORETURN
diagnose_missing_default(const char *def
)
2265 const char *refname
;
2267 refname
= resolve_ref_unsafe(def
, 0, NULL
, &flags
);
2268 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2269 die(_("your current branch appears to be broken"));
2271 skip_prefix(refname
, "refs/heads/", &refname
);
2272 die(_("your current branch '%s' does not have any commits yet"),
2277 * Parse revision information, filling in the "rev_info" structure,
2278 * and removing the used arguments from the argument list.
2280 * Returns the number of arguments left that weren't recognized
2281 * (which are also moved to the head of the argument list)
2283 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2285 int i
, flags
, left
, seen_dashdash
, read_from_stdin
, got_rev_arg
= 0, revarg_opt
;
2286 struct argv_array prune_data
= ARGV_ARRAY_INIT
;
2287 const char *submodule
= NULL
;
2290 submodule
= opt
->submodule
;
2292 /* First, search for "--" */
2293 if (opt
&& opt
->assume_dashdash
) {
2297 for (i
= 1; i
< argc
; i
++) {
2298 const char *arg
= argv
[i
];
2299 if (strcmp(arg
, "--"))
2304 argv_array_pushv(&prune_data
, argv
+ i
+ 1);
2310 /* Second, deal with arguments and options */
2312 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2314 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2315 read_from_stdin
= 0;
2316 for (left
= i
= 1; i
< argc
; i
++) {
2317 const char *arg
= argv
[i
];
2321 opts
= handle_revision_pseudo_opt(submodule
,
2322 revs
, argc
- i
, argv
+ i
,
2329 if (!strcmp(arg
, "--stdin")) {
2330 if (revs
->disable_stdin
) {
2334 if (read_from_stdin
++)
2335 die("--stdin given twice?");
2336 read_revisions_from_stdin(revs
, &prune_data
);
2340 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
2351 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
2353 if (seen_dashdash
|| *arg
== '^')
2354 die("bad revision '%s'", arg
);
2356 /* If we didn't have a "--":
2357 * (1) all filenames must exist;
2358 * (2) all rev-args must not be interpretable
2359 * as a valid filename.
2360 * but the latter we have checked in the main loop.
2362 for (j
= i
; j
< argc
; j
++)
2363 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
2365 argv_array_pushv(&prune_data
, argv
+ i
);
2372 if (prune_data
.argc
) {
2374 * If we need to introduce the magic "a lone ':' means no
2375 * pathspec whatsoever", here is the place to do so.
2377 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2378 * prune_data.nr = 0;
2379 * prune_data.alloc = 0;
2380 * free(prune_data.path);
2381 * prune_data.path = NULL;
2383 * terminate prune_data.alloc with NULL and
2384 * call init_pathspec() to set revs->prune_data here.
2387 parse_pathspec(&revs
->prune_data
, 0, 0,
2388 revs
->prefix
, prune_data
.argv
);
2390 argv_array_clear(&prune_data
);
2392 if (revs
->def
== NULL
)
2393 revs
->def
= opt
? opt
->def
: NULL
;
2394 if (opt
&& opt
->tweak
)
2395 opt
->tweak(revs
, opt
);
2396 if (revs
->show_merge
)
2397 prepare_show_merge(revs
);
2398 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
&& !got_rev_arg
) {
2399 struct object_id oid
;
2400 struct object
*object
;
2401 struct object_context oc
;
2402 if (get_oid_with_context(revs
->def
, 0, &oid
, &oc
))
2403 diagnose_missing_default(revs
->def
);
2404 object
= get_reference(revs
, revs
->def
, &oid
, 0);
2405 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
2408 /* Did the user ask for any diff output? Run the diff! */
2409 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
2412 /* Pickaxe, diff-filter and rename following need diffs */
2413 if (revs
->diffopt
.pickaxe
||
2414 revs
->diffopt
.filter
||
2415 revs
->diffopt
.flags
.follow_renames
)
2418 if (revs
->topo_order
)
2421 if (revs
->prune_data
.nr
) {
2422 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
2423 /* Can't prune commits with rename following: the paths change.. */
2424 if (!revs
->diffopt
.flags
.follow_renames
)
2426 if (!revs
->full_diff
)
2427 copy_pathspec(&revs
->diffopt
.pathspec
,
2430 if (revs
->combine_merges
)
2431 revs
->ignore_merges
= 0;
2432 revs
->diffopt
.abbrev
= revs
->abbrev
;
2434 if (revs
->line_level_traverse
) {
2436 revs
->topo_order
= 1;
2439 diff_setup_done(&revs
->diffopt
);
2441 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED
,
2442 &revs
->grep_filter
);
2443 compile_grep_patterns(&revs
->grep_filter
);
2445 if (revs
->reverse
&& revs
->reflog_info
)
2446 die("cannot combine --reverse with --walk-reflogs");
2447 if (revs
->reflog_info
&& revs
->limited
)
2448 die("cannot combine --walk-reflogs with history-limiting options");
2449 if (revs
->rewrite_parents
&& revs
->children
.name
)
2450 die("cannot combine --parents and --children");
2453 * Limitations on the graph functionality
2455 if (revs
->reverse
&& revs
->graph
)
2456 die("cannot combine --reverse with --graph");
2458 if (revs
->reflog_info
&& revs
->graph
)
2459 die("cannot combine --walk-reflogs with --graph");
2460 if (revs
->no_walk
&& revs
->graph
)
2461 die("cannot combine --no-walk with --graph");
2462 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
2463 die("cannot use --grep-reflog without --walk-reflogs");
2465 if (revs
->first_parent_only
&& revs
->bisect
)
2466 die(_("--first-parent is incompatible with --bisect"));
2468 if (revs
->expand_tabs_in_log
< 0)
2469 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
2474 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
2476 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
2479 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
2482 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
2484 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2485 struct commit_list
**pp
, *p
;
2486 int surviving_parents
;
2488 /* Examine existing parents while marking ones we have seen... */
2489 pp
= &commit
->parents
;
2490 surviving_parents
= 0;
2491 while ((p
= *pp
) != NULL
) {
2492 struct commit
*parent
= p
->item
;
2493 if (parent
->object
.flags
& TMP_MARK
) {
2496 compact_treesame(revs
, commit
, surviving_parents
);
2499 parent
->object
.flags
|= TMP_MARK
;
2500 surviving_parents
++;
2503 /* clear the temporary mark */
2504 for (p
= commit
->parents
; p
; p
= p
->next
) {
2505 p
->item
->object
.flags
&= ~TMP_MARK
;
2507 /* no update_treesame() - removing duplicates can't affect TREESAME */
2508 return surviving_parents
;
2511 struct merge_simplify_state
{
2512 struct commit
*simplified
;
2515 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
2517 struct merge_simplify_state
*st
;
2519 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
2521 st
= xcalloc(1, sizeof(*st
));
2522 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
2527 static int mark_redundant_parents(struct rev_info
*revs
, struct commit
*commit
)
2529 struct commit_list
*h
= reduce_heads(commit
->parents
);
2530 int i
= 0, marked
= 0;
2531 struct commit_list
*po
, *pn
;
2533 /* Want these for sanity-checking only */
2534 int orig_cnt
= commit_list_count(commit
->parents
);
2535 int cnt
= commit_list_count(h
);
2538 * Not ready to remove items yet, just mark them for now, based
2539 * on the output of reduce_heads(). reduce_heads outputs the reduced
2540 * set in its original order, so this isn't too hard.
2542 po
= commit
->parents
;
2545 if (pn
&& po
->item
== pn
->item
) {
2549 po
->item
->object
.flags
|= TMP_MARK
;
2555 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
2556 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
2558 free_commit_list(h
);
2563 static int mark_treesame_root_parents(struct rev_info
*revs
, struct commit
*commit
)
2565 struct commit_list
*p
;
2568 for (p
= commit
->parents
; p
; p
= p
->next
) {
2569 struct commit
*parent
= p
->item
;
2570 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
2571 parent
->object
.flags
|= TMP_MARK
;
2580 * Awkward naming - this means one parent we are TREESAME to.
2581 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2582 * empty tree). Better name suggestions?
2584 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
2586 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2587 struct commit
*unmarked
= NULL
, *marked
= NULL
;
2588 struct commit_list
*p
;
2591 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
2592 if (ts
->treesame
[n
]) {
2593 if (p
->item
->object
.flags
& TMP_MARK
) {
2606 * If we are TREESAME to a marked-for-deletion parent, but not to any
2607 * unmarked parents, unmark the first TREESAME parent. This is the
2608 * parent that the default simplify_history==1 scan would have followed,
2609 * and it doesn't make sense to omit that path when asking for a
2610 * simplified full history. Retaining it improves the chances of
2611 * understanding odd missed merges that took an old version of a file.
2615 * I--------*X A modified the file, but mainline merge X used
2616 * \ / "-s ours", so took the version from I. X is
2617 * `-*A--' TREESAME to I and !TREESAME to A.
2619 * Default log from X would produce "I". Without this check,
2620 * --full-history --simplify-merges would produce "I-A-X", showing
2621 * the merge commit X and that it changed A, but not making clear that
2622 * it had just taken the I version. With this check, the topology above
2625 * Note that it is possible that the simplification chooses a different
2626 * TREESAME parent from the default, in which case this test doesn't
2627 * activate, and we _do_ drop the default parent. Example:
2629 * I------X A modified the file, but it was reverted in B,
2630 * \ / meaning mainline merge X is TREESAME to both
2633 * Default log would produce "I" by following the first parent;
2634 * --full-history --simplify-merges will produce "I-A-B". But this is a
2635 * reasonable result - it presents a logical full history leading from
2636 * I to X, and X is not an important merge.
2638 if (!unmarked
&& marked
) {
2639 marked
->object
.flags
&= ~TMP_MARK
;
2646 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
2648 struct commit_list
**pp
, *p
;
2649 int nth_parent
, removed
= 0;
2651 pp
= &commit
->parents
;
2653 while ((p
= *pp
) != NULL
) {
2654 struct commit
*parent
= p
->item
;
2655 if (parent
->object
.flags
& TMP_MARK
) {
2656 parent
->object
.flags
&= ~TMP_MARK
;
2660 compact_treesame(revs
, commit
, nth_parent
);
2667 /* Removing parents can only increase TREESAMEness */
2668 if (removed
&& !(commit
->object
.flags
& TREESAME
))
2669 update_treesame(revs
, commit
);
2674 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
2676 struct commit_list
*p
;
2677 struct commit
*parent
;
2678 struct merge_simplify_state
*st
, *pst
;
2681 st
= locate_simplify_state(revs
, commit
);
2684 * Have we handled this one?
2690 * An UNINTERESTING commit simplifies to itself, so does a
2691 * root commit. We do not rewrite parents of such commit
2694 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
2695 st
->simplified
= commit
;
2700 * Do we know what commit all of our parents that matter
2701 * should be rewritten to? Otherwise we are not ready to
2702 * rewrite this one yet.
2704 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
2705 pst
= locate_simplify_state(revs
, p
->item
);
2706 if (!pst
->simplified
) {
2707 tail
= &commit_list_insert(p
->item
, tail
)->next
;
2710 if (revs
->first_parent_only
)
2714 tail
= &commit_list_insert(commit
, tail
)->next
;
2719 * Rewrite our list of parents. Note that this cannot
2720 * affect our TREESAME flags in any way - a commit is
2721 * always TREESAME to its simplification.
2723 for (p
= commit
->parents
; p
; p
= p
->next
) {
2724 pst
= locate_simplify_state(revs
, p
->item
);
2725 p
->item
= pst
->simplified
;
2726 if (revs
->first_parent_only
)
2730 if (revs
->first_parent_only
)
2733 cnt
= remove_duplicate_parents(revs
, commit
);
2736 * It is possible that we are a merge and one side branch
2737 * does not have any commit that touches the given paths;
2738 * in such a case, the immediate parent from that branch
2739 * will be rewritten to be the merge base.
2741 * o----X X: the commit we are looking at;
2742 * / / o: a commit that touches the paths;
2745 * Further, a merge of an independent branch that doesn't
2746 * touch the path will reduce to a treesame root parent:
2748 * ----o----X X: the commit we are looking at;
2749 * / o: a commit that touches the paths;
2750 * r r: a root commit not touching the paths
2752 * Detect and simplify both cases.
2755 int marked
= mark_redundant_parents(revs
, commit
);
2756 marked
+= mark_treesame_root_parents(revs
, commit
);
2758 marked
-= leave_one_treesame_to_parent(revs
, commit
);
2760 cnt
= remove_marked_parents(revs
, commit
);
2764 * A commit simplifies to itself if it is a root, if it is
2765 * UNINTERESTING, if it touches the given paths, or if it is a
2766 * merge and its parents don't simplify to one relevant commit
2767 * (the first two cases are already handled at the beginning of
2770 * Otherwise, it simplifies to what its sole relevant parent
2774 (commit
->object
.flags
& UNINTERESTING
) ||
2775 !(commit
->object
.flags
& TREESAME
) ||
2776 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
)
2777 st
->simplified
= commit
;
2779 pst
= locate_simplify_state(revs
, parent
);
2780 st
->simplified
= pst
->simplified
;
2785 static void simplify_merges(struct rev_info
*revs
)
2787 struct commit_list
*list
, *next
;
2788 struct commit_list
*yet_to_do
, **tail
;
2789 struct commit
*commit
;
2794 /* feed the list reversed */
2796 for (list
= revs
->commits
; list
; list
= next
) {
2797 commit
= list
->item
;
2800 * Do not free(list) here yet; the original list
2801 * is used later in this function.
2803 commit_list_insert(commit
, &yet_to_do
);
2810 commit
= pop_commit(&list
);
2811 tail
= simplify_one(revs
, commit
, tail
);
2815 /* clean up the result, removing the simplified ones */
2816 list
= revs
->commits
;
2817 revs
->commits
= NULL
;
2818 tail
= &revs
->commits
;
2820 struct merge_simplify_state
*st
;
2822 commit
= pop_commit(&list
);
2823 st
= locate_simplify_state(revs
, commit
);
2824 if (st
->simplified
== commit
)
2825 tail
= &commit_list_insert(commit
, tail
)->next
;
2829 static void set_children(struct rev_info
*revs
)
2831 struct commit_list
*l
;
2832 for (l
= revs
->commits
; l
; l
= l
->next
) {
2833 struct commit
*commit
= l
->item
;
2834 struct commit_list
*p
;
2836 for (p
= commit
->parents
; p
; p
= p
->next
)
2837 add_child(revs
, p
->item
, commit
);
2841 void reset_revision_walk(void)
2843 clear_object_flags(SEEN
| ADDED
| SHOWN
);
2846 int prepare_revision_walk(struct rev_info
*revs
)
2849 struct object_array old_pending
;
2850 struct commit_list
**next
= &revs
->commits
;
2852 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
2853 revs
->pending
.nr
= 0;
2854 revs
->pending
.alloc
= 0;
2855 revs
->pending
.objects
= NULL
;
2856 for (i
= 0; i
< old_pending
.nr
; i
++) {
2857 struct object_array_entry
*e
= old_pending
.objects
+ i
;
2858 struct commit
*commit
= handle_commit(revs
, e
);
2860 if (!(commit
->object
.flags
& SEEN
)) {
2861 commit
->object
.flags
|= SEEN
;
2862 next
= commit_list_append(commit
, next
);
2866 object_array_clear(&old_pending
);
2868 /* Signal whether we need per-parent treesame decoration */
2869 if (revs
->simplify_merges
||
2870 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
2871 revs
->treesame
.name
= "treesame";
2873 if (revs
->no_walk
!= REVISION_WALK_NO_WALK_UNSORTED
)
2874 commit_list_sort_by_date(&revs
->commits
);
2878 if (limit_list(revs
) < 0)
2880 if (revs
->topo_order
)
2881 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
2882 if (revs
->line_level_traverse
)
2883 line_log_filter(revs
);
2884 if (revs
->simplify_merges
)
2885 simplify_merges(revs
);
2886 if (revs
->children
.name
)
2891 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
2893 struct commit_list
*cache
= NULL
;
2896 struct commit
*p
= *pp
;
2898 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
2899 return rewrite_one_error
;
2900 if (p
->object
.flags
& UNINTERESTING
)
2901 return rewrite_one_ok
;
2902 if (!(p
->object
.flags
& TREESAME
))
2903 return rewrite_one_ok
;
2905 return rewrite_one_noparents
;
2906 if ((p
= one_relevant_parent(revs
, p
->parents
)) == NULL
)
2907 return rewrite_one_ok
;
2912 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
2913 rewrite_parent_fn_t rewrite_parent
)
2915 struct commit_list
**pp
= &commit
->parents
;
2917 struct commit_list
*parent
= *pp
;
2918 switch (rewrite_parent(revs
, &parent
->item
)) {
2919 case rewrite_one_ok
:
2921 case rewrite_one_noparents
:
2924 case rewrite_one_error
:
2929 remove_duplicate_parents(revs
, commit
);
2933 static int commit_rewrite_person(struct strbuf
*buf
, const char *what
, struct string_list
*mailmap
)
2935 char *person
, *endp
;
2936 size_t len
, namelen
, maillen
;
2939 struct ident_split ident
;
2941 person
= strstr(buf
->buf
, what
);
2945 person
+= strlen(what
);
2946 endp
= strchr(person
, '\n');
2950 len
= endp
- person
;
2952 if (split_ident_line(&ident
, person
, len
))
2955 mail
= ident
.mail_begin
;
2956 maillen
= ident
.mail_end
- ident
.mail_begin
;
2957 name
= ident
.name_begin
;
2958 namelen
= ident
.name_end
- ident
.name_begin
;
2960 if (map_user(mailmap
, &mail
, &maillen
, &name
, &namelen
)) {
2961 struct strbuf namemail
= STRBUF_INIT
;
2963 strbuf_addf(&namemail
, "%.*s <%.*s>",
2964 (int)namelen
, name
, (int)maillen
, mail
);
2966 strbuf_splice(buf
, ident
.name_begin
- buf
->buf
,
2967 ident
.mail_end
- ident
.name_begin
+ 1,
2968 namemail
.buf
, namemail
.len
);
2970 strbuf_release(&namemail
);
2978 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
2981 const char *encoding
;
2982 const char *message
;
2983 struct strbuf buf
= STRBUF_INIT
;
2985 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
2988 /* Prepend "fake" headers as needed */
2989 if (opt
->grep_filter
.use_reflog_filter
) {
2990 strbuf_addstr(&buf
, "reflog ");
2991 get_reflog_message(&buf
, opt
->reflog_info
);
2992 strbuf_addch(&buf
, '\n');
2996 * We grep in the user's output encoding, under the assumption that it
2997 * is the encoding they are most likely to write their grep pattern
2998 * for. In addition, it means we will match the "notes" encoding below,
2999 * so we will not end up with a buffer that has two different encodings
3002 encoding
= get_log_output_encoding();
3003 message
= logmsg_reencode(commit
, NULL
, encoding
);
3005 /* Copy the commit to temporary if we are using "fake" headers */
3007 strbuf_addstr(&buf
, message
);
3009 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
3011 strbuf_addstr(&buf
, message
);
3013 commit_rewrite_person(&buf
, "\nauthor ", opt
->mailmap
);
3014 commit_rewrite_person(&buf
, "\ncommitter ", opt
->mailmap
);
3017 /* Append "fake" message parts as needed */
3018 if (opt
->show_notes
) {
3020 strbuf_addstr(&buf
, message
);
3021 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
3025 * Find either in the original commit message, or in the temporary.
3026 * Note that we cast away the constness of "message" here. It is
3027 * const because it may come from the cached commit buffer. That's OK,
3028 * because we know that it is modifiable heap memory, and that while
3029 * grep_buffer may modify it for speed, it will restore any
3030 * changes before returning.
3033 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
3035 retval
= grep_buffer(&opt
->grep_filter
,
3036 (char *)message
, strlen(message
));
3037 strbuf_release(&buf
);
3038 unuse_commit_buffer(commit
, message
);
3039 return opt
->invert_grep
? !retval
: retval
;
3042 static inline int want_ancestry(const struct rev_info
*revs
)
3044 return (revs
->rewrite_parents
|| revs
->children
.name
);
3048 * Return a timestamp to be used for --since/--until comparisons for this
3049 * commit, based on the revision options.
3051 static timestamp_t
comparison_date(const struct rev_info
*revs
,
3052 struct commit
*commit
)
3054 return revs
->reflog_info
?
3055 get_reflog_timestamp(revs
->reflog_info
) :
3059 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
3061 if (commit
->object
.flags
& SHOWN
)
3062 return commit_ignore
;
3063 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.oid
.hash
))
3064 return commit_ignore
;
3067 if (commit
->object
.flags
& UNINTERESTING
)
3068 return commit_ignore
;
3069 if (revs
->min_age
!= -1 &&
3070 comparison_date(revs
, commit
) > revs
->min_age
)
3071 return commit_ignore
;
3072 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
3073 int n
= commit_list_count(commit
->parents
);
3074 if ((n
< revs
->min_parents
) ||
3075 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
3076 return commit_ignore
;
3078 if (!commit_match(commit
, revs
))
3079 return commit_ignore
;
3080 if (revs
->prune
&& revs
->dense
) {
3081 /* Commit without changes? */
3082 if (commit
->object
.flags
& TREESAME
) {
3084 struct commit_list
*p
;
3085 /* drop merges unless we want parenthood */
3086 if (!want_ancestry(revs
))
3087 return commit_ignore
;
3089 * If we want ancestry, then need to keep any merges
3090 * between relevant commits to tie together topology.
3091 * For consistency with TREESAME and simplification
3092 * use "relevant" here rather than just INTERESTING,
3093 * to treat bottom commit(s) as part of the topology.
3095 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
3096 if (relevant_commit(p
->item
))
3099 return commit_ignore
;
3105 define_commit_slab(saved_parents
, struct commit_list
*);
3107 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3110 * You may only call save_parents() once per commit (this is checked
3111 * for non-root commits).
3113 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
3115 struct commit_list
**pp
;
3117 if (!revs
->saved_parents_slab
) {
3118 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
3119 init_saved_parents(revs
->saved_parents_slab
);
3122 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
3125 * When walking with reflogs, we may visit the same commit
3126 * several times: once for each appearance in the reflog.
3128 * In this case, save_parents() will be called multiple times.
3129 * We want to keep only the first set of parents. We need to
3130 * store a sentinel value for an empty (i.e., NULL) parent
3131 * list to distinguish it from a not-yet-saved list, however.
3135 if (commit
->parents
)
3136 *pp
= copy_commit_list(commit
->parents
);
3138 *pp
= EMPTY_PARENT_LIST
;
3141 static void free_saved_parents(struct rev_info
*revs
)
3143 if (revs
->saved_parents_slab
)
3144 clear_saved_parents(revs
->saved_parents_slab
);
3147 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
3149 struct commit_list
*parents
;
3151 if (!revs
->saved_parents_slab
)
3152 return commit
->parents
;
3154 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
3155 if (parents
== EMPTY_PARENT_LIST
)
3160 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
3162 enum commit_action action
= get_commit_action(revs
, commit
);
3164 if (action
== commit_show
&&
3166 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
3168 * --full-diff on simplified parents is no good: it
3169 * will show spurious changes from the commits that
3170 * were elided. So we save the parents on the side
3171 * when --full-diff is in effect.
3173 if (revs
->full_diff
)
3174 save_parents(revs
, commit
);
3175 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
3176 return commit_error
;
3181 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
3183 if (revs
->track_first_time
) {
3185 revs
->track_first_time
= 0;
3187 struct commit_list
*p
;
3188 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
3189 if (p
->item
== NULL
|| /* first commit */
3190 !oidcmp(&p
->item
->object
.oid
, &commit
->object
.oid
))
3192 revs
->linear
= p
!= NULL
;
3194 if (revs
->reverse
) {
3196 commit
->object
.flags
|= TRACK_LINEAR
;
3198 free_commit_list(revs
->previous_parents
);
3199 revs
->previous_parents
= copy_commit_list(commit
->parents
);
3202 static struct commit
*get_revision_1(struct rev_info
*revs
)
3205 struct commit
*commit
;
3207 if (revs
->reflog_info
)
3208 commit
= next_reflog_entry(revs
->reflog_info
);
3210 commit
= pop_commit(&revs
->commits
);
3215 if (revs
->reflog_info
)
3216 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
3219 * If we haven't done the list limiting, we need to look at
3220 * the parents here. We also need to do the date-based limiting
3221 * that we'd otherwise have done in limit_list().
3223 if (!revs
->limited
) {
3224 if (revs
->max_age
!= -1 &&
3225 comparison_date(revs
, commit
) < revs
->max_age
)
3228 if (revs
->reflog_info
)
3229 try_to_simplify_commit(revs
, commit
);
3230 else if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0) {
3231 if (!revs
->ignore_missing_links
)
3232 die("Failed to traverse parents of commit %s",
3233 oid_to_hex(&commit
->object
.oid
));
3237 switch (simplify_commit(revs
, commit
)) {
3241 die("Failed to simplify parents of commit %s",
3242 oid_to_hex(&commit
->object
.oid
));
3244 if (revs
->track_linear
)
3245 track_linear(revs
, commit
);
3252 * Return true for entries that have not yet been shown. (This is an
3253 * object_array_each_func_t.)
3255 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data_unused
)
3257 return !(entry
->item
->flags
& SHOWN
);
3261 * If array is on the verge of a realloc, garbage-collect any entries
3262 * that have already been shown to try to free up some space.
3264 static void gc_boundary(struct object_array
*array
)
3266 if (array
->nr
== array
->alloc
)
3267 object_array_filter(array
, entry_unshown
, NULL
);
3270 static void create_boundary_commit_list(struct rev_info
*revs
)
3274 struct object_array
*array
= &revs
->boundary_commits
;
3275 struct object_array_entry
*objects
= array
->objects
;
3278 * If revs->commits is non-NULL at this point, an error occurred in
3279 * get_revision_1(). Ignore the error and continue printing the
3280 * boundary commits anyway. (This is what the code has always
3283 if (revs
->commits
) {
3284 free_commit_list(revs
->commits
);
3285 revs
->commits
= NULL
;
3289 * Put all of the actual boundary commits from revs->boundary_commits
3290 * into revs->commits
3292 for (i
= 0; i
< array
->nr
; i
++) {
3293 c
= (struct commit
*)(objects
[i
].item
);
3296 if (!(c
->object
.flags
& CHILD_SHOWN
))
3298 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
3300 c
->object
.flags
|= BOUNDARY
;
3301 commit_list_insert(c
, &revs
->commits
);
3305 * If revs->topo_order is set, sort the boundary commits
3306 * in topological order
3308 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3311 static struct commit
*get_revision_internal(struct rev_info
*revs
)
3313 struct commit
*c
= NULL
;
3314 struct commit_list
*l
;
3316 if (revs
->boundary
== 2) {
3318 * All of the normal commits have already been returned,
3319 * and we are now returning boundary commits.
3320 * create_boundary_commit_list() has populated
3321 * revs->commits with the remaining commits to return.
3323 c
= pop_commit(&revs
->commits
);
3325 c
->object
.flags
|= SHOWN
;
3330 * If our max_count counter has reached zero, then we are done. We
3331 * don't simply return NULL because we still might need to show
3332 * boundary commits. But we want to avoid calling get_revision_1, which
3333 * might do a considerable amount of work finding the next commit only
3334 * for us to throw it away.
3336 * If it is non-zero, then either we don't have a max_count at all
3337 * (-1), or it is still counting, in which case we decrement.
3339 if (revs
->max_count
) {
3340 c
= get_revision_1(revs
);
3342 while (revs
->skip_count
> 0) {
3344 c
= get_revision_1(revs
);
3350 if (revs
->max_count
> 0)
3355 c
->object
.flags
|= SHOWN
;
3357 if (!revs
->boundary
)
3362 * get_revision_1() runs out the commits, and
3363 * we are done computing the boundaries.
3364 * switch to boundary commits output mode.
3369 * Update revs->commits to contain the list of
3372 create_boundary_commit_list(revs
);
3374 return get_revision_internal(revs
);
3378 * boundary commits are the commits that are parents of the
3379 * ones we got from get_revision_1() but they themselves are
3380 * not returned from get_revision_1(). Before returning
3381 * 'c', we need to mark its parents that they could be boundaries.
3384 for (l
= c
->parents
; l
; l
= l
->next
) {
3386 p
= &(l
->item
->object
);
3387 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
3389 p
->flags
|= CHILD_SHOWN
;
3390 gc_boundary(&revs
->boundary_commits
);
3391 add_object_array(p
, NULL
, &revs
->boundary_commits
);
3397 struct commit
*get_revision(struct rev_info
*revs
)
3400 struct commit_list
*reversed
;
3402 if (revs
->reverse
) {
3404 while ((c
= get_revision_internal(revs
)))
3405 commit_list_insert(c
, &reversed
);
3406 revs
->commits
= reversed
;
3408 revs
->reverse_output_stage
= 1;
3411 if (revs
->reverse_output_stage
) {
3412 c
= pop_commit(&revs
->commits
);
3413 if (revs
->track_linear
)
3414 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
3418 c
= get_revision_internal(revs
);
3419 if (c
&& revs
->graph
)
3420 graph_update(revs
->graph
, c
);
3422 free_saved_parents(revs
);
3423 if (revs
->previous_parents
) {
3424 free_commit_list(revs
->previous_parents
);
3425 revs
->previous_parents
= NULL
;
3431 char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
3433 if (commit
->object
.flags
& BOUNDARY
)
3435 else if (commit
->object
.flags
& UNINTERESTING
)
3437 else if (commit
->object
.flags
& PATCHSAME
)
3439 else if (!revs
|| revs
->left_right
) {
3440 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
3444 } else if (revs
->graph
)
3446 else if (revs
->cherry_mark
)
3451 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
3453 char *mark
= get_revision_mark(revs
, commit
);
3456 fputs(mark
, stdout
);