11 #include "reflog-walk.h"
12 #include "patch-ids.h"
16 volatile show_early_output_fn_t show_early_output
;
18 static char *path_name(struct name_path
*path
, const char *name
)
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
))
136 die("object ranges do not make sense when not walking revisions");
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 uniniteresting, 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), and
260 * REV_TREE_DIFFERENT otherwise (of course if the trees are
261 * the same we want REV_TREE_SAME). That means that once we
262 * get to REV_TREE_DIFFERENT, we do not have to look any further.
264 static int tree_difference
= REV_TREE_SAME
;
266 static void file_add_remove(struct diff_options
*options
,
267 int addremove
, unsigned mode
,
268 const unsigned char *sha1
,
269 const char *fullpath
)
271 int diff
= REV_TREE_DIFFERENT
;
274 * Is it an add of a new file? It means that the old tree
275 * didn't have it at all, so we will turn "REV_TREE_SAME" ->
276 * "REV_TREE_NEW", but leave any "REV_TREE_DIFFERENT" alone
277 * (and if it already was "REV_TREE_NEW", we'll keep it
278 * "REV_TREE_NEW" of course).
280 if (addremove
== '+') {
281 diff
= tree_difference
;
282 if (diff
!= REV_TREE_SAME
)
286 tree_difference
= diff
;
287 if (tree_difference
== REV_TREE_DIFFERENT
)
288 DIFF_OPT_SET(options
, HAS_CHANGES
);
291 static void file_change(struct diff_options
*options
,
292 unsigned old_mode
, unsigned new_mode
,
293 const unsigned char *old_sha1
,
294 const unsigned char *new_sha1
,
295 const char *fullpath
)
297 tree_difference
= REV_TREE_DIFFERENT
;
298 DIFF_OPT_SET(options
, HAS_CHANGES
);
301 static int rev_compare_tree(struct rev_info
*revs
, struct commit
*parent
, struct commit
*commit
)
303 struct tree
*t1
= parent
->tree
;
304 struct tree
*t2
= commit
->tree
;
309 if (revs
->simplify_by_decoration
) {
311 * If we are simplifying by decoration, then the commit
312 * is worth showing if it has a tag pointing at it.
314 if (lookup_decoration(&name_decoration
, &commit
->object
))
315 return REV_TREE_DIFFERENT
;
317 * A commit that is not pointed by a tag is uninteresting
318 * if we are not limited by path. This means that you will
319 * see the usual "commits that touch the paths" plus any
320 * tagged commit by specifying both --simplify-by-decoration
323 if (!revs
->prune_data
)
324 return REV_TREE_SAME
;
327 return REV_TREE_DIFFERENT
;
328 tree_difference
= REV_TREE_SAME
;
329 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
330 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
332 return REV_TREE_DIFFERENT
;
333 return tree_difference
;
336 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
341 struct tree_desc empty
, real
;
342 struct tree
*t1
= commit
->tree
;
347 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
350 init_tree_desc(&real
, tree
, size
);
351 init_tree_desc(&empty
, "", 0);
353 tree_difference
= REV_TREE_SAME
;
354 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
355 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
358 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
361 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
363 struct commit_list
**pp
, *parent
;
364 int tree_changed
= 0, tree_same
= 0;
367 * If we don't do pruning, everything is interesting
375 if (!commit
->parents
) {
376 if (rev_same_tree_as_empty(revs
, commit
))
377 commit
->object
.flags
|= TREESAME
;
382 * Normal non-merge commit? If we don't want to make the
383 * history dense, we consider it always to be a change..
385 if (!revs
->dense
&& !commit
->parents
->next
)
388 pp
= &commit
->parents
;
389 while ((parent
= *pp
) != NULL
) {
390 struct commit
*p
= parent
->item
;
392 if (parse_commit(p
) < 0)
393 die("cannot simplify commit %s (because of %s)",
394 sha1_to_hex(commit
->object
.sha1
),
395 sha1_to_hex(p
->object
.sha1
));
396 switch (rev_compare_tree(revs
, p
, commit
)) {
399 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
400 /* Even if a merge with an uninteresting
401 * side branch brought the entire change
402 * we are interested in, we do not want
403 * to lose the other branches of this
404 * merge, so we just keep going.
410 commit
->parents
= parent
;
411 commit
->object
.flags
|= TREESAME
;
415 if (revs
->remove_empty_trees
&&
416 rev_same_tree_as_empty(revs
, p
)) {
417 /* We are adding all the specified
418 * paths from this parent, so the
419 * history beyond this parent is not
420 * interesting. Remove its parents
421 * (they are grandparents for us).
422 * IOW, we pretend this parent is a
425 if (parse_commit(p
) < 0)
426 die("cannot simplify commit %s (invalid %s)",
427 sha1_to_hex(commit
->object
.sha1
),
428 sha1_to_hex(p
->object
.sha1
));
432 case REV_TREE_DIFFERENT
:
437 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
439 if (tree_changed
&& !tree_same
)
441 commit
->object
.flags
|= TREESAME
;
444 static void insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
445 struct commit_list
*cached_base
, struct commit_list
**cache
)
447 struct commit_list
*new_entry
;
449 if (cached_base
&& p
->date
< cached_base
->item
->date
)
450 new_entry
= insert_by_date(p
, &cached_base
->next
);
452 new_entry
= insert_by_date(p
, head
);
454 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
458 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
459 struct commit_list
**list
, struct commit_list
**cache_ptr
)
461 struct commit_list
*parent
= commit
->parents
;
463 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
465 if (commit
->object
.flags
& ADDED
)
467 commit
->object
.flags
|= ADDED
;
470 * If the commit is uninteresting, don't try to
471 * prune parents - we want the maximal uninteresting
474 * Normally we haven't parsed the parent
475 * yet, so we won't have a parent of a parent
476 * here. However, it may turn out that we've
477 * reached this commit some other way (where it
478 * wasn't uninteresting), in which case we need
479 * to mark its parents recursively too..
481 if (commit
->object
.flags
& UNINTERESTING
) {
483 struct commit
*p
= parent
->item
;
484 parent
= parent
->next
;
486 p
->object
.flags
|= UNINTERESTING
;
487 if (parse_commit(p
) < 0)
490 mark_parents_uninteresting(p
);
491 if (p
->object
.flags
& SEEN
)
493 p
->object
.flags
|= SEEN
;
494 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
500 * Ok, the commit wasn't uninteresting. Try to
501 * simplify the commit history and find the parent
502 * that has no differences in the path set if one exists.
504 try_to_simplify_commit(revs
, commit
);
509 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
511 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
512 struct commit
*p
= parent
->item
;
514 if (parse_commit(p
) < 0)
516 if (revs
->show_source
&& !p
->util
)
517 p
->util
= commit
->util
;
518 p
->object
.flags
|= left_flag
;
519 if (!(p
->object
.flags
& SEEN
)) {
520 p
->object
.flags
|= SEEN
;
521 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
523 if (revs
->first_parent_only
)
529 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
531 struct commit_list
*p
;
532 int left_count
= 0, right_count
= 0;
534 struct patch_ids ids
;
536 /* First count the commits on the left and on the right */
537 for (p
= list
; p
; p
= p
->next
) {
538 struct commit
*commit
= p
->item
;
539 unsigned flags
= commit
->object
.flags
;
540 if (flags
& BOUNDARY
)
542 else if (flags
& SYMMETRIC_LEFT
)
548 left_first
= left_count
< right_count
;
549 init_patch_ids(&ids
);
550 if (revs
->diffopt
.nr_paths
) {
551 ids
.diffopts
.nr_paths
= revs
->diffopt
.nr_paths
;
552 ids
.diffopts
.paths
= revs
->diffopt
.paths
;
553 ids
.diffopts
.pathlens
= revs
->diffopt
.pathlens
;
556 /* Compute patch-ids for one side */
557 for (p
= list
; p
; p
= p
->next
) {
558 struct commit
*commit
= p
->item
;
559 unsigned flags
= commit
->object
.flags
;
561 if (flags
& BOUNDARY
)
564 * If we have fewer left, left_first is set and we omit
565 * commits on the right branch in this loop. If we have
566 * fewer right, we skip the left ones.
568 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
570 commit
->util
= add_commit_patch_id(commit
, &ids
);
573 /* Check the other side */
574 for (p
= list
; p
; p
= p
->next
) {
575 struct commit
*commit
= p
->item
;
577 unsigned flags
= commit
->object
.flags
;
579 if (flags
& BOUNDARY
)
582 * If we have fewer left, left_first is set and we omit
583 * commits on the left branch in this loop.
585 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
589 * Have we seen the same patch id?
591 id
= has_commit_patch_id(commit
, &ids
);
595 commit
->object
.flags
|= SHOWN
;
598 /* Now check the original side for seen ones */
599 for (p
= list
; p
; p
= p
->next
) {
600 struct commit
*commit
= p
->item
;
601 struct patch_id
*ent
;
607 commit
->object
.flags
|= SHOWN
;
611 free_patch_ids(&ids
);
614 /* How many extra uninteresting commits we want to see.. */
617 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
620 * No source list at all? We're definitely done..
626 * Does the destination list contain entries with a date
627 * before the source list? Definitely _not_ done.
629 if (date
< src
->item
->date
)
633 * Does the source list still have interesting commits in
634 * it? Definitely not done..
636 if (!everybody_uninteresting(src
))
639 /* Ok, we're closing in.. */
643 static int limit_list(struct rev_info
*revs
)
646 unsigned long date
= ~0ul;
647 struct commit_list
*list
= revs
->commits
;
648 struct commit_list
*newlist
= NULL
;
649 struct commit_list
**p
= &newlist
;
652 struct commit_list
*entry
= list
;
653 struct commit
*commit
= list
->item
;
654 struct object
*obj
= &commit
->object
;
655 show_early_output_fn_t show
;
660 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
661 obj
->flags
|= UNINTERESTING
;
662 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
664 if (obj
->flags
& UNINTERESTING
) {
665 mark_parents_uninteresting(commit
);
667 p
= &commit_list_insert(commit
, p
)->next
;
668 slop
= still_interesting(list
, date
, slop
);
671 /* If showing all, add the whole pending list to the end */
676 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
679 p
= &commit_list_insert(commit
, p
)->next
;
681 show
= show_early_output
;
686 show_early_output
= NULL
;
688 if (revs
->cherry_pick
)
689 cherry_pick_list(newlist
, revs
);
691 revs
->commits
= newlist
;
697 int warned_bad_reflog
;
698 struct rev_info
*all_revs
;
699 const char *name_for_errormsg
;
702 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
704 struct all_refs_cb
*cb
= cb_data
;
705 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
707 add_pending_object(cb
->all_revs
, object
, path
);
711 static void handle_refs(struct rev_info
*revs
, unsigned flags
,
712 int (*for_each
)(each_ref_fn
, void *))
714 struct all_refs_cb cb
;
716 cb
.all_flags
= flags
;
717 for_each(handle_one_ref
, &cb
);
720 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
722 struct all_refs_cb
*cb
= cb_data
;
723 if (!is_null_sha1(sha1
)) {
724 struct object
*o
= parse_object(sha1
);
726 o
->flags
|= cb
->all_flags
;
727 add_pending_object(cb
->all_revs
, o
, "");
729 else if (!cb
->warned_bad_reflog
) {
730 warning("reflog of '%s' references pruned commits",
731 cb
->name_for_errormsg
);
732 cb
->warned_bad_reflog
= 1;
737 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
738 const char *email
, unsigned long timestamp
, int tz
,
739 const char *message
, void *cb_data
)
741 handle_one_reflog_commit(osha1
, cb_data
);
742 handle_one_reflog_commit(nsha1
, cb_data
);
746 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
748 struct all_refs_cb
*cb
= cb_data
;
749 cb
->warned_bad_reflog
= 0;
750 cb
->name_for_errormsg
= path
;
751 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
755 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
757 struct all_refs_cb cb
;
759 cb
.all_flags
= flags
;
760 for_each_reflog(handle_one_reflog
, &cb
);
763 static int add_parents_only(struct rev_info
*revs
, const char *arg
, int flags
)
765 unsigned char sha1
[20];
767 struct commit
*commit
;
768 struct commit_list
*parents
;
771 flags
^= UNINTERESTING
;
774 if (get_sha1(arg
, sha1
))
777 it
= get_reference(revs
, arg
, sha1
, 0);
778 if (it
->type
!= OBJ_TAG
)
780 if (!((struct tag
*)it
)->tagged
)
782 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
784 if (it
->type
!= OBJ_COMMIT
)
786 commit
= (struct commit
*)it
;
787 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
788 it
= &parents
->item
->object
;
790 add_pending_object(revs
, it
, arg
);
795 void init_revisions(struct rev_info
*revs
, const char *prefix
)
797 memset(revs
, 0, sizeof(*revs
));
799 revs
->abbrev
= DEFAULT_ABBREV
;
800 revs
->ignore_merges
= 1;
801 revs
->simplify_history
= 1;
802 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
803 DIFF_OPT_SET(&revs
->pruning
, QUIET
);
804 revs
->pruning
.add_remove
= file_add_remove
;
805 revs
->pruning
.change
= file_change
;
808 revs
->prefix
= prefix
;
811 revs
->skip_count
= -1;
812 revs
->max_count
= -1;
814 revs
->commit_format
= CMIT_FMT_DEFAULT
;
816 revs
->grep_filter
.status_only
= 1;
817 revs
->grep_filter
.pattern_tail
= &(revs
->grep_filter
.pattern_list
);
818 revs
->grep_filter
.regflags
= REG_NEWLINE
;
820 diff_setup(&revs
->diffopt
);
821 if (prefix
&& !revs
->diffopt
.prefix
) {
822 revs
->diffopt
.prefix
= prefix
;
823 revs
->diffopt
.prefix_length
= strlen(prefix
);
827 static void add_pending_commit_list(struct rev_info
*revs
,
828 struct commit_list
*commit_list
,
831 while (commit_list
) {
832 struct object
*object
= &commit_list
->item
->object
;
833 object
->flags
|= flags
;
834 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
835 commit_list
= commit_list
->next
;
839 static void prepare_show_merge(struct rev_info
*revs
)
841 struct commit_list
*bases
;
842 struct commit
*head
, *other
;
843 unsigned char sha1
[20];
844 const char **prune
= NULL
;
845 int i
, prune_num
= 1; /* counting terminating NULL */
847 if (get_sha1("HEAD", sha1
) || !(head
= lookup_commit(sha1
)))
848 die("--merge without HEAD?");
849 if (get_sha1("MERGE_HEAD", sha1
) || !(other
= lookup_commit(sha1
)))
850 die("--merge without MERGE_HEAD?");
851 add_pending_object(revs
, &head
->object
, "HEAD");
852 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
853 bases
= get_merge_bases(head
, other
, 1);
854 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
855 free_commit_list(bases
);
856 head
->object
.flags
|= SYMMETRIC_LEFT
;
860 for (i
= 0; i
< active_nr
; i
++) {
861 struct cache_entry
*ce
= active_cache
[i
];
864 if (ce_path_match(ce
, revs
->prune_data
)) {
866 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
867 prune
[prune_num
-2] = ce
->name
;
868 prune
[prune_num
-1] = NULL
;
870 while ((i
+1 < active_nr
) &&
871 ce_same_name(ce
, active_cache
[i
+1]))
874 revs
->prune_data
= prune
;
878 int handle_revision_arg(const char *arg
, struct rev_info
*revs
,
880 int cant_be_filename
)
884 struct object
*object
;
885 unsigned char sha1
[20];
888 dotdot
= strstr(arg
, "..");
890 unsigned char from_sha1
[20];
891 const char *next
= dotdot
+ 2;
892 const char *this = arg
;
893 int symmetric
= *next
== '.';
894 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
903 if (!get_sha1(this, from_sha1
) &&
904 !get_sha1(next
, sha1
)) {
905 struct commit
*a
, *b
;
906 struct commit_list
*exclude
;
908 a
= lookup_commit_reference(from_sha1
);
909 b
= lookup_commit_reference(sha1
);
912 "Invalid symmetric difference expression %s...%s" :
913 "Invalid revision range %s..%s",
917 if (!cant_be_filename
) {
919 verify_non_filename(revs
->prefix
, arg
);
923 exclude
= get_merge_bases(a
, b
, 1);
924 add_pending_commit_list(revs
, exclude
,
926 free_commit_list(exclude
);
927 a
->object
.flags
|= flags
| SYMMETRIC_LEFT
;
929 a
->object
.flags
|= flags_exclude
;
930 b
->object
.flags
|= flags
;
931 add_pending_object(revs
, &a
->object
, this);
932 add_pending_object(revs
, &b
->object
, next
);
937 dotdot
= strstr(arg
, "^@");
938 if (dotdot
&& !dotdot
[2]) {
940 if (add_parents_only(revs
, arg
, flags
))
944 dotdot
= strstr(arg
, "^!");
945 if (dotdot
&& !dotdot
[2]) {
947 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
953 local_flags
= UNINTERESTING
;
956 if (get_sha1_with_mode(arg
, sha1
, &mode
))
958 if (!cant_be_filename
)
959 verify_non_filename(revs
->prefix
, arg
);
960 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
961 add_pending_object_with_mode(revs
, object
, arg
, mode
);
965 void read_revisions_from_stdin(struct rev_info
*revs
)
969 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
970 int len
= strlen(line
);
971 if (len
&& line
[len
- 1] == '\n')
976 die("options not supported in --stdin mode");
977 if (handle_revision_arg(line
, revs
, 0, 1))
978 die("bad revision '%s'", line
);
982 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
984 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
987 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
989 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
992 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
994 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
997 static void add_ignore_packed(struct rev_info
*revs
, const char *name
)
999 int num
= ++revs
->num_ignore_packed
;
1001 revs
->ignore_packed
= xrealloc(revs
->ignore_packed
,
1002 sizeof(const char *) * (num
+ 1));
1003 revs
->ignore_packed
[num
-1] = name
;
1004 revs
->ignore_packed
[num
] = NULL
;
1007 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1008 int *unkc
, const char **unkv
)
1010 const char *arg
= argv
[0];
1012 /* pseudo revision arguments */
1013 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1014 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1015 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1016 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk"))
1018 unkv
[(*unkc
)++] = arg
;
1022 if (!prefixcmp(arg
, "--max-count=")) {
1023 revs
->max_count
= atoi(arg
+ 12);
1024 } else if (!prefixcmp(arg
, "--skip=")) {
1025 revs
->skip_count
= atoi(arg
+ 7);
1026 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1027 /* accept -<digit>, like traditional "head" */
1028 revs
->max_count
= atoi(arg
+ 1);
1029 } else if (!strcmp(arg
, "-n")) {
1031 return error("-n requires an argument");
1032 revs
->max_count
= atoi(argv
[1]);
1034 } else if (!prefixcmp(arg
, "-n")) {
1035 revs
->max_count
= atoi(arg
+ 2);
1036 } else if (!prefixcmp(arg
, "--max-age=")) {
1037 revs
->max_age
= atoi(arg
+ 10);
1038 } else if (!prefixcmp(arg
, "--since=")) {
1039 revs
->max_age
= approxidate(arg
+ 8);
1040 } else if (!prefixcmp(arg
, "--after=")) {
1041 revs
->max_age
= approxidate(arg
+ 8);
1042 } else if (!prefixcmp(arg
, "--min-age=")) {
1043 revs
->min_age
= atoi(arg
+ 10);
1044 } else if (!prefixcmp(arg
, "--before=")) {
1045 revs
->min_age
= approxidate(arg
+ 9);
1046 } else if (!prefixcmp(arg
, "--until=")) {
1047 revs
->min_age
= approxidate(arg
+ 8);
1048 } else if (!strcmp(arg
, "--first-parent")) {
1049 revs
->first_parent_only
= 1;
1050 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1051 init_reflog_walk(&revs
->reflog_info
);
1052 } else if (!strcmp(arg
, "--default")) {
1054 return error("bad --default argument");
1055 revs
->def
= argv
[1];
1057 } else if (!strcmp(arg
, "--merge")) {
1058 revs
->show_merge
= 1;
1059 } else if (!strcmp(arg
, "--topo-order")) {
1061 revs
->topo_order
= 1;
1062 } else if (!strcmp(arg
, "--simplify-merges")) {
1063 revs
->simplify_merges
= 1;
1064 revs
->rewrite_parents
= 1;
1065 revs
->simplify_history
= 0;
1067 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1068 revs
->simplify_merges
= 1;
1069 revs
->rewrite_parents
= 1;
1070 revs
->simplify_history
= 0;
1071 revs
->simplify_by_decoration
= 1;
1074 load_ref_decorations();
1075 } else if (!strcmp(arg
, "--date-order")) {
1077 revs
->topo_order
= 1;
1078 } else if (!prefixcmp(arg
, "--early-output")) {
1082 count
= atoi(arg
+15);
1085 revs
->topo_order
= 1;
1086 revs
->early_output
= count
;
1088 } else if (!strcmp(arg
, "--parents")) {
1089 revs
->rewrite_parents
= 1;
1090 revs
->print_parents
= 1;
1091 } else if (!strcmp(arg
, "--dense")) {
1093 } else if (!strcmp(arg
, "--sparse")) {
1095 } else if (!strcmp(arg
, "--show-all")) {
1097 } else if (!strcmp(arg
, "--remove-empty")) {
1098 revs
->remove_empty_trees
= 1;
1099 } else if (!strcmp(arg
, "--no-merges")) {
1100 revs
->no_merges
= 1;
1101 } else if (!strcmp(arg
, "--boundary")) {
1103 } else if (!strcmp(arg
, "--left-right")) {
1104 revs
->left_right
= 1;
1105 } else if (!strcmp(arg
, "--cherry-pick")) {
1106 revs
->cherry_pick
= 1;
1108 } else if (!strcmp(arg
, "--objects")) {
1109 revs
->tag_objects
= 1;
1110 revs
->tree_objects
= 1;
1111 revs
->blob_objects
= 1;
1112 } else if (!strcmp(arg
, "--objects-edge")) {
1113 revs
->tag_objects
= 1;
1114 revs
->tree_objects
= 1;
1115 revs
->blob_objects
= 1;
1116 revs
->edge_hint
= 1;
1117 } else if (!strcmp(arg
, "--unpacked")) {
1119 free(revs
->ignore_packed
);
1120 revs
->ignore_packed
= NULL
;
1121 revs
->num_ignore_packed
= 0;
1122 } else if (!prefixcmp(arg
, "--unpacked=")) {
1124 add_ignore_packed(revs
, arg
+11);
1125 } else if (!strcmp(arg
, "-r")) {
1127 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1128 } else if (!strcmp(arg
, "-t")) {
1130 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1131 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1132 } else if (!strcmp(arg
, "-m")) {
1133 revs
->ignore_merges
= 0;
1134 } else if (!strcmp(arg
, "-c")) {
1136 revs
->dense_combined_merges
= 0;
1137 revs
->combine_merges
= 1;
1138 } else if (!strcmp(arg
, "--cc")) {
1140 revs
->dense_combined_merges
= 1;
1141 revs
->combine_merges
= 1;
1142 } else if (!strcmp(arg
, "-v")) {
1143 revs
->verbose_header
= 1;
1144 } else if (!strcmp(arg
, "--pretty")) {
1145 revs
->verbose_header
= 1;
1146 get_commit_format(arg
+8, revs
);
1147 } else if (!prefixcmp(arg
, "--pretty=") || !prefixcmp(arg
, "--format=")) {
1148 revs
->verbose_header
= 1;
1149 get_commit_format(arg
+9, revs
);
1150 } else if (!strcmp(arg
, "--oneline")) {
1151 revs
->verbose_header
= 1;
1152 get_commit_format("oneline", revs
);
1153 revs
->abbrev_commit
= 1;
1154 } else if (!strcmp(arg
, "--graph")) {
1155 revs
->topo_order
= 1;
1156 revs
->rewrite_parents
= 1;
1157 revs
->graph
= graph_init(revs
);
1158 } else if (!strcmp(arg
, "--root")) {
1159 revs
->show_root_diff
= 1;
1160 } else if (!strcmp(arg
, "--no-commit-id")) {
1161 revs
->no_commit_id
= 1;
1162 } else if (!strcmp(arg
, "--always")) {
1163 revs
->always_show_header
= 1;
1164 } else if (!strcmp(arg
, "--no-abbrev")) {
1166 } else if (!strcmp(arg
, "--abbrev")) {
1167 revs
->abbrev
= DEFAULT_ABBREV
;
1168 } else if (!prefixcmp(arg
, "--abbrev=")) {
1169 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1170 if (revs
->abbrev
< MINIMUM_ABBREV
)
1171 revs
->abbrev
= MINIMUM_ABBREV
;
1172 else if (revs
->abbrev
> 40)
1174 } else if (!strcmp(arg
, "--abbrev-commit")) {
1175 revs
->abbrev_commit
= 1;
1176 } else if (!strcmp(arg
, "--full-diff")) {
1178 revs
->full_diff
= 1;
1179 } else if (!strcmp(arg
, "--full-history")) {
1180 revs
->simplify_history
= 0;
1181 } else if (!strcmp(arg
, "--relative-date")) {
1182 revs
->date_mode
= DATE_RELATIVE
;
1183 } else if (!strncmp(arg
, "--date=", 7)) {
1184 revs
->date_mode
= parse_date_format(arg
+ 7);
1185 } else if (!strcmp(arg
, "--log-size")) {
1186 revs
->show_log_size
= 1;
1189 * Grepping the commit log
1191 else if (!prefixcmp(arg
, "--author=")) {
1192 add_header_grep(revs
, GREP_HEADER_AUTHOR
, arg
+9);
1193 } else if (!prefixcmp(arg
, "--committer=")) {
1194 add_header_grep(revs
, GREP_HEADER_COMMITTER
, arg
+12);
1195 } else if (!prefixcmp(arg
, "--grep=")) {
1196 add_message_grep(revs
, arg
+7);
1197 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1198 revs
->grep_filter
.regflags
|= REG_EXTENDED
;
1199 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1200 revs
->grep_filter
.regflags
|= REG_ICASE
;
1201 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1202 revs
->grep_filter
.fixed
= 1;
1203 } else if (!strcmp(arg
, "--all-match")) {
1204 revs
->grep_filter
.all_match
= 1;
1205 } else if (!prefixcmp(arg
, "--encoding=")) {
1207 if (strcmp(arg
, "none"))
1208 git_log_output_encoding
= xstrdup(arg
);
1210 git_log_output_encoding
= "";
1211 } else if (!strcmp(arg
, "--reverse")) {
1213 } else if (!strcmp(arg
, "--children")) {
1214 revs
->children
.name
= "children";
1217 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1219 unkv
[(*unkc
)++] = arg
;
1226 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1227 const struct option
*options
,
1228 const char * const usagestr
[])
1230 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1231 &ctx
->cpidx
, ctx
->out
);
1233 error("unknown option `%s'", ctx
->argv
[0]);
1234 usage_with_options(usagestr
, options
);
1241 * Parse revision information, filling in the "rev_info" structure,
1242 * and removing the used arguments from the argument list.
1244 * Returns the number of arguments left that weren't recognized
1245 * (which are also moved to the head of the argument list)
1247 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, const char *def
)
1249 int i
, flags
, left
, seen_dashdash
;
1251 /* First, search for "--" */
1253 for (i
= 1; i
< argc
; i
++) {
1254 const char *arg
= argv
[i
];
1255 if (strcmp(arg
, "--"))
1260 revs
->prune_data
= get_pathspec(revs
->prefix
, argv
+ i
+ 1);
1265 /* Second, deal with arguments and options */
1267 for (left
= i
= 1; i
< argc
; i
++) {
1268 const char *arg
= argv
[i
];
1272 if (!strcmp(arg
, "--all")) {
1273 handle_refs(revs
, flags
, for_each_ref
);
1274 handle_refs(revs
, flags
, head_ref
);
1277 if (!strcmp(arg
, "--branches")) {
1278 handle_refs(revs
, flags
, for_each_branch_ref
);
1281 if (!strcmp(arg
, "--tags")) {
1282 handle_refs(revs
, flags
, for_each_tag_ref
);
1285 if (!strcmp(arg
, "--remotes")) {
1286 handle_refs(revs
, flags
, for_each_remote_ref
);
1289 if (!strcmp(arg
, "--reflog")) {
1290 handle_reflog(revs
, flags
);
1293 if (!strcmp(arg
, "--not")) {
1294 flags
^= UNINTERESTING
;
1297 if (!strcmp(arg
, "--no-walk")) {
1301 if (!strcmp(arg
, "--do-walk")) {
1306 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1316 if (handle_revision_arg(arg
, revs
, flags
, seen_dashdash
)) {
1318 if (seen_dashdash
|| *arg
== '^')
1319 die("bad revision '%s'", arg
);
1321 /* If we didn't have a "--":
1322 * (1) all filenames must exist;
1323 * (2) all rev-args must not be interpretable
1324 * as a valid filename.
1325 * but the latter we have checked in the main loop.
1327 for (j
= i
; j
< argc
; j
++)
1328 verify_filename(revs
->prefix
, argv
[j
]);
1330 revs
->prune_data
= get_pathspec(revs
->prefix
,
1336 if (revs
->def
== NULL
)
1338 if (revs
->show_merge
)
1339 prepare_show_merge(revs
);
1340 if (revs
->def
&& !revs
->pending
.nr
) {
1341 unsigned char sha1
[20];
1342 struct object
*object
;
1344 if (get_sha1_with_mode(revs
->def
, sha1
, &mode
))
1345 die("bad default revision '%s'", revs
->def
);
1346 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1347 add_pending_object_with_mode(revs
, object
, revs
->def
, mode
);
1350 /* Did the user ask for any diff output? Run the diff! */
1351 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1354 /* Pickaxe, diff-filter and rename following need diffs */
1355 if (revs
->diffopt
.pickaxe
||
1356 revs
->diffopt
.filter
||
1357 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1360 if (revs
->topo_order
)
1363 if (revs
->prune_data
) {
1364 diff_tree_setup_paths(revs
->prune_data
, &revs
->pruning
);
1365 /* Can't prune commits with rename following: the paths change.. */
1366 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1368 if (!revs
->full_diff
)
1369 diff_tree_setup_paths(revs
->prune_data
, &revs
->diffopt
);
1371 if (revs
->combine_merges
) {
1372 revs
->ignore_merges
= 0;
1373 if (revs
->dense_combined_merges
&& !revs
->diffopt
.output_format
)
1374 revs
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1376 revs
->diffopt
.abbrev
= revs
->abbrev
;
1377 if (diff_setup_done(&revs
->diffopt
) < 0)
1378 die("diff_setup_done failed");
1380 compile_grep_patterns(&revs
->grep_filter
);
1382 if (revs
->reverse
&& revs
->reflog_info
)
1383 die("cannot combine --reverse with --walk-reflogs");
1384 if (revs
->rewrite_parents
&& revs
->children
.name
)
1385 die("cannot combine --parents and --children");
1388 * Limitations on the graph functionality
1390 if (revs
->reverse
&& revs
->graph
)
1391 die("cannot combine --reverse with --graph");
1393 if (revs
->reflog_info
&& revs
->graph
)
1394 die("cannot combine --walk-reflogs with --graph");
1399 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1401 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1404 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1407 static int remove_duplicate_parents(struct commit
*commit
)
1409 struct commit_list
**pp
, *p
;
1410 int surviving_parents
;
1412 /* Examine existing parents while marking ones we have seen... */
1413 pp
= &commit
->parents
;
1414 while ((p
= *pp
) != NULL
) {
1415 struct commit
*parent
= p
->item
;
1416 if (parent
->object
.flags
& TMP_MARK
) {
1420 parent
->object
.flags
|= TMP_MARK
;
1423 /* count them while clearing the temporary mark */
1424 surviving_parents
= 0;
1425 for (p
= commit
->parents
; p
; p
= p
->next
) {
1426 p
->item
->object
.flags
&= ~TMP_MARK
;
1427 surviving_parents
++;
1429 return surviving_parents
;
1432 struct merge_simplify_state
{
1433 struct commit
*simplified
;
1436 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1438 struct merge_simplify_state
*st
;
1440 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1442 st
= xcalloc(1, sizeof(*st
));
1443 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1448 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1450 struct commit_list
*p
;
1451 struct merge_simplify_state
*st
, *pst
;
1454 st
= locate_simplify_state(revs
, commit
);
1457 * Have we handled this one?
1463 * An UNINTERESTING commit simplifies to itself, so does a
1464 * root commit. We do not rewrite parents of such commit
1467 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
1468 st
->simplified
= commit
;
1473 * Do we know what commit all of our parents should be rewritten to?
1474 * Otherwise we are not ready to rewrite this one yet.
1476 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
1477 pst
= locate_simplify_state(revs
, p
->item
);
1478 if (!pst
->simplified
) {
1479 tail
= &commit_list_insert(p
->item
, tail
)->next
;
1484 tail
= &commit_list_insert(commit
, tail
)->next
;
1489 * Rewrite our list of parents.
1491 for (p
= commit
->parents
; p
; p
= p
->next
) {
1492 pst
= locate_simplify_state(revs
, p
->item
);
1493 p
->item
= pst
->simplified
;
1495 cnt
= remove_duplicate_parents(commit
);
1498 * It is possible that we are a merge and one side branch
1499 * does not have any commit that touches the given paths;
1500 * in such a case, the immediate parents will be rewritten
1501 * to different commits.
1503 * o----X X: the commit we are looking at;
1504 * / / o: a commit that touches the paths;
1507 * Further reduce the parents by removing redundant parents.
1510 struct commit_list
*h
= reduce_heads(commit
->parents
);
1511 cnt
= commit_list_count(h
);
1512 free_commit_list(commit
->parents
);
1513 commit
->parents
= h
;
1517 * A commit simplifies to itself if it is a root, if it is
1518 * UNINTERESTING, if it touches the given paths, or if it is a
1519 * merge and its parents simplifies to more than one commits
1520 * (the first two cases are already handled at the beginning of
1523 * Otherwise, it simplifies to what its sole parent simplifies to.
1526 (commit
->object
.flags
& UNINTERESTING
) ||
1527 !(commit
->object
.flags
& TREESAME
) ||
1529 st
->simplified
= commit
;
1531 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
1532 st
->simplified
= pst
->simplified
;
1537 static void simplify_merges(struct rev_info
*revs
)
1539 struct commit_list
*list
;
1540 struct commit_list
*yet_to_do
, **tail
;
1542 if (!revs
->topo_order
)
1543 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1547 /* feed the list reversed */
1549 for (list
= revs
->commits
; list
; list
= list
->next
)
1550 commit_list_insert(list
->item
, &yet_to_do
);
1556 struct commit
*commit
= list
->item
;
1557 struct commit_list
*next
= list
->next
;
1560 tail
= simplify_one(revs
, commit
, tail
);
1564 /* clean up the result, removing the simplified ones */
1565 list
= revs
->commits
;
1566 revs
->commits
= NULL
;
1567 tail
= &revs
->commits
;
1569 struct commit
*commit
= list
->item
;
1570 struct commit_list
*next
= list
->next
;
1571 struct merge_simplify_state
*st
;
1574 st
= locate_simplify_state(revs
, commit
);
1575 if (st
->simplified
== commit
)
1576 tail
= &commit_list_insert(commit
, tail
)->next
;
1580 static void set_children(struct rev_info
*revs
)
1582 struct commit_list
*l
;
1583 for (l
= revs
->commits
; l
; l
= l
->next
) {
1584 struct commit
*commit
= l
->item
;
1585 struct commit_list
*p
;
1587 for (p
= commit
->parents
; p
; p
= p
->next
)
1588 add_child(revs
, p
->item
, commit
);
1592 int prepare_revision_walk(struct rev_info
*revs
)
1594 int nr
= revs
->pending
.nr
;
1595 struct object_array_entry
*e
, *list
;
1597 e
= list
= revs
->pending
.objects
;
1598 revs
->pending
.nr
= 0;
1599 revs
->pending
.alloc
= 0;
1600 revs
->pending
.objects
= NULL
;
1602 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
1604 if (!(commit
->object
.flags
& SEEN
)) {
1605 commit
->object
.flags
|= SEEN
;
1606 insert_by_date(commit
, &revs
->commits
);
1616 if (limit_list(revs
) < 0)
1618 if (revs
->topo_order
)
1619 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1620 if (revs
->simplify_merges
)
1621 simplify_merges(revs
);
1622 if (revs
->children
.name
)
1627 enum rewrite_result
{
1629 rewrite_one_noparents
,
1633 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
1635 struct commit_list
*cache
= NULL
;
1638 struct commit
*p
= *pp
;
1640 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
1641 return rewrite_one_error
;
1642 if (p
->parents
&& p
->parents
->next
)
1643 return rewrite_one_ok
;
1644 if (p
->object
.flags
& UNINTERESTING
)
1645 return rewrite_one_ok
;
1646 if (!(p
->object
.flags
& TREESAME
))
1647 return rewrite_one_ok
;
1649 return rewrite_one_noparents
;
1650 *pp
= p
->parents
->item
;
1654 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
1656 struct commit_list
**pp
= &commit
->parents
;
1658 struct commit_list
*parent
= *pp
;
1659 switch (rewrite_one(revs
, &parent
->item
)) {
1660 case rewrite_one_ok
:
1662 case rewrite_one_noparents
:
1665 case rewrite_one_error
:
1670 remove_duplicate_parents(commit
);
1674 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
1676 if (!opt
->grep_filter
.pattern_list
)
1678 return grep_buffer(&opt
->grep_filter
,
1679 NULL
, /* we say nothing, not even filename */
1680 commit
->buffer
, strlen(commit
->buffer
));
1683 static inline int want_ancestry(struct rev_info
*revs
)
1685 return (revs
->rewrite_parents
|| revs
->children
.name
);
1688 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
1690 if (commit
->object
.flags
& SHOWN
)
1691 return commit_ignore
;
1692 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
, revs
->ignore_packed
))
1693 return commit_ignore
;
1696 if (commit
->object
.flags
& UNINTERESTING
)
1697 return commit_ignore
;
1698 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1699 return commit_ignore
;
1700 if (revs
->no_merges
&& commit
->parents
&& commit
->parents
->next
)
1701 return commit_ignore
;
1702 if (!commit_match(commit
, revs
))
1703 return commit_ignore
;
1704 if (revs
->prune
&& revs
->dense
) {
1705 /* Commit without changes? */
1706 if (commit
->object
.flags
& TREESAME
) {
1707 /* drop merges unless we want parenthood */
1708 if (!want_ancestry(revs
))
1709 return commit_ignore
;
1710 /* non-merge - always ignore it */
1711 if (!commit
->parents
|| !commit
->parents
->next
)
1712 return commit_ignore
;
1714 if (want_ancestry(revs
) && rewrite_parents(revs
, commit
) < 0)
1715 return commit_error
;
1720 static struct commit
*get_revision_1(struct rev_info
*revs
)
1726 struct commit_list
*entry
= revs
->commits
;
1727 struct commit
*commit
= entry
->item
;
1729 revs
->commits
= entry
->next
;
1732 if (revs
->reflog_info
)
1733 fake_reflog_parent(revs
->reflog_info
, commit
);
1736 * If we haven't done the list limiting, we need to look at
1737 * the parents here. We also need to do the date-based limiting
1738 * that we'd otherwise have done in limit_list().
1740 if (!revs
->limited
) {
1741 if (revs
->max_age
!= -1 &&
1742 (commit
->date
< revs
->max_age
))
1744 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
1745 die("Failed to traverse parents of commit %s",
1746 sha1_to_hex(commit
->object
.sha1
));
1749 switch (simplify_commit(revs
, commit
)) {
1753 die("Failed to simplify parents of commit %s",
1754 sha1_to_hex(commit
->object
.sha1
));
1758 } while (revs
->commits
);
1762 static void gc_boundary(struct object_array
*array
)
1764 unsigned nr
= array
->nr
;
1765 unsigned alloc
= array
->alloc
;
1766 struct object_array_entry
*objects
= array
->objects
;
1770 for (i
= j
= 0; i
< nr
; i
++) {
1771 if (objects
[i
].item
->flags
& SHOWN
)
1774 objects
[j
] = objects
[i
];
1777 for (i
= j
; i
< nr
; i
++)
1778 objects
[i
].item
= NULL
;
1783 static void create_boundary_commit_list(struct rev_info
*revs
)
1787 struct object_array
*array
= &revs
->boundary_commits
;
1788 struct object_array_entry
*objects
= array
->objects
;
1791 * If revs->commits is non-NULL at this point, an error occurred in
1792 * get_revision_1(). Ignore the error and continue printing the
1793 * boundary commits anyway. (This is what the code has always
1796 if (revs
->commits
) {
1797 free_commit_list(revs
->commits
);
1798 revs
->commits
= NULL
;
1802 * Put all of the actual boundary commits from revs->boundary_commits
1803 * into revs->commits
1805 for (i
= 0; i
< array
->nr
; i
++) {
1806 c
= (struct commit
*)(objects
[i
].item
);
1809 if (!(c
->object
.flags
& CHILD_SHOWN
))
1811 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
1813 c
->object
.flags
|= BOUNDARY
;
1814 commit_list_insert(c
, &revs
->commits
);
1818 * If revs->topo_order is set, sort the boundary commits
1819 * in topological order
1821 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1824 static struct commit
*get_revision_internal(struct rev_info
*revs
)
1826 struct commit
*c
= NULL
;
1827 struct commit_list
*l
;
1829 if (revs
->boundary
== 2) {
1831 * All of the normal commits have already been returned,
1832 * and we are now returning boundary commits.
1833 * create_boundary_commit_list() has populated
1834 * revs->commits with the remaining commits to return.
1836 c
= pop_commit(&revs
->commits
);
1838 c
->object
.flags
|= SHOWN
;
1843 * Now pick up what they want to give us
1845 c
= get_revision_1(revs
);
1847 while (0 < revs
->skip_count
) {
1849 c
= get_revision_1(revs
);
1856 * Check the max_count.
1858 switch (revs
->max_count
) {
1869 c
->object
.flags
|= SHOWN
;
1871 if (!revs
->boundary
) {
1877 * get_revision_1() runs out the commits, and
1878 * we are done computing the boundaries.
1879 * switch to boundary commits output mode.
1884 * Update revs->commits to contain the list of
1887 create_boundary_commit_list(revs
);
1889 return get_revision_internal(revs
);
1893 * boundary commits are the commits that are parents of the
1894 * ones we got from get_revision_1() but they themselves are
1895 * not returned from get_revision_1(). Before returning
1896 * 'c', we need to mark its parents that they could be boundaries.
1899 for (l
= c
->parents
; l
; l
= l
->next
) {
1901 p
= &(l
->item
->object
);
1902 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
1904 p
->flags
|= CHILD_SHOWN
;
1905 gc_boundary(&revs
->boundary_commits
);
1906 add_object_array(p
, NULL
, &revs
->boundary_commits
);
1912 struct commit
*get_revision(struct rev_info
*revs
)
1915 struct commit_list
*reversed
;
1917 if (revs
->reverse
) {
1919 while ((c
= get_revision_internal(revs
))) {
1920 commit_list_insert(c
, &reversed
);
1922 revs
->commits
= reversed
;
1924 revs
->reverse_output_stage
= 1;
1927 if (revs
->reverse_output_stage
)
1928 return pop_commit(&revs
->commits
);
1930 c
= get_revision_internal(revs
);
1931 if (c
&& revs
->graph
)
1932 graph_update(revs
->graph
, c
);