11 #include "reflog-walk.h"
12 #include "patch-ids.h"
15 #include "string-list.h"
17 volatile show_early_output_fn_t show_early_output
;
19 char *path_name(const struct name_path
*path
, const char *name
)
21 const struct name_path
*p
;
23 int nlen
= strlen(name
);
26 for (p
= path
; p
; p
= p
->up
) {
28 len
+= p
->elem_len
+ 1;
31 m
= n
+ len
- (nlen
+ 1);
33 for (p
= path
; p
; p
= p
->up
) {
36 memcpy(m
, p
->elem
, p
->elem_len
);
43 static int show_path_component_truncated(FILE *out
, const char *name
, int len
)
46 for (cnt
= 0; cnt
< len
; cnt
++) {
48 if (!ch
|| ch
== '\n')
55 static int show_path_truncated(FILE *out
, const struct name_path
*path
)
61 emitted
= show_path_truncated(out
, path
->up
);
66 ours
= show_path_component_truncated(out
, path
->elem
, path
->elem_len
);
69 return ours
|| emitted
;
72 void show_object_with_name(FILE *out
, struct object
*obj
, const struct name_path
*path
, const char *component
)
74 struct name_path leaf
;
75 leaf
.up
= (struct name_path
*)path
;
76 leaf
.elem
= component
;
77 leaf
.elem_len
= strlen(component
);
79 fprintf(out
, "%s ", sha1_to_hex(obj
->sha1
));
80 show_path_truncated(out
, &leaf
);
84 void add_object(struct object
*obj
,
85 struct object_array
*p
,
86 struct name_path
*path
,
89 add_object_array(obj
, path_name(path
, name
), p
);
92 static void mark_blob_uninteresting(struct blob
*blob
)
96 if (blob
->object
.flags
& UNINTERESTING
)
98 blob
->object
.flags
|= UNINTERESTING
;
101 static void mark_tree_contents_uninteresting(struct tree
*tree
)
103 struct tree_desc desc
;
104 struct name_entry entry
;
105 struct object
*obj
= &tree
->object
;
107 if (!has_sha1_file(obj
->sha1
))
109 if (parse_tree(tree
) < 0)
110 die("bad tree %s", sha1_to_hex(obj
->sha1
));
112 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
113 while (tree_entry(&desc
, &entry
)) {
114 switch (object_type(entry
.mode
)) {
116 mark_tree_uninteresting(lookup_tree(entry
.sha1
));
119 mark_blob_uninteresting(lookup_blob(entry
.sha1
));
122 /* Subproject commit - not in this repository */
128 * We don't care about the tree any more
129 * after it has been marked uninteresting.
133 tree
->object
.parsed
= 0;
136 void mark_tree_uninteresting(struct tree
*tree
)
138 struct object
*obj
= &tree
->object
;
142 if (obj
->flags
& UNINTERESTING
)
144 obj
->flags
|= UNINTERESTING
;
145 mark_tree_contents_uninteresting(tree
);
148 void mark_parents_uninteresting(struct commit
*commit
)
150 struct commit_list
*parents
= NULL
, *l
;
152 for (l
= commit
->parents
; l
; l
= l
->next
)
153 commit_list_insert(l
->item
, &parents
);
156 struct commit
*commit
= parents
->item
;
158 parents
= parents
->next
;
163 * A missing commit is ok iff its parent is marked
166 * We just mark such a thing parsed, so that when
167 * it is popped next time around, we won't be trying
168 * to parse it and get an error.
170 if (!has_sha1_file(commit
->object
.sha1
))
171 commit
->object
.parsed
= 1;
173 if (commit
->object
.flags
& UNINTERESTING
)
176 commit
->object
.flags
|= UNINTERESTING
;
179 * Normally we haven't parsed the parent
180 * yet, so we won't have a parent of a parent
181 * here. However, it may turn out that we've
182 * reached this commit some other way (where it
183 * wasn't uninteresting), in which case we need
184 * to mark its parents recursively too..
186 if (!commit
->parents
)
189 for (l
= commit
->parents
->next
; l
; l
= l
->next
)
190 commit_list_insert(l
->item
, &parents
);
191 commit
= commit
->parents
->item
;
196 static void add_pending_object_with_mode(struct rev_info
*revs
, struct object
*obj
, const char *name
, unsigned mode
)
200 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
202 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
203 struct strbuf buf
= STRBUF_INIT
;
204 int len
= interpret_branch_name(name
, &buf
);
207 if (0 < len
&& name
[len
] && buf
.len
)
208 strbuf_addstr(&buf
, name
+ len
);
209 st
= add_reflog_for_walk(revs
->reflog_info
,
210 (struct commit
*)obj
,
211 buf
.buf
[0] ? buf
.buf
: name
);
212 strbuf_release(&buf
);
216 add_object_array_with_mode(obj
, name
, &revs
->pending
, mode
);
219 void add_pending_object(struct rev_info
*revs
, struct object
*obj
, const char *name
)
221 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
224 void add_head_to_pending(struct rev_info
*revs
)
226 unsigned char sha1
[20];
228 if (get_sha1("HEAD", sha1
))
230 obj
= parse_object(sha1
);
233 add_pending_object(revs
, obj
, "HEAD");
236 static struct object
*get_reference(struct rev_info
*revs
, const char *name
, const unsigned char *sha1
, unsigned int flags
)
238 struct object
*object
;
240 object
= parse_object(sha1
);
242 if (revs
->ignore_missing
)
244 die("bad object %s", name
);
246 object
->flags
|= flags
;
250 void add_pending_sha1(struct rev_info
*revs
, const char *name
,
251 const unsigned char *sha1
, unsigned int flags
)
253 struct object
*object
= get_reference(revs
, name
, sha1
, flags
);
254 add_pending_object(revs
, object
, name
);
257 static struct commit
*handle_commit(struct rev_info
*revs
, struct object
*object
, const char *name
)
259 unsigned long flags
= object
->flags
;
262 * Tag object? Look what it points to..
264 while (object
->type
== OBJ_TAG
) {
265 struct tag
*tag
= (struct tag
*) object
;
266 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
267 add_pending_object(revs
, object
, tag
->tag
);
270 object
= parse_object(tag
->tagged
->sha1
);
272 if (flags
& UNINTERESTING
)
274 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
276 object
->flags
|= flags
;
280 * Commit object? Just return it, we'll do all the complex
283 if (object
->type
== OBJ_COMMIT
) {
284 struct commit
*commit
= (struct commit
*)object
;
285 if (parse_commit(commit
) < 0)
286 die("unable to parse commit %s", name
);
287 if (flags
& UNINTERESTING
) {
288 mark_parents_uninteresting(commit
);
291 if (revs
->show_source
&& !commit
->util
)
292 commit
->util
= (void *) name
;
297 * Tree object? Either mark it uninteresting, or add it
298 * to the list of objects to look at later..
300 if (object
->type
== OBJ_TREE
) {
301 struct tree
*tree
= (struct tree
*)object
;
302 if (!revs
->tree_objects
)
304 if (flags
& UNINTERESTING
) {
305 mark_tree_contents_uninteresting(tree
);
308 add_pending_object(revs
, object
, "");
313 * Blob object? You know the drill by now..
315 if (object
->type
== OBJ_BLOB
) {
316 if (!revs
->blob_objects
)
318 if (flags
& UNINTERESTING
)
320 add_pending_object(revs
, object
, "");
323 die("%s is unknown object", name
);
326 static int everybody_uninteresting(struct commit_list
*orig
)
328 struct commit_list
*list
= orig
;
330 struct commit
*commit
= list
->item
;
332 if (commit
->object
.flags
& UNINTERESTING
)
340 * The goal is to get REV_TREE_NEW as the result only if the
341 * diff consists of all '+' (and no other changes), REV_TREE_OLD
342 * if the whole diff is removal of old data, and otherwise
343 * REV_TREE_DIFFERENT (of course if the trees are the same we
344 * want REV_TREE_SAME).
345 * That means that once we get to REV_TREE_DIFFERENT, we do not
346 * have to look any further.
348 static int tree_difference
= REV_TREE_SAME
;
350 static void file_add_remove(struct diff_options
*options
,
351 int addremove
, unsigned mode
,
352 const unsigned char *sha1
,
354 const char *fullpath
, unsigned dirty_submodule
)
356 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
358 tree_difference
|= diff
;
359 if (tree_difference
== REV_TREE_DIFFERENT
)
360 DIFF_OPT_SET(options
, HAS_CHANGES
);
363 static void file_change(struct diff_options
*options
,
364 unsigned old_mode
, unsigned new_mode
,
365 const unsigned char *old_sha1
,
366 const unsigned char *new_sha1
,
367 int old_sha1_valid
, int new_sha1_valid
,
368 const char *fullpath
,
369 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
371 tree_difference
= REV_TREE_DIFFERENT
;
372 DIFF_OPT_SET(options
, HAS_CHANGES
);
375 static int rev_compare_tree(struct rev_info
*revs
, struct commit
*parent
, struct commit
*commit
)
377 struct tree
*t1
= parent
->tree
;
378 struct tree
*t2
= commit
->tree
;
385 if (revs
->simplify_by_decoration
) {
387 * If we are simplifying by decoration, then the commit
388 * is worth showing if it has a tag pointing at it.
390 if (lookup_decoration(&name_decoration
, &commit
->object
))
391 return REV_TREE_DIFFERENT
;
393 * A commit that is not pointed by a tag is uninteresting
394 * if we are not limited by path. This means that you will
395 * see the usual "commits that touch the paths" plus any
396 * tagged commit by specifying both --simplify-by-decoration
399 if (!revs
->prune_data
.nr
)
400 return REV_TREE_SAME
;
403 tree_difference
= REV_TREE_SAME
;
404 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
405 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
407 return REV_TREE_DIFFERENT
;
408 return tree_difference
;
411 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
416 struct tree_desc empty
, real
;
417 struct tree
*t1
= commit
->tree
;
422 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
425 init_tree_desc(&real
, tree
, size
);
426 init_tree_desc(&empty
, "", 0);
428 tree_difference
= REV_TREE_SAME
;
429 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
430 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
433 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
436 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
438 struct commit_list
**pp
, *parent
;
439 int tree_changed
= 0, tree_same
= 0, nth_parent
= 0;
442 * If we don't do pruning, everything is interesting
450 if (!commit
->parents
) {
451 if (rev_same_tree_as_empty(revs
, commit
))
452 commit
->object
.flags
|= TREESAME
;
457 * Normal non-merge commit? If we don't want to make the
458 * history dense, we consider it always to be a change..
460 if (!revs
->dense
&& !commit
->parents
->next
)
463 pp
= &commit
->parents
;
464 while ((parent
= *pp
) != NULL
) {
465 struct commit
*p
= parent
->item
;
468 * Do not compare with later parents when we care only about
469 * the first parent chain, in order to avoid derailing the
470 * traversal to follow a side branch that brought everything
471 * in the path we are limited to by the pathspec.
473 if (revs
->first_parent_only
&& nth_parent
++)
475 if (parse_commit(p
) < 0)
476 die("cannot simplify commit %s (because of %s)",
477 sha1_to_hex(commit
->object
.sha1
),
478 sha1_to_hex(p
->object
.sha1
));
479 switch (rev_compare_tree(revs
, p
, commit
)) {
482 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
483 /* Even if a merge with an uninteresting
484 * side branch brought the entire change
485 * we are interested in, we do not want
486 * to lose the other branches of this
487 * merge, so we just keep going.
493 commit
->parents
= parent
;
494 commit
->object
.flags
|= TREESAME
;
498 if (revs
->remove_empty_trees
&&
499 rev_same_tree_as_empty(revs
, p
)) {
500 /* We are adding all the specified
501 * paths from this parent, so the
502 * history beyond this parent is not
503 * interesting. Remove its parents
504 * (they are grandparents for us).
505 * IOW, we pretend this parent is a
508 if (parse_commit(p
) < 0)
509 die("cannot simplify commit %s (invalid %s)",
510 sha1_to_hex(commit
->object
.sha1
),
511 sha1_to_hex(p
->object
.sha1
));
516 case REV_TREE_DIFFERENT
:
521 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
523 if (tree_changed
&& !tree_same
)
525 commit
->object
.flags
|= TREESAME
;
528 static void commit_list_insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
529 struct commit_list
*cached_base
, struct commit_list
**cache
)
531 struct commit_list
*new_entry
;
533 if (cached_base
&& p
->date
< cached_base
->item
->date
)
534 new_entry
= commit_list_insert_by_date(p
, &cached_base
->next
);
536 new_entry
= commit_list_insert_by_date(p
, head
);
538 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
542 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
543 struct commit_list
**list
, struct commit_list
**cache_ptr
)
545 struct commit_list
*parent
= commit
->parents
;
547 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
549 if (commit
->object
.flags
& ADDED
)
551 commit
->object
.flags
|= ADDED
;
554 * If the commit is uninteresting, don't try to
555 * prune parents - we want the maximal uninteresting
558 * Normally we haven't parsed the parent
559 * yet, so we won't have a parent of a parent
560 * here. However, it may turn out that we've
561 * reached this commit some other way (where it
562 * wasn't uninteresting), in which case we need
563 * to mark its parents recursively too..
565 if (commit
->object
.flags
& UNINTERESTING
) {
567 struct commit
*p
= parent
->item
;
568 parent
= parent
->next
;
570 p
->object
.flags
|= UNINTERESTING
;
571 if (parse_commit(p
) < 0)
574 mark_parents_uninteresting(p
);
575 if (p
->object
.flags
& SEEN
)
577 p
->object
.flags
|= SEEN
;
578 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
584 * Ok, the commit wasn't uninteresting. Try to
585 * simplify the commit history and find the parent
586 * that has no differences in the path set if one exists.
588 try_to_simplify_commit(revs
, commit
);
593 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
595 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
596 struct commit
*p
= parent
->item
;
598 if (parse_commit(p
) < 0)
600 if (revs
->show_source
&& !p
->util
)
601 p
->util
= commit
->util
;
602 p
->object
.flags
|= left_flag
;
603 if (!(p
->object
.flags
& SEEN
)) {
604 p
->object
.flags
|= SEEN
;
605 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
607 if (revs
->first_parent_only
)
613 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
615 struct commit_list
*p
;
616 int left_count
= 0, right_count
= 0;
618 struct patch_ids ids
;
619 unsigned cherry_flag
;
621 /* First count the commits on the left and on the right */
622 for (p
= list
; p
; p
= p
->next
) {
623 struct commit
*commit
= p
->item
;
624 unsigned flags
= commit
->object
.flags
;
625 if (flags
& BOUNDARY
)
627 else if (flags
& SYMMETRIC_LEFT
)
633 if (!left_count
|| !right_count
)
636 left_first
= left_count
< right_count
;
637 init_patch_ids(&ids
);
638 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
640 /* Compute patch-ids for one side */
641 for (p
= list
; p
; p
= p
->next
) {
642 struct commit
*commit
= p
->item
;
643 unsigned flags
= commit
->object
.flags
;
645 if (flags
& BOUNDARY
)
648 * If we have fewer left, left_first is set and we omit
649 * commits on the right branch in this loop. If we have
650 * fewer right, we skip the left ones.
652 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
654 commit
->util
= add_commit_patch_id(commit
, &ids
);
657 /* either cherry_mark or cherry_pick are true */
658 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
660 /* Check the other side */
661 for (p
= list
; p
; p
= p
->next
) {
662 struct commit
*commit
= p
->item
;
664 unsigned flags
= commit
->object
.flags
;
666 if (flags
& BOUNDARY
)
669 * If we have fewer left, left_first is set and we omit
670 * commits on the left branch in this loop.
672 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
676 * Have we seen the same patch id?
678 id
= has_commit_patch_id(commit
, &ids
);
682 commit
->object
.flags
|= cherry_flag
;
685 /* Now check the original side for seen ones */
686 for (p
= list
; p
; p
= p
->next
) {
687 struct commit
*commit
= p
->item
;
688 struct patch_id
*ent
;
694 commit
->object
.flags
|= cherry_flag
;
698 free_patch_ids(&ids
);
701 /* How many extra uninteresting commits we want to see.. */
704 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
707 * No source list at all? We're definitely done..
713 * Does the destination list contain entries with a date
714 * before the source list? Definitely _not_ done.
716 if (date
< src
->item
->date
)
720 * Does the source list still have interesting commits in
721 * it? Definitely not done..
723 if (!everybody_uninteresting(src
))
726 /* Ok, we're closing in.. */
731 * "rev-list --ancestry-path A..B" computes commits that are ancestors
732 * of B but not ancestors of A but further limits the result to those
733 * that are descendants of A. This takes the list of bottom commits and
734 * the result of "A..B" without --ancestry-path, and limits the latter
735 * further to the ones that can reach one of the commits in "bottom".
737 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
739 struct commit_list
*p
;
740 struct commit_list
*rlist
= NULL
;
744 * Reverse the list so that it will be likely that we would
745 * process parents before children.
747 for (p
= list
; p
; p
= p
->next
)
748 commit_list_insert(p
->item
, &rlist
);
750 for (p
= bottom
; p
; p
= p
->next
)
751 p
->item
->object
.flags
|= TMP_MARK
;
754 * Mark the ones that can reach bottom commits in "list",
755 * in a bottom-up fashion.
759 for (p
= rlist
; p
; p
= p
->next
) {
760 struct commit
*c
= p
->item
;
761 struct commit_list
*parents
;
762 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
764 for (parents
= c
->parents
;
766 parents
= parents
->next
) {
767 if (!(parents
->item
->object
.flags
& TMP_MARK
))
769 c
->object
.flags
|= TMP_MARK
;
774 } while (made_progress
);
777 * NEEDSWORK: decide if we want to remove parents that are
778 * not marked with TMP_MARK from commit->parents for commits
779 * in the resulting list. We may not want to do that, though.
783 * The ones that are not marked with TMP_MARK are uninteresting
785 for (p
= list
; p
; p
= p
->next
) {
786 struct commit
*c
= p
->item
;
787 if (c
->object
.flags
& TMP_MARK
)
789 c
->object
.flags
|= UNINTERESTING
;
792 /* We are done with the TMP_MARK */
793 for (p
= list
; p
; p
= p
->next
)
794 p
->item
->object
.flags
&= ~TMP_MARK
;
795 for (p
= bottom
; p
; p
= p
->next
)
796 p
->item
->object
.flags
&= ~TMP_MARK
;
797 free_commit_list(rlist
);
801 * Before walking the history, keep the set of "negative" refs the
802 * caller has asked to exclude.
804 * This is used to compute "rev-list --ancestry-path A..B", as we need
805 * to filter the result of "A..B" further to the ones that can actually
808 static struct commit_list
*collect_bottom_commits(struct rev_info
*revs
)
810 struct commit_list
*bottom
= NULL
;
812 for (i
= 0; i
< revs
->cmdline
.nr
; i
++) {
813 struct rev_cmdline_entry
*elem
= &revs
->cmdline
.rev
[i
];
814 if ((elem
->flags
& UNINTERESTING
) &&
815 elem
->item
->type
== OBJ_COMMIT
)
816 commit_list_insert((struct commit
*)elem
->item
, &bottom
);
821 /* Assumes either left_only or right_only is set */
822 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
824 struct commit_list
*p
;
826 for (p
= list
; p
; p
= p
->next
) {
827 struct commit
*commit
= p
->item
;
829 if (revs
->right_only
) {
830 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
831 commit
->object
.flags
|= SHOWN
;
832 } else /* revs->left_only is set */
833 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
834 commit
->object
.flags
|= SHOWN
;
838 static int limit_list(struct rev_info
*revs
)
841 unsigned long date
= ~0ul;
842 struct commit_list
*list
= revs
->commits
;
843 struct commit_list
*newlist
= NULL
;
844 struct commit_list
**p
= &newlist
;
845 struct commit_list
*bottom
= NULL
;
847 if (revs
->ancestry_path
) {
848 bottom
= collect_bottom_commits(revs
);
850 die("--ancestry-path given but there are no bottom commits");
854 struct commit_list
*entry
= list
;
855 struct commit
*commit
= list
->item
;
856 struct object
*obj
= &commit
->object
;
857 show_early_output_fn_t show
;
862 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
863 obj
->flags
|= UNINTERESTING
;
864 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
866 if (obj
->flags
& UNINTERESTING
) {
867 mark_parents_uninteresting(commit
);
869 p
= &commit_list_insert(commit
, p
)->next
;
870 slop
= still_interesting(list
, date
, slop
);
873 /* If showing all, add the whole pending list to the end */
878 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
881 p
= &commit_list_insert(commit
, p
)->next
;
883 show
= show_early_output
;
888 show_early_output
= NULL
;
890 if (revs
->cherry_pick
|| revs
->cherry_mark
)
891 cherry_pick_list(newlist
, revs
);
893 if (revs
->left_only
|| revs
->right_only
)
894 limit_left_right(newlist
, revs
);
897 limit_to_ancestry(bottom
, newlist
);
898 free_commit_list(bottom
);
901 revs
->commits
= newlist
;
905 static void add_rev_cmdline(struct rev_info
*revs
,
911 struct rev_cmdline_info
*info
= &revs
->cmdline
;
914 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
915 info
->rev
[nr
].item
= item
;
916 info
->rev
[nr
].name
= name
;
917 info
->rev
[nr
].whence
= whence
;
918 info
->rev
[nr
].flags
= flags
;
924 int warned_bad_reflog
;
925 struct rev_info
*all_revs
;
926 const char *name_for_errormsg
;
929 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
931 struct all_refs_cb
*cb
= cb_data
;
932 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
934 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
935 add_pending_sha1(cb
->all_revs
, path
, sha1
, cb
->all_flags
);
939 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
943 cb
->all_flags
= flags
;
946 static void handle_refs(const char *submodule
, struct rev_info
*revs
, unsigned flags
,
947 int (*for_each
)(const char *, each_ref_fn
, void *))
949 struct all_refs_cb cb
;
950 init_all_refs_cb(&cb
, revs
, flags
);
951 for_each(submodule
, handle_one_ref
, &cb
);
954 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
956 struct all_refs_cb
*cb
= cb_data
;
957 if (!is_null_sha1(sha1
)) {
958 struct object
*o
= parse_object(sha1
);
960 o
->flags
|= cb
->all_flags
;
961 /* ??? CMDLINEFLAGS ??? */
962 add_pending_object(cb
->all_revs
, o
, "");
964 else if (!cb
->warned_bad_reflog
) {
965 warning("reflog of '%s' references pruned commits",
966 cb
->name_for_errormsg
);
967 cb
->warned_bad_reflog
= 1;
972 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
973 const char *email
, unsigned long timestamp
, int tz
,
974 const char *message
, void *cb_data
)
976 handle_one_reflog_commit(osha1
, cb_data
);
977 handle_one_reflog_commit(nsha1
, cb_data
);
981 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
983 struct all_refs_cb
*cb
= cb_data
;
984 cb
->warned_bad_reflog
= 0;
985 cb
->name_for_errormsg
= path
;
986 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
990 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
992 struct all_refs_cb cb
;
994 cb
.all_flags
= flags
;
995 for_each_reflog(handle_one_reflog
, &cb
);
998 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
)
1000 unsigned char sha1
[20];
1002 struct commit
*commit
;
1003 struct commit_list
*parents
;
1004 const char *arg
= arg_
;
1007 flags
^= UNINTERESTING
;
1010 if (get_sha1_committish(arg
, sha1
))
1013 it
= get_reference(revs
, arg
, sha1
, 0);
1014 if (!it
&& revs
->ignore_missing
)
1016 if (it
->type
!= OBJ_TAG
)
1018 if (!((struct tag
*)it
)->tagged
)
1020 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
1022 if (it
->type
!= OBJ_COMMIT
)
1024 commit
= (struct commit
*)it
;
1025 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
1026 it
= &parents
->item
->object
;
1028 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1029 add_pending_object(revs
, it
, arg
);
1034 void init_revisions(struct rev_info
*revs
, const char *prefix
)
1036 memset(revs
, 0, sizeof(*revs
));
1038 revs
->abbrev
= DEFAULT_ABBREV
;
1039 revs
->ignore_merges
= 1;
1040 revs
->simplify_history
= 1;
1041 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
1042 DIFF_OPT_SET(&revs
->pruning
, QUICK
);
1043 revs
->pruning
.add_remove
= file_add_remove
;
1044 revs
->pruning
.change
= file_change
;
1047 revs
->prefix
= prefix
;
1050 revs
->skip_count
= -1;
1051 revs
->max_count
= -1;
1052 revs
->max_parents
= -1;
1054 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1056 init_grep_defaults();
1057 grep_init(&revs
->grep_filter
, prefix
);
1058 revs
->grep_filter
.status_only
= 1;
1059 revs
->grep_filter
.regflags
= REG_NEWLINE
;
1061 diff_setup(&revs
->diffopt
);
1062 if (prefix
&& !revs
->diffopt
.prefix
) {
1063 revs
->diffopt
.prefix
= prefix
;
1064 revs
->diffopt
.prefix_length
= strlen(prefix
);
1067 revs
->notes_opt
.use_default_notes
= -1;
1070 static void add_pending_commit_list(struct rev_info
*revs
,
1071 struct commit_list
*commit_list
,
1074 while (commit_list
) {
1075 struct object
*object
= &commit_list
->item
->object
;
1076 object
->flags
|= flags
;
1077 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
1078 commit_list
= commit_list
->next
;
1082 static void prepare_show_merge(struct rev_info
*revs
)
1084 struct commit_list
*bases
;
1085 struct commit
*head
, *other
;
1086 unsigned char sha1
[20];
1087 const char **prune
= NULL
;
1088 int i
, prune_num
= 1; /* counting terminating NULL */
1090 if (get_sha1("HEAD", sha1
))
1091 die("--merge without HEAD?");
1092 head
= lookup_commit_or_die(sha1
, "HEAD");
1093 if (get_sha1("MERGE_HEAD", sha1
))
1094 die("--merge without MERGE_HEAD?");
1095 other
= lookup_commit_or_die(sha1
, "MERGE_HEAD");
1096 add_pending_object(revs
, &head
->object
, "HEAD");
1097 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1098 bases
= get_merge_bases(head
, other
, 1);
1099 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
1100 free_commit_list(bases
);
1101 head
->object
.flags
|= SYMMETRIC_LEFT
;
1105 for (i
= 0; i
< active_nr
; i
++) {
1106 struct cache_entry
*ce
= active_cache
[i
];
1109 if (ce_path_match(ce
, &revs
->prune_data
)) {
1111 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
1112 prune
[prune_num
-2] = ce
->name
;
1113 prune
[prune_num
-1] = NULL
;
1115 while ((i
+1 < active_nr
) &&
1116 ce_same_name(ce
, active_cache
[i
+1]))
1119 free_pathspec(&revs
->prune_data
);
1120 init_pathspec(&revs
->prune_data
, prune
);
1124 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
1126 struct object_context oc
;
1128 struct object
*object
;
1129 unsigned char sha1
[20];
1131 const char *arg
= arg_
;
1132 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
1133 unsigned get_sha1_flags
= 0;
1135 dotdot
= strstr(arg
, "..");
1137 unsigned char from_sha1
[20];
1138 const char *next
= dotdot
+ 2;
1139 const char *this = arg
;
1140 int symmetric
= *next
== '.';
1141 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
1142 static const char head_by_default
[] = "HEAD";
1143 unsigned int a_flags
;
1149 next
= head_by_default
;
1151 this = head_by_default
;
1152 if (this == head_by_default
&& next
== head_by_default
&&
1155 * Just ".."? That is not a range but the
1156 * pathspec for the parent directory.
1158 if (!cant_be_filename
) {
1163 if (!get_sha1_committish(this, from_sha1
) &&
1164 !get_sha1_committish(next
, sha1
)) {
1165 struct object
*a_obj
, *b_obj
;
1167 if (!cant_be_filename
) {
1169 verify_non_filename(revs
->prefix
, arg
);
1172 a_obj
= parse_object(from_sha1
);
1173 b_obj
= parse_object(sha1
);
1174 if (!a_obj
|| !b_obj
) {
1176 if (revs
->ignore_missing
)
1179 ? "Invalid symmetric difference expression %s"
1180 : "Invalid revision range %s", arg
);
1185 a_flags
= flags_exclude
;
1187 /* A...B -- find merge bases between the two */
1188 struct commit
*a
, *b
;
1189 struct commit_list
*exclude
;
1191 a
= (a_obj
->type
== OBJ_COMMIT
1192 ? (struct commit
*)a_obj
1193 : lookup_commit_reference(a_obj
->sha1
));
1194 b
= (b_obj
->type
== OBJ_COMMIT
1195 ? (struct commit
*)b_obj
1196 : lookup_commit_reference(b_obj
->sha1
));
1199 exclude
= get_merge_bases(a
, b
, 1);
1200 add_pending_commit_list(revs
, exclude
,
1202 free_commit_list(exclude
);
1204 a_flags
= flags
| SYMMETRIC_LEFT
;
1207 a_obj
->flags
|= a_flags
;
1208 b_obj
->flags
|= flags
;
1209 add_rev_cmdline(revs
, a_obj
, this,
1210 REV_CMD_LEFT
, a_flags
);
1211 add_rev_cmdline(revs
, b_obj
, next
,
1212 REV_CMD_RIGHT
, flags
);
1213 add_pending_object(revs
, a_obj
, this);
1214 add_pending_object(revs
, b_obj
, next
);
1219 dotdot
= strstr(arg
, "^@");
1220 if (dotdot
&& !dotdot
[2]) {
1222 if (add_parents_only(revs
, arg
, flags
))
1226 dotdot
= strstr(arg
, "^!");
1227 if (dotdot
&& !dotdot
[2]) {
1229 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
1235 local_flags
= UNINTERESTING
;
1239 if (revarg_opt
& REVARG_COMMITTISH
)
1240 get_sha1_flags
= GET_SHA1_COMMITTISH
;
1242 if (get_sha1_with_context(arg
, get_sha1_flags
, sha1
, &oc
))
1243 return revs
->ignore_missing
? 0 : -1;
1244 if (!cant_be_filename
)
1245 verify_non_filename(revs
->prefix
, arg
);
1246 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
1247 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
1248 add_pending_object_with_mode(revs
, object
, arg
, oc
.mode
);
1252 struct cmdline_pathspec
{
1258 static void append_prune_data(struct cmdline_pathspec
*prune
, const char **av
)
1261 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1262 prune
->path
[prune
->nr
++] = *(av
++);
1266 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
,
1267 struct cmdline_pathspec
*prune
)
1269 while (strbuf_getwholeline(sb
, stdin
, '\n') != EOF
) {
1271 if (len
&& sb
->buf
[len
- 1] == '\n')
1272 sb
->buf
[--len
] = '\0';
1273 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1274 prune
->path
[prune
->nr
++] = xstrdup(sb
->buf
);
1278 static void read_revisions_from_stdin(struct rev_info
*revs
,
1279 struct cmdline_pathspec
*prune
)
1282 int seen_dashdash
= 0;
1284 strbuf_init(&sb
, 1000);
1285 while (strbuf_getwholeline(&sb
, stdin
, '\n') != EOF
) {
1287 if (len
&& sb
.buf
[len
- 1] == '\n')
1288 sb
.buf
[--len
] = '\0';
1291 if (sb
.buf
[0] == '-') {
1292 if (len
== 2 && sb
.buf
[1] == '-') {
1296 die("options not supported in --stdin mode");
1298 if (handle_revision_arg(sb
.buf
, revs
, 0, REVARG_CANNOT_BE_FILENAME
))
1299 die("bad revision '%s'", sb
.buf
);
1302 read_pathspec_from_stdin(revs
, &sb
, prune
);
1303 strbuf_release(&sb
);
1306 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1308 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1311 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1313 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1316 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1318 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1321 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1322 int *unkc
, const char **unkv
)
1324 const char *arg
= argv
[0];
1328 /* pseudo revision arguments */
1329 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1330 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1331 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1332 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1333 !strcmp(arg
, "--bisect") || !prefixcmp(arg
, "--glob=") ||
1334 !prefixcmp(arg
, "--branches=") || !prefixcmp(arg
, "--tags=") ||
1335 !prefixcmp(arg
, "--remotes=") || !prefixcmp(arg
, "--no-walk="))
1337 unkv
[(*unkc
)++] = arg
;
1341 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
1342 revs
->max_count
= atoi(optarg
);
1345 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
1346 revs
->skip_count
= atoi(optarg
);
1348 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1349 /* accept -<digit>, like traditional "head" */
1350 revs
->max_count
= atoi(arg
+ 1);
1352 } else if (!strcmp(arg
, "-n")) {
1354 return error("-n requires an argument");
1355 revs
->max_count
= atoi(argv
[1]);
1358 } else if (!prefixcmp(arg
, "-n")) {
1359 revs
->max_count
= atoi(arg
+ 2);
1361 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
1362 revs
->max_age
= atoi(optarg
);
1364 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
1365 revs
->max_age
= approxidate(optarg
);
1367 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
1368 revs
->max_age
= approxidate(optarg
);
1370 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
1371 revs
->min_age
= atoi(optarg
);
1373 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
1374 revs
->min_age
= approxidate(optarg
);
1376 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
1377 revs
->min_age
= approxidate(optarg
);
1379 } else if (!strcmp(arg
, "--first-parent")) {
1380 revs
->first_parent_only
= 1;
1381 } else if (!strcmp(arg
, "--ancestry-path")) {
1382 revs
->ancestry_path
= 1;
1383 revs
->simplify_history
= 0;
1385 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1386 init_reflog_walk(&revs
->reflog_info
);
1387 } else if (!strcmp(arg
, "--default")) {
1389 return error("bad --default argument");
1390 revs
->def
= argv
[1];
1392 } else if (!strcmp(arg
, "--merge")) {
1393 revs
->show_merge
= 1;
1394 } else if (!strcmp(arg
, "--topo-order")) {
1396 revs
->topo_order
= 1;
1397 } else if (!strcmp(arg
, "--simplify-merges")) {
1398 revs
->simplify_merges
= 1;
1399 revs
->topo_order
= 1;
1400 revs
->rewrite_parents
= 1;
1401 revs
->simplify_history
= 0;
1403 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1404 revs
->simplify_merges
= 1;
1405 revs
->topo_order
= 1;
1406 revs
->rewrite_parents
= 1;
1407 revs
->simplify_history
= 0;
1408 revs
->simplify_by_decoration
= 1;
1411 load_ref_decorations(DECORATE_SHORT_REFS
);
1412 } else if (!strcmp(arg
, "--date-order")) {
1414 revs
->topo_order
= 1;
1415 } else if (!prefixcmp(arg
, "--early-output")) {
1419 count
= atoi(arg
+15);
1422 revs
->topo_order
= 1;
1423 revs
->early_output
= count
;
1425 } else if (!strcmp(arg
, "--parents")) {
1426 revs
->rewrite_parents
= 1;
1427 revs
->print_parents
= 1;
1428 } else if (!strcmp(arg
, "--dense")) {
1430 } else if (!strcmp(arg
, "--sparse")) {
1432 } else if (!strcmp(arg
, "--show-all")) {
1434 } else if (!strcmp(arg
, "--remove-empty")) {
1435 revs
->remove_empty_trees
= 1;
1436 } else if (!strcmp(arg
, "--merges")) {
1437 revs
->min_parents
= 2;
1438 } else if (!strcmp(arg
, "--no-merges")) {
1439 revs
->max_parents
= 1;
1440 } else if (!prefixcmp(arg
, "--min-parents=")) {
1441 revs
->min_parents
= atoi(arg
+14);
1442 } else if (!prefixcmp(arg
, "--no-min-parents")) {
1443 revs
->min_parents
= 0;
1444 } else if (!prefixcmp(arg
, "--max-parents=")) {
1445 revs
->max_parents
= atoi(arg
+14);
1446 } else if (!prefixcmp(arg
, "--no-max-parents")) {
1447 revs
->max_parents
= -1;
1448 } else if (!strcmp(arg
, "--boundary")) {
1450 } else if (!strcmp(arg
, "--left-right")) {
1451 revs
->left_right
= 1;
1452 } else if (!strcmp(arg
, "--left-only")) {
1453 if (revs
->right_only
)
1454 die("--left-only is incompatible with --right-only"
1456 revs
->left_only
= 1;
1457 } else if (!strcmp(arg
, "--right-only")) {
1458 if (revs
->left_only
)
1459 die("--right-only is incompatible with --left-only");
1460 revs
->right_only
= 1;
1461 } else if (!strcmp(arg
, "--cherry")) {
1462 if (revs
->left_only
)
1463 die("--cherry is incompatible with --left-only");
1464 revs
->cherry_mark
= 1;
1465 revs
->right_only
= 1;
1466 revs
->max_parents
= 1;
1468 } else if (!strcmp(arg
, "--count")) {
1470 } else if (!strcmp(arg
, "--cherry-mark")) {
1471 if (revs
->cherry_pick
)
1472 die("--cherry-mark is incompatible with --cherry-pick");
1473 revs
->cherry_mark
= 1;
1474 revs
->limited
= 1; /* needs limit_list() */
1475 } else if (!strcmp(arg
, "--cherry-pick")) {
1476 if (revs
->cherry_mark
)
1477 die("--cherry-pick is incompatible with --cherry-mark");
1478 revs
->cherry_pick
= 1;
1480 } else if (!strcmp(arg
, "--objects")) {
1481 revs
->tag_objects
= 1;
1482 revs
->tree_objects
= 1;
1483 revs
->blob_objects
= 1;
1484 } else if (!strcmp(arg
, "--objects-edge")) {
1485 revs
->tag_objects
= 1;
1486 revs
->tree_objects
= 1;
1487 revs
->blob_objects
= 1;
1488 revs
->edge_hint
= 1;
1489 } else if (!strcmp(arg
, "--verify-objects")) {
1490 revs
->tag_objects
= 1;
1491 revs
->tree_objects
= 1;
1492 revs
->blob_objects
= 1;
1493 revs
->verify_objects
= 1;
1494 } else if (!strcmp(arg
, "--unpacked")) {
1496 } else if (!prefixcmp(arg
, "--unpacked=")) {
1497 die("--unpacked=<packfile> no longer supported.");
1498 } else if (!strcmp(arg
, "-r")) {
1500 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1501 } else if (!strcmp(arg
, "-t")) {
1503 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1504 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1505 } else if (!strcmp(arg
, "-m")) {
1506 revs
->ignore_merges
= 0;
1507 } else if (!strcmp(arg
, "-c")) {
1509 revs
->dense_combined_merges
= 0;
1510 revs
->combine_merges
= 1;
1511 } else if (!strcmp(arg
, "--cc")) {
1513 revs
->dense_combined_merges
= 1;
1514 revs
->combine_merges
= 1;
1515 } else if (!strcmp(arg
, "-v")) {
1516 revs
->verbose_header
= 1;
1517 } else if (!strcmp(arg
, "--pretty")) {
1518 revs
->verbose_header
= 1;
1519 revs
->pretty_given
= 1;
1520 get_commit_format(arg
+8, revs
);
1521 } else if (!prefixcmp(arg
, "--pretty=") || !prefixcmp(arg
, "--format=")) {
1523 * Detached form ("--pretty X" as opposed to "--pretty=X")
1524 * not allowed, since the argument is optional.
1526 revs
->verbose_header
= 1;
1527 revs
->pretty_given
= 1;
1528 get_commit_format(arg
+9, revs
);
1529 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
1530 revs
->show_notes
= 1;
1531 revs
->show_notes_given
= 1;
1532 revs
->notes_opt
.use_default_notes
= 1;
1533 } else if (!strcmp(arg
, "--show-signature")) {
1534 revs
->show_signature
= 1;
1535 } else if (!prefixcmp(arg
, "--show-notes=") ||
1536 !prefixcmp(arg
, "--notes=")) {
1537 struct strbuf buf
= STRBUF_INIT
;
1538 revs
->show_notes
= 1;
1539 revs
->show_notes_given
= 1;
1540 if (!prefixcmp(arg
, "--show-notes")) {
1541 if (revs
->notes_opt
.use_default_notes
< 0)
1542 revs
->notes_opt
.use_default_notes
= 1;
1543 strbuf_addstr(&buf
, arg
+13);
1546 strbuf_addstr(&buf
, arg
+8);
1547 expand_notes_ref(&buf
);
1548 string_list_append(&revs
->notes_opt
.extra_notes_refs
,
1549 strbuf_detach(&buf
, NULL
));
1550 } else if (!strcmp(arg
, "--no-notes")) {
1551 revs
->show_notes
= 0;
1552 revs
->show_notes_given
= 1;
1553 revs
->notes_opt
.use_default_notes
= -1;
1554 /* we have been strdup'ing ourselves, so trick
1555 * string_list into free()ing strings */
1556 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 1;
1557 string_list_clear(&revs
->notes_opt
.extra_notes_refs
, 0);
1558 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 0;
1559 } else if (!strcmp(arg
, "--standard-notes")) {
1560 revs
->show_notes_given
= 1;
1561 revs
->notes_opt
.use_default_notes
= 1;
1562 } else if (!strcmp(arg
, "--no-standard-notes")) {
1563 revs
->notes_opt
.use_default_notes
= 0;
1564 } else if (!strcmp(arg
, "--oneline")) {
1565 revs
->verbose_header
= 1;
1566 get_commit_format("oneline", revs
);
1567 revs
->pretty_given
= 1;
1568 revs
->abbrev_commit
= 1;
1569 } else if (!strcmp(arg
, "--graph")) {
1570 revs
->topo_order
= 1;
1571 revs
->rewrite_parents
= 1;
1572 revs
->graph
= graph_init(revs
);
1573 } else if (!strcmp(arg
, "--root")) {
1574 revs
->show_root_diff
= 1;
1575 } else if (!strcmp(arg
, "--no-commit-id")) {
1576 revs
->no_commit_id
= 1;
1577 } else if (!strcmp(arg
, "--always")) {
1578 revs
->always_show_header
= 1;
1579 } else if (!strcmp(arg
, "--no-abbrev")) {
1581 } else if (!strcmp(arg
, "--abbrev")) {
1582 revs
->abbrev
= DEFAULT_ABBREV
;
1583 } else if (!prefixcmp(arg
, "--abbrev=")) {
1584 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1585 if (revs
->abbrev
< MINIMUM_ABBREV
)
1586 revs
->abbrev
= MINIMUM_ABBREV
;
1587 else if (revs
->abbrev
> 40)
1589 } else if (!strcmp(arg
, "--abbrev-commit")) {
1590 revs
->abbrev_commit
= 1;
1591 revs
->abbrev_commit_given
= 1;
1592 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
1593 revs
->abbrev_commit
= 0;
1594 } else if (!strcmp(arg
, "--full-diff")) {
1596 revs
->full_diff
= 1;
1597 } else if (!strcmp(arg
, "--full-history")) {
1598 revs
->simplify_history
= 0;
1599 } else if (!strcmp(arg
, "--relative-date")) {
1600 revs
->date_mode
= DATE_RELATIVE
;
1601 revs
->date_mode_explicit
= 1;
1602 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
1603 revs
->date_mode
= parse_date_format(optarg
);
1604 revs
->date_mode_explicit
= 1;
1606 } else if (!strcmp(arg
, "--log-size")) {
1607 revs
->show_log_size
= 1;
1610 * Grepping the commit log
1612 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
1613 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
1615 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
1616 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
1618 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
1619 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
1621 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
1622 add_message_grep(revs
, optarg
);
1624 } else if (!strcmp(arg
, "--grep-debug")) {
1625 revs
->grep_filter
.debug
= 1;
1626 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1627 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE
, &revs
->grep_filter
);
1628 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1629 revs
->grep_filter
.regflags
|= REG_ICASE
;
1630 DIFF_OPT_SET(&revs
->diffopt
, PICKAXE_IGNORE_CASE
);
1631 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1632 grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED
, &revs
->grep_filter
);
1633 } else if (!strcmp(arg
, "--all-match")) {
1634 revs
->grep_filter
.all_match
= 1;
1635 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
1636 if (strcmp(optarg
, "none"))
1637 git_log_output_encoding
= xstrdup(optarg
);
1639 git_log_output_encoding
= "";
1641 } else if (!strcmp(arg
, "--reverse")) {
1643 } else if (!strcmp(arg
, "--children")) {
1644 revs
->children
.name
= "children";
1646 } else if (!strcmp(arg
, "--ignore-missing")) {
1647 revs
->ignore_missing
= 1;
1649 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1651 unkv
[(*unkc
)++] = arg
;
1658 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1659 const struct option
*options
,
1660 const char * const usagestr
[])
1662 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1663 &ctx
->cpidx
, ctx
->out
);
1665 error("unknown option `%s'", ctx
->argv
[0]);
1666 usage_with_options(usagestr
, options
);
1672 static int for_each_bad_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1674 return for_each_ref_in_submodule(submodule
, "refs/bisect/bad", fn
, cb_data
);
1677 static int for_each_good_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1679 return for_each_ref_in_submodule(submodule
, "refs/bisect/good", fn
, cb_data
);
1682 static int handle_revision_pseudo_opt(const char *submodule
,
1683 struct rev_info
*revs
,
1684 int argc
, const char **argv
, int *flags
)
1686 const char *arg
= argv
[0];
1693 * Commands like "git shortlog" will not accept the options below
1694 * unless parse_revision_opt queues them (as opposed to erroring
1697 * When implementing your new pseudo-option, remember to
1698 * register it in the list at the top of handle_revision_opt.
1700 if (!strcmp(arg
, "--all")) {
1701 handle_refs(submodule
, revs
, *flags
, for_each_ref_submodule
);
1702 handle_refs(submodule
, revs
, *flags
, head_ref_submodule
);
1703 } else if (!strcmp(arg
, "--branches")) {
1704 handle_refs(submodule
, revs
, *flags
, for_each_branch_ref_submodule
);
1705 } else if (!strcmp(arg
, "--bisect")) {
1706 handle_refs(submodule
, revs
, *flags
, for_each_bad_bisect_ref
);
1707 handle_refs(submodule
, revs
, *flags
^ UNINTERESTING
, for_each_good_bisect_ref
);
1709 } else if (!strcmp(arg
, "--tags")) {
1710 handle_refs(submodule
, revs
, *flags
, for_each_tag_ref_submodule
);
1711 } else if (!strcmp(arg
, "--remotes")) {
1712 handle_refs(submodule
, revs
, *flags
, for_each_remote_ref_submodule
);
1713 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
1714 struct all_refs_cb cb
;
1715 init_all_refs_cb(&cb
, revs
, *flags
);
1716 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
1718 } else if (!prefixcmp(arg
, "--branches=")) {
1719 struct all_refs_cb cb
;
1720 init_all_refs_cb(&cb
, revs
, *flags
);
1721 for_each_glob_ref_in(handle_one_ref
, arg
+ 11, "refs/heads/", &cb
);
1722 } else if (!prefixcmp(arg
, "--tags=")) {
1723 struct all_refs_cb cb
;
1724 init_all_refs_cb(&cb
, revs
, *flags
);
1725 for_each_glob_ref_in(handle_one_ref
, arg
+ 7, "refs/tags/", &cb
);
1726 } else if (!prefixcmp(arg
, "--remotes=")) {
1727 struct all_refs_cb cb
;
1728 init_all_refs_cb(&cb
, revs
, *flags
);
1729 for_each_glob_ref_in(handle_one_ref
, arg
+ 10, "refs/remotes/", &cb
);
1730 } else if (!strcmp(arg
, "--reflog")) {
1731 handle_reflog(revs
, *flags
);
1732 } else if (!strcmp(arg
, "--not")) {
1733 *flags
^= UNINTERESTING
;
1734 } else if (!strcmp(arg
, "--no-walk")) {
1735 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
1736 } else if (!prefixcmp(arg
, "--no-walk=")) {
1738 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
1739 * not allowed, since the argument is optional.
1741 if (!strcmp(arg
+ 10, "sorted"))
1742 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
1743 else if (!strcmp(arg
+ 10, "unsorted"))
1744 revs
->no_walk
= REVISION_WALK_NO_WALK_UNSORTED
;
1746 return error("invalid argument to --no-walk");
1747 } else if (!strcmp(arg
, "--do-walk")) {
1757 * Parse revision information, filling in the "rev_info" structure,
1758 * and removing the used arguments from the argument list.
1760 * Returns the number of arguments left that weren't recognized
1761 * (which are also moved to the head of the argument list)
1763 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
1765 int i
, flags
, left
, seen_dashdash
, read_from_stdin
, got_rev_arg
= 0, revarg_opt
;
1766 struct cmdline_pathspec prune_data
;
1767 const char *submodule
= NULL
;
1769 memset(&prune_data
, 0, sizeof(prune_data
));
1771 submodule
= opt
->submodule
;
1773 /* First, search for "--" */
1774 if (opt
&& opt
->assume_dashdash
) {
1778 for (i
= 1; i
< argc
; i
++) {
1779 const char *arg
= argv
[i
];
1780 if (strcmp(arg
, "--"))
1785 append_prune_data(&prune_data
, argv
+ i
+ 1);
1791 /* Second, deal with arguments and options */
1793 revarg_opt
= opt
? opt
->revarg_opt
: 0;
1795 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
1796 read_from_stdin
= 0;
1797 for (left
= i
= 1; i
< argc
; i
++) {
1798 const char *arg
= argv
[i
];
1802 opts
= handle_revision_pseudo_opt(submodule
,
1803 revs
, argc
- i
, argv
+ i
,
1810 if (!strcmp(arg
, "--stdin")) {
1811 if (revs
->disable_stdin
) {
1815 if (read_from_stdin
++)
1816 die("--stdin given twice?");
1817 read_revisions_from_stdin(revs
, &prune_data
);
1821 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1832 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
1834 if (seen_dashdash
|| *arg
== '^')
1835 die("bad revision '%s'", arg
);
1837 /* If we didn't have a "--":
1838 * (1) all filenames must exist;
1839 * (2) all rev-args must not be interpretable
1840 * as a valid filename.
1841 * but the latter we have checked in the main loop.
1843 for (j
= i
; j
< argc
; j
++)
1844 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
1846 append_prune_data(&prune_data
, argv
+ i
);
1853 if (prune_data
.nr
) {
1855 * If we need to introduce the magic "a lone ':' means no
1856 * pathspec whatsoever", here is the place to do so.
1858 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1859 * prune_data.nr = 0;
1860 * prune_data.alloc = 0;
1861 * free(prune_data.path);
1862 * prune_data.path = NULL;
1864 * terminate prune_data.alloc with NULL and
1865 * call init_pathspec() to set revs->prune_data here.
1868 ALLOC_GROW(prune_data
.path
, prune_data
.nr
+1, prune_data
.alloc
);
1869 prune_data
.path
[prune_data
.nr
++] = NULL
;
1870 init_pathspec(&revs
->prune_data
,
1871 get_pathspec(revs
->prefix
, prune_data
.path
));
1874 if (revs
->def
== NULL
)
1875 revs
->def
= opt
? opt
->def
: NULL
;
1876 if (opt
&& opt
->tweak
)
1877 opt
->tweak(revs
, opt
);
1878 if (revs
->show_merge
)
1879 prepare_show_merge(revs
);
1880 if (revs
->def
&& !revs
->pending
.nr
&& !got_rev_arg
) {
1881 unsigned char sha1
[20];
1882 struct object
*object
;
1883 struct object_context oc
;
1884 if (get_sha1_with_context(revs
->def
, 0, sha1
, &oc
))
1885 die("bad default revision '%s'", revs
->def
);
1886 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1887 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
1890 /* Did the user ask for any diff output? Run the diff! */
1891 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1894 /* Pickaxe, diff-filter and rename following need diffs */
1895 if (revs
->diffopt
.pickaxe
||
1896 revs
->diffopt
.filter
||
1897 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1900 if (revs
->topo_order
)
1903 if (revs
->prune_data
.nr
) {
1904 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->pruning
);
1905 /* Can't prune commits with rename following: the paths change.. */
1906 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1908 if (!revs
->full_diff
)
1909 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->diffopt
);
1911 if (revs
->combine_merges
)
1912 revs
->ignore_merges
= 0;
1913 revs
->diffopt
.abbrev
= revs
->abbrev
;
1914 diff_setup_done(&revs
->diffopt
);
1916 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED
,
1917 &revs
->grep_filter
);
1918 compile_grep_patterns(&revs
->grep_filter
);
1920 if (revs
->reverse
&& revs
->reflog_info
)
1921 die("cannot combine --reverse with --walk-reflogs");
1922 if (revs
->rewrite_parents
&& revs
->children
.name
)
1923 die("cannot combine --parents and --children");
1926 * Limitations on the graph functionality
1928 if (revs
->reverse
&& revs
->graph
)
1929 die("cannot combine --reverse with --graph");
1931 if (revs
->reflog_info
&& revs
->graph
)
1932 die("cannot combine --walk-reflogs with --graph");
1933 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
1934 die("cannot use --grep-reflog without --walk-reflogs");
1939 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1941 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1944 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1947 static int remove_duplicate_parents(struct commit
*commit
)
1949 struct commit_list
**pp
, *p
;
1950 int surviving_parents
;
1952 /* Examine existing parents while marking ones we have seen... */
1953 pp
= &commit
->parents
;
1954 while ((p
= *pp
) != NULL
) {
1955 struct commit
*parent
= p
->item
;
1956 if (parent
->object
.flags
& TMP_MARK
) {
1960 parent
->object
.flags
|= TMP_MARK
;
1963 /* count them while clearing the temporary mark */
1964 surviving_parents
= 0;
1965 for (p
= commit
->parents
; p
; p
= p
->next
) {
1966 p
->item
->object
.flags
&= ~TMP_MARK
;
1967 surviving_parents
++;
1969 return surviving_parents
;
1972 struct merge_simplify_state
{
1973 struct commit
*simplified
;
1976 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1978 struct merge_simplify_state
*st
;
1980 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1982 st
= xcalloc(1, sizeof(*st
));
1983 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1988 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1990 struct commit_list
*p
;
1991 struct merge_simplify_state
*st
, *pst
;
1994 st
= locate_simplify_state(revs
, commit
);
1997 * Have we handled this one?
2003 * An UNINTERESTING commit simplifies to itself, so does a
2004 * root commit. We do not rewrite parents of such commit
2007 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
2008 st
->simplified
= commit
;
2013 * Do we know what commit all of our parents that matter
2014 * should be rewritten to? Otherwise we are not ready to
2015 * rewrite this one yet.
2017 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
2018 pst
= locate_simplify_state(revs
, p
->item
);
2019 if (!pst
->simplified
) {
2020 tail
= &commit_list_insert(p
->item
, tail
)->next
;
2023 if (revs
->first_parent_only
)
2027 tail
= &commit_list_insert(commit
, tail
)->next
;
2032 * Rewrite our list of parents.
2034 for (p
= commit
->parents
; p
; p
= p
->next
) {
2035 pst
= locate_simplify_state(revs
, p
->item
);
2036 p
->item
= pst
->simplified
;
2037 if (revs
->first_parent_only
)
2040 if (!revs
->first_parent_only
)
2041 cnt
= remove_duplicate_parents(commit
);
2046 * It is possible that we are a merge and one side branch
2047 * does not have any commit that touches the given paths;
2048 * in such a case, the immediate parents will be rewritten
2049 * to different commits.
2051 * o----X X: the commit we are looking at;
2052 * / / o: a commit that touches the paths;
2055 * Further reduce the parents by removing redundant parents.
2058 struct commit_list
*h
= reduce_heads(commit
->parents
);
2059 cnt
= commit_list_count(h
);
2060 free_commit_list(commit
->parents
);
2061 commit
->parents
= h
;
2065 * A commit simplifies to itself if it is a root, if it is
2066 * UNINTERESTING, if it touches the given paths, or if it is a
2067 * merge and its parents simplifies to more than one commits
2068 * (the first two cases are already handled at the beginning of
2071 * Otherwise, it simplifies to what its sole parent simplifies to.
2074 (commit
->object
.flags
& UNINTERESTING
) ||
2075 !(commit
->object
.flags
& TREESAME
) ||
2077 st
->simplified
= commit
;
2079 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
2080 st
->simplified
= pst
->simplified
;
2085 static void simplify_merges(struct rev_info
*revs
)
2087 struct commit_list
*list
, *next
;
2088 struct commit_list
*yet_to_do
, **tail
;
2089 struct commit
*commit
;
2094 /* feed the list reversed */
2096 for (list
= revs
->commits
; list
; list
= next
) {
2097 commit
= list
->item
;
2100 * Do not free(list) here yet; the original list
2101 * is used later in this function.
2103 commit_list_insert(commit
, &yet_to_do
);
2110 commit
= list
->item
;
2114 tail
= simplify_one(revs
, commit
, tail
);
2118 /* clean up the result, removing the simplified ones */
2119 list
= revs
->commits
;
2120 revs
->commits
= NULL
;
2121 tail
= &revs
->commits
;
2123 struct merge_simplify_state
*st
;
2125 commit
= list
->item
;
2129 st
= locate_simplify_state(revs
, commit
);
2130 if (st
->simplified
== commit
)
2131 tail
= &commit_list_insert(commit
, tail
)->next
;
2135 static void set_children(struct rev_info
*revs
)
2137 struct commit_list
*l
;
2138 for (l
= revs
->commits
; l
; l
= l
->next
) {
2139 struct commit
*commit
= l
->item
;
2140 struct commit_list
*p
;
2142 for (p
= commit
->parents
; p
; p
= p
->next
)
2143 add_child(revs
, p
->item
, commit
);
2147 void reset_revision_walk(void)
2149 clear_object_flags(SEEN
| ADDED
| SHOWN
);
2152 int prepare_revision_walk(struct rev_info
*revs
)
2154 int nr
= revs
->pending
.nr
;
2155 struct object_array_entry
*e
, *list
;
2156 struct commit_list
**next
= &revs
->commits
;
2158 e
= list
= revs
->pending
.objects
;
2159 revs
->pending
.nr
= 0;
2160 revs
->pending
.alloc
= 0;
2161 revs
->pending
.objects
= NULL
;
2163 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
2165 if (!(commit
->object
.flags
& SEEN
)) {
2166 commit
->object
.flags
|= SEEN
;
2167 next
= commit_list_append(commit
, next
);
2172 if (!revs
->leak_pending
)
2175 if (revs
->no_walk
!= REVISION_WALK_NO_WALK_UNSORTED
)
2176 commit_list_sort_by_date(&revs
->commits
);
2180 if (limit_list(revs
) < 0)
2182 if (revs
->topo_order
)
2183 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2184 if (revs
->simplify_merges
)
2185 simplify_merges(revs
);
2186 if (revs
->children
.name
)
2191 enum rewrite_result
{
2193 rewrite_one_noparents
,
2197 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
2199 struct commit_list
*cache
= NULL
;
2202 struct commit
*p
= *pp
;
2204 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
2205 return rewrite_one_error
;
2206 if (p
->parents
&& p
->parents
->next
)
2207 return rewrite_one_ok
;
2208 if (p
->object
.flags
& UNINTERESTING
)
2209 return rewrite_one_ok
;
2210 if (!(p
->object
.flags
& TREESAME
))
2211 return rewrite_one_ok
;
2213 return rewrite_one_noparents
;
2214 *pp
= p
->parents
->item
;
2218 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
2220 struct commit_list
**pp
= &commit
->parents
;
2222 struct commit_list
*parent
= *pp
;
2223 switch (rewrite_one(revs
, &parent
->item
)) {
2224 case rewrite_one_ok
:
2226 case rewrite_one_noparents
:
2229 case rewrite_one_error
:
2234 remove_duplicate_parents(commit
);
2238 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
2241 struct strbuf buf
= STRBUF_INIT
;
2242 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
2245 /* Prepend "fake" headers as needed */
2246 if (opt
->grep_filter
.use_reflog_filter
) {
2247 strbuf_addstr(&buf
, "reflog ");
2248 get_reflog_message(&buf
, opt
->reflog_info
);
2249 strbuf_addch(&buf
, '\n');
2252 /* Copy the commit to temporary if we are using "fake" headers */
2254 strbuf_addstr(&buf
, commit
->buffer
);
2256 /* Append "fake" message parts as needed */
2257 if (opt
->show_notes
) {
2259 strbuf_addstr(&buf
, commit
->buffer
);
2260 format_display_notes(commit
->object
.sha1
, &buf
,
2261 get_log_output_encoding(), 0);
2264 /* Find either in the commit object, or in the temporary */
2266 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
2268 retval
= grep_buffer(&opt
->grep_filter
,
2269 commit
->buffer
, strlen(commit
->buffer
));
2270 strbuf_release(&buf
);
2274 static inline int want_ancestry(struct rev_info
*revs
)
2276 return (revs
->rewrite_parents
|| revs
->children
.name
);
2279 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
2281 if (commit
->object
.flags
& SHOWN
)
2282 return commit_ignore
;
2283 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
))
2284 return commit_ignore
;
2287 if (commit
->object
.flags
& UNINTERESTING
)
2288 return commit_ignore
;
2289 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
2290 return commit_ignore
;
2291 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
2293 struct commit_list
*p
;
2294 for (p
= commit
->parents
; p
; p
= p
->next
)
2296 if ((n
< revs
->min_parents
) ||
2297 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
2298 return commit_ignore
;
2300 if (!commit_match(commit
, revs
))
2301 return commit_ignore
;
2302 if (revs
->prune
&& revs
->dense
) {
2303 /* Commit without changes? */
2304 if (commit
->object
.flags
& TREESAME
) {
2305 /* drop merges unless we want parenthood */
2306 if (!want_ancestry(revs
))
2307 return commit_ignore
;
2308 /* non-merge - always ignore it */
2309 if (!commit
->parents
|| !commit
->parents
->next
)
2310 return commit_ignore
;
2316 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
2318 enum commit_action action
= get_commit_action(revs
, commit
);
2320 if (action
== commit_show
&&
2322 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
2323 if (rewrite_parents(revs
, commit
) < 0)
2324 return commit_error
;
2329 static struct commit
*get_revision_1(struct rev_info
*revs
)
2335 struct commit_list
*entry
= revs
->commits
;
2336 struct commit
*commit
= entry
->item
;
2338 revs
->commits
= entry
->next
;
2341 if (revs
->reflog_info
) {
2342 fake_reflog_parent(revs
->reflog_info
, commit
);
2343 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
2347 * If we haven't done the list limiting, we need to look at
2348 * the parents here. We also need to do the date-based limiting
2349 * that we'd otherwise have done in limit_list().
2351 if (!revs
->limited
) {
2352 if (revs
->max_age
!= -1 &&
2353 (commit
->date
< revs
->max_age
))
2355 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
2356 die("Failed to traverse parents of commit %s",
2357 sha1_to_hex(commit
->object
.sha1
));
2360 switch (simplify_commit(revs
, commit
)) {
2364 die("Failed to simplify parents of commit %s",
2365 sha1_to_hex(commit
->object
.sha1
));
2369 } while (revs
->commits
);
2373 static void gc_boundary(struct object_array
*array
)
2375 unsigned nr
= array
->nr
;
2376 unsigned alloc
= array
->alloc
;
2377 struct object_array_entry
*objects
= array
->objects
;
2381 for (i
= j
= 0; i
< nr
; i
++) {
2382 if (objects
[i
].item
->flags
& SHOWN
)
2385 objects
[j
] = objects
[i
];
2388 for (i
= j
; i
< nr
; i
++)
2389 objects
[i
].item
= NULL
;
2394 static void create_boundary_commit_list(struct rev_info
*revs
)
2398 struct object_array
*array
= &revs
->boundary_commits
;
2399 struct object_array_entry
*objects
= array
->objects
;
2402 * If revs->commits is non-NULL at this point, an error occurred in
2403 * get_revision_1(). Ignore the error and continue printing the
2404 * boundary commits anyway. (This is what the code has always
2407 if (revs
->commits
) {
2408 free_commit_list(revs
->commits
);
2409 revs
->commits
= NULL
;
2413 * Put all of the actual boundary commits from revs->boundary_commits
2414 * into revs->commits
2416 for (i
= 0; i
< array
->nr
; i
++) {
2417 c
= (struct commit
*)(objects
[i
].item
);
2420 if (!(c
->object
.flags
& CHILD_SHOWN
))
2422 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
2424 c
->object
.flags
|= BOUNDARY
;
2425 commit_list_insert(c
, &revs
->commits
);
2429 * If revs->topo_order is set, sort the boundary commits
2430 * in topological order
2432 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2435 static struct commit
*get_revision_internal(struct rev_info
*revs
)
2437 struct commit
*c
= NULL
;
2438 struct commit_list
*l
;
2440 if (revs
->boundary
== 2) {
2442 * All of the normal commits have already been returned,
2443 * and we are now returning boundary commits.
2444 * create_boundary_commit_list() has populated
2445 * revs->commits with the remaining commits to return.
2447 c
= pop_commit(&revs
->commits
);
2449 c
->object
.flags
|= SHOWN
;
2454 * If our max_count counter has reached zero, then we are done. We
2455 * don't simply return NULL because we still might need to show
2456 * boundary commits. But we want to avoid calling get_revision_1, which
2457 * might do a considerable amount of work finding the next commit only
2458 * for us to throw it away.
2460 * If it is non-zero, then either we don't have a max_count at all
2461 * (-1), or it is still counting, in which case we decrement.
2463 if (revs
->max_count
) {
2464 c
= get_revision_1(revs
);
2466 while (0 < revs
->skip_count
) {
2468 c
= get_revision_1(revs
);
2474 if (revs
->max_count
> 0)
2479 c
->object
.flags
|= SHOWN
;
2481 if (!revs
->boundary
) {
2487 * get_revision_1() runs out the commits, and
2488 * we are done computing the boundaries.
2489 * switch to boundary commits output mode.
2494 * Update revs->commits to contain the list of
2497 create_boundary_commit_list(revs
);
2499 return get_revision_internal(revs
);
2503 * boundary commits are the commits that are parents of the
2504 * ones we got from get_revision_1() but they themselves are
2505 * not returned from get_revision_1(). Before returning
2506 * 'c', we need to mark its parents that they could be boundaries.
2509 for (l
= c
->parents
; l
; l
= l
->next
) {
2511 p
= &(l
->item
->object
);
2512 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
2514 p
->flags
|= CHILD_SHOWN
;
2515 gc_boundary(&revs
->boundary_commits
);
2516 add_object_array(p
, NULL
, &revs
->boundary_commits
);
2522 struct commit
*get_revision(struct rev_info
*revs
)
2525 struct commit_list
*reversed
;
2527 if (revs
->reverse
) {
2529 while ((c
= get_revision_internal(revs
))) {
2530 commit_list_insert(c
, &reversed
);
2532 revs
->commits
= reversed
;
2534 revs
->reverse_output_stage
= 1;
2537 if (revs
->reverse_output_stage
)
2538 return pop_commit(&revs
->commits
);
2540 c
= get_revision_internal(revs
);
2541 if (c
&& revs
->graph
)
2542 graph_update(revs
->graph
, c
);
2546 char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2548 if (commit
->object
.flags
& BOUNDARY
)
2550 else if (commit
->object
.flags
& UNINTERESTING
)
2552 else if (commit
->object
.flags
& PATCHSAME
)
2554 else if (!revs
|| revs
->left_right
) {
2555 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
2559 } else if (revs
->graph
)
2561 else if (revs
->cherry_mark
)
2566 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2568 char *mark
= get_revision_mark(revs
, commit
);
2571 fputs(mark
, stdout
);