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 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
191 * Commit object? Just return it, we'll do all the complex
194 if (object
->type
== OBJ_COMMIT
) {
195 struct commit
*commit
= (struct commit
*)object
;
196 if (parse_commit(commit
) < 0)
197 die("unable to parse commit %s", name
);
198 if (flags
& UNINTERESTING
) {
199 commit
->object
.flags
|= UNINTERESTING
;
200 mark_parents_uninteresting(commit
);
203 if (revs
->show_source
&& !commit
->util
)
204 commit
->util
= (void *) name
;
209 * Tree object? Either mark it uniniteresting, or add it
210 * to the list of objects to look at later..
212 if (object
->type
== OBJ_TREE
) {
213 struct tree
*tree
= (struct tree
*)object
;
214 if (!revs
->tree_objects
)
216 if (flags
& UNINTERESTING
) {
217 mark_tree_uninteresting(tree
);
220 add_pending_object(revs
, object
, "");
225 * Blob object? You know the drill by now..
227 if (object
->type
== OBJ_BLOB
) {
228 struct blob
*blob
= (struct blob
*)object
;
229 if (!revs
->blob_objects
)
231 if (flags
& UNINTERESTING
) {
232 mark_blob_uninteresting(blob
);
235 add_pending_object(revs
, object
, "");
238 die("%s is unknown object", name
);
241 static int everybody_uninteresting(struct commit_list
*orig
)
243 struct commit_list
*list
= orig
;
245 struct commit
*commit
= list
->item
;
247 if (commit
->object
.flags
& UNINTERESTING
)
255 * The goal is to get REV_TREE_NEW as the result only if the
256 * diff consists of all '+' (and no other changes), and
257 * REV_TREE_DIFFERENT otherwise (of course if the trees are
258 * the same we want REV_TREE_SAME). That means that once we
259 * get to REV_TREE_DIFFERENT, we do not have to look any further.
261 static int tree_difference
= REV_TREE_SAME
;
263 static void file_add_remove(struct diff_options
*options
,
264 int addremove
, unsigned mode
,
265 const unsigned char *sha1
,
266 const char *fullpath
)
268 int diff
= REV_TREE_DIFFERENT
;
271 * Is it an add of a new file? It means that the old tree
272 * didn't have it at all, so we will turn "REV_TREE_SAME" ->
273 * "REV_TREE_NEW", but leave any "REV_TREE_DIFFERENT" alone
274 * (and if it already was "REV_TREE_NEW", we'll keep it
275 * "REV_TREE_NEW" of course).
277 if (addremove
== '+') {
278 diff
= tree_difference
;
279 if (diff
!= REV_TREE_SAME
)
283 tree_difference
= diff
;
284 if (tree_difference
== REV_TREE_DIFFERENT
)
285 DIFF_OPT_SET(options
, HAS_CHANGES
);
288 static void file_change(struct diff_options
*options
,
289 unsigned old_mode
, unsigned new_mode
,
290 const unsigned char *old_sha1
,
291 const unsigned char *new_sha1
,
292 const char *fullpath
)
294 tree_difference
= REV_TREE_DIFFERENT
;
295 DIFF_OPT_SET(options
, HAS_CHANGES
);
298 static int rev_compare_tree(struct rev_info
*revs
, struct commit
*parent
, struct commit
*commit
)
300 struct tree
*t1
= parent
->tree
;
301 struct tree
*t2
= commit
->tree
;
306 if (revs
->simplify_by_decoration
) {
308 * If we are simplifying by decoration, then the commit
309 * is worth showing if it has a tag pointing at it.
311 if (lookup_decoration(&name_decoration
, &commit
->object
))
312 return REV_TREE_DIFFERENT
;
314 * A commit that is not pointed by a tag is uninteresting
315 * if we are not limited by path. This means that you will
316 * see the usual "commits that touch the paths" plus any
317 * tagged commit by specifying both --simplify-by-decoration
320 if (!revs
->prune_data
)
321 return REV_TREE_SAME
;
324 return REV_TREE_DIFFERENT
;
325 tree_difference
= REV_TREE_SAME
;
326 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
327 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
329 return REV_TREE_DIFFERENT
;
330 return tree_difference
;
333 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
338 struct tree_desc empty
, real
;
339 struct tree
*t1
= commit
->tree
;
344 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
347 init_tree_desc(&real
, tree
, size
);
348 init_tree_desc(&empty
, "", 0);
350 tree_difference
= REV_TREE_SAME
;
351 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
352 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
355 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
358 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
360 struct commit_list
**pp
, *parent
;
361 int tree_changed
= 0, tree_same
= 0;
364 * If we don't do pruning, everything is interesting
372 if (!commit
->parents
) {
373 if (rev_same_tree_as_empty(revs
, commit
))
374 commit
->object
.flags
|= TREESAME
;
379 * Normal non-merge commit? If we don't want to make the
380 * history dense, we consider it always to be a change..
382 if (!revs
->dense
&& !commit
->parents
->next
)
385 pp
= &commit
->parents
;
386 while ((parent
= *pp
) != NULL
) {
387 struct commit
*p
= parent
->item
;
389 if (parse_commit(p
) < 0)
390 die("cannot simplify commit %s (because of %s)",
391 sha1_to_hex(commit
->object
.sha1
),
392 sha1_to_hex(p
->object
.sha1
));
393 switch (rev_compare_tree(revs
, p
, commit
)) {
396 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
397 /* Even if a merge with an uninteresting
398 * side branch brought the entire change
399 * we are interested in, we do not want
400 * to lose the other branches of this
401 * merge, so we just keep going.
407 commit
->parents
= parent
;
408 commit
->object
.flags
|= TREESAME
;
412 if (revs
->remove_empty_trees
&&
413 rev_same_tree_as_empty(revs
, p
)) {
414 /* We are adding all the specified
415 * paths from this parent, so the
416 * history beyond this parent is not
417 * interesting. Remove its parents
418 * (they are grandparents for us).
419 * IOW, we pretend this parent is a
422 if (parse_commit(p
) < 0)
423 die("cannot simplify commit %s (invalid %s)",
424 sha1_to_hex(commit
->object
.sha1
),
425 sha1_to_hex(p
->object
.sha1
));
429 case REV_TREE_DIFFERENT
:
434 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
436 if (tree_changed
&& !tree_same
)
438 commit
->object
.flags
|= TREESAME
;
441 static void insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
442 struct commit_list
*cached_base
, struct commit_list
**cache
)
444 struct commit_list
*new_entry
;
446 if (cached_base
&& p
->date
< cached_base
->item
->date
)
447 new_entry
= insert_by_date(p
, &cached_base
->next
);
449 new_entry
= insert_by_date(p
, head
);
451 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
455 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
456 struct commit_list
**list
, struct commit_list
**cache_ptr
)
458 struct commit_list
*parent
= commit
->parents
;
460 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
462 if (commit
->object
.flags
& ADDED
)
464 commit
->object
.flags
|= ADDED
;
467 * If the commit is uninteresting, don't try to
468 * prune parents - we want the maximal uninteresting
471 * Normally we haven't parsed the parent
472 * yet, so we won't have a parent of a parent
473 * here. However, it may turn out that we've
474 * reached this commit some other way (where it
475 * wasn't uninteresting), in which case we need
476 * to mark its parents recursively too..
478 if (commit
->object
.flags
& UNINTERESTING
) {
480 struct commit
*p
= parent
->item
;
481 parent
= parent
->next
;
482 if (parse_commit(p
) < 0)
484 p
->object
.flags
|= UNINTERESTING
;
486 mark_parents_uninteresting(p
);
487 if (p
->object
.flags
& SEEN
)
489 p
->object
.flags
|= SEEN
;
490 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
496 * Ok, the commit wasn't uninteresting. Try to
497 * simplify the commit history and find the parent
498 * that has no differences in the path set if one exists.
500 try_to_simplify_commit(revs
, commit
);
505 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
507 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
508 struct commit
*p
= parent
->item
;
510 if (parse_commit(p
) < 0)
512 if (revs
->show_source
&& !p
->util
)
513 p
->util
= commit
->util
;
514 p
->object
.flags
|= left_flag
;
515 if (!(p
->object
.flags
& SEEN
)) {
516 p
->object
.flags
|= SEEN
;
517 insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
519 if (revs
->first_parent_only
)
525 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
527 struct commit_list
*p
;
528 int left_count
= 0, right_count
= 0;
530 struct patch_ids ids
;
532 /* First count the commits on the left and on the right */
533 for (p
= list
; p
; p
= p
->next
) {
534 struct commit
*commit
= p
->item
;
535 unsigned flags
= commit
->object
.flags
;
536 if (flags
& BOUNDARY
)
538 else if (flags
& SYMMETRIC_LEFT
)
544 left_first
= left_count
< right_count
;
545 init_patch_ids(&ids
);
546 if (revs
->diffopt
.nr_paths
) {
547 ids
.diffopts
.nr_paths
= revs
->diffopt
.nr_paths
;
548 ids
.diffopts
.paths
= revs
->diffopt
.paths
;
549 ids
.diffopts
.pathlens
= revs
->diffopt
.pathlens
;
552 /* Compute patch-ids for one side */
553 for (p
= list
; p
; p
= p
->next
) {
554 struct commit
*commit
= p
->item
;
555 unsigned flags
= commit
->object
.flags
;
557 if (flags
& BOUNDARY
)
560 * If we have fewer left, left_first is set and we omit
561 * commits on the right branch in this loop. If we have
562 * fewer right, we skip the left ones.
564 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
566 commit
->util
= add_commit_patch_id(commit
, &ids
);
569 /* Check the other side */
570 for (p
= list
; p
; p
= p
->next
) {
571 struct commit
*commit
= p
->item
;
573 unsigned flags
= commit
->object
.flags
;
575 if (flags
& BOUNDARY
)
578 * If we have fewer left, left_first is set and we omit
579 * commits on the left branch in this loop.
581 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
585 * Have we seen the same patch id?
587 id
= has_commit_patch_id(commit
, &ids
);
591 commit
->object
.flags
|= SHOWN
;
594 /* Now check the original side for seen ones */
595 for (p
= list
; p
; p
= p
->next
) {
596 struct commit
*commit
= p
->item
;
597 struct patch_id
*ent
;
603 commit
->object
.flags
|= SHOWN
;
607 free_patch_ids(&ids
);
610 /* How many extra uninteresting commits we want to see.. */
613 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
616 * No source list at all? We're definitely done..
622 * Does the destination list contain entries with a date
623 * before the source list? Definitely _not_ done.
625 if (date
< src
->item
->date
)
629 * Does the source list still have interesting commits in
630 * it? Definitely not done..
632 if (!everybody_uninteresting(src
))
635 /* Ok, we're closing in.. */
639 static int limit_list(struct rev_info
*revs
)
642 unsigned long date
= ~0ul;
643 struct commit_list
*list
= revs
->commits
;
644 struct commit_list
*newlist
= NULL
;
645 struct commit_list
**p
= &newlist
;
648 struct commit_list
*entry
= list
;
649 struct commit
*commit
= list
->item
;
650 struct object
*obj
= &commit
->object
;
651 show_early_output_fn_t show
;
656 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
657 obj
->flags
|= UNINTERESTING
;
658 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
660 if (obj
->flags
& UNINTERESTING
) {
661 mark_parents_uninteresting(commit
);
663 p
= &commit_list_insert(commit
, p
)->next
;
664 slop
= still_interesting(list
, date
, slop
);
667 /* If showing all, add the whole pending list to the end */
672 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
675 p
= &commit_list_insert(commit
, p
)->next
;
677 show
= show_early_output
;
682 show_early_output
= NULL
;
684 if (revs
->cherry_pick
)
685 cherry_pick_list(newlist
, revs
);
687 revs
->commits
= newlist
;
693 int warned_bad_reflog
;
694 struct rev_info
*all_revs
;
695 const char *name_for_errormsg
;
698 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
700 struct all_refs_cb
*cb
= cb_data
;
701 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
703 add_pending_object(cb
->all_revs
, object
, path
);
707 static void handle_refs(struct rev_info
*revs
, unsigned flags
,
708 int (*for_each
)(each_ref_fn
, void *))
710 struct all_refs_cb cb
;
712 cb
.all_flags
= flags
;
713 for_each(handle_one_ref
, &cb
);
716 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
718 struct all_refs_cb
*cb
= cb_data
;
719 if (!is_null_sha1(sha1
)) {
720 struct object
*o
= parse_object(sha1
);
722 o
->flags
|= cb
->all_flags
;
723 add_pending_object(cb
->all_revs
, o
, "");
725 else if (!cb
->warned_bad_reflog
) {
726 warning("reflog of '%s' references pruned commits",
727 cb
->name_for_errormsg
);
728 cb
->warned_bad_reflog
= 1;
733 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
734 const char *email
, unsigned long timestamp
, int tz
,
735 const char *message
, void *cb_data
)
737 handle_one_reflog_commit(osha1
, cb_data
);
738 handle_one_reflog_commit(nsha1
, cb_data
);
742 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
744 struct all_refs_cb
*cb
= cb_data
;
745 cb
->warned_bad_reflog
= 0;
746 cb
->name_for_errormsg
= path
;
747 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
751 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
753 struct all_refs_cb cb
;
755 cb
.all_flags
= flags
;
756 for_each_reflog(handle_one_reflog
, &cb
);
759 static int add_parents_only(struct rev_info
*revs
, const char *arg
, int flags
)
761 unsigned char sha1
[20];
763 struct commit
*commit
;
764 struct commit_list
*parents
;
767 flags
^= UNINTERESTING
;
770 if (get_sha1(arg
, sha1
))
773 it
= get_reference(revs
, arg
, sha1
, 0);
774 if (it
->type
!= OBJ_TAG
)
776 if (!((struct tag
*)it
)->tagged
)
778 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
780 if (it
->type
!= OBJ_COMMIT
)
782 commit
= (struct commit
*)it
;
783 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
784 it
= &parents
->item
->object
;
786 add_pending_object(revs
, it
, arg
);
791 void init_revisions(struct rev_info
*revs
, const char *prefix
)
793 memset(revs
, 0, sizeof(*revs
));
795 revs
->abbrev
= DEFAULT_ABBREV
;
796 revs
->ignore_merges
= 1;
797 revs
->simplify_history
= 1;
798 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
799 DIFF_OPT_SET(&revs
->pruning
, QUIET
);
800 revs
->pruning
.add_remove
= file_add_remove
;
801 revs
->pruning
.change
= file_change
;
804 revs
->prefix
= prefix
;
807 revs
->skip_count
= -1;
808 revs
->max_count
= -1;
810 revs
->commit_format
= CMIT_FMT_DEFAULT
;
812 revs
->grep_filter
.status_only
= 1;
813 revs
->grep_filter
.pattern_tail
= &(revs
->grep_filter
.pattern_list
);
814 revs
->grep_filter
.regflags
= REG_NEWLINE
;
816 diff_setup(&revs
->diffopt
);
817 if (prefix
&& !revs
->diffopt
.prefix
) {
818 revs
->diffopt
.prefix
= prefix
;
819 revs
->diffopt
.prefix_length
= strlen(prefix
);
823 static void add_pending_commit_list(struct rev_info
*revs
,
824 struct commit_list
*commit_list
,
827 while (commit_list
) {
828 struct object
*object
= &commit_list
->item
->object
;
829 object
->flags
|= flags
;
830 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
831 commit_list
= commit_list
->next
;
835 static void prepare_show_merge(struct rev_info
*revs
)
837 struct commit_list
*bases
;
838 struct commit
*head
, *other
;
839 unsigned char sha1
[20];
840 const char **prune
= NULL
;
841 int i
, prune_num
= 1; /* counting terminating NULL */
843 if (get_sha1("HEAD", sha1
) || !(head
= lookup_commit(sha1
)))
844 die("--merge without HEAD?");
845 if (get_sha1("MERGE_HEAD", sha1
) || !(other
= lookup_commit(sha1
)))
846 die("--merge without MERGE_HEAD?");
847 add_pending_object(revs
, &head
->object
, "HEAD");
848 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
849 bases
= get_merge_bases(head
, other
, 1);
850 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
851 free_commit_list(bases
);
852 head
->object
.flags
|= SYMMETRIC_LEFT
;
856 for (i
= 0; i
< active_nr
; i
++) {
857 struct cache_entry
*ce
= active_cache
[i
];
860 if (ce_path_match(ce
, revs
->prune_data
)) {
862 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
863 prune
[prune_num
-2] = ce
->name
;
864 prune
[prune_num
-1] = NULL
;
866 while ((i
+1 < active_nr
) &&
867 ce_same_name(ce
, active_cache
[i
+1]))
870 revs
->prune_data
= prune
;
874 int handle_revision_arg(const char *arg
, struct rev_info
*revs
,
876 int cant_be_filename
)
880 struct object
*object
;
881 unsigned char sha1
[20];
884 dotdot
= strstr(arg
, "..");
886 unsigned char from_sha1
[20];
887 const char *next
= dotdot
+ 2;
888 const char *this = arg
;
889 int symmetric
= *next
== '.';
890 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
899 if (!get_sha1(this, from_sha1
) &&
900 !get_sha1(next
, sha1
)) {
901 struct commit
*a
, *b
;
902 struct commit_list
*exclude
;
904 a
= lookup_commit_reference(from_sha1
);
905 b
= lookup_commit_reference(sha1
);
908 "Invalid symmetric difference expression %s...%s" :
909 "Invalid revision range %s..%s",
913 if (!cant_be_filename
) {
915 verify_non_filename(revs
->prefix
, arg
);
919 exclude
= get_merge_bases(a
, b
, 1);
920 add_pending_commit_list(revs
, exclude
,
922 free_commit_list(exclude
);
923 a
->object
.flags
|= flags
| SYMMETRIC_LEFT
;
925 a
->object
.flags
|= flags_exclude
;
926 b
->object
.flags
|= flags
;
927 add_pending_object(revs
, &a
->object
, this);
928 add_pending_object(revs
, &b
->object
, next
);
933 dotdot
= strstr(arg
, "^@");
934 if (dotdot
&& !dotdot
[2]) {
936 if (add_parents_only(revs
, arg
, flags
))
940 dotdot
= strstr(arg
, "^!");
941 if (dotdot
&& !dotdot
[2]) {
943 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
949 local_flags
= UNINTERESTING
;
952 if (get_sha1_with_mode(arg
, sha1
, &mode
))
954 if (!cant_be_filename
)
955 verify_non_filename(revs
->prefix
, arg
);
956 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
957 add_pending_object_with_mode(revs
, object
, arg
, mode
);
961 void read_revisions_from_stdin(struct rev_info
*revs
)
965 while (fgets(line
, sizeof(line
), stdin
) != NULL
) {
966 int len
= strlen(line
);
967 if (len
&& line
[len
- 1] == '\n')
972 die("options not supported in --stdin mode");
973 if (handle_revision_arg(line
, revs
, 0, 1))
974 die("bad revision '%s'", line
);
978 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
980 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
983 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
985 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
988 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
990 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
993 static void add_ignore_packed(struct rev_info
*revs
, const char *name
)
995 int num
= ++revs
->num_ignore_packed
;
997 revs
->ignore_packed
= xrealloc(revs
->ignore_packed
,
998 sizeof(const char *) * (num
+ 1));
999 revs
->ignore_packed
[num
-1] = name
;
1000 revs
->ignore_packed
[num
] = NULL
;
1003 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1004 int *unkc
, const char **unkv
)
1006 const char *arg
= argv
[0];
1008 /* pseudo revision arguments */
1009 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1010 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1011 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1012 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk"))
1014 unkv
[(*unkc
)++] = arg
;
1018 if (!prefixcmp(arg
, "--max-count=")) {
1019 revs
->max_count
= atoi(arg
+ 12);
1020 } else if (!prefixcmp(arg
, "--skip=")) {
1021 revs
->skip_count
= atoi(arg
+ 7);
1022 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1023 /* accept -<digit>, like traditional "head" */
1024 revs
->max_count
= atoi(arg
+ 1);
1025 } else if (!strcmp(arg
, "-n")) {
1027 return error("-n requires an argument");
1028 revs
->max_count
= atoi(argv
[1]);
1030 } else if (!prefixcmp(arg
, "-n")) {
1031 revs
->max_count
= atoi(arg
+ 2);
1032 } else if (!prefixcmp(arg
, "--max-age=")) {
1033 revs
->max_age
= atoi(arg
+ 10);
1034 } else if (!prefixcmp(arg
, "--since=")) {
1035 revs
->max_age
= approxidate(arg
+ 8);
1036 } else if (!prefixcmp(arg
, "--after=")) {
1037 revs
->max_age
= approxidate(arg
+ 8);
1038 } else if (!prefixcmp(arg
, "--min-age=")) {
1039 revs
->min_age
= atoi(arg
+ 10);
1040 } else if (!prefixcmp(arg
, "--before=")) {
1041 revs
->min_age
= approxidate(arg
+ 9);
1042 } else if (!prefixcmp(arg
, "--until=")) {
1043 revs
->min_age
= approxidate(arg
+ 8);
1044 } else if (!strcmp(arg
, "--first-parent")) {
1045 revs
->first_parent_only
= 1;
1046 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1047 init_reflog_walk(&revs
->reflog_info
);
1048 } else if (!strcmp(arg
, "--default")) {
1050 return error("bad --default argument");
1051 revs
->def
= argv
[1];
1053 } else if (!strcmp(arg
, "--merge")) {
1054 revs
->show_merge
= 1;
1055 } else if (!strcmp(arg
, "--topo-order")) {
1057 revs
->topo_order
= 1;
1058 } else if (!strcmp(arg
, "--simplify-merges")) {
1059 revs
->simplify_merges
= 1;
1060 revs
->rewrite_parents
= 1;
1061 revs
->simplify_history
= 0;
1063 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1064 revs
->simplify_merges
= 1;
1065 revs
->rewrite_parents
= 1;
1066 revs
->simplify_history
= 0;
1067 revs
->simplify_by_decoration
= 1;
1070 load_ref_decorations();
1071 } else if (!strcmp(arg
, "--date-order")) {
1073 revs
->topo_order
= 1;
1074 } else if (!prefixcmp(arg
, "--early-output")) {
1078 count
= atoi(arg
+15);
1081 revs
->topo_order
= 1;
1082 revs
->early_output
= count
;
1084 } else if (!strcmp(arg
, "--parents")) {
1085 revs
->rewrite_parents
= 1;
1086 revs
->print_parents
= 1;
1087 } else if (!strcmp(arg
, "--dense")) {
1089 } else if (!strcmp(arg
, "--sparse")) {
1091 } else if (!strcmp(arg
, "--show-all")) {
1093 } else if (!strcmp(arg
, "--remove-empty")) {
1094 revs
->remove_empty_trees
= 1;
1095 } else if (!strcmp(arg
, "--no-merges")) {
1096 revs
->no_merges
= 1;
1097 } else if (!strcmp(arg
, "--boundary")) {
1099 } else if (!strcmp(arg
, "--left-right")) {
1100 revs
->left_right
= 1;
1101 } else if (!strcmp(arg
, "--cherry-pick")) {
1102 revs
->cherry_pick
= 1;
1104 } else if (!strcmp(arg
, "--objects")) {
1105 revs
->tag_objects
= 1;
1106 revs
->tree_objects
= 1;
1107 revs
->blob_objects
= 1;
1108 } else if (!strcmp(arg
, "--objects-edge")) {
1109 revs
->tag_objects
= 1;
1110 revs
->tree_objects
= 1;
1111 revs
->blob_objects
= 1;
1112 revs
->edge_hint
= 1;
1113 } else if (!strcmp(arg
, "--unpacked")) {
1115 free(revs
->ignore_packed
);
1116 revs
->ignore_packed
= NULL
;
1117 revs
->num_ignore_packed
= 0;
1118 } else if (!prefixcmp(arg
, "--unpacked=")) {
1120 add_ignore_packed(revs
, arg
+11);
1121 } else if (!strcmp(arg
, "-r")) {
1123 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1124 } else if (!strcmp(arg
, "-t")) {
1126 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1127 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1128 } else if (!strcmp(arg
, "-m")) {
1129 revs
->ignore_merges
= 0;
1130 } else if (!strcmp(arg
, "-c")) {
1132 revs
->dense_combined_merges
= 0;
1133 revs
->combine_merges
= 1;
1134 } else if (!strcmp(arg
, "--cc")) {
1136 revs
->dense_combined_merges
= 1;
1137 revs
->combine_merges
= 1;
1138 } else if (!strcmp(arg
, "-v")) {
1139 revs
->verbose_header
= 1;
1140 } else if (!strcmp(arg
, "--pretty")) {
1141 revs
->verbose_header
= 1;
1142 get_commit_format(arg
+8, revs
);
1143 } else if (!prefixcmp(arg
, "--pretty=")) {
1144 revs
->verbose_header
= 1;
1145 get_commit_format(arg
+9, revs
);
1146 } else if (!strcmp(arg
, "--graph")) {
1147 revs
->topo_order
= 1;
1148 revs
->rewrite_parents
= 1;
1149 revs
->graph
= graph_init(revs
);
1150 } else if (!strcmp(arg
, "--root")) {
1151 revs
->show_root_diff
= 1;
1152 } else if (!strcmp(arg
, "--no-commit-id")) {
1153 revs
->no_commit_id
= 1;
1154 } else if (!strcmp(arg
, "--always")) {
1155 revs
->always_show_header
= 1;
1156 } else if (!strcmp(arg
, "--no-abbrev")) {
1158 } else if (!strcmp(arg
, "--abbrev")) {
1159 revs
->abbrev
= DEFAULT_ABBREV
;
1160 } else if (!prefixcmp(arg
, "--abbrev=")) {
1161 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1162 if (revs
->abbrev
< MINIMUM_ABBREV
)
1163 revs
->abbrev
= MINIMUM_ABBREV
;
1164 else if (revs
->abbrev
> 40)
1166 } else if (!strcmp(arg
, "--abbrev-commit")) {
1167 revs
->abbrev_commit
= 1;
1168 } else if (!strcmp(arg
, "--full-diff")) {
1170 revs
->full_diff
= 1;
1171 } else if (!strcmp(arg
, "--full-history")) {
1172 revs
->simplify_history
= 0;
1173 } else if (!strcmp(arg
, "--relative-date")) {
1174 revs
->date_mode
= DATE_RELATIVE
;
1175 } else if (!strncmp(arg
, "--date=", 7)) {
1176 revs
->date_mode
= parse_date_format(arg
+ 7);
1177 } else if (!strcmp(arg
, "--log-size")) {
1178 revs
->show_log_size
= 1;
1181 * Grepping the commit log
1183 else if (!prefixcmp(arg
, "--author=")) {
1184 add_header_grep(revs
, GREP_HEADER_AUTHOR
, arg
+9);
1185 } else if (!prefixcmp(arg
, "--committer=")) {
1186 add_header_grep(revs
, GREP_HEADER_COMMITTER
, arg
+12);
1187 } else if (!prefixcmp(arg
, "--grep=")) {
1188 add_message_grep(revs
, arg
+7);
1189 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1190 revs
->grep_filter
.regflags
|= REG_EXTENDED
;
1191 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1192 revs
->grep_filter
.regflags
|= REG_ICASE
;
1193 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1194 revs
->grep_filter
.fixed
= 1;
1195 } else if (!strcmp(arg
, "--all-match")) {
1196 revs
->grep_filter
.all_match
= 1;
1197 } else if (!prefixcmp(arg
, "--encoding=")) {
1199 if (strcmp(arg
, "none"))
1200 git_log_output_encoding
= xstrdup(arg
);
1202 git_log_output_encoding
= "";
1203 } else if (!strcmp(arg
, "--reverse")) {
1205 } else if (!strcmp(arg
, "--children")) {
1206 revs
->children
.name
= "children";
1209 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1211 unkv
[(*unkc
)++] = arg
;
1218 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1219 const struct option
*options
,
1220 const char * const usagestr
[])
1222 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1223 &ctx
->cpidx
, ctx
->out
);
1225 error("unknown option `%s'", ctx
->argv
[0]);
1226 usage_with_options(usagestr
, options
);
1233 * Parse revision information, filling in the "rev_info" structure,
1234 * and removing the used arguments from the argument list.
1236 * Returns the number of arguments left that weren't recognized
1237 * (which are also moved to the head of the argument list)
1239 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, const char *def
)
1241 int i
, flags
, left
, seen_dashdash
;
1243 /* First, search for "--" */
1245 for (i
= 1; i
< argc
; i
++) {
1246 const char *arg
= argv
[i
];
1247 if (strcmp(arg
, "--"))
1252 revs
->prune_data
= get_pathspec(revs
->prefix
, argv
+ i
+ 1);
1257 /* Second, deal with arguments and options */
1259 for (left
= i
= 1; i
< argc
; i
++) {
1260 const char *arg
= argv
[i
];
1264 if (!strcmp(arg
, "--all")) {
1265 handle_refs(revs
, flags
, for_each_ref
);
1268 if (!strcmp(arg
, "--branches")) {
1269 handle_refs(revs
, flags
, for_each_branch_ref
);
1272 if (!strcmp(arg
, "--tags")) {
1273 handle_refs(revs
, flags
, for_each_tag_ref
);
1276 if (!strcmp(arg
, "--remotes")) {
1277 handle_refs(revs
, flags
, for_each_remote_ref
);
1280 if (!strcmp(arg
, "--reflog")) {
1281 handle_reflog(revs
, flags
);
1284 if (!strcmp(arg
, "--not")) {
1285 flags
^= UNINTERESTING
;
1288 if (!strcmp(arg
, "--no-walk")) {
1292 if (!strcmp(arg
, "--do-walk")) {
1297 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1307 if (handle_revision_arg(arg
, revs
, flags
, seen_dashdash
)) {
1309 if (seen_dashdash
|| *arg
== '^')
1310 die("bad revision '%s'", arg
);
1312 /* If we didn't have a "--":
1313 * (1) all filenames must exist;
1314 * (2) all rev-args must not be interpretable
1315 * as a valid filename.
1316 * but the latter we have checked in the main loop.
1318 for (j
= i
; j
< argc
; j
++)
1319 verify_filename(revs
->prefix
, argv
[j
]);
1321 revs
->prune_data
= get_pathspec(revs
->prefix
,
1327 if (revs
->def
== NULL
)
1329 if (revs
->show_merge
)
1330 prepare_show_merge(revs
);
1331 if (revs
->def
&& !revs
->pending
.nr
) {
1332 unsigned char sha1
[20];
1333 struct object
*object
;
1335 if (get_sha1_with_mode(revs
->def
, sha1
, &mode
))
1336 die("bad default revision '%s'", revs
->def
);
1337 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1338 add_pending_object_with_mode(revs
, object
, revs
->def
, mode
);
1341 /* Did the user ask for any diff output? Run the diff! */
1342 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1345 /* Pickaxe, diff-filter and rename following need diffs */
1346 if (revs
->diffopt
.pickaxe
||
1347 revs
->diffopt
.filter
||
1348 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1351 if (revs
->topo_order
)
1354 if (revs
->prune_data
) {
1355 diff_tree_setup_paths(revs
->prune_data
, &revs
->pruning
);
1356 /* Can't prune commits with rename following: the paths change.. */
1357 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1359 if (!revs
->full_diff
)
1360 diff_tree_setup_paths(revs
->prune_data
, &revs
->diffopt
);
1362 if (revs
->combine_merges
) {
1363 revs
->ignore_merges
= 0;
1364 if (revs
->dense_combined_merges
&& !revs
->diffopt
.output_format
)
1365 revs
->diffopt
.output_format
= DIFF_FORMAT_PATCH
;
1367 revs
->diffopt
.abbrev
= revs
->abbrev
;
1368 if (diff_setup_done(&revs
->diffopt
) < 0)
1369 die("diff_setup_done failed");
1371 compile_grep_patterns(&revs
->grep_filter
);
1373 if (revs
->reverse
&& revs
->reflog_info
)
1374 die("cannot combine --reverse with --walk-reflogs");
1375 if (revs
->rewrite_parents
&& revs
->children
.name
)
1376 die("cannot combine --parents and --children");
1379 * Limitations on the graph functionality
1381 if (revs
->reverse
&& revs
->graph
)
1382 die("cannot combine --reverse with --graph");
1384 if (revs
->reflog_info
&& revs
->graph
)
1385 die("cannot combine --walk-reflogs with --graph");
1390 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1392 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1395 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1398 static int remove_duplicate_parents(struct commit
*commit
)
1400 struct commit_list
**pp
, *p
;
1401 int surviving_parents
;
1403 /* Examine existing parents while marking ones we have seen... */
1404 pp
= &commit
->parents
;
1405 while ((p
= *pp
) != NULL
) {
1406 struct commit
*parent
= p
->item
;
1407 if (parent
->object
.flags
& TMP_MARK
) {
1411 parent
->object
.flags
|= TMP_MARK
;
1414 /* count them while clearing the temporary mark */
1415 surviving_parents
= 0;
1416 for (p
= commit
->parents
; p
; p
= p
->next
) {
1417 p
->item
->object
.flags
&= ~TMP_MARK
;
1418 surviving_parents
++;
1420 return surviving_parents
;
1423 struct merge_simplify_state
{
1424 struct commit
*simplified
;
1427 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1429 struct merge_simplify_state
*st
;
1431 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1433 st
= xcalloc(1, sizeof(*st
));
1434 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1439 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1441 struct commit_list
*p
;
1442 struct merge_simplify_state
*st
, *pst
;
1445 st
= locate_simplify_state(revs
, commit
);
1448 * Have we handled this one?
1454 * An UNINTERESTING commit simplifies to itself, so does a
1455 * root commit. We do not rewrite parents of such commit
1458 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
1459 st
->simplified
= commit
;
1464 * Do we know what commit all of our parents should be rewritten to?
1465 * Otherwise we are not ready to rewrite this one yet.
1467 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
1468 pst
= locate_simplify_state(revs
, p
->item
);
1469 if (!pst
->simplified
) {
1470 tail
= &commit_list_insert(p
->item
, tail
)->next
;
1475 tail
= &commit_list_insert(commit
, tail
)->next
;
1480 * Rewrite our list of parents.
1482 for (p
= commit
->parents
; p
; p
= p
->next
) {
1483 pst
= locate_simplify_state(revs
, p
->item
);
1484 p
->item
= pst
->simplified
;
1486 cnt
= remove_duplicate_parents(commit
);
1489 * It is possible that we are a merge and one side branch
1490 * does not have any commit that touches the given paths;
1491 * in such a case, the immediate parents will be rewritten
1492 * to different commits.
1494 * o----X X: the commit we are looking at;
1495 * / / o: a commit that touches the paths;
1498 * Further reduce the parents by removing redundant parents.
1501 struct commit_list
*h
= reduce_heads(commit
->parents
);
1502 cnt
= commit_list_count(h
);
1503 free_commit_list(commit
->parents
);
1504 commit
->parents
= h
;
1508 * A commit simplifies to itself if it is a root, if it is
1509 * UNINTERESTING, if it touches the given paths, or if it is a
1510 * merge and its parents simplifies to more than one commits
1511 * (the first two cases are already handled at the beginning of
1514 * Otherwise, it simplifies to what its sole parent simplifies to.
1517 (commit
->object
.flags
& UNINTERESTING
) ||
1518 !(commit
->object
.flags
& TREESAME
) ||
1520 st
->simplified
= commit
;
1522 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
1523 st
->simplified
= pst
->simplified
;
1528 static void simplify_merges(struct rev_info
*revs
)
1530 struct commit_list
*list
;
1531 struct commit_list
*yet_to_do
, **tail
;
1533 if (!revs
->topo_order
)
1534 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1538 /* feed the list reversed */
1540 for (list
= revs
->commits
; list
; list
= list
->next
)
1541 commit_list_insert(list
->item
, &yet_to_do
);
1547 struct commit
*commit
= list
->item
;
1548 struct commit_list
*next
= list
->next
;
1551 tail
= simplify_one(revs
, commit
, tail
);
1555 /* clean up the result, removing the simplified ones */
1556 list
= revs
->commits
;
1557 revs
->commits
= NULL
;
1558 tail
= &revs
->commits
;
1560 struct commit
*commit
= list
->item
;
1561 struct commit_list
*next
= list
->next
;
1562 struct merge_simplify_state
*st
;
1565 st
= locate_simplify_state(revs
, commit
);
1566 if (st
->simplified
== commit
)
1567 tail
= &commit_list_insert(commit
, tail
)->next
;
1571 static void set_children(struct rev_info
*revs
)
1573 struct commit_list
*l
;
1574 for (l
= revs
->commits
; l
; l
= l
->next
) {
1575 struct commit
*commit
= l
->item
;
1576 struct commit_list
*p
;
1578 for (p
= commit
->parents
; p
; p
= p
->next
)
1579 add_child(revs
, p
->item
, commit
);
1583 int prepare_revision_walk(struct rev_info
*revs
)
1585 int nr
= revs
->pending
.nr
;
1586 struct object_array_entry
*e
, *list
;
1588 e
= list
= revs
->pending
.objects
;
1589 revs
->pending
.nr
= 0;
1590 revs
->pending
.alloc
= 0;
1591 revs
->pending
.objects
= NULL
;
1593 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
1595 if (!(commit
->object
.flags
& SEEN
)) {
1596 commit
->object
.flags
|= SEEN
;
1597 insert_by_date(commit
, &revs
->commits
);
1607 if (limit_list(revs
) < 0)
1609 if (revs
->topo_order
)
1610 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1611 if (revs
->simplify_merges
)
1612 simplify_merges(revs
);
1613 if (revs
->children
.name
)
1618 enum rewrite_result
{
1620 rewrite_one_noparents
,
1624 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
1626 struct commit_list
*cache
= NULL
;
1629 struct commit
*p
= *pp
;
1631 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
1632 return rewrite_one_error
;
1633 if (p
->parents
&& p
->parents
->next
)
1634 return rewrite_one_ok
;
1635 if (p
->object
.flags
& UNINTERESTING
)
1636 return rewrite_one_ok
;
1637 if (!(p
->object
.flags
& TREESAME
))
1638 return rewrite_one_ok
;
1640 return rewrite_one_noparents
;
1641 *pp
= p
->parents
->item
;
1645 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
1647 struct commit_list
**pp
= &commit
->parents
;
1649 struct commit_list
*parent
= *pp
;
1650 switch (rewrite_one(revs
, &parent
->item
)) {
1651 case rewrite_one_ok
:
1653 case rewrite_one_noparents
:
1656 case rewrite_one_error
:
1661 remove_duplicate_parents(commit
);
1665 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
1667 if (!opt
->grep_filter
.pattern_list
)
1669 return grep_buffer(&opt
->grep_filter
,
1670 NULL
, /* we say nothing, not even filename */
1671 commit
->buffer
, strlen(commit
->buffer
));
1674 static inline int want_ancestry(struct rev_info
*revs
)
1676 return (revs
->rewrite_parents
|| revs
->children
.name
);
1679 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
1681 if (commit
->object
.flags
& SHOWN
)
1682 return commit_ignore
;
1683 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
, revs
->ignore_packed
))
1684 return commit_ignore
;
1687 if (commit
->object
.flags
& UNINTERESTING
)
1688 return commit_ignore
;
1689 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1690 return commit_ignore
;
1691 if (revs
->no_merges
&& commit
->parents
&& commit
->parents
->next
)
1692 return commit_ignore
;
1693 if (!commit_match(commit
, revs
))
1694 return commit_ignore
;
1695 if (revs
->prune
&& revs
->dense
) {
1696 /* Commit without changes? */
1697 if (commit
->object
.flags
& TREESAME
) {
1698 /* drop merges unless we want parenthood */
1699 if (!want_ancestry(revs
))
1700 return commit_ignore
;
1701 /* non-merge - always ignore it */
1702 if (!commit
->parents
|| !commit
->parents
->next
)
1703 return commit_ignore
;
1705 if (want_ancestry(revs
) && rewrite_parents(revs
, commit
) < 0)
1706 return commit_error
;
1711 static struct commit
*get_revision_1(struct rev_info
*revs
)
1717 struct commit_list
*entry
= revs
->commits
;
1718 struct commit
*commit
= entry
->item
;
1720 revs
->commits
= entry
->next
;
1723 if (revs
->reflog_info
)
1724 fake_reflog_parent(revs
->reflog_info
, commit
);
1727 * If we haven't done the list limiting, we need to look at
1728 * the parents here. We also need to do the date-based limiting
1729 * that we'd otherwise have done in limit_list().
1731 if (!revs
->limited
) {
1732 if (revs
->max_age
!= -1 &&
1733 (commit
->date
< revs
->max_age
))
1735 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
1739 switch (simplify_commit(revs
, commit
)) {
1747 } while (revs
->commits
);
1751 static void gc_boundary(struct object_array
*array
)
1753 unsigned nr
= array
->nr
;
1754 unsigned alloc
= array
->alloc
;
1755 struct object_array_entry
*objects
= array
->objects
;
1759 for (i
= j
= 0; i
< nr
; i
++) {
1760 if (objects
[i
].item
->flags
& SHOWN
)
1763 objects
[j
] = objects
[i
];
1766 for (i
= j
; i
< nr
; i
++)
1767 objects
[i
].item
= NULL
;
1772 static void create_boundary_commit_list(struct rev_info
*revs
)
1776 struct object_array
*array
= &revs
->boundary_commits
;
1777 struct object_array_entry
*objects
= array
->objects
;
1780 * If revs->commits is non-NULL at this point, an error occurred in
1781 * get_revision_1(). Ignore the error and continue printing the
1782 * boundary commits anyway. (This is what the code has always
1785 if (revs
->commits
) {
1786 free_commit_list(revs
->commits
);
1787 revs
->commits
= NULL
;
1791 * Put all of the actual boundary commits from revs->boundary_commits
1792 * into revs->commits
1794 for (i
= 0; i
< array
->nr
; i
++) {
1795 c
= (struct commit
*)(objects
[i
].item
);
1798 if (!(c
->object
.flags
& CHILD_SHOWN
))
1800 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
1802 c
->object
.flags
|= BOUNDARY
;
1803 commit_list_insert(c
, &revs
->commits
);
1807 * If revs->topo_order is set, sort the boundary commits
1808 * in topological order
1810 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
1813 static struct commit
*get_revision_internal(struct rev_info
*revs
)
1815 struct commit
*c
= NULL
;
1816 struct commit_list
*l
;
1818 if (revs
->boundary
== 2) {
1820 * All of the normal commits have already been returned,
1821 * and we are now returning boundary commits.
1822 * create_boundary_commit_list() has populated
1823 * revs->commits with the remaining commits to return.
1825 c
= pop_commit(&revs
->commits
);
1827 c
->object
.flags
|= SHOWN
;
1832 * Now pick up what they want to give us
1834 c
= get_revision_1(revs
);
1836 while (0 < revs
->skip_count
) {
1838 c
= get_revision_1(revs
);
1845 * Check the max_count.
1847 switch (revs
->max_count
) {
1858 c
->object
.flags
|= SHOWN
;
1860 if (!revs
->boundary
) {
1866 * get_revision_1() runs out the commits, and
1867 * we are done computing the boundaries.
1868 * switch to boundary commits output mode.
1873 * Update revs->commits to contain the list of
1876 create_boundary_commit_list(revs
);
1878 return get_revision_internal(revs
);
1882 * boundary commits are the commits that are parents of the
1883 * ones we got from get_revision_1() but they themselves are
1884 * not returned from get_revision_1(). Before returning
1885 * 'c', we need to mark its parents that they could be boundaries.
1888 for (l
= c
->parents
; l
; l
= l
->next
) {
1890 p
= &(l
->item
->object
);
1891 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
1893 p
->flags
|= CHILD_SHOWN
;
1894 gc_boundary(&revs
->boundary_commits
);
1895 add_object_array(p
, NULL
, &revs
->boundary_commits
);
1901 struct commit
*get_revision(struct rev_info
*revs
)
1904 struct commit_list
*reversed
;
1906 if (revs
->reverse
) {
1908 while ((c
= get_revision_internal(revs
))) {
1909 commit_list_insert(c
, &reversed
);
1911 revs
->commits
= reversed
;
1913 revs
->reverse_output_stage
= 1;
1916 if (revs
->reverse_output_stage
)
1917 return pop_commit(&revs
->commits
);
1919 c
= get_revision_internal(revs
);
1920 if (c
&& revs
->graph
)
1921 graph_update(revs
->graph
, c
);