4 #include "environment.h"
7 #include "object-name.h"
8 #include "object-file.h"
9 #include "object-store.h"
15 #include "diff-merges.h"
18 #include "repository.h"
21 #include "reflog-walk.h"
22 #include "patch-ids.h"
25 #include "string-list.h"
28 #include "commit-slab.h"
30 #include "cache-tree.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"
48 volatile show_early_output_fn_t show_early_output
;
50 static const char *term_bad
;
51 static const char *term_good
;
53 implement_shared_commit_slab(revision_sources
, char *);
55 static inline int want_ancestry(const struct rev_info
*revs
);
57 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
59 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
60 for (const char *p
= name
; *p
&& *p
!= '\n'; p
++)
65 static void mark_blob_uninteresting(struct blob
*blob
)
69 if (blob
->object
.flags
& UNINTERESTING
)
71 blob
->object
.flags
|= UNINTERESTING
;
74 static void mark_tree_contents_uninteresting(struct repository
*r
,
77 struct tree_desc desc
;
78 struct name_entry entry
;
80 if (parse_tree_gently(tree
, 1) < 0)
83 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
84 while (tree_entry(&desc
, &entry
)) {
85 switch (object_type(entry
.mode
)) {
87 mark_tree_uninteresting(r
, lookup_tree(r
, &entry
.oid
));
90 mark_blob_uninteresting(lookup_blob(r
, &entry
.oid
));
93 /* Subproject commit - not in this repository */
99 * We don't care about the tree any more
100 * after it has been marked uninteresting.
102 free_tree_buffer(tree
);
105 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
)
113 if (obj
->flags
& UNINTERESTING
)
115 obj
->flags
|= UNINTERESTING
;
116 mark_tree_contents_uninteresting(r
, tree
);
119 struct path_and_oids_entry
{
120 struct hashmap_entry ent
;
125 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data UNUSED
,
126 const struct hashmap_entry
*eptr
,
127 const struct hashmap_entry
*entry_or_key
,
128 const void *keydata UNUSED
)
130 const struct path_and_oids_entry
*e1
, *e2
;
132 e1
= container_of(eptr
, const struct path_and_oids_entry
, ent
);
133 e2
= container_of(entry_or_key
, const struct path_and_oids_entry
, ent
);
135 return strcmp(e1
->path
, e2
->path
);
138 static void paths_and_oids_clear(struct hashmap
*map
)
140 struct hashmap_iter iter
;
141 struct path_and_oids_entry
*entry
;
143 hashmap_for_each_entry(map
, &iter
, entry
, ent
/* member name */) {
144 oidset_clear(&entry
->trees
);
148 hashmap_clear_and_free(map
, struct path_and_oids_entry
, ent
);
151 static void paths_and_oids_insert(struct hashmap
*map
,
153 const struct object_id
*oid
)
155 int hash
= strhash(path
);
156 struct path_and_oids_entry key
;
157 struct path_and_oids_entry
*entry
;
159 hashmap_entry_init(&key
.ent
, hash
);
161 /* use a shallow copy for the lookup */
162 key
.path
= (char *)path
;
163 oidset_init(&key
.trees
, 0);
165 entry
= hashmap_get_entry(map
, &key
, ent
, NULL
);
167 CALLOC_ARRAY(entry
, 1);
168 hashmap_entry_init(&entry
->ent
, hash
);
169 entry
->path
= xstrdup(key
.path
);
170 oidset_init(&entry
->trees
, 16);
171 hashmap_put(map
, &entry
->ent
);
174 oidset_insert(&entry
->trees
, oid
);
177 static void add_children_by_path(struct repository
*r
,
181 struct tree_desc desc
;
182 struct name_entry entry
;
187 if (parse_tree_gently(tree
, 1) < 0)
190 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
191 while (tree_entry(&desc
, &entry
)) {
192 switch (object_type(entry
.mode
)) {
194 paths_and_oids_insert(map
, entry
.path
, &entry
.oid
);
196 if (tree
->object
.flags
& UNINTERESTING
) {
197 struct tree
*child
= lookup_tree(r
, &entry
.oid
);
199 child
->object
.flags
|= UNINTERESTING
;
203 if (tree
->object
.flags
& UNINTERESTING
) {
204 struct blob
*child
= lookup_blob(r
, &entry
.oid
);
206 child
->object
.flags
|= UNINTERESTING
;
210 /* Subproject commit - not in this repository */
215 free_tree_buffer(tree
);
218 void mark_trees_uninteresting_sparse(struct repository
*r
,
219 struct oidset
*trees
)
221 unsigned has_interesting
= 0, has_uninteresting
= 0;
222 struct hashmap map
= HASHMAP_INIT(path_and_oids_cmp
, NULL
);
223 struct hashmap_iter map_iter
;
224 struct path_and_oids_entry
*entry
;
225 struct object_id
*oid
;
226 struct oidset_iter iter
;
228 oidset_iter_init(trees
, &iter
);
229 while ((!has_interesting
|| !has_uninteresting
) &&
230 (oid
= oidset_iter_next(&iter
))) {
231 struct tree
*tree
= lookup_tree(r
, oid
);
236 if (tree
->object
.flags
& UNINTERESTING
)
237 has_uninteresting
= 1;
242 /* Do not walk unless we have both types of trees. */
243 if (!has_uninteresting
|| !has_interesting
)
246 oidset_iter_init(trees
, &iter
);
247 while ((oid
= oidset_iter_next(&iter
))) {
248 struct tree
*tree
= lookup_tree(r
, oid
);
249 add_children_by_path(r
, tree
, &map
);
252 hashmap_for_each_entry(&map
, &map_iter
, entry
, ent
/* member name */)
253 mark_trees_uninteresting_sparse(r
, &entry
->trees
);
255 paths_and_oids_clear(&map
);
258 struct commit_stack
{
259 struct commit
**items
;
262 #define COMMIT_STACK_INIT { 0 }
264 static void commit_stack_push(struct commit_stack
*stack
, struct commit
*commit
)
266 ALLOC_GROW(stack
->items
, stack
->nr
+ 1, stack
->alloc
);
267 stack
->items
[stack
->nr
++] = commit
;
270 static struct commit
*commit_stack_pop(struct commit_stack
*stack
)
272 return stack
->nr
? stack
->items
[--stack
->nr
] : NULL
;
275 static void commit_stack_clear(struct commit_stack
*stack
)
277 FREE_AND_NULL(stack
->items
);
278 stack
->nr
= stack
->alloc
= 0;
281 static void mark_one_parent_uninteresting(struct rev_info
*revs
, struct commit
*commit
,
282 struct commit_stack
*pending
)
284 struct commit_list
*l
;
286 if (commit
->object
.flags
& UNINTERESTING
)
288 commit
->object
.flags
|= UNINTERESTING
;
291 * Normally we haven't parsed the parent
292 * yet, so we won't have a parent of a parent
293 * here. However, it may turn out that we've
294 * reached this commit some other way (where it
295 * wasn't uninteresting), in which case we need
296 * to mark its parents recursively too..
298 for (l
= commit
->parents
; l
; l
= l
->next
) {
299 commit_stack_push(pending
, l
->item
);
300 if (revs
&& revs
->exclude_first_parent_only
)
305 void mark_parents_uninteresting(struct rev_info
*revs
, struct commit
*commit
)
307 struct commit_stack pending
= COMMIT_STACK_INIT
;
308 struct commit_list
*l
;
310 for (l
= commit
->parents
; l
; l
= l
->next
) {
311 mark_one_parent_uninteresting(revs
, l
->item
, &pending
);
312 if (revs
&& revs
->exclude_first_parent_only
)
316 while (pending
.nr
> 0)
317 mark_one_parent_uninteresting(revs
, commit_stack_pop(&pending
),
320 commit_stack_clear(&pending
);
323 static void add_pending_object_with_path(struct rev_info
*revs
,
325 const char *name
, unsigned mode
,
328 struct interpret_branch_name_options options
= { 0 };
331 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
333 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
334 struct strbuf buf
= STRBUF_INIT
;
335 size_t namelen
= strlen(name
);
336 int len
= repo_interpret_branch_name(the_repository
, name
,
337 namelen
, &buf
, &options
);
339 if (0 < len
&& len
< namelen
&& buf
.len
)
340 strbuf_addstr(&buf
, name
+ len
);
341 add_reflog_for_walk(revs
->reflog_info
,
342 (struct commit
*)obj
,
343 buf
.buf
[0] ? buf
.buf
: name
);
344 strbuf_release(&buf
);
345 return; /* do not add the commit itself */
347 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
350 static void add_pending_object_with_mode(struct rev_info
*revs
,
352 const char *name
, unsigned mode
)
354 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
357 void add_pending_object(struct rev_info
*revs
,
358 struct object
*obj
, const char *name
)
360 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
363 void add_head_to_pending(struct rev_info
*revs
)
365 struct object_id oid
;
367 if (repo_get_oid(the_repository
, "HEAD", &oid
))
369 obj
= parse_object(revs
->repo
, &oid
);
372 add_pending_object(revs
, obj
, "HEAD");
375 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
376 const struct object_id
*oid
,
379 struct object
*object
;
381 object
= parse_object_with_flags(revs
->repo
, oid
,
382 revs
->verify_objects
? 0 :
383 PARSE_OBJECT_SKIP_HASH_CHECK
);
386 if (revs
->ignore_missing
)
388 if (revs
->exclude_promisor_objects
&& is_promisor_object(oid
))
390 die("bad object %s", name
);
392 object
->flags
|= flags
;
396 void add_pending_oid(struct rev_info
*revs
, const char *name
,
397 const struct object_id
*oid
, unsigned int flags
)
399 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
400 add_pending_object(revs
, object
, name
);
403 static struct commit
*handle_commit(struct rev_info
*revs
,
404 struct object_array_entry
*entry
)
406 struct object
*object
= entry
->item
;
407 const char *name
= entry
->name
;
408 const char *path
= entry
->path
;
409 unsigned int mode
= entry
->mode
;
410 unsigned long flags
= object
->flags
;
413 * Tag object? Look what it points to..
415 while (object
->type
== OBJ_TAG
) {
416 struct tag
*tag
= (struct tag
*) object
;
417 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
418 add_pending_object(revs
, object
, tag
->tag
);
419 object
= parse_object(revs
->repo
, get_tagged_oid(tag
));
421 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
423 if (revs
->exclude_promisor_objects
&&
424 is_promisor_object(&tag
->tagged
->oid
))
426 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
428 object
->flags
|= flags
;
430 * We'll handle the tagged object by looping or dropping
431 * through to the non-tag handlers below. Do not
432 * propagate path data from the tag's pending entry.
439 * Commit object? Just return it, we'll do all the complex
442 if (object
->type
== OBJ_COMMIT
) {
443 struct commit
*commit
= (struct commit
*)object
;
445 if (repo_parse_commit(revs
->repo
, commit
) < 0)
446 die("unable to parse commit %s", name
);
447 if (flags
& UNINTERESTING
) {
448 mark_parents_uninteresting(revs
, commit
);
450 if (!revs
->topo_order
|| !generation_numbers_enabled(the_repository
))
454 char **slot
= revision_sources_at(revs
->sources
, commit
);
457 *slot
= xstrdup(name
);
463 * Tree object? Either mark it uninteresting, or add it
464 * to the list of objects to look at later..
466 if (object
->type
== OBJ_TREE
) {
467 struct tree
*tree
= (struct tree
*)object
;
468 if (!revs
->tree_objects
)
470 if (flags
& UNINTERESTING
) {
471 mark_tree_contents_uninteresting(revs
->repo
, tree
);
474 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
479 * Blob object? You know the drill by now..
481 if (object
->type
== OBJ_BLOB
) {
482 if (!revs
->blob_objects
)
484 if (flags
& UNINTERESTING
)
486 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
489 die("%s is unknown object", name
);
492 static int everybody_uninteresting(struct commit_list
*orig
,
493 struct commit
**interesting_cache
)
495 struct commit_list
*list
= orig
;
497 if (*interesting_cache
) {
498 struct commit
*commit
= *interesting_cache
;
499 if (!(commit
->object
.flags
& UNINTERESTING
))
504 struct commit
*commit
= list
->item
;
506 if (commit
->object
.flags
& UNINTERESTING
)
509 *interesting_cache
= commit
;
516 * A definition of "relevant" commit that we can use to simplify limited graphs
517 * by eliminating side branches.
519 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
520 * in our list), or that is a specified BOTTOM commit. Then after computing
521 * a limited list, during processing we can generally ignore boundary merges
522 * coming from outside the graph, (ie from irrelevant parents), and treat
523 * those merges as if they were single-parent. TREESAME is defined to consider
524 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
525 * we don't care if we were !TREESAME to non-graph parents.
527 * Treating bottom commits as relevant ensures that a limited graph's
528 * connection to the actual bottom commit is not viewed as a side branch, but
529 * treated as part of the graph. For example:
531 * ....Z...A---X---o---o---B
535 * When computing "A..B", the A-X connection is at least as important as
536 * Y-X, despite A being flagged UNINTERESTING.
538 * And when computing --ancestry-path "A..B", the A-X connection is more
539 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
541 static inline int relevant_commit(struct commit
*commit
)
543 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
547 * Return a single relevant commit from a parent list. If we are a TREESAME
548 * commit, and this selects one of our parents, then we can safely simplify to
551 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
552 struct commit_list
*orig
)
554 struct commit_list
*list
= orig
;
555 struct commit
*relevant
= NULL
;
561 * For 1-parent commits, or if first-parent-only, then return that
562 * first parent (even if not "relevant" by the above definition).
563 * TREESAME will have been set purely on that parent.
565 if (revs
->first_parent_only
|| !orig
->next
)
569 * For multi-parent commits, identify a sole relevant parent, if any.
570 * If we have only one relevant parent, then TREESAME will be set purely
571 * with regard to that parent, and we can simplify accordingly.
573 * If we have more than one relevant parent, or no relevant parents
574 * (and multiple irrelevant ones), then we can't select a parent here
578 struct commit
*commit
= list
->item
;
580 if (relevant_commit(commit
)) {
590 * The goal is to get REV_TREE_NEW as the result only if the
591 * diff consists of all '+' (and no other changes), REV_TREE_OLD
592 * if the whole diff is removal of old data, and otherwise
593 * REV_TREE_DIFFERENT (of course if the trees are the same we
594 * want REV_TREE_SAME).
596 * The only time we care about the distinction is when
597 * remove_empty_trees is in effect, in which case we care only about
598 * whether the whole change is REV_TREE_NEW, or if there's another type
599 * of change. Which means we can stop the diff early in either of these
602 * 1. We're not using remove_empty_trees at all.
604 * 2. We saw anything except REV_TREE_NEW.
606 #define REV_TREE_SAME 0
607 #define REV_TREE_NEW 1 /* Only new files */
608 #define REV_TREE_OLD 2 /* Only files removed */
609 #define REV_TREE_DIFFERENT 3 /* Mixed changes */
610 static int tree_difference
= REV_TREE_SAME
;
612 static void file_add_remove(struct diff_options
*options
,
614 unsigned mode UNUSED
,
615 const struct object_id
*oid UNUSED
,
616 int oid_valid UNUSED
,
617 const char *fullpath UNUSED
,
618 unsigned dirty_submodule UNUSED
)
620 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
621 struct rev_info
*revs
= options
->change_fn_data
;
623 tree_difference
|= diff
;
624 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
625 options
->flags
.has_changes
= 1;
628 static void file_change(struct diff_options
*options
,
629 unsigned old_mode UNUSED
,
630 unsigned new_mode UNUSED
,
631 const struct object_id
*old_oid UNUSED
,
632 const struct object_id
*new_oid UNUSED
,
633 int old_oid_valid UNUSED
,
634 int new_oid_valid UNUSED
,
635 const char *fullpath UNUSED
,
636 unsigned old_dirty_submodule UNUSED
,
637 unsigned new_dirty_submodule UNUSED
)
639 tree_difference
= REV_TREE_DIFFERENT
;
640 options
->flags
.has_changes
= 1;
643 static int bloom_filter_atexit_registered
;
644 static unsigned int count_bloom_filter_maybe
;
645 static unsigned int count_bloom_filter_definitely_not
;
646 static unsigned int count_bloom_filter_false_positive
;
647 static unsigned int count_bloom_filter_not_present
;
649 static void trace2_bloom_filter_statistics_atexit(void)
651 struct json_writer jw
= JSON_WRITER_INIT
;
653 jw_object_begin(&jw
, 0);
654 jw_object_intmax(&jw
, "filter_not_present", count_bloom_filter_not_present
);
655 jw_object_intmax(&jw
, "maybe", count_bloom_filter_maybe
);
656 jw_object_intmax(&jw
, "definitely_not", count_bloom_filter_definitely_not
);
657 jw_object_intmax(&jw
, "false_positive", count_bloom_filter_false_positive
);
660 trace2_data_json("bloom", the_repository
, "statistics", &jw
);
665 static int forbid_bloom_filters(struct pathspec
*spec
)
667 if (spec
->has_wildcard
)
671 if (spec
->magic
& ~PATHSPEC_LITERAL
)
673 if (spec
->nr
&& (spec
->items
[0].magic
& ~PATHSPEC_LITERAL
))
679 static void prepare_to_use_bloom_filter(struct rev_info
*revs
)
681 struct pathspec_item
*pi
;
682 char *path_alloc
= NULL
;
683 const char *path
, *p
;
685 int path_component_nr
= 1;
690 if (forbid_bloom_filters(&revs
->prune_data
))
693 repo_parse_commit(revs
->repo
, revs
->commits
->item
);
695 revs
->bloom_filter_settings
= get_bloom_filter_settings(revs
->repo
);
696 if (!revs
->bloom_filter_settings
)
699 if (!revs
->pruning
.pathspec
.nr
)
702 pi
= &revs
->pruning
.pathspec
.items
[0];
704 /* remove single trailing slash from path, if needed */
705 if (pi
->len
> 0 && pi
->match
[pi
->len
- 1] == '/') {
706 path_alloc
= xmemdupz(pi
->match
, pi
->len
- 1);
713 revs
->bloom_filter_settings
= NULL
;
721 * At this point, the path is normalized to use Unix-style
722 * path separators. This is required due to how the
723 * changed-path Bloom filters store the paths.
730 revs
->bloom_keys_nr
= path_component_nr
;
731 ALLOC_ARRAY(revs
->bloom_keys
, revs
->bloom_keys_nr
);
733 fill_bloom_key(path
, len
, &revs
->bloom_keys
[0],
734 revs
->bloom_filter_settings
);
735 path_component_nr
= 1;
740 fill_bloom_key(path
, p
- path
,
741 &revs
->bloom_keys
[path_component_nr
++],
742 revs
->bloom_filter_settings
);
746 if (trace2_is_enabled() && !bloom_filter_atexit_registered
) {
747 atexit(trace2_bloom_filter_statistics_atexit
);
748 bloom_filter_atexit_registered
= 1;
754 static int check_maybe_different_in_bloom_filter(struct rev_info
*revs
,
755 struct commit
*commit
)
757 struct bloom_filter
*filter
;
760 if (!revs
->repo
->objects
->commit_graph
)
763 if (commit_graph_generation(commit
) == GENERATION_NUMBER_INFINITY
)
766 filter
= get_bloom_filter(revs
->repo
, commit
);
769 count_bloom_filter_not_present
++;
773 for (j
= 0; result
&& j
< revs
->bloom_keys_nr
; j
++) {
774 result
= bloom_filter_contains(filter
,
775 &revs
->bloom_keys
[j
],
776 revs
->bloom_filter_settings
);
780 count_bloom_filter_maybe
++;
782 count_bloom_filter_definitely_not
++;
787 static int rev_compare_tree(struct rev_info
*revs
,
788 struct commit
*parent
, struct commit
*commit
, int nth_parent
)
790 struct tree
*t1
= repo_get_commit_tree(the_repository
, parent
);
791 struct tree
*t2
= repo_get_commit_tree(the_repository
, commit
);
799 if (revs
->simplify_by_decoration
) {
801 * If we are simplifying by decoration, then the commit
802 * is worth showing if it has a tag pointing at it.
804 if (get_name_decoration(&commit
->object
))
805 return REV_TREE_DIFFERENT
;
807 * A commit that is not pointed by a tag is uninteresting
808 * if we are not limited by path. This means that you will
809 * see the usual "commits that touch the paths" plus any
810 * tagged commit by specifying both --simplify-by-decoration
813 if (!revs
->prune_data
.nr
)
814 return REV_TREE_SAME
;
817 if (revs
->bloom_keys_nr
&& !nth_parent
) {
818 bloom_ret
= check_maybe_different_in_bloom_filter(revs
, commit
);
821 return REV_TREE_SAME
;
824 tree_difference
= REV_TREE_SAME
;
825 revs
->pruning
.flags
.has_changes
= 0;
826 diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "", &revs
->pruning
);
829 if (bloom_ret
== 1 && tree_difference
== REV_TREE_SAME
)
830 count_bloom_filter_false_positive
++;
832 return tree_difference
;
835 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
837 struct tree
*t1
= repo_get_commit_tree(the_repository
, commit
);
842 tree_difference
= REV_TREE_SAME
;
843 revs
->pruning
.flags
.has_changes
= 0;
844 diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
846 return tree_difference
== REV_TREE_SAME
;
849 struct treesame_state
{
850 unsigned int nparents
;
851 unsigned char treesame
[FLEX_ARRAY
];
854 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
856 unsigned n
= commit_list_count(commit
->parents
);
857 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
859 add_decoration(&revs
->treesame
, &commit
->object
, st
);
864 * Must be called immediately after removing the nth_parent from a commit's
865 * parent list, if we are maintaining the per-parent treesame[] decoration.
866 * This does not recalculate the master TREESAME flag - update_treesame()
867 * should be called to update it after a sequence of treesame[] modifications
868 * that may have affected it.
870 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
872 struct treesame_state
*st
;
875 if (!commit
->parents
) {
877 * Have just removed the only parent from a non-merge.
878 * Different handling, as we lack decoration.
881 die("compact_treesame %u", nth_parent
);
882 old_same
= !!(commit
->object
.flags
& TREESAME
);
883 if (rev_same_tree_as_empty(revs
, commit
))
884 commit
->object
.flags
|= TREESAME
;
886 commit
->object
.flags
&= ~TREESAME
;
890 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
891 if (!st
|| nth_parent
>= st
->nparents
)
892 die("compact_treesame %u", nth_parent
);
894 old_same
= st
->treesame
[nth_parent
];
895 memmove(st
->treesame
+ nth_parent
,
896 st
->treesame
+ nth_parent
+ 1,
897 st
->nparents
- nth_parent
- 1);
900 * If we've just become a non-merge commit, update TREESAME
901 * immediately, and remove the no-longer-needed decoration.
902 * If still a merge, defer update until update_treesame().
904 if (--st
->nparents
== 1) {
905 if (commit
->parents
->next
)
906 die("compact_treesame parents mismatch");
907 if (st
->treesame
[0] && revs
->dense
)
908 commit
->object
.flags
|= TREESAME
;
910 commit
->object
.flags
&= ~TREESAME
;
911 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
917 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
919 if (commit
->parents
&& commit
->parents
->next
) {
921 struct treesame_state
*st
;
922 struct commit_list
*p
;
923 unsigned relevant_parents
;
924 unsigned relevant_change
, irrelevant_change
;
926 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
928 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
929 relevant_parents
= 0;
930 relevant_change
= irrelevant_change
= 0;
931 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
932 if (relevant_commit(p
->item
)) {
933 relevant_change
|= !st
->treesame
[n
];
936 irrelevant_change
|= !st
->treesame
[n
];
938 if (relevant_parents
? relevant_change
: irrelevant_change
)
939 commit
->object
.flags
&= ~TREESAME
;
941 commit
->object
.flags
|= TREESAME
;
944 return commit
->object
.flags
& TREESAME
;
947 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
950 * TREESAME is irrelevant unless prune && dense;
951 * if simplify_history is set, we can't have a mixture of TREESAME and
952 * !TREESAME INTERESTING parents (and we don't have treesame[]
953 * decoration anyway);
954 * if first_parent_only is set, then the TREESAME flag is locked
955 * against the first parent (and again we lack treesame[] decoration).
957 return revs
->prune
&& revs
->dense
&&
958 !revs
->simplify_history
&&
959 !revs
->first_parent_only
;
962 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
964 struct commit_list
**pp
, *parent
;
965 struct treesame_state
*ts
= NULL
;
966 int relevant_change
= 0, irrelevant_change
= 0;
967 int relevant_parents
, nth_parent
;
970 * If we don't do pruning, everything is interesting
975 if (!repo_get_commit_tree(the_repository
, commit
))
978 if (!commit
->parents
) {
979 if (rev_same_tree_as_empty(revs
, commit
))
980 commit
->object
.flags
|= TREESAME
;
985 * Normal non-merge commit? If we don't want to make the
986 * history dense, we consider it always to be a change..
988 if (!revs
->dense
&& !commit
->parents
->next
)
991 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
992 (parent
= *pp
) != NULL
;
993 pp
= &parent
->next
, nth_parent
++) {
994 struct commit
*p
= parent
->item
;
995 if (relevant_commit(p
))
998 if (nth_parent
== 1) {
1000 * This our second loop iteration - so we now know
1001 * we're dealing with a merge.
1003 * Do not compare with later parents when we care only about
1004 * the first parent chain, in order to avoid derailing the
1005 * traversal to follow a side branch that brought everything
1006 * in the path we are limited to by the pathspec.
1008 if (revs
->first_parent_only
)
1011 * If this will remain a potentially-simplifiable
1012 * merge, remember per-parent treesame if needed.
1013 * Initialise the array with the comparison from our
1016 if (revs
->treesame
.name
&&
1017 !revs
->simplify_history
&&
1018 !(commit
->object
.flags
& UNINTERESTING
)) {
1019 ts
= initialise_treesame(revs
, commit
);
1020 if (!(irrelevant_change
|| relevant_change
))
1021 ts
->treesame
[0] = 1;
1024 if (repo_parse_commit(revs
->repo
, p
) < 0)
1025 die("cannot simplify commit %s (because of %s)",
1026 oid_to_hex(&commit
->object
.oid
),
1027 oid_to_hex(&p
->object
.oid
));
1028 switch (rev_compare_tree(revs
, p
, commit
, nth_parent
)) {
1030 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
1031 /* Even if a merge with an uninteresting
1032 * side branch brought the entire change
1033 * we are interested in, we do not want
1034 * to lose the other branches of this
1035 * merge, so we just keep going.
1038 ts
->treesame
[nth_parent
] = 1;
1041 parent
->next
= NULL
;
1042 commit
->parents
= parent
;
1045 * A merge commit is a "diversion" if it is not
1046 * TREESAME to its first parent but is TREESAME
1047 * to a later parent. In the simplified history,
1048 * we "divert" the history walk to the later
1049 * parent. These commits are shown when "show_pulls"
1050 * is enabled, so do not mark the object as
1053 if (!revs
->show_pulls
|| !nth_parent
)
1054 commit
->object
.flags
|= TREESAME
;
1059 if (revs
->remove_empty_trees
&&
1060 rev_same_tree_as_empty(revs
, p
)) {
1061 /* We are adding all the specified
1062 * paths from this parent, so the
1063 * history beyond this parent is not
1064 * interesting. Remove its parents
1065 * (they are grandparents for us).
1066 * IOW, we pretend this parent is a
1069 if (repo_parse_commit(revs
->repo
, p
) < 0)
1070 die("cannot simplify commit %s (invalid %s)",
1071 oid_to_hex(&commit
->object
.oid
),
1072 oid_to_hex(&p
->object
.oid
));
1077 case REV_TREE_DIFFERENT
:
1078 if (relevant_commit(p
))
1079 relevant_change
= 1;
1081 irrelevant_change
= 1;
1084 commit
->object
.flags
|= PULL_MERGE
;
1088 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
1092 * TREESAME is straightforward for single-parent commits. For merge
1093 * commits, it is most useful to define it so that "irrelevant"
1094 * parents cannot make us !TREESAME - if we have any relevant
1095 * parents, then we only consider TREESAMEness with respect to them,
1096 * allowing irrelevant merges from uninteresting branches to be
1097 * simplified away. Only if we have only irrelevant parents do we
1098 * base TREESAME on them. Note that this logic is replicated in
1099 * update_treesame, which should be kept in sync.
1101 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
1102 commit
->object
.flags
|= TREESAME
;
1105 static int process_parents(struct rev_info
*revs
, struct commit
*commit
,
1106 struct commit_list
**list
, struct prio_queue
*queue
)
1108 struct commit_list
*parent
= commit
->parents
;
1109 unsigned pass_flags
;
1111 if (commit
->object
.flags
& ADDED
)
1113 commit
->object
.flags
|= ADDED
;
1115 if (revs
->include_check
&&
1116 !revs
->include_check(commit
, revs
->include_check_data
))
1120 * If the commit is uninteresting, don't try to
1121 * prune parents - we want the maximal uninteresting
1124 * Normally we haven't parsed the parent
1125 * yet, so we won't have a parent of a parent
1126 * here. However, it may turn out that we've
1127 * reached this commit some other way (where it
1128 * wasn't uninteresting), in which case we need
1129 * to mark its parents recursively too..
1131 if (commit
->object
.flags
& UNINTERESTING
) {
1133 struct commit
*p
= parent
->item
;
1134 parent
= parent
->next
;
1136 p
->object
.flags
|= UNINTERESTING
;
1137 if (repo_parse_commit_gently(revs
->repo
, p
, 1) < 0)
1140 mark_parents_uninteresting(revs
, p
);
1141 if (p
->object
.flags
& SEEN
)
1143 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1145 commit_list_insert_by_date(p
, list
);
1147 prio_queue_put(queue
, p
);
1148 if (revs
->exclude_first_parent_only
)
1155 * Ok, the commit wasn't uninteresting. Try to
1156 * simplify the commit history and find the parent
1157 * that has no differences in the path set if one exists.
1159 try_to_simplify_commit(revs
, commit
);
1164 pass_flags
= (commit
->object
.flags
& (SYMMETRIC_LEFT
| ANCESTRY_PATH
));
1166 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
1167 struct commit
*p
= parent
->item
;
1168 int gently
= revs
->ignore_missing_links
||
1169 revs
->exclude_promisor_objects
;
1170 if (repo_parse_commit_gently(revs
->repo
, p
, gently
) < 0) {
1171 if (revs
->exclude_promisor_objects
&&
1172 is_promisor_object(&p
->object
.oid
)) {
1173 if (revs
->first_parent_only
)
1179 if (revs
->sources
) {
1180 char **slot
= revision_sources_at(revs
->sources
, p
);
1183 *slot
= *revision_sources_at(revs
->sources
, commit
);
1185 p
->object
.flags
|= pass_flags
;
1186 if (!(p
->object
.flags
& SEEN
)) {
1187 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1189 commit_list_insert_by_date(p
, list
);
1191 prio_queue_put(queue
, p
);
1193 if (revs
->first_parent_only
)
1199 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
1201 struct commit_list
*p
;
1202 int left_count
= 0, right_count
= 0;
1204 struct patch_ids ids
;
1205 unsigned cherry_flag
;
1207 /* First count the commits on the left and on the right */
1208 for (p
= list
; p
; p
= p
->next
) {
1209 struct commit
*commit
= p
->item
;
1210 unsigned flags
= commit
->object
.flags
;
1211 if (flags
& BOUNDARY
)
1213 else if (flags
& SYMMETRIC_LEFT
)
1219 if (!left_count
|| !right_count
)
1222 left_first
= left_count
< right_count
;
1223 init_patch_ids(revs
->repo
, &ids
);
1224 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
1226 /* Compute patch-ids for one side */
1227 for (p
= list
; p
; p
= p
->next
) {
1228 struct commit
*commit
= p
->item
;
1229 unsigned flags
= commit
->object
.flags
;
1231 if (flags
& BOUNDARY
)
1234 * If we have fewer left, left_first is set and we omit
1235 * commits on the right branch in this loop. If we have
1236 * fewer right, we skip the left ones.
1238 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
1240 add_commit_patch_id(commit
, &ids
);
1243 /* either cherry_mark or cherry_pick are true */
1244 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
1246 /* Check the other side */
1247 for (p
= list
; p
; p
= p
->next
) {
1248 struct commit
*commit
= p
->item
;
1249 struct patch_id
*id
;
1250 unsigned flags
= commit
->object
.flags
;
1252 if (flags
& BOUNDARY
)
1255 * If we have fewer left, left_first is set and we omit
1256 * commits on the left branch in this loop.
1258 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
1262 * Have we seen the same patch id?
1264 id
= patch_id_iter_first(commit
, &ids
);
1268 commit
->object
.flags
|= cherry_flag
;
1270 id
->commit
->object
.flags
|= cherry_flag
;
1271 } while ((id
= patch_id_iter_next(id
, &ids
)));
1274 free_patch_ids(&ids
);
1277 /* How many extra uninteresting commits we want to see.. */
1280 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
1281 struct commit
**interesting_cache
)
1284 * No source list at all? We're definitely done..
1290 * Does the destination list contain entries with a date
1291 * before the source list? Definitely _not_ done.
1293 if (date
<= src
->item
->date
)
1297 * Does the source list still have interesting commits in
1298 * it? Definitely not done..
1300 if (!everybody_uninteresting(src
, interesting_cache
))
1303 /* Ok, we're closing in.. */
1308 * "rev-list --ancestry-path=C_0 [--ancestry-path=C_1 ...] A..B"
1309 * computes commits that are ancestors of B but not ancestors of A but
1310 * further limits the result to those that have any of C in their
1311 * ancestry path (i.e. are either ancestors of any of C, descendants
1312 * of any of C, or are any of C). If --ancestry-path is specified with
1313 * no commit, we use all bottom commits for C.
1315 * Before this function is called, ancestors of C will have already
1316 * been marked with ANCESTRY_PATH previously.
1318 * This takes the list of bottom commits and the result of "A..B"
1319 * without --ancestry-path, and limits the latter further to the ones
1320 * that have any of C in their ancestry path. Since the ancestors of C
1321 * have already been marked (a prerequisite of this function), we just
1322 * need to mark the descendants, then exclude any commit that does not
1323 * have any of these marks.
1325 static void limit_to_ancestry(struct commit_list
*bottoms
, struct commit_list
*list
)
1327 struct commit_list
*p
;
1328 struct commit_list
*rlist
= NULL
;
1332 * Reverse the list so that it will be likely that we would
1333 * process parents before children.
1335 for (p
= list
; p
; p
= p
->next
)
1336 commit_list_insert(p
->item
, &rlist
);
1338 for (p
= bottoms
; p
; p
= p
->next
)
1339 p
->item
->object
.flags
|= TMP_MARK
;
1342 * Mark the ones that can reach bottom commits in "list",
1343 * in a bottom-up fashion.
1347 for (p
= rlist
; p
; p
= p
->next
) {
1348 struct commit
*c
= p
->item
;
1349 struct commit_list
*parents
;
1350 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
1352 for (parents
= c
->parents
;
1354 parents
= parents
->next
) {
1355 if (!(parents
->item
->object
.flags
& TMP_MARK
))
1357 c
->object
.flags
|= TMP_MARK
;
1362 } while (made_progress
);
1365 * NEEDSWORK: decide if we want to remove parents that are
1366 * not marked with TMP_MARK from commit->parents for commits
1367 * in the resulting list. We may not want to do that, though.
1371 * The ones that are not marked with either TMP_MARK or
1372 * ANCESTRY_PATH are uninteresting
1374 for (p
= list
; p
; p
= p
->next
) {
1375 struct commit
*c
= p
->item
;
1376 if (c
->object
.flags
& (TMP_MARK
| ANCESTRY_PATH
))
1378 c
->object
.flags
|= UNINTERESTING
;
1381 /* We are done with TMP_MARK and ANCESTRY_PATH */
1382 for (p
= list
; p
; p
= p
->next
)
1383 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1384 for (p
= bottoms
; p
; p
= p
->next
)
1385 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1386 free_commit_list(rlist
);
1390 * Before walking the history, add the set of "negative" refs the
1391 * caller has asked to exclude to the bottom list.
1393 * This is used to compute "rev-list --ancestry-path A..B", as we need
1394 * to filter the result of "A..B" further to the ones that can actually
1397 static void collect_bottom_commits(struct commit_list
*list
,
1398 struct commit_list
**bottom
)
1400 struct commit_list
*elem
;
1401 for (elem
= list
; elem
; elem
= elem
->next
)
1402 if (elem
->item
->object
.flags
& BOTTOM
)
1403 commit_list_insert(elem
->item
, bottom
);
1406 /* Assumes either left_only or right_only is set */
1407 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1409 struct commit_list
*p
;
1411 for (p
= list
; p
; p
= p
->next
) {
1412 struct commit
*commit
= p
->item
;
1414 if (revs
->right_only
) {
1415 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1416 commit
->object
.flags
|= SHOWN
;
1417 } else /* revs->left_only is set */
1418 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1419 commit
->object
.flags
|= SHOWN
;
1423 static int limit_list(struct rev_info
*revs
)
1426 timestamp_t date
= TIME_MAX
;
1427 struct commit_list
*original_list
= revs
->commits
;
1428 struct commit_list
*newlist
= NULL
;
1429 struct commit_list
**p
= &newlist
;
1430 struct commit
*interesting_cache
= NULL
;
1432 if (revs
->ancestry_path_implicit_bottoms
) {
1433 collect_bottom_commits(original_list
,
1434 &revs
->ancestry_path_bottoms
);
1435 if (!revs
->ancestry_path_bottoms
)
1436 die("--ancestry-path given but there are no bottom commits");
1439 while (original_list
) {
1440 struct commit
*commit
= pop_commit(&original_list
);
1441 struct object
*obj
= &commit
->object
;
1442 show_early_output_fn_t show
;
1444 if (commit
== interesting_cache
)
1445 interesting_cache
= NULL
;
1447 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1448 obj
->flags
|= UNINTERESTING
;
1449 if (process_parents(revs
, commit
, &original_list
, NULL
) < 0)
1451 if (obj
->flags
& UNINTERESTING
) {
1452 mark_parents_uninteresting(revs
, commit
);
1453 slop
= still_interesting(original_list
, date
, slop
, &interesting_cache
);
1458 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
) &&
1459 !revs
->line_level_traverse
)
1461 if (revs
->max_age_as_filter
!= -1 &&
1462 (commit
->date
< revs
->max_age_as_filter
) && !revs
->line_level_traverse
)
1464 date
= commit
->date
;
1465 p
= &commit_list_insert(commit
, p
)->next
;
1467 show
= show_early_output
;
1471 show(revs
, newlist
);
1472 show_early_output
= NULL
;
1474 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1475 cherry_pick_list(newlist
, revs
);
1477 if (revs
->left_only
|| revs
->right_only
)
1478 limit_left_right(newlist
, revs
);
1480 if (revs
->ancestry_path
)
1481 limit_to_ancestry(revs
->ancestry_path_bottoms
, newlist
);
1484 * Check if any commits have become TREESAME by some of their parents
1485 * becoming UNINTERESTING.
1487 if (limiting_can_increase_treesame(revs
)) {
1488 struct commit_list
*list
= NULL
;
1489 for (list
= newlist
; list
; list
= list
->next
) {
1490 struct commit
*c
= list
->item
;
1491 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1493 update_treesame(revs
, c
);
1497 free_commit_list(original_list
);
1498 revs
->commits
= newlist
;
1503 * Add an entry to refs->cmdline with the specified information.
1506 static void add_rev_cmdline(struct rev_info
*revs
,
1507 struct object
*item
,
1512 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1513 unsigned int nr
= info
->nr
;
1515 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1516 info
->rev
[nr
].item
= item
;
1517 info
->rev
[nr
].name
= xstrdup(name
);
1518 info
->rev
[nr
].whence
= whence
;
1519 info
->rev
[nr
].flags
= flags
;
1523 static void add_rev_cmdline_list(struct rev_info
*revs
,
1524 struct commit_list
*commit_list
,
1528 while (commit_list
) {
1529 struct object
*object
= &commit_list
->item
->object
;
1530 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1532 commit_list
= commit_list
->next
;
1536 int ref_excluded(const struct ref_exclusions
*exclusions
, const char *path
)
1538 const char *stripped_path
= strip_namespace(path
);
1539 struct string_list_item
*item
;
1541 for_each_string_list_item(item
, &exclusions
->excluded_refs
) {
1542 if (!wildmatch(item
->string
, path
, 0))
1546 if (ref_is_hidden(stripped_path
, path
, &exclusions
->hidden_refs
))
1552 void init_ref_exclusions(struct ref_exclusions
*exclusions
)
1554 struct ref_exclusions blank
= REF_EXCLUSIONS_INIT
;
1555 memcpy(exclusions
, &blank
, sizeof(*exclusions
));
1558 void clear_ref_exclusions(struct ref_exclusions
*exclusions
)
1560 string_list_clear(&exclusions
->excluded_refs
, 0);
1561 string_list_clear(&exclusions
->hidden_refs
, 0);
1562 exclusions
->hidden_refs_configured
= 0;
1565 void add_ref_exclusion(struct ref_exclusions
*exclusions
, const char *exclude
)
1567 string_list_append(&exclusions
->excluded_refs
, exclude
);
1570 struct exclude_hidden_refs_cb
{
1571 struct ref_exclusions
*exclusions
;
1572 const char *section
;
1575 static int hide_refs_config(const char *var
, const char *value
, void *cb_data
)
1577 struct exclude_hidden_refs_cb
*cb
= cb_data
;
1578 cb
->exclusions
->hidden_refs_configured
= 1;
1579 return parse_hide_refs_config(var
, value
, cb
->section
,
1580 &cb
->exclusions
->hidden_refs
);
1583 void exclude_hidden_refs(struct ref_exclusions
*exclusions
, const char *section
)
1585 struct exclude_hidden_refs_cb cb
;
1587 if (strcmp(section
, "fetch") && strcmp(section
, "receive") &&
1588 strcmp(section
, "uploadpack"))
1589 die(_("unsupported section for hidden refs: %s"), section
);
1591 if (exclusions
->hidden_refs_configured
)
1592 die(_("--exclude-hidden= passed more than once"));
1594 cb
.exclusions
= exclusions
;
1595 cb
.section
= section
;
1597 git_config(hide_refs_config
, &cb
);
1600 struct all_refs_cb
{
1602 int warned_bad_reflog
;
1603 struct rev_info
*all_revs
;
1604 const char *name_for_errormsg
;
1605 struct worktree
*wt
;
1608 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1612 struct all_refs_cb
*cb
= cb_data
;
1613 struct object
*object
;
1615 if (ref_excluded(&cb
->all_revs
->ref_excludes
, path
))
1618 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1619 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1620 add_pending_object(cb
->all_revs
, object
, path
);
1624 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1627 cb
->all_revs
= revs
;
1628 cb
->all_flags
= flags
;
1629 revs
->rev_input_given
= 1;
1633 static void handle_refs(struct ref_store
*refs
,
1634 struct rev_info
*revs
, unsigned flags
,
1635 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1637 struct all_refs_cb cb
;
1640 /* this could happen with uninitialized submodules */
1644 init_all_refs_cb(&cb
, revs
, flags
);
1645 for_each(refs
, handle_one_ref
, &cb
);
1648 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1650 struct all_refs_cb
*cb
= cb_data
;
1651 if (!is_null_oid(oid
)) {
1652 struct object
*o
= parse_object(cb
->all_revs
->repo
, oid
);
1654 o
->flags
|= cb
->all_flags
;
1655 /* ??? CMDLINEFLAGS ??? */
1656 add_pending_object(cb
->all_revs
, o
, "");
1658 else if (!cb
->warned_bad_reflog
) {
1659 warning("reflog of '%s' references pruned commits",
1660 cb
->name_for_errormsg
);
1661 cb
->warned_bad_reflog
= 1;
1666 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1667 const char *email UNUSED
,
1668 timestamp_t timestamp UNUSED
,
1670 const char *message UNUSED
,
1673 handle_one_reflog_commit(ooid
, cb_data
);
1674 handle_one_reflog_commit(noid
, cb_data
);
1678 static int handle_one_reflog(const char *refname_in_wt
,
1679 const struct object_id
*oid UNUSED
,
1680 int flag UNUSED
, void *cb_data
)
1682 struct all_refs_cb
*cb
= cb_data
;
1683 struct strbuf refname
= STRBUF_INIT
;
1685 cb
->warned_bad_reflog
= 0;
1686 strbuf_worktree_ref(cb
->wt
, &refname
, refname_in_wt
);
1687 cb
->name_for_errormsg
= refname
.buf
;
1688 refs_for_each_reflog_ent(get_main_ref_store(the_repository
),
1690 handle_one_reflog_ent
, cb_data
);
1691 strbuf_release(&refname
);
1695 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1697 struct worktree
**worktrees
, **p
;
1699 worktrees
= get_worktrees();
1700 for (p
= worktrees
; *p
; p
++) {
1701 struct worktree
*wt
= *p
;
1707 refs_for_each_reflog(get_worktree_ref_store(wt
),
1711 free_worktrees(worktrees
);
1714 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1716 struct all_refs_cb cb
;
1719 cb
.all_flags
= flags
;
1721 for_each_reflog(handle_one_reflog
, &cb
);
1723 if (!revs
->single_worktree
)
1724 add_other_reflogs_to_pending(&cb
);
1727 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1728 struct strbuf
*path
, unsigned int flags
)
1730 size_t baselen
= path
->len
;
1733 if (it
->entry_count
>= 0) {
1734 struct tree
*tree
= lookup_tree(revs
->repo
, &it
->oid
);
1735 tree
->object
.flags
|= flags
;
1736 add_pending_object_with_path(revs
, &tree
->object
, "",
1740 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1741 struct cache_tree_sub
*sub
= it
->down
[i
];
1742 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1743 add_cache_tree(sub
->cache_tree
, revs
, path
, flags
);
1744 strbuf_setlen(path
, baselen
);
1749 static void add_resolve_undo_to_pending(struct index_state
*istate
, struct rev_info
*revs
)
1751 struct string_list_item
*item
;
1752 struct string_list
*resolve_undo
= istate
->resolve_undo
;
1757 for_each_string_list_item(item
, resolve_undo
) {
1758 const char *path
= item
->string
;
1759 struct resolve_undo_info
*ru
= item
->util
;
1764 for (i
= 0; i
< 3; i
++) {
1767 if (!ru
->mode
[i
] || !S_ISREG(ru
->mode
[i
]))
1770 blob
= lookup_blob(revs
->repo
, &ru
->oid
[i
]);
1772 warning(_("resolve-undo records `%s` which is missing"),
1773 oid_to_hex(&ru
->oid
[i
]));
1776 add_pending_object_with_path(revs
, &blob
->object
, "",
1782 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1783 struct index_state
*istate
,
1788 /* TODO: audit for interaction with sparse-index. */
1789 ensure_full_index(istate
);
1790 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1791 struct cache_entry
*ce
= istate
->cache
[i
];
1794 if (S_ISGITLINK(ce
->ce_mode
))
1797 blob
= lookup_blob(revs
->repo
, &ce
->oid
);
1799 die("unable to add index blob to traversal");
1800 blob
->object
.flags
|= flags
;
1801 add_pending_object_with_path(revs
, &blob
->object
, "",
1802 ce
->ce_mode
, ce
->name
);
1805 if (istate
->cache_tree
) {
1806 struct strbuf path
= STRBUF_INIT
;
1807 add_cache_tree(istate
->cache_tree
, revs
, &path
, flags
);
1808 strbuf_release(&path
);
1811 add_resolve_undo_to_pending(istate
, revs
);
1814 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1816 struct worktree
**worktrees
, **p
;
1818 repo_read_index(revs
->repo
);
1819 do_add_index_objects_to_pending(revs
, revs
->repo
->index
, flags
);
1821 if (revs
->single_worktree
)
1824 worktrees
= get_worktrees();
1825 for (p
= worktrees
; *p
; p
++) {
1826 struct worktree
*wt
= *p
;
1827 struct index_state istate
= INDEX_STATE_INIT(revs
->repo
);
1830 continue; /* current index already taken care of */
1832 if (read_index_from(&istate
,
1833 worktree_git_path(wt
, "index"),
1834 get_worktree_git_dir(wt
)) > 0)
1835 do_add_index_objects_to_pending(revs
, &istate
, flags
);
1836 discard_index(&istate
);
1838 free_worktrees(worktrees
);
1841 struct add_alternate_refs_data
{
1842 struct rev_info
*revs
;
1846 static void add_one_alternate_ref(const struct object_id
*oid
,
1849 const char *name
= ".alternate";
1850 struct add_alternate_refs_data
*data
= vdata
;
1853 obj
= get_reference(data
->revs
, name
, oid
, data
->flags
);
1854 add_rev_cmdline(data
->revs
, obj
, name
, REV_CMD_REV
, data
->flags
);
1855 add_pending_object(data
->revs
, obj
, name
);
1858 static void add_alternate_refs_to_pending(struct rev_info
*revs
,
1861 struct add_alternate_refs_data data
;
1864 for_each_alternate_ref(add_one_alternate_ref
, &data
);
1867 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1870 struct object_id oid
;
1872 struct commit
*commit
;
1873 struct commit_list
*parents
;
1875 const char *arg
= arg_
;
1878 flags
^= UNINTERESTING
| BOTTOM
;
1881 if (repo_get_oid_committish(the_repository
, arg
, &oid
))
1884 it
= get_reference(revs
, arg
, &oid
, 0);
1885 if (!it
&& revs
->ignore_missing
)
1887 if (it
->type
!= OBJ_TAG
)
1889 if (!((struct tag
*)it
)->tagged
)
1891 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1893 if (it
->type
!= OBJ_COMMIT
)
1895 commit
= (struct commit
*)it
;
1896 if (exclude_parent
&&
1897 exclude_parent
> commit_list_count(commit
->parents
))
1899 for (parents
= commit
->parents
, parent_number
= 1;
1901 parents
= parents
->next
, parent_number
++) {
1902 if (exclude_parent
&& parent_number
!= exclude_parent
)
1905 it
= &parents
->item
->object
;
1907 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1908 add_pending_object(revs
, it
, arg
);
1913 void repo_init_revisions(struct repository
*r
,
1914 struct rev_info
*revs
,
1917 struct rev_info blank
= REV_INFO_INIT
;
1918 memcpy(revs
, &blank
, sizeof(*revs
));
1921 revs
->pruning
.repo
= r
;
1922 revs
->pruning
.add_remove
= file_add_remove
;
1923 revs
->pruning
.change
= file_change
;
1924 revs
->pruning
.change_fn_data
= revs
;
1925 revs
->prefix
= prefix
;
1927 grep_init(&revs
->grep_filter
, revs
->repo
);
1928 revs
->grep_filter
.status_only
= 1;
1930 repo_diff_setup(revs
->repo
, &revs
->diffopt
);
1931 if (prefix
&& !revs
->diffopt
.prefix
) {
1932 revs
->diffopt
.prefix
= prefix
;
1933 revs
->diffopt
.prefix_length
= strlen(prefix
);
1936 init_display_notes(&revs
->notes_opt
);
1937 list_objects_filter_init(&revs
->filter
);
1938 init_ref_exclusions(&revs
->ref_excludes
);
1941 static void add_pending_commit_list(struct rev_info
*revs
,
1942 struct commit_list
*commit_list
,
1945 while (commit_list
) {
1946 struct object
*object
= &commit_list
->item
->object
;
1947 object
->flags
|= flags
;
1948 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1949 commit_list
= commit_list
->next
;
1953 static void prepare_show_merge(struct rev_info
*revs
)
1955 struct commit_list
*bases
;
1956 struct commit
*head
, *other
;
1957 struct object_id oid
;
1958 const char **prune
= NULL
;
1959 int i
, prune_num
= 1; /* counting terminating NULL */
1960 struct index_state
*istate
= revs
->repo
->index
;
1962 if (repo_get_oid(the_repository
, "HEAD", &oid
))
1963 die("--merge without HEAD?");
1964 head
= lookup_commit_or_die(&oid
, "HEAD");
1965 if (repo_get_oid(the_repository
, "MERGE_HEAD", &oid
))
1966 die("--merge without MERGE_HEAD?");
1967 other
= lookup_commit_or_die(&oid
, "MERGE_HEAD");
1968 add_pending_object(revs
, &head
->object
, "HEAD");
1969 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1970 bases
= repo_get_merge_bases(the_repository
, head
, other
);
1971 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
1972 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
1973 free_commit_list(bases
);
1974 head
->object
.flags
|= SYMMETRIC_LEFT
;
1976 if (!istate
->cache_nr
)
1977 repo_read_index(revs
->repo
);
1978 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1979 const struct cache_entry
*ce
= istate
->cache
[i
];
1982 if (ce_path_match(istate
, ce
, &revs
->prune_data
, NULL
)) {
1984 REALLOC_ARRAY(prune
, prune_num
);
1985 prune
[prune_num
-2] = ce
->name
;
1986 prune
[prune_num
-1] = NULL
;
1988 while ((i
+1 < istate
->cache_nr
) &&
1989 ce_same_name(ce
, istate
->cache
[i
+1]))
1992 clear_pathspec(&revs
->prune_data
);
1993 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1994 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
1998 static int dotdot_missing(const char *arg
, char *dotdot
,
1999 struct rev_info
*revs
, int symmetric
)
2001 if (revs
->ignore_missing
)
2003 /* de-munge so we report the full argument */
2006 ? "Invalid symmetric difference expression %s"
2007 : "Invalid revision range %s", arg
);
2010 static int handle_dotdot_1(const char *arg
, char *dotdot
,
2011 struct rev_info
*revs
, int flags
,
2012 int cant_be_filename
,
2013 struct object_context
*a_oc
,
2014 struct object_context
*b_oc
)
2016 const char *a_name
, *b_name
;
2017 struct object_id a_oid
, b_oid
;
2018 struct object
*a_obj
, *b_obj
;
2019 unsigned int a_flags
, b_flags
;
2021 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
2022 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
2028 b_name
= dotdot
+ 2;
2029 if (*b_name
== '.') {
2036 if (get_oid_with_context(revs
->repo
, a_name
, oc_flags
, &a_oid
, a_oc
) ||
2037 get_oid_with_context(revs
->repo
, b_name
, oc_flags
, &b_oid
, b_oc
))
2040 if (!cant_be_filename
) {
2042 verify_non_filename(revs
->prefix
, arg
);
2046 a_obj
= parse_object(revs
->repo
, &a_oid
);
2047 b_obj
= parse_object(revs
->repo
, &b_oid
);
2048 if (!a_obj
|| !b_obj
)
2049 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2054 a_flags
= flags_exclude
;
2056 /* A...B -- find merge bases between the two */
2057 struct commit
*a
, *b
;
2058 struct commit_list
*exclude
;
2060 a
= lookup_commit_reference(revs
->repo
, &a_obj
->oid
);
2061 b
= lookup_commit_reference(revs
->repo
, &b_obj
->oid
);
2063 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2065 exclude
= repo_get_merge_bases(the_repository
, a
, b
);
2066 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
2068 add_pending_commit_list(revs
, exclude
, flags_exclude
);
2069 free_commit_list(exclude
);
2072 a_flags
= flags
| SYMMETRIC_LEFT
;
2075 a_obj
->flags
|= a_flags
;
2076 b_obj
->flags
|= b_flags
;
2077 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
2078 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
2079 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
2080 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
2084 static int handle_dotdot(const char *arg
,
2085 struct rev_info
*revs
, int flags
,
2086 int cant_be_filename
)
2088 struct object_context a_oc
, b_oc
;
2089 char *dotdot
= strstr(arg
, "..");
2095 memset(&a_oc
, 0, sizeof(a_oc
));
2096 memset(&b_oc
, 0, sizeof(b_oc
));
2099 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
2109 static int handle_revision_arg_1(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2111 struct object_context oc
;
2113 struct object
*object
;
2114 struct object_id oid
;
2116 const char *arg
= arg_
;
2117 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
2118 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
2120 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
2122 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
2124 * Just ".."? That is not a range but the
2125 * pathspec for the parent directory.
2130 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
2133 mark
= strstr(arg
, "^@");
2134 if (mark
&& !mark
[2]) {
2136 if (add_parents_only(revs
, arg
, flags
, 0))
2140 mark
= strstr(arg
, "^!");
2141 if (mark
&& !mark
[2]) {
2143 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
2146 mark
= strstr(arg
, "^-");
2148 int exclude_parent
= 1;
2151 if (strtol_i(mark
+ 2, 10, &exclude_parent
) ||
2157 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
2163 local_flags
= UNINTERESTING
| BOTTOM
;
2167 if (revarg_opt
& REVARG_COMMITTISH
)
2168 get_sha1_flags
|= GET_OID_COMMITTISH
;
2170 if (get_oid_with_context(revs
->repo
, arg
, get_sha1_flags
, &oid
, &oc
))
2171 return revs
->ignore_missing
? 0 : -1;
2172 if (!cant_be_filename
)
2173 verify_non_filename(revs
->prefix
, arg
);
2174 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
2176 return revs
->ignore_missing
? 0 : -1;
2177 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
2178 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
2183 int handle_revision_arg(const char *arg
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2185 int ret
= handle_revision_arg_1(arg
, revs
, flags
, revarg_opt
);
2187 revs
->rev_input_given
= 1;
2191 static void read_pathspec_from_stdin(struct strbuf
*sb
,
2192 struct strvec
*prune
)
2194 while (strbuf_getline(sb
, stdin
) != EOF
)
2195 strvec_push(prune
, sb
->buf
);
2198 static void read_revisions_from_stdin(struct rev_info
*revs
,
2199 struct strvec
*prune
)
2202 int seen_dashdash
= 0;
2205 save_warning
= warn_on_object_refname_ambiguity
;
2206 warn_on_object_refname_ambiguity
= 0;
2208 strbuf_init(&sb
, 1000);
2209 while (strbuf_getline(&sb
, stdin
) != EOF
) {
2213 if (sb
.buf
[0] == '-') {
2214 if (len
== 2 && sb
.buf
[1] == '-') {
2218 die("options not supported in --stdin mode");
2220 if (handle_revision_arg(sb
.buf
, revs
, 0,
2221 REVARG_CANNOT_BE_FILENAME
))
2222 die("bad revision '%s'", sb
.buf
);
2225 read_pathspec_from_stdin(&sb
, prune
);
2227 strbuf_release(&sb
);
2228 warn_on_object_refname_ambiguity
= save_warning
;
2231 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
2233 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
2236 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
2238 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
2241 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
2243 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
2246 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
2247 int *unkc
, const char **unkv
,
2248 const struct setup_revision_opt
* opt
)
2250 const char *arg
= argv
[0];
2251 const char *optarg
= NULL
;
2253 const unsigned hexsz
= the_hash_algo
->hexsz
;
2255 /* pseudo revision arguments */
2256 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
2257 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
2258 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
2259 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
2260 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
2261 !strcmp(arg
, "--indexed-objects") ||
2262 !strcmp(arg
, "--alternate-refs") ||
2263 starts_with(arg
, "--exclude=") || starts_with(arg
, "--exclude-hidden=") ||
2264 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
2265 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
2267 unkv
[(*unkc
)++] = arg
;
2271 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
2272 revs
->max_count
= atoi(optarg
);
2275 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
2276 revs
->skip_count
= atoi(optarg
);
2278 } else if ((*arg
== '-') && isdigit(arg
[1])) {
2279 /* accept -<digit>, like traditional "head" */
2280 if (strtol_i(arg
+ 1, 10, &revs
->max_count
) < 0 ||
2281 revs
->max_count
< 0)
2282 die("'%s': not a non-negative integer", arg
+ 1);
2284 } else if (!strcmp(arg
, "-n")) {
2286 return error("-n requires an argument");
2287 revs
->max_count
= atoi(argv
[1]);
2290 } else if (skip_prefix(arg
, "-n", &optarg
)) {
2291 revs
->max_count
= atoi(optarg
);
2293 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
2294 revs
->max_age
= atoi(optarg
);
2296 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
2297 revs
->max_age
= approxidate(optarg
);
2299 } else if ((argcount
= parse_long_opt("since-as-filter", argv
, &optarg
))) {
2300 revs
->max_age_as_filter
= approxidate(optarg
);
2302 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
2303 revs
->max_age
= approxidate(optarg
);
2305 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
2306 revs
->min_age
= atoi(optarg
);
2308 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
2309 revs
->min_age
= approxidate(optarg
);
2311 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
2312 revs
->min_age
= approxidate(optarg
);
2314 } else if (!strcmp(arg
, "--first-parent")) {
2315 revs
->first_parent_only
= 1;
2316 } else if (!strcmp(arg
, "--exclude-first-parent-only")) {
2317 revs
->exclude_first_parent_only
= 1;
2318 } else if (!strcmp(arg
, "--ancestry-path")) {
2319 revs
->ancestry_path
= 1;
2320 revs
->simplify_history
= 0;
2322 revs
->ancestry_path_implicit_bottoms
= 1;
2323 } else if (skip_prefix(arg
, "--ancestry-path=", &optarg
)) {
2325 struct object_id oid
;
2326 const char *msg
= _("could not get commit for ancestry-path argument %s");
2328 revs
->ancestry_path
= 1;
2329 revs
->simplify_history
= 0;
2332 if (repo_get_oid_committish(revs
->repo
, optarg
, &oid
))
2333 return error(msg
, optarg
);
2334 get_reference(revs
, optarg
, &oid
, ANCESTRY_PATH
);
2335 c
= lookup_commit_reference(revs
->repo
, &oid
);
2337 return error(msg
, optarg
);
2338 commit_list_insert(c
, &revs
->ancestry_path_bottoms
);
2339 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
2340 init_reflog_walk(&revs
->reflog_info
);
2341 } else if (!strcmp(arg
, "--default")) {
2343 return error("bad --default argument");
2344 revs
->def
= argv
[1];
2346 } else if (!strcmp(arg
, "--merge")) {
2347 revs
->show_merge
= 1;
2348 } else if (!strcmp(arg
, "--topo-order")) {
2349 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
2350 revs
->topo_order
= 1;
2351 } else if (!strcmp(arg
, "--simplify-merges")) {
2352 revs
->simplify_merges
= 1;
2353 revs
->topo_order
= 1;
2354 revs
->rewrite_parents
= 1;
2355 revs
->simplify_history
= 0;
2357 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
2358 revs
->simplify_merges
= 1;
2359 revs
->topo_order
= 1;
2360 revs
->rewrite_parents
= 1;
2361 revs
->simplify_history
= 0;
2362 revs
->simplify_by_decoration
= 1;
2365 } else if (!strcmp(arg
, "--date-order")) {
2366 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
2367 revs
->topo_order
= 1;
2368 } else if (!strcmp(arg
, "--author-date-order")) {
2369 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
2370 revs
->topo_order
= 1;
2371 } else if (!strcmp(arg
, "--early-output")) {
2372 revs
->early_output
= 100;
2373 revs
->topo_order
= 1;
2374 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
2375 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
2376 die("'%s': not a non-negative integer", optarg
);
2377 revs
->topo_order
= 1;
2378 } else if (!strcmp(arg
, "--parents")) {
2379 revs
->rewrite_parents
= 1;
2380 revs
->print_parents
= 1;
2381 } else if (!strcmp(arg
, "--dense")) {
2383 } else if (!strcmp(arg
, "--sparse")) {
2385 } else if (!strcmp(arg
, "--in-commit-order")) {
2386 revs
->tree_blobs_in_commit_order
= 1;
2387 } else if (!strcmp(arg
, "--remove-empty")) {
2388 revs
->remove_empty_trees
= 1;
2389 } else if (!strcmp(arg
, "--merges")) {
2390 revs
->min_parents
= 2;
2391 } else if (!strcmp(arg
, "--no-merges")) {
2392 revs
->max_parents
= 1;
2393 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
2394 revs
->min_parents
= atoi(optarg
);
2395 } else if (!strcmp(arg
, "--no-min-parents")) {
2396 revs
->min_parents
= 0;
2397 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
2398 revs
->max_parents
= atoi(optarg
);
2399 } else if (!strcmp(arg
, "--no-max-parents")) {
2400 revs
->max_parents
= -1;
2401 } else if (!strcmp(arg
, "--boundary")) {
2403 } else if (!strcmp(arg
, "--left-right")) {
2404 revs
->left_right
= 1;
2405 } else if (!strcmp(arg
, "--left-only")) {
2406 if (revs
->right_only
)
2407 die("--left-only is incompatible with --right-only"
2409 revs
->left_only
= 1;
2410 } else if (!strcmp(arg
, "--right-only")) {
2411 if (revs
->left_only
)
2412 die(_("options '%s' and '%s' cannot be used together"), "--right-only", "--left-only");
2413 revs
->right_only
= 1;
2414 } else if (!strcmp(arg
, "--cherry")) {
2415 if (revs
->left_only
)
2416 die(_("options '%s' and '%s' cannot be used together"), "--cherry", "--left-only");
2417 revs
->cherry_mark
= 1;
2418 revs
->right_only
= 1;
2419 revs
->max_parents
= 1;
2421 } else if (!strcmp(arg
, "--count")) {
2423 } else if (!strcmp(arg
, "--cherry-mark")) {
2424 if (revs
->cherry_pick
)
2425 die(_("options '%s' and '%s' cannot be used together"), "--cherry-mark", "--cherry-pick");
2426 revs
->cherry_mark
= 1;
2427 revs
->limited
= 1; /* needs limit_list() */
2428 } else if (!strcmp(arg
, "--cherry-pick")) {
2429 if (revs
->cherry_mark
)
2430 die(_("options '%s' and '%s' cannot be used together"), "--cherry-pick", "--cherry-mark");
2431 revs
->cherry_pick
= 1;
2433 } else if (!strcmp(arg
, "--objects")) {
2434 revs
->tag_objects
= 1;
2435 revs
->tree_objects
= 1;
2436 revs
->blob_objects
= 1;
2437 } else if (!strcmp(arg
, "--objects-edge")) {
2438 revs
->tag_objects
= 1;
2439 revs
->tree_objects
= 1;
2440 revs
->blob_objects
= 1;
2441 revs
->edge_hint
= 1;
2442 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
2443 revs
->tag_objects
= 1;
2444 revs
->tree_objects
= 1;
2445 revs
->blob_objects
= 1;
2446 revs
->edge_hint
= 1;
2447 revs
->edge_hint_aggressive
= 1;
2448 } else if (!strcmp(arg
, "--verify-objects")) {
2449 revs
->tag_objects
= 1;
2450 revs
->tree_objects
= 1;
2451 revs
->blob_objects
= 1;
2452 revs
->verify_objects
= 1;
2453 disable_commit_graph(revs
->repo
);
2454 } else if (!strcmp(arg
, "--unpacked")) {
2456 } else if (starts_with(arg
, "--unpacked=")) {
2457 die(_("--unpacked=<packfile> no longer supported"));
2458 } else if (!strcmp(arg
, "--no-kept-objects")) {
2459 revs
->no_kept_objects
= 1;
2460 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2461 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2462 } else if (skip_prefix(arg
, "--no-kept-objects=", &optarg
)) {
2463 revs
->no_kept_objects
= 1;
2464 if (!strcmp(optarg
, "in-core"))
2465 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2466 if (!strcmp(optarg
, "on-disk"))
2467 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2468 } else if (!strcmp(arg
, "-r")) {
2470 revs
->diffopt
.flags
.recursive
= 1;
2471 } else if (!strcmp(arg
, "-t")) {
2473 revs
->diffopt
.flags
.recursive
= 1;
2474 revs
->diffopt
.flags
.tree_in_recursive
= 1;
2475 } else if ((argcount
= diff_merges_parse_opts(revs
, argv
))) {
2477 } else if (!strcmp(arg
, "-v")) {
2478 revs
->verbose_header
= 1;
2479 } else if (!strcmp(arg
, "--pretty")) {
2480 revs
->verbose_header
= 1;
2481 revs
->pretty_given
= 1;
2482 get_commit_format(NULL
, revs
);
2483 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
2484 skip_prefix(arg
, "--format=", &optarg
)) {
2486 * Detached form ("--pretty X" as opposed to "--pretty=X")
2487 * not allowed, since the argument is optional.
2489 revs
->verbose_header
= 1;
2490 revs
->pretty_given
= 1;
2491 get_commit_format(optarg
, revs
);
2492 } else if (!strcmp(arg
, "--expand-tabs")) {
2493 revs
->expand_tabs_in_log
= 8;
2494 } else if (!strcmp(arg
, "--no-expand-tabs")) {
2495 revs
->expand_tabs_in_log
= 0;
2496 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
2498 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
2499 die("'%s': not a non-negative integer", arg
);
2500 revs
->expand_tabs_in_log
= val
;
2501 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
2502 enable_default_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2503 revs
->show_notes_given
= 1;
2504 } else if (!strcmp(arg
, "--show-signature")) {
2505 revs
->show_signature
= 1;
2506 } else if (!strcmp(arg
, "--no-show-signature")) {
2507 revs
->show_signature
= 0;
2508 } else if (!strcmp(arg
, "--show-linear-break")) {
2509 revs
->break_bar
= " ..........";
2510 revs
->track_linear
= 1;
2511 revs
->track_first_time
= 1;
2512 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
2513 revs
->break_bar
= xstrdup(optarg
);
2514 revs
->track_linear
= 1;
2515 revs
->track_first_time
= 1;
2516 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
2517 skip_prefix(arg
, "--notes=", &optarg
)) {
2518 if (starts_with(arg
, "--show-notes=") &&
2519 revs
->notes_opt
.use_default_notes
< 0)
2520 revs
->notes_opt
.use_default_notes
= 1;
2521 enable_ref_display_notes(&revs
->notes_opt
, &revs
->show_notes
, optarg
);
2522 revs
->show_notes_given
= 1;
2523 } else if (!strcmp(arg
, "--no-notes")) {
2524 disable_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2525 revs
->show_notes_given
= 1;
2526 } else if (!strcmp(arg
, "--standard-notes")) {
2527 revs
->show_notes_given
= 1;
2528 revs
->notes_opt
.use_default_notes
= 1;
2529 } else if (!strcmp(arg
, "--no-standard-notes")) {
2530 revs
->notes_opt
.use_default_notes
= 0;
2531 } else if (!strcmp(arg
, "--oneline")) {
2532 revs
->verbose_header
= 1;
2533 get_commit_format("oneline", revs
);
2534 revs
->pretty_given
= 1;
2535 revs
->abbrev_commit
= 1;
2536 } else if (!strcmp(arg
, "--graph")) {
2537 graph_clear(revs
->graph
);
2538 revs
->graph
= graph_init(revs
);
2539 } else if (!strcmp(arg
, "--no-graph")) {
2540 graph_clear(revs
->graph
);
2542 } else if (!strcmp(arg
, "--encode-email-headers")) {
2543 revs
->encode_email_headers
= 1;
2544 } else if (!strcmp(arg
, "--no-encode-email-headers")) {
2545 revs
->encode_email_headers
= 0;
2546 } else if (!strcmp(arg
, "--root")) {
2547 revs
->show_root_diff
= 1;
2548 } else if (!strcmp(arg
, "--no-commit-id")) {
2549 revs
->no_commit_id
= 1;
2550 } else if (!strcmp(arg
, "--always")) {
2551 revs
->always_show_header
= 1;
2552 } else if (!strcmp(arg
, "--no-abbrev")) {
2554 } else if (!strcmp(arg
, "--abbrev")) {
2555 revs
->abbrev
= DEFAULT_ABBREV
;
2556 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2557 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2558 if (revs
->abbrev
< MINIMUM_ABBREV
)
2559 revs
->abbrev
= MINIMUM_ABBREV
;
2560 else if (revs
->abbrev
> hexsz
)
2561 revs
->abbrev
= hexsz
;
2562 } else if (!strcmp(arg
, "--abbrev-commit")) {
2563 revs
->abbrev_commit
= 1;
2564 revs
->abbrev_commit_given
= 1;
2565 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2566 revs
->abbrev_commit
= 0;
2567 } else if (!strcmp(arg
, "--full-diff")) {
2569 revs
->full_diff
= 1;
2570 } else if (!strcmp(arg
, "--show-pulls")) {
2571 revs
->show_pulls
= 1;
2572 } else if (!strcmp(arg
, "--full-history")) {
2573 revs
->simplify_history
= 0;
2574 } else if (!strcmp(arg
, "--relative-date")) {
2575 revs
->date_mode
.type
= DATE_RELATIVE
;
2576 revs
->date_mode_explicit
= 1;
2577 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2578 parse_date_format(optarg
, &revs
->date_mode
);
2579 revs
->date_mode_explicit
= 1;
2581 } else if (!strcmp(arg
, "--log-size")) {
2582 revs
->show_log_size
= 1;
2585 * Grepping the commit log
2587 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2588 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2590 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2591 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2593 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2594 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2596 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2597 add_message_grep(revs
, optarg
);
2599 } else if (!strcmp(arg
, "--basic-regexp")) {
2600 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2601 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2602 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2603 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2604 revs
->grep_filter
.ignore_case
= 1;
2605 revs
->diffopt
.pickaxe_opts
|= DIFF_PICKAXE_IGNORE_CASE
;
2606 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2607 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2608 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2609 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2610 } else if (!strcmp(arg
, "--all-match")) {
2611 revs
->grep_filter
.all_match
= 1;
2612 } else if (!strcmp(arg
, "--invert-grep")) {
2613 revs
->grep_filter
.no_body_match
= 1;
2614 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2615 if (strcmp(optarg
, "none"))
2616 git_log_output_encoding
= xstrdup(optarg
);
2618 git_log_output_encoding
= "";
2620 } else if (!strcmp(arg
, "--reverse")) {
2622 } else if (!strcmp(arg
, "--children")) {
2623 revs
->children
.name
= "children";
2625 } else if (!strcmp(arg
, "--ignore-missing")) {
2626 revs
->ignore_missing
= 1;
2627 } else if (opt
&& opt
->allow_exclude_promisor_objects
&&
2628 !strcmp(arg
, "--exclude-promisor-objects")) {
2629 if (fetch_if_missing
)
2630 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2631 revs
->exclude_promisor_objects
= 1;
2633 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2635 unkv
[(*unkc
)++] = arg
;
2642 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2643 const struct option
*options
,
2644 const char * const usagestr
[])
2646 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2647 &ctx
->cpidx
, ctx
->out
, NULL
);
2649 error("unknown option `%s'", ctx
->argv
[0]);
2650 usage_with_options(usagestr
, options
);
2656 void revision_opts_finish(struct rev_info
*revs
)
2658 if (revs
->graph
&& revs
->track_linear
)
2659 die(_("options '%s' and '%s' cannot be used together"), "--show-linear-break", "--graph");
2662 revs
->topo_order
= 1;
2663 revs
->rewrite_parents
= 1;
2667 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2668 void *cb_data
, const char *term
)
2670 struct strbuf bisect_refs
= STRBUF_INIT
;
2672 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2673 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, fn
, cb_data
);
2674 strbuf_release(&bisect_refs
);
2678 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2680 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2683 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2685 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2688 static int handle_revision_pseudo_opt(struct rev_info
*revs
,
2689 const char **argv
, int *flags
)
2691 const char *arg
= argv
[0];
2693 struct ref_store
*refs
;
2696 if (revs
->repo
!= the_repository
) {
2698 * We need some something like get_submodule_worktrees()
2699 * before we can go through all worktrees of a submodule,
2700 * .e.g with adding all HEADs from --all, which is not
2701 * supported right now, so stick to single worktree.
2703 if (!revs
->single_worktree
)
2704 BUG("--single-worktree cannot be used together with submodule");
2706 refs
= get_main_ref_store(revs
->repo
);
2711 * Commands like "git shortlog" will not accept the options below
2712 * unless parse_revision_opt queues them (as opposed to erroring
2715 * When implementing your new pseudo-option, remember to
2716 * register it in the list at the top of handle_revision_opt.
2718 if (!strcmp(arg
, "--all")) {
2719 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2720 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2721 if (!revs
->single_worktree
) {
2722 struct all_refs_cb cb
;
2724 init_all_refs_cb(&cb
, revs
, *flags
);
2725 other_head_refs(handle_one_ref
, &cb
);
2727 clear_ref_exclusions(&revs
->ref_excludes
);
2728 } else if (!strcmp(arg
, "--branches")) {
2729 if (revs
->ref_excludes
.hidden_refs_configured
)
2730 return error(_("--exclude-hidden cannot be used together with --branches"));
2731 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2732 clear_ref_exclusions(&revs
->ref_excludes
);
2733 } else if (!strcmp(arg
, "--bisect")) {
2734 read_bisect_terms(&term_bad
, &term_good
);
2735 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2736 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2737 for_each_good_bisect_ref
);
2739 } else if (!strcmp(arg
, "--tags")) {
2740 if (revs
->ref_excludes
.hidden_refs_configured
)
2741 return error(_("--exclude-hidden cannot be used together with --tags"));
2742 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2743 clear_ref_exclusions(&revs
->ref_excludes
);
2744 } else if (!strcmp(arg
, "--remotes")) {
2745 if (revs
->ref_excludes
.hidden_refs_configured
)
2746 return error(_("--exclude-hidden cannot be used together with --remotes"));
2747 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2748 clear_ref_exclusions(&revs
->ref_excludes
);
2749 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2750 struct all_refs_cb cb
;
2751 init_all_refs_cb(&cb
, revs
, *flags
);
2752 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
2753 clear_ref_exclusions(&revs
->ref_excludes
);
2755 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2756 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2758 } else if ((argcount
= parse_long_opt("exclude-hidden", argv
, &optarg
))) {
2759 exclude_hidden_refs(&revs
->ref_excludes
, optarg
);
2761 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2762 struct all_refs_cb cb
;
2763 if (revs
->ref_excludes
.hidden_refs_configured
)
2764 return error(_("--exclude-hidden cannot be used together with --branches"));
2765 init_all_refs_cb(&cb
, revs
, *flags
);
2766 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/heads/", &cb
);
2767 clear_ref_exclusions(&revs
->ref_excludes
);
2768 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2769 struct all_refs_cb cb
;
2770 if (revs
->ref_excludes
.hidden_refs_configured
)
2771 return error(_("--exclude-hidden cannot be used together with --tags"));
2772 init_all_refs_cb(&cb
, revs
, *flags
);
2773 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/tags/", &cb
);
2774 clear_ref_exclusions(&revs
->ref_excludes
);
2775 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2776 struct all_refs_cb cb
;
2777 if (revs
->ref_excludes
.hidden_refs_configured
)
2778 return error(_("--exclude-hidden cannot be used together with --remotes"));
2779 init_all_refs_cb(&cb
, revs
, *flags
);
2780 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/remotes/", &cb
);
2781 clear_ref_exclusions(&revs
->ref_excludes
);
2782 } else if (!strcmp(arg
, "--reflog")) {
2783 add_reflogs_to_pending(revs
, *flags
);
2784 } else if (!strcmp(arg
, "--indexed-objects")) {
2785 add_index_objects_to_pending(revs
, *flags
);
2786 } else if (!strcmp(arg
, "--alternate-refs")) {
2787 add_alternate_refs_to_pending(revs
, *flags
);
2788 } else if (!strcmp(arg
, "--not")) {
2789 *flags
^= UNINTERESTING
| BOTTOM
;
2790 } else if (!strcmp(arg
, "--no-walk")) {
2792 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2794 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2795 * not allowed, since the argument is optional.
2798 if (!strcmp(optarg
, "sorted"))
2799 revs
->unsorted_input
= 0;
2800 else if (!strcmp(optarg
, "unsorted"))
2801 revs
->unsorted_input
= 1;
2803 return error("invalid argument to --no-walk");
2804 } else if (!strcmp(arg
, "--do-walk")) {
2806 } else if (!strcmp(arg
, "--single-worktree")) {
2807 revs
->single_worktree
= 1;
2808 } else if (skip_prefix(arg
, ("--filter="), &arg
)) {
2809 parse_list_objects_filter(&revs
->filter
, arg
);
2810 } else if (!strcmp(arg
, ("--no-filter"))) {
2811 list_objects_filter_set_no_filter(&revs
->filter
);
2819 static void NORETURN
diagnose_missing_default(const char *def
)
2822 const char *refname
;
2824 refname
= resolve_ref_unsafe(def
, 0, NULL
, &flags
);
2825 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2826 die(_("your current branch appears to be broken"));
2828 skip_prefix(refname
, "refs/heads/", &refname
);
2829 die(_("your current branch '%s' does not have any commits yet"),
2834 * Parse revision information, filling in the "rev_info" structure,
2835 * and removing the used arguments from the argument list.
2837 * Returns the number of arguments left that weren't recognized
2838 * (which are also moved to the head of the argument list)
2840 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2842 int i
, flags
, left
, seen_dashdash
, revarg_opt
;
2843 struct strvec prune_data
= STRVEC_INIT
;
2844 int seen_end_of_options
= 0;
2846 /* First, search for "--" */
2847 if (opt
&& opt
->assume_dashdash
) {
2851 for (i
= 1; i
< argc
; i
++) {
2852 const char *arg
= argv
[i
];
2853 if (strcmp(arg
, "--"))
2855 if (opt
&& opt
->free_removed_argv_elements
)
2856 free((char *)argv
[i
]);
2860 strvec_pushv(&prune_data
, argv
+ i
+ 1);
2866 /* Second, deal with arguments and options */
2868 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2870 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2871 for (left
= i
= 1; i
< argc
; i
++) {
2872 const char *arg
= argv
[i
];
2873 if (!seen_end_of_options
&& *arg
== '-') {
2876 opts
= handle_revision_pseudo_opt(
2884 if (!strcmp(arg
, "--stdin")) {
2885 if (revs
->disable_stdin
) {
2889 if (revs
->read_from_stdin
++)
2890 die("--stdin given twice?");
2891 read_revisions_from_stdin(revs
, &prune_data
);
2895 if (!strcmp(arg
, "--end-of-options")) {
2896 seen_end_of_options
= 1;
2900 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
,
2912 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
2914 if (seen_dashdash
|| *arg
== '^')
2915 die("bad revision '%s'", arg
);
2917 /* If we didn't have a "--":
2918 * (1) all filenames must exist;
2919 * (2) all rev-args must not be interpretable
2920 * as a valid filename.
2921 * but the latter we have checked in the main loop.
2923 for (j
= i
; j
< argc
; j
++)
2924 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
2926 strvec_pushv(&prune_data
, argv
+ i
);
2930 revision_opts_finish(revs
);
2932 if (prune_data
.nr
) {
2934 * If we need to introduce the magic "a lone ':' means no
2935 * pathspec whatsoever", here is the place to do so.
2937 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2938 * prune_data.nr = 0;
2939 * prune_data.alloc = 0;
2940 * free(prune_data.path);
2941 * prune_data.path = NULL;
2943 * terminate prune_data.alloc with NULL and
2944 * call init_pathspec() to set revs->prune_data here.
2947 parse_pathspec(&revs
->prune_data
, 0, 0,
2948 revs
->prefix
, prune_data
.v
);
2950 strvec_clear(&prune_data
);
2953 revs
->def
= opt
? opt
->def
: NULL
;
2954 if (opt
&& opt
->tweak
)
2955 opt
->tweak(revs
, opt
);
2956 if (revs
->show_merge
)
2957 prepare_show_merge(revs
);
2958 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
) {
2959 struct object_id oid
;
2960 struct object
*object
;
2961 struct object_context oc
;
2962 if (get_oid_with_context(revs
->repo
, revs
->def
, 0, &oid
, &oc
))
2963 diagnose_missing_default(revs
->def
);
2964 object
= get_reference(revs
, revs
->def
, &oid
, 0);
2965 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
2968 /* Did the user ask for any diff output? Run the diff! */
2969 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
2972 /* Pickaxe, diff-filter and rename following need diffs */
2973 if ((revs
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
2974 revs
->diffopt
.filter
||
2975 revs
->diffopt
.flags
.follow_renames
)
2978 if (revs
->diffopt
.objfind
)
2979 revs
->simplify_history
= 0;
2981 if (revs
->line_level_traverse
) {
2982 if (want_ancestry(revs
))
2984 revs
->topo_order
= 1;
2987 if (revs
->topo_order
&& !generation_numbers_enabled(the_repository
))
2990 if (revs
->prune_data
.nr
) {
2991 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
2992 /* Can't prune commits with rename following: the paths change.. */
2993 if (!revs
->diffopt
.flags
.follow_renames
)
2995 if (!revs
->full_diff
)
2996 copy_pathspec(&revs
->diffopt
.pathspec
,
3000 diff_merges_setup_revs(revs
);
3002 revs
->diffopt
.abbrev
= revs
->abbrev
;
3004 diff_setup_done(&revs
->diffopt
);
3006 if (!is_encoding_utf8(get_log_output_encoding()))
3007 revs
->grep_filter
.ignore_locale
= 1;
3008 compile_grep_patterns(&revs
->grep_filter
);
3010 if (revs
->reverse
&& revs
->reflog_info
)
3011 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--walk-reflogs");
3012 if (revs
->reflog_info
&& revs
->limited
)
3013 die("cannot combine --walk-reflogs with history-limiting options");
3014 if (revs
->rewrite_parents
&& revs
->children
.name
)
3015 die(_("options '%s' and '%s' cannot be used together"), "--parents", "--children");
3016 if (revs
->filter
.choice
&& !revs
->blob_objects
)
3017 die(_("object filtering requires --objects"));
3020 * Limitations on the graph functionality
3022 if (revs
->reverse
&& revs
->graph
)
3023 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--graph");
3025 if (revs
->reflog_info
&& revs
->graph
)
3026 die(_("options '%s' and '%s' cannot be used together"), "--walk-reflogs", "--graph");
3027 if (revs
->no_walk
&& revs
->graph
)
3028 die(_("options '%s' and '%s' cannot be used together"), "--no-walk", "--graph");
3029 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
3030 die(_("the option '%s' requires '%s'"), "--grep-reflog", "--walk-reflogs");
3032 if (revs
->line_level_traverse
&&
3033 (revs
->diffopt
.output_format
& ~(DIFF_FORMAT_PATCH
| DIFF_FORMAT_NO_OUTPUT
)))
3034 die(_("-L does not yet support diff formats besides -p and -s"));
3036 if (revs
->expand_tabs_in_log
< 0)
3037 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
3042 static void release_revisions_cmdline(struct rev_cmdline_info
*cmdline
)
3046 for (i
= 0; i
< cmdline
->nr
; i
++)
3047 free((char *)cmdline
->rev
[i
].name
);
3051 static void release_revisions_mailmap(struct string_list
*mailmap
)
3055 clear_mailmap(mailmap
);
3059 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
);
3061 void release_revisions(struct rev_info
*revs
)
3063 free_commit_list(revs
->commits
);
3064 free_commit_list(revs
->ancestry_path_bottoms
);
3065 object_array_clear(&revs
->pending
);
3066 object_array_clear(&revs
->boundary_commits
);
3067 release_revisions_cmdline(&revs
->cmdline
);
3068 list_objects_filter_release(&revs
->filter
);
3069 clear_pathspec(&revs
->prune_data
);
3070 date_mode_release(&revs
->date_mode
);
3071 release_revisions_mailmap(revs
->mailmap
);
3072 free_grep_patterns(&revs
->grep_filter
);
3073 graph_clear(revs
->graph
);
3074 /* TODO (need to handle "no_free"): diff_free(&revs->diffopt) */
3075 diff_free(&revs
->pruning
);
3076 reflog_walk_info_release(revs
->reflog_info
);
3077 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3080 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
3082 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
3085 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
3088 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
3090 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3091 struct commit_list
**pp
, *p
;
3092 int surviving_parents
;
3094 /* Examine existing parents while marking ones we have seen... */
3095 pp
= &commit
->parents
;
3096 surviving_parents
= 0;
3097 while ((p
= *pp
) != NULL
) {
3098 struct commit
*parent
= p
->item
;
3099 if (parent
->object
.flags
& TMP_MARK
) {
3102 compact_treesame(revs
, commit
, surviving_parents
);
3105 parent
->object
.flags
|= TMP_MARK
;
3106 surviving_parents
++;
3109 /* clear the temporary mark */
3110 for (p
= commit
->parents
; p
; p
= p
->next
) {
3111 p
->item
->object
.flags
&= ~TMP_MARK
;
3113 /* no update_treesame() - removing duplicates can't affect TREESAME */
3114 return surviving_parents
;
3117 struct merge_simplify_state
{
3118 struct commit
*simplified
;
3121 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
3123 struct merge_simplify_state
*st
;
3125 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
3127 CALLOC_ARRAY(st
, 1);
3128 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
3133 static int mark_redundant_parents(struct commit
*commit
)
3135 struct commit_list
*h
= reduce_heads(commit
->parents
);
3136 int i
= 0, marked
= 0;
3137 struct commit_list
*po
, *pn
;
3139 /* Want these for sanity-checking only */
3140 int orig_cnt
= commit_list_count(commit
->parents
);
3141 int cnt
= commit_list_count(h
);
3144 * Not ready to remove items yet, just mark them for now, based
3145 * on the output of reduce_heads(). reduce_heads outputs the reduced
3146 * set in its original order, so this isn't too hard.
3148 po
= commit
->parents
;
3151 if (pn
&& po
->item
== pn
->item
) {
3155 po
->item
->object
.flags
|= TMP_MARK
;
3161 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
3162 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
3164 free_commit_list(h
);
3169 static int mark_treesame_root_parents(struct commit
*commit
)
3171 struct commit_list
*p
;
3174 for (p
= commit
->parents
; p
; p
= p
->next
) {
3175 struct commit
*parent
= p
->item
;
3176 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
3177 parent
->object
.flags
|= TMP_MARK
;
3186 * Awkward naming - this means one parent we are TREESAME to.
3187 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
3188 * empty tree). Better name suggestions?
3190 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
3192 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3193 struct commit
*unmarked
= NULL
, *marked
= NULL
;
3194 struct commit_list
*p
;
3197 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
3198 if (ts
->treesame
[n
]) {
3199 if (p
->item
->object
.flags
& TMP_MARK
) {
3212 * If we are TREESAME to a marked-for-deletion parent, but not to any
3213 * unmarked parents, unmark the first TREESAME parent. This is the
3214 * parent that the default simplify_history==1 scan would have followed,
3215 * and it doesn't make sense to omit that path when asking for a
3216 * simplified full history. Retaining it improves the chances of
3217 * understanding odd missed merges that took an old version of a file.
3221 * I--------*X A modified the file, but mainline merge X used
3222 * \ / "-s ours", so took the version from I. X is
3223 * `-*A--' TREESAME to I and !TREESAME to A.
3225 * Default log from X would produce "I". Without this check,
3226 * --full-history --simplify-merges would produce "I-A-X", showing
3227 * the merge commit X and that it changed A, but not making clear that
3228 * it had just taken the I version. With this check, the topology above
3231 * Note that it is possible that the simplification chooses a different
3232 * TREESAME parent from the default, in which case this test doesn't
3233 * activate, and we _do_ drop the default parent. Example:
3235 * I------X A modified the file, but it was reverted in B,
3236 * \ / meaning mainline merge X is TREESAME to both
3239 * Default log would produce "I" by following the first parent;
3240 * --full-history --simplify-merges will produce "I-A-B". But this is a
3241 * reasonable result - it presents a logical full history leading from
3242 * I to X, and X is not an important merge.
3244 if (!unmarked
&& marked
) {
3245 marked
->object
.flags
&= ~TMP_MARK
;
3252 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
3254 struct commit_list
**pp
, *p
;
3255 int nth_parent
, removed
= 0;
3257 pp
= &commit
->parents
;
3259 while ((p
= *pp
) != NULL
) {
3260 struct commit
*parent
= p
->item
;
3261 if (parent
->object
.flags
& TMP_MARK
) {
3262 parent
->object
.flags
&= ~TMP_MARK
;
3266 compact_treesame(revs
, commit
, nth_parent
);
3273 /* Removing parents can only increase TREESAMEness */
3274 if (removed
&& !(commit
->object
.flags
& TREESAME
))
3275 update_treesame(revs
, commit
);
3280 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
3282 struct commit_list
*p
;
3283 struct commit
*parent
;
3284 struct merge_simplify_state
*st
, *pst
;
3287 st
= locate_simplify_state(revs
, commit
);
3290 * Have we handled this one?
3296 * An UNINTERESTING commit simplifies to itself, so does a
3297 * root commit. We do not rewrite parents of such commit
3300 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
3301 st
->simplified
= commit
;
3306 * Do we know what commit all of our parents that matter
3307 * should be rewritten to? Otherwise we are not ready to
3308 * rewrite this one yet.
3310 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
3311 pst
= locate_simplify_state(revs
, p
->item
);
3312 if (!pst
->simplified
) {
3313 tail
= &commit_list_insert(p
->item
, tail
)->next
;
3316 if (revs
->first_parent_only
)
3320 tail
= &commit_list_insert(commit
, tail
)->next
;
3325 * Rewrite our list of parents. Note that this cannot
3326 * affect our TREESAME flags in any way - a commit is
3327 * always TREESAME to its simplification.
3329 for (p
= commit
->parents
; p
; p
= p
->next
) {
3330 pst
= locate_simplify_state(revs
, p
->item
);
3331 p
->item
= pst
->simplified
;
3332 if (revs
->first_parent_only
)
3336 if (revs
->first_parent_only
)
3339 cnt
= remove_duplicate_parents(revs
, commit
);
3342 * It is possible that we are a merge and one side branch
3343 * does not have any commit that touches the given paths;
3344 * in such a case, the immediate parent from that branch
3345 * will be rewritten to be the merge base.
3347 * o----X X: the commit we are looking at;
3348 * / / o: a commit that touches the paths;
3351 * Further, a merge of an independent branch that doesn't
3352 * touch the path will reduce to a treesame root parent:
3354 * ----o----X X: the commit we are looking at;
3355 * / o: a commit that touches the paths;
3356 * r r: a root commit not touching the paths
3358 * Detect and simplify both cases.
3361 int marked
= mark_redundant_parents(commit
);
3362 marked
+= mark_treesame_root_parents(commit
);
3364 marked
-= leave_one_treesame_to_parent(revs
, commit
);
3366 cnt
= remove_marked_parents(revs
, commit
);
3370 * A commit simplifies to itself if it is a root, if it is
3371 * UNINTERESTING, if it touches the given paths, or if it is a
3372 * merge and its parents don't simplify to one relevant commit
3373 * (the first two cases are already handled at the beginning of
3376 * Otherwise, it simplifies to what its sole relevant parent
3380 (commit
->object
.flags
& UNINTERESTING
) ||
3381 !(commit
->object
.flags
& TREESAME
) ||
3382 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
||
3383 (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
)))
3384 st
->simplified
= commit
;
3386 pst
= locate_simplify_state(revs
, parent
);
3387 st
->simplified
= pst
->simplified
;
3392 static void simplify_merges(struct rev_info
*revs
)
3394 struct commit_list
*list
, *next
;
3395 struct commit_list
*yet_to_do
, **tail
;
3396 struct commit
*commit
;
3401 /* feed the list reversed */
3403 for (list
= revs
->commits
; list
; list
= next
) {
3404 commit
= list
->item
;
3407 * Do not free(list) here yet; the original list
3408 * is used later in this function.
3410 commit_list_insert(commit
, &yet_to_do
);
3417 commit
= pop_commit(&list
);
3418 tail
= simplify_one(revs
, commit
, tail
);
3422 /* clean up the result, removing the simplified ones */
3423 list
= revs
->commits
;
3424 revs
->commits
= NULL
;
3425 tail
= &revs
->commits
;
3427 struct merge_simplify_state
*st
;
3429 commit
= pop_commit(&list
);
3430 st
= locate_simplify_state(revs
, commit
);
3431 if (st
->simplified
== commit
)
3432 tail
= &commit_list_insert(commit
, tail
)->next
;
3436 static void set_children(struct rev_info
*revs
)
3438 struct commit_list
*l
;
3439 for (l
= revs
->commits
; l
; l
= l
->next
) {
3440 struct commit
*commit
= l
->item
;
3441 struct commit_list
*p
;
3443 for (p
= commit
->parents
; p
; p
= p
->next
)
3444 add_child(revs
, p
->item
, commit
);
3448 void reset_revision_walk(void)
3450 clear_object_flags(SEEN
| ADDED
| SHOWN
| TOPO_WALK_EXPLORED
| TOPO_WALK_INDEGREE
);
3453 static int mark_uninteresting(const struct object_id
*oid
,
3454 struct packed_git
*pack UNUSED
,
3455 uint32_t pos UNUSED
,
3458 struct rev_info
*revs
= cb
;
3459 struct object
*o
= lookup_unknown_object(revs
->repo
, oid
);
3460 o
->flags
|= UNINTERESTING
| SEEN
;
3464 define_commit_slab(indegree_slab
, int);
3465 define_commit_slab(author_date_slab
, timestamp_t
);
3467 struct topo_walk_info
{
3468 timestamp_t min_generation
;
3469 struct prio_queue explore_queue
;
3470 struct prio_queue indegree_queue
;
3471 struct prio_queue topo_queue
;
3472 struct indegree_slab indegree
;
3473 struct author_date_slab author_date
;
3476 static int topo_walk_atexit_registered
;
3477 static unsigned int count_explore_walked
;
3478 static unsigned int count_indegree_walked
;
3479 static unsigned int count_topo_walked
;
3481 static void trace2_topo_walk_statistics_atexit(void)
3483 struct json_writer jw
= JSON_WRITER_INIT
;
3485 jw_object_begin(&jw
, 0);
3486 jw_object_intmax(&jw
, "count_explore_walked", count_explore_walked
);
3487 jw_object_intmax(&jw
, "count_indegree_walked", count_indegree_walked
);
3488 jw_object_intmax(&jw
, "count_topo_walked", count_topo_walked
);
3491 trace2_data_json("topo_walk", the_repository
, "statistics", &jw
);
3496 static inline void test_flag_and_insert(struct prio_queue
*q
, struct commit
*c
, int flag
)
3498 if (c
->object
.flags
& flag
)
3501 c
->object
.flags
|= flag
;
3502 prio_queue_put(q
, c
);
3505 static void explore_walk_step(struct rev_info
*revs
)
3507 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3508 struct commit_list
*p
;
3509 struct commit
*c
= prio_queue_get(&info
->explore_queue
);
3514 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3517 count_explore_walked
++;
3519 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3520 record_author_date(&info
->author_date
, c
);
3522 if (revs
->max_age
!= -1 && (c
->date
< revs
->max_age
))
3523 c
->object
.flags
|= UNINTERESTING
;
3525 if (process_parents(revs
, c
, NULL
, NULL
) < 0)
3528 if (c
->object
.flags
& UNINTERESTING
)
3529 mark_parents_uninteresting(revs
, c
);
3531 for (p
= c
->parents
; p
; p
= p
->next
)
3532 test_flag_and_insert(&info
->explore_queue
, p
->item
, TOPO_WALK_EXPLORED
);
3535 static void explore_to_depth(struct rev_info
*revs
,
3536 timestamp_t gen_cutoff
)
3538 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3540 while ((c
= prio_queue_peek(&info
->explore_queue
)) &&
3541 commit_graph_generation(c
) >= gen_cutoff
)
3542 explore_walk_step(revs
);
3545 static void indegree_walk_step(struct rev_info
*revs
)
3547 struct commit_list
*p
;
3548 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3549 struct commit
*c
= prio_queue_get(&info
->indegree_queue
);
3554 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3557 count_indegree_walked
++;
3559 explore_to_depth(revs
, commit_graph_generation(c
));
3561 for (p
= c
->parents
; p
; p
= p
->next
) {
3562 struct commit
*parent
= p
->item
;
3563 int *pi
= indegree_slab_at(&info
->indegree
, parent
);
3565 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3573 test_flag_and_insert(&info
->indegree_queue
, parent
, TOPO_WALK_INDEGREE
);
3575 if (revs
->first_parent_only
)
3580 static void compute_indegrees_to_depth(struct rev_info
*revs
,
3581 timestamp_t gen_cutoff
)
3583 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3585 while ((c
= prio_queue_peek(&info
->indegree_queue
)) &&
3586 commit_graph_generation(c
) >= gen_cutoff
)
3587 indegree_walk_step(revs
);
3590 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
)
3594 clear_prio_queue(&info
->explore_queue
);
3595 clear_prio_queue(&info
->indegree_queue
);
3596 clear_prio_queue(&info
->topo_queue
);
3597 clear_indegree_slab(&info
->indegree
);
3598 clear_author_date_slab(&info
->author_date
);
3602 static void reset_topo_walk(struct rev_info
*revs
)
3604 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3605 revs
->topo_walk_info
= NULL
;
3608 static void init_topo_walk(struct rev_info
*revs
)
3610 struct topo_walk_info
*info
;
3611 struct commit_list
*list
;
3612 if (revs
->topo_walk_info
)
3613 reset_topo_walk(revs
);
3615 revs
->topo_walk_info
= xmalloc(sizeof(struct topo_walk_info
));
3616 info
= revs
->topo_walk_info
;
3617 memset(info
, 0, sizeof(struct topo_walk_info
));
3619 init_indegree_slab(&info
->indegree
);
3620 memset(&info
->explore_queue
, 0, sizeof(info
->explore_queue
));
3621 memset(&info
->indegree_queue
, 0, sizeof(info
->indegree_queue
));
3622 memset(&info
->topo_queue
, 0, sizeof(info
->topo_queue
));
3624 switch (revs
->sort_order
) {
3625 default: /* REV_SORT_IN_GRAPH_ORDER */
3626 info
->topo_queue
.compare
= NULL
;
3628 case REV_SORT_BY_COMMIT_DATE
:
3629 info
->topo_queue
.compare
= compare_commits_by_commit_date
;
3631 case REV_SORT_BY_AUTHOR_DATE
:
3632 init_author_date_slab(&info
->author_date
);
3633 info
->topo_queue
.compare
= compare_commits_by_author_date
;
3634 info
->topo_queue
.cb_data
= &info
->author_date
;
3638 info
->explore_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3639 info
->indegree_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3641 info
->min_generation
= GENERATION_NUMBER_INFINITY
;
3642 for (list
= revs
->commits
; list
; list
= list
->next
) {
3643 struct commit
*c
= list
->item
;
3644 timestamp_t generation
;
3646 if (repo_parse_commit_gently(revs
->repo
, c
, 1))
3649 test_flag_and_insert(&info
->explore_queue
, c
, TOPO_WALK_EXPLORED
);
3650 test_flag_and_insert(&info
->indegree_queue
, c
, TOPO_WALK_INDEGREE
);
3652 generation
= commit_graph_generation(c
);
3653 if (generation
< info
->min_generation
)
3654 info
->min_generation
= generation
;
3656 *(indegree_slab_at(&info
->indegree
, c
)) = 1;
3658 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3659 record_author_date(&info
->author_date
, c
);
3661 compute_indegrees_to_depth(revs
, info
->min_generation
);
3663 for (list
= revs
->commits
; list
; list
= list
->next
) {
3664 struct commit
*c
= list
->item
;
3666 if (*(indegree_slab_at(&info
->indegree
, c
)) == 1)
3667 prio_queue_put(&info
->topo_queue
, c
);
3671 * This is unfortunate; the initial tips need to be shown
3672 * in the order given from the revision traversal machinery.
3674 if (revs
->sort_order
== REV_SORT_IN_GRAPH_ORDER
)
3675 prio_queue_reverse(&info
->topo_queue
);
3677 if (trace2_is_enabled() && !topo_walk_atexit_registered
) {
3678 atexit(trace2_topo_walk_statistics_atexit
);
3679 topo_walk_atexit_registered
= 1;
3683 static struct commit
*next_topo_commit(struct rev_info
*revs
)
3686 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3688 /* pop next off of topo_queue */
3689 c
= prio_queue_get(&info
->topo_queue
);
3692 *(indegree_slab_at(&info
->indegree
, c
)) = 0;
3697 static void expand_topo_walk(struct rev_info
*revs
, struct commit
*commit
)
3699 struct commit_list
*p
;
3700 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3701 if (process_parents(revs
, commit
, NULL
, NULL
) < 0) {
3702 if (!revs
->ignore_missing_links
)
3703 die("Failed to traverse parents of commit %s",
3704 oid_to_hex(&commit
->object
.oid
));
3707 count_topo_walked
++;
3709 for (p
= commit
->parents
; p
; p
= p
->next
) {
3710 struct commit
*parent
= p
->item
;
3712 timestamp_t generation
;
3714 if (parent
->object
.flags
& UNINTERESTING
)
3717 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3720 generation
= commit_graph_generation(parent
);
3721 if (generation
< info
->min_generation
) {
3722 info
->min_generation
= generation
;
3723 compute_indegrees_to_depth(revs
, info
->min_generation
);
3726 pi
= indegree_slab_at(&info
->indegree
, parent
);
3730 prio_queue_put(&info
->topo_queue
, parent
);
3732 if (revs
->first_parent_only
)
3737 int prepare_revision_walk(struct rev_info
*revs
)
3740 struct object_array old_pending
;
3741 struct commit_list
**next
= &revs
->commits
;
3743 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
3744 revs
->pending
.nr
= 0;
3745 revs
->pending
.alloc
= 0;
3746 revs
->pending
.objects
= NULL
;
3747 for (i
= 0; i
< old_pending
.nr
; i
++) {
3748 struct object_array_entry
*e
= old_pending
.objects
+ i
;
3749 struct commit
*commit
= handle_commit(revs
, e
);
3751 if (!(commit
->object
.flags
& SEEN
)) {
3752 commit
->object
.flags
|= SEEN
;
3753 next
= commit_list_append(commit
, next
);
3757 object_array_clear(&old_pending
);
3759 /* Signal whether we need per-parent treesame decoration */
3760 if (revs
->simplify_merges
||
3761 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
3762 revs
->treesame
.name
= "treesame";
3764 if (revs
->exclude_promisor_objects
) {
3765 for_each_packed_object(mark_uninteresting
, revs
,
3766 FOR_EACH_OBJECT_PROMISOR_ONLY
);
3769 if (!revs
->reflog_info
)
3770 prepare_to_use_bloom_filter(revs
);
3771 if (!revs
->unsorted_input
)
3772 commit_list_sort_by_date(&revs
->commits
);
3775 if (revs
->limited
) {
3776 if (limit_list(revs
) < 0)
3778 if (revs
->topo_order
)
3779 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3780 } else if (revs
->topo_order
)
3781 init_topo_walk(revs
);
3782 if (revs
->line_level_traverse
&& want_ancestry(revs
))
3784 * At the moment we can only do line-level log with parent
3785 * rewriting by performing this expensive pre-filtering step.
3786 * If parent rewriting is not requested, then we rather
3787 * perform the line-level log filtering during the regular
3788 * history traversal.
3790 line_log_filter(revs
);
3791 if (revs
->simplify_merges
)
3792 simplify_merges(revs
);
3793 if (revs
->children
.name
)
3799 static enum rewrite_result
rewrite_one_1(struct rev_info
*revs
,
3801 struct prio_queue
*queue
)
3804 struct commit
*p
= *pp
;
3806 if (process_parents(revs
, p
, NULL
, queue
) < 0)
3807 return rewrite_one_error
;
3808 if (p
->object
.flags
& UNINTERESTING
)
3809 return rewrite_one_ok
;
3810 if (!(p
->object
.flags
& TREESAME
))
3811 return rewrite_one_ok
;
3813 return rewrite_one_noparents
;
3814 if (!(p
= one_relevant_parent(revs
, p
->parents
)))
3815 return rewrite_one_ok
;
3820 static void merge_queue_into_list(struct prio_queue
*q
, struct commit_list
**list
)
3823 struct commit
*item
= prio_queue_peek(q
);
3824 struct commit_list
*p
= *list
;
3826 if (p
&& p
->item
->date
>= item
->date
)
3829 p
= commit_list_insert(item
, list
);
3830 list
= &p
->next
; /* skip newly added item */
3831 prio_queue_get(q
); /* pop item */
3836 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
3838 struct prio_queue queue
= { compare_commits_by_commit_date
};
3839 enum rewrite_result ret
= rewrite_one_1(revs
, pp
, &queue
);
3840 merge_queue_into_list(&queue
, &revs
->commits
);
3841 clear_prio_queue(&queue
);
3845 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
3846 rewrite_parent_fn_t rewrite_parent
)
3848 struct commit_list
**pp
= &commit
->parents
;
3850 struct commit_list
*parent
= *pp
;
3851 switch (rewrite_parent(revs
, &parent
->item
)) {
3852 case rewrite_one_ok
:
3854 case rewrite_one_noparents
:
3857 case rewrite_one_error
:
3862 remove_duplicate_parents(revs
, commit
);
3866 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
3869 const char *encoding
;
3870 const char *message
;
3871 struct strbuf buf
= STRBUF_INIT
;
3873 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
3876 /* Prepend "fake" headers as needed */
3877 if (opt
->grep_filter
.use_reflog_filter
) {
3878 strbuf_addstr(&buf
, "reflog ");
3879 get_reflog_message(&buf
, opt
->reflog_info
);
3880 strbuf_addch(&buf
, '\n');
3884 * We grep in the user's output encoding, under the assumption that it
3885 * is the encoding they are most likely to write their grep pattern
3886 * for. In addition, it means we will match the "notes" encoding below,
3887 * so we will not end up with a buffer that has two different encodings
3890 encoding
= get_log_output_encoding();
3891 message
= repo_logmsg_reencode(the_repository
, commit
, NULL
, encoding
);
3893 /* Copy the commit to temporary if we are using "fake" headers */
3895 strbuf_addstr(&buf
, message
);
3897 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
3898 const char *commit_headers
[] = { "author ", "committer ", NULL
};
3901 strbuf_addstr(&buf
, message
);
3903 apply_mailmap_to_header(&buf
, commit_headers
, opt
->mailmap
);
3906 /* Append "fake" message parts as needed */
3907 if (opt
->show_notes
) {
3909 strbuf_addstr(&buf
, message
);
3910 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
3914 * Find either in the original commit message, or in the temporary.
3915 * Note that we cast away the constness of "message" here. It is
3916 * const because it may come from the cached commit buffer. That's OK,
3917 * because we know that it is modifiable heap memory, and that while
3918 * grep_buffer may modify it for speed, it will restore any
3919 * changes before returning.
3922 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
3924 retval
= grep_buffer(&opt
->grep_filter
,
3925 (char *)message
, strlen(message
));
3926 strbuf_release(&buf
);
3927 repo_unuse_commit_buffer(the_repository
, commit
, message
);
3931 static inline int want_ancestry(const struct rev_info
*revs
)
3933 return (revs
->rewrite_parents
|| revs
->children
.name
);
3937 * Return a timestamp to be used for --since/--until comparisons for this
3938 * commit, based on the revision options.
3940 static timestamp_t
comparison_date(const struct rev_info
*revs
,
3941 struct commit
*commit
)
3943 return revs
->reflog_info
?
3944 get_reflog_timestamp(revs
->reflog_info
) :
3948 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
3950 if (commit
->object
.flags
& SHOWN
)
3951 return commit_ignore
;
3952 if (revs
->unpacked
&& has_object_pack(&commit
->object
.oid
))
3953 return commit_ignore
;
3954 if (revs
->no_kept_objects
) {
3955 if (has_object_kept_pack(&commit
->object
.oid
,
3956 revs
->keep_pack_cache_flags
))
3957 return commit_ignore
;
3959 if (commit
->object
.flags
& UNINTERESTING
)
3960 return commit_ignore
;
3961 if (revs
->line_level_traverse
&& !want_ancestry(revs
)) {
3963 * In case of line-level log with parent rewriting
3964 * prepare_revision_walk() already took care of all line-level
3965 * log filtering, and there is nothing left to do here.
3967 * If parent rewriting was not requested, then this is the
3968 * place to perform the line-level log filtering. Notably,
3969 * this check, though expensive, must come before the other,
3970 * cheaper filtering conditions, because the tracked line
3971 * ranges must be adjusted even when the commit will end up
3972 * being ignored based on other conditions.
3974 if (!line_log_process_ranges_arbitrary_commit(revs
, commit
))
3975 return commit_ignore
;
3977 if (revs
->min_age
!= -1 &&
3978 comparison_date(revs
, commit
) > revs
->min_age
)
3979 return commit_ignore
;
3980 if (revs
->max_age_as_filter
!= -1 &&
3981 comparison_date(revs
, commit
) < revs
->max_age_as_filter
)
3982 return commit_ignore
;
3983 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
3984 int n
= commit_list_count(commit
->parents
);
3985 if ((n
< revs
->min_parents
) ||
3986 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
3987 return commit_ignore
;
3989 if (!commit_match(commit
, revs
))
3990 return commit_ignore
;
3991 if (revs
->prune
&& revs
->dense
) {
3992 /* Commit without changes? */
3993 if (commit
->object
.flags
& TREESAME
) {
3995 struct commit_list
*p
;
3996 /* drop merges unless we want parenthood */
3997 if (!want_ancestry(revs
))
3998 return commit_ignore
;
4000 if (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
))
4004 * If we want ancestry, then need to keep any merges
4005 * between relevant commits to tie together topology.
4006 * For consistency with TREESAME and simplification
4007 * use "relevant" here rather than just INTERESTING,
4008 * to treat bottom commit(s) as part of the topology.
4010 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
4011 if (relevant_commit(p
->item
))
4014 return commit_ignore
;
4020 define_commit_slab(saved_parents
, struct commit_list
*);
4022 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
4025 * You may only call save_parents() once per commit (this is checked
4026 * for non-root commits).
4028 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
4030 struct commit_list
**pp
;
4032 if (!revs
->saved_parents_slab
) {
4033 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
4034 init_saved_parents(revs
->saved_parents_slab
);
4037 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
4040 * When walking with reflogs, we may visit the same commit
4041 * several times: once for each appearance in the reflog.
4043 * In this case, save_parents() will be called multiple times.
4044 * We want to keep only the first set of parents. We need to
4045 * store a sentinel value for an empty (i.e., NULL) parent
4046 * list to distinguish it from a not-yet-saved list, however.
4050 if (commit
->parents
)
4051 *pp
= copy_commit_list(commit
->parents
);
4053 *pp
= EMPTY_PARENT_LIST
;
4056 static void free_saved_parents(struct rev_info
*revs
)
4058 if (revs
->saved_parents_slab
)
4059 clear_saved_parents(revs
->saved_parents_slab
);
4062 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
4064 struct commit_list
*parents
;
4066 if (!revs
->saved_parents_slab
)
4067 return commit
->parents
;
4069 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
4070 if (parents
== EMPTY_PARENT_LIST
)
4075 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
4077 enum commit_action action
= get_commit_action(revs
, commit
);
4079 if (action
== commit_show
&&
4080 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
4082 * --full-diff on simplified parents is no good: it
4083 * will show spurious changes from the commits that
4084 * were elided. So we save the parents on the side
4085 * when --full-diff is in effect.
4087 if (revs
->full_diff
)
4088 save_parents(revs
, commit
);
4089 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
4090 return commit_error
;
4095 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
4097 if (revs
->track_first_time
) {
4099 revs
->track_first_time
= 0;
4101 struct commit_list
*p
;
4102 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
4103 if (p
->item
== NULL
|| /* first commit */
4104 oideq(&p
->item
->object
.oid
, &commit
->object
.oid
))
4106 revs
->linear
= p
!= NULL
;
4108 if (revs
->reverse
) {
4110 commit
->object
.flags
|= TRACK_LINEAR
;
4112 free_commit_list(revs
->previous_parents
);
4113 revs
->previous_parents
= copy_commit_list(commit
->parents
);
4116 static struct commit
*get_revision_1(struct rev_info
*revs
)
4119 struct commit
*commit
;
4121 if (revs
->reflog_info
)
4122 commit
= next_reflog_entry(revs
->reflog_info
);
4123 else if (revs
->topo_walk_info
)
4124 commit
= next_topo_commit(revs
);
4126 commit
= pop_commit(&revs
->commits
);
4131 if (revs
->reflog_info
)
4132 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
4135 * If we haven't done the list limiting, we need to look at
4136 * the parents here. We also need to do the date-based limiting
4137 * that we'd otherwise have done in limit_list().
4139 if (!revs
->limited
) {
4140 if (revs
->max_age
!= -1 &&
4141 comparison_date(revs
, commit
) < revs
->max_age
)
4144 if (revs
->reflog_info
)
4145 try_to_simplify_commit(revs
, commit
);
4146 else if (revs
->topo_walk_info
)
4147 expand_topo_walk(revs
, commit
);
4148 else if (process_parents(revs
, commit
, &revs
->commits
, NULL
) < 0) {
4149 if (!revs
->ignore_missing_links
)
4150 die("Failed to traverse parents of commit %s",
4151 oid_to_hex(&commit
->object
.oid
));
4155 switch (simplify_commit(revs
, commit
)) {
4159 die("Failed to simplify parents of commit %s",
4160 oid_to_hex(&commit
->object
.oid
));
4162 if (revs
->track_linear
)
4163 track_linear(revs
, commit
);
4170 * Return true for entries that have not yet been shown. (This is an
4171 * object_array_each_func_t.)
4173 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data UNUSED
)
4175 return !(entry
->item
->flags
& SHOWN
);
4179 * If array is on the verge of a realloc, garbage-collect any entries
4180 * that have already been shown to try to free up some space.
4182 static void gc_boundary(struct object_array
*array
)
4184 if (array
->nr
== array
->alloc
)
4185 object_array_filter(array
, entry_unshown
, NULL
);
4188 static void create_boundary_commit_list(struct rev_info
*revs
)
4192 struct object_array
*array
= &revs
->boundary_commits
;
4193 struct object_array_entry
*objects
= array
->objects
;
4196 * If revs->commits is non-NULL at this point, an error occurred in
4197 * get_revision_1(). Ignore the error and continue printing the
4198 * boundary commits anyway. (This is what the code has always
4201 free_commit_list(revs
->commits
);
4202 revs
->commits
= NULL
;
4205 * Put all of the actual boundary commits from revs->boundary_commits
4206 * into revs->commits
4208 for (i
= 0; i
< array
->nr
; i
++) {
4209 c
= (struct commit
*)(objects
[i
].item
);
4212 if (!(c
->object
.flags
& CHILD_SHOWN
))
4214 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
4216 c
->object
.flags
|= BOUNDARY
;
4217 commit_list_insert(c
, &revs
->commits
);
4221 * If revs->topo_order is set, sort the boundary commits
4222 * in topological order
4224 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
4227 static struct commit
*get_revision_internal(struct rev_info
*revs
)
4229 struct commit
*c
= NULL
;
4230 struct commit_list
*l
;
4232 if (revs
->boundary
== 2) {
4234 * All of the normal commits have already been returned,
4235 * and we are now returning boundary commits.
4236 * create_boundary_commit_list() has populated
4237 * revs->commits with the remaining commits to return.
4239 c
= pop_commit(&revs
->commits
);
4241 c
->object
.flags
|= SHOWN
;
4246 * If our max_count counter has reached zero, then we are done. We
4247 * don't simply return NULL because we still might need to show
4248 * boundary commits. But we want to avoid calling get_revision_1, which
4249 * might do a considerable amount of work finding the next commit only
4250 * for us to throw it away.
4252 * If it is non-zero, then either we don't have a max_count at all
4253 * (-1), or it is still counting, in which case we decrement.
4255 if (revs
->max_count
) {
4256 c
= get_revision_1(revs
);
4258 while (revs
->skip_count
> 0) {
4260 c
= get_revision_1(revs
);
4266 if (revs
->max_count
> 0)
4271 c
->object
.flags
|= SHOWN
;
4273 if (!revs
->boundary
)
4278 * get_revision_1() runs out the commits, and
4279 * we are done computing the boundaries.
4280 * switch to boundary commits output mode.
4285 * Update revs->commits to contain the list of
4288 create_boundary_commit_list(revs
);
4290 return get_revision_internal(revs
);
4294 * boundary commits are the commits that are parents of the
4295 * ones we got from get_revision_1() but they themselves are
4296 * not returned from get_revision_1(). Before returning
4297 * 'c', we need to mark its parents that they could be boundaries.
4300 for (l
= c
->parents
; l
; l
= l
->next
) {
4302 p
= &(l
->item
->object
);
4303 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
4305 p
->flags
|= CHILD_SHOWN
;
4306 gc_boundary(&revs
->boundary_commits
);
4307 add_object_array(p
, NULL
, &revs
->boundary_commits
);
4313 struct commit
*get_revision(struct rev_info
*revs
)
4316 struct commit_list
*reversed
;
4318 if (revs
->reverse
) {
4320 while ((c
= get_revision_internal(revs
)))
4321 commit_list_insert(c
, &reversed
);
4322 revs
->commits
= reversed
;
4324 revs
->reverse_output_stage
= 1;
4327 if (revs
->reverse_output_stage
) {
4328 c
= pop_commit(&revs
->commits
);
4329 if (revs
->track_linear
)
4330 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
4334 c
= get_revision_internal(revs
);
4335 if (c
&& revs
->graph
)
4336 graph_update(revs
->graph
, c
);
4338 free_saved_parents(revs
);
4339 free_commit_list(revs
->previous_parents
);
4340 revs
->previous_parents
= NULL
;
4345 const char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4347 if (commit
->object
.flags
& BOUNDARY
)
4349 else if (commit
->object
.flags
& UNINTERESTING
)
4351 else if (commit
->object
.flags
& PATCHSAME
)
4353 else if (!revs
|| revs
->left_right
) {
4354 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
4358 } else if (revs
->graph
)
4360 else if (revs
->cherry_mark
)
4365 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4367 const char *mark
= get_revision_mark(revs
, commit
);
4370 fputs(mark
, stdout
);