1 #include "git-compat-util.h"
3 #include "environment.h"
6 #include "object-name.h"
7 #include "object-file.h"
8 #include "object-store-ll.h"
15 #include "diff-merges.h"
18 #include "repository.h"
21 #include "reflog-walk.h"
22 #include "patch-ids.h"
24 #include "string-list.h"
27 #include "commit-slab.h"
28 #include "cache-tree.h"
32 #include "read-cache.h"
34 #include "sparse-index.h"
37 #include "commit-reach.h"
38 #include "commit-graph.h"
39 #include "prio-queue.h"
43 #include "json-writer.h"
44 #include "list-objects-filter-options.h"
45 #include "resolve-undo.h"
46 #include "parse-options.h"
47 #include "wildmatch.h"
49 volatile show_early_output_fn_t show_early_output
;
51 static const char *term_bad
;
52 static const char *term_good
;
54 implement_shared_commit_slab(revision_sources
, char *);
56 static inline int want_ancestry(const struct rev_info
*revs
);
58 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
60 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
61 for (const char *p
= name
; *p
&& *p
!= '\n'; p
++)
66 static void mark_blob_uninteresting(struct blob
*blob
)
70 if (blob
->object
.flags
& UNINTERESTING
)
72 blob
->object
.flags
|= UNINTERESTING
;
75 static void mark_tree_contents_uninteresting(struct repository
*r
,
78 struct tree_desc desc
;
79 struct name_entry entry
;
81 if (parse_tree_gently(tree
, 1) < 0)
84 init_tree_desc(&desc
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
85 while (tree_entry(&desc
, &entry
)) {
86 switch (object_type(entry
.mode
)) {
88 mark_tree_uninteresting(r
, lookup_tree(r
, &entry
.oid
));
91 mark_blob_uninteresting(lookup_blob(r
, &entry
.oid
));
94 /* Subproject commit - not in this repository */
100 * We don't care about the tree any more
101 * after it has been marked uninteresting.
103 free_tree_buffer(tree
);
106 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
)
114 if (obj
->flags
& UNINTERESTING
)
116 obj
->flags
|= UNINTERESTING
;
117 mark_tree_contents_uninteresting(r
, tree
);
120 struct path_and_oids_entry
{
121 struct hashmap_entry ent
;
126 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data UNUSED
,
127 const struct hashmap_entry
*eptr
,
128 const struct hashmap_entry
*entry_or_key
,
129 const void *keydata UNUSED
)
131 const struct path_and_oids_entry
*e1
, *e2
;
133 e1
= container_of(eptr
, const struct path_and_oids_entry
, ent
);
134 e2
= container_of(entry_or_key
, const struct path_and_oids_entry
, ent
);
136 return strcmp(e1
->path
, e2
->path
);
139 static void paths_and_oids_clear(struct hashmap
*map
)
141 struct hashmap_iter iter
;
142 struct path_and_oids_entry
*entry
;
144 hashmap_for_each_entry(map
, &iter
, entry
, ent
/* member name */) {
145 oidset_clear(&entry
->trees
);
149 hashmap_clear_and_free(map
, struct path_and_oids_entry
, ent
);
152 static void paths_and_oids_insert(struct hashmap
*map
,
154 const struct object_id
*oid
)
156 int hash
= strhash(path
);
157 struct path_and_oids_entry key
;
158 struct path_and_oids_entry
*entry
;
160 hashmap_entry_init(&key
.ent
, hash
);
162 /* use a shallow copy for the lookup */
163 key
.path
= (char *)path
;
164 oidset_init(&key
.trees
, 0);
166 entry
= hashmap_get_entry(map
, &key
, ent
, NULL
);
168 CALLOC_ARRAY(entry
, 1);
169 hashmap_entry_init(&entry
->ent
, hash
);
170 entry
->path
= xstrdup(key
.path
);
171 oidset_init(&entry
->trees
, 16);
172 hashmap_put(map
, &entry
->ent
);
175 oidset_insert(&entry
->trees
, oid
);
178 static void add_children_by_path(struct repository
*r
,
182 struct tree_desc desc
;
183 struct name_entry entry
;
188 if (parse_tree_gently(tree
, 1) < 0)
191 init_tree_desc(&desc
, &tree
->object
.oid
, tree
->buffer
, tree
->size
);
192 while (tree_entry(&desc
, &entry
)) {
193 switch (object_type(entry
.mode
)) {
195 paths_and_oids_insert(map
, entry
.path
, &entry
.oid
);
197 if (tree
->object
.flags
& UNINTERESTING
) {
198 struct tree
*child
= lookup_tree(r
, &entry
.oid
);
200 child
->object
.flags
|= UNINTERESTING
;
204 if (tree
->object
.flags
& UNINTERESTING
) {
205 struct blob
*child
= lookup_blob(r
, &entry
.oid
);
207 child
->object
.flags
|= UNINTERESTING
;
211 /* Subproject commit - not in this repository */
216 free_tree_buffer(tree
);
219 void mark_trees_uninteresting_sparse(struct repository
*r
,
220 struct oidset
*trees
)
222 unsigned has_interesting
= 0, has_uninteresting
= 0;
223 struct hashmap map
= HASHMAP_INIT(path_and_oids_cmp
, NULL
);
224 struct hashmap_iter map_iter
;
225 struct path_and_oids_entry
*entry
;
226 struct object_id
*oid
;
227 struct oidset_iter iter
;
229 oidset_iter_init(trees
, &iter
);
230 while ((!has_interesting
|| !has_uninteresting
) &&
231 (oid
= oidset_iter_next(&iter
))) {
232 struct tree
*tree
= lookup_tree(r
, oid
);
237 if (tree
->object
.flags
& UNINTERESTING
)
238 has_uninteresting
= 1;
243 /* Do not walk unless we have both types of trees. */
244 if (!has_uninteresting
|| !has_interesting
)
247 oidset_iter_init(trees
, &iter
);
248 while ((oid
= oidset_iter_next(&iter
))) {
249 struct tree
*tree
= lookup_tree(r
, oid
);
250 add_children_by_path(r
, tree
, &map
);
253 hashmap_for_each_entry(&map
, &map_iter
, entry
, ent
/* member name */)
254 mark_trees_uninteresting_sparse(r
, &entry
->trees
);
256 paths_and_oids_clear(&map
);
259 struct commit_stack
{
260 struct commit
**items
;
263 #define COMMIT_STACK_INIT { 0 }
265 static void commit_stack_push(struct commit_stack
*stack
, struct commit
*commit
)
267 ALLOC_GROW(stack
->items
, stack
->nr
+ 1, stack
->alloc
);
268 stack
->items
[stack
->nr
++] = commit
;
271 static struct commit
*commit_stack_pop(struct commit_stack
*stack
)
273 return stack
->nr
? stack
->items
[--stack
->nr
] : NULL
;
276 static void commit_stack_clear(struct commit_stack
*stack
)
278 FREE_AND_NULL(stack
->items
);
279 stack
->nr
= stack
->alloc
= 0;
282 static void mark_one_parent_uninteresting(struct rev_info
*revs
, struct commit
*commit
,
283 struct commit_stack
*pending
)
285 struct commit_list
*l
;
287 if (commit
->object
.flags
& UNINTERESTING
)
289 commit
->object
.flags
|= UNINTERESTING
;
292 * Normally we haven't parsed the parent
293 * yet, so we won't have a parent of a parent
294 * here. However, it may turn out that we've
295 * reached this commit some other way (where it
296 * wasn't uninteresting), in which case we need
297 * to mark its parents recursively too..
299 for (l
= commit
->parents
; l
; l
= l
->next
) {
300 commit_stack_push(pending
, l
->item
);
301 if (revs
&& revs
->exclude_first_parent_only
)
306 void mark_parents_uninteresting(struct rev_info
*revs
, struct commit
*commit
)
308 struct commit_stack pending
= COMMIT_STACK_INIT
;
309 struct commit_list
*l
;
311 for (l
= commit
->parents
; l
; l
= l
->next
) {
312 mark_one_parent_uninteresting(revs
, l
->item
, &pending
);
313 if (revs
&& revs
->exclude_first_parent_only
)
317 while (pending
.nr
> 0)
318 mark_one_parent_uninteresting(revs
, commit_stack_pop(&pending
),
321 commit_stack_clear(&pending
);
324 static void add_pending_object_with_path(struct rev_info
*revs
,
326 const char *name
, unsigned mode
,
329 struct interpret_branch_name_options options
= { 0 };
332 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
334 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
335 struct strbuf buf
= STRBUF_INIT
;
336 size_t namelen
= strlen(name
);
337 int len
= repo_interpret_branch_name(the_repository
, name
,
338 namelen
, &buf
, &options
);
340 if (0 < len
&& len
< namelen
&& buf
.len
)
341 strbuf_addstr(&buf
, name
+ len
);
342 add_reflog_for_walk(revs
->reflog_info
,
343 (struct commit
*)obj
,
344 buf
.buf
[0] ? buf
.buf
: name
);
345 strbuf_release(&buf
);
346 return; /* do not add the commit itself */
348 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
351 static void add_pending_object_with_mode(struct rev_info
*revs
,
353 const char *name
, unsigned mode
)
355 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
358 void add_pending_object(struct rev_info
*revs
,
359 struct object
*obj
, const char *name
)
361 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
364 void add_head_to_pending(struct rev_info
*revs
)
366 struct object_id oid
;
368 if (repo_get_oid(the_repository
, "HEAD", &oid
))
370 obj
= parse_object(revs
->repo
, &oid
);
373 add_pending_object(revs
, obj
, "HEAD");
376 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
377 const struct object_id
*oid
,
380 struct object
*object
;
382 object
= parse_object_with_flags(revs
->repo
, oid
,
383 revs
->verify_objects
? 0 :
384 PARSE_OBJECT_SKIP_HASH_CHECK
|
385 PARSE_OBJECT_DISCARD_TREE
);
388 if (revs
->ignore_missing
)
390 if (revs
->exclude_promisor_objects
&& is_promisor_object(oid
))
392 if (revs
->do_not_die_on_missing_objects
) {
393 oidset_insert(&revs
->missing_commits
, oid
);
396 die("bad object %s", name
);
398 object
->flags
|= flags
;
402 void add_pending_oid(struct rev_info
*revs
, const char *name
,
403 const struct object_id
*oid
, unsigned int flags
)
405 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
406 add_pending_object(revs
, object
, name
);
409 static struct commit
*handle_commit(struct rev_info
*revs
,
410 struct object_array_entry
*entry
)
412 struct object
*object
= entry
->item
;
413 const char *name
= entry
->name
;
414 const char *path
= entry
->path
;
415 unsigned int mode
= entry
->mode
;
416 unsigned long flags
= object
->flags
;
419 * Tag object? Look what it points to..
421 while (object
->type
== OBJ_TAG
) {
422 struct tag
*tag
= (struct tag
*) object
;
423 struct object_id
*oid
;
424 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
425 add_pending_object(revs
, object
, tag
->tag
);
426 oid
= get_tagged_oid(tag
);
427 object
= parse_object(revs
->repo
, oid
);
429 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
431 if (revs
->exclude_promisor_objects
&&
432 is_promisor_object(&tag
->tagged
->oid
))
434 if (revs
->do_not_die_on_missing_objects
&& oid
) {
435 oidset_insert(&revs
->missing_commits
, oid
);
438 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
440 object
->flags
|= flags
;
442 * We'll handle the tagged object by looping or dropping
443 * through to the non-tag handlers below. Do not
444 * propagate path data from the tag's pending entry.
451 * Commit object? Just return it, we'll do all the complex
454 if (object
->type
== OBJ_COMMIT
) {
455 struct commit
*commit
= (struct commit
*)object
;
457 if (repo_parse_commit(revs
->repo
, commit
) < 0)
458 die("unable to parse commit %s", name
);
459 if (flags
& UNINTERESTING
) {
460 mark_parents_uninteresting(revs
, commit
);
462 if (!revs
->topo_order
|| !generation_numbers_enabled(the_repository
))
466 char **slot
= revision_sources_at(revs
->sources
, commit
);
469 *slot
= xstrdup(name
);
475 * Tree object? Either mark it uninteresting, or add it
476 * to the list of objects to look at later..
478 if (object
->type
== OBJ_TREE
) {
479 struct tree
*tree
= (struct tree
*)object
;
480 if (!revs
->tree_objects
)
482 if (flags
& UNINTERESTING
) {
483 mark_tree_contents_uninteresting(revs
->repo
, tree
);
486 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
491 * Blob object? You know the drill by now..
493 if (object
->type
== OBJ_BLOB
) {
494 if (!revs
->blob_objects
)
496 if (flags
& UNINTERESTING
)
498 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
501 die("%s is unknown object", name
);
504 static int everybody_uninteresting(struct commit_list
*orig
,
505 struct commit
**interesting_cache
)
507 struct commit_list
*list
= orig
;
509 if (*interesting_cache
) {
510 struct commit
*commit
= *interesting_cache
;
511 if (!(commit
->object
.flags
& UNINTERESTING
))
516 struct commit
*commit
= list
->item
;
518 if (commit
->object
.flags
& UNINTERESTING
)
521 *interesting_cache
= commit
;
528 * A definition of "relevant" commit that we can use to simplify limited graphs
529 * by eliminating side branches.
531 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
532 * in our list), or that is a specified BOTTOM commit. Then after computing
533 * a limited list, during processing we can generally ignore boundary merges
534 * coming from outside the graph, (ie from irrelevant parents), and treat
535 * those merges as if they were single-parent. TREESAME is defined to consider
536 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
537 * we don't care if we were !TREESAME to non-graph parents.
539 * Treating bottom commits as relevant ensures that a limited graph's
540 * connection to the actual bottom commit is not viewed as a side branch, but
541 * treated as part of the graph. For example:
543 * ....Z...A---X---o---o---B
547 * When computing "A..B", the A-X connection is at least as important as
548 * Y-X, despite A being flagged UNINTERESTING.
550 * And when computing --ancestry-path "A..B", the A-X connection is more
551 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
553 static inline int relevant_commit(struct commit
*commit
)
555 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
559 * Return a single relevant commit from a parent list. If we are a TREESAME
560 * commit, and this selects one of our parents, then we can safely simplify to
563 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
564 struct commit_list
*orig
)
566 struct commit_list
*list
= orig
;
567 struct commit
*relevant
= NULL
;
573 * For 1-parent commits, or if first-parent-only, then return that
574 * first parent (even if not "relevant" by the above definition).
575 * TREESAME will have been set purely on that parent.
577 if (revs
->first_parent_only
|| !orig
->next
)
581 * For multi-parent commits, identify a sole relevant parent, if any.
582 * If we have only one relevant parent, then TREESAME will be set purely
583 * with regard to that parent, and we can simplify accordingly.
585 * If we have more than one relevant parent, or no relevant parents
586 * (and multiple irrelevant ones), then we can't select a parent here
590 struct commit
*commit
= list
->item
;
592 if (relevant_commit(commit
)) {
602 * The goal is to get REV_TREE_NEW as the result only if the
603 * diff consists of all '+' (and no other changes), REV_TREE_OLD
604 * if the whole diff is removal of old data, and otherwise
605 * REV_TREE_DIFFERENT (of course if the trees are the same we
606 * want REV_TREE_SAME).
608 * The only time we care about the distinction is when
609 * remove_empty_trees is in effect, in which case we care only about
610 * whether the whole change is REV_TREE_NEW, or if there's another type
611 * of change. Which means we can stop the diff early in either of these
614 * 1. We're not using remove_empty_trees at all.
616 * 2. We saw anything except REV_TREE_NEW.
618 #define REV_TREE_SAME 0
619 #define REV_TREE_NEW 1 /* Only new files */
620 #define REV_TREE_OLD 2 /* Only files removed */
621 #define REV_TREE_DIFFERENT 3 /* Mixed changes */
622 static int tree_difference
= REV_TREE_SAME
;
624 static void file_add_remove(struct diff_options
*options
,
626 unsigned mode UNUSED
,
627 const struct object_id
*oid UNUSED
,
628 int oid_valid UNUSED
,
629 const char *fullpath UNUSED
,
630 unsigned dirty_submodule UNUSED
)
632 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
633 struct rev_info
*revs
= options
->change_fn_data
;
635 tree_difference
|= diff
;
636 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
637 options
->flags
.has_changes
= 1;
640 static void file_change(struct diff_options
*options
,
641 unsigned old_mode UNUSED
,
642 unsigned new_mode UNUSED
,
643 const struct object_id
*old_oid UNUSED
,
644 const struct object_id
*new_oid UNUSED
,
645 int old_oid_valid UNUSED
,
646 int new_oid_valid UNUSED
,
647 const char *fullpath UNUSED
,
648 unsigned old_dirty_submodule UNUSED
,
649 unsigned new_dirty_submodule UNUSED
)
651 tree_difference
= REV_TREE_DIFFERENT
;
652 options
->flags
.has_changes
= 1;
655 static int bloom_filter_atexit_registered
;
656 static unsigned int count_bloom_filter_maybe
;
657 static unsigned int count_bloom_filter_definitely_not
;
658 static unsigned int count_bloom_filter_false_positive
;
659 static unsigned int count_bloom_filter_not_present
;
661 static void trace2_bloom_filter_statistics_atexit(void)
663 struct json_writer jw
= JSON_WRITER_INIT
;
665 jw_object_begin(&jw
, 0);
666 jw_object_intmax(&jw
, "filter_not_present", count_bloom_filter_not_present
);
667 jw_object_intmax(&jw
, "maybe", count_bloom_filter_maybe
);
668 jw_object_intmax(&jw
, "definitely_not", count_bloom_filter_definitely_not
);
669 jw_object_intmax(&jw
, "false_positive", count_bloom_filter_false_positive
);
672 trace2_data_json("bloom", the_repository
, "statistics", &jw
);
677 static int forbid_bloom_filters(struct pathspec
*spec
)
679 if (spec
->has_wildcard
)
683 if (spec
->magic
& ~PATHSPEC_LITERAL
)
685 if (spec
->nr
&& (spec
->items
[0].magic
& ~PATHSPEC_LITERAL
))
691 static void prepare_to_use_bloom_filter(struct rev_info
*revs
)
693 struct pathspec_item
*pi
;
694 char *path_alloc
= NULL
;
695 const char *path
, *p
;
697 int path_component_nr
= 1;
702 if (forbid_bloom_filters(&revs
->prune_data
))
705 repo_parse_commit(revs
->repo
, revs
->commits
->item
);
707 revs
->bloom_filter_settings
= get_bloom_filter_settings(revs
->repo
);
708 if (!revs
->bloom_filter_settings
)
711 if (!revs
->pruning
.pathspec
.nr
)
714 pi
= &revs
->pruning
.pathspec
.items
[0];
716 /* remove single trailing slash from path, if needed */
717 if (pi
->len
> 0 && pi
->match
[pi
->len
- 1] == '/') {
718 path_alloc
= xmemdupz(pi
->match
, pi
->len
- 1);
725 revs
->bloom_filter_settings
= NULL
;
733 * At this point, the path is normalized to use Unix-style
734 * path separators. This is required due to how the
735 * changed-path Bloom filters store the paths.
742 revs
->bloom_keys_nr
= path_component_nr
;
743 ALLOC_ARRAY(revs
->bloom_keys
, revs
->bloom_keys_nr
);
745 fill_bloom_key(path
, len
, &revs
->bloom_keys
[0],
746 revs
->bloom_filter_settings
);
747 path_component_nr
= 1;
752 fill_bloom_key(path
, p
- path
,
753 &revs
->bloom_keys
[path_component_nr
++],
754 revs
->bloom_filter_settings
);
758 if (trace2_is_enabled() && !bloom_filter_atexit_registered
) {
759 atexit(trace2_bloom_filter_statistics_atexit
);
760 bloom_filter_atexit_registered
= 1;
766 static int check_maybe_different_in_bloom_filter(struct rev_info
*revs
,
767 struct commit
*commit
)
769 struct bloom_filter
*filter
;
772 if (!revs
->repo
->objects
->commit_graph
)
775 if (commit_graph_generation(commit
) == GENERATION_NUMBER_INFINITY
)
778 filter
= get_bloom_filter(revs
->repo
, commit
);
781 count_bloom_filter_not_present
++;
785 for (j
= 0; result
&& j
< revs
->bloom_keys_nr
; j
++) {
786 result
= bloom_filter_contains(filter
,
787 &revs
->bloom_keys
[j
],
788 revs
->bloom_filter_settings
);
792 count_bloom_filter_maybe
++;
794 count_bloom_filter_definitely_not
++;
799 static int rev_compare_tree(struct rev_info
*revs
,
800 struct commit
*parent
, struct commit
*commit
, int nth_parent
)
802 struct tree
*t1
= repo_get_commit_tree(the_repository
, parent
);
803 struct tree
*t2
= repo_get_commit_tree(the_repository
, commit
);
811 if (revs
->simplify_by_decoration
) {
813 * If we are simplifying by decoration, then the commit
814 * is worth showing if it has a tag pointing at it.
816 if (get_name_decoration(&commit
->object
))
817 return REV_TREE_DIFFERENT
;
819 * A commit that is not pointed by a tag is uninteresting
820 * if we are not limited by path. This means that you will
821 * see the usual "commits that touch the paths" plus any
822 * tagged commit by specifying both --simplify-by-decoration
825 if (!revs
->prune_data
.nr
)
826 return REV_TREE_SAME
;
829 if (revs
->bloom_keys_nr
&& !nth_parent
) {
830 bloom_ret
= check_maybe_different_in_bloom_filter(revs
, commit
);
833 return REV_TREE_SAME
;
836 tree_difference
= REV_TREE_SAME
;
837 revs
->pruning
.flags
.has_changes
= 0;
838 diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "", &revs
->pruning
);
841 if (bloom_ret
== 1 && tree_difference
== REV_TREE_SAME
)
842 count_bloom_filter_false_positive
++;
844 return tree_difference
;
847 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
849 struct tree
*t1
= repo_get_commit_tree(the_repository
, commit
);
854 tree_difference
= REV_TREE_SAME
;
855 revs
->pruning
.flags
.has_changes
= 0;
856 diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
858 return tree_difference
== REV_TREE_SAME
;
861 struct treesame_state
{
862 unsigned int nparents
;
863 unsigned char treesame
[FLEX_ARRAY
];
866 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
868 unsigned n
= commit_list_count(commit
->parents
);
869 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
871 add_decoration(&revs
->treesame
, &commit
->object
, st
);
876 * Must be called immediately after removing the nth_parent from a commit's
877 * parent list, if we are maintaining the per-parent treesame[] decoration.
878 * This does not recalculate the master TREESAME flag - update_treesame()
879 * should be called to update it after a sequence of treesame[] modifications
880 * that may have affected it.
882 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
884 struct treesame_state
*st
;
887 if (!commit
->parents
) {
889 * Have just removed the only parent from a non-merge.
890 * Different handling, as we lack decoration.
893 die("compact_treesame %u", nth_parent
);
894 old_same
= !!(commit
->object
.flags
& TREESAME
);
895 if (rev_same_tree_as_empty(revs
, commit
))
896 commit
->object
.flags
|= TREESAME
;
898 commit
->object
.flags
&= ~TREESAME
;
902 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
903 if (!st
|| nth_parent
>= st
->nparents
)
904 die("compact_treesame %u", nth_parent
);
906 old_same
= st
->treesame
[nth_parent
];
907 memmove(st
->treesame
+ nth_parent
,
908 st
->treesame
+ nth_parent
+ 1,
909 st
->nparents
- nth_parent
- 1);
912 * If we've just become a non-merge commit, update TREESAME
913 * immediately, and remove the no-longer-needed decoration.
914 * If still a merge, defer update until update_treesame().
916 if (--st
->nparents
== 1) {
917 if (commit
->parents
->next
)
918 die("compact_treesame parents mismatch");
919 if (st
->treesame
[0] && revs
->dense
)
920 commit
->object
.flags
|= TREESAME
;
922 commit
->object
.flags
&= ~TREESAME
;
923 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
929 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
931 if (commit
->parents
&& commit
->parents
->next
) {
933 struct treesame_state
*st
;
934 struct commit_list
*p
;
935 unsigned relevant_parents
;
936 unsigned relevant_change
, irrelevant_change
;
938 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
940 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
941 relevant_parents
= 0;
942 relevant_change
= irrelevant_change
= 0;
943 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
944 if (relevant_commit(p
->item
)) {
945 relevant_change
|= !st
->treesame
[n
];
948 irrelevant_change
|= !st
->treesame
[n
];
950 if (relevant_parents
? relevant_change
: irrelevant_change
)
951 commit
->object
.flags
&= ~TREESAME
;
953 commit
->object
.flags
|= TREESAME
;
956 return commit
->object
.flags
& TREESAME
;
959 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
962 * TREESAME is irrelevant unless prune && dense;
963 * if simplify_history is set, we can't have a mixture of TREESAME and
964 * !TREESAME INTERESTING parents (and we don't have treesame[]
965 * decoration anyway);
966 * if first_parent_only is set, then the TREESAME flag is locked
967 * against the first parent (and again we lack treesame[] decoration).
969 return revs
->prune
&& revs
->dense
&&
970 !revs
->simplify_history
&&
971 !revs
->first_parent_only
;
974 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
976 struct commit_list
**pp
, *parent
;
977 struct treesame_state
*ts
= NULL
;
978 int relevant_change
= 0, irrelevant_change
= 0;
979 int relevant_parents
, nth_parent
;
982 * If we don't do pruning, everything is interesting
987 if (!repo_get_commit_tree(the_repository
, commit
))
990 if (!commit
->parents
) {
991 if (rev_same_tree_as_empty(revs
, commit
))
992 commit
->object
.flags
|= TREESAME
;
997 * Normal non-merge commit? If we don't want to make the
998 * history dense, we consider it always to be a change..
1000 if (!revs
->dense
&& !commit
->parents
->next
)
1003 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
1004 (parent
= *pp
) != NULL
;
1005 pp
= &parent
->next
, nth_parent
++) {
1006 struct commit
*p
= parent
->item
;
1007 if (relevant_commit(p
))
1010 if (nth_parent
== 1) {
1012 * This our second loop iteration - so we now know
1013 * we're dealing with a merge.
1015 * Do not compare with later parents when we care only about
1016 * the first parent chain, in order to avoid derailing the
1017 * traversal to follow a side branch that brought everything
1018 * in the path we are limited to by the pathspec.
1020 if (revs
->first_parent_only
)
1023 * If this will remain a potentially-simplifiable
1024 * merge, remember per-parent treesame if needed.
1025 * Initialise the array with the comparison from our
1028 if (revs
->treesame
.name
&&
1029 !revs
->simplify_history
&&
1030 !(commit
->object
.flags
& UNINTERESTING
)) {
1031 ts
= initialise_treesame(revs
, commit
);
1032 if (!(irrelevant_change
|| relevant_change
))
1033 ts
->treesame
[0] = 1;
1036 if (repo_parse_commit(revs
->repo
, p
) < 0)
1037 die("cannot simplify commit %s (because of %s)",
1038 oid_to_hex(&commit
->object
.oid
),
1039 oid_to_hex(&p
->object
.oid
));
1040 switch (rev_compare_tree(revs
, p
, commit
, nth_parent
)) {
1042 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
1043 /* Even if a merge with an uninteresting
1044 * side branch brought the entire change
1045 * we are interested in, we do not want
1046 * to lose the other branches of this
1047 * merge, so we just keep going.
1050 ts
->treesame
[nth_parent
] = 1;
1053 parent
->next
= NULL
;
1054 commit
->parents
= parent
;
1057 * A merge commit is a "diversion" if it is not
1058 * TREESAME to its first parent but is TREESAME
1059 * to a later parent. In the simplified history,
1060 * we "divert" the history walk to the later
1061 * parent. These commits are shown when "show_pulls"
1062 * is enabled, so do not mark the object as
1065 if (!revs
->show_pulls
|| !nth_parent
)
1066 commit
->object
.flags
|= TREESAME
;
1071 if (revs
->remove_empty_trees
&&
1072 rev_same_tree_as_empty(revs
, p
)) {
1073 /* We are adding all the specified
1074 * paths from this parent, so the
1075 * history beyond this parent is not
1076 * interesting. Remove its parents
1077 * (they are grandparents for us).
1078 * IOW, we pretend this parent is a
1081 if (repo_parse_commit(revs
->repo
, p
) < 0)
1082 die("cannot simplify commit %s (invalid %s)",
1083 oid_to_hex(&commit
->object
.oid
),
1084 oid_to_hex(&p
->object
.oid
));
1089 case REV_TREE_DIFFERENT
:
1090 if (relevant_commit(p
))
1091 relevant_change
= 1;
1093 irrelevant_change
= 1;
1096 commit
->object
.flags
|= PULL_MERGE
;
1100 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
1104 * TREESAME is straightforward for single-parent commits. For merge
1105 * commits, it is most useful to define it so that "irrelevant"
1106 * parents cannot make us !TREESAME - if we have any relevant
1107 * parents, then we only consider TREESAMEness with respect to them,
1108 * allowing irrelevant merges from uninteresting branches to be
1109 * simplified away. Only if we have only irrelevant parents do we
1110 * base TREESAME on them. Note that this logic is replicated in
1111 * update_treesame, which should be kept in sync.
1113 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
1114 commit
->object
.flags
|= TREESAME
;
1117 static int process_parents(struct rev_info
*revs
, struct commit
*commit
,
1118 struct commit_list
**list
, struct prio_queue
*queue
)
1120 struct commit_list
*parent
= commit
->parents
;
1121 unsigned pass_flags
;
1123 if (commit
->object
.flags
& ADDED
)
1125 if (revs
->do_not_die_on_missing_objects
&&
1126 oidset_contains(&revs
->missing_commits
, &commit
->object
.oid
))
1128 commit
->object
.flags
|= ADDED
;
1130 if (revs
->include_check
&&
1131 !revs
->include_check(commit
, revs
->include_check_data
))
1135 * If the commit is uninteresting, don't try to
1136 * prune parents - we want the maximal uninteresting
1139 * Normally we haven't parsed the parent
1140 * yet, so we won't have a parent of a parent
1141 * here. However, it may turn out that we've
1142 * reached this commit some other way (where it
1143 * wasn't uninteresting), in which case we need
1144 * to mark its parents recursively too..
1146 if (commit
->object
.flags
& UNINTERESTING
) {
1148 struct commit
*p
= parent
->item
;
1149 parent
= parent
->next
;
1151 p
->object
.flags
|= UNINTERESTING
;
1152 if (repo_parse_commit_gently(revs
->repo
, p
, 1) < 0)
1155 mark_parents_uninteresting(revs
, p
);
1156 if (p
->object
.flags
& SEEN
)
1158 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1160 commit_list_insert_by_date(p
, list
);
1162 prio_queue_put(queue
, p
);
1163 if (revs
->exclude_first_parent_only
)
1170 * Ok, the commit wasn't uninteresting. Try to
1171 * simplify the commit history and find the parent
1172 * that has no differences in the path set if one exists.
1174 try_to_simplify_commit(revs
, commit
);
1179 pass_flags
= (commit
->object
.flags
& (SYMMETRIC_LEFT
| ANCESTRY_PATH
));
1181 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
1182 struct commit
*p
= parent
->item
;
1183 int gently
= revs
->ignore_missing_links
||
1184 revs
->exclude_promisor_objects
||
1185 revs
->do_not_die_on_missing_objects
;
1186 if (repo_parse_commit_gently(revs
->repo
, p
, gently
) < 0) {
1187 if (revs
->exclude_promisor_objects
&&
1188 is_promisor_object(&p
->object
.oid
)) {
1189 if (revs
->first_parent_only
)
1194 if (revs
->do_not_die_on_missing_objects
)
1195 oidset_insert(&revs
->missing_commits
, &p
->object
.oid
);
1197 return -1; /* corrupt repository */
1199 if (revs
->sources
) {
1200 char **slot
= revision_sources_at(revs
->sources
, p
);
1203 *slot
= *revision_sources_at(revs
->sources
, commit
);
1205 p
->object
.flags
|= pass_flags
;
1206 if (!(p
->object
.flags
& SEEN
)) {
1207 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1209 commit_list_insert_by_date(p
, list
);
1211 prio_queue_put(queue
, p
);
1213 if (revs
->first_parent_only
)
1219 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
1221 struct commit_list
*p
;
1222 int left_count
= 0, right_count
= 0;
1224 struct patch_ids ids
;
1225 unsigned cherry_flag
;
1227 /* First count the commits on the left and on the right */
1228 for (p
= list
; p
; p
= p
->next
) {
1229 struct commit
*commit
= p
->item
;
1230 unsigned flags
= commit
->object
.flags
;
1231 if (flags
& BOUNDARY
)
1233 else if (flags
& SYMMETRIC_LEFT
)
1239 if (!left_count
|| !right_count
)
1242 left_first
= left_count
< right_count
;
1243 init_patch_ids(revs
->repo
, &ids
);
1244 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
1246 /* Compute patch-ids for one side */
1247 for (p
= list
; p
; p
= p
->next
) {
1248 struct commit
*commit
= p
->item
;
1249 unsigned flags
= commit
->object
.flags
;
1251 if (flags
& BOUNDARY
)
1254 * If we have fewer left, left_first is set and we omit
1255 * commits on the right branch in this loop. If we have
1256 * fewer right, we skip the left ones.
1258 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
1260 add_commit_patch_id(commit
, &ids
);
1263 /* either cherry_mark or cherry_pick are true */
1264 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
1266 /* Check the other side */
1267 for (p
= list
; p
; p
= p
->next
) {
1268 struct commit
*commit
= p
->item
;
1269 struct patch_id
*id
;
1270 unsigned flags
= commit
->object
.flags
;
1272 if (flags
& BOUNDARY
)
1275 * If we have fewer left, left_first is set and we omit
1276 * commits on the left branch in this loop.
1278 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
1282 * Have we seen the same patch id?
1284 id
= patch_id_iter_first(commit
, &ids
);
1288 commit
->object
.flags
|= cherry_flag
;
1290 id
->commit
->object
.flags
|= cherry_flag
;
1291 } while ((id
= patch_id_iter_next(id
, &ids
)));
1294 free_patch_ids(&ids
);
1297 /* How many extra uninteresting commits we want to see.. */
1300 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
1301 struct commit
**interesting_cache
)
1304 * No source list at all? We're definitely done..
1310 * Does the destination list contain entries with a date
1311 * before the source list? Definitely _not_ done.
1313 if (date
<= src
->item
->date
)
1317 * Does the source list still have interesting commits in
1318 * it? Definitely not done..
1320 if (!everybody_uninteresting(src
, interesting_cache
))
1323 /* Ok, we're closing in.. */
1328 * "rev-list --ancestry-path=C_0 [--ancestry-path=C_1 ...] A..B"
1329 * computes commits that are ancestors of B but not ancestors of A but
1330 * further limits the result to those that have any of C in their
1331 * ancestry path (i.e. are either ancestors of any of C, descendants
1332 * of any of C, or are any of C). If --ancestry-path is specified with
1333 * no commit, we use all bottom commits for C.
1335 * Before this function is called, ancestors of C will have already
1336 * been marked with ANCESTRY_PATH previously.
1338 * This takes the list of bottom commits and the result of "A..B"
1339 * without --ancestry-path, and limits the latter further to the ones
1340 * that have any of C in their ancestry path. Since the ancestors of C
1341 * have already been marked (a prerequisite of this function), we just
1342 * need to mark the descendants, then exclude any commit that does not
1343 * have any of these marks.
1345 static void limit_to_ancestry(struct commit_list
*bottoms
, struct commit_list
*list
)
1347 struct commit_list
*p
;
1348 struct commit_list
*rlist
= NULL
;
1352 * Reverse the list so that it will be likely that we would
1353 * process parents before children.
1355 for (p
= list
; p
; p
= p
->next
)
1356 commit_list_insert(p
->item
, &rlist
);
1358 for (p
= bottoms
; p
; p
= p
->next
)
1359 p
->item
->object
.flags
|= TMP_MARK
;
1362 * Mark the ones that can reach bottom commits in "list",
1363 * in a bottom-up fashion.
1367 for (p
= rlist
; p
; p
= p
->next
) {
1368 struct commit
*c
= p
->item
;
1369 struct commit_list
*parents
;
1370 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
1372 for (parents
= c
->parents
;
1374 parents
= parents
->next
) {
1375 if (!(parents
->item
->object
.flags
& TMP_MARK
))
1377 c
->object
.flags
|= TMP_MARK
;
1382 } while (made_progress
);
1385 * NEEDSWORK: decide if we want to remove parents that are
1386 * not marked with TMP_MARK from commit->parents for commits
1387 * in the resulting list. We may not want to do that, though.
1391 * The ones that are not marked with either TMP_MARK or
1392 * ANCESTRY_PATH are uninteresting
1394 for (p
= list
; p
; p
= p
->next
) {
1395 struct commit
*c
= p
->item
;
1396 if (c
->object
.flags
& (TMP_MARK
| ANCESTRY_PATH
))
1398 c
->object
.flags
|= UNINTERESTING
;
1401 /* We are done with TMP_MARK and ANCESTRY_PATH */
1402 for (p
= list
; p
; p
= p
->next
)
1403 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1404 for (p
= bottoms
; p
; p
= p
->next
)
1405 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1406 free_commit_list(rlist
);
1410 * Before walking the history, add the set of "negative" refs the
1411 * caller has asked to exclude to the bottom list.
1413 * This is used to compute "rev-list --ancestry-path A..B", as we need
1414 * to filter the result of "A..B" further to the ones that can actually
1417 static void collect_bottom_commits(struct commit_list
*list
,
1418 struct commit_list
**bottom
)
1420 struct commit_list
*elem
;
1421 for (elem
= list
; elem
; elem
= elem
->next
)
1422 if (elem
->item
->object
.flags
& BOTTOM
)
1423 commit_list_insert(elem
->item
, bottom
);
1426 /* Assumes either left_only or right_only is set */
1427 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1429 struct commit_list
*p
;
1431 for (p
= list
; p
; p
= p
->next
) {
1432 struct commit
*commit
= p
->item
;
1434 if (revs
->right_only
) {
1435 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1436 commit
->object
.flags
|= SHOWN
;
1437 } else /* revs->left_only is set */
1438 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1439 commit
->object
.flags
|= SHOWN
;
1443 static int limit_list(struct rev_info
*revs
)
1446 timestamp_t date
= TIME_MAX
;
1447 struct commit_list
*original_list
= revs
->commits
;
1448 struct commit_list
*newlist
= NULL
;
1449 struct commit_list
**p
= &newlist
;
1450 struct commit
*interesting_cache
= NULL
;
1452 if (revs
->ancestry_path_implicit_bottoms
) {
1453 collect_bottom_commits(original_list
,
1454 &revs
->ancestry_path_bottoms
);
1455 if (!revs
->ancestry_path_bottoms
)
1456 die("--ancestry-path given but there are no bottom commits");
1459 while (original_list
) {
1460 struct commit
*commit
= pop_commit(&original_list
);
1461 struct object
*obj
= &commit
->object
;
1462 show_early_output_fn_t show
;
1464 if (commit
== interesting_cache
)
1465 interesting_cache
= NULL
;
1467 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1468 obj
->flags
|= UNINTERESTING
;
1469 if (process_parents(revs
, commit
, &original_list
, NULL
) < 0)
1471 if (obj
->flags
& UNINTERESTING
) {
1472 mark_parents_uninteresting(revs
, commit
);
1473 slop
= still_interesting(original_list
, date
, slop
, &interesting_cache
);
1478 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
) &&
1479 !revs
->line_level_traverse
)
1481 if (revs
->max_age_as_filter
!= -1 &&
1482 (commit
->date
< revs
->max_age_as_filter
) && !revs
->line_level_traverse
)
1484 date
= commit
->date
;
1485 p
= &commit_list_insert(commit
, p
)->next
;
1487 show
= show_early_output
;
1491 show(revs
, newlist
);
1492 show_early_output
= NULL
;
1494 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1495 cherry_pick_list(newlist
, revs
);
1497 if (revs
->left_only
|| revs
->right_only
)
1498 limit_left_right(newlist
, revs
);
1500 if (revs
->ancestry_path
)
1501 limit_to_ancestry(revs
->ancestry_path_bottoms
, newlist
);
1504 * Check if any commits have become TREESAME by some of their parents
1505 * becoming UNINTERESTING.
1507 if (limiting_can_increase_treesame(revs
)) {
1508 struct commit_list
*list
= NULL
;
1509 for (list
= newlist
; list
; list
= list
->next
) {
1510 struct commit
*c
= list
->item
;
1511 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1513 update_treesame(revs
, c
);
1517 free_commit_list(original_list
);
1518 revs
->commits
= newlist
;
1523 * Add an entry to refs->cmdline with the specified information.
1526 static void add_rev_cmdline(struct rev_info
*revs
,
1527 struct object
*item
,
1532 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1533 unsigned int nr
= info
->nr
;
1535 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1536 info
->rev
[nr
].item
= item
;
1537 info
->rev
[nr
].name
= xstrdup(name
);
1538 info
->rev
[nr
].whence
= whence
;
1539 info
->rev
[nr
].flags
= flags
;
1543 static void add_rev_cmdline_list(struct rev_info
*revs
,
1544 struct commit_list
*commit_list
,
1548 while (commit_list
) {
1549 struct object
*object
= &commit_list
->item
->object
;
1550 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1552 commit_list
= commit_list
->next
;
1556 int ref_excluded(const struct ref_exclusions
*exclusions
, const char *path
)
1558 const char *stripped_path
= strip_namespace(path
);
1559 struct string_list_item
*item
;
1561 for_each_string_list_item(item
, &exclusions
->excluded_refs
) {
1562 if (!wildmatch(item
->string
, path
, 0))
1566 if (ref_is_hidden(stripped_path
, path
, &exclusions
->hidden_refs
))
1572 void init_ref_exclusions(struct ref_exclusions
*exclusions
)
1574 struct ref_exclusions blank
= REF_EXCLUSIONS_INIT
;
1575 memcpy(exclusions
, &blank
, sizeof(*exclusions
));
1578 void clear_ref_exclusions(struct ref_exclusions
*exclusions
)
1580 string_list_clear(&exclusions
->excluded_refs
, 0);
1581 strvec_clear(&exclusions
->hidden_refs
);
1582 exclusions
->hidden_refs_configured
= 0;
1585 void add_ref_exclusion(struct ref_exclusions
*exclusions
, const char *exclude
)
1587 string_list_append(&exclusions
->excluded_refs
, exclude
);
1590 struct exclude_hidden_refs_cb
{
1591 struct ref_exclusions
*exclusions
;
1592 const char *section
;
1595 static int hide_refs_config(const char *var
, const char *value
,
1596 const struct config_context
*ctx UNUSED
,
1599 struct exclude_hidden_refs_cb
*cb
= cb_data
;
1600 cb
->exclusions
->hidden_refs_configured
= 1;
1601 return parse_hide_refs_config(var
, value
, cb
->section
,
1602 &cb
->exclusions
->hidden_refs
);
1605 void exclude_hidden_refs(struct ref_exclusions
*exclusions
, const char *section
)
1607 struct exclude_hidden_refs_cb cb
;
1609 if (strcmp(section
, "fetch") && strcmp(section
, "receive") &&
1610 strcmp(section
, "uploadpack"))
1611 die(_("unsupported section for hidden refs: %s"), section
);
1613 if (exclusions
->hidden_refs_configured
)
1614 die(_("--exclude-hidden= passed more than once"));
1616 cb
.exclusions
= exclusions
;
1617 cb
.section
= section
;
1619 git_config(hide_refs_config
, &cb
);
1622 struct all_refs_cb
{
1624 int warned_bad_reflog
;
1625 struct rev_info
*all_revs
;
1626 const char *name_for_errormsg
;
1627 struct worktree
*wt
;
1630 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1634 struct all_refs_cb
*cb
= cb_data
;
1635 struct object
*object
;
1637 if (ref_excluded(&cb
->all_revs
->ref_excludes
, path
))
1640 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1641 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1642 add_pending_object(cb
->all_revs
, object
, path
);
1646 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1649 cb
->all_revs
= revs
;
1650 cb
->all_flags
= flags
;
1651 revs
->rev_input_given
= 1;
1655 static void handle_refs(struct ref_store
*refs
,
1656 struct rev_info
*revs
, unsigned flags
,
1657 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1659 struct all_refs_cb cb
;
1662 /* this could happen with uninitialized submodules */
1666 init_all_refs_cb(&cb
, revs
, flags
);
1667 for_each(refs
, handle_one_ref
, &cb
);
1670 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1672 struct all_refs_cb
*cb
= cb_data
;
1673 if (!is_null_oid(oid
)) {
1674 struct object
*o
= parse_object(cb
->all_revs
->repo
, oid
);
1676 o
->flags
|= cb
->all_flags
;
1677 /* ??? CMDLINEFLAGS ??? */
1678 add_pending_object(cb
->all_revs
, o
, "");
1680 else if (!cb
->warned_bad_reflog
) {
1681 warning("reflog of '%s' references pruned commits",
1682 cb
->name_for_errormsg
);
1683 cb
->warned_bad_reflog
= 1;
1688 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1689 const char *email UNUSED
,
1690 timestamp_t timestamp UNUSED
,
1692 const char *message UNUSED
,
1695 handle_one_reflog_commit(ooid
, cb_data
);
1696 handle_one_reflog_commit(noid
, cb_data
);
1700 static int handle_one_reflog(const char *refname_in_wt
, void *cb_data
)
1702 struct all_refs_cb
*cb
= cb_data
;
1703 struct strbuf refname
= STRBUF_INIT
;
1705 cb
->warned_bad_reflog
= 0;
1706 strbuf_worktree_ref(cb
->wt
, &refname
, refname_in_wt
);
1707 cb
->name_for_errormsg
= refname
.buf
;
1708 refs_for_each_reflog_ent(get_main_ref_store(the_repository
),
1710 handle_one_reflog_ent
, cb_data
);
1711 strbuf_release(&refname
);
1715 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1717 struct worktree
**worktrees
, **p
;
1719 worktrees
= get_worktrees();
1720 for (p
= worktrees
; *p
; p
++) {
1721 struct worktree
*wt
= *p
;
1727 refs_for_each_reflog(get_worktree_ref_store(wt
),
1731 free_worktrees(worktrees
);
1734 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1736 struct all_refs_cb cb
;
1739 cb
.all_flags
= flags
;
1741 refs_for_each_reflog(get_main_ref_store(the_repository
),
1742 handle_one_reflog
, &cb
);
1744 if (!revs
->single_worktree
)
1745 add_other_reflogs_to_pending(&cb
);
1748 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1749 struct strbuf
*path
, unsigned int flags
)
1751 size_t baselen
= path
->len
;
1754 if (it
->entry_count
>= 0) {
1755 struct tree
*tree
= lookup_tree(revs
->repo
, &it
->oid
);
1756 tree
->object
.flags
|= flags
;
1757 add_pending_object_with_path(revs
, &tree
->object
, "",
1761 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1762 struct cache_tree_sub
*sub
= it
->down
[i
];
1763 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1764 add_cache_tree(sub
->cache_tree
, revs
, path
, flags
);
1765 strbuf_setlen(path
, baselen
);
1770 static void add_resolve_undo_to_pending(struct index_state
*istate
, struct rev_info
*revs
)
1772 struct string_list_item
*item
;
1773 struct string_list
*resolve_undo
= istate
->resolve_undo
;
1778 for_each_string_list_item(item
, resolve_undo
) {
1779 const char *path
= item
->string
;
1780 struct resolve_undo_info
*ru
= item
->util
;
1785 for (i
= 0; i
< 3; i
++) {
1788 if (!ru
->mode
[i
] || !S_ISREG(ru
->mode
[i
]))
1791 blob
= lookup_blob(revs
->repo
, &ru
->oid
[i
]);
1793 warning(_("resolve-undo records `%s` which is missing"),
1794 oid_to_hex(&ru
->oid
[i
]));
1797 add_pending_object_with_path(revs
, &blob
->object
, "",
1803 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1804 struct index_state
*istate
,
1809 /* TODO: audit for interaction with sparse-index. */
1810 ensure_full_index(istate
);
1811 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1812 struct cache_entry
*ce
= istate
->cache
[i
];
1815 if (S_ISGITLINK(ce
->ce_mode
))
1818 blob
= lookup_blob(revs
->repo
, &ce
->oid
);
1820 die("unable to add index blob to traversal");
1821 blob
->object
.flags
|= flags
;
1822 add_pending_object_with_path(revs
, &blob
->object
, "",
1823 ce
->ce_mode
, ce
->name
);
1826 if (istate
->cache_tree
) {
1827 struct strbuf path
= STRBUF_INIT
;
1828 add_cache_tree(istate
->cache_tree
, revs
, &path
, flags
);
1829 strbuf_release(&path
);
1832 add_resolve_undo_to_pending(istate
, revs
);
1835 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1837 struct worktree
**worktrees
, **p
;
1839 repo_read_index(revs
->repo
);
1840 do_add_index_objects_to_pending(revs
, revs
->repo
->index
, flags
);
1842 if (revs
->single_worktree
)
1845 worktrees
= get_worktrees();
1846 for (p
= worktrees
; *p
; p
++) {
1847 struct worktree
*wt
= *p
;
1848 struct index_state istate
= INDEX_STATE_INIT(revs
->repo
);
1851 continue; /* current index already taken care of */
1853 if (read_index_from(&istate
,
1854 worktree_git_path(wt
, "index"),
1855 get_worktree_git_dir(wt
)) > 0)
1856 do_add_index_objects_to_pending(revs
, &istate
, flags
);
1857 discard_index(&istate
);
1859 free_worktrees(worktrees
);
1862 struct add_alternate_refs_data
{
1863 struct rev_info
*revs
;
1867 static void add_one_alternate_ref(const struct object_id
*oid
,
1870 const char *name
= ".alternate";
1871 struct add_alternate_refs_data
*data
= vdata
;
1874 obj
= get_reference(data
->revs
, name
, oid
, data
->flags
);
1875 add_rev_cmdline(data
->revs
, obj
, name
, REV_CMD_REV
, data
->flags
);
1876 add_pending_object(data
->revs
, obj
, name
);
1879 static void add_alternate_refs_to_pending(struct rev_info
*revs
,
1882 struct add_alternate_refs_data data
;
1885 for_each_alternate_ref(add_one_alternate_ref
, &data
);
1888 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1891 struct object_id oid
;
1893 struct commit
*commit
;
1894 struct commit_list
*parents
;
1896 const char *arg
= arg_
;
1899 flags
^= UNINTERESTING
| BOTTOM
;
1902 if (repo_get_oid_committish(the_repository
, arg
, &oid
))
1905 it
= get_reference(revs
, arg
, &oid
, 0);
1906 if (!it
&& revs
->ignore_missing
)
1908 if (it
->type
!= OBJ_TAG
)
1910 if (!((struct tag
*)it
)->tagged
)
1912 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1914 if (it
->type
!= OBJ_COMMIT
)
1916 commit
= (struct commit
*)it
;
1917 if (exclude_parent
&&
1918 exclude_parent
> commit_list_count(commit
->parents
))
1920 for (parents
= commit
->parents
, parent_number
= 1;
1922 parents
= parents
->next
, parent_number
++) {
1923 if (exclude_parent
&& parent_number
!= exclude_parent
)
1926 it
= &parents
->item
->object
;
1928 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1929 add_pending_object(revs
, it
, arg
);
1934 void repo_init_revisions(struct repository
*r
,
1935 struct rev_info
*revs
,
1938 struct rev_info blank
= REV_INFO_INIT
;
1939 memcpy(revs
, &blank
, sizeof(*revs
));
1942 revs
->pruning
.repo
= r
;
1943 revs
->pruning
.add_remove
= file_add_remove
;
1944 revs
->pruning
.change
= file_change
;
1945 revs
->pruning
.change_fn_data
= revs
;
1946 revs
->prefix
= prefix
;
1948 grep_init(&revs
->grep_filter
, revs
->repo
);
1949 revs
->grep_filter
.status_only
= 1;
1951 repo_diff_setup(revs
->repo
, &revs
->diffopt
);
1952 if (prefix
&& !revs
->diffopt
.prefix
) {
1953 revs
->diffopt
.prefix
= prefix
;
1954 revs
->diffopt
.prefix_length
= strlen(prefix
);
1957 init_display_notes(&revs
->notes_opt
);
1958 list_objects_filter_init(&revs
->filter
);
1959 init_ref_exclusions(&revs
->ref_excludes
);
1960 oidset_init(&revs
->missing_commits
, 0);
1963 static void add_pending_commit_list(struct rev_info
*revs
,
1964 struct commit_list
*commit_list
,
1967 while (commit_list
) {
1968 struct object
*object
= &commit_list
->item
->object
;
1969 object
->flags
|= flags
;
1970 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1971 commit_list
= commit_list
->next
;
1975 static const char *lookup_other_head(struct object_id
*oid
)
1978 static const char *const other_head
[] = {
1979 "MERGE_HEAD", "CHERRY_PICK_HEAD", "REVERT_HEAD", "REBASE_HEAD"
1982 for (i
= 0; i
< ARRAY_SIZE(other_head
); i
++)
1983 if (!refs_read_ref_full(get_main_ref_store(the_repository
), other_head
[i
],
1984 RESOLVE_REF_READING
| RESOLVE_REF_NO_RECURSE
,
1986 if (is_null_oid(oid
))
1987 die(_("%s exists but is a symbolic ref"), other_head
[i
]);
1988 return other_head
[i
];
1991 die(_("--merge requires one of the pseudorefs MERGE_HEAD, CHERRY_PICK_HEAD, REVERT_HEAD or REBASE_HEAD"));
1994 static void prepare_show_merge(struct rev_info
*revs
)
1996 struct commit_list
*bases
= NULL
;
1997 struct commit
*head
, *other
;
1998 struct object_id oid
;
1999 const char *other_name
;
2000 const char **prune
= NULL
;
2001 int i
, prune_num
= 1; /* counting terminating NULL */
2002 struct index_state
*istate
= revs
->repo
->index
;
2004 if (repo_get_oid(the_repository
, "HEAD", &oid
))
2005 die("--merge without HEAD?");
2006 head
= lookup_commit_or_die(&oid
, "HEAD");
2007 other_name
= lookup_other_head(&oid
);
2008 other
= lookup_commit_or_die(&oid
, other_name
);
2009 add_pending_object(revs
, &head
->object
, "HEAD");
2010 add_pending_object(revs
, &other
->object
, other_name
);
2011 if (repo_get_merge_bases(the_repository
, head
, other
, &bases
) < 0)
2013 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
2014 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
2015 free_commit_list(bases
);
2016 head
->object
.flags
|= SYMMETRIC_LEFT
;
2018 if (!istate
->cache_nr
)
2019 repo_read_index(revs
->repo
);
2020 for (i
= 0; i
< istate
->cache_nr
; i
++) {
2021 const struct cache_entry
*ce
= istate
->cache
[i
];
2024 if (ce_path_match(istate
, ce
, &revs
->prune_data
, NULL
)) {
2026 REALLOC_ARRAY(prune
, prune_num
);
2027 prune
[prune_num
-2] = ce
->name
;
2028 prune
[prune_num
-1] = NULL
;
2030 while ((i
+1 < istate
->cache_nr
) &&
2031 ce_same_name(ce
, istate
->cache
[i
+1]))
2034 clear_pathspec(&revs
->prune_data
);
2035 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
2036 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
2040 static int dotdot_missing(const char *arg
, char *dotdot
,
2041 struct rev_info
*revs
, int symmetric
)
2043 if (revs
->ignore_missing
)
2045 /* de-munge so we report the full argument */
2048 ? "Invalid symmetric difference expression %s"
2049 : "Invalid revision range %s", arg
);
2052 static int handle_dotdot_1(const char *arg
, char *dotdot
,
2053 struct rev_info
*revs
, int flags
,
2054 int cant_be_filename
,
2055 struct object_context
*a_oc
,
2056 struct object_context
*b_oc
)
2058 const char *a_name
, *b_name
;
2059 struct object_id a_oid
, b_oid
;
2060 struct object
*a_obj
, *b_obj
;
2061 unsigned int a_flags
, b_flags
;
2063 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
2064 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
2070 b_name
= dotdot
+ 2;
2071 if (*b_name
== '.') {
2078 if (get_oid_with_context(revs
->repo
, a_name
, oc_flags
, &a_oid
, a_oc
) ||
2079 get_oid_with_context(revs
->repo
, b_name
, oc_flags
, &b_oid
, b_oc
))
2082 if (!cant_be_filename
) {
2084 verify_non_filename(revs
->prefix
, arg
);
2088 a_obj
= parse_object(revs
->repo
, &a_oid
);
2089 b_obj
= parse_object(revs
->repo
, &b_oid
);
2090 if (!a_obj
|| !b_obj
)
2091 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2096 a_flags
= flags_exclude
;
2098 /* A...B -- find merge bases between the two */
2099 struct commit
*a
, *b
;
2100 struct commit_list
*exclude
= NULL
;
2102 a
= lookup_commit_reference(revs
->repo
, &a_obj
->oid
);
2103 b
= lookup_commit_reference(revs
->repo
, &b_obj
->oid
);
2105 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2107 if (repo_get_merge_bases(the_repository
, a
, b
, &exclude
) < 0) {
2108 free_commit_list(exclude
);
2111 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
2113 add_pending_commit_list(revs
, exclude
, flags_exclude
);
2114 free_commit_list(exclude
);
2117 a_flags
= flags
| SYMMETRIC_LEFT
;
2120 a_obj
->flags
|= a_flags
;
2121 b_obj
->flags
|= b_flags
;
2122 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
2123 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
2124 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
2125 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
2129 static int handle_dotdot(const char *arg
,
2130 struct rev_info
*revs
, int flags
,
2131 int cant_be_filename
)
2133 struct object_context a_oc
, b_oc
;
2134 char *dotdot
= strstr(arg
, "..");
2140 memset(&a_oc
, 0, sizeof(a_oc
));
2141 memset(&b_oc
, 0, sizeof(b_oc
));
2144 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
2154 static int handle_revision_arg_1(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2156 struct object_context oc
;
2158 struct object
*object
;
2159 struct object_id oid
;
2161 const char *arg
= arg_
;
2162 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
2163 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
2165 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
2167 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
2169 * Just ".."? That is not a range but the
2170 * pathspec for the parent directory.
2175 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
2178 mark
= strstr(arg
, "^@");
2179 if (mark
&& !mark
[2]) {
2181 if (add_parents_only(revs
, arg
, flags
, 0))
2185 mark
= strstr(arg
, "^!");
2186 if (mark
&& !mark
[2]) {
2188 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
2191 mark
= strstr(arg
, "^-");
2193 int exclude_parent
= 1;
2196 if (strtol_i(mark
+ 2, 10, &exclude_parent
) ||
2202 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
2208 local_flags
= UNINTERESTING
| BOTTOM
;
2212 if (revarg_opt
& REVARG_COMMITTISH
)
2213 get_sha1_flags
|= GET_OID_COMMITTISH
;
2216 * Even if revs->do_not_die_on_missing_objects is set, we
2217 * should error out if we can't even get an oid, as
2218 * `--missing=print` should be able to report missing oids.
2220 if (get_oid_with_context(revs
->repo
, arg
, get_sha1_flags
, &oid
, &oc
))
2221 return revs
->ignore_missing
? 0 : -1;
2222 if (!cant_be_filename
)
2223 verify_non_filename(revs
->prefix
, arg
);
2224 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
2226 return (revs
->ignore_missing
|| revs
->do_not_die_on_missing_objects
) ? 0 : -1;
2227 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
2228 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
2233 int handle_revision_arg(const char *arg
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2235 int ret
= handle_revision_arg_1(arg
, revs
, flags
, revarg_opt
);
2237 revs
->rev_input_given
= 1;
2241 static void read_pathspec_from_stdin(struct strbuf
*sb
,
2242 struct strvec
*prune
)
2244 while (strbuf_getline(sb
, stdin
) != EOF
)
2245 strvec_push(prune
, sb
->buf
);
2248 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
2250 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
2253 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
2255 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
2258 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
2260 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
2263 static int parse_count(const char *arg
)
2267 if (strtol_i(arg
, 10, &count
) < 0)
2268 die("'%s': not an integer", arg
);
2272 static timestamp_t
parse_age(const char *arg
)
2278 num
= parse_timestamp(arg
, &p
, 10);
2279 if (errno
|| *p
|| p
== arg
)
2280 die("'%s': not a number of seconds since epoch", arg
);
2284 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
2285 int *unkc
, const char **unkv
,
2286 const struct setup_revision_opt
* opt
)
2288 const char *arg
= argv
[0];
2289 const char *optarg
= NULL
;
2291 const unsigned hexsz
= the_hash_algo
->hexsz
;
2293 /* pseudo revision arguments */
2294 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
2295 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
2296 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
2297 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
2298 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
2299 !strcmp(arg
, "--indexed-objects") ||
2300 !strcmp(arg
, "--alternate-refs") ||
2301 starts_with(arg
, "--exclude=") || starts_with(arg
, "--exclude-hidden=") ||
2302 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
2303 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
2305 unkv
[(*unkc
)++] = arg
;
2309 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
2310 revs
->max_count
= parse_count(optarg
);
2313 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
2314 revs
->skip_count
= parse_count(optarg
);
2316 } else if ((*arg
== '-') && isdigit(arg
[1])) {
2317 /* accept -<digit>, like traditional "head" */
2318 revs
->max_count
= parse_count(arg
+ 1);
2320 } else if (!strcmp(arg
, "-n")) {
2322 return error("-n requires an argument");
2323 revs
->max_count
= parse_count(argv
[1]);
2326 } else if (skip_prefix(arg
, "-n", &optarg
)) {
2327 revs
->max_count
= parse_count(optarg
);
2329 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
2330 revs
->max_age
= parse_age(optarg
);
2332 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
2333 revs
->max_age
= approxidate(optarg
);
2335 } else if ((argcount
= parse_long_opt("since-as-filter", argv
, &optarg
))) {
2336 revs
->max_age_as_filter
= approxidate(optarg
);
2338 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
2339 revs
->max_age
= approxidate(optarg
);
2341 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
2342 revs
->min_age
= parse_age(optarg
);
2344 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
2345 revs
->min_age
= approxidate(optarg
);
2347 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
2348 revs
->min_age
= approxidate(optarg
);
2350 } else if (!strcmp(arg
, "--first-parent")) {
2351 revs
->first_parent_only
= 1;
2352 } else if (!strcmp(arg
, "--exclude-first-parent-only")) {
2353 revs
->exclude_first_parent_only
= 1;
2354 } else if (!strcmp(arg
, "--ancestry-path")) {
2355 revs
->ancestry_path
= 1;
2356 revs
->simplify_history
= 0;
2358 revs
->ancestry_path_implicit_bottoms
= 1;
2359 } else if (skip_prefix(arg
, "--ancestry-path=", &optarg
)) {
2361 struct object_id oid
;
2362 const char *msg
= _("could not get commit for --ancestry-path argument %s");
2364 revs
->ancestry_path
= 1;
2365 revs
->simplify_history
= 0;
2368 if (repo_get_oid_committish(revs
->repo
, optarg
, &oid
))
2369 return error(msg
, optarg
);
2370 get_reference(revs
, optarg
, &oid
, ANCESTRY_PATH
);
2371 c
= lookup_commit_reference(revs
->repo
, &oid
);
2373 return error(msg
, optarg
);
2374 commit_list_insert(c
, &revs
->ancestry_path_bottoms
);
2375 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
2376 init_reflog_walk(&revs
->reflog_info
);
2377 } else if (!strcmp(arg
, "--default")) {
2379 return error("bad --default argument");
2380 revs
->def
= argv
[1];
2382 } else if (!strcmp(arg
, "--merge")) {
2383 revs
->show_merge
= 1;
2384 } else if (!strcmp(arg
, "--topo-order")) {
2385 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
2386 revs
->topo_order
= 1;
2387 } else if (!strcmp(arg
, "--simplify-merges")) {
2388 revs
->simplify_merges
= 1;
2389 revs
->topo_order
= 1;
2390 revs
->rewrite_parents
= 1;
2391 revs
->simplify_history
= 0;
2393 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
2394 revs
->simplify_merges
= 1;
2395 revs
->topo_order
= 1;
2396 revs
->rewrite_parents
= 1;
2397 revs
->simplify_history
= 0;
2398 revs
->simplify_by_decoration
= 1;
2401 } else if (!strcmp(arg
, "--date-order")) {
2402 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
2403 revs
->topo_order
= 1;
2404 } else if (!strcmp(arg
, "--author-date-order")) {
2405 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
2406 revs
->topo_order
= 1;
2407 } else if (!strcmp(arg
, "--early-output")) {
2408 revs
->early_output
= 100;
2409 revs
->topo_order
= 1;
2410 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
2411 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
2412 die("'%s': not a non-negative integer", optarg
);
2413 revs
->topo_order
= 1;
2414 } else if (!strcmp(arg
, "--parents")) {
2415 revs
->rewrite_parents
= 1;
2416 revs
->print_parents
= 1;
2417 } else if (!strcmp(arg
, "--dense")) {
2419 } else if (!strcmp(arg
, "--sparse")) {
2421 } else if (!strcmp(arg
, "--in-commit-order")) {
2422 revs
->tree_blobs_in_commit_order
= 1;
2423 } else if (!strcmp(arg
, "--remove-empty")) {
2424 revs
->remove_empty_trees
= 1;
2425 } else if (!strcmp(arg
, "--merges")) {
2426 revs
->min_parents
= 2;
2427 } else if (!strcmp(arg
, "--no-merges")) {
2428 revs
->max_parents
= 1;
2429 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
2430 revs
->min_parents
= parse_count(optarg
);
2431 } else if (!strcmp(arg
, "--no-min-parents")) {
2432 revs
->min_parents
= 0;
2433 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
2434 revs
->max_parents
= parse_count(optarg
);
2435 } else if (!strcmp(arg
, "--no-max-parents")) {
2436 revs
->max_parents
= -1;
2437 } else if (!strcmp(arg
, "--boundary")) {
2439 } else if (!strcmp(arg
, "--left-right")) {
2440 revs
->left_right
= 1;
2441 } else if (!strcmp(arg
, "--left-only")) {
2442 if (revs
->right_only
)
2443 die(_("options '%s' and '%s' cannot be used together"),
2444 "--left-only", "--right-only/--cherry");
2445 revs
->left_only
= 1;
2446 } else if (!strcmp(arg
, "--right-only")) {
2447 if (revs
->left_only
)
2448 die(_("options '%s' and '%s' cannot be used together"), "--right-only", "--left-only");
2449 revs
->right_only
= 1;
2450 } else if (!strcmp(arg
, "--cherry")) {
2451 if (revs
->left_only
)
2452 die(_("options '%s' and '%s' cannot be used together"), "--cherry", "--left-only");
2453 revs
->cherry_mark
= 1;
2454 revs
->right_only
= 1;
2455 revs
->max_parents
= 1;
2457 } else if (!strcmp(arg
, "--count")) {
2459 } else if (!strcmp(arg
, "--cherry-mark")) {
2460 if (revs
->cherry_pick
)
2461 die(_("options '%s' and '%s' cannot be used together"), "--cherry-mark", "--cherry-pick");
2462 revs
->cherry_mark
= 1;
2463 revs
->limited
= 1; /* needs limit_list() */
2464 } else if (!strcmp(arg
, "--cherry-pick")) {
2465 if (revs
->cherry_mark
)
2466 die(_("options '%s' and '%s' cannot be used together"), "--cherry-pick", "--cherry-mark");
2467 revs
->cherry_pick
= 1;
2469 } else if (!strcmp(arg
, "--objects")) {
2470 revs
->tag_objects
= 1;
2471 revs
->tree_objects
= 1;
2472 revs
->blob_objects
= 1;
2473 } else if (!strcmp(arg
, "--objects-edge")) {
2474 revs
->tag_objects
= 1;
2475 revs
->tree_objects
= 1;
2476 revs
->blob_objects
= 1;
2477 revs
->edge_hint
= 1;
2478 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
2479 revs
->tag_objects
= 1;
2480 revs
->tree_objects
= 1;
2481 revs
->blob_objects
= 1;
2482 revs
->edge_hint
= 1;
2483 revs
->edge_hint_aggressive
= 1;
2484 } else if (!strcmp(arg
, "--verify-objects")) {
2485 revs
->tag_objects
= 1;
2486 revs
->tree_objects
= 1;
2487 revs
->blob_objects
= 1;
2488 revs
->verify_objects
= 1;
2489 disable_commit_graph(revs
->repo
);
2490 } else if (!strcmp(arg
, "--unpacked")) {
2492 } else if (starts_with(arg
, "--unpacked=")) {
2493 die(_("--unpacked=<packfile> no longer supported"));
2494 } else if (!strcmp(arg
, "--no-kept-objects")) {
2495 revs
->no_kept_objects
= 1;
2496 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2497 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2498 } else if (skip_prefix(arg
, "--no-kept-objects=", &optarg
)) {
2499 revs
->no_kept_objects
= 1;
2500 if (!strcmp(optarg
, "in-core"))
2501 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2502 if (!strcmp(optarg
, "on-disk"))
2503 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2504 } else if (!strcmp(arg
, "-r")) {
2506 revs
->diffopt
.flags
.recursive
= 1;
2507 } else if (!strcmp(arg
, "-t")) {
2509 revs
->diffopt
.flags
.recursive
= 1;
2510 revs
->diffopt
.flags
.tree_in_recursive
= 1;
2511 } else if ((argcount
= diff_merges_parse_opts(revs
, argv
))) {
2513 } else if (!strcmp(arg
, "-v")) {
2514 revs
->verbose_header
= 1;
2515 } else if (!strcmp(arg
, "--pretty")) {
2516 revs
->verbose_header
= 1;
2517 revs
->pretty_given
= 1;
2518 get_commit_format(NULL
, revs
);
2519 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
2520 skip_prefix(arg
, "--format=", &optarg
)) {
2522 * Detached form ("--pretty X" as opposed to "--pretty=X")
2523 * not allowed, since the argument is optional.
2525 revs
->verbose_header
= 1;
2526 revs
->pretty_given
= 1;
2527 get_commit_format(optarg
, revs
);
2528 } else if (!strcmp(arg
, "--expand-tabs")) {
2529 revs
->expand_tabs_in_log
= 8;
2530 } else if (!strcmp(arg
, "--no-expand-tabs")) {
2531 revs
->expand_tabs_in_log
= 0;
2532 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
2534 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
2535 die("'%s': not a non-negative integer", arg
);
2536 revs
->expand_tabs_in_log
= val
;
2537 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
2538 enable_default_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2539 revs
->show_notes_given
= 1;
2540 } else if (!strcmp(arg
, "--show-signature")) {
2541 revs
->show_signature
= 1;
2542 } else if (!strcmp(arg
, "--no-show-signature")) {
2543 revs
->show_signature
= 0;
2544 } else if (!strcmp(arg
, "--show-linear-break")) {
2545 revs
->break_bar
= " ..........";
2546 revs
->track_linear
= 1;
2547 revs
->track_first_time
= 1;
2548 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
2549 revs
->break_bar
= xstrdup(optarg
);
2550 revs
->track_linear
= 1;
2551 revs
->track_first_time
= 1;
2552 } else if (!strcmp(arg
, "--show-notes-by-default")) {
2553 revs
->show_notes_by_default
= 1;
2554 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
2555 skip_prefix(arg
, "--notes=", &optarg
)) {
2556 if (starts_with(arg
, "--show-notes=") &&
2557 revs
->notes_opt
.use_default_notes
< 0)
2558 revs
->notes_opt
.use_default_notes
= 1;
2559 enable_ref_display_notes(&revs
->notes_opt
, &revs
->show_notes
, optarg
);
2560 revs
->show_notes_given
= 1;
2561 } else if (!strcmp(arg
, "--no-notes")) {
2562 disable_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2563 revs
->show_notes_given
= 1;
2564 } else if (!strcmp(arg
, "--standard-notes")) {
2565 revs
->show_notes_given
= 1;
2566 revs
->notes_opt
.use_default_notes
= 1;
2567 } else if (!strcmp(arg
, "--no-standard-notes")) {
2568 revs
->notes_opt
.use_default_notes
= 0;
2569 } else if (!strcmp(arg
, "--oneline")) {
2570 revs
->verbose_header
= 1;
2571 get_commit_format("oneline", revs
);
2572 revs
->pretty_given
= 1;
2573 revs
->abbrev_commit
= 1;
2574 } else if (!strcmp(arg
, "--graph")) {
2575 graph_clear(revs
->graph
);
2576 revs
->graph
= graph_init(revs
);
2577 } else if (!strcmp(arg
, "--no-graph")) {
2578 graph_clear(revs
->graph
);
2580 } else if (!strcmp(arg
, "--encode-email-headers")) {
2581 revs
->encode_email_headers
= 1;
2582 } else if (!strcmp(arg
, "--no-encode-email-headers")) {
2583 revs
->encode_email_headers
= 0;
2584 } else if (!strcmp(arg
, "--root")) {
2585 revs
->show_root_diff
= 1;
2586 } else if (!strcmp(arg
, "--no-commit-id")) {
2587 revs
->no_commit_id
= 1;
2588 } else if (!strcmp(arg
, "--always")) {
2589 revs
->always_show_header
= 1;
2590 } else if (!strcmp(arg
, "--no-abbrev")) {
2592 } else if (!strcmp(arg
, "--abbrev")) {
2593 revs
->abbrev
= DEFAULT_ABBREV
;
2594 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2595 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2596 if (revs
->abbrev
< MINIMUM_ABBREV
)
2597 revs
->abbrev
= MINIMUM_ABBREV
;
2598 else if (revs
->abbrev
> hexsz
)
2599 revs
->abbrev
= hexsz
;
2600 } else if (!strcmp(arg
, "--abbrev-commit")) {
2601 revs
->abbrev_commit
= 1;
2602 revs
->abbrev_commit_given
= 1;
2603 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2604 revs
->abbrev_commit
= 0;
2605 } else if (!strcmp(arg
, "--full-diff")) {
2607 revs
->full_diff
= 1;
2608 } else if (!strcmp(arg
, "--show-pulls")) {
2609 revs
->show_pulls
= 1;
2610 } else if (!strcmp(arg
, "--full-history")) {
2611 revs
->simplify_history
= 0;
2612 } else if (!strcmp(arg
, "--relative-date")) {
2613 revs
->date_mode
.type
= DATE_RELATIVE
;
2614 revs
->date_mode_explicit
= 1;
2615 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2616 parse_date_format(optarg
, &revs
->date_mode
);
2617 revs
->date_mode_explicit
= 1;
2619 } else if (!strcmp(arg
, "--log-size")) {
2620 revs
->show_log_size
= 1;
2623 * Grepping the commit log
2625 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2626 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2628 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2629 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2631 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2632 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2634 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2635 add_message_grep(revs
, optarg
);
2637 } else if (!strcmp(arg
, "--basic-regexp")) {
2638 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2639 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2640 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2641 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2642 revs
->grep_filter
.ignore_case
= 1;
2643 revs
->diffopt
.pickaxe_opts
|= DIFF_PICKAXE_IGNORE_CASE
;
2644 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2645 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2646 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2647 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2648 } else if (!strcmp(arg
, "--all-match")) {
2649 revs
->grep_filter
.all_match
= 1;
2650 } else if (!strcmp(arg
, "--invert-grep")) {
2651 revs
->grep_filter
.no_body_match
= 1;
2652 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2653 free(git_log_output_encoding
);
2654 if (strcmp(optarg
, "none"))
2655 git_log_output_encoding
= xstrdup(optarg
);
2657 git_log_output_encoding
= xstrdup("");
2659 } else if (!strcmp(arg
, "--reverse")) {
2661 } else if (!strcmp(arg
, "--children")) {
2662 revs
->children
.name
= "children";
2664 } else if (!strcmp(arg
, "--ignore-missing")) {
2665 revs
->ignore_missing
= 1;
2666 } else if (opt
&& opt
->allow_exclude_promisor_objects
&&
2667 !strcmp(arg
, "--exclude-promisor-objects")) {
2668 if (fetch_if_missing
)
2669 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2670 revs
->exclude_promisor_objects
= 1;
2672 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2674 unkv
[(*unkc
)++] = arg
;
2681 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2682 const struct option
*options
,
2683 const char * const usagestr
[])
2685 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2686 &ctx
->cpidx
, ctx
->out
, NULL
);
2688 error("unknown option `%s'", ctx
->argv
[0]);
2689 usage_with_options(usagestr
, options
);
2695 void revision_opts_finish(struct rev_info
*revs
)
2697 if (revs
->graph
&& revs
->track_linear
)
2698 die(_("options '%s' and '%s' cannot be used together"), "--show-linear-break", "--graph");
2701 revs
->topo_order
= 1;
2702 revs
->rewrite_parents
= 1;
2706 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2707 void *cb_data
, const char *term
)
2709 struct strbuf bisect_refs
= STRBUF_INIT
;
2711 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2712 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, NULL
, fn
, cb_data
);
2713 strbuf_release(&bisect_refs
);
2717 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2719 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2722 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2724 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2727 static int handle_revision_pseudo_opt(struct rev_info
*revs
,
2728 const char **argv
, int *flags
)
2730 const char *arg
= argv
[0];
2732 struct ref_store
*refs
;
2735 if (revs
->repo
!= the_repository
) {
2737 * We need some something like get_submodule_worktrees()
2738 * before we can go through all worktrees of a submodule,
2739 * .e.g with adding all HEADs from --all, which is not
2740 * supported right now, so stick to single worktree.
2742 if (!revs
->single_worktree
)
2743 BUG("--single-worktree cannot be used together with submodule");
2745 refs
= get_main_ref_store(revs
->repo
);
2750 * Commands like "git shortlog" will not accept the options below
2751 * unless parse_revision_opt queues them (as opposed to erroring
2754 * When implementing your new pseudo-option, remember to
2755 * register it in the list at the top of handle_revision_opt.
2757 if (!strcmp(arg
, "--all")) {
2758 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2759 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2760 if (!revs
->single_worktree
) {
2761 struct all_refs_cb cb
;
2763 init_all_refs_cb(&cb
, revs
, *flags
);
2764 other_head_refs(handle_one_ref
, &cb
);
2766 clear_ref_exclusions(&revs
->ref_excludes
);
2767 } else if (!strcmp(arg
, "--branches")) {
2768 if (revs
->ref_excludes
.hidden_refs_configured
)
2769 return error(_("options '%s' and '%s' cannot be used together"),
2770 "--exclude-hidden", "--branches");
2771 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2772 clear_ref_exclusions(&revs
->ref_excludes
);
2773 } else if (!strcmp(arg
, "--bisect")) {
2774 read_bisect_terms(&term_bad
, &term_good
);
2775 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2776 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2777 for_each_good_bisect_ref
);
2779 } else if (!strcmp(arg
, "--tags")) {
2780 if (revs
->ref_excludes
.hidden_refs_configured
)
2781 return error(_("options '%s' and '%s' cannot be used together"),
2782 "--exclude-hidden", "--tags");
2783 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2784 clear_ref_exclusions(&revs
->ref_excludes
);
2785 } else if (!strcmp(arg
, "--remotes")) {
2786 if (revs
->ref_excludes
.hidden_refs_configured
)
2787 return error(_("options '%s' and '%s' cannot be used together"),
2788 "--exclude-hidden", "--remotes");
2789 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2790 clear_ref_exclusions(&revs
->ref_excludes
);
2791 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2792 struct all_refs_cb cb
;
2793 init_all_refs_cb(&cb
, revs
, *flags
);
2794 refs_for_each_glob_ref(get_main_ref_store(the_repository
),
2795 handle_one_ref
, optarg
, &cb
);
2796 clear_ref_exclusions(&revs
->ref_excludes
);
2798 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2799 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2801 } else if ((argcount
= parse_long_opt("exclude-hidden", argv
, &optarg
))) {
2802 exclude_hidden_refs(&revs
->ref_excludes
, optarg
);
2804 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2805 struct all_refs_cb cb
;
2806 if (revs
->ref_excludes
.hidden_refs_configured
)
2807 return error(_("options '%s' and '%s' cannot be used together"),
2808 "--exclude-hidden", "--branches");
2809 init_all_refs_cb(&cb
, revs
, *flags
);
2810 refs_for_each_glob_ref_in(get_main_ref_store(the_repository
),
2811 handle_one_ref
, optarg
,
2812 "refs/heads/", &cb
);
2813 clear_ref_exclusions(&revs
->ref_excludes
);
2814 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2815 struct all_refs_cb cb
;
2816 if (revs
->ref_excludes
.hidden_refs_configured
)
2817 return error(_("options '%s' and '%s' cannot be used together"),
2818 "--exclude-hidden", "--tags");
2819 init_all_refs_cb(&cb
, revs
, *flags
);
2820 refs_for_each_glob_ref_in(get_main_ref_store(the_repository
),
2821 handle_one_ref
, optarg
,
2823 clear_ref_exclusions(&revs
->ref_excludes
);
2824 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2825 struct all_refs_cb cb
;
2826 if (revs
->ref_excludes
.hidden_refs_configured
)
2827 return error(_("options '%s' and '%s' cannot be used together"),
2828 "--exclude-hidden", "--remotes");
2829 init_all_refs_cb(&cb
, revs
, *flags
);
2830 refs_for_each_glob_ref_in(get_main_ref_store(the_repository
),
2831 handle_one_ref
, optarg
,
2832 "refs/remotes/", &cb
);
2833 clear_ref_exclusions(&revs
->ref_excludes
);
2834 } else if (!strcmp(arg
, "--reflog")) {
2835 add_reflogs_to_pending(revs
, *flags
);
2836 } else if (!strcmp(arg
, "--indexed-objects")) {
2837 add_index_objects_to_pending(revs
, *flags
);
2838 } else if (!strcmp(arg
, "--alternate-refs")) {
2839 add_alternate_refs_to_pending(revs
, *flags
);
2840 } else if (!strcmp(arg
, "--not")) {
2841 *flags
^= UNINTERESTING
| BOTTOM
;
2842 } else if (!strcmp(arg
, "--no-walk")) {
2844 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2846 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2847 * not allowed, since the argument is optional.
2850 if (!strcmp(optarg
, "sorted"))
2851 revs
->unsorted_input
= 0;
2852 else if (!strcmp(optarg
, "unsorted"))
2853 revs
->unsorted_input
= 1;
2855 return error("invalid argument to --no-walk");
2856 } else if (!strcmp(arg
, "--do-walk")) {
2858 } else if (!strcmp(arg
, "--single-worktree")) {
2859 revs
->single_worktree
= 1;
2860 } else if (skip_prefix(arg
, ("--filter="), &arg
)) {
2861 parse_list_objects_filter(&revs
->filter
, arg
);
2862 } else if (!strcmp(arg
, ("--no-filter"))) {
2863 list_objects_filter_set_no_filter(&revs
->filter
);
2871 static void read_revisions_from_stdin(struct rev_info
*revs
,
2872 struct strvec
*prune
)
2875 int seen_dashdash
= 0;
2876 int seen_end_of_options
= 0;
2880 save_warning
= warn_on_object_refname_ambiguity
;
2881 warn_on_object_refname_ambiguity
= 0;
2883 strbuf_init(&sb
, 1000);
2884 while (strbuf_getline(&sb
, stdin
) != EOF
) {
2888 if (!strcmp(sb
.buf
, "--")) {
2893 if (!seen_end_of_options
&& sb
.buf
[0] == '-') {
2894 const char *argv
[] = { sb
.buf
, NULL
};
2896 if (!strcmp(sb
.buf
, "--end-of-options")) {
2897 seen_end_of_options
= 1;
2901 if (handle_revision_pseudo_opt(revs
, argv
, &flags
) > 0)
2904 die(_("invalid option '%s' in --stdin mode"), sb
.buf
);
2907 if (handle_revision_arg(sb
.buf
, revs
, flags
,
2908 REVARG_CANNOT_BE_FILENAME
))
2909 die("bad revision '%s'", sb
.buf
);
2912 read_pathspec_from_stdin(&sb
, prune
);
2914 strbuf_release(&sb
);
2915 warn_on_object_refname_ambiguity
= save_warning
;
2918 static void NORETURN
diagnose_missing_default(const char *def
)
2921 const char *refname
;
2923 refname
= refs_resolve_ref_unsafe(get_main_ref_store(the_repository
),
2924 def
, 0, NULL
, &flags
);
2925 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2926 die(_("your current branch appears to be broken"));
2928 skip_prefix(refname
, "refs/heads/", &refname
);
2929 die(_("your current branch '%s' does not have any commits yet"),
2934 * Parse revision information, filling in the "rev_info" structure,
2935 * and removing the used arguments from the argument list.
2937 * Returns the number of arguments left that weren't recognized
2938 * (which are also moved to the head of the argument list)
2940 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2942 int i
, flags
, left
, seen_dashdash
, revarg_opt
;
2943 struct strvec prune_data
= STRVEC_INIT
;
2944 int seen_end_of_options
= 0;
2946 /* First, search for "--" */
2947 if (opt
&& opt
->assume_dashdash
) {
2951 for (i
= 1; i
< argc
; i
++) {
2952 const char *arg
= argv
[i
];
2953 if (strcmp(arg
, "--"))
2955 if (opt
&& opt
->free_removed_argv_elements
)
2956 free((char *)argv
[i
]);
2960 strvec_pushv(&prune_data
, argv
+ i
+ 1);
2966 /* Second, deal with arguments and options */
2968 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2970 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2971 for (left
= i
= 1; i
< argc
; i
++) {
2972 const char *arg
= argv
[i
];
2973 if (!seen_end_of_options
&& *arg
== '-') {
2976 opts
= handle_revision_pseudo_opt(
2984 if (!strcmp(arg
, "--stdin")) {
2985 if (revs
->disable_stdin
) {
2989 if (revs
->read_from_stdin
++)
2990 die("--stdin given twice?");
2991 read_revisions_from_stdin(revs
, &prune_data
);
2995 if (!strcmp(arg
, "--end-of-options")) {
2996 seen_end_of_options
= 1;
3000 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
,
3012 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
3014 if (seen_dashdash
|| *arg
== '^')
3015 die("bad revision '%s'", arg
);
3017 /* If we didn't have a "--":
3018 * (1) all filenames must exist;
3019 * (2) all rev-args must not be interpretable
3020 * as a valid filename.
3021 * but the latter we have checked in the main loop.
3023 for (j
= i
; j
< argc
; j
++)
3024 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
3026 strvec_pushv(&prune_data
, argv
+ i
);
3030 revision_opts_finish(revs
);
3032 if (prune_data
.nr
) {
3034 * If we need to introduce the magic "a lone ':' means no
3035 * pathspec whatsoever", here is the place to do so.
3037 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
3038 * prune_data.nr = 0;
3039 * prune_data.alloc = 0;
3040 * free(prune_data.path);
3041 * prune_data.path = NULL;
3043 * terminate prune_data.alloc with NULL and
3044 * call init_pathspec() to set revs->prune_data here.
3047 parse_pathspec(&revs
->prune_data
, 0, 0,
3048 revs
->prefix
, prune_data
.v
);
3050 strvec_clear(&prune_data
);
3053 revs
->def
= opt
? opt
->def
: NULL
;
3054 if (opt
&& opt
->tweak
)
3056 if (revs
->show_merge
)
3057 prepare_show_merge(revs
);
3058 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
) {
3059 struct object_id oid
;
3060 struct object
*object
;
3061 struct object_context oc
;
3062 if (get_oid_with_context(revs
->repo
, revs
->def
, 0, &oid
, &oc
))
3063 diagnose_missing_default(revs
->def
);
3064 object
= get_reference(revs
, revs
->def
, &oid
, 0);
3065 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
3068 /* Did the user ask for any diff output? Run the diff! */
3069 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
3072 /* Pickaxe, diff-filter and rename following need diffs */
3073 if ((revs
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
3074 revs
->diffopt
.filter
||
3075 revs
->diffopt
.flags
.follow_renames
)
3078 if (revs
->diffopt
.objfind
)
3079 revs
->simplify_history
= 0;
3081 if (revs
->line_level_traverse
) {
3082 if (want_ancestry(revs
))
3084 revs
->topo_order
= 1;
3087 if (revs
->topo_order
&& !generation_numbers_enabled(the_repository
))
3090 if (revs
->prune_data
.nr
) {
3091 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
3092 /* Can't prune commits with rename following: the paths change.. */
3093 if (!revs
->diffopt
.flags
.follow_renames
)
3095 if (!revs
->full_diff
)
3096 copy_pathspec(&revs
->diffopt
.pathspec
,
3100 diff_merges_setup_revs(revs
);
3102 revs
->diffopt
.abbrev
= revs
->abbrev
;
3104 diff_setup_done(&revs
->diffopt
);
3106 if (!is_encoding_utf8(get_log_output_encoding()))
3107 revs
->grep_filter
.ignore_locale
= 1;
3108 compile_grep_patterns(&revs
->grep_filter
);
3110 if (revs
->reflog_info
&& revs
->limited
)
3111 die("cannot combine --walk-reflogs with history-limiting options");
3112 if (revs
->rewrite_parents
&& revs
->children
.name
)
3113 die(_("options '%s' and '%s' cannot be used together"), "--parents", "--children");
3114 if (revs
->filter
.choice
&& !revs
->blob_objects
)
3115 die(_("object filtering requires --objects"));
3118 * Limitations on the graph functionality
3120 die_for_incompatible_opt3(!!revs
->graph
, "--graph",
3121 !!revs
->reverse
, "--reverse",
3122 !!revs
->reflog_info
, "--walk-reflogs");
3124 if (revs
->no_walk
&& revs
->graph
)
3125 die(_("options '%s' and '%s' cannot be used together"), "--no-walk", "--graph");
3126 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
3127 die(_("the option '%s' requires '%s'"), "--grep-reflog", "--walk-reflogs");
3129 if (revs
->line_level_traverse
&&
3130 (revs
->diffopt
.output_format
& ~(DIFF_FORMAT_PATCH
| DIFF_FORMAT_NO_OUTPUT
)))
3131 die(_("-L does not yet support diff formats besides -p and -s"));
3133 if (revs
->expand_tabs_in_log
< 0)
3134 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
3136 if (!revs
->show_notes_given
&& revs
->show_notes_by_default
) {
3137 enable_default_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
3138 revs
->show_notes_given
= 1;
3144 static void release_revisions_cmdline(struct rev_cmdline_info
*cmdline
)
3148 for (i
= 0; i
< cmdline
->nr
; i
++)
3149 free((char *)cmdline
->rev
[i
].name
);
3153 static void release_revisions_mailmap(struct string_list
*mailmap
)
3157 clear_mailmap(mailmap
);
3161 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
);
3163 static void free_void_commit_list(void *list
)
3165 free_commit_list(list
);
3168 void release_revisions(struct rev_info
*revs
)
3170 free_commit_list(revs
->commits
);
3171 free_commit_list(revs
->ancestry_path_bottoms
);
3172 object_array_clear(&revs
->pending
);
3173 object_array_clear(&revs
->boundary_commits
);
3174 release_revisions_cmdline(&revs
->cmdline
);
3175 list_objects_filter_release(&revs
->filter
);
3176 clear_pathspec(&revs
->prune_data
);
3177 date_mode_release(&revs
->date_mode
);
3178 release_revisions_mailmap(revs
->mailmap
);
3179 free_grep_patterns(&revs
->grep_filter
);
3180 graph_clear(revs
->graph
);
3181 /* TODO (need to handle "no_free"): diff_free(&revs->diffopt) */
3182 diff_free(&revs
->pruning
);
3183 reflog_walk_info_release(revs
->reflog_info
);
3184 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3185 clear_decoration(&revs
->children
, free_void_commit_list
);
3186 clear_decoration(&revs
->merge_simplification
, free
);
3187 clear_decoration(&revs
->treesame
, free
);
3188 line_log_free(revs
);
3189 oidset_clear(&revs
->missing_commits
);
3192 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
3194 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
3197 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
3200 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
3202 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3203 struct commit_list
**pp
, *p
;
3204 int surviving_parents
;
3206 /* Examine existing parents while marking ones we have seen... */
3207 pp
= &commit
->parents
;
3208 surviving_parents
= 0;
3209 while ((p
= *pp
) != NULL
) {
3210 struct commit
*parent
= p
->item
;
3211 if (parent
->object
.flags
& TMP_MARK
) {
3214 compact_treesame(revs
, commit
, surviving_parents
);
3217 parent
->object
.flags
|= TMP_MARK
;
3218 surviving_parents
++;
3221 /* clear the temporary mark */
3222 for (p
= commit
->parents
; p
; p
= p
->next
) {
3223 p
->item
->object
.flags
&= ~TMP_MARK
;
3225 /* no update_treesame() - removing duplicates can't affect TREESAME */
3226 return surviving_parents
;
3229 struct merge_simplify_state
{
3230 struct commit
*simplified
;
3233 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
3235 struct merge_simplify_state
*st
;
3237 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
3239 CALLOC_ARRAY(st
, 1);
3240 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
3245 static int mark_redundant_parents(struct commit
*commit
)
3247 struct commit_list
*h
= reduce_heads(commit
->parents
);
3248 int i
= 0, marked
= 0;
3249 struct commit_list
*po
, *pn
;
3251 /* Want these for sanity-checking only */
3252 int orig_cnt
= commit_list_count(commit
->parents
);
3253 int cnt
= commit_list_count(h
);
3256 * Not ready to remove items yet, just mark them for now, based
3257 * on the output of reduce_heads(). reduce_heads outputs the reduced
3258 * set in its original order, so this isn't too hard.
3260 po
= commit
->parents
;
3263 if (pn
&& po
->item
== pn
->item
) {
3267 po
->item
->object
.flags
|= TMP_MARK
;
3273 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
3274 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
3276 free_commit_list(h
);
3281 static int mark_treesame_root_parents(struct commit
*commit
)
3283 struct commit_list
*p
;
3286 for (p
= commit
->parents
; p
; p
= p
->next
) {
3287 struct commit
*parent
= p
->item
;
3288 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
3289 parent
->object
.flags
|= TMP_MARK
;
3298 * Awkward naming - this means one parent we are TREESAME to.
3299 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
3300 * empty tree). Better name suggestions?
3302 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
3304 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3305 struct commit
*unmarked
= NULL
, *marked
= NULL
;
3306 struct commit_list
*p
;
3309 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
3310 if (ts
->treesame
[n
]) {
3311 if (p
->item
->object
.flags
& TMP_MARK
) {
3324 * If we are TREESAME to a marked-for-deletion parent, but not to any
3325 * unmarked parents, unmark the first TREESAME parent. This is the
3326 * parent that the default simplify_history==1 scan would have followed,
3327 * and it doesn't make sense to omit that path when asking for a
3328 * simplified full history. Retaining it improves the chances of
3329 * understanding odd missed merges that took an old version of a file.
3333 * I--------*X A modified the file, but mainline merge X used
3334 * \ / "-s ours", so took the version from I. X is
3335 * `-*A--' TREESAME to I and !TREESAME to A.
3337 * Default log from X would produce "I". Without this check,
3338 * --full-history --simplify-merges would produce "I-A-X", showing
3339 * the merge commit X and that it changed A, but not making clear that
3340 * it had just taken the I version. With this check, the topology above
3343 * Note that it is possible that the simplification chooses a different
3344 * TREESAME parent from the default, in which case this test doesn't
3345 * activate, and we _do_ drop the default parent. Example:
3347 * I------X A modified the file, but it was reverted in B,
3348 * \ / meaning mainline merge X is TREESAME to both
3351 * Default log would produce "I" by following the first parent;
3352 * --full-history --simplify-merges will produce "I-A-B". But this is a
3353 * reasonable result - it presents a logical full history leading from
3354 * I to X, and X is not an important merge.
3356 if (!unmarked
&& marked
) {
3357 marked
->object
.flags
&= ~TMP_MARK
;
3364 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
3366 struct commit_list
**pp
, *p
;
3367 int nth_parent
, removed
= 0;
3369 pp
= &commit
->parents
;
3371 while ((p
= *pp
) != NULL
) {
3372 struct commit
*parent
= p
->item
;
3373 if (parent
->object
.flags
& TMP_MARK
) {
3374 parent
->object
.flags
&= ~TMP_MARK
;
3378 compact_treesame(revs
, commit
, nth_parent
);
3385 /* Removing parents can only increase TREESAMEness */
3386 if (removed
&& !(commit
->object
.flags
& TREESAME
))
3387 update_treesame(revs
, commit
);
3392 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
3394 struct commit_list
*p
;
3395 struct commit
*parent
;
3396 struct merge_simplify_state
*st
, *pst
;
3399 st
= locate_simplify_state(revs
, commit
);
3402 * Have we handled this one?
3408 * An UNINTERESTING commit simplifies to itself, so does a
3409 * root commit. We do not rewrite parents of such commit
3412 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
3413 st
->simplified
= commit
;
3418 * Do we know what commit all of our parents that matter
3419 * should be rewritten to? Otherwise we are not ready to
3420 * rewrite this one yet.
3422 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
3423 pst
= locate_simplify_state(revs
, p
->item
);
3424 if (!pst
->simplified
) {
3425 tail
= &commit_list_insert(p
->item
, tail
)->next
;
3428 if (revs
->first_parent_only
)
3432 tail
= &commit_list_insert(commit
, tail
)->next
;
3437 * Rewrite our list of parents. Note that this cannot
3438 * affect our TREESAME flags in any way - a commit is
3439 * always TREESAME to its simplification.
3441 for (p
= commit
->parents
; p
; p
= p
->next
) {
3442 pst
= locate_simplify_state(revs
, p
->item
);
3443 p
->item
= pst
->simplified
;
3444 if (revs
->first_parent_only
)
3448 if (revs
->first_parent_only
)
3451 cnt
= remove_duplicate_parents(revs
, commit
);
3454 * It is possible that we are a merge and one side branch
3455 * does not have any commit that touches the given paths;
3456 * in such a case, the immediate parent from that branch
3457 * will be rewritten to be the merge base.
3459 * o----X X: the commit we are looking at;
3460 * / / o: a commit that touches the paths;
3463 * Further, a merge of an independent branch that doesn't
3464 * touch the path will reduce to a treesame root parent:
3466 * ----o----X X: the commit we are looking at;
3467 * / o: a commit that touches the paths;
3468 * r r: a root commit not touching the paths
3470 * Detect and simplify both cases.
3473 int marked
= mark_redundant_parents(commit
);
3474 marked
+= mark_treesame_root_parents(commit
);
3476 marked
-= leave_one_treesame_to_parent(revs
, commit
);
3478 cnt
= remove_marked_parents(revs
, commit
);
3482 * A commit simplifies to itself if it is a root, if it is
3483 * UNINTERESTING, if it touches the given paths, or if it is a
3484 * merge and its parents don't simplify to one relevant commit
3485 * (the first two cases are already handled at the beginning of
3488 * Otherwise, it simplifies to what its sole relevant parent
3492 (commit
->object
.flags
& UNINTERESTING
) ||
3493 !(commit
->object
.flags
& TREESAME
) ||
3494 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
||
3495 (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
)))
3496 st
->simplified
= commit
;
3498 pst
= locate_simplify_state(revs
, parent
);
3499 st
->simplified
= pst
->simplified
;
3504 static void simplify_merges(struct rev_info
*revs
)
3506 struct commit_list
*list
, *next
;
3507 struct commit_list
*yet_to_do
, **tail
;
3508 struct commit
*commit
;
3513 /* feed the list reversed */
3515 for (list
= revs
->commits
; list
; list
= next
) {
3516 commit
= list
->item
;
3519 * Do not free(list) here yet; the original list
3520 * is used later in this function.
3522 commit_list_insert(commit
, &yet_to_do
);
3529 commit
= pop_commit(&list
);
3530 tail
= simplify_one(revs
, commit
, tail
);
3534 /* clean up the result, removing the simplified ones */
3535 list
= revs
->commits
;
3536 revs
->commits
= NULL
;
3537 tail
= &revs
->commits
;
3539 struct merge_simplify_state
*st
;
3541 commit
= pop_commit(&list
);
3542 st
= locate_simplify_state(revs
, commit
);
3543 if (st
->simplified
== commit
)
3544 tail
= &commit_list_insert(commit
, tail
)->next
;
3548 static void set_children(struct rev_info
*revs
)
3550 struct commit_list
*l
;
3551 for (l
= revs
->commits
; l
; l
= l
->next
) {
3552 struct commit
*commit
= l
->item
;
3553 struct commit_list
*p
;
3555 for (p
= commit
->parents
; p
; p
= p
->next
)
3556 add_child(revs
, p
->item
, commit
);
3560 void reset_revision_walk(void)
3562 clear_object_flags(SEEN
| ADDED
| SHOWN
| TOPO_WALK_EXPLORED
| TOPO_WALK_INDEGREE
);
3565 static int mark_uninteresting(const struct object_id
*oid
,
3566 struct packed_git
*pack UNUSED
,
3567 uint32_t pos UNUSED
,
3570 struct rev_info
*revs
= cb
;
3571 struct object
*o
= lookup_unknown_object(revs
->repo
, oid
);
3572 o
->flags
|= UNINTERESTING
| SEEN
;
3576 define_commit_slab(indegree_slab
, int);
3577 define_commit_slab(author_date_slab
, timestamp_t
);
3579 struct topo_walk_info
{
3580 timestamp_t min_generation
;
3581 struct prio_queue explore_queue
;
3582 struct prio_queue indegree_queue
;
3583 struct prio_queue topo_queue
;
3584 struct indegree_slab indegree
;
3585 struct author_date_slab author_date
;
3588 static int topo_walk_atexit_registered
;
3589 static unsigned int count_explore_walked
;
3590 static unsigned int count_indegree_walked
;
3591 static unsigned int count_topo_walked
;
3593 static void trace2_topo_walk_statistics_atexit(void)
3595 struct json_writer jw
= JSON_WRITER_INIT
;
3597 jw_object_begin(&jw
, 0);
3598 jw_object_intmax(&jw
, "count_explore_walked", count_explore_walked
);
3599 jw_object_intmax(&jw
, "count_indegree_walked", count_indegree_walked
);
3600 jw_object_intmax(&jw
, "count_topo_walked", count_topo_walked
);
3603 trace2_data_json("topo_walk", the_repository
, "statistics", &jw
);
3608 static inline void test_flag_and_insert(struct prio_queue
*q
, struct commit
*c
, int flag
)
3610 if (c
->object
.flags
& flag
)
3613 c
->object
.flags
|= flag
;
3614 prio_queue_put(q
, c
);
3617 static void explore_walk_step(struct rev_info
*revs
)
3619 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3620 struct commit_list
*p
;
3621 struct commit
*c
= prio_queue_get(&info
->explore_queue
);
3626 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3629 count_explore_walked
++;
3631 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3632 record_author_date(&info
->author_date
, c
);
3634 if (revs
->max_age
!= -1 && (c
->date
< revs
->max_age
))
3635 c
->object
.flags
|= UNINTERESTING
;
3637 if (process_parents(revs
, c
, NULL
, NULL
) < 0)
3640 if (c
->object
.flags
& UNINTERESTING
)
3641 mark_parents_uninteresting(revs
, c
);
3643 for (p
= c
->parents
; p
; p
= p
->next
)
3644 test_flag_and_insert(&info
->explore_queue
, p
->item
, TOPO_WALK_EXPLORED
);
3647 static void explore_to_depth(struct rev_info
*revs
,
3648 timestamp_t gen_cutoff
)
3650 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3652 while ((c
= prio_queue_peek(&info
->explore_queue
)) &&
3653 commit_graph_generation(c
) >= gen_cutoff
)
3654 explore_walk_step(revs
);
3657 static void indegree_walk_step(struct rev_info
*revs
)
3659 struct commit_list
*p
;
3660 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3661 struct commit
*c
= prio_queue_get(&info
->indegree_queue
);
3666 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3669 count_indegree_walked
++;
3671 explore_to_depth(revs
, commit_graph_generation(c
));
3673 for (p
= c
->parents
; p
; p
= p
->next
) {
3674 struct commit
*parent
= p
->item
;
3675 int *pi
= indegree_slab_at(&info
->indegree
, parent
);
3677 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3685 test_flag_and_insert(&info
->indegree_queue
, parent
, TOPO_WALK_INDEGREE
);
3687 if (revs
->first_parent_only
)
3692 static void compute_indegrees_to_depth(struct rev_info
*revs
,
3693 timestamp_t gen_cutoff
)
3695 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3697 while ((c
= prio_queue_peek(&info
->indegree_queue
)) &&
3698 commit_graph_generation(c
) >= gen_cutoff
)
3699 indegree_walk_step(revs
);
3702 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
)
3706 clear_prio_queue(&info
->explore_queue
);
3707 clear_prio_queue(&info
->indegree_queue
);
3708 clear_prio_queue(&info
->topo_queue
);
3709 clear_indegree_slab(&info
->indegree
);
3710 clear_author_date_slab(&info
->author_date
);
3714 static void reset_topo_walk(struct rev_info
*revs
)
3716 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3717 revs
->topo_walk_info
= NULL
;
3720 static void init_topo_walk(struct rev_info
*revs
)
3722 struct topo_walk_info
*info
;
3723 struct commit_list
*list
;
3724 if (revs
->topo_walk_info
)
3725 reset_topo_walk(revs
);
3727 revs
->topo_walk_info
= xmalloc(sizeof(struct topo_walk_info
));
3728 info
= revs
->topo_walk_info
;
3729 memset(info
, 0, sizeof(struct topo_walk_info
));
3731 init_indegree_slab(&info
->indegree
);
3732 memset(&info
->explore_queue
, 0, sizeof(info
->explore_queue
));
3733 memset(&info
->indegree_queue
, 0, sizeof(info
->indegree_queue
));
3734 memset(&info
->topo_queue
, 0, sizeof(info
->topo_queue
));
3736 switch (revs
->sort_order
) {
3737 default: /* REV_SORT_IN_GRAPH_ORDER */
3738 info
->topo_queue
.compare
= NULL
;
3740 case REV_SORT_BY_COMMIT_DATE
:
3741 info
->topo_queue
.compare
= compare_commits_by_commit_date
;
3743 case REV_SORT_BY_AUTHOR_DATE
:
3744 init_author_date_slab(&info
->author_date
);
3745 info
->topo_queue
.compare
= compare_commits_by_author_date
;
3746 info
->topo_queue
.cb_data
= &info
->author_date
;
3750 info
->explore_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3751 info
->indegree_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3753 info
->min_generation
= GENERATION_NUMBER_INFINITY
;
3754 for (list
= revs
->commits
; list
; list
= list
->next
) {
3755 struct commit
*c
= list
->item
;
3756 timestamp_t generation
;
3758 if (repo_parse_commit_gently(revs
->repo
, c
, 1))
3761 test_flag_and_insert(&info
->explore_queue
, c
, TOPO_WALK_EXPLORED
);
3762 test_flag_and_insert(&info
->indegree_queue
, c
, TOPO_WALK_INDEGREE
);
3764 generation
= commit_graph_generation(c
);
3765 if (generation
< info
->min_generation
)
3766 info
->min_generation
= generation
;
3768 *(indegree_slab_at(&info
->indegree
, c
)) = 1;
3770 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3771 record_author_date(&info
->author_date
, c
);
3773 compute_indegrees_to_depth(revs
, info
->min_generation
);
3775 for (list
= revs
->commits
; list
; list
= list
->next
) {
3776 struct commit
*c
= list
->item
;
3778 if (*(indegree_slab_at(&info
->indegree
, c
)) == 1)
3779 prio_queue_put(&info
->topo_queue
, c
);
3783 * This is unfortunate; the initial tips need to be shown
3784 * in the order given from the revision traversal machinery.
3786 if (revs
->sort_order
== REV_SORT_IN_GRAPH_ORDER
)
3787 prio_queue_reverse(&info
->topo_queue
);
3789 if (trace2_is_enabled() && !topo_walk_atexit_registered
) {
3790 atexit(trace2_topo_walk_statistics_atexit
);
3791 topo_walk_atexit_registered
= 1;
3795 static struct commit
*next_topo_commit(struct rev_info
*revs
)
3798 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3800 /* pop next off of topo_queue */
3801 c
= prio_queue_get(&info
->topo_queue
);
3804 *(indegree_slab_at(&info
->indegree
, c
)) = 0;
3809 static void expand_topo_walk(struct rev_info
*revs
, struct commit
*commit
)
3811 struct commit_list
*p
;
3812 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3813 if (process_parents(revs
, commit
, NULL
, NULL
) < 0) {
3814 if (!revs
->ignore_missing_links
)
3815 die("Failed to traverse parents of commit %s",
3816 oid_to_hex(&commit
->object
.oid
));
3819 count_topo_walked
++;
3821 for (p
= commit
->parents
; p
; p
= p
->next
) {
3822 struct commit
*parent
= p
->item
;
3824 timestamp_t generation
;
3826 if (parent
->object
.flags
& UNINTERESTING
)
3829 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3832 generation
= commit_graph_generation(parent
);
3833 if (generation
< info
->min_generation
) {
3834 info
->min_generation
= generation
;
3835 compute_indegrees_to_depth(revs
, info
->min_generation
);
3838 pi
= indegree_slab_at(&info
->indegree
, parent
);
3842 prio_queue_put(&info
->topo_queue
, parent
);
3844 if (revs
->first_parent_only
)
3849 int prepare_revision_walk(struct rev_info
*revs
)
3852 struct object_array old_pending
;
3853 struct commit_list
**next
= &revs
->commits
;
3855 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
3856 revs
->pending
.nr
= 0;
3857 revs
->pending
.alloc
= 0;
3858 revs
->pending
.objects
= NULL
;
3859 for (i
= 0; i
< old_pending
.nr
; i
++) {
3860 struct object_array_entry
*e
= old_pending
.objects
+ i
;
3861 struct commit
*commit
= handle_commit(revs
, e
);
3863 if (!(commit
->object
.flags
& SEEN
)) {
3864 commit
->object
.flags
|= SEEN
;
3865 next
= commit_list_append(commit
, next
);
3869 object_array_clear(&old_pending
);
3871 /* Signal whether we need per-parent treesame decoration */
3872 if (revs
->simplify_merges
||
3873 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
3874 revs
->treesame
.name
= "treesame";
3876 if (revs
->exclude_promisor_objects
) {
3877 for_each_packed_object(mark_uninteresting
, revs
,
3878 FOR_EACH_OBJECT_PROMISOR_ONLY
);
3881 if (!revs
->reflog_info
)
3882 prepare_to_use_bloom_filter(revs
);
3883 if (!revs
->unsorted_input
)
3884 commit_list_sort_by_date(&revs
->commits
);
3887 if (revs
->limited
) {
3888 if (limit_list(revs
) < 0)
3890 if (revs
->topo_order
)
3891 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3892 } else if (revs
->topo_order
)
3893 init_topo_walk(revs
);
3894 if (revs
->line_level_traverse
&& want_ancestry(revs
))
3896 * At the moment we can only do line-level log with parent
3897 * rewriting by performing this expensive pre-filtering step.
3898 * If parent rewriting is not requested, then we rather
3899 * perform the line-level log filtering during the regular
3900 * history traversal.
3902 line_log_filter(revs
);
3903 if (revs
->simplify_merges
)
3904 simplify_merges(revs
);
3905 if (revs
->children
.name
)
3911 static enum rewrite_result
rewrite_one_1(struct rev_info
*revs
,
3913 struct prio_queue
*queue
)
3916 struct commit
*p
= *pp
;
3918 if (process_parents(revs
, p
, NULL
, queue
) < 0)
3919 return rewrite_one_error
;
3920 if (p
->object
.flags
& UNINTERESTING
)
3921 return rewrite_one_ok
;
3922 if (!(p
->object
.flags
& TREESAME
))
3923 return rewrite_one_ok
;
3925 return rewrite_one_noparents
;
3926 if (!(p
= one_relevant_parent(revs
, p
->parents
)))
3927 return rewrite_one_ok
;
3932 static void merge_queue_into_list(struct prio_queue
*q
, struct commit_list
**list
)
3935 struct commit
*item
= prio_queue_peek(q
);
3936 struct commit_list
*p
= *list
;
3938 if (p
&& p
->item
->date
>= item
->date
)
3941 p
= commit_list_insert(item
, list
);
3942 list
= &p
->next
; /* skip newly added item */
3943 prio_queue_get(q
); /* pop item */
3948 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
3950 struct prio_queue queue
= { compare_commits_by_commit_date
};
3951 enum rewrite_result ret
= rewrite_one_1(revs
, pp
, &queue
);
3952 merge_queue_into_list(&queue
, &revs
->commits
);
3953 clear_prio_queue(&queue
);
3957 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
3958 rewrite_parent_fn_t rewrite_parent
)
3960 struct commit_list
**pp
= &commit
->parents
;
3962 struct commit_list
*parent
= *pp
;
3963 switch (rewrite_parent(revs
, &parent
->item
)) {
3964 case rewrite_one_ok
:
3966 case rewrite_one_noparents
:
3969 case rewrite_one_error
:
3974 remove_duplicate_parents(revs
, commit
);
3978 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
3981 const char *encoding
;
3982 const char *message
;
3983 struct strbuf buf
= STRBUF_INIT
;
3985 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
3988 /* Prepend "fake" headers as needed */
3989 if (opt
->grep_filter
.use_reflog_filter
) {
3990 strbuf_addstr(&buf
, "reflog ");
3991 get_reflog_message(&buf
, opt
->reflog_info
);
3992 strbuf_addch(&buf
, '\n');
3996 * We grep in the user's output encoding, under the assumption that it
3997 * is the encoding they are most likely to write their grep pattern
3998 * for. In addition, it means we will match the "notes" encoding below,
3999 * so we will not end up with a buffer that has two different encodings
4002 encoding
= get_log_output_encoding();
4003 message
= repo_logmsg_reencode(the_repository
, commit
, NULL
, encoding
);
4005 /* Copy the commit to temporary if we are using "fake" headers */
4007 strbuf_addstr(&buf
, message
);
4009 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
4010 const char *commit_headers
[] = { "author ", "committer ", NULL
};
4013 strbuf_addstr(&buf
, message
);
4015 apply_mailmap_to_header(&buf
, commit_headers
, opt
->mailmap
);
4018 /* Append "fake" message parts as needed */
4019 if (opt
->show_notes
) {
4021 strbuf_addstr(&buf
, message
);
4022 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
4026 * Find either in the original commit message, or in the temporary.
4027 * Note that we cast away the constness of "message" here. It is
4028 * const because it may come from the cached commit buffer. That's OK,
4029 * because we know that it is modifiable heap memory, and that while
4030 * grep_buffer may modify it for speed, it will restore any
4031 * changes before returning.
4034 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
4036 retval
= grep_buffer(&opt
->grep_filter
,
4037 (char *)message
, strlen(message
));
4038 strbuf_release(&buf
);
4039 repo_unuse_commit_buffer(the_repository
, commit
, message
);
4043 static inline int want_ancestry(const struct rev_info
*revs
)
4045 return (revs
->rewrite_parents
|| revs
->children
.name
);
4049 * Return a timestamp to be used for --since/--until comparisons for this
4050 * commit, based on the revision options.
4052 static timestamp_t
comparison_date(const struct rev_info
*revs
,
4053 struct commit
*commit
)
4055 return revs
->reflog_info
?
4056 get_reflog_timestamp(revs
->reflog_info
) :
4060 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
4062 if (commit
->object
.flags
& SHOWN
)
4063 return commit_ignore
;
4064 if (revs
->unpacked
&& has_object_pack(&commit
->object
.oid
))
4065 return commit_ignore
;
4066 if (revs
->no_kept_objects
) {
4067 if (has_object_kept_pack(&commit
->object
.oid
,
4068 revs
->keep_pack_cache_flags
))
4069 return commit_ignore
;
4071 if (commit
->object
.flags
& UNINTERESTING
)
4072 return commit_ignore
;
4073 if (revs
->line_level_traverse
&& !want_ancestry(revs
)) {
4075 * In case of line-level log with parent rewriting
4076 * prepare_revision_walk() already took care of all line-level
4077 * log filtering, and there is nothing left to do here.
4079 * If parent rewriting was not requested, then this is the
4080 * place to perform the line-level log filtering. Notably,
4081 * this check, though expensive, must come before the other,
4082 * cheaper filtering conditions, because the tracked line
4083 * ranges must be adjusted even when the commit will end up
4084 * being ignored based on other conditions.
4086 if (!line_log_process_ranges_arbitrary_commit(revs
, commit
))
4087 return commit_ignore
;
4089 if (revs
->min_age
!= -1 &&
4090 comparison_date(revs
, commit
) > revs
->min_age
)
4091 return commit_ignore
;
4092 if (revs
->max_age_as_filter
!= -1 &&
4093 comparison_date(revs
, commit
) < revs
->max_age_as_filter
)
4094 return commit_ignore
;
4095 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
4096 int n
= commit_list_count(commit
->parents
);
4097 if ((n
< revs
->min_parents
) ||
4098 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
4099 return commit_ignore
;
4101 if (!commit_match(commit
, revs
))
4102 return commit_ignore
;
4103 if (revs
->prune
&& revs
->dense
) {
4104 /* Commit without changes? */
4105 if (commit
->object
.flags
& TREESAME
) {
4107 struct commit_list
*p
;
4108 /* drop merges unless we want parenthood */
4109 if (!want_ancestry(revs
))
4110 return commit_ignore
;
4112 if (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
))
4116 * If we want ancestry, then need to keep any merges
4117 * between relevant commits to tie together topology.
4118 * For consistency with TREESAME and simplification
4119 * use "relevant" here rather than just INTERESTING,
4120 * to treat bottom commit(s) as part of the topology.
4122 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
4123 if (relevant_commit(p
->item
))
4126 return commit_ignore
;
4132 define_commit_slab(saved_parents
, struct commit_list
*);
4134 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
4137 * You may only call save_parents() once per commit (this is checked
4138 * for non-root commits).
4140 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
4142 struct commit_list
**pp
;
4144 if (!revs
->saved_parents_slab
) {
4145 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
4146 init_saved_parents(revs
->saved_parents_slab
);
4149 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
4152 * When walking with reflogs, we may visit the same commit
4153 * several times: once for each appearance in the reflog.
4155 * In this case, save_parents() will be called multiple times.
4156 * We want to keep only the first set of parents. We need to
4157 * store a sentinel value for an empty (i.e., NULL) parent
4158 * list to distinguish it from a not-yet-saved list, however.
4162 if (commit
->parents
)
4163 *pp
= copy_commit_list(commit
->parents
);
4165 *pp
= EMPTY_PARENT_LIST
;
4168 static void free_saved_parents(struct rev_info
*revs
)
4170 if (revs
->saved_parents_slab
)
4171 clear_saved_parents(revs
->saved_parents_slab
);
4174 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
4176 struct commit_list
*parents
;
4178 if (!revs
->saved_parents_slab
)
4179 return commit
->parents
;
4181 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
4182 if (parents
== EMPTY_PARENT_LIST
)
4187 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
4189 enum commit_action action
= get_commit_action(revs
, commit
);
4191 if (action
== commit_show
&&
4192 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
4194 * --full-diff on simplified parents is no good: it
4195 * will show spurious changes from the commits that
4196 * were elided. So we save the parents on the side
4197 * when --full-diff is in effect.
4199 if (revs
->full_diff
)
4200 save_parents(revs
, commit
);
4201 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
4202 return commit_error
;
4207 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
4209 if (revs
->track_first_time
) {
4211 revs
->track_first_time
= 0;
4213 struct commit_list
*p
;
4214 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
4215 if (p
->item
== NULL
|| /* first commit */
4216 oideq(&p
->item
->object
.oid
, &commit
->object
.oid
))
4218 revs
->linear
= p
!= NULL
;
4220 if (revs
->reverse
) {
4222 commit
->object
.flags
|= TRACK_LINEAR
;
4224 free_commit_list(revs
->previous_parents
);
4225 revs
->previous_parents
= copy_commit_list(commit
->parents
);
4228 static struct commit
*get_revision_1(struct rev_info
*revs
)
4231 struct commit
*commit
;
4233 if (revs
->reflog_info
)
4234 commit
= next_reflog_entry(revs
->reflog_info
);
4235 else if (revs
->topo_walk_info
)
4236 commit
= next_topo_commit(revs
);
4238 commit
= pop_commit(&revs
->commits
);
4243 if (revs
->reflog_info
)
4244 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
4247 * If we haven't done the list limiting, we need to look at
4248 * the parents here. We also need to do the date-based limiting
4249 * that we'd otherwise have done in limit_list().
4251 if (!revs
->limited
) {
4252 if (revs
->max_age
!= -1 &&
4253 comparison_date(revs
, commit
) < revs
->max_age
)
4256 if (revs
->reflog_info
)
4257 try_to_simplify_commit(revs
, commit
);
4258 else if (revs
->topo_walk_info
)
4259 expand_topo_walk(revs
, commit
);
4260 else if (process_parents(revs
, commit
, &revs
->commits
, NULL
) < 0) {
4261 if (!revs
->ignore_missing_links
)
4262 die("Failed to traverse parents of commit %s",
4263 oid_to_hex(&commit
->object
.oid
));
4267 switch (simplify_commit(revs
, commit
)) {
4271 die("Failed to simplify parents of commit %s",
4272 oid_to_hex(&commit
->object
.oid
));
4274 if (revs
->track_linear
)
4275 track_linear(revs
, commit
);
4282 * Return true for entries that have not yet been shown. (This is an
4283 * object_array_each_func_t.)
4285 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data UNUSED
)
4287 return !(entry
->item
->flags
& SHOWN
);
4291 * If array is on the verge of a realloc, garbage-collect any entries
4292 * that have already been shown to try to free up some space.
4294 static void gc_boundary(struct object_array
*array
)
4296 if (array
->nr
== array
->alloc
)
4297 object_array_filter(array
, entry_unshown
, NULL
);
4300 static void create_boundary_commit_list(struct rev_info
*revs
)
4304 struct object_array
*array
= &revs
->boundary_commits
;
4305 struct object_array_entry
*objects
= array
->objects
;
4308 * If revs->commits is non-NULL at this point, an error occurred in
4309 * get_revision_1(). Ignore the error and continue printing the
4310 * boundary commits anyway. (This is what the code has always
4313 free_commit_list(revs
->commits
);
4314 revs
->commits
= NULL
;
4317 * Put all of the actual boundary commits from revs->boundary_commits
4318 * into revs->commits
4320 for (i
= 0; i
< array
->nr
; i
++) {
4321 c
= (struct commit
*)(objects
[i
].item
);
4324 if (!(c
->object
.flags
& CHILD_SHOWN
))
4326 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
4328 c
->object
.flags
|= BOUNDARY
;
4329 commit_list_insert(c
, &revs
->commits
);
4333 * If revs->topo_order is set, sort the boundary commits
4334 * in topological order
4336 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
4339 static struct commit
*get_revision_internal(struct rev_info
*revs
)
4341 struct commit
*c
= NULL
;
4342 struct commit_list
*l
;
4344 if (revs
->boundary
== 2) {
4346 * All of the normal commits have already been returned,
4347 * and we are now returning boundary commits.
4348 * create_boundary_commit_list() has populated
4349 * revs->commits with the remaining commits to return.
4351 c
= pop_commit(&revs
->commits
);
4353 c
->object
.flags
|= SHOWN
;
4358 * If our max_count counter has reached zero, then we are done. We
4359 * don't simply return NULL because we still might need to show
4360 * boundary commits. But we want to avoid calling get_revision_1, which
4361 * might do a considerable amount of work finding the next commit only
4362 * for us to throw it away.
4364 * If it is non-zero, then either we don't have a max_count at all
4365 * (-1), or it is still counting, in which case we decrement.
4367 if (revs
->max_count
) {
4368 c
= get_revision_1(revs
);
4370 while (revs
->skip_count
> 0) {
4372 c
= get_revision_1(revs
);
4378 if (revs
->max_count
> 0)
4383 c
->object
.flags
|= SHOWN
;
4385 if (!revs
->boundary
)
4390 * get_revision_1() runs out the commits, and
4391 * we are done computing the boundaries.
4392 * switch to boundary commits output mode.
4397 * Update revs->commits to contain the list of
4400 create_boundary_commit_list(revs
);
4402 return get_revision_internal(revs
);
4406 * boundary commits are the commits that are parents of the
4407 * ones we got from get_revision_1() but they themselves are
4408 * not returned from get_revision_1(). Before returning
4409 * 'c', we need to mark its parents that they could be boundaries.
4412 for (l
= c
->parents
; l
; l
= l
->next
) {
4414 p
= &(l
->item
->object
);
4415 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
4417 p
->flags
|= CHILD_SHOWN
;
4418 gc_boundary(&revs
->boundary_commits
);
4419 add_object_array(p
, NULL
, &revs
->boundary_commits
);
4425 struct commit
*get_revision(struct rev_info
*revs
)
4428 struct commit_list
*reversed
;
4430 if (revs
->reverse
) {
4432 while ((c
= get_revision_internal(revs
)))
4433 commit_list_insert(c
, &reversed
);
4434 revs
->commits
= reversed
;
4436 revs
->reverse_output_stage
= 1;
4439 if (revs
->reverse_output_stage
) {
4440 c
= pop_commit(&revs
->commits
);
4441 if (revs
->track_linear
)
4442 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
4446 c
= get_revision_internal(revs
);
4447 if (c
&& revs
->graph
)
4448 graph_update(revs
->graph
, c
);
4450 free_saved_parents(revs
);
4451 free_commit_list(revs
->previous_parents
);
4452 revs
->previous_parents
= NULL
;
4457 const char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4459 if (commit
->object
.flags
& BOUNDARY
)
4461 else if (commit
->object
.flags
& UNINTERESTING
)
4463 else if (commit
->object
.flags
& PATCHSAME
)
4465 else if (!revs
|| revs
->left_right
) {
4466 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
4470 } else if (revs
->graph
)
4472 else if (revs
->cherry_mark
)
4477 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4479 const char *mark
= get_revision_mark(revs
, commit
);
4482 fputs(mark
, stdout
);