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 void mark_tree_uninteresting(struct tree
*tree
)
103 struct tree_desc desc
;
104 struct name_entry entry
;
105 struct object
*obj
= &tree
->object
;
109 if (obj
->flags
& UNINTERESTING
)
111 obj
->flags
|= UNINTERESTING
;
112 if (!has_sha1_file(obj
->sha1
))
114 if (parse_tree(tree
) < 0)
115 die("bad tree %s", sha1_to_hex(obj
->sha1
));
117 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
118 while (tree_entry(&desc
, &entry
)) {
119 switch (object_type(entry
.mode
)) {
121 mark_tree_uninteresting(lookup_tree(entry
.sha1
));
124 mark_blob_uninteresting(lookup_blob(entry
.sha1
));
127 /* Subproject commit - not in this repository */
133 * We don't care about the tree any more
134 * after it has been marked uninteresting.
140 void mark_parents_uninteresting(struct commit
*commit
)
142 struct commit_list
*parents
= NULL
, *l
;
144 for (l
= commit
->parents
; l
; l
= l
->next
)
145 commit_list_insert(l
->item
, &parents
);
148 struct commit
*commit
= parents
->item
;
150 parents
= parents
->next
;
155 * A missing commit is ok iff its parent is marked
158 * We just mark such a thing parsed, so that when
159 * it is popped next time around, we won't be trying
160 * to parse it and get an error.
162 if (!has_sha1_file(commit
->object
.sha1
))
163 commit
->object
.parsed
= 1;
165 if (commit
->object
.flags
& UNINTERESTING
)
168 commit
->object
.flags
|= UNINTERESTING
;
171 * Normally we haven't parsed the parent
172 * yet, so we won't have a parent of a parent
173 * here. However, it may turn out that we've
174 * reached this commit some other way (where it
175 * wasn't uninteresting), in which case we need
176 * to mark its parents recursively too..
178 if (!commit
->parents
)
181 for (l
= commit
->parents
->next
; l
; l
= l
->next
)
182 commit_list_insert(l
->item
, &parents
);
183 commit
= commit
->parents
->item
;
188 static void add_pending_object_with_mode(struct rev_info
*revs
, struct object
*obj
, const char *name
, unsigned mode
)
192 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
194 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
195 struct strbuf buf
= STRBUF_INIT
;
196 int len
= interpret_branch_name(name
, &buf
);
199 if (0 < len
&& name
[len
] && buf
.len
)
200 strbuf_addstr(&buf
, name
+ len
);
201 st
= add_reflog_for_walk(revs
->reflog_info
,
202 (struct commit
*)obj
,
203 buf
.buf
[0] ? buf
.buf
: name
);
204 strbuf_release(&buf
);
208 add_object_array_with_mode(obj
, name
, &revs
->pending
, mode
);
211 void add_pending_object(struct rev_info
*revs
, struct object
*obj
, const char *name
)
213 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
216 void add_head_to_pending(struct rev_info
*revs
)
218 unsigned char sha1
[20];
220 if (get_sha1("HEAD", sha1
))
222 obj
= parse_object(sha1
);
225 add_pending_object(revs
, obj
, "HEAD");
228 static struct object
*get_reference(struct rev_info
*revs
, const char *name
, const unsigned char *sha1
, unsigned int flags
)
230 struct object
*object
;
232 object
= parse_object(sha1
);
234 if (revs
->ignore_missing
)
236 die("bad object %s", name
);
238 object
->flags
|= flags
;
242 void add_pending_sha1(struct rev_info
*revs
, const char *name
,
243 const unsigned char *sha1
, unsigned int flags
)
245 struct object
*object
= get_reference(revs
, name
, sha1
, flags
);
246 add_pending_object(revs
, object
, name
);
249 static struct commit
*handle_commit(struct rev_info
*revs
, struct object
*object
, const char *name
)
251 unsigned long flags
= object
->flags
;
254 * Tag object? Look what it points to..
256 while (object
->type
== OBJ_TAG
) {
257 struct tag
*tag
= (struct tag
*) object
;
258 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
259 add_pending_object(revs
, object
, tag
->tag
);
262 object
= parse_object(tag
->tagged
->sha1
);
264 if (flags
& UNINTERESTING
)
266 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
271 * Commit object? Just return it, we'll do all the complex
274 if (object
->type
== OBJ_COMMIT
) {
275 struct commit
*commit
= (struct commit
*)object
;
276 if (parse_commit(commit
) < 0)
277 die("unable to parse commit %s", name
);
278 if (flags
& UNINTERESTING
) {
279 commit
->object
.flags
|= UNINTERESTING
;
280 mark_parents_uninteresting(commit
);
283 if (revs
->show_source
&& !commit
->util
)
284 commit
->util
= (void *) name
;
289 * Tree object? Either mark it uninteresting, or add it
290 * to the list of objects to look at later..
292 if (object
->type
== OBJ_TREE
) {
293 struct tree
*tree
= (struct tree
*)object
;
294 if (!revs
->tree_objects
)
296 if (flags
& UNINTERESTING
) {
297 mark_tree_uninteresting(tree
);
300 add_pending_object(revs
, object
, "");
305 * Blob object? You know the drill by now..
307 if (object
->type
== OBJ_BLOB
) {
308 struct blob
*blob
= (struct blob
*)object
;
309 if (!revs
->blob_objects
)
311 if (flags
& UNINTERESTING
) {
312 mark_blob_uninteresting(blob
);
315 add_pending_object(revs
, object
, "");
318 die("%s is unknown object", name
);
321 static int everybody_uninteresting(struct commit_list
*orig
)
323 struct commit_list
*list
= orig
;
325 struct commit
*commit
= list
->item
;
327 if (commit
->object
.flags
& UNINTERESTING
)
335 * The goal is to get REV_TREE_NEW as the result only if the
336 * diff consists of all '+' (and no other changes), REV_TREE_OLD
337 * if the whole diff is removal of old data, and otherwise
338 * REV_TREE_DIFFERENT (of course if the trees are the same we
339 * want REV_TREE_SAME).
340 * That means that once we get to REV_TREE_DIFFERENT, we do not
341 * have to look any further.
343 static int tree_difference
= REV_TREE_SAME
;
345 static void file_add_remove(struct diff_options
*options
,
346 int addremove
, unsigned mode
,
347 const unsigned char *sha1
,
348 const char *fullpath
, unsigned dirty_submodule
)
350 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
352 tree_difference
|= diff
;
353 if (tree_difference
== REV_TREE_DIFFERENT
)
354 DIFF_OPT_SET(options
, HAS_CHANGES
);
357 static void file_change(struct diff_options
*options
,
358 unsigned old_mode
, unsigned new_mode
,
359 const unsigned char *old_sha1
,
360 const unsigned char *new_sha1
,
361 const char *fullpath
,
362 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
364 tree_difference
= REV_TREE_DIFFERENT
;
365 DIFF_OPT_SET(options
, HAS_CHANGES
);
368 static int rev_compare_tree(struct rev_info
*revs
, struct commit
*parent
, struct commit
*commit
)
370 struct tree
*t1
= parent
->tree
;
371 struct tree
*t2
= commit
->tree
;
378 if (revs
->simplify_by_decoration
) {
380 * If we are simplifying by decoration, then the commit
381 * is worth showing if it has a tag pointing at it.
383 if (lookup_decoration(&name_decoration
, &commit
->object
))
384 return REV_TREE_DIFFERENT
;
386 * A commit that is not pointed by a tag is uninteresting
387 * if we are not limited by path. This means that you will
388 * see the usual "commits that touch the paths" plus any
389 * tagged commit by specifying both --simplify-by-decoration
392 if (!revs
->prune_data
.nr
)
393 return REV_TREE_SAME
;
396 tree_difference
= REV_TREE_SAME
;
397 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
398 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
400 return REV_TREE_DIFFERENT
;
401 return tree_difference
;
404 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
409 struct tree_desc empty
, real
;
410 struct tree
*t1
= commit
->tree
;
415 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
418 init_tree_desc(&real
, tree
, size
);
419 init_tree_desc(&empty
, "", 0);
421 tree_difference
= REV_TREE_SAME
;
422 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
423 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
426 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
429 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
431 struct commit_list
**pp
, *parent
;
432 int tree_changed
= 0, tree_same
= 0, nth_parent
= 0;
435 * If we don't do pruning, everything is interesting
443 if (!commit
->parents
) {
444 if (rev_same_tree_as_empty(revs
, commit
))
445 commit
->object
.flags
|= TREESAME
;
450 * Normal non-merge commit? If we don't want to make the
451 * history dense, we consider it always to be a change..
453 if (!revs
->dense
&& !commit
->parents
->next
)
456 pp
= &commit
->parents
;
457 while ((parent
= *pp
) != NULL
) {
458 struct commit
*p
= parent
->item
;
461 * Do not compare with later parents when we care only about
462 * the first parent chain, in order to avoid derailing the
463 * traversal to follow a side branch that brought everything
464 * in the path we are limited to by the pathspec.
466 if (revs
->first_parent_only
&& nth_parent
++)
468 if (parse_commit(p
) < 0)
469 die("cannot simplify commit %s (because of %s)",
470 sha1_to_hex(commit
->object
.sha1
),
471 sha1_to_hex(p
->object
.sha1
));
472 switch (rev_compare_tree(revs
, p
, commit
)) {
475 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
476 /* Even if a merge with an uninteresting
477 * side branch brought the entire change
478 * we are interested in, we do not want
479 * to lose the other branches of this
480 * merge, so we just keep going.
486 commit
->parents
= parent
;
487 commit
->object
.flags
|= TREESAME
;
491 if (revs
->remove_empty_trees
&&
492 rev_same_tree_as_empty(revs
, p
)) {
493 /* We are adding all the specified
494 * paths from this parent, so the
495 * history beyond this parent is not
496 * interesting. Remove its parents
497 * (they are grandparents for us).
498 * IOW, we pretend this parent is a
501 if (parse_commit(p
) < 0)
502 die("cannot simplify commit %s (invalid %s)",
503 sha1_to_hex(commit
->object
.sha1
),
504 sha1_to_hex(p
->object
.sha1
));
509 case REV_TREE_DIFFERENT
:
514 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
516 if (tree_changed
&& !tree_same
)
518 commit
->object
.flags
|= TREESAME
;
521 static void commit_list_insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
522 struct commit_list
*cached_base
, struct commit_list
**cache
)
524 struct commit_list
*new_entry
;
526 if (cached_base
&& p
->date
< cached_base
->item
->date
)
527 new_entry
= commit_list_insert_by_date(p
, &cached_base
->next
);
529 new_entry
= commit_list_insert_by_date(p
, head
);
531 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
535 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
536 struct commit_list
**list
, struct commit_list
**cache_ptr
)
538 struct commit_list
*parent
= commit
->parents
;
540 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
542 if (commit
->object
.flags
& ADDED
)
544 commit
->object
.flags
|= ADDED
;
547 * If the commit is uninteresting, don't try to
548 * prune parents - we want the maximal uninteresting
551 * Normally we haven't parsed the parent
552 * yet, so we won't have a parent of a parent
553 * here. However, it may turn out that we've
554 * reached this commit some other way (where it
555 * wasn't uninteresting), in which case we need
556 * to mark its parents recursively too..
558 if (commit
->object
.flags
& UNINTERESTING
) {
560 struct commit
*p
= parent
->item
;
561 parent
= parent
->next
;
563 p
->object
.flags
|= UNINTERESTING
;
564 if (parse_commit(p
) < 0)
567 mark_parents_uninteresting(p
);
568 if (p
->object
.flags
& SEEN
)
570 p
->object
.flags
|= SEEN
;
571 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
577 * Ok, the commit wasn't uninteresting. Try to
578 * simplify the commit history and find the parent
579 * that has no differences in the path set if one exists.
581 try_to_simplify_commit(revs
, commit
);
586 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
588 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
589 struct commit
*p
= parent
->item
;
591 if (parse_commit(p
) < 0)
593 if (revs
->show_source
&& !p
->util
)
594 p
->util
= commit
->util
;
595 p
->object
.flags
|= left_flag
;
596 if (!(p
->object
.flags
& SEEN
)) {
597 p
->object
.flags
|= SEEN
;
598 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
600 if (revs
->first_parent_only
)
606 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
608 struct commit_list
*p
;
609 int left_count
= 0, right_count
= 0;
611 struct patch_ids ids
;
612 unsigned cherry_flag
;
614 /* First count the commits on the left and on the right */
615 for (p
= list
; p
; p
= p
->next
) {
616 struct commit
*commit
= p
->item
;
617 unsigned flags
= commit
->object
.flags
;
618 if (flags
& BOUNDARY
)
620 else if (flags
& SYMMETRIC_LEFT
)
626 if (!left_count
|| !right_count
)
629 left_first
= left_count
< right_count
;
630 init_patch_ids(&ids
);
631 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
633 /* Compute patch-ids for one side */
634 for (p
= list
; p
; p
= p
->next
) {
635 struct commit
*commit
= p
->item
;
636 unsigned flags
= commit
->object
.flags
;
638 if (flags
& BOUNDARY
)
641 * If we have fewer left, left_first is set and we omit
642 * commits on the right branch in this loop. If we have
643 * fewer right, we skip the left ones.
645 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
647 commit
->util
= add_commit_patch_id(commit
, &ids
);
650 /* either cherry_mark or cherry_pick are true */
651 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
653 /* Check the other side */
654 for (p
= list
; p
; p
= p
->next
) {
655 struct commit
*commit
= p
->item
;
657 unsigned flags
= commit
->object
.flags
;
659 if (flags
& BOUNDARY
)
662 * If we have fewer left, left_first is set and we omit
663 * commits on the left branch in this loop.
665 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
669 * Have we seen the same patch id?
671 id
= has_commit_patch_id(commit
, &ids
);
675 commit
->object
.flags
|= cherry_flag
;
678 /* Now check the original side for seen ones */
679 for (p
= list
; p
; p
= p
->next
) {
680 struct commit
*commit
= p
->item
;
681 struct patch_id
*ent
;
687 commit
->object
.flags
|= cherry_flag
;
691 free_patch_ids(&ids
);
694 /* How many extra uninteresting commits we want to see.. */
697 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
700 * No source list at all? We're definitely done..
706 * Does the destination list contain entries with a date
707 * before the source list? Definitely _not_ done.
709 if (date
< src
->item
->date
)
713 * Does the source list still have interesting commits in
714 * it? Definitely not done..
716 if (!everybody_uninteresting(src
))
719 /* Ok, we're closing in.. */
724 * "rev-list --ancestry-path A..B" computes commits that are ancestors
725 * of B but not ancestors of A but further limits the result to those
726 * that are descendants of A. This takes the list of bottom commits and
727 * the result of "A..B" without --ancestry-path, and limits the latter
728 * further to the ones that can reach one of the commits in "bottom".
730 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
732 struct commit_list
*p
;
733 struct commit_list
*rlist
= NULL
;
737 * Reverse the list so that it will be likely that we would
738 * process parents before children.
740 for (p
= list
; p
; p
= p
->next
)
741 commit_list_insert(p
->item
, &rlist
);
743 for (p
= bottom
; p
; p
= p
->next
)
744 p
->item
->object
.flags
|= TMP_MARK
;
747 * Mark the ones that can reach bottom commits in "list",
748 * in a bottom-up fashion.
752 for (p
= rlist
; p
; p
= p
->next
) {
753 struct commit
*c
= p
->item
;
754 struct commit_list
*parents
;
755 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
757 for (parents
= c
->parents
;
759 parents
= parents
->next
) {
760 if (!(parents
->item
->object
.flags
& TMP_MARK
))
762 c
->object
.flags
|= TMP_MARK
;
767 } while (made_progress
);
770 * NEEDSWORK: decide if we want to remove parents that are
771 * not marked with TMP_MARK from commit->parents for commits
772 * in the resulting list. We may not want to do that, though.
776 * The ones that are not marked with TMP_MARK are uninteresting
778 for (p
= list
; p
; p
= p
->next
) {
779 struct commit
*c
= p
->item
;
780 if (c
->object
.flags
& TMP_MARK
)
782 c
->object
.flags
|= UNINTERESTING
;
785 /* We are done with the TMP_MARK */
786 for (p
= list
; p
; p
= p
->next
)
787 p
->item
->object
.flags
&= ~TMP_MARK
;
788 for (p
= bottom
; p
; p
= p
->next
)
789 p
->item
->object
.flags
&= ~TMP_MARK
;
790 free_commit_list(rlist
);
794 * Before walking the history, keep the set of "negative" refs the
795 * caller has asked to exclude.
797 * This is used to compute "rev-list --ancestry-path A..B", as we need
798 * to filter the result of "A..B" further to the ones that can actually
801 static struct commit_list
*collect_bottom_commits(struct rev_info
*revs
)
803 struct commit_list
*bottom
= NULL
;
805 for (i
= 0; i
< revs
->cmdline
.nr
; i
++) {
806 struct rev_cmdline_entry
*elem
= &revs
->cmdline
.rev
[i
];
807 if ((elem
->flags
& UNINTERESTING
) &&
808 elem
->item
->type
== OBJ_COMMIT
)
809 commit_list_insert((struct commit
*)elem
->item
, &bottom
);
814 /* Assumes either left_only or right_only is set */
815 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
817 struct commit_list
*p
;
819 for (p
= list
; p
; p
= p
->next
) {
820 struct commit
*commit
= p
->item
;
822 if (revs
->right_only
) {
823 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
824 commit
->object
.flags
|= SHOWN
;
825 } else /* revs->left_only is set */
826 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
827 commit
->object
.flags
|= SHOWN
;
831 static int limit_list(struct rev_info
*revs
)
834 unsigned long date
= ~0ul;
835 struct commit_list
*list
= revs
->commits
;
836 struct commit_list
*newlist
= NULL
;
837 struct commit_list
**p
= &newlist
;
838 struct commit_list
*bottom
= NULL
;
840 if (revs
->ancestry_path
) {
841 bottom
= collect_bottom_commits(revs
);
843 die("--ancestry-path given but there are no bottom commits");
847 struct commit_list
*entry
= list
;
848 struct commit
*commit
= list
->item
;
849 struct object
*obj
= &commit
->object
;
850 show_early_output_fn_t show
;
855 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
856 obj
->flags
|= UNINTERESTING
;
857 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
859 if (obj
->flags
& UNINTERESTING
) {
860 mark_parents_uninteresting(commit
);
862 p
= &commit_list_insert(commit
, p
)->next
;
863 slop
= still_interesting(list
, date
, slop
);
866 /* If showing all, add the whole pending list to the end */
871 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
874 p
= &commit_list_insert(commit
, p
)->next
;
876 show
= show_early_output
;
881 show_early_output
= NULL
;
883 if (revs
->cherry_pick
|| revs
->cherry_mark
)
884 cherry_pick_list(newlist
, revs
);
886 if (revs
->left_only
|| revs
->right_only
)
887 limit_left_right(newlist
, revs
);
890 limit_to_ancestry(bottom
, newlist
);
891 free_commit_list(bottom
);
894 revs
->commits
= newlist
;
898 static void add_rev_cmdline(struct rev_info
*revs
,
904 struct rev_cmdline_info
*info
= &revs
->cmdline
;
907 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
908 info
->rev
[nr
].item
= item
;
909 info
->rev
[nr
].name
= name
;
910 info
->rev
[nr
].whence
= whence
;
911 info
->rev
[nr
].flags
= flags
;
917 int warned_bad_reflog
;
918 struct rev_info
*all_revs
;
919 const char *name_for_errormsg
;
922 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
924 struct all_refs_cb
*cb
= cb_data
;
925 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
927 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
928 add_pending_sha1(cb
->all_revs
, path
, sha1
, cb
->all_flags
);
932 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
936 cb
->all_flags
= flags
;
939 static void handle_refs(const char *submodule
, struct rev_info
*revs
, unsigned flags
,
940 int (*for_each
)(const char *, each_ref_fn
, void *))
942 struct all_refs_cb cb
;
943 init_all_refs_cb(&cb
, revs
, flags
);
944 for_each(submodule
, handle_one_ref
, &cb
);
947 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
949 struct all_refs_cb
*cb
= cb_data
;
950 if (!is_null_sha1(sha1
)) {
951 struct object
*o
= parse_object(sha1
);
953 o
->flags
|= cb
->all_flags
;
954 /* ??? CMDLINEFLAGS ??? */
955 add_pending_object(cb
->all_revs
, o
, "");
957 else if (!cb
->warned_bad_reflog
) {
958 warning("reflog of '%s' references pruned commits",
959 cb
->name_for_errormsg
);
960 cb
->warned_bad_reflog
= 1;
965 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
966 const char *email
, unsigned long timestamp
, int tz
,
967 const char *message
, void *cb_data
)
969 handle_one_reflog_commit(osha1
, cb_data
);
970 handle_one_reflog_commit(nsha1
, cb_data
);
974 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
976 struct all_refs_cb
*cb
= cb_data
;
977 cb
->warned_bad_reflog
= 0;
978 cb
->name_for_errormsg
= path
;
979 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
983 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
985 struct all_refs_cb cb
;
987 cb
.all_flags
= flags
;
988 for_each_reflog(handle_one_reflog
, &cb
);
991 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
)
993 unsigned char sha1
[20];
995 struct commit
*commit
;
996 struct commit_list
*parents
;
997 const char *arg
= arg_
;
1000 flags
^= UNINTERESTING
;
1003 if (get_sha1(arg
, sha1
))
1006 it
= get_reference(revs
, arg
, sha1
, 0);
1007 if (!it
&& revs
->ignore_missing
)
1009 if (it
->type
!= OBJ_TAG
)
1011 if (!((struct tag
*)it
)->tagged
)
1013 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
1015 if (it
->type
!= OBJ_COMMIT
)
1017 commit
= (struct commit
*)it
;
1018 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
1019 it
= &parents
->item
->object
;
1021 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1022 add_pending_object(revs
, it
, arg
);
1027 void init_revisions(struct rev_info
*revs
, const char *prefix
)
1029 memset(revs
, 0, sizeof(*revs
));
1031 revs
->abbrev
= DEFAULT_ABBREV
;
1032 revs
->ignore_merges
= 1;
1033 revs
->simplify_history
= 1;
1034 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
1035 DIFF_OPT_SET(&revs
->pruning
, QUICK
);
1036 revs
->pruning
.add_remove
= file_add_remove
;
1037 revs
->pruning
.change
= file_change
;
1040 revs
->prefix
= prefix
;
1043 revs
->skip_count
= -1;
1044 revs
->max_count
= -1;
1045 revs
->max_parents
= -1;
1047 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1049 revs
->grep_filter
.status_only
= 1;
1050 revs
->grep_filter
.pattern_tail
= &(revs
->grep_filter
.pattern_list
);
1051 revs
->grep_filter
.header_tail
= &(revs
->grep_filter
.header_list
);
1052 revs
->grep_filter
.regflags
= REG_NEWLINE
;
1054 diff_setup(&revs
->diffopt
);
1055 if (prefix
&& !revs
->diffopt
.prefix
) {
1056 revs
->diffopt
.prefix
= prefix
;
1057 revs
->diffopt
.prefix_length
= strlen(prefix
);
1060 revs
->notes_opt
.use_default_notes
= -1;
1063 static void add_pending_commit_list(struct rev_info
*revs
,
1064 struct commit_list
*commit_list
,
1067 while (commit_list
) {
1068 struct object
*object
= &commit_list
->item
->object
;
1069 object
->flags
|= flags
;
1070 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
1071 commit_list
= commit_list
->next
;
1075 static void prepare_show_merge(struct rev_info
*revs
)
1077 struct commit_list
*bases
;
1078 struct commit
*head
, *other
;
1079 unsigned char sha1
[20];
1080 const char **prune
= NULL
;
1081 int i
, prune_num
= 1; /* counting terminating NULL */
1083 if (get_sha1("HEAD", sha1
))
1084 die("--merge without HEAD?");
1085 head
= lookup_commit_or_die(sha1
, "HEAD");
1086 if (get_sha1("MERGE_HEAD", sha1
))
1087 die("--merge without MERGE_HEAD?");
1088 other
= lookup_commit_or_die(sha1
, "MERGE_HEAD");
1089 add_pending_object(revs
, &head
->object
, "HEAD");
1090 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1091 bases
= get_merge_bases(head
, other
, 1);
1092 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
1093 free_commit_list(bases
);
1094 head
->object
.flags
|= SYMMETRIC_LEFT
;
1098 for (i
= 0; i
< active_nr
; i
++) {
1099 struct cache_entry
*ce
= active_cache
[i
];
1102 if (ce_path_match(ce
, &revs
->prune_data
)) {
1104 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
1105 prune
[prune_num
-2] = ce
->name
;
1106 prune
[prune_num
-1] = NULL
;
1108 while ((i
+1 < active_nr
) &&
1109 ce_same_name(ce
, active_cache
[i
+1]))
1112 free_pathspec(&revs
->prune_data
);
1113 init_pathspec(&revs
->prune_data
, prune
);
1117 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
,
1119 int cant_be_filename
)
1123 struct object
*object
;
1124 unsigned char sha1
[20];
1126 const char *arg
= arg_
;
1128 dotdot
= strstr(arg
, "..");
1130 unsigned char from_sha1
[20];
1131 const char *next
= dotdot
+ 2;
1132 const char *this = arg
;
1133 int symmetric
= *next
== '.';
1134 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
1135 unsigned int a_flags
;
1144 if (!get_sha1(this, from_sha1
) &&
1145 !get_sha1(next
, sha1
)) {
1146 struct commit
*a
, *b
;
1147 struct commit_list
*exclude
;
1149 a
= lookup_commit_reference(from_sha1
);
1150 b
= lookup_commit_reference(sha1
);
1152 if (revs
->ignore_missing
)
1155 "Invalid symmetric difference expression %s...%s" :
1156 "Invalid revision range %s..%s",
1160 if (!cant_be_filename
) {
1162 verify_non_filename(revs
->prefix
, arg
);
1166 exclude
= get_merge_bases(a
, b
, 1);
1167 add_pending_commit_list(revs
, exclude
,
1169 free_commit_list(exclude
);
1170 a_flags
= flags
| SYMMETRIC_LEFT
;
1172 a_flags
= flags_exclude
;
1173 a
->object
.flags
|= a_flags
;
1174 b
->object
.flags
|= flags
;
1175 add_rev_cmdline(revs
, &a
->object
, this,
1176 REV_CMD_LEFT
, a_flags
);
1177 add_rev_cmdline(revs
, &b
->object
, next
,
1178 REV_CMD_RIGHT
, flags
);
1179 add_pending_object(revs
, &a
->object
, this);
1180 add_pending_object(revs
, &b
->object
, next
);
1185 dotdot
= strstr(arg
, "^@");
1186 if (dotdot
&& !dotdot
[2]) {
1188 if (add_parents_only(revs
, arg
, flags
))
1192 dotdot
= strstr(arg
, "^!");
1193 if (dotdot
&& !dotdot
[2]) {
1195 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
1201 local_flags
= UNINTERESTING
;
1204 if (get_sha1_with_mode(arg
, sha1
, &mode
))
1205 return revs
->ignore_missing
? 0 : -1;
1206 if (!cant_be_filename
)
1207 verify_non_filename(revs
->prefix
, arg
);
1208 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
1209 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
1210 add_pending_object_with_mode(revs
, object
, arg
, mode
);
1214 struct cmdline_pathspec
{
1220 static void append_prune_data(struct cmdline_pathspec
*prune
, const char **av
)
1223 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1224 prune
->path
[prune
->nr
++] = *(av
++);
1228 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
,
1229 struct cmdline_pathspec
*prune
)
1231 while (strbuf_getwholeline(sb
, stdin
, '\n') != EOF
) {
1233 if (len
&& sb
->buf
[len
- 1] == '\n')
1234 sb
->buf
[--len
] = '\0';
1235 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1236 prune
->path
[prune
->nr
++] = xstrdup(sb
->buf
);
1240 static void read_revisions_from_stdin(struct rev_info
*revs
,
1241 struct cmdline_pathspec
*prune
)
1244 int seen_dashdash
= 0;
1246 strbuf_init(&sb
, 1000);
1247 while (strbuf_getwholeline(&sb
, stdin
, '\n') != EOF
) {
1249 if (len
&& sb
.buf
[len
- 1] == '\n')
1250 sb
.buf
[--len
] = '\0';
1253 if (sb
.buf
[0] == '-') {
1254 if (len
== 2 && sb
.buf
[1] == '-') {
1258 die("options not supported in --stdin mode");
1260 if (handle_revision_arg(sb
.buf
, revs
, 0, 1))
1261 die("bad revision '%s'", sb
.buf
);
1264 read_pathspec_from_stdin(revs
, &sb
, prune
);
1265 strbuf_release(&sb
);
1268 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1270 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1273 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1275 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1278 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1280 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1283 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1284 int *unkc
, const char **unkv
)
1286 const char *arg
= argv
[0];
1290 /* pseudo revision arguments */
1291 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1292 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1293 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1294 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1295 !strcmp(arg
, "--bisect") || !prefixcmp(arg
, "--glob=") ||
1296 !prefixcmp(arg
, "--branches=") || !prefixcmp(arg
, "--tags=") ||
1297 !prefixcmp(arg
, "--remotes="))
1299 unkv
[(*unkc
)++] = arg
;
1303 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
1304 revs
->max_count
= atoi(optarg
);
1307 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
1308 revs
->skip_count
= atoi(optarg
);
1310 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1311 /* accept -<digit>, like traditional "head" */
1312 revs
->max_count
= atoi(arg
+ 1);
1314 } else if (!strcmp(arg
, "-n")) {
1316 return error("-n requires an argument");
1317 revs
->max_count
= atoi(argv
[1]);
1320 } else if (!prefixcmp(arg
, "-n")) {
1321 revs
->max_count
= atoi(arg
+ 2);
1323 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
1324 revs
->max_age
= atoi(optarg
);
1326 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
1327 revs
->max_age
= approxidate(optarg
);
1329 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
1330 revs
->max_age
= approxidate(optarg
);
1332 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
1333 revs
->min_age
= atoi(optarg
);
1335 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
1336 revs
->min_age
= approxidate(optarg
);
1338 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
1339 revs
->min_age
= approxidate(optarg
);
1341 } else if (!strcmp(arg
, "--first-parent")) {
1342 revs
->first_parent_only
= 1;
1343 } else if (!strcmp(arg
, "--ancestry-path")) {
1344 revs
->ancestry_path
= 1;
1345 revs
->simplify_history
= 0;
1347 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1348 init_reflog_walk(&revs
->reflog_info
);
1349 } else if (!strcmp(arg
, "--default")) {
1351 return error("bad --default argument");
1352 revs
->def
= argv
[1];
1354 } else if (!strcmp(arg
, "--merge")) {
1355 revs
->show_merge
= 1;
1356 } else if (!strcmp(arg
, "--topo-order")) {
1358 revs
->topo_order
= 1;
1359 } else if (!strcmp(arg
, "--simplify-merges")) {
1360 revs
->simplify_merges
= 1;
1361 revs
->rewrite_parents
= 1;
1362 revs
->simplify_history
= 0;
1364 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1365 revs
->simplify_merges
= 1;
1366 revs
->rewrite_parents
= 1;
1367 revs
->simplify_history
= 0;
1368 revs
->simplify_by_decoration
= 1;
1371 load_ref_decorations(DECORATE_SHORT_REFS
);
1372 } else if (!strcmp(arg
, "--date-order")) {
1374 revs
->topo_order
= 1;
1375 } else if (!prefixcmp(arg
, "--early-output")) {
1379 count
= atoi(arg
+15);
1382 revs
->topo_order
= 1;
1383 revs
->early_output
= count
;
1385 } else if (!strcmp(arg
, "--parents")) {
1386 revs
->rewrite_parents
= 1;
1387 revs
->print_parents
= 1;
1388 } else if (!strcmp(arg
, "--dense")) {
1390 } else if (!strcmp(arg
, "--sparse")) {
1392 } else if (!strcmp(arg
, "--show-all")) {
1394 } else if (!strcmp(arg
, "--remove-empty")) {
1395 revs
->remove_empty_trees
= 1;
1396 } else if (!strcmp(arg
, "--merges")) {
1397 revs
->min_parents
= 2;
1398 } else if (!strcmp(arg
, "--no-merges")) {
1399 revs
->max_parents
= 1;
1400 } else if (!prefixcmp(arg
, "--min-parents=")) {
1401 revs
->min_parents
= atoi(arg
+14);
1402 } else if (!prefixcmp(arg
, "--no-min-parents")) {
1403 revs
->min_parents
= 0;
1404 } else if (!prefixcmp(arg
, "--max-parents=")) {
1405 revs
->max_parents
= atoi(arg
+14);
1406 } else if (!prefixcmp(arg
, "--no-max-parents")) {
1407 revs
->max_parents
= -1;
1408 } else if (!strcmp(arg
, "--boundary")) {
1410 } else if (!strcmp(arg
, "--left-right")) {
1411 revs
->left_right
= 1;
1412 } else if (!strcmp(arg
, "--left-only")) {
1413 if (revs
->right_only
)
1414 die("--left-only is incompatible with --right-only"
1416 revs
->left_only
= 1;
1417 } else if (!strcmp(arg
, "--right-only")) {
1418 if (revs
->left_only
)
1419 die("--right-only is incompatible with --left-only");
1420 revs
->right_only
= 1;
1421 } else if (!strcmp(arg
, "--cherry")) {
1422 if (revs
->left_only
)
1423 die("--cherry is incompatible with --left-only");
1424 revs
->cherry_mark
= 1;
1425 revs
->right_only
= 1;
1426 revs
->max_parents
= 1;
1428 } else if (!strcmp(arg
, "--count")) {
1430 } else if (!strcmp(arg
, "--cherry-mark")) {
1431 if (revs
->cherry_pick
)
1432 die("--cherry-mark is incompatible with --cherry-pick");
1433 revs
->cherry_mark
= 1;
1434 revs
->limited
= 1; /* needs limit_list() */
1435 } else if (!strcmp(arg
, "--cherry-pick")) {
1436 if (revs
->cherry_mark
)
1437 die("--cherry-pick is incompatible with --cherry-mark");
1438 revs
->cherry_pick
= 1;
1440 } else if (!strcmp(arg
, "--objects")) {
1441 revs
->tag_objects
= 1;
1442 revs
->tree_objects
= 1;
1443 revs
->blob_objects
= 1;
1444 } else if (!strcmp(arg
, "--objects-edge")) {
1445 revs
->tag_objects
= 1;
1446 revs
->tree_objects
= 1;
1447 revs
->blob_objects
= 1;
1448 revs
->edge_hint
= 1;
1449 } else if (!strcmp(arg
, "--verify-objects")) {
1450 revs
->tag_objects
= 1;
1451 revs
->tree_objects
= 1;
1452 revs
->blob_objects
= 1;
1453 revs
->verify_objects
= 1;
1454 } else if (!strcmp(arg
, "--unpacked")) {
1456 } else if (!prefixcmp(arg
, "--unpacked=")) {
1457 die("--unpacked=<packfile> no longer supported.");
1458 } else if (!strcmp(arg
, "-r")) {
1460 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1461 } else if (!strcmp(arg
, "-t")) {
1463 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1464 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1465 } else if (!strcmp(arg
, "-m")) {
1466 revs
->ignore_merges
= 0;
1467 } else if (!strcmp(arg
, "-c")) {
1469 revs
->dense_combined_merges
= 0;
1470 revs
->combine_merges
= 1;
1471 } else if (!strcmp(arg
, "--cc")) {
1473 revs
->dense_combined_merges
= 1;
1474 revs
->combine_merges
= 1;
1475 } else if (!strcmp(arg
, "-v")) {
1476 revs
->verbose_header
= 1;
1477 } else if (!strcmp(arg
, "--pretty")) {
1478 revs
->verbose_header
= 1;
1479 revs
->pretty_given
= 1;
1480 get_commit_format(arg
+8, revs
);
1481 } else if (!prefixcmp(arg
, "--pretty=") || !prefixcmp(arg
, "--format=")) {
1483 * Detached form ("--pretty X" as opposed to "--pretty=X")
1484 * not allowed, since the argument is optional.
1486 revs
->verbose_header
= 1;
1487 revs
->pretty_given
= 1;
1488 get_commit_format(arg
+9, revs
);
1489 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
1490 revs
->show_notes
= 1;
1491 revs
->show_notes_given
= 1;
1492 revs
->notes_opt
.use_default_notes
= 1;
1493 } else if (!strcmp(arg
, "--show-signature")) {
1494 revs
->show_signature
= 1;
1495 } else if (!prefixcmp(arg
, "--show-notes=") ||
1496 !prefixcmp(arg
, "--notes=")) {
1497 struct strbuf buf
= STRBUF_INIT
;
1498 revs
->show_notes
= 1;
1499 revs
->show_notes_given
= 1;
1500 if (!prefixcmp(arg
, "--show-notes")) {
1501 if (revs
->notes_opt
.use_default_notes
< 0)
1502 revs
->notes_opt
.use_default_notes
= 1;
1503 strbuf_addstr(&buf
, arg
+13);
1506 strbuf_addstr(&buf
, arg
+8);
1507 expand_notes_ref(&buf
);
1508 string_list_append(&revs
->notes_opt
.extra_notes_refs
,
1509 strbuf_detach(&buf
, NULL
));
1510 } else if (!strcmp(arg
, "--no-notes")) {
1511 revs
->show_notes
= 0;
1512 revs
->show_notes_given
= 1;
1513 revs
->notes_opt
.use_default_notes
= -1;
1514 /* we have been strdup'ing ourselves, so trick
1515 * string_list into free()ing strings */
1516 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 1;
1517 string_list_clear(&revs
->notes_opt
.extra_notes_refs
, 0);
1518 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 0;
1519 } else if (!strcmp(arg
, "--standard-notes")) {
1520 revs
->show_notes_given
= 1;
1521 revs
->notes_opt
.use_default_notes
= 1;
1522 } else if (!strcmp(arg
, "--no-standard-notes")) {
1523 revs
->notes_opt
.use_default_notes
= 0;
1524 } else if (!strcmp(arg
, "--oneline")) {
1525 revs
->verbose_header
= 1;
1526 get_commit_format("oneline", revs
);
1527 revs
->pretty_given
= 1;
1528 revs
->abbrev_commit
= 1;
1529 } else if (!strcmp(arg
, "--graph")) {
1530 revs
->topo_order
= 1;
1531 revs
->rewrite_parents
= 1;
1532 revs
->graph
= graph_init(revs
);
1533 } else if (!strcmp(arg
, "--root")) {
1534 revs
->show_root_diff
= 1;
1535 } else if (!strcmp(arg
, "--no-commit-id")) {
1536 revs
->no_commit_id
= 1;
1537 } else if (!strcmp(arg
, "--always")) {
1538 revs
->always_show_header
= 1;
1539 } else if (!strcmp(arg
, "--no-abbrev")) {
1541 } else if (!strcmp(arg
, "--abbrev")) {
1542 revs
->abbrev
= DEFAULT_ABBREV
;
1543 } else if (!prefixcmp(arg
, "--abbrev=")) {
1544 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1545 if (revs
->abbrev
< MINIMUM_ABBREV
)
1546 revs
->abbrev
= MINIMUM_ABBREV
;
1547 else if (revs
->abbrev
> 40)
1549 } else if (!strcmp(arg
, "--abbrev-commit")) {
1550 revs
->abbrev_commit
= 1;
1551 revs
->abbrev_commit_given
= 1;
1552 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
1553 revs
->abbrev_commit
= 0;
1554 } else if (!strcmp(arg
, "--full-diff")) {
1556 revs
->full_diff
= 1;
1557 } else if (!strcmp(arg
, "--full-history")) {
1558 revs
->simplify_history
= 0;
1559 } else if (!strcmp(arg
, "--relative-date")) {
1560 revs
->date_mode
= DATE_RELATIVE
;
1561 revs
->date_mode_explicit
= 1;
1562 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
1563 revs
->date_mode
= parse_date_format(optarg
);
1564 revs
->date_mode_explicit
= 1;
1566 } else if (!strcmp(arg
, "--log-size")) {
1567 revs
->show_log_size
= 1;
1570 * Grepping the commit log
1572 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
1573 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
1575 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
1576 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
1578 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
1579 add_message_grep(revs
, optarg
);
1581 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1582 revs
->grep_filter
.regflags
|= REG_EXTENDED
;
1583 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1584 revs
->grep_filter
.regflags
|= REG_ICASE
;
1585 DIFF_OPT_SET(&revs
->diffopt
, PICKAXE_IGNORE_CASE
);
1586 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1587 revs
->grep_filter
.fixed
= 1;
1588 } else if (!strcmp(arg
, "--all-match")) {
1589 revs
->grep_filter
.all_match
= 1;
1590 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
1591 if (strcmp(optarg
, "none"))
1592 git_log_output_encoding
= xstrdup(optarg
);
1594 git_log_output_encoding
= "";
1596 } else if (!strcmp(arg
, "--reverse")) {
1598 } else if (!strcmp(arg
, "--children")) {
1599 revs
->children
.name
= "children";
1601 } else if (!strcmp(arg
, "--ignore-missing")) {
1602 revs
->ignore_missing
= 1;
1604 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1606 unkv
[(*unkc
)++] = arg
;
1613 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1614 const struct option
*options
,
1615 const char * const usagestr
[])
1617 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1618 &ctx
->cpidx
, ctx
->out
);
1620 error("unknown option `%s'", ctx
->argv
[0]);
1621 usage_with_options(usagestr
, options
);
1627 static int for_each_bad_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1629 return for_each_ref_in_submodule(submodule
, "refs/bisect/bad", fn
, cb_data
);
1632 static int for_each_good_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1634 return for_each_ref_in_submodule(submodule
, "refs/bisect/good", fn
, cb_data
);
1637 static int handle_revision_pseudo_opt(const char *submodule
,
1638 struct rev_info
*revs
,
1639 int argc
, const char **argv
, int *flags
)
1641 const char *arg
= argv
[0];
1648 * Commands like "git shortlog" will not accept the options below
1649 * unless parse_revision_opt queues them (as opposed to erroring
1652 * When implementing your new pseudo-option, remember to
1653 * register it in the list at the top of handle_revision_opt.
1655 if (!strcmp(arg
, "--all")) {
1656 handle_refs(submodule
, revs
, *flags
, for_each_ref_submodule
);
1657 handle_refs(submodule
, revs
, *flags
, head_ref_submodule
);
1658 } else if (!strcmp(arg
, "--branches")) {
1659 handle_refs(submodule
, revs
, *flags
, for_each_branch_ref_submodule
);
1660 } else if (!strcmp(arg
, "--bisect")) {
1661 handle_refs(submodule
, revs
, *flags
, for_each_bad_bisect_ref
);
1662 handle_refs(submodule
, revs
, *flags
^ UNINTERESTING
, for_each_good_bisect_ref
);
1664 } else if (!strcmp(arg
, "--tags")) {
1665 handle_refs(submodule
, revs
, *flags
, for_each_tag_ref_submodule
);
1666 } else if (!strcmp(arg
, "--remotes")) {
1667 handle_refs(submodule
, revs
, *flags
, for_each_remote_ref_submodule
);
1668 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
1669 struct all_refs_cb cb
;
1670 init_all_refs_cb(&cb
, revs
, *flags
);
1671 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
1673 } else if (!prefixcmp(arg
, "--branches=")) {
1674 struct all_refs_cb cb
;
1675 init_all_refs_cb(&cb
, revs
, *flags
);
1676 for_each_glob_ref_in(handle_one_ref
, arg
+ 11, "refs/heads/", &cb
);
1677 } else if (!prefixcmp(arg
, "--tags=")) {
1678 struct all_refs_cb cb
;
1679 init_all_refs_cb(&cb
, revs
, *flags
);
1680 for_each_glob_ref_in(handle_one_ref
, arg
+ 7, "refs/tags/", &cb
);
1681 } else if (!prefixcmp(arg
, "--remotes=")) {
1682 struct all_refs_cb cb
;
1683 init_all_refs_cb(&cb
, revs
, *flags
);
1684 for_each_glob_ref_in(handle_one_ref
, arg
+ 10, "refs/remotes/", &cb
);
1685 } else if (!strcmp(arg
, "--reflog")) {
1686 handle_reflog(revs
, *flags
);
1687 } else if (!strcmp(arg
, "--not")) {
1688 *flags
^= UNINTERESTING
;
1689 } else if (!strcmp(arg
, "--no-walk")) {
1691 } else if (!strcmp(arg
, "--do-walk")) {
1701 * Parse revision information, filling in the "rev_info" structure,
1702 * and removing the used arguments from the argument list.
1704 * Returns the number of arguments left that weren't recognized
1705 * (which are also moved to the head of the argument list)
1707 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
1709 int i
, flags
, left
, seen_dashdash
, read_from_stdin
, got_rev_arg
= 0;
1710 struct cmdline_pathspec prune_data
;
1711 const char *submodule
= NULL
;
1713 memset(&prune_data
, 0, sizeof(prune_data
));
1715 submodule
= opt
->submodule
;
1717 /* First, search for "--" */
1718 if (opt
&& opt
->assume_dashdash
) {
1722 for (i
= 1; i
< argc
; i
++) {
1723 const char *arg
= argv
[i
];
1724 if (strcmp(arg
, "--"))
1729 append_prune_data(&prune_data
, argv
+ i
+ 1);
1735 /* Second, deal with arguments and options */
1737 read_from_stdin
= 0;
1738 for (left
= i
= 1; i
< argc
; i
++) {
1739 const char *arg
= argv
[i
];
1743 opts
= handle_revision_pseudo_opt(submodule
,
1744 revs
, argc
- i
, argv
+ i
,
1751 if (!strcmp(arg
, "--stdin")) {
1752 if (revs
->disable_stdin
) {
1756 if (read_from_stdin
++)
1757 die("--stdin given twice?");
1758 read_revisions_from_stdin(revs
, &prune_data
);
1762 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1772 if (handle_revision_arg(arg
, revs
, flags
, seen_dashdash
)) {
1774 if (seen_dashdash
|| *arg
== '^')
1775 die("bad revision '%s'", arg
);
1777 /* If we didn't have a "--":
1778 * (1) all filenames must exist;
1779 * (2) all rev-args must not be interpretable
1780 * as a valid filename.
1781 * but the latter we have checked in the main loop.
1783 for (j
= i
; j
< argc
; j
++)
1784 verify_filename(revs
->prefix
, argv
[j
]);
1786 append_prune_data(&prune_data
, argv
+ i
);
1793 if (prune_data
.nr
) {
1795 * If we need to introduce the magic "a lone ':' means no
1796 * pathspec whatsoever", here is the place to do so.
1798 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1799 * prune_data.nr = 0;
1800 * prune_data.alloc = 0;
1801 * free(prune_data.path);
1802 * prune_data.path = NULL;
1804 * terminate prune_data.alloc with NULL and
1805 * call init_pathspec() to set revs->prune_data here.
1808 ALLOC_GROW(prune_data
.path
, prune_data
.nr
+1, prune_data
.alloc
);
1809 prune_data
.path
[prune_data
.nr
++] = NULL
;
1810 init_pathspec(&revs
->prune_data
,
1811 get_pathspec(revs
->prefix
, prune_data
.path
));
1814 if (revs
->def
== NULL
)
1815 revs
->def
= opt
? opt
->def
: NULL
;
1816 if (opt
&& opt
->tweak
)
1817 opt
->tweak(revs
, opt
);
1818 if (revs
->show_merge
)
1819 prepare_show_merge(revs
);
1820 if (revs
->def
&& !revs
->pending
.nr
&& !got_rev_arg
) {
1821 unsigned char sha1
[20];
1822 struct object
*object
;
1824 if (get_sha1_with_mode(revs
->def
, sha1
, &mode
))
1825 die("bad default revision '%s'", revs
->def
);
1826 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1827 add_pending_object_with_mode(revs
, object
, revs
->def
, mode
);
1830 /* Did the user ask for any diff output? Run the diff! */
1831 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1834 /* Pickaxe, diff-filter and rename following need diffs */
1835 if (revs
->diffopt
.pickaxe
||
1836 revs
->diffopt
.filter
||
1837 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1840 if (revs
->topo_order
)
1843 if (revs
->prune_data
.nr
) {
1844 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->pruning
);
1845 /* Can't prune commits with rename following: the paths change.. */
1846 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1848 if (!revs
->full_diff
)
1849 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->diffopt
);
1851 if (revs
->combine_merges
)
1852 revs
->ignore_merges
= 0;
1853 revs
->diffopt
.abbrev
= revs
->abbrev
;
1854 if (diff_setup_done(&revs
->diffopt
) < 0)
1855 die("diff_setup_done failed");
1857 compile_grep_patterns(&revs
->grep_filter
);
1859 if (revs
->reverse
&& revs
->reflog_info
)
1860 die("cannot combine --reverse with --walk-reflogs");
1861 if (revs
->rewrite_parents
&& revs
->children
.name
)
1862 die("cannot combine --parents and --children");
1865 * Limitations on the graph functionality
1867 if (revs
->reverse
&& revs
->graph
)
1868 die("cannot combine --reverse with --graph");
1870 if (revs
->reflog_info
&& revs
->graph
)
1871 die("cannot combine --walk-reflogs with --graph");
1876 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1878 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1881 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1884 static int remove_duplicate_parents(struct commit
*commit
)
1886 struct commit_list
**pp
, *p
;
1887 int surviving_parents
;
1889 /* Examine existing parents while marking ones we have seen... */
1890 pp
= &commit
->parents
;
1891 while ((p
= *pp
) != NULL
) {
1892 struct commit
*parent
= p
->item
;
1893 if (parent
->object
.flags
& TMP_MARK
) {
1897 parent
->object
.flags
|= TMP_MARK
;
1900 /* count them while clearing the temporary mark */
1901 surviving_parents
= 0;
1902 for (p
= commit
->parents
; p
; p
= p
->next
) {
1903 p
->item
->object
.flags
&= ~TMP_MARK
;
1904 surviving_parents
++;
1906 return surviving_parents
;
1909 struct merge_simplify_state
{
1910 struct commit
*simplified
;
1913 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1915 struct merge_simplify_state
*st
;
1917 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1919 st
= xcalloc(1, sizeof(*st
));
1920 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1925 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1927 struct commit_list
*p
;
1928 struct merge_simplify_state
*st
, *pst
;
1931 st
= locate_simplify_state(revs
, commit
);
1934 * Have we handled this one?
1940 * An UNINTERESTING commit simplifies to itself, so does a
1941 * root commit. We do not rewrite parents of such commit
1944 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
1945 st
->simplified
= commit
;
1950 * Do we know what commit all of our parents should be rewritten to?
1951 * Otherwise we are not ready to rewrite this one yet.
1953 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
1954 pst
= locate_simplify_state(revs
, p
->item
);
1955 if (!pst
->simplified
) {
1956 tail
= &commit_list_insert(p
->item
, tail
)->next
;
1961 tail
= &commit_list_insert(commit
, tail
)->next
;
1966 * Rewrite our list of parents.
1968 for (p
= commit
->parents
; p
; p
= p
->next
) {
1969 pst
= locate_simplify_state(revs
, p
->item
);
1970 p
->item
= pst
->simplified
;
1972 cnt
= remove_duplicate_parents(commit
);
1975 * It is possible that we are a merge and one side branch
1976 * does not have any commit that touches the given paths;
1977 * in such a case, the immediate parents will be rewritten
1978 * to different commits.
1980 * o----X X: the commit we are looking at;
1981 * / / o: a commit that touches the paths;
1984 * Further reduce the parents by removing redundant parents.
1987 struct commit_list
*h
= reduce_heads(commit
->parents
);
1988 cnt
= commit_list_count(h
);
1989 free_commit_list(commit
->parents
);
1990 commit
->parents
= h
;
1994 * A commit simplifies to itself if it is a root, if it is
1995 * UNINTERESTING, if it touches the given paths, or if it is a
1996 * merge and its parents simplifies to more than one commits
1997 * (the first two cases are already handled at the beginning of
2000 * Otherwise, it simplifies to what its sole parent simplifies to.
2003 (commit
->object
.flags
& UNINTERESTING
) ||
2004 !(commit
->object
.flags
& TREESAME
) ||
2006 st
->simplified
= commit
;
2008 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
2009 st
->simplified
= pst
->simplified
;
2014 static void simplify_merges(struct rev_info
*revs
)
2016 struct commit_list
*list
;
2017 struct commit_list
*yet_to_do
, **tail
;
2019 if (!revs
->topo_order
)
2020 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2024 /* feed the list reversed */
2026 for (list
= revs
->commits
; list
; list
= list
->next
)
2027 commit_list_insert(list
->item
, &yet_to_do
);
2033 struct commit
*commit
= list
->item
;
2034 struct commit_list
*next
= list
->next
;
2037 tail
= simplify_one(revs
, commit
, tail
);
2041 /* clean up the result, removing the simplified ones */
2042 list
= revs
->commits
;
2043 revs
->commits
= NULL
;
2044 tail
= &revs
->commits
;
2046 struct commit
*commit
= list
->item
;
2047 struct commit_list
*next
= list
->next
;
2048 struct merge_simplify_state
*st
;
2051 st
= locate_simplify_state(revs
, commit
);
2052 if (st
->simplified
== commit
)
2053 tail
= &commit_list_insert(commit
, tail
)->next
;
2057 static void set_children(struct rev_info
*revs
)
2059 struct commit_list
*l
;
2060 for (l
= revs
->commits
; l
; l
= l
->next
) {
2061 struct commit
*commit
= l
->item
;
2062 struct commit_list
*p
;
2064 for (p
= commit
->parents
; p
; p
= p
->next
)
2065 add_child(revs
, p
->item
, commit
);
2069 int prepare_revision_walk(struct rev_info
*revs
)
2071 int nr
= revs
->pending
.nr
;
2072 struct object_array_entry
*e
, *list
;
2074 e
= list
= revs
->pending
.objects
;
2075 revs
->pending
.nr
= 0;
2076 revs
->pending
.alloc
= 0;
2077 revs
->pending
.objects
= NULL
;
2079 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
2081 if (!(commit
->object
.flags
& SEEN
)) {
2082 commit
->object
.flags
|= SEEN
;
2083 commit_list_insert_by_date(commit
, &revs
->commits
);
2088 if (!revs
->leak_pending
)
2094 if (limit_list(revs
) < 0)
2096 if (revs
->topo_order
)
2097 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2098 if (revs
->simplify_merges
)
2099 simplify_merges(revs
);
2100 if (revs
->children
.name
)
2105 enum rewrite_result
{
2107 rewrite_one_noparents
,
2111 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
2113 struct commit_list
*cache
= NULL
;
2116 struct commit
*p
= *pp
;
2118 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
2119 return rewrite_one_error
;
2120 if (p
->parents
&& p
->parents
->next
)
2121 return rewrite_one_ok
;
2122 if (p
->object
.flags
& UNINTERESTING
)
2123 return rewrite_one_ok
;
2124 if (!(p
->object
.flags
& TREESAME
))
2125 return rewrite_one_ok
;
2127 return rewrite_one_noparents
;
2128 *pp
= p
->parents
->item
;
2132 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
2134 struct commit_list
**pp
= &commit
->parents
;
2136 struct commit_list
*parent
= *pp
;
2137 switch (rewrite_one(revs
, &parent
->item
)) {
2138 case rewrite_one_ok
:
2140 case rewrite_one_noparents
:
2143 case rewrite_one_error
:
2148 remove_duplicate_parents(commit
);
2152 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
2154 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
2156 return grep_buffer(&opt
->grep_filter
,
2157 commit
->buffer
, strlen(commit
->buffer
));
2160 static inline int want_ancestry(struct rev_info
*revs
)
2162 return (revs
->rewrite_parents
|| revs
->children
.name
);
2165 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
2167 if (commit
->object
.flags
& SHOWN
)
2168 return commit_ignore
;
2169 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
))
2170 return commit_ignore
;
2173 if (commit
->object
.flags
& UNINTERESTING
)
2174 return commit_ignore
;
2175 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
2176 return commit_ignore
;
2177 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
2179 struct commit_list
*p
;
2180 for (p
= commit
->parents
; p
; p
= p
->next
)
2182 if ((n
< revs
->min_parents
) ||
2183 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
2184 return commit_ignore
;
2186 if (!commit_match(commit
, revs
))
2187 return commit_ignore
;
2188 if (revs
->prune
&& revs
->dense
) {
2189 /* Commit without changes? */
2190 if (commit
->object
.flags
& TREESAME
) {
2191 /* drop merges unless we want parenthood */
2192 if (!want_ancestry(revs
))
2193 return commit_ignore
;
2194 /* non-merge - always ignore it */
2195 if (!commit
->parents
|| !commit
->parents
->next
)
2196 return commit_ignore
;
2202 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
2204 enum commit_action action
= get_commit_action(revs
, commit
);
2206 if (action
== commit_show
&&
2208 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
2209 if (rewrite_parents(revs
, commit
) < 0)
2210 return commit_error
;
2215 static struct commit
*get_revision_1(struct rev_info
*revs
)
2221 struct commit_list
*entry
= revs
->commits
;
2222 struct commit
*commit
= entry
->item
;
2224 revs
->commits
= entry
->next
;
2227 if (revs
->reflog_info
) {
2228 fake_reflog_parent(revs
->reflog_info
, commit
);
2229 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
2233 * If we haven't done the list limiting, we need to look at
2234 * the parents here. We also need to do the date-based limiting
2235 * that we'd otherwise have done in limit_list().
2237 if (!revs
->limited
) {
2238 if (revs
->max_age
!= -1 &&
2239 (commit
->date
< revs
->max_age
))
2241 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
2242 die("Failed to traverse parents of commit %s",
2243 sha1_to_hex(commit
->object
.sha1
));
2246 switch (simplify_commit(revs
, commit
)) {
2250 die("Failed to simplify parents of commit %s",
2251 sha1_to_hex(commit
->object
.sha1
));
2255 } while (revs
->commits
);
2259 static void gc_boundary(struct object_array
*array
)
2261 unsigned nr
= array
->nr
;
2262 unsigned alloc
= array
->alloc
;
2263 struct object_array_entry
*objects
= array
->objects
;
2267 for (i
= j
= 0; i
< nr
; i
++) {
2268 if (objects
[i
].item
->flags
& SHOWN
)
2271 objects
[j
] = objects
[i
];
2274 for (i
= j
; i
< nr
; i
++)
2275 objects
[i
].item
= NULL
;
2280 static void create_boundary_commit_list(struct rev_info
*revs
)
2284 struct object_array
*array
= &revs
->boundary_commits
;
2285 struct object_array_entry
*objects
= array
->objects
;
2288 * If revs->commits is non-NULL at this point, an error occurred in
2289 * get_revision_1(). Ignore the error and continue printing the
2290 * boundary commits anyway. (This is what the code has always
2293 if (revs
->commits
) {
2294 free_commit_list(revs
->commits
);
2295 revs
->commits
= NULL
;
2299 * Put all of the actual boundary commits from revs->boundary_commits
2300 * into revs->commits
2302 for (i
= 0; i
< array
->nr
; i
++) {
2303 c
= (struct commit
*)(objects
[i
].item
);
2306 if (!(c
->object
.flags
& CHILD_SHOWN
))
2308 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
2310 c
->object
.flags
|= BOUNDARY
;
2311 commit_list_insert(c
, &revs
->commits
);
2315 * If revs->topo_order is set, sort the boundary commits
2316 * in topological order
2318 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2321 static struct commit
*get_revision_internal(struct rev_info
*revs
)
2323 struct commit
*c
= NULL
;
2324 struct commit_list
*l
;
2326 if (revs
->boundary
== 2) {
2328 * All of the normal commits have already been returned,
2329 * and we are now returning boundary commits.
2330 * create_boundary_commit_list() has populated
2331 * revs->commits with the remaining commits to return.
2333 c
= pop_commit(&revs
->commits
);
2335 c
->object
.flags
|= SHOWN
;
2340 * Now pick up what they want to give us
2342 c
= get_revision_1(revs
);
2344 while (0 < revs
->skip_count
) {
2346 c
= get_revision_1(revs
);
2353 * Check the max_count.
2355 switch (revs
->max_count
) {
2366 c
->object
.flags
|= SHOWN
;
2368 if (!revs
->boundary
) {
2374 * get_revision_1() runs out the commits, and
2375 * we are done computing the boundaries.
2376 * switch to boundary commits output mode.
2381 * Update revs->commits to contain the list of
2384 create_boundary_commit_list(revs
);
2386 return get_revision_internal(revs
);
2390 * boundary commits are the commits that are parents of the
2391 * ones we got from get_revision_1() but they themselves are
2392 * not returned from get_revision_1(). Before returning
2393 * 'c', we need to mark its parents that they could be boundaries.
2396 for (l
= c
->parents
; l
; l
= l
->next
) {
2398 p
= &(l
->item
->object
);
2399 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
2401 p
->flags
|= CHILD_SHOWN
;
2402 gc_boundary(&revs
->boundary_commits
);
2403 add_object_array(p
, NULL
, &revs
->boundary_commits
);
2409 struct commit
*get_revision(struct rev_info
*revs
)
2412 struct commit_list
*reversed
;
2414 if (revs
->reverse
) {
2416 while ((c
= get_revision_internal(revs
))) {
2417 commit_list_insert(c
, &reversed
);
2419 revs
->commits
= reversed
;
2421 revs
->reverse_output_stage
= 1;
2424 if (revs
->reverse_output_stage
)
2425 return pop_commit(&revs
->commits
);
2427 c
= get_revision_internal(revs
);
2428 if (c
&& revs
->graph
)
2429 graph_update(revs
->graph
, c
);
2433 char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2435 if (commit
->object
.flags
& BOUNDARY
)
2437 else if (commit
->object
.flags
& UNINTERESTING
)
2439 else if (commit
->object
.flags
& PATCHSAME
)
2441 else if (!revs
|| revs
->left_right
) {
2442 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
2446 } else if (revs
->graph
)
2448 else if (revs
->cherry_mark
)
2453 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2455 char *mark
= get_revision_mark(revs
, commit
);
2458 fputs(mark
, stdout
);