11 #include "reflog-walk.h"
12 #include "patch-ids.h"
15 #include "string-list.h"
18 volatile show_early_output_fn_t show_early_output
;
20 char *path_name(const struct name_path
*path
, const char *name
)
22 const struct name_path
*p
;
24 int nlen
= strlen(name
);
27 for (p
= path
; p
; p
= p
->up
) {
29 len
+= p
->elem_len
+ 1;
32 m
= n
+ len
- (nlen
+ 1);
34 for (p
= path
; p
; p
= p
->up
) {
37 memcpy(m
, p
->elem
, p
->elem_len
);
44 static int show_path_component_truncated(FILE *out
, const char *name
, int len
)
47 for (cnt
= 0; cnt
< len
; cnt
++) {
49 if (!ch
|| ch
== '\n')
56 static int show_path_truncated(FILE *out
, const struct name_path
*path
)
62 emitted
= show_path_truncated(out
, path
->up
);
67 ours
= show_path_component_truncated(out
, path
->elem
, path
->elem_len
);
70 return ours
|| emitted
;
73 void show_object_with_name(FILE *out
, struct object
*obj
,
74 const struct name_path
*path
, const char *component
)
76 struct name_path leaf
;
77 leaf
.up
= (struct name_path
*)path
;
78 leaf
.elem
= component
;
79 leaf
.elem_len
= strlen(component
);
81 fprintf(out
, "%s ", sha1_to_hex(obj
->sha1
));
82 show_path_truncated(out
, &leaf
);
86 void add_object(struct object
*obj
,
87 struct object_array
*p
,
88 struct name_path
*path
,
91 add_object_array(obj
, path_name(path
, name
), p
);
94 static void mark_blob_uninteresting(struct blob
*blob
)
98 if (blob
->object
.flags
& UNINTERESTING
)
100 blob
->object
.flags
|= UNINTERESTING
;
103 void mark_tree_uninteresting(struct tree
*tree
)
105 struct tree_desc desc
;
106 struct name_entry entry
;
107 struct object
*obj
= &tree
->object
;
111 if (obj
->flags
& UNINTERESTING
)
113 obj
->flags
|= UNINTERESTING
;
114 if (!has_sha1_file(obj
->sha1
))
116 if (parse_tree(tree
) < 0)
117 die("bad tree %s", sha1_to_hex(obj
->sha1
));
119 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
120 while (tree_entry(&desc
, &entry
)) {
121 switch (object_type(entry
.mode
)) {
123 mark_tree_uninteresting(lookup_tree(entry
.sha1
));
126 mark_blob_uninteresting(lookup_blob(entry
.sha1
));
129 /* Subproject commit - not in this repository */
135 * We don't care about the tree any more
136 * after it has been marked uninteresting.
142 void mark_parents_uninteresting(struct commit
*commit
)
144 struct commit_list
*parents
= NULL
, *l
;
146 for (l
= commit
->parents
; l
; l
= l
->next
)
147 commit_list_insert(l
->item
, &parents
);
150 struct commit
*commit
= parents
->item
;
152 parents
= parents
->next
;
157 * A missing commit is ok iff its parent is marked
160 * We just mark such a thing parsed, so that when
161 * it is popped next time around, we won't be trying
162 * to parse it and get an error.
164 if (!has_sha1_file(commit
->object
.sha1
))
165 commit
->object
.parsed
= 1;
167 if (commit
->object
.flags
& UNINTERESTING
)
170 commit
->object
.flags
|= UNINTERESTING
;
173 * Normally we haven't parsed the parent
174 * yet, so we won't have a parent of a parent
175 * here. However, it may turn out that we've
176 * reached this commit some other way (where it
177 * wasn't uninteresting), in which case we need
178 * to mark its parents recursively too..
180 if (!commit
->parents
)
183 for (l
= commit
->parents
->next
; l
; l
= l
->next
)
184 commit_list_insert(l
->item
, &parents
);
185 commit
= commit
->parents
->item
;
190 static void add_pending_object_with_mode(struct rev_info
*revs
,
192 const char *name
, unsigned mode
)
196 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
198 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
199 struct strbuf buf
= STRBUF_INIT
;
200 int len
= interpret_branch_name(name
, &buf
);
203 if (0 < len
&& name
[len
] && buf
.len
)
204 strbuf_addstr(&buf
, name
+ len
);
205 st
= add_reflog_for_walk(revs
->reflog_info
,
206 (struct commit
*)obj
,
207 buf
.buf
[0] ? buf
.buf
: name
);
208 strbuf_release(&buf
);
212 add_object_array_with_mode(obj
, name
, &revs
->pending
, mode
);
215 void add_pending_object(struct rev_info
*revs
,
216 struct object
*obj
, const char *name
)
218 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
221 void add_head_to_pending(struct rev_info
*revs
)
223 unsigned char sha1
[20];
225 if (get_sha1("HEAD", sha1
))
227 obj
= parse_object(sha1
);
230 add_pending_object(revs
, obj
, "HEAD");
233 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
234 const unsigned char *sha1
,
237 struct object
*object
;
239 object
= parse_object(sha1
);
241 if (revs
->ignore_missing
)
243 die("bad object %s", name
);
245 object
->flags
|= flags
;
249 void add_pending_sha1(struct rev_info
*revs
, const char *name
,
250 const unsigned char *sha1
, unsigned int flags
)
252 struct object
*object
= get_reference(revs
, name
, sha1
, flags
);
253 add_pending_object(revs
, object
, name
);
256 static struct commit
*handle_commit(struct rev_info
*revs
,
257 struct object
*object
, const char *name
)
259 unsigned long flags
= object
->flags
;
262 * Tag object? Look what it points to..
264 while (object
->type
== OBJ_TAG
) {
265 struct tag
*tag
= (struct tag
*) object
;
266 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
267 add_pending_object(revs
, object
, tag
->tag
);
270 object
= parse_object(tag
->tagged
->sha1
);
272 if (flags
& UNINTERESTING
)
274 die("bad object %s", sha1_to_hex(tag
->tagged
->sha1
));
279 * Commit object? Just return it, we'll do all the complex
282 if (object
->type
== OBJ_COMMIT
) {
283 struct commit
*commit
= (struct commit
*)object
;
284 if (parse_commit(commit
) < 0)
285 die("unable to parse commit %s", name
);
286 if (flags
& UNINTERESTING
) {
287 commit
->object
.flags
|= UNINTERESTING
;
288 mark_parents_uninteresting(commit
);
291 if (revs
->show_source
&& !commit
->util
)
292 commit
->util
= (void *) name
;
297 * Tree object? Either mark it uninteresting, or add it
298 * to the list of objects to look at later..
300 if (object
->type
== OBJ_TREE
) {
301 struct tree
*tree
= (struct tree
*)object
;
302 if (!revs
->tree_objects
)
304 if (flags
& UNINTERESTING
) {
305 mark_tree_uninteresting(tree
);
308 add_pending_object(revs
, object
, "");
313 * Blob object? You know the drill by now..
315 if (object
->type
== OBJ_BLOB
) {
316 struct blob
*blob
= (struct blob
*)object
;
317 if (!revs
->blob_objects
)
319 if (flags
& UNINTERESTING
) {
320 mark_blob_uninteresting(blob
);
323 add_pending_object(revs
, object
, "");
326 die("%s is unknown object", name
);
329 static int everybody_uninteresting(struct commit_list
*orig
)
331 struct commit_list
*list
= orig
;
333 struct commit
*commit
= list
->item
;
335 if (commit
->object
.flags
& UNINTERESTING
)
343 * The goal is to get REV_TREE_NEW as the result only if the
344 * diff consists of all '+' (and no other changes), REV_TREE_OLD
345 * if the whole diff is removal of old data, and otherwise
346 * REV_TREE_DIFFERENT (of course if the trees are the same we
347 * want REV_TREE_SAME).
348 * That means that once we get to REV_TREE_DIFFERENT, we do not
349 * have to look any further.
351 static int tree_difference
= REV_TREE_SAME
;
353 static void file_add_remove(struct diff_options
*options
,
354 int addremove
, unsigned mode
,
355 const unsigned char *sha1
,
357 const char *fullpath
, unsigned dirty_submodule
)
359 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
361 tree_difference
|= diff
;
362 if (tree_difference
== REV_TREE_DIFFERENT
)
363 DIFF_OPT_SET(options
, HAS_CHANGES
);
366 static void file_change(struct diff_options
*options
,
367 unsigned old_mode
, unsigned new_mode
,
368 const unsigned char *old_sha1
,
369 const unsigned char *new_sha1
,
370 int old_sha1_valid
, int new_sha1_valid
,
371 const char *fullpath
,
372 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
374 tree_difference
= REV_TREE_DIFFERENT
;
375 DIFF_OPT_SET(options
, HAS_CHANGES
);
378 static int rev_compare_tree(struct rev_info
*revs
,
379 struct commit
*parent
, struct commit
*commit
)
381 struct tree
*t1
= parent
->tree
;
382 struct tree
*t2
= commit
->tree
;
389 if (revs
->simplify_by_decoration
) {
391 * If we are simplifying by decoration, then the commit
392 * is worth showing if it has a tag pointing at it.
394 if (lookup_decoration(&name_decoration
, &commit
->object
))
395 return REV_TREE_DIFFERENT
;
397 * A commit that is not pointed by a tag is uninteresting
398 * if we are not limited by path. This means that you will
399 * see the usual "commits that touch the paths" plus any
400 * tagged commit by specifying both --simplify-by-decoration
403 if (!revs
->prune_data
.nr
)
404 return REV_TREE_SAME
;
407 tree_difference
= REV_TREE_SAME
;
408 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
409 if (diff_tree_sha1(t1
->object
.sha1
, t2
->object
.sha1
, "",
411 return REV_TREE_DIFFERENT
;
412 return tree_difference
;
415 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
420 struct tree_desc empty
, real
;
421 struct tree
*t1
= commit
->tree
;
426 tree
= read_object_with_reference(t1
->object
.sha1
, tree_type
, &size
, NULL
);
429 init_tree_desc(&real
, tree
, size
);
430 init_tree_desc(&empty
, "", 0);
432 tree_difference
= REV_TREE_SAME
;
433 DIFF_OPT_CLR(&revs
->pruning
, HAS_CHANGES
);
434 retval
= diff_tree(&empty
, &real
, "", &revs
->pruning
);
437 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
440 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
442 struct commit_list
**pp
, *parent
;
443 int tree_changed
= 0, tree_same
= 0, nth_parent
= 0;
446 * If we don't do pruning, everything is interesting
454 if (!commit
->parents
) {
455 if (rev_same_tree_as_empty(revs
, commit
))
456 commit
->object
.flags
|= TREESAME
;
461 * Normal non-merge commit? If we don't want to make the
462 * history dense, we consider it always to be a change..
464 if (!revs
->dense
&& !commit
->parents
->next
)
467 pp
= &commit
->parents
;
468 while ((parent
= *pp
) != NULL
) {
469 struct commit
*p
= parent
->item
;
472 * Do not compare with later parents when we care only about
473 * the first parent chain, in order to avoid derailing the
474 * traversal to follow a side branch that brought everything
475 * in the path we are limited to by the pathspec.
477 if (revs
->first_parent_only
&& nth_parent
++)
479 if (parse_commit(p
) < 0)
480 die("cannot simplify commit %s (because of %s)",
481 sha1_to_hex(commit
->object
.sha1
),
482 sha1_to_hex(p
->object
.sha1
));
483 switch (rev_compare_tree(revs
, p
, commit
)) {
486 if (!revs
->simplify_history
|| (p
->object
.flags
& UNINTERESTING
)) {
487 /* Even if a merge with an uninteresting
488 * side branch brought the entire change
489 * we are interested in, we do not want
490 * to lose the other branches of this
491 * merge, so we just keep going.
497 commit
->parents
= parent
;
498 commit
->object
.flags
|= TREESAME
;
502 if (revs
->remove_empty_trees
&&
503 rev_same_tree_as_empty(revs
, p
)) {
504 /* We are adding all the specified
505 * paths from this parent, so the
506 * history beyond this parent is not
507 * interesting. Remove its parents
508 * (they are grandparents for us).
509 * IOW, we pretend this parent is a
512 if (parse_commit(p
) < 0)
513 die("cannot simplify commit %s (invalid %s)",
514 sha1_to_hex(commit
->object
.sha1
),
515 sha1_to_hex(p
->object
.sha1
));
520 case REV_TREE_DIFFERENT
:
525 die("bad tree compare for commit %s", sha1_to_hex(commit
->object
.sha1
));
527 if (tree_changed
&& !tree_same
)
529 commit
->object
.flags
|= TREESAME
;
532 static void commit_list_insert_by_date_cached(struct commit
*p
, struct commit_list
**head
,
533 struct commit_list
*cached_base
, struct commit_list
**cache
)
535 struct commit_list
*new_entry
;
537 if (cached_base
&& p
->date
< cached_base
->item
->date
)
538 new_entry
= commit_list_insert_by_date(p
, &cached_base
->next
);
540 new_entry
= commit_list_insert_by_date(p
, head
);
542 if (cache
&& (!*cache
|| p
->date
< (*cache
)->item
->date
))
546 static int add_parents_to_list(struct rev_info
*revs
, struct commit
*commit
,
547 struct commit_list
**list
, struct commit_list
**cache_ptr
)
549 struct commit_list
*parent
= commit
->parents
;
551 struct commit_list
*cached_base
= cache_ptr
? *cache_ptr
: NULL
;
553 if (commit
->object
.flags
& ADDED
)
555 commit
->object
.flags
|= ADDED
;
558 * If the commit is uninteresting, don't try to
559 * prune parents - we want the maximal uninteresting
562 * Normally we haven't parsed the parent
563 * yet, so we won't have a parent of a parent
564 * here. However, it may turn out that we've
565 * reached this commit some other way (where it
566 * wasn't uninteresting), in which case we need
567 * to mark its parents recursively too..
569 if (commit
->object
.flags
& UNINTERESTING
) {
571 struct commit
*p
= parent
->item
;
572 parent
= parent
->next
;
574 p
->object
.flags
|= UNINTERESTING
;
575 if (parse_commit(p
) < 0)
578 mark_parents_uninteresting(p
);
579 if (p
->object
.flags
& SEEN
)
581 p
->object
.flags
|= SEEN
;
582 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
588 * Ok, the commit wasn't uninteresting. Try to
589 * simplify the commit history and find the parent
590 * that has no differences in the path set if one exists.
592 try_to_simplify_commit(revs
, commit
);
597 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
599 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
600 struct commit
*p
= parent
->item
;
602 if (parse_commit(p
) < 0)
604 if (revs
->show_source
&& !p
->util
)
605 p
->util
= commit
->util
;
606 p
->object
.flags
|= left_flag
;
607 if (!(p
->object
.flags
& SEEN
)) {
608 p
->object
.flags
|= SEEN
;
609 commit_list_insert_by_date_cached(p
, list
, cached_base
, cache_ptr
);
611 if (revs
->first_parent_only
)
617 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
619 struct commit_list
*p
;
620 int left_count
= 0, right_count
= 0;
622 struct patch_ids ids
;
623 unsigned cherry_flag
;
625 /* First count the commits on the left and on the right */
626 for (p
= list
; p
; p
= p
->next
) {
627 struct commit
*commit
= p
->item
;
628 unsigned flags
= commit
->object
.flags
;
629 if (flags
& BOUNDARY
)
631 else if (flags
& SYMMETRIC_LEFT
)
637 if (!left_count
|| !right_count
)
640 left_first
= left_count
< right_count
;
641 init_patch_ids(&ids
);
642 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
644 /* Compute patch-ids for one side */
645 for (p
= list
; p
; p
= p
->next
) {
646 struct commit
*commit
= p
->item
;
647 unsigned flags
= commit
->object
.flags
;
649 if (flags
& BOUNDARY
)
652 * If we have fewer left, left_first is set and we omit
653 * commits on the right branch in this loop. If we have
654 * fewer right, we skip the left ones.
656 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
658 commit
->util
= add_commit_patch_id(commit
, &ids
);
661 /* either cherry_mark or cherry_pick are true */
662 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
664 /* Check the other side */
665 for (p
= list
; p
; p
= p
->next
) {
666 struct commit
*commit
= p
->item
;
668 unsigned flags
= commit
->object
.flags
;
670 if (flags
& BOUNDARY
)
673 * If we have fewer left, left_first is set and we omit
674 * commits on the left branch in this loop.
676 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
680 * Have we seen the same patch id?
682 id
= has_commit_patch_id(commit
, &ids
);
686 commit
->object
.flags
|= cherry_flag
;
689 /* Now check the original side for seen ones */
690 for (p
= list
; p
; p
= p
->next
) {
691 struct commit
*commit
= p
->item
;
692 struct patch_id
*ent
;
698 commit
->object
.flags
|= cherry_flag
;
702 free_patch_ids(&ids
);
705 /* How many extra uninteresting commits we want to see.. */
708 static int still_interesting(struct commit_list
*src
, unsigned long date
, int slop
)
711 * No source list at all? We're definitely done..
717 * Does the destination list contain entries with a date
718 * before the source list? Definitely _not_ done.
720 if (date
<= src
->item
->date
)
724 * Does the source list still have interesting commits in
725 * it? Definitely not done..
727 if (!everybody_uninteresting(src
))
730 /* Ok, we're closing in.. */
735 * "rev-list --ancestry-path A..B" computes commits that are ancestors
736 * of B but not ancestors of A but further limits the result to those
737 * that are descendants of A. This takes the list of bottom commits and
738 * the result of "A..B" without --ancestry-path, and limits the latter
739 * further to the ones that can reach one of the commits in "bottom".
741 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
743 struct commit_list
*p
;
744 struct commit_list
*rlist
= NULL
;
748 * Reverse the list so that it will be likely that we would
749 * process parents before children.
751 for (p
= list
; p
; p
= p
->next
)
752 commit_list_insert(p
->item
, &rlist
);
754 for (p
= bottom
; p
; p
= p
->next
)
755 p
->item
->object
.flags
|= TMP_MARK
;
758 * Mark the ones that can reach bottom commits in "list",
759 * in a bottom-up fashion.
763 for (p
= rlist
; p
; p
= p
->next
) {
764 struct commit
*c
= p
->item
;
765 struct commit_list
*parents
;
766 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
768 for (parents
= c
->parents
;
770 parents
= parents
->next
) {
771 if (!(parents
->item
->object
.flags
& TMP_MARK
))
773 c
->object
.flags
|= TMP_MARK
;
778 } while (made_progress
);
781 * NEEDSWORK: decide if we want to remove parents that are
782 * not marked with TMP_MARK from commit->parents for commits
783 * in the resulting list. We may not want to do that, though.
787 * The ones that are not marked with TMP_MARK are uninteresting
789 for (p
= list
; p
; p
= p
->next
) {
790 struct commit
*c
= p
->item
;
791 if (c
->object
.flags
& TMP_MARK
)
793 c
->object
.flags
|= UNINTERESTING
;
796 /* We are done with the TMP_MARK */
797 for (p
= list
; p
; p
= p
->next
)
798 p
->item
->object
.flags
&= ~TMP_MARK
;
799 for (p
= bottom
; p
; p
= p
->next
)
800 p
->item
->object
.flags
&= ~TMP_MARK
;
801 free_commit_list(rlist
);
805 * Before walking the history, keep the set of "negative" refs the
806 * caller has asked to exclude.
808 * This is used to compute "rev-list --ancestry-path A..B", as we need
809 * to filter the result of "A..B" further to the ones that can actually
812 static struct commit_list
*collect_bottom_commits(struct rev_info
*revs
)
814 struct commit_list
*bottom
= NULL
;
816 for (i
= 0; i
< revs
->cmdline
.nr
; i
++) {
817 struct rev_cmdline_entry
*elem
= &revs
->cmdline
.rev
[i
];
818 if ((elem
->flags
& UNINTERESTING
) &&
819 elem
->item
->type
== OBJ_COMMIT
)
820 commit_list_insert((struct commit
*)elem
->item
, &bottom
);
825 /* Assumes either left_only or right_only is set */
826 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
828 struct commit_list
*p
;
830 for (p
= list
; p
; p
= p
->next
) {
831 struct commit
*commit
= p
->item
;
833 if (revs
->right_only
) {
834 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
835 commit
->object
.flags
|= SHOWN
;
836 } else /* revs->left_only is set */
837 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
838 commit
->object
.flags
|= SHOWN
;
842 static int limit_list(struct rev_info
*revs
)
845 unsigned long date
= ~0ul;
846 struct commit_list
*list
= revs
->commits
;
847 struct commit_list
*newlist
= NULL
;
848 struct commit_list
**p
= &newlist
;
849 struct commit_list
*bottom
= NULL
;
851 if (revs
->ancestry_path
) {
852 bottom
= collect_bottom_commits(revs
);
854 die("--ancestry-path given but there are no bottom commits");
858 struct commit_list
*entry
= list
;
859 struct commit
*commit
= list
->item
;
860 struct object
*obj
= &commit
->object
;
861 show_early_output_fn_t show
;
866 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
867 obj
->flags
|= UNINTERESTING
;
868 if (add_parents_to_list(revs
, commit
, &list
, NULL
) < 0)
870 if (obj
->flags
& UNINTERESTING
) {
871 mark_parents_uninteresting(commit
);
873 p
= &commit_list_insert(commit
, p
)->next
;
874 slop
= still_interesting(list
, date
, slop
);
877 /* If showing all, add the whole pending list to the end */
882 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
885 p
= &commit_list_insert(commit
, p
)->next
;
887 show
= show_early_output
;
892 show_early_output
= NULL
;
894 if (revs
->cherry_pick
|| revs
->cherry_mark
)
895 cherry_pick_list(newlist
, revs
);
897 if (revs
->left_only
|| revs
->right_only
)
898 limit_left_right(newlist
, revs
);
901 limit_to_ancestry(bottom
, newlist
);
902 free_commit_list(bottom
);
905 revs
->commits
= newlist
;
910 * Add an entry to refs->cmdline with the specified information.
913 static void add_rev_cmdline(struct rev_info
*revs
,
919 struct rev_cmdline_info
*info
= &revs
->cmdline
;
922 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
923 info
->rev
[nr
].item
= item
;
924 info
->rev
[nr
].name
= xstrdup(name
);
925 info
->rev
[nr
].whence
= whence
;
926 info
->rev
[nr
].flags
= flags
;
932 int warned_bad_reflog
;
933 struct rev_info
*all_revs
;
934 const char *name_for_errormsg
;
937 static int handle_one_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
939 struct all_refs_cb
*cb
= cb_data
;
940 struct object
*object
= get_reference(cb
->all_revs
, path
, sha1
,
942 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
943 add_pending_sha1(cb
->all_revs
, path
, sha1
, cb
->all_flags
);
947 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
951 cb
->all_flags
= flags
;
954 static void handle_refs(const char *submodule
, struct rev_info
*revs
, unsigned flags
,
955 int (*for_each
)(const char *, each_ref_fn
, void *))
957 struct all_refs_cb cb
;
958 init_all_refs_cb(&cb
, revs
, flags
);
959 for_each(submodule
, handle_one_ref
, &cb
);
962 static void handle_one_reflog_commit(unsigned char *sha1
, void *cb_data
)
964 struct all_refs_cb
*cb
= cb_data
;
965 if (!is_null_sha1(sha1
)) {
966 struct object
*o
= parse_object(sha1
);
968 o
->flags
|= cb
->all_flags
;
969 /* ??? CMDLINEFLAGS ??? */
970 add_pending_object(cb
->all_revs
, o
, "");
972 else if (!cb
->warned_bad_reflog
) {
973 warning("reflog of '%s' references pruned commits",
974 cb
->name_for_errormsg
);
975 cb
->warned_bad_reflog
= 1;
980 static int handle_one_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
981 const char *email
, unsigned long timestamp
, int tz
,
982 const char *message
, void *cb_data
)
984 handle_one_reflog_commit(osha1
, cb_data
);
985 handle_one_reflog_commit(nsha1
, cb_data
);
989 static int handle_one_reflog(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
991 struct all_refs_cb
*cb
= cb_data
;
992 cb
->warned_bad_reflog
= 0;
993 cb
->name_for_errormsg
= path
;
994 for_each_reflog_ent(path
, handle_one_reflog_ent
, cb_data
);
998 static void handle_reflog(struct rev_info
*revs
, unsigned flags
)
1000 struct all_refs_cb cb
;
1002 cb
.all_flags
= flags
;
1003 for_each_reflog(handle_one_reflog
, &cb
);
1006 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
)
1008 unsigned char sha1
[20];
1010 struct commit
*commit
;
1011 struct commit_list
*parents
;
1012 const char *arg
= arg_
;
1015 flags
^= UNINTERESTING
;
1018 if (get_sha1_committish(arg
, sha1
))
1021 it
= get_reference(revs
, arg
, sha1
, 0);
1022 if (!it
&& revs
->ignore_missing
)
1024 if (it
->type
!= OBJ_TAG
)
1026 if (!((struct tag
*)it
)->tagged
)
1028 hashcpy(sha1
, ((struct tag
*)it
)->tagged
->sha1
);
1030 if (it
->type
!= OBJ_COMMIT
)
1032 commit
= (struct commit
*)it
;
1033 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
1034 it
= &parents
->item
->object
;
1036 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1037 add_pending_object(revs
, it
, arg
);
1042 void init_revisions(struct rev_info
*revs
, const char *prefix
)
1044 memset(revs
, 0, sizeof(*revs
));
1046 revs
->abbrev
= DEFAULT_ABBREV
;
1047 revs
->ignore_merges
= 1;
1048 revs
->simplify_history
= 1;
1049 DIFF_OPT_SET(&revs
->pruning
, RECURSIVE
);
1050 DIFF_OPT_SET(&revs
->pruning
, QUICK
);
1051 revs
->pruning
.add_remove
= file_add_remove
;
1052 revs
->pruning
.change
= file_change
;
1055 revs
->prefix
= prefix
;
1058 revs
->skip_count
= -1;
1059 revs
->max_count
= -1;
1060 revs
->max_parents
= -1;
1062 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1064 init_grep_defaults();
1065 grep_init(&revs
->grep_filter
, prefix
);
1066 revs
->grep_filter
.status_only
= 1;
1067 revs
->grep_filter
.regflags
= REG_NEWLINE
;
1069 diff_setup(&revs
->diffopt
);
1070 if (prefix
&& !revs
->diffopt
.prefix
) {
1071 revs
->diffopt
.prefix
= prefix
;
1072 revs
->diffopt
.prefix_length
= strlen(prefix
);
1075 revs
->notes_opt
.use_default_notes
= -1;
1078 static void add_pending_commit_list(struct rev_info
*revs
,
1079 struct commit_list
*commit_list
,
1082 while (commit_list
) {
1083 struct object
*object
= &commit_list
->item
->object
;
1084 object
->flags
|= flags
;
1085 add_pending_object(revs
, object
, sha1_to_hex(object
->sha1
));
1086 commit_list
= commit_list
->next
;
1090 static void prepare_show_merge(struct rev_info
*revs
)
1092 struct commit_list
*bases
;
1093 struct commit
*head
, *other
;
1094 unsigned char sha1
[20];
1095 const char **prune
= NULL
;
1096 int i
, prune_num
= 1; /* counting terminating NULL */
1098 if (get_sha1("HEAD", sha1
))
1099 die("--merge without HEAD?");
1100 head
= lookup_commit_or_die(sha1
, "HEAD");
1101 if (get_sha1("MERGE_HEAD", sha1
))
1102 die("--merge without MERGE_HEAD?");
1103 other
= lookup_commit_or_die(sha1
, "MERGE_HEAD");
1104 add_pending_object(revs
, &head
->object
, "HEAD");
1105 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1106 bases
= get_merge_bases(head
, other
, 1);
1107 add_pending_commit_list(revs
, bases
, UNINTERESTING
);
1108 free_commit_list(bases
);
1109 head
->object
.flags
|= SYMMETRIC_LEFT
;
1113 for (i
= 0; i
< active_nr
; i
++) {
1114 struct cache_entry
*ce
= active_cache
[i
];
1117 if (ce_path_match(ce
, &revs
->prune_data
)) {
1119 prune
= xrealloc(prune
, sizeof(*prune
) * prune_num
);
1120 prune
[prune_num
-2] = ce
->name
;
1121 prune
[prune_num
-1] = NULL
;
1123 while ((i
+1 < active_nr
) &&
1124 ce_same_name(ce
, active_cache
[i
+1]))
1127 free_pathspec(&revs
->prune_data
);
1128 init_pathspec(&revs
->prune_data
, prune
);
1132 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
1134 struct object_context oc
;
1136 struct object
*object
;
1137 unsigned char sha1
[20];
1139 const char *arg
= arg_
;
1140 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
1141 unsigned get_sha1_flags
= 0;
1143 dotdot
= strstr(arg
, "..");
1145 unsigned char from_sha1
[20];
1146 const char *next
= dotdot
+ 2;
1147 const char *this = arg
;
1148 int symmetric
= *next
== '.';
1149 unsigned int flags_exclude
= flags
^ UNINTERESTING
;
1150 static const char head_by_default
[] = "HEAD";
1151 unsigned int a_flags
;
1157 next
= head_by_default
;
1159 this = head_by_default
;
1160 if (this == head_by_default
&& next
== head_by_default
&&
1163 * Just ".."? That is not a range but the
1164 * pathspec for the parent directory.
1166 if (!cant_be_filename
) {
1171 if (!get_sha1_committish(this, from_sha1
) &&
1172 !get_sha1_committish(next
, sha1
)) {
1173 struct commit
*a
, *b
;
1174 struct commit_list
*exclude
;
1176 a
= lookup_commit_reference(from_sha1
);
1177 b
= lookup_commit_reference(sha1
);
1179 if (revs
->ignore_missing
)
1182 "Invalid symmetric difference expression %s...%s" :
1183 "Invalid revision range %s..%s",
1187 if (!cant_be_filename
) {
1189 verify_non_filename(revs
->prefix
, arg
);
1193 exclude
= get_merge_bases(a
, b
, 1);
1194 add_pending_commit_list(revs
, exclude
,
1196 free_commit_list(exclude
);
1197 a_flags
= flags
| SYMMETRIC_LEFT
;
1199 a_flags
= flags_exclude
;
1200 a
->object
.flags
|= a_flags
;
1201 b
->object
.flags
|= flags
;
1202 add_rev_cmdline(revs
, &a
->object
, this,
1203 REV_CMD_LEFT
, a_flags
);
1204 add_rev_cmdline(revs
, &b
->object
, next
,
1205 REV_CMD_RIGHT
, flags
);
1206 add_pending_object(revs
, &a
->object
, this);
1207 add_pending_object(revs
, &b
->object
, next
);
1212 dotdot
= strstr(arg
, "^@");
1213 if (dotdot
&& !dotdot
[2]) {
1215 if (add_parents_only(revs
, arg
, flags
))
1219 dotdot
= strstr(arg
, "^!");
1220 if (dotdot
&& !dotdot
[2]) {
1222 if (!add_parents_only(revs
, arg
, flags
^ UNINTERESTING
))
1228 local_flags
= UNINTERESTING
;
1232 if (revarg_opt
& REVARG_COMMITTISH
)
1233 get_sha1_flags
= GET_SHA1_COMMITTISH
;
1235 if (get_sha1_with_context(arg
, get_sha1_flags
, sha1
, &oc
))
1236 return revs
->ignore_missing
? 0 : -1;
1237 if (!cant_be_filename
)
1238 verify_non_filename(revs
->prefix
, arg
);
1239 object
= get_reference(revs
, arg
, sha1
, flags
^ local_flags
);
1240 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
1241 add_pending_object_with_mode(revs
, object
, arg
, oc
.mode
);
1245 struct cmdline_pathspec
{
1251 static void append_prune_data(struct cmdline_pathspec
*prune
, const char **av
)
1254 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1255 prune
->path
[prune
->nr
++] = *(av
++);
1259 static void read_pathspec_from_stdin(struct rev_info
*revs
, struct strbuf
*sb
,
1260 struct cmdline_pathspec
*prune
)
1262 while (strbuf_getwholeline(sb
, stdin
, '\n') != EOF
) {
1264 if (len
&& sb
->buf
[len
- 1] == '\n')
1265 sb
->buf
[--len
] = '\0';
1266 ALLOC_GROW(prune
->path
, prune
->nr
+1, prune
->alloc
);
1267 prune
->path
[prune
->nr
++] = xstrdup(sb
->buf
);
1271 static void read_revisions_from_stdin(struct rev_info
*revs
,
1272 struct cmdline_pathspec
*prune
)
1275 int seen_dashdash
= 0;
1277 strbuf_init(&sb
, 1000);
1278 while (strbuf_getwholeline(&sb
, stdin
, '\n') != EOF
) {
1280 if (len
&& sb
.buf
[len
- 1] == '\n')
1281 sb
.buf
[--len
] = '\0';
1284 if (sb
.buf
[0] == '-') {
1285 if (len
== 2 && sb
.buf
[1] == '-') {
1289 die("options not supported in --stdin mode");
1291 if (handle_revision_arg(xstrdup(sb
.buf
), revs
, 0,
1292 REVARG_CANNOT_BE_FILENAME
))
1293 die("bad revision '%s'", sb
.buf
);
1296 read_pathspec_from_stdin(revs
, &sb
, prune
);
1297 strbuf_release(&sb
);
1300 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
1302 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
1305 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
1307 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
1310 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
1312 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
1315 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
1316 int *unkc
, const char **unkv
)
1318 const char *arg
= argv
[0];
1322 /* pseudo revision arguments */
1323 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
1324 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
1325 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
1326 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
1327 !strcmp(arg
, "--bisect") || !prefixcmp(arg
, "--glob=") ||
1328 !prefixcmp(arg
, "--branches=") || !prefixcmp(arg
, "--tags=") ||
1329 !prefixcmp(arg
, "--remotes=") || !prefixcmp(arg
, "--no-walk="))
1331 unkv
[(*unkc
)++] = arg
;
1335 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
1336 revs
->max_count
= atoi(optarg
);
1339 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
1340 revs
->skip_count
= atoi(optarg
);
1342 } else if ((*arg
== '-') && isdigit(arg
[1])) {
1343 /* accept -<digit>, like traditional "head" */
1344 revs
->max_count
= atoi(arg
+ 1);
1346 } else if (!strcmp(arg
, "-n")) {
1348 return error("-n requires an argument");
1349 revs
->max_count
= atoi(argv
[1]);
1352 } else if (!prefixcmp(arg
, "-n")) {
1353 revs
->max_count
= atoi(arg
+ 2);
1355 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
1356 revs
->max_age
= atoi(optarg
);
1358 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
1359 revs
->max_age
= approxidate(optarg
);
1361 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
1362 revs
->max_age
= approxidate(optarg
);
1364 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
1365 revs
->min_age
= atoi(optarg
);
1367 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
1368 revs
->min_age
= approxidate(optarg
);
1370 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
1371 revs
->min_age
= approxidate(optarg
);
1373 } else if (!strcmp(arg
, "--first-parent")) {
1374 revs
->first_parent_only
= 1;
1375 } else if (!strcmp(arg
, "--ancestry-path")) {
1376 revs
->ancestry_path
= 1;
1377 revs
->simplify_history
= 0;
1379 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
1380 init_reflog_walk(&revs
->reflog_info
);
1381 } else if (!strcmp(arg
, "--default")) {
1383 return error("bad --default argument");
1384 revs
->def
= argv
[1];
1386 } else if (!strcmp(arg
, "--merge")) {
1387 revs
->show_merge
= 1;
1388 } else if (!strcmp(arg
, "--topo-order")) {
1390 revs
->topo_order
= 1;
1391 } else if (!strcmp(arg
, "--simplify-merges")) {
1392 revs
->simplify_merges
= 1;
1393 revs
->topo_order
= 1;
1394 revs
->rewrite_parents
= 1;
1395 revs
->simplify_history
= 0;
1397 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
1398 revs
->simplify_merges
= 1;
1399 revs
->topo_order
= 1;
1400 revs
->rewrite_parents
= 1;
1401 revs
->simplify_history
= 0;
1402 revs
->simplify_by_decoration
= 1;
1405 load_ref_decorations(DECORATE_SHORT_REFS
);
1406 } else if (!strcmp(arg
, "--date-order")) {
1408 revs
->topo_order
= 1;
1409 } else if (!prefixcmp(arg
, "--early-output")) {
1413 count
= atoi(arg
+15);
1416 revs
->topo_order
= 1;
1417 revs
->early_output
= count
;
1419 } else if (!strcmp(arg
, "--parents")) {
1420 revs
->rewrite_parents
= 1;
1421 revs
->print_parents
= 1;
1422 } else if (!strcmp(arg
, "--dense")) {
1424 } else if (!strcmp(arg
, "--sparse")) {
1426 } else if (!strcmp(arg
, "--show-all")) {
1428 } else if (!strcmp(arg
, "--remove-empty")) {
1429 revs
->remove_empty_trees
= 1;
1430 } else if (!strcmp(arg
, "--merges")) {
1431 revs
->min_parents
= 2;
1432 } else if (!strcmp(arg
, "--no-merges")) {
1433 revs
->max_parents
= 1;
1434 } else if (!prefixcmp(arg
, "--min-parents=")) {
1435 revs
->min_parents
= atoi(arg
+14);
1436 } else if (!prefixcmp(arg
, "--no-min-parents")) {
1437 revs
->min_parents
= 0;
1438 } else if (!prefixcmp(arg
, "--max-parents=")) {
1439 revs
->max_parents
= atoi(arg
+14);
1440 } else if (!prefixcmp(arg
, "--no-max-parents")) {
1441 revs
->max_parents
= -1;
1442 } else if (!strcmp(arg
, "--boundary")) {
1444 } else if (!strcmp(arg
, "--left-right")) {
1445 revs
->left_right
= 1;
1446 } else if (!strcmp(arg
, "--left-only")) {
1447 if (revs
->right_only
)
1448 die("--left-only is incompatible with --right-only"
1450 revs
->left_only
= 1;
1451 } else if (!strcmp(arg
, "--right-only")) {
1452 if (revs
->left_only
)
1453 die("--right-only is incompatible with --left-only");
1454 revs
->right_only
= 1;
1455 } else if (!strcmp(arg
, "--cherry")) {
1456 if (revs
->left_only
)
1457 die("--cherry is incompatible with --left-only");
1458 revs
->cherry_mark
= 1;
1459 revs
->right_only
= 1;
1460 revs
->max_parents
= 1;
1462 } else if (!strcmp(arg
, "--count")) {
1464 } else if (!strcmp(arg
, "--cherry-mark")) {
1465 if (revs
->cherry_pick
)
1466 die("--cherry-mark is incompatible with --cherry-pick");
1467 revs
->cherry_mark
= 1;
1468 revs
->limited
= 1; /* needs limit_list() */
1469 } else if (!strcmp(arg
, "--cherry-pick")) {
1470 if (revs
->cherry_mark
)
1471 die("--cherry-pick is incompatible with --cherry-mark");
1472 revs
->cherry_pick
= 1;
1474 } else if (!strcmp(arg
, "--objects")) {
1475 revs
->tag_objects
= 1;
1476 revs
->tree_objects
= 1;
1477 revs
->blob_objects
= 1;
1478 } else if (!strcmp(arg
, "--objects-edge")) {
1479 revs
->tag_objects
= 1;
1480 revs
->tree_objects
= 1;
1481 revs
->blob_objects
= 1;
1482 revs
->edge_hint
= 1;
1483 } else if (!strcmp(arg
, "--verify-objects")) {
1484 revs
->tag_objects
= 1;
1485 revs
->tree_objects
= 1;
1486 revs
->blob_objects
= 1;
1487 revs
->verify_objects
= 1;
1488 } else if (!strcmp(arg
, "--unpacked")) {
1490 } else if (!prefixcmp(arg
, "--unpacked=")) {
1491 die("--unpacked=<packfile> no longer supported.");
1492 } else if (!strcmp(arg
, "-r")) {
1494 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1495 } else if (!strcmp(arg
, "-t")) {
1497 DIFF_OPT_SET(&revs
->diffopt
, RECURSIVE
);
1498 DIFF_OPT_SET(&revs
->diffopt
, TREE_IN_RECURSIVE
);
1499 } else if (!strcmp(arg
, "-m")) {
1500 revs
->ignore_merges
= 0;
1501 } else if (!strcmp(arg
, "-c")) {
1503 revs
->dense_combined_merges
= 0;
1504 revs
->combine_merges
= 1;
1505 } else if (!strcmp(arg
, "--cc")) {
1507 revs
->dense_combined_merges
= 1;
1508 revs
->combine_merges
= 1;
1509 } else if (!strcmp(arg
, "-v")) {
1510 revs
->verbose_header
= 1;
1511 } else if (!strcmp(arg
, "--pretty")) {
1512 revs
->verbose_header
= 1;
1513 revs
->pretty_given
= 1;
1514 get_commit_format(arg
+8, revs
);
1515 } else if (!prefixcmp(arg
, "--pretty=") || !prefixcmp(arg
, "--format=")) {
1517 * Detached form ("--pretty X" as opposed to "--pretty=X")
1518 * not allowed, since the argument is optional.
1520 revs
->verbose_header
= 1;
1521 revs
->pretty_given
= 1;
1522 get_commit_format(arg
+9, revs
);
1523 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
1524 revs
->show_notes
= 1;
1525 revs
->show_notes_given
= 1;
1526 revs
->notes_opt
.use_default_notes
= 1;
1527 } else if (!strcmp(arg
, "--show-signature")) {
1528 revs
->show_signature
= 1;
1529 } else if (!prefixcmp(arg
, "--show-notes=") ||
1530 !prefixcmp(arg
, "--notes=")) {
1531 struct strbuf buf
= STRBUF_INIT
;
1532 revs
->show_notes
= 1;
1533 revs
->show_notes_given
= 1;
1534 if (!prefixcmp(arg
, "--show-notes")) {
1535 if (revs
->notes_opt
.use_default_notes
< 0)
1536 revs
->notes_opt
.use_default_notes
= 1;
1537 strbuf_addstr(&buf
, arg
+13);
1540 strbuf_addstr(&buf
, arg
+8);
1541 expand_notes_ref(&buf
);
1542 string_list_append(&revs
->notes_opt
.extra_notes_refs
,
1543 strbuf_detach(&buf
, NULL
));
1544 } else if (!strcmp(arg
, "--no-notes")) {
1545 revs
->show_notes
= 0;
1546 revs
->show_notes_given
= 1;
1547 revs
->notes_opt
.use_default_notes
= -1;
1548 /* we have been strdup'ing ourselves, so trick
1549 * string_list into free()ing strings */
1550 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 1;
1551 string_list_clear(&revs
->notes_opt
.extra_notes_refs
, 0);
1552 revs
->notes_opt
.extra_notes_refs
.strdup_strings
= 0;
1553 } else if (!strcmp(arg
, "--standard-notes")) {
1554 revs
->show_notes_given
= 1;
1555 revs
->notes_opt
.use_default_notes
= 1;
1556 } else if (!strcmp(arg
, "--no-standard-notes")) {
1557 revs
->notes_opt
.use_default_notes
= 0;
1558 } else if (!strcmp(arg
, "--oneline")) {
1559 revs
->verbose_header
= 1;
1560 get_commit_format("oneline", revs
);
1561 revs
->pretty_given
= 1;
1562 revs
->abbrev_commit
= 1;
1563 } else if (!strcmp(arg
, "--graph")) {
1564 revs
->topo_order
= 1;
1565 revs
->rewrite_parents
= 1;
1566 revs
->graph
= graph_init(revs
);
1567 } else if (!strcmp(arg
, "--root")) {
1568 revs
->show_root_diff
= 1;
1569 } else if (!strcmp(arg
, "--no-commit-id")) {
1570 revs
->no_commit_id
= 1;
1571 } else if (!strcmp(arg
, "--always")) {
1572 revs
->always_show_header
= 1;
1573 } else if (!strcmp(arg
, "--no-abbrev")) {
1575 } else if (!strcmp(arg
, "--abbrev")) {
1576 revs
->abbrev
= DEFAULT_ABBREV
;
1577 } else if (!prefixcmp(arg
, "--abbrev=")) {
1578 revs
->abbrev
= strtoul(arg
+ 9, NULL
, 10);
1579 if (revs
->abbrev
< MINIMUM_ABBREV
)
1580 revs
->abbrev
= MINIMUM_ABBREV
;
1581 else if (revs
->abbrev
> 40)
1583 } else if (!strcmp(arg
, "--abbrev-commit")) {
1584 revs
->abbrev_commit
= 1;
1585 revs
->abbrev_commit_given
= 1;
1586 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
1587 revs
->abbrev_commit
= 0;
1588 } else if (!strcmp(arg
, "--full-diff")) {
1590 revs
->full_diff
= 1;
1591 } else if (!strcmp(arg
, "--full-history")) {
1592 revs
->simplify_history
= 0;
1593 } else if (!strcmp(arg
, "--relative-date")) {
1594 revs
->date_mode
= DATE_RELATIVE
;
1595 revs
->date_mode_explicit
= 1;
1596 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
1597 revs
->date_mode
= parse_date_format(optarg
);
1598 revs
->date_mode_explicit
= 1;
1600 } else if (!strcmp(arg
, "--log-size")) {
1601 revs
->show_log_size
= 1;
1604 * Grepping the commit log
1606 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
1607 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
1609 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
1610 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
1612 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
1613 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
1615 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
1616 add_message_grep(revs
, optarg
);
1618 } else if (!strcmp(arg
, "--grep-debug")) {
1619 revs
->grep_filter
.debug
= 1;
1620 } else if (!strcmp(arg
, "--basic-regexp")) {
1621 grep_set_pattern_type_option(GREP_PATTERN_TYPE_BRE
, &revs
->grep_filter
);
1622 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
1623 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE
, &revs
->grep_filter
);
1624 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
1625 revs
->grep_filter
.regflags
|= REG_ICASE
;
1626 DIFF_OPT_SET(&revs
->diffopt
, PICKAXE_IGNORE_CASE
);
1627 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
1628 grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED
, &revs
->grep_filter
);
1629 } else if (!strcmp(arg
, "--perl-regexp")) {
1630 grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE
, &revs
->grep_filter
);
1631 } else if (!strcmp(arg
, "--all-match")) {
1632 revs
->grep_filter
.all_match
= 1;
1633 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
1634 if (strcmp(optarg
, "none"))
1635 git_log_output_encoding
= xstrdup(optarg
);
1637 git_log_output_encoding
= "";
1639 } else if (!strcmp(arg
, "--reverse")) {
1641 } else if (!strcmp(arg
, "--children")) {
1642 revs
->children
.name
= "children";
1644 } else if (!strcmp(arg
, "--ignore-missing")) {
1645 revs
->ignore_missing
= 1;
1647 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
);
1649 unkv
[(*unkc
)++] = arg
;
1656 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
1657 const struct option
*options
,
1658 const char * const usagestr
[])
1660 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
1661 &ctx
->cpidx
, ctx
->out
);
1663 error("unknown option `%s'", ctx
->argv
[0]);
1664 usage_with_options(usagestr
, options
);
1670 static int for_each_bad_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1672 return for_each_ref_in_submodule(submodule
, "refs/bisect/bad", fn
, cb_data
);
1675 static int for_each_good_bisect_ref(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1677 return for_each_ref_in_submodule(submodule
, "refs/bisect/good", fn
, cb_data
);
1680 static int handle_revision_pseudo_opt(const char *submodule
,
1681 struct rev_info
*revs
,
1682 int argc
, const char **argv
, int *flags
)
1684 const char *arg
= argv
[0];
1691 * Commands like "git shortlog" will not accept the options below
1692 * unless parse_revision_opt queues them (as opposed to erroring
1695 * When implementing your new pseudo-option, remember to
1696 * register it in the list at the top of handle_revision_opt.
1698 if (!strcmp(arg
, "--all")) {
1699 handle_refs(submodule
, revs
, *flags
, for_each_ref_submodule
);
1700 handle_refs(submodule
, revs
, *flags
, head_ref_submodule
);
1701 } else if (!strcmp(arg
, "--branches")) {
1702 handle_refs(submodule
, revs
, *flags
, for_each_branch_ref_submodule
);
1703 } else if (!strcmp(arg
, "--bisect")) {
1704 handle_refs(submodule
, revs
, *flags
, for_each_bad_bisect_ref
);
1705 handle_refs(submodule
, revs
, *flags
^ UNINTERESTING
, for_each_good_bisect_ref
);
1707 } else if (!strcmp(arg
, "--tags")) {
1708 handle_refs(submodule
, revs
, *flags
, for_each_tag_ref_submodule
);
1709 } else if (!strcmp(arg
, "--remotes")) {
1710 handle_refs(submodule
, revs
, *flags
, for_each_remote_ref_submodule
);
1711 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
1712 struct all_refs_cb cb
;
1713 init_all_refs_cb(&cb
, revs
, *flags
);
1714 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
1716 } else if (!prefixcmp(arg
, "--branches=")) {
1717 struct all_refs_cb cb
;
1718 init_all_refs_cb(&cb
, revs
, *flags
);
1719 for_each_glob_ref_in(handle_one_ref
, arg
+ 11, "refs/heads/", &cb
);
1720 } else if (!prefixcmp(arg
, "--tags=")) {
1721 struct all_refs_cb cb
;
1722 init_all_refs_cb(&cb
, revs
, *flags
);
1723 for_each_glob_ref_in(handle_one_ref
, arg
+ 7, "refs/tags/", &cb
);
1724 } else if (!prefixcmp(arg
, "--remotes=")) {
1725 struct all_refs_cb cb
;
1726 init_all_refs_cb(&cb
, revs
, *flags
);
1727 for_each_glob_ref_in(handle_one_ref
, arg
+ 10, "refs/remotes/", &cb
);
1728 } else if (!strcmp(arg
, "--reflog")) {
1729 handle_reflog(revs
, *flags
);
1730 } else if (!strcmp(arg
, "--not")) {
1731 *flags
^= UNINTERESTING
;
1732 } else if (!strcmp(arg
, "--no-walk")) {
1733 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
1734 } else if (!prefixcmp(arg
, "--no-walk=")) {
1736 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
1737 * not allowed, since the argument is optional.
1739 if (!strcmp(arg
+ 10, "sorted"))
1740 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
1741 else if (!strcmp(arg
+ 10, "unsorted"))
1742 revs
->no_walk
= REVISION_WALK_NO_WALK_UNSORTED
;
1744 return error("invalid argument to --no-walk");
1745 } else if (!strcmp(arg
, "--do-walk")) {
1755 * Parse revision information, filling in the "rev_info" structure,
1756 * and removing the used arguments from the argument list.
1758 * Returns the number of arguments left that weren't recognized
1759 * (which are also moved to the head of the argument list)
1761 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
1763 int i
, flags
, left
, seen_dashdash
, read_from_stdin
, got_rev_arg
= 0, revarg_opt
;
1764 struct cmdline_pathspec prune_data
;
1765 const char *submodule
= NULL
;
1767 memset(&prune_data
, 0, sizeof(prune_data
));
1769 submodule
= opt
->submodule
;
1771 /* First, search for "--" */
1772 if (opt
&& opt
->assume_dashdash
) {
1776 for (i
= 1; i
< argc
; i
++) {
1777 const char *arg
= argv
[i
];
1778 if (strcmp(arg
, "--"))
1783 append_prune_data(&prune_data
, argv
+ i
+ 1);
1789 /* Second, deal with arguments and options */
1791 revarg_opt
= opt
? opt
->revarg_opt
: 0;
1793 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
1794 read_from_stdin
= 0;
1795 for (left
= i
= 1; i
< argc
; i
++) {
1796 const char *arg
= argv
[i
];
1800 opts
= handle_revision_pseudo_opt(submodule
,
1801 revs
, argc
- i
, argv
+ i
,
1808 if (!strcmp(arg
, "--stdin")) {
1809 if (revs
->disable_stdin
) {
1813 if (read_from_stdin
++)
1814 die("--stdin given twice?");
1815 read_revisions_from_stdin(revs
, &prune_data
);
1819 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
, &left
, argv
);
1830 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
1832 if (seen_dashdash
|| *arg
== '^')
1833 die("bad revision '%s'", arg
);
1835 /* If we didn't have a "--":
1836 * (1) all filenames must exist;
1837 * (2) all rev-args must not be interpretable
1838 * as a valid filename.
1839 * but the latter we have checked in the main loop.
1841 for (j
= i
; j
< argc
; j
++)
1842 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
1844 append_prune_data(&prune_data
, argv
+ i
);
1851 if (prune_data
.nr
) {
1853 * If we need to introduce the magic "a lone ':' means no
1854 * pathspec whatsoever", here is the place to do so.
1856 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1857 * prune_data.nr = 0;
1858 * prune_data.alloc = 0;
1859 * free(prune_data.path);
1860 * prune_data.path = NULL;
1862 * terminate prune_data.alloc with NULL and
1863 * call init_pathspec() to set revs->prune_data here.
1866 ALLOC_GROW(prune_data
.path
, prune_data
.nr
+1, prune_data
.alloc
);
1867 prune_data
.path
[prune_data
.nr
++] = NULL
;
1868 init_pathspec(&revs
->prune_data
,
1869 get_pathspec(revs
->prefix
, prune_data
.path
));
1872 if (revs
->def
== NULL
)
1873 revs
->def
= opt
? opt
->def
: NULL
;
1874 if (opt
&& opt
->tweak
)
1875 opt
->tweak(revs
, opt
);
1876 if (revs
->show_merge
)
1877 prepare_show_merge(revs
);
1878 if (revs
->def
&& !revs
->pending
.nr
&& !got_rev_arg
) {
1879 unsigned char sha1
[20];
1880 struct object
*object
;
1881 struct object_context oc
;
1882 if (get_sha1_with_context(revs
->def
, 0, sha1
, &oc
))
1883 die("bad default revision '%s'", revs
->def
);
1884 object
= get_reference(revs
, revs
->def
, sha1
, 0);
1885 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
1888 /* Did the user ask for any diff output? Run the diff! */
1889 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
1892 /* Pickaxe, diff-filter and rename following need diffs */
1893 if (revs
->diffopt
.pickaxe
||
1894 revs
->diffopt
.filter
||
1895 DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1898 if (revs
->topo_order
)
1901 if (revs
->prune_data
.nr
) {
1902 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->pruning
);
1903 /* Can't prune commits with rename following: the paths change.. */
1904 if (!DIFF_OPT_TST(&revs
->diffopt
, FOLLOW_RENAMES
))
1906 if (!revs
->full_diff
)
1907 diff_tree_setup_paths(revs
->prune_data
.raw
, &revs
->diffopt
);
1909 if (revs
->combine_merges
)
1910 revs
->ignore_merges
= 0;
1911 revs
->diffopt
.abbrev
= revs
->abbrev
;
1912 diff_setup_done(&revs
->diffopt
);
1914 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED
,
1915 &revs
->grep_filter
);
1916 compile_grep_patterns(&revs
->grep_filter
);
1918 if (revs
->reverse
&& revs
->reflog_info
)
1919 die("cannot combine --reverse with --walk-reflogs");
1920 if (revs
->rewrite_parents
&& revs
->children
.name
)
1921 die("cannot combine --parents and --children");
1924 * Limitations on the graph functionality
1926 if (revs
->reverse
&& revs
->graph
)
1927 die("cannot combine --reverse with --graph");
1929 if (revs
->reflog_info
&& revs
->graph
)
1930 die("cannot combine --walk-reflogs with --graph");
1931 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
1932 die("cannot use --grep-reflog without --walk-reflogs");
1937 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
1939 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
1942 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
1945 static int remove_duplicate_parents(struct commit
*commit
)
1947 struct commit_list
**pp
, *p
;
1948 int surviving_parents
;
1950 /* Examine existing parents while marking ones we have seen... */
1951 pp
= &commit
->parents
;
1952 while ((p
= *pp
) != NULL
) {
1953 struct commit
*parent
= p
->item
;
1954 if (parent
->object
.flags
& TMP_MARK
) {
1958 parent
->object
.flags
|= TMP_MARK
;
1961 /* count them while clearing the temporary mark */
1962 surviving_parents
= 0;
1963 for (p
= commit
->parents
; p
; p
= p
->next
) {
1964 p
->item
->object
.flags
&= ~TMP_MARK
;
1965 surviving_parents
++;
1967 return surviving_parents
;
1970 struct merge_simplify_state
{
1971 struct commit
*simplified
;
1974 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
1976 struct merge_simplify_state
*st
;
1978 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
1980 st
= xcalloc(1, sizeof(*st
));
1981 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
1986 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
1988 struct commit_list
*p
;
1989 struct merge_simplify_state
*st
, *pst
;
1992 st
= locate_simplify_state(revs
, commit
);
1995 * Have we handled this one?
2001 * An UNINTERESTING commit simplifies to itself, so does a
2002 * root commit. We do not rewrite parents of such commit
2005 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
2006 st
->simplified
= commit
;
2011 * Do we know what commit all of our parents that matter
2012 * should be rewritten to? Otherwise we are not ready to
2013 * rewrite this one yet.
2015 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
2016 pst
= locate_simplify_state(revs
, p
->item
);
2017 if (!pst
->simplified
) {
2018 tail
= &commit_list_insert(p
->item
, tail
)->next
;
2021 if (revs
->first_parent_only
)
2025 tail
= &commit_list_insert(commit
, tail
)->next
;
2030 * Rewrite our list of parents.
2032 for (p
= commit
->parents
; p
; p
= p
->next
) {
2033 pst
= locate_simplify_state(revs
, p
->item
);
2034 p
->item
= pst
->simplified
;
2035 if (revs
->first_parent_only
)
2039 if (revs
->first_parent_only
)
2042 cnt
= remove_duplicate_parents(commit
);
2045 * It is possible that we are a merge and one side branch
2046 * does not have any commit that touches the given paths;
2047 * in such a case, the immediate parents will be rewritten
2048 * to different commits.
2050 * o----X X: the commit we are looking at;
2051 * / / o: a commit that touches the paths;
2054 * Further reduce the parents by removing redundant parents.
2057 struct commit_list
*h
= reduce_heads(commit
->parents
);
2058 cnt
= commit_list_count(h
);
2059 free_commit_list(commit
->parents
);
2060 commit
->parents
= h
;
2064 * A commit simplifies to itself if it is a root, if it is
2065 * UNINTERESTING, if it touches the given paths, or if it is a
2066 * merge and its parents simplifies to more than one commits
2067 * (the first two cases are already handled at the beginning of
2070 * Otherwise, it simplifies to what its sole parent simplifies to.
2073 (commit
->object
.flags
& UNINTERESTING
) ||
2074 !(commit
->object
.flags
& TREESAME
) ||
2076 st
->simplified
= commit
;
2078 pst
= locate_simplify_state(revs
, commit
->parents
->item
);
2079 st
->simplified
= pst
->simplified
;
2084 static void simplify_merges(struct rev_info
*revs
)
2086 struct commit_list
*list
, *next
;
2087 struct commit_list
*yet_to_do
, **tail
;
2088 struct commit
*commit
;
2093 /* feed the list reversed */
2095 for (list
= revs
->commits
; list
; list
= next
) {
2096 commit
= list
->item
;
2099 * Do not free(list) here yet; the original list
2100 * is used later in this function.
2102 commit_list_insert(commit
, &yet_to_do
);
2109 commit
= list
->item
;
2113 tail
= simplify_one(revs
, commit
, tail
);
2117 /* clean up the result, removing the simplified ones */
2118 list
= revs
->commits
;
2119 revs
->commits
= NULL
;
2120 tail
= &revs
->commits
;
2122 struct merge_simplify_state
*st
;
2124 commit
= list
->item
;
2128 st
= locate_simplify_state(revs
, commit
);
2129 if (st
->simplified
== commit
)
2130 tail
= &commit_list_insert(commit
, tail
)->next
;
2134 static void set_children(struct rev_info
*revs
)
2136 struct commit_list
*l
;
2137 for (l
= revs
->commits
; l
; l
= l
->next
) {
2138 struct commit
*commit
= l
->item
;
2139 struct commit_list
*p
;
2141 for (p
= commit
->parents
; p
; p
= p
->next
)
2142 add_child(revs
, p
->item
, commit
);
2146 void reset_revision_walk(void)
2148 clear_object_flags(SEEN
| ADDED
| SHOWN
);
2151 int prepare_revision_walk(struct rev_info
*revs
)
2153 int nr
= revs
->pending
.nr
;
2154 struct object_array_entry
*e
, *list
;
2155 struct commit_list
**next
= &revs
->commits
;
2157 e
= list
= revs
->pending
.objects
;
2158 revs
->pending
.nr
= 0;
2159 revs
->pending
.alloc
= 0;
2160 revs
->pending
.objects
= NULL
;
2162 struct commit
*commit
= handle_commit(revs
, e
->item
, e
->name
);
2164 if (!(commit
->object
.flags
& SEEN
)) {
2165 commit
->object
.flags
|= SEEN
;
2166 next
= commit_list_append(commit
, next
);
2171 if (!revs
->leak_pending
)
2174 if (revs
->no_walk
!= REVISION_WALK_NO_WALK_UNSORTED
)
2175 commit_list_sort_by_date(&revs
->commits
);
2179 if (limit_list(revs
) < 0)
2181 if (revs
->topo_order
)
2182 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2183 if (revs
->simplify_merges
)
2184 simplify_merges(revs
);
2185 if (revs
->children
.name
)
2190 enum rewrite_result
{
2192 rewrite_one_noparents
,
2196 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
2198 struct commit_list
*cache
= NULL
;
2201 struct commit
*p
= *pp
;
2203 if (add_parents_to_list(revs
, p
, &revs
->commits
, &cache
) < 0)
2204 return rewrite_one_error
;
2205 if (p
->parents
&& p
->parents
->next
)
2206 return rewrite_one_ok
;
2207 if (p
->object
.flags
& UNINTERESTING
)
2208 return rewrite_one_ok
;
2209 if (!(p
->object
.flags
& TREESAME
))
2210 return rewrite_one_ok
;
2212 return rewrite_one_noparents
;
2213 *pp
= p
->parents
->item
;
2217 static int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
)
2219 struct commit_list
**pp
= &commit
->parents
;
2221 struct commit_list
*parent
= *pp
;
2222 switch (rewrite_one(revs
, &parent
->item
)) {
2223 case rewrite_one_ok
:
2225 case rewrite_one_noparents
:
2228 case rewrite_one_error
:
2233 remove_duplicate_parents(commit
);
2237 static int commit_rewrite_person(struct strbuf
*buf
, const char *what
, struct string_list
*mailmap
)
2239 char *person
, *endp
;
2240 size_t len
, namelen
, maillen
;
2243 struct ident_split ident
;
2245 person
= strstr(buf
->buf
, what
);
2249 person
+= strlen(what
);
2250 endp
= strchr(person
, '\n');
2254 len
= endp
- person
;
2256 if (split_ident_line(&ident
, person
, len
))
2259 mail
= ident
.mail_begin
;
2260 maillen
= ident
.mail_end
- ident
.mail_begin
;
2261 name
= ident
.name_begin
;
2262 namelen
= ident
.name_end
- ident
.name_begin
;
2264 if (map_user(mailmap
, &mail
, &maillen
, &name
, &namelen
)) {
2265 struct strbuf namemail
= STRBUF_INIT
;
2267 strbuf_addf(&namemail
, "%.*s <%.*s>",
2268 (int)namelen
, name
, (int)maillen
, mail
);
2270 strbuf_splice(buf
, ident
.name_begin
- buf
->buf
,
2271 ident
.mail_end
- ident
.name_begin
+ 1,
2272 namemail
.buf
, namemail
.len
);
2274 strbuf_release(&namemail
);
2282 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
2285 const char *encoding
;
2287 struct strbuf buf
= STRBUF_INIT
;
2289 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
2292 /* Prepend "fake" headers as needed */
2293 if (opt
->grep_filter
.use_reflog_filter
) {
2294 strbuf_addstr(&buf
, "reflog ");
2295 get_reflog_message(&buf
, opt
->reflog_info
);
2296 strbuf_addch(&buf
, '\n');
2300 * We grep in the user's output encoding, under the assumption that it
2301 * is the encoding they are most likely to write their grep pattern
2302 * for. In addition, it means we will match the "notes" encoding below,
2303 * so we will not end up with a buffer that has two different encodings
2306 encoding
= get_log_output_encoding();
2307 message
= logmsg_reencode(commit
, NULL
, encoding
);
2309 /* Copy the commit to temporary if we are using "fake" headers */
2311 strbuf_addstr(&buf
, message
);
2313 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
2315 strbuf_addstr(&buf
, message
);
2317 commit_rewrite_person(&buf
, "\nauthor ", opt
->mailmap
);
2318 commit_rewrite_person(&buf
, "\ncommitter ", opt
->mailmap
);
2321 /* Append "fake" message parts as needed */
2322 if (opt
->show_notes
) {
2324 strbuf_addstr(&buf
, message
);
2325 format_display_notes(commit
->object
.sha1
, &buf
, encoding
, 1);
2328 /* Find either in the original commit message, or in the temporary */
2330 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
2332 retval
= grep_buffer(&opt
->grep_filter
,
2333 message
, strlen(message
));
2334 strbuf_release(&buf
);
2335 logmsg_free(message
, commit
);
2339 static inline int want_ancestry(struct rev_info
*revs
)
2341 return (revs
->rewrite_parents
|| revs
->children
.name
);
2344 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
2346 if (commit
->object
.flags
& SHOWN
)
2347 return commit_ignore
;
2348 if (revs
->unpacked
&& has_sha1_pack(commit
->object
.sha1
))
2349 return commit_ignore
;
2352 if (commit
->object
.flags
& UNINTERESTING
)
2353 return commit_ignore
;
2354 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
2355 return commit_ignore
;
2356 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
2358 struct commit_list
*p
;
2359 for (p
= commit
->parents
; p
; p
= p
->next
)
2361 if ((n
< revs
->min_parents
) ||
2362 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
2363 return commit_ignore
;
2365 if (!commit_match(commit
, revs
))
2366 return commit_ignore
;
2367 if (revs
->prune
&& revs
->dense
) {
2368 /* Commit without changes? */
2369 if (commit
->object
.flags
& TREESAME
) {
2370 /* drop merges unless we want parenthood */
2371 if (!want_ancestry(revs
))
2372 return commit_ignore
;
2373 /* non-merge - always ignore it */
2374 if (!commit
->parents
|| !commit
->parents
->next
)
2375 return commit_ignore
;
2381 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
2383 enum commit_action action
= get_commit_action(revs
, commit
);
2385 if (action
== commit_show
&&
2387 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
2388 if (rewrite_parents(revs
, commit
) < 0)
2389 return commit_error
;
2394 static struct commit
*get_revision_1(struct rev_info
*revs
)
2400 struct commit_list
*entry
= revs
->commits
;
2401 struct commit
*commit
= entry
->item
;
2403 revs
->commits
= entry
->next
;
2406 if (revs
->reflog_info
) {
2407 fake_reflog_parent(revs
->reflog_info
, commit
);
2408 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
2412 * If we haven't done the list limiting, we need to look at
2413 * the parents here. We also need to do the date-based limiting
2414 * that we'd otherwise have done in limit_list().
2416 if (!revs
->limited
) {
2417 if (revs
->max_age
!= -1 &&
2418 (commit
->date
< revs
->max_age
))
2420 if (add_parents_to_list(revs
, commit
, &revs
->commits
, NULL
) < 0)
2421 die("Failed to traverse parents of commit %s",
2422 sha1_to_hex(commit
->object
.sha1
));
2425 switch (simplify_commit(revs
, commit
)) {
2429 die("Failed to simplify parents of commit %s",
2430 sha1_to_hex(commit
->object
.sha1
));
2434 } while (revs
->commits
);
2439 * Return true for entries that have not yet been shown. (This is an
2440 * object_array_each_func_t.)
2442 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data_unused
)
2444 return !(entry
->item
->flags
& SHOWN
);
2448 * If array is on the verge of a realloc, garbage-collect any entries
2449 * that have already been shown to try to free up some space.
2451 static void gc_boundary(struct object_array
*array
)
2453 if (array
->nr
== array
->alloc
)
2454 object_array_filter(array
, entry_unshown
, NULL
);
2457 static void create_boundary_commit_list(struct rev_info
*revs
)
2461 struct object_array
*array
= &revs
->boundary_commits
;
2462 struct object_array_entry
*objects
= array
->objects
;
2465 * If revs->commits is non-NULL at this point, an error occurred in
2466 * get_revision_1(). Ignore the error and continue printing the
2467 * boundary commits anyway. (This is what the code has always
2470 if (revs
->commits
) {
2471 free_commit_list(revs
->commits
);
2472 revs
->commits
= NULL
;
2476 * Put all of the actual boundary commits from revs->boundary_commits
2477 * into revs->commits
2479 for (i
= 0; i
< array
->nr
; i
++) {
2480 c
= (struct commit
*)(objects
[i
].item
);
2483 if (!(c
->object
.flags
& CHILD_SHOWN
))
2485 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
2487 c
->object
.flags
|= BOUNDARY
;
2488 commit_list_insert(c
, &revs
->commits
);
2492 * If revs->topo_order is set, sort the boundary commits
2493 * in topological order
2495 sort_in_topological_order(&revs
->commits
, revs
->lifo
);
2498 static struct commit
*get_revision_internal(struct rev_info
*revs
)
2500 struct commit
*c
= NULL
;
2501 struct commit_list
*l
;
2503 if (revs
->boundary
== 2) {
2505 * All of the normal commits have already been returned,
2506 * and we are now returning boundary commits.
2507 * create_boundary_commit_list() has populated
2508 * revs->commits with the remaining commits to return.
2510 c
= pop_commit(&revs
->commits
);
2512 c
->object
.flags
|= SHOWN
;
2517 * If our max_count counter has reached zero, then we are done. We
2518 * don't simply return NULL because we still might need to show
2519 * boundary commits. But we want to avoid calling get_revision_1, which
2520 * might do a considerable amount of work finding the next commit only
2521 * for us to throw it away.
2523 * If it is non-zero, then either we don't have a max_count at all
2524 * (-1), or it is still counting, in which case we decrement.
2526 if (revs
->max_count
) {
2527 c
= get_revision_1(revs
);
2529 while (0 < revs
->skip_count
) {
2531 c
= get_revision_1(revs
);
2537 if (revs
->max_count
> 0)
2542 c
->object
.flags
|= SHOWN
;
2544 if (!revs
->boundary
) {
2550 * get_revision_1() runs out the commits, and
2551 * we are done computing the boundaries.
2552 * switch to boundary commits output mode.
2557 * Update revs->commits to contain the list of
2560 create_boundary_commit_list(revs
);
2562 return get_revision_internal(revs
);
2566 * boundary commits are the commits that are parents of the
2567 * ones we got from get_revision_1() but they themselves are
2568 * not returned from get_revision_1(). Before returning
2569 * 'c', we need to mark its parents that they could be boundaries.
2572 for (l
= c
->parents
; l
; l
= l
->next
) {
2574 p
= &(l
->item
->object
);
2575 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
2577 p
->flags
|= CHILD_SHOWN
;
2578 gc_boundary(&revs
->boundary_commits
);
2579 add_object_array(p
, NULL
, &revs
->boundary_commits
);
2585 struct commit
*get_revision(struct rev_info
*revs
)
2588 struct commit_list
*reversed
;
2590 if (revs
->reverse
) {
2592 while ((c
= get_revision_internal(revs
))) {
2593 commit_list_insert(c
, &reversed
);
2595 revs
->commits
= reversed
;
2597 revs
->reverse_output_stage
= 1;
2600 if (revs
->reverse_output_stage
)
2601 return pop_commit(&revs
->commits
);
2603 c
= get_revision_internal(revs
);
2604 if (c
&& revs
->graph
)
2605 graph_update(revs
->graph
, c
);
2609 char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2611 if (commit
->object
.flags
& BOUNDARY
)
2613 else if (commit
->object
.flags
& UNINTERESTING
)
2615 else if (commit
->object
.flags
& PATCHSAME
)
2617 else if (!revs
|| revs
->left_right
) {
2618 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
2622 } else if (revs
->graph
)
2624 else if (revs
->cherry_mark
)
2629 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
2631 char *mark
= get_revision_mark(revs
, commit
);
2634 fputs(mark
, stdout
);