11 #include "reflog-walk.h"
12 #include "patch-ids.h"
16 volatile show_early_output_fn_t show_early_output
;
18 char *path_name(const struct name_path
*path
, const char *name
)
20 const struct name_path
*p
;
22 int nlen
= strlen(name
);
25 for (p
= path
; p
; p
= p
->up
) {
27 len
+= p
->elem_len
+ 1;
30 m
= n
+ len
- (nlen
+ 1);
32 for (p
= path
; p
; p
= p
->up
) {
35 memcpy(m
, p
->elem
, p
->elem_len
);
42 void add_object(struct object
*obj
,
43 struct object_array
*p
,
44 struct name_path
*path
,
47 add_object_array(obj
, path_name(path
, name
), p
);
50 static void mark_blob_uninteresting(struct blob
*blob
)
54 if (blob
->object
.flags
& UNINTERESTING
)
56 blob
->object
.flags
|= UNINTERESTING
;
59 void mark_tree_uninteresting(struct tree
*tree
)
61 struct tree_desc desc
;
62 struct name_entry entry
;
63 struct object
*obj
= &tree
->object
;
67 if (obj
->flags
& UNINTERESTING
)
69 obj
->flags
|= UNINTERESTING
;
70 if (!has_sha1_file(obj
->sha1
))
72 if (parse_tree(tree
) < 0)
73 die("bad tree %s", sha1_to_hex(obj
->sha1
));
75 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
76 while (tree_entry(&desc
, &entry
)) {
77 switch (object_type(entry
.mode
)) {
79 mark_tree_uninteresting(lookup_tree(entry
.sha1
));
82 mark_blob_uninteresting(lookup_blob(entry
.sha1
));
85 /* Subproject commit - not in this repository */
91 * We don't care about the tree any more
92 * after it has been marked uninteresting.
98 void mark_parents_uninteresting(struct commit
*commit
)
100 struct commit_list
*parents
= commit
->parents
;
103 struct commit
*commit
= parents
->item
;
104 if (!(commit
->object
.flags
& UNINTERESTING
)) {
105 commit
->object
.flags
|= UNINTERESTING
;
108 * Normally we haven't parsed the parent
109 * yet, so we won't have a parent of a parent
110 * here. However, it may turn out that we've
111 * reached this commit some other way (where it
112 * wasn't uninteresting), in which case we need
113 * to mark its parents recursively too..
116 mark_parents_uninteresting(commit
);
120 * A missing commit is ok iff its parent is marked
123 * We just mark such a thing parsed, so that when
124 * it is popped next time around, we won't be trying
125 * to parse it and get an error.
127 if (!has_sha1_file(commit
->object
.sha1
))
128 commit
->object
.parsed
= 1;
129 parents
= parents
->next
;
133 static void add_pending_object_with_mode(struct rev_info
*revs
, struct object
*obj
, const char *name
, unsigned mode
)
135 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
137 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
&&
138 add_reflog_for_walk(revs
->reflog_info
,
139 (struct commit
*)obj
, name
))
141 add_object_array_with_mode(obj
, name
, &revs
->pending
, mode
);
144 void add_pending_object(struct rev_info
*revs
, struct object
*obj
, const char *name
)
146 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
149 void add_head_to_pending(struct rev_info
*revs
)
151 unsigned char sha1
[20];
153 if (get_sha1("HEAD", sha1
))
155 obj
= parse_object(sha1
);
158 add_pending_object(revs
, obj
, "HEAD");
161 static struct object
*get_reference(struct rev_info
*revs
, const char *name
, const unsigned char *sha1
, unsigned int flags
)
163 struct object
*object
;
165 object
= parse_object(sha1
);
167 die("bad object %s", name
);
168 object
->flags
|= flags
;
172 static struct commit
*handle_commit(struct rev_info
*revs
, struct object
*object
, const char *name
)
174 unsigned long flags
= object
->flags
;
177 * Tag object? Look what it points to..
179 while (object
->type
== OBJ_TAG
) {
180 struct tag
*tag
= (struct tag
*) object
;
181 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
182 add_pending_object(revs
, object
, tag
->tag
);
185 object
= parse_object(tag
->tagged
->sha1
);
187 if (flags
& UNINTERESTING
)
189 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
194 * Commit object? Just return it, we'll do all the complex
197 if (object
->type
== OBJ_COMMIT
) {
198 struct commit
*commit
= (struct commit
*)object
;
199 if (parse_commit(commit
) < 0)
200 die("unable to parse commit %s", name
);
201 if (flags
& UNINTERESTING
) {
202 commit
->object
.flags
|= UNINTERESTING
;
203 mark_parents_uninteresting(commit
);
206 if (revs
->show_source
&& !commit
->util
)
207 commit
->util
= (void *) name
;
212 * Tree object? Either mark it uninteresting, or add it
213 * to the list of objects to look at later..
215 if (object
->type
== OBJ_TREE
) {
216 struct tree
*tree
= (struct tree
*)object
;
217 if (!revs
->tree_objects
)
219 if (flags
& UNINTERESTING
) {
220 mark_tree_uninteresting(tree
);
223 add_pending_object(revs
, object
, "");
228 * Blob object? You know the drill by now..
230 if (object
->type
== OBJ_BLOB
) {
231 struct blob
*blob
= (struct blob
*)object
;
232 if (!revs
->blob_objects
)
234 if (flags
& UNINTERESTING
) {
235 mark_blob_uninteresting(blob
);
238 add_pending_object(revs
, object
, "");
241 die("%s is unknown object", name
);
244 static int everybody_uninteresting(struct commit_list
*orig
)
246 struct commit_list
*list
= orig
;
248 struct commit
*commit
= list
->item
;
250 if (commit
->object
.flags
& UNINTERESTING
)
258 * The goal is to get REV_TREE_NEW as the result only if the
259 * diff consists of all '+' (and no other changes), REV_TREE_OLD
260 * if the whole diff is removal of old data, and otherwise
261 * REV_TREE_DIFFERENT (of course if the trees are the same we
262 * want REV_TREE_SAME).
263 * That means that once we get to REV_TREE_DIFFERENT, we do not
264 * have to look any further.
266 static int tree_difference
= REV_TREE_SAME
;
268 static void file_add_remove(struct diff_options
*options
,
269 int addremove
, unsigned mode
,
270 const unsigned char *sha1
,
271 const char *fullpath
)
273 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
275 tree_difference
|= diff
;
276 if (tree_difference
== REV_TREE_DIFFERENT
)
277 DIFF_OPT_SET(options
, HAS_CHANGES
);
280 static void file_change(struct diff_options
*options
,
281 unsigned old_mode
, unsigned new_mode
,
282 const unsigned char *old_sha1
,
283 const unsigned char *new_sha1
,
284 const char *fullpath
)
286 tree_difference
= REV_TREE_DIFFERENT
;
287 DIFF_OPT_SET(options
, HAS_CHANGES
);
290 static int rev_compare_tree(struct rev_info
*revs
, struct commit
*parent
, struct commit
*commit
)
292 struct tree
*t1
= parent
->tree
;
293 struct tree
*t2
= commit
->tree
;
300 if (revs
->simplify_by_decoration
) {
302 * If we are simplifying by decoration, then the commit
303 * is worth showing if it has a tag pointing at it.
305 if (lookup_decoration(&name_decoration
, &commit
->object
))
306 return REV_TREE_DIFFERENT
;
308 * A commit that is not pointed by a tag is uninteresting
309 * if we are not limited by path. This means that you will
310 * see the usual "commits that touch the paths" plus any
311 * tagged commit by specifying both --simplify-by-decoration
314 if (!revs
->prune_data
)
315 return REV_TREE_SAME
;
318 tree_difference
= REV_TREE_SAME
;
319 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
320 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
322 return REV_TREE_DIFFERENT
;
323 return tree_difference
;
326 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
331 struct tree_desc empty
, real
;
332 struct tree
*t1
= commit
->tree
;
337 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
340 init_tree_desc(&real
, tree
, size
);
341 init_tree_desc(&empty
, "", 0);
343 tree_difference
= REV_TREE_SAME
;
344 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
345 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
348 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
351 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
353 struct commit_list
**pp
, *parent
;
354 int tree_changed
= 0, tree_same
= 0;
357 * If we don't do pruning, everything is interesting
365 if (!commit
->parents
) {
366 if (rev_same_tree_as_empty(revs
, commit
))
367 commit
->object
.flags
|= TREESAME
;
372 * Normal non-merge commit? If we don't want to make the
373 * history dense, we consider it always to be a change..
375 if (!revs
->dense
&& !commit
->parents
->next
)
378 pp
= &commit
->parents
;
379 while ((parent
= *pp
) != NULL
) {
380 struct commit
*p
= parent
->item
;
382 if (parse_commit(p
) < 0)
383 die("cannot simplify commit %s (because of %s)",
384 sha1_to_hex(commit
->object
.sha1
),
385 sha1_to_hex(p
->object
.sha1
));
386 switch (rev_compare_tree(revs
, p
, commit
)) {
389 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
390 /* Even if a merge with an uninteresting
391 * side branch brought the entire change
392 * we are interested in, we do not want
393 * to lose the other branches of this
394 * merge, so we just keep going.
400 commit
->parents
= parent
;
401 commit
->object
.flags
|= TREESAME
;
405 if (revs
->remove_empty_trees
&&
406 rev_same_tree_as_empty(revs
, p
)) {
407 /* We are adding all the specified
408 * paths from this parent, so the
409 * history beyond this parent is not
410 * interesting. Remove its parents
411 * (they are grandparents for us).
412 * IOW, we pretend this parent is a
415 if (parse_commit(p
) < 0)
416 die("cannot simplify commit %s (invalid %s)",
417 sha1_to_hex(commit
->object
.sha1
),
418 sha1_to_hex(p
->object
.sha1
));
423 case REV_TREE_DIFFERENT
:
428 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
430 if (tree_changed
&& !tree_same
)
432 commit
->object
.flags
|= TREESAME
;
435 static void insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
436 struct commit_list
*cached_base
, struct commit_list
**cache
)
438 struct commit_list
*new_entry
;
440 if (cached_base
&& p
->date
< cached_base
->item
->date
)
441 new_entry
= insert_by_date(p
, &cached_base
->next
);
443 new_entry
= insert_by_date(p
, head
);
445 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
449 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
450 struct commit_list
**list
, struct commit_list
**cache_ptr
)
452 struct commit_list
*parent
= commit
->parents
;
454 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
456 if (commit
->object
.flags
& ADDED
)
458 commit
->object
.flags
|= ADDED
;
461 * If the commit is uninteresting, don't try to
462 * prune parents - we want the maximal uninteresting
465 * Normally we haven't parsed the parent
466 * yet, so we won't have a parent of a parent
467 * here. However, it may turn out that we've
468 * reached this commit some other way (where it
469 * wasn't uninteresting), in which case we need
470 * to mark its parents recursively too..
472 if (commit
->object
.flags
& UNINTERESTING
) {
474 struct commit
*p
= parent
->item
;
475 parent
= parent
->next
;
477 p
->object
.flags
|= UNINTERESTING
;
478 if (parse_commit(p
) < 0)
481 mark_parents_uninteresting(p
);
482 if (p
->object
.flags
& SEEN
)
484 p
->object
.flags
|= SEEN
;
485 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
491 * Ok, the commit wasn't uninteresting. Try to
492 * simplify the commit history and find the parent
493 * that has no differences in the path set if one exists.
495 try_to_simplify_commit(revs
, commit
);
500 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
502 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
503 struct commit
*p
= parent
->item
;
505 if (parse_commit(p
) < 0)
507 if (revs
->show_source
&& !p
->util
)
508 p
->util
= commit
->util
;
509 p
->object
.flags
|= left_flag
;
510 if (!(p
->object
.flags
& SEEN
)) {
511 p
->object
.flags
|= SEEN
;
512 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
514 if (revs
->first_parent_only
)
520 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
522 struct commit_list
*p
;
523 int left_count
= 0, right_count
= 0;
525 struct patch_ids ids
;
527 /* First count the commits on the left and on the right */
528 for (p
= list
; p
; p
= p
->next
) {
529 struct commit
*commit
= p
->item
;
530 unsigned flags
= commit
->object
.flags
;
531 if (flags
& BOUNDARY
)
533 else if (flags
& SYMMETRIC_LEFT
)
539 if (!left_count
|| !right_count
)
542 left_first
= left_count
< right_count
;
543 init_patch_ids(&ids
);
544 if (revs
->diffopt
.nr_paths
) {
545 ids
.diffopts
.nr_paths
= revs
->diffopt
.nr_paths
;
546 ids
.diffopts
.paths
= revs
->diffopt
.paths
;
547 ids
.diffopts
.pathlens
= revs
->diffopt
.pathlens
;
550 /* Compute patch-ids for one side */
551 for (p
= list
; p
; p
= p
->next
) {
552 struct commit
*commit
= p
->item
;
553 unsigned flags
= commit
->object
.flags
;
555 if (flags
& BOUNDARY
)
558 * If we have fewer left, left_first is set and we omit
559 * commits on the right branch in this loop. If we have
560 * fewer right, we skip the left ones.
562 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
564 commit
->util
= add_commit_patch_id(commit
, &ids
);
567 /* Check the other side */
568 for (p
= list
; p
; p
= p
->next
) {
569 struct commit
*commit
= p
->item
;
571 unsigned flags
= commit
->object
.flags
;
573 if (flags
& BOUNDARY
)
576 * If we have fewer left, left_first is set and we omit
577 * commits on the left branch in this loop.
579 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
583 * Have we seen the same patch id?
585 id
= has_commit_patch_id(commit
, &ids
);
589 commit
->object
.flags
|= SHOWN
;
592 /* Now check the original side for seen ones */
593 for (p
= list
; p
; p
= p
->next
) {
594 struct commit
*commit
= p
->item
;
595 struct patch_id
*ent
;
601 commit
->object
.flags
|= SHOWN
;
605 free_patch_ids(&ids
);
608 /* How many extra uninteresting commits we want to see.. */
611 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
614 * No source list at all? We're definitely done..
620 * Does the destination list contain entries with a date
621 * before the source list? Definitely _not_ done.
623 if (date
< src
->item
->date
)
627 * Does the source list still have interesting commits in
628 * it? Definitely not done..
630 if (!everybody_uninteresting(src
))
633 /* Ok, we're closing in.. */
637 static int limit_list(struct rev_info
*revs
)
640 unsigned long date
= ~0ul;
641 struct commit_list
*list
= revs
->commits
;
642 struct commit_list
*newlist
= NULL
;
643 struct commit_list
**p
= &newlist
;
646 struct commit_list
*entry
= list
;
647 struct commit
*commit
= list
->item
;
648 struct object
*obj
= &commit
->object
;
649 show_early_output_fn_t show
;
654 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
655 obj
->flags
|= UNINTERESTING
;
656 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
658 if (obj
->flags
& UNINTERESTING
) {
659 mark_parents_uninteresting(commit
);
661 p
= &commit_list_insert(commit
, p
)->next
;
662 slop
= still_interesting(list
, date
, slop
);
665 /* If showing all, add the whole pending list to the end */
670 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
673 p
= &commit_list_insert(commit
, p
)->next
;
675 show
= show_early_output
;
680 show_early_output
= NULL
;
682 if (revs
->cherry_pick
)
683 cherry_pick_list(newlist
, revs
);
685 revs
->commits
= newlist
;
691 int warned_bad_reflog
;
692 struct rev_info
*all_revs
;
693 const char *name_for_errormsg
;
696 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
698 struct all_refs_cb
*cb
= cb_data
;
699 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
701 add_pending_object(cb
->all_revs
, object
, path
);
705 static void handle_refs(struct rev_info
*revs
, unsigned flags
,
706 int (*for_each
)(each_ref_fn
, void *))
708 struct all_refs_cb cb
;
710 cb
.all_flags
= flags
;
711 for_each(handle_one_ref
, &cb
);
714 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
716 struct all_refs_cb
*cb
= cb_data
;
717 if (!is_null_sha1(sha1
)) {
718 struct object
*o
= parse_object(sha1
);
720 o
->flags
|= cb
->all_flags
;
721 add_pending_object(cb
->all_revs
, o
, "");
723 else if (!cb
->warned_bad_reflog
) {
724 warning("reflog of '%s' references pruned commits",
725 cb
->name_for_errormsg
);
726 cb
->warned_bad_reflog
= 1;
731 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
732 const char *email
, unsigned long timestamp
, int tz
,
733 const char *message
, void *cb_data
)
735 handle_one_reflog_commit(osha1
, cb_data
);
736 handle_one_reflog_commit(nsha1
, cb_data
);
740 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
742 struct all_refs_cb
*cb
= cb_data
;
743 cb
->warned_bad_reflog
= 0;
744 cb
->name_for_errormsg
= path
;
745 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
749 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
751 struct all_refs_cb cb
;
753 cb
.all_flags
= flags
;
754 for_each_reflog(handle_one_reflog
, &cb
);
757 static int add_parents_only(struct rev_info
*revs
, const char *arg
, int flags
)
759 unsigned char sha1
[20];
761 struct commit
*commit
;
762 struct commit_list
*parents
;
765 flags
^= UNINTERESTING
;
768 if (get_sha1(arg
, sha1
))
771 it
= get_reference(revs
, arg
, sha1
, 0);
772 if (it
->type
!= OBJ_TAG
)
774 if (!((struct tag
*)it
)->tagged
)
776 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
778 if (it
->type
!= OBJ_COMMIT
)
780 commit
= (struct commit
*)it
;
781 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
782 it
= &parents
->item
->object
;
784 add_pending_object(revs
, it
, arg
);
789 void init_revisions(struct rev_info
*revs
, const char *prefix
)
791 memset(revs
, 0, sizeof(*revs
));
793 revs
->abbrev
= DEFAULT_ABBREV
;
794 revs
->ignore_merges
= 1;
795 revs
->simplify_history
= 1;
796 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
797 DIFF_OPT_SET(&revs
->pruning
, QUIET
);
798 revs
->pruning
.add_remove
= file_add_remove
;
799 revs
->pruning
.change
= file_change
;
802 revs
->prefix
= prefix
;
805 revs
->skip_count
= -1;
806 revs
->max_count
= -1;
808 revs
->commit_format
= CMIT_FMT_DEFAULT
;
810 revs
->grep_filter
.status_only
= 1;
811 revs
->grep_filter
.pattern_tail
= &(revs
->grep_filter
.pattern_list
);
812 revs
->grep_filter
.regflags
= REG_NEWLINE
;
814 diff_setup(&revs
->diffopt
);
815 if (prefix
&& !revs
->diffopt
.prefix
) {
816 revs
->diffopt
.prefix
= prefix
;
817 revs
->diffopt
.prefix_length
= strlen(prefix
);
821 static void add_pending_commit_list(struct rev_info
*revs
,
822 struct commit_list
*commit_list
,
825 while (commit_list
) {
826 struct object
*object
= &commit_list
->item
->object
;
827 object
->flags
|= flags
;
828 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
829 commit_list
= commit_list
->next
;
833 static void prepare_show_merge(struct rev_info
*revs
)
835 struct commit_list
*bases
;
836 struct commit
*head
, *other
;
837 unsigned char sha1
[20];
838 const char **prune
= NULL
;
839 int i
, prune_num
= 1; /* counting terminating NULL */
841 if (get_sha1("HEAD", sha1
) || !(head
= lookup_commit(sha1
)))
842 die("--merge without HEAD?");
843 if (get_sha1("MERGE_HEAD", sha1
) || !(other
= lookup_commit(sha1
)))
844 die("--merge without MERGE_HEAD?");
845 add_pending_object(revs
, &head
->object
, "HEAD");
846 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
847 bases
= get_merge_bases(head
, other
, 1);
848 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
849 free_commit_list(bases
);
850 head
->object
.flags
|= SYMMETRIC_LEFT
;
854 for (i
= 0; i
< active_nr
; i
++) {
855 struct cache_entry
*ce
= active_cache
[i
];
858 if (ce_path_match(ce
, revs
->prune_data
)) {
860 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
861 prune
[prune_num
-2] = ce
->name
;
862 prune
[prune_num
-1] = NULL
;
864 while ((i
+1 < active_nr
) &&
865 ce_same_name(ce
, active_cache
[i
+1]))
868 revs
->prune_data
= prune
;
872 int handle_revision_arg(const char *arg
, struct rev_info
*revs
,
874 int cant_be_filename
)
878 struct object
*object
;
879 unsigned char sha1
[20];
882 dotdot
= strstr(arg
, "..");
884 unsigned char from_sha1
[20];
885 const char *next
= dotdot
+ 2;
886 const char *this = arg
;
887 int symmetric
= *next
== '.';
888 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
897 if (!get_sha1(this, from_sha1
) &&
898 !get_sha1(next
, sha1
)) {
899 struct commit
*a
, *b
;
900 struct commit_list
*exclude
;
902 a
= lookup_commit_reference(from_sha1
);
903 b
= lookup_commit_reference(sha1
);
906 "Invalid symmetric difference expression %s...%s" :
907 "Invalid revision range %s..%s",
911 if (!cant_be_filename
) {
913 verify_non_filename(revs
->prefix
, arg
);
917 exclude
= get_merge_bases(a
, b
, 1);
918 add_pending_commit_list(revs
, exclude
,
920 free_commit_list(exclude
);
921 a
->object
.flags
|= flags
| SYMMETRIC_LEFT
;
923 a
->object
.flags
|= flags_exclude
;
924 b
->object
.flags
|= flags
;
925 add_pending_object(revs
, &a
->object
, this);
926 add_pending_object(revs
, &b
->object
, next
);
931 dotdot
= strstr(arg
, "^@");
932 if (dotdot
&& !dotdot
[2]) {
934 if (add_parents_only(revs
, arg
, flags
))
938 dotdot
= strstr(arg
, "^!");
939 if (dotdot
&& !dotdot
[2]) {
941 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
947 local_flags
= UNINTERESTING
;
950 if (get_sha1_with_mode(arg
, sha1
, &mode
))
952 if (!cant_be_filename
)
953 verify_non_filename(revs
->prefix
, arg
);
954 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
955 add_pending_object_with_mode(revs
, object
, arg
, mode
);
959 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
, const char ***prune_data
)
961 const char **prune
= *prune_data
;
965 /* count existing ones */
969 for (prune_nr
= 0; prune
[prune_nr
]; prune_nr
++)
971 prune_alloc
= prune_nr
; /* not really, but we do not know */
973 while (strbuf_getwholeline(sb
, stdin
, '\n') != EOF
) {
975 if (len
&& sb
->buf
[len
- 1] == '\n')
976 sb
->buf
[--len
] = '\0';
977 ALLOC_GROW(prune
, prune_nr
+1, prune_alloc
);
978 prune
[prune_nr
++] = xstrdup(sb
->buf
);
981 ALLOC_GROW(prune
, prune_nr
+1, prune_alloc
);
982 prune
[prune_nr
] = NULL
;
987 static void read_revisions_from_stdin(struct rev_info
*revs
, const char ***prune
)
990 int seen_dashdash
= 0;
992 strbuf_init(&sb
, 1000);
993 while (strbuf_getwholeline(&sb
, stdin
, '\n') != EOF
) {
995 if (len
&& sb
.buf
[len
- 1] == '\n')
996 sb
.buf
[--len
] = '\0';
999 if (sb
.buf
[0] == '-') {
1000 if (len
== 2 && sb
.buf
[1] == '-') {
1004 die("options not supported in --stdin mode");
1006 if (handle_revision_arg(sb
.buf
, revs
, 0, 1))
1007 die("bad revision '%s'", sb
.buf
);
1010 read_pathspec_from_stdin(revs
, &sb
, prune
);
1011 strbuf_release(&sb
);
1014 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1016 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1019 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1021 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1024 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1026 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1029 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1030 int *unkc
, const char **unkv
)
1032 const char *arg
= argv
[0];
1034 /* pseudo revision arguments */
1035 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1036 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1037 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1038 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1039 !strcmp(arg
, "--bisect"))
1041 unkv
[(*unkc
)++] = arg
;
1045 if (!prefixcmp(arg
, "--max-count=")) {
1046 revs
->max_count
= atoi(arg
+ 12);
1047 } else if (!prefixcmp(arg
, "--skip=")) {
1048 revs
->skip_count
= atoi(arg
+ 7);
1049 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1050 /* accept -<digit>, like traditional "head" */
1051 revs
->max_count
= atoi(arg
+ 1);
1052 } else if (!strcmp(arg
, "-n")) {
1054 return error("-n requires an argument");
1055 revs
->max_count
= atoi(argv
[1]);
1057 } else if (!prefixcmp(arg
, "-n")) {
1058 revs
->max_count
= atoi(arg
+ 2);
1059 } else if (!prefixcmp(arg
, "--max-age=")) {
1060 revs
->max_age
= atoi(arg
+ 10);
1061 } else if (!prefixcmp(arg
, "--since=")) {
1062 revs
->max_age
= approxidate(arg
+ 8);
1063 } else if (!prefixcmp(arg
, "--after=")) {
1064 revs
->max_age
= approxidate(arg
+ 8);
1065 } else if (!prefixcmp(arg
, "--min-age=")) {
1066 revs
->min_age
= atoi(arg
+ 10);
1067 } else if (!prefixcmp(arg
, "--before=")) {
1068 revs
->min_age
= approxidate(arg
+ 9);
1069 } else if (!prefixcmp(arg
, "--until=")) {
1070 revs
->min_age
= approxidate(arg
+ 8);
1071 } else if (!strcmp(arg
, "--first-parent")) {
1072 revs
->first_parent_only
= 1;
1073 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1074 init_reflog_walk(&revs
->reflog_info
);
1075 } else if (!strcmp(arg
, "--default")) {
1077 return error("bad --default argument");
1078 revs
->def
= argv
[1];
1080 } else if (!strcmp(arg
, "--merge")) {
1081 revs
->show_merge
= 1;
1082 } else if (!strcmp(arg
, "--topo-order")) {
1084 revs
->topo_order
= 1;
1085 } else if (!strcmp(arg
, "--simplify-merges")) {
1086 revs
->simplify_merges
= 1;
1087 revs
->rewrite_parents
= 1;
1088 revs
->simplify_history
= 0;
1090 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1091 revs
->simplify_merges
= 1;
1092 revs
->rewrite_parents
= 1;
1093 revs
->simplify_history
= 0;
1094 revs
->simplify_by_decoration
= 1;
1097 load_ref_decorations(DECORATE_SHORT_REFS
);
1098 } else if (!strcmp(arg
, "--date-order")) {
1100 revs
->topo_order
= 1;
1101 } else if (!prefixcmp(arg
, "--early-output")) {
1105 count
= atoi(arg
+15);
1108 revs
->topo_order
= 1;
1109 revs
->early_output
= count
;
1111 } else if (!strcmp(arg
, "--parents")) {
1112 revs
->rewrite_parents
= 1;
1113 revs
->print_parents
= 1;
1114 } else if (!strcmp(arg
, "--dense")) {
1116 } else if (!strcmp(arg
, "--sparse")) {
1118 } else if (!strcmp(arg
, "--show-all")) {
1120 } else if (!strcmp(arg
, "--remove-empty")) {
1121 revs
->remove_empty_trees
= 1;
1122 } else if (!strcmp(arg
, "--merges")) {
1123 revs
->merges_only
= 1;
1124 } else if (!strcmp(arg
, "--no-merges")) {
1125 revs
->no_merges
= 1;
1126 } else if (!strcmp(arg
, "--boundary")) {
1128 } else if (!strcmp(arg
, "--left-right")) {
1129 revs
->left_right
= 1;
1130 } else if (!strcmp(arg
, "--cherry-pick")) {
1131 revs
->cherry_pick
= 1;
1133 } else if (!strcmp(arg
, "--objects")) {
1134 revs
->tag_objects
= 1;
1135 revs
->tree_objects
= 1;
1136 revs
->blob_objects
= 1;
1137 } else if (!strcmp(arg
, "--objects-edge")) {
1138 revs
->tag_objects
= 1;
1139 revs
->tree_objects
= 1;
1140 revs
->blob_objects
= 1;
1141 revs
->edge_hint
= 1;
1142 } else if (!strcmp(arg
, "--unpacked")) {
1144 } else if (!prefixcmp(arg
, "--unpacked=")) {
1145 die("--unpacked=<packfile> no longer supported.");
1146 } else if (!strcmp(arg
, "-r")) {
1148 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1149 } else if (!strcmp(arg
, "-t")) {
1151 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1152 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1153 } else if (!strcmp(arg
, "-m")) {
1154 revs
->ignore_merges
= 0;
1155 } else if (!strcmp(arg
, "-c")) {
1157 revs
->dense_combined_merges
= 0;
1158 revs
->combine_merges
= 1;
1159 } else if (!strcmp(arg
, "--cc")) {
1161 revs
->dense_combined_merges
= 1;
1162 revs
->combine_merges
= 1;
1163 } else if (!strcmp(arg
, "-v")) {
1164 revs
->verbose_header
= 1;
1165 } else if (!strcmp(arg
, "--pretty")) {
1166 revs
->verbose_header
= 1;
1167 revs
->pretty_given
= 1;
1168 get_commit_format(arg
+8, revs
);
1169 } else if (!prefixcmp(arg
, "--pretty=") || !prefixcmp(arg
, "--format=")) {
1170 revs
->verbose_header
= 1;
1171 revs
->pretty_given
= 1;
1172 get_commit_format(arg
+9, revs
);
1173 } else if (!strcmp(arg
, "--show-notes")) {
1174 revs
->show_notes
= 1;
1175 revs
->show_notes_given
= 1;
1176 } else if (!strcmp(arg
, "--no-notes")) {
1177 revs
->show_notes
= 0;
1178 revs
->show_notes_given
= 1;
1179 } else if (!strcmp(arg
, "--oneline")) {
1180 revs
->verbose_header
= 1;
1181 get_commit_format("oneline", revs
);
1182 revs
->pretty_given
= 1;
1183 revs
->abbrev_commit
= 1;
1184 } else if (!strcmp(arg
, "--graph")) {
1185 revs
->topo_order
= 1;
1186 revs
->rewrite_parents
= 1;
1187 revs
->graph
= graph_init(revs
);
1188 } else if (!strcmp(arg
, "--root")) {
1189 revs
->show_root_diff
= 1;
1190 } else if (!strcmp(arg
, "--no-commit-id")) {
1191 revs
->no_commit_id
= 1;
1192 } else if (!strcmp(arg
, "--always")) {
1193 revs
->always_show_header
= 1;
1194 } else if (!strcmp(arg
, "--no-abbrev")) {
1196 } else if (!strcmp(arg
, "--abbrev")) {
1197 revs
->abbrev
= DEFAULT_ABBREV
;
1198 } else if (!prefixcmp(arg
, "--abbrev=")) {
1199 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1200 if (revs
->abbrev
< MINIMUM_ABBREV
)
1201 revs
->abbrev
= MINIMUM_ABBREV
;
1202 else if (revs
->abbrev
> 40)
1204 } else if (!strcmp(arg
, "--abbrev-commit")) {
1205 revs
->abbrev_commit
= 1;
1206 } else if (!strcmp(arg
, "--full-diff")) {
1208 revs
->full_diff
= 1;
1209 } else if (!strcmp(arg
, "--full-history")) {
1210 revs
->simplify_history
= 0;
1211 } else if (!strcmp(arg
, "--relative-date")) {
1212 revs
->date_mode
= DATE_RELATIVE
;
1213 revs
->date_mode_explicit
= 1;
1214 } else if (!strncmp(arg
, "--date=", 7)) {
1215 revs
->date_mode
= parse_date_format(arg
+ 7);
1216 revs
->date_mode_explicit
= 1;
1217 } else if (!strcmp(arg
, "--log-size")) {
1218 revs
->show_log_size
= 1;
1221 * Grepping the commit log
1223 else if (!prefixcmp(arg
, "--author=")) {
1224 add_header_grep(revs
, GREP_HEADER_AUTHOR
, arg
+9);
1225 } else if (!prefixcmp(arg
, "--committer=")) {
1226 add_header_grep(revs
, GREP_HEADER_COMMITTER
, arg
+12);
1227 } else if (!prefixcmp(arg
, "--grep=")) {
1228 add_message_grep(revs
, arg
+7);
1229 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1230 revs
->grep_filter
.regflags
|= REG_EXTENDED
;
1231 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1232 revs
->grep_filter
.regflags
|= REG_ICASE
;
1233 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1234 revs
->grep_filter
.fixed
= 1;
1235 } else if (!strcmp(arg
, "--all-match")) {
1236 revs
->grep_filter
.all_match
= 1;
1237 } else if (!prefixcmp(arg
, "--encoding=")) {
1239 if (strcmp(arg
, "none"))
1240 git_log_output_encoding
= xstrdup(arg
);
1242 git_log_output_encoding
= "";
1243 } else if (!strcmp(arg
, "--reverse")) {
1245 } else if (!strcmp(arg
, "--children")) {
1246 revs
->children
.name
= "children";
1249 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1251 unkv
[(*unkc
)++] = arg
;
1258 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1259 const struct option
*options
,
1260 const char * const usagestr
[])
1262 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1263 &ctx
->cpidx
, ctx
->out
);
1265 error("unknown option `%s'", ctx
->argv
[0]);
1266 usage_with_options(usagestr
, options
);
1272 static int for_each_bad_bisect_ref(each_ref_fn fn
, void *cb_data
)
1274 return for_each_ref_in("refs/bisect/bad", fn
, cb_data
);
1277 static int for_each_good_bisect_ref(each_ref_fn fn
, void *cb_data
)
1279 return for_each_ref_in("refs/bisect/good", fn
, cb_data
);
1282 static void append_prune_data(const char ***prune_data
, const char **av
)
1284 const char **prune
= *prune_data
;
1293 /* count existing ones */
1294 for (prune_nr
= 0; prune
[prune_nr
]; prune_nr
++)
1296 prune_alloc
= prune_nr
; /* not really, but we do not know */
1299 ALLOC_GROW(prune
, prune_nr
+1, prune_alloc
);
1300 prune
[prune_nr
++] = *av
;
1304 ALLOC_GROW(prune
, prune_nr
+1, prune_alloc
);
1305 prune
[prune_nr
] = NULL
;
1307 *prune_data
= prune
;
1311 * Parse revision information, filling in the "rev_info" structure,
1312 * and removing the used arguments from the argument list.
1314 * Returns the number of arguments left that weren't recognized
1315 * (which are also moved to the head of the argument list)
1317 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, const char *def
)
1319 int i
, flags
, left
, seen_dashdash
, read_from_stdin
;
1320 const char **prune_data
= NULL
;
1322 /* First, search for "--" */
1324 for (i
= 1; i
< argc
; i
++) {
1325 const char *arg
= argv
[i
];
1326 if (strcmp(arg
, "--"))
1331 prune_data
= argv
+ i
+ 1;
1336 /* Second, deal with arguments and options */
1338 read_from_stdin
= 0;
1339 for (left
= i
= 1; i
< argc
; i
++) {
1340 const char *arg
= argv
[i
];
1344 if (!strcmp(arg
, "--all")) {
1345 handle_refs(revs
, flags
, for_each_ref
);
1346 handle_refs(revs
, flags
, head_ref
);
1349 if (!strcmp(arg
, "--branches")) {
1350 handle_refs(revs
, flags
, for_each_branch_ref
);
1353 if (!strcmp(arg
, "--bisect")) {
1354 handle_refs(revs
, flags
, for_each_bad_bisect_ref
);
1355 handle_refs(revs
, flags
^ UNINTERESTING
, for_each_good_bisect_ref
);
1359 if (!strcmp(arg
, "--tags")) {
1360 handle_refs(revs
, flags
, for_each_tag_ref
);
1363 if (!strcmp(arg
, "--remotes")) {
1364 handle_refs(revs
, flags
, for_each_remote_ref
);
1367 if (!strcmp(arg
, "--reflog")) {
1368 handle_reflog(revs
, flags
);
1371 if (!strcmp(arg
, "--not")) {
1372 flags
^= UNINTERESTING
;
1375 if (!strcmp(arg
, "--no-walk")) {
1379 if (!strcmp(arg
, "--do-walk")) {
1383 if (!strcmp(arg
, "--stdin")) {
1384 if (revs
->disable_stdin
) {
1388 if (read_from_stdin
++)
1389 die("--stdin given twice?");
1390 read_revisions_from_stdin(revs
, &prune_data
);
1394 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1404 if (handle_revision_arg(arg
, revs
, flags
, seen_dashdash
)) {
1406 if (seen_dashdash
|| *arg
== '^')
1407 die("bad revision '%s'", arg
);
1409 /* If we didn't have a "--":
1410 * (1) all filenames must exist;
1411 * (2) all rev-args must not be interpretable
1412 * as a valid filename.
1413 * but the latter we have checked in the main loop.
1415 for (j
= i
; j
< argc
; j
++)
1416 verify_filename(revs
->prefix
, argv
[j
]);
1418 append_prune_data(&prune_data
, argv
+ i
);
1424 revs
->prune_data
= get_pathspec(revs
->prefix
, prune_data
);
1426 if (revs
->def
== NULL
)
1428 if (revs
->show_merge
)
1429 prepare_show_merge(revs
);
1430 if (revs
->def
&& !revs
->pending
.nr
) {
1431 unsigned char sha1
[20];
1432 struct object
*object
;
1434 if (get_sha1_with_mode(revs
->def
, sha1
, &mode
))
1435 die("bad default revision '%s'", revs
->def
);
1436 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1437 add_pending_object_with_mode(revs
, object
, revs
->def
, mode
);
1440 /* Did the user ask for any diff output? Run the diff! */
1441 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1444 /* Pickaxe, diff-filter and rename following need diffs */
1445 if (revs
->diffopt
.pickaxe
||
1446 revs
->diffopt
.filter
||
1447 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1450 if (revs
->topo_order
)
1453 if (revs
->prune_data
) {
1454 diff_tree_setup_paths(revs
->prune_data
, &revs
->pruning
);
1455 /* Can't prune commits with rename following: the paths change.. */
1456 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1458 if (!revs
->full_diff
)
1459 diff_tree_setup_paths(revs
->prune_data
, &revs
->diffopt
);
1461 if (revs
->combine_merges
) {
1462 revs
->ignore_merges
= 0;
1463 if (revs
->dense_combined_merges
&& !revs
->diffopt
.output_format
)
1464 revs
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1466 revs
->diffopt
.abbrev
= revs
->abbrev
;
1467 if (diff_setup_done(&revs
->diffopt
) < 0)
1468 die("diff_setup_done failed");
1470 compile_grep_patterns(&revs
->grep_filter
);
1472 if (revs
->reverse
&& revs
->reflog_info
)
1473 die("cannot combine --reverse with --walk-reflogs");
1474 if (revs
->rewrite_parents
&& revs
->children
.name
)
1475 die("cannot combine --parents and --children");
1478 * Limitations on the graph functionality
1480 if (revs
->reverse
&& revs
->graph
)
1481 die("cannot combine --reverse with --graph");
1483 if (revs
->reflog_info
&& revs
->graph
)
1484 die("cannot combine --walk-reflogs with --graph");
1489 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1491 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1494 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1497 static int remove_duplicate_parents(struct commit
*commit
)
1499 struct commit_list
**pp
, *p
;
1500 int surviving_parents
;
1502 /* Examine existing parents while marking ones we have seen... */
1503 pp
= &commit
->parents
;
1504 while ((p
= *pp
) != NULL
) {
1505 struct commit
*parent
= p
->item
;
1506 if (parent
->object
.flags
& TMP_MARK
) {
1510 parent
->object
.flags
|= TMP_MARK
;
1513 /* count them while clearing the temporary mark */
1514 surviving_parents
= 0;
1515 for (p
= commit
->parents
; p
; p
= p
->next
) {
1516 p
->item
->object
.flags
&= ~TMP_MARK
;
1517 surviving_parents
++;
1519 return surviving_parents
;
1522 struct merge_simplify_state
{
1523 struct commit
*simplified
;
1526 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1528 struct merge_simplify_state
*st
;
1530 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1532 st
= xcalloc(1, sizeof(*st
));
1533 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1538 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1540 struct commit_list
*p
;
1541 struct merge_simplify_state
*st
, *pst
;
1544 st
= locate_simplify_state(revs
, commit
);
1547 * Have we handled this one?
1553 * An UNINTERESTING commit simplifies to itself, so does a
1554 * root commit. We do not rewrite parents of such commit
1557 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
1558 st
->simplified
= commit
;
1563 * Do we know what commit all of our parents should be rewritten to?
1564 * Otherwise we are not ready to rewrite this one yet.
1566 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
1567 pst
= locate_simplify_state(revs
, p
->item
);
1568 if (!pst
->simplified
) {
1569 tail
= &commit_list_insert(p
->item
, tail
)->next
;
1574 tail
= &commit_list_insert(commit
, tail
)->next
;
1579 * Rewrite our list of parents.
1581 for (p
= commit
->parents
; p
; p
= p
->next
) {
1582 pst
= locate_simplify_state(revs
, p
->item
);
1583 p
->item
= pst
->simplified
;
1585 cnt
= remove_duplicate_parents(commit
);
1588 * It is possible that we are a merge and one side branch
1589 * does not have any commit that touches the given paths;
1590 * in such a case, the immediate parents will be rewritten
1591 * to different commits.
1593 * o----X X: the commit we are looking at;
1594 * / / o: a commit that touches the paths;
1597 * Further reduce the parents by removing redundant parents.
1600 struct commit_list
*h
= reduce_heads(commit
->parents
);
1601 cnt
= commit_list_count(h
);
1602 free_commit_list(commit
->parents
);
1603 commit
->parents
= h
;
1607 * A commit simplifies to itself if it is a root, if it is
1608 * UNINTERESTING, if it touches the given paths, or if it is a
1609 * merge and its parents simplifies to more than one commits
1610 * (the first two cases are already handled at the beginning of
1613 * Otherwise, it simplifies to what its sole parent simplifies to.
1616 (commit
->object
.flags
& UNINTERESTING
) ||
1617 !(commit
->object
.flags
& TREESAME
) ||
1619 st
->simplified
= commit
;
1621 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
1622 st
->simplified
= pst
->simplified
;
1627 static void simplify_merges(struct rev_info
*revs
)
1629 struct commit_list
*list
;
1630 struct commit_list
*yet_to_do
, **tail
;
1632 if (!revs
->topo_order
)
1633 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1637 /* feed the list reversed */
1639 for (list
= revs
->commits
; list
; list
= list
->next
)
1640 commit_list_insert(list
->item
, &yet_to_do
);
1646 struct commit
*commit
= list
->item
;
1647 struct commit_list
*next
= list
->next
;
1650 tail
= simplify_one(revs
, commit
, tail
);
1654 /* clean up the result, removing the simplified ones */
1655 list
= revs
->commits
;
1656 revs
->commits
= NULL
;
1657 tail
= &revs
->commits
;
1659 struct commit
*commit
= list
->item
;
1660 struct commit_list
*next
= list
->next
;
1661 struct merge_simplify_state
*st
;
1664 st
= locate_simplify_state(revs
, commit
);
1665 if (st
->simplified
== commit
)
1666 tail
= &commit_list_insert(commit
, tail
)->next
;
1670 static void set_children(struct rev_info
*revs
)
1672 struct commit_list
*l
;
1673 for (l
= revs
->commits
; l
; l
= l
->next
) {
1674 struct commit
*commit
= l
->item
;
1675 struct commit_list
*p
;
1677 for (p
= commit
->parents
; p
; p
= p
->next
)
1678 add_child(revs
, p
->item
, commit
);
1682 int prepare_revision_walk(struct rev_info
*revs
)
1684 int nr
= revs
->pending
.nr
;
1685 struct object_array_entry
*e
, *list
;
1687 e
= list
= revs
->pending
.objects
;
1688 revs
->pending
.nr
= 0;
1689 revs
->pending
.alloc
= 0;
1690 revs
->pending
.objects
= NULL
;
1692 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
1694 if (!(commit
->object
.flags
& SEEN
)) {
1695 commit
->object
.flags
|= SEEN
;
1696 insert_by_date(commit
, &revs
->commits
);
1706 if (limit_list(revs
) < 0)
1708 if (revs
->topo_order
)
1709 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1710 if (revs
->simplify_merges
)
1711 simplify_merges(revs
);
1712 if (revs
->children
.name
)
1717 enum rewrite_result
{
1719 rewrite_one_noparents
,
1723 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
1725 struct commit_list
*cache
= NULL
;
1728 struct commit
*p
= *pp
;
1730 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
1731 return rewrite_one_error
;
1732 if (p
->parents
&& p
->parents
->next
)
1733 return rewrite_one_ok
;
1734 if (p
->object
.flags
& UNINTERESTING
)
1735 return rewrite_one_ok
;
1736 if (!(p
->object
.flags
& TREESAME
))
1737 return rewrite_one_ok
;
1739 return rewrite_one_noparents
;
1740 *pp
= p
->parents
->item
;
1744 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
1746 struct commit_list
**pp
= &commit
->parents
;
1748 struct commit_list
*parent
= *pp
;
1749 switch (rewrite_one(revs
, &parent
->item
)) {
1750 case rewrite_one_ok
:
1752 case rewrite_one_noparents
:
1755 case rewrite_one_error
:
1760 remove_duplicate_parents(commit
);
1764 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
1766 if (!opt
->grep_filter
.pattern_list
)
1768 return grep_buffer(&opt
->grep_filter
,
1769 NULL
, /* we say nothing, not even filename */
1770 commit
->buffer
, strlen(commit
->buffer
));
1773 static inline int want_ancestry(struct rev_info
*revs
)
1775 return (revs
->rewrite_parents
|| revs
->children
.name
);
1778 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
1780 if (commit
->object
.flags
& SHOWN
)
1781 return commit_ignore
;
1782 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
))
1783 return commit_ignore
;
1786 if (commit
->object
.flags
& UNINTERESTING
)
1787 return commit_ignore
;
1788 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1789 return commit_ignore
;
1790 if (revs
->no_merges
&& commit
->parents
&& commit
->parents
->next
)
1791 return commit_ignore
;
1792 if (revs
->merges_only
&& !(commit
->parents
&& commit
->parents
->next
))
1793 return commit_ignore
;
1794 if (!commit_match(commit
, revs
))
1795 return commit_ignore
;
1796 if (revs
->prune
&& revs
->dense
) {
1797 /* Commit without changes? */
1798 if (commit
->object
.flags
& TREESAME
) {
1799 /* drop merges unless we want parenthood */
1800 if (!want_ancestry(revs
))
1801 return commit_ignore
;
1802 /* non-merge - always ignore it */
1803 if (!commit
->parents
|| !commit
->parents
->next
)
1804 return commit_ignore
;
1810 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
1812 enum commit_action action
= get_commit_action(revs
, commit
);
1814 if (action
== commit_show
&&
1816 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
1817 if (rewrite_parents(revs
, commit
) < 0)
1818 return commit_error
;
1823 static struct commit
*get_revision_1(struct rev_info
*revs
)
1829 struct commit_list
*entry
= revs
->commits
;
1830 struct commit
*commit
= entry
->item
;
1832 revs
->commits
= entry
->next
;
1835 if (revs
->reflog_info
)
1836 fake_reflog_parent(revs
->reflog_info
, commit
);
1839 * If we haven't done the list limiting, we need to look at
1840 * the parents here. We also need to do the date-based limiting
1841 * that we'd otherwise have done in limit_list().
1843 if (!revs
->limited
) {
1844 if (revs
->max_age
!= -1 &&
1845 (commit
->date
< revs
->max_age
))
1847 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
1848 die("Failed to traverse parents of commit %s",
1849 sha1_to_hex(commit
->object
.sha1
));
1852 switch (simplify_commit(revs
, commit
)) {
1856 die("Failed to simplify parents of commit %s",
1857 sha1_to_hex(commit
->object
.sha1
));
1861 } while (revs
->commits
);
1865 static void gc_boundary(struct object_array
*array
)
1867 unsigned nr
= array
->nr
;
1868 unsigned alloc
= array
->alloc
;
1869 struct object_array_entry
*objects
= array
->objects
;
1873 for (i
= j
= 0; i
< nr
; i
++) {
1874 if (objects
[i
].item
->flags
& SHOWN
)
1877 objects
[j
] = objects
[i
];
1880 for (i
= j
; i
< nr
; i
++)
1881 objects
[i
].item
= NULL
;
1886 static void create_boundary_commit_list(struct rev_info
*revs
)
1890 struct object_array
*array
= &revs
->boundary_commits
;
1891 struct object_array_entry
*objects
= array
->objects
;
1894 * If revs->commits is non-NULL at this point, an error occurred in
1895 * get_revision_1(). Ignore the error and continue printing the
1896 * boundary commits anyway. (This is what the code has always
1899 if (revs
->commits
) {
1900 free_commit_list(revs
->commits
);
1901 revs
->commits
= NULL
;
1905 * Put all of the actual boundary commits from revs->boundary_commits
1906 * into revs->commits
1908 for (i
= 0; i
< array
->nr
; i
++) {
1909 c
= (struct commit
*)(objects
[i
].item
);
1912 if (!(c
->object
.flags
& CHILD_SHOWN
))
1914 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
1916 c
->object
.flags
|= BOUNDARY
;
1917 commit_list_insert(c
, &revs
->commits
);
1921 * If revs->topo_order is set, sort the boundary commits
1922 * in topological order
1924 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1927 static struct commit
*get_revision_internal(struct rev_info
*revs
)
1929 struct commit
*c
= NULL
;
1930 struct commit_list
*l
;
1932 if (revs
->boundary
== 2) {
1934 * All of the normal commits have already been returned,
1935 * and we are now returning boundary commits.
1936 * create_boundary_commit_list() has populated
1937 * revs->commits with the remaining commits to return.
1939 c
= pop_commit(&revs
->commits
);
1941 c
->object
.flags
|= SHOWN
;
1946 * Now pick up what they want to give us
1948 c
= get_revision_1(revs
);
1950 while (0 < revs
->skip_count
) {
1952 c
= get_revision_1(revs
);
1959 * Check the max_count.
1961 switch (revs
->max_count
) {
1972 c
->object
.flags
|= SHOWN
;
1974 if (!revs
->boundary
) {
1980 * get_revision_1() runs out the commits, and
1981 * we are done computing the boundaries.
1982 * switch to boundary commits output mode.
1987 * Update revs->commits to contain the list of
1990 create_boundary_commit_list(revs
);
1992 return get_revision_internal(revs
);
1996 * boundary commits are the commits that are parents of the
1997 * ones we got from get_revision_1() but they themselves are
1998 * not returned from get_revision_1(). Before returning
1999 * 'c', we need to mark its parents that they could be boundaries.
2002 for (l
= c
->parents
; l
; l
= l
->next
) {
2004 p
= &(l
->item
->object
);
2005 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
2007 p
->flags
|= CHILD_SHOWN
;
2008 gc_boundary(&revs
->boundary_commits
);
2009 add_object_array(p
, NULL
, &revs
->boundary_commits
);
2015 struct commit
*get_revision(struct rev_info
*revs
)
2018 struct commit_list
*reversed
;
2020 if (revs
->reverse
) {
2022 while ((c
= get_revision_internal(revs
))) {
2023 commit_list_insert(c
, &reversed
);
2025 revs
->commits
= reversed
;
2027 revs
->reverse_output_stage
= 1;
2030 if (revs
->reverse_output_stage
)
2031 return pop_commit(&revs
->commits
);
2033 c
= get_revision_internal(revs
);
2034 if (c
&& revs
->graph
)
2035 graph_update(revs
->graph
, c
);