1 #include "git-compat-util.h"
4 #include "environment.h"
7 #include "object-name.h"
8 #include "object-file.h"
9 #include "object-store-ll.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"
34 #include "read-cache.h"
36 #include "sparse-index.h"
39 #include "commit-reach.h"
40 #include "commit-graph.h"
41 #include "prio-queue.h"
45 #include "json-writer.h"
46 #include "list-objects-filter-options.h"
47 #include "resolve-undo.h"
48 #include "parse-options.h"
49 #include "wildmatch.h"
51 volatile show_early_output_fn_t show_early_output
;
53 static const char *term_bad
;
54 static const char *term_good
;
56 implement_shared_commit_slab(revision_sources
, char *);
58 static inline int want_ancestry(const struct rev_info
*revs
);
60 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
62 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
63 for (const char *p
= name
; *p
&& *p
!= '\n'; p
++)
68 static void mark_blob_uninteresting(struct blob
*blob
)
72 if (blob
->object
.flags
& UNINTERESTING
)
74 blob
->object
.flags
|= UNINTERESTING
;
77 static void mark_tree_contents_uninteresting(struct repository
*r
,
80 struct tree_desc desc
;
81 struct name_entry entry
;
83 if (parse_tree_gently(tree
, 1) < 0)
86 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
87 while (tree_entry(&desc
, &entry
)) {
88 switch (object_type(entry
.mode
)) {
90 mark_tree_uninteresting(r
, lookup_tree(r
, &entry
.oid
));
93 mark_blob_uninteresting(lookup_blob(r
, &entry
.oid
));
96 /* Subproject commit - not in this repository */
102 * We don't care about the tree any more
103 * after it has been marked uninteresting.
105 free_tree_buffer(tree
);
108 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
)
116 if (obj
->flags
& UNINTERESTING
)
118 obj
->flags
|= UNINTERESTING
;
119 mark_tree_contents_uninteresting(r
, tree
);
122 struct path_and_oids_entry
{
123 struct hashmap_entry ent
;
128 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data UNUSED
,
129 const struct hashmap_entry
*eptr
,
130 const struct hashmap_entry
*entry_or_key
,
131 const void *keydata UNUSED
)
133 const struct path_and_oids_entry
*e1
, *e2
;
135 e1
= container_of(eptr
, const struct path_and_oids_entry
, ent
);
136 e2
= container_of(entry_or_key
, const struct path_and_oids_entry
, ent
);
138 return strcmp(e1
->path
, e2
->path
);
141 static void paths_and_oids_clear(struct hashmap
*map
)
143 struct hashmap_iter iter
;
144 struct path_and_oids_entry
*entry
;
146 hashmap_for_each_entry(map
, &iter
, entry
, ent
/* member name */) {
147 oidset_clear(&entry
->trees
);
151 hashmap_clear_and_free(map
, struct path_and_oids_entry
, ent
);
154 static void paths_and_oids_insert(struct hashmap
*map
,
156 const struct object_id
*oid
)
158 int hash
= strhash(path
);
159 struct path_and_oids_entry key
;
160 struct path_and_oids_entry
*entry
;
162 hashmap_entry_init(&key
.ent
, hash
);
164 /* use a shallow copy for the lookup */
165 key
.path
= (char *)path
;
166 oidset_init(&key
.trees
, 0);
168 entry
= hashmap_get_entry(map
, &key
, ent
, NULL
);
170 CALLOC_ARRAY(entry
, 1);
171 hashmap_entry_init(&entry
->ent
, hash
);
172 entry
->path
= xstrdup(key
.path
);
173 oidset_init(&entry
->trees
, 16);
174 hashmap_put(map
, &entry
->ent
);
177 oidset_insert(&entry
->trees
, oid
);
180 static void add_children_by_path(struct repository
*r
,
184 struct tree_desc desc
;
185 struct name_entry entry
;
190 if (parse_tree_gently(tree
, 1) < 0)
193 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
194 while (tree_entry(&desc
, &entry
)) {
195 switch (object_type(entry
.mode
)) {
197 paths_and_oids_insert(map
, entry
.path
, &entry
.oid
);
199 if (tree
->object
.flags
& UNINTERESTING
) {
200 struct tree
*child
= lookup_tree(r
, &entry
.oid
);
202 child
->object
.flags
|= UNINTERESTING
;
206 if (tree
->object
.flags
& UNINTERESTING
) {
207 struct blob
*child
= lookup_blob(r
, &entry
.oid
);
209 child
->object
.flags
|= UNINTERESTING
;
213 /* Subproject commit - not in this repository */
218 free_tree_buffer(tree
);
221 void mark_trees_uninteresting_sparse(struct repository
*r
,
222 struct oidset
*trees
)
224 unsigned has_interesting
= 0, has_uninteresting
= 0;
225 struct hashmap map
= HASHMAP_INIT(path_and_oids_cmp
, NULL
);
226 struct hashmap_iter map_iter
;
227 struct path_and_oids_entry
*entry
;
228 struct object_id
*oid
;
229 struct oidset_iter iter
;
231 oidset_iter_init(trees
, &iter
);
232 while ((!has_interesting
|| !has_uninteresting
) &&
233 (oid
= oidset_iter_next(&iter
))) {
234 struct tree
*tree
= lookup_tree(r
, oid
);
239 if (tree
->object
.flags
& UNINTERESTING
)
240 has_uninteresting
= 1;
245 /* Do not walk unless we have both types of trees. */
246 if (!has_uninteresting
|| !has_interesting
)
249 oidset_iter_init(trees
, &iter
);
250 while ((oid
= oidset_iter_next(&iter
))) {
251 struct tree
*tree
= lookup_tree(r
, oid
);
252 add_children_by_path(r
, tree
, &map
);
255 hashmap_for_each_entry(&map
, &map_iter
, entry
, ent
/* member name */)
256 mark_trees_uninteresting_sparse(r
, &entry
->trees
);
258 paths_and_oids_clear(&map
);
261 struct commit_stack
{
262 struct commit
**items
;
265 #define COMMIT_STACK_INIT { 0 }
267 static void commit_stack_push(struct commit_stack
*stack
, struct commit
*commit
)
269 ALLOC_GROW(stack
->items
, stack
->nr
+ 1, stack
->alloc
);
270 stack
->items
[stack
->nr
++] = commit
;
273 static struct commit
*commit_stack_pop(struct commit_stack
*stack
)
275 return stack
->nr
? stack
->items
[--stack
->nr
] : NULL
;
278 static void commit_stack_clear(struct commit_stack
*stack
)
280 FREE_AND_NULL(stack
->items
);
281 stack
->nr
= stack
->alloc
= 0;
284 static void mark_one_parent_uninteresting(struct rev_info
*revs
, struct commit
*commit
,
285 struct commit_stack
*pending
)
287 struct commit_list
*l
;
289 if (commit
->object
.flags
& UNINTERESTING
)
291 commit
->object
.flags
|= UNINTERESTING
;
294 * Normally we haven't parsed the parent
295 * yet, so we won't have a parent of a parent
296 * here. However, it may turn out that we've
297 * reached this commit some other way (where it
298 * wasn't uninteresting), in which case we need
299 * to mark its parents recursively too..
301 for (l
= commit
->parents
; l
; l
= l
->next
) {
302 commit_stack_push(pending
, l
->item
);
303 if (revs
&& revs
->exclude_first_parent_only
)
308 void mark_parents_uninteresting(struct rev_info
*revs
, struct commit
*commit
)
310 struct commit_stack pending
= COMMIT_STACK_INIT
;
311 struct commit_list
*l
;
313 for (l
= commit
->parents
; l
; l
= l
->next
) {
314 mark_one_parent_uninteresting(revs
, l
->item
, &pending
);
315 if (revs
&& revs
->exclude_first_parent_only
)
319 while (pending
.nr
> 0)
320 mark_one_parent_uninteresting(revs
, commit_stack_pop(&pending
),
323 commit_stack_clear(&pending
);
326 static void add_pending_object_with_path(struct rev_info
*revs
,
328 const char *name
, unsigned mode
,
331 struct interpret_branch_name_options options
= { 0 };
334 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
336 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
337 struct strbuf buf
= STRBUF_INIT
;
338 size_t namelen
= strlen(name
);
339 int len
= repo_interpret_branch_name(the_repository
, name
,
340 namelen
, &buf
, &options
);
342 if (0 < len
&& len
< namelen
&& buf
.len
)
343 strbuf_addstr(&buf
, name
+ len
);
344 add_reflog_for_walk(revs
->reflog_info
,
345 (struct commit
*)obj
,
346 buf
.buf
[0] ? buf
.buf
: name
);
347 strbuf_release(&buf
);
348 return; /* do not add the commit itself */
350 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
353 static void add_pending_object_with_mode(struct rev_info
*revs
,
355 const char *name
, unsigned mode
)
357 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
360 void add_pending_object(struct rev_info
*revs
,
361 struct object
*obj
, const char *name
)
363 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
366 void add_head_to_pending(struct rev_info
*revs
)
368 struct object_id oid
;
370 if (repo_get_oid(the_repository
, "HEAD", &oid
))
372 obj
= parse_object(revs
->repo
, &oid
);
375 add_pending_object(revs
, obj
, "HEAD");
378 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
379 const struct object_id
*oid
,
382 struct object
*object
;
384 object
= parse_object_with_flags(revs
->repo
, oid
,
385 revs
->verify_objects
? 0 :
386 PARSE_OBJECT_SKIP_HASH_CHECK
);
389 if (revs
->ignore_missing
)
391 if (revs
->exclude_promisor_objects
&& is_promisor_object(oid
))
393 die("bad object %s", name
);
395 object
->flags
|= flags
;
399 void add_pending_oid(struct rev_info
*revs
, const char *name
,
400 const struct object_id
*oid
, unsigned int flags
)
402 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
403 add_pending_object(revs
, object
, name
);
406 static struct commit
*handle_commit(struct rev_info
*revs
,
407 struct object_array_entry
*entry
)
409 struct object
*object
= entry
->item
;
410 const char *name
= entry
->name
;
411 const char *path
= entry
->path
;
412 unsigned int mode
= entry
->mode
;
413 unsigned long flags
= object
->flags
;
416 * Tag object? Look what it points to..
418 while (object
->type
== OBJ_TAG
) {
419 struct tag
*tag
= (struct tag
*) object
;
420 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
421 add_pending_object(revs
, object
, tag
->tag
);
422 object
= parse_object(revs
->repo
, get_tagged_oid(tag
));
424 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
426 if (revs
->exclude_promisor_objects
&&
427 is_promisor_object(&tag
->tagged
->oid
))
429 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
431 object
->flags
|= flags
;
433 * We'll handle the tagged object by looping or dropping
434 * through to the non-tag handlers below. Do not
435 * propagate path data from the tag's pending entry.
442 * Commit object? Just return it, we'll do all the complex
445 if (object
->type
== OBJ_COMMIT
) {
446 struct commit
*commit
= (struct commit
*)object
;
448 if (repo_parse_commit(revs
->repo
, commit
) < 0)
449 die("unable to parse commit %s", name
);
450 if (flags
& UNINTERESTING
) {
451 mark_parents_uninteresting(revs
, commit
);
453 if (!revs
->topo_order
|| !generation_numbers_enabled(the_repository
))
457 char **slot
= revision_sources_at(revs
->sources
, commit
);
460 *slot
= xstrdup(name
);
466 * Tree object? Either mark it uninteresting, or add it
467 * to the list of objects to look at later..
469 if (object
->type
== OBJ_TREE
) {
470 struct tree
*tree
= (struct tree
*)object
;
471 if (!revs
->tree_objects
)
473 if (flags
& UNINTERESTING
) {
474 mark_tree_contents_uninteresting(revs
->repo
, tree
);
477 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
482 * Blob object? You know the drill by now..
484 if (object
->type
== OBJ_BLOB
) {
485 if (!revs
->blob_objects
)
487 if (flags
& UNINTERESTING
)
489 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
492 die("%s is unknown object", name
);
495 static int everybody_uninteresting(struct commit_list
*orig
,
496 struct commit
**interesting_cache
)
498 struct commit_list
*list
= orig
;
500 if (*interesting_cache
) {
501 struct commit
*commit
= *interesting_cache
;
502 if (!(commit
->object
.flags
& UNINTERESTING
))
507 struct commit
*commit
= list
->item
;
509 if (commit
->object
.flags
& UNINTERESTING
)
512 *interesting_cache
= commit
;
519 * A definition of "relevant" commit that we can use to simplify limited graphs
520 * by eliminating side branches.
522 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
523 * in our list), or that is a specified BOTTOM commit. Then after computing
524 * a limited list, during processing we can generally ignore boundary merges
525 * coming from outside the graph, (ie from irrelevant parents), and treat
526 * those merges as if they were single-parent. TREESAME is defined to consider
527 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
528 * we don't care if we were !TREESAME to non-graph parents.
530 * Treating bottom commits as relevant ensures that a limited graph's
531 * connection to the actual bottom commit is not viewed as a side branch, but
532 * treated as part of the graph. For example:
534 * ....Z...A---X---o---o---B
538 * When computing "A..B", the A-X connection is at least as important as
539 * Y-X, despite A being flagged UNINTERESTING.
541 * And when computing --ancestry-path "A..B", the A-X connection is more
542 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
544 static inline int relevant_commit(struct commit
*commit
)
546 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
550 * Return a single relevant commit from a parent list. If we are a TREESAME
551 * commit, and this selects one of our parents, then we can safely simplify to
554 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
555 struct commit_list
*orig
)
557 struct commit_list
*list
= orig
;
558 struct commit
*relevant
= NULL
;
564 * For 1-parent commits, or if first-parent-only, then return that
565 * first parent (even if not "relevant" by the above definition).
566 * TREESAME will have been set purely on that parent.
568 if (revs
->first_parent_only
|| !orig
->next
)
572 * For multi-parent commits, identify a sole relevant parent, if any.
573 * If we have only one relevant parent, then TREESAME will be set purely
574 * with regard to that parent, and we can simplify accordingly.
576 * If we have more than one relevant parent, or no relevant parents
577 * (and multiple irrelevant ones), then we can't select a parent here
581 struct commit
*commit
= list
->item
;
583 if (relevant_commit(commit
)) {
593 * The goal is to get REV_TREE_NEW as the result only if the
594 * diff consists of all '+' (and no other changes), REV_TREE_OLD
595 * if the whole diff is removal of old data, and otherwise
596 * REV_TREE_DIFFERENT (of course if the trees are the same we
597 * want REV_TREE_SAME).
599 * The only time we care about the distinction is when
600 * remove_empty_trees is in effect, in which case we care only about
601 * whether the whole change is REV_TREE_NEW, or if there's another type
602 * of change. Which means we can stop the diff early in either of these
605 * 1. We're not using remove_empty_trees at all.
607 * 2. We saw anything except REV_TREE_NEW.
609 #define REV_TREE_SAME 0
610 #define REV_TREE_NEW 1 /* Only new files */
611 #define REV_TREE_OLD 2 /* Only files removed */
612 #define REV_TREE_DIFFERENT 3 /* Mixed changes */
613 static int tree_difference
= REV_TREE_SAME
;
615 static void file_add_remove(struct diff_options
*options
,
617 unsigned mode UNUSED
,
618 const struct object_id
*oid UNUSED
,
619 int oid_valid UNUSED
,
620 const char *fullpath UNUSED
,
621 unsigned dirty_submodule UNUSED
)
623 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
624 struct rev_info
*revs
= options
->change_fn_data
;
626 tree_difference
|= diff
;
627 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
628 options
->flags
.has_changes
= 1;
631 static void file_change(struct diff_options
*options
,
632 unsigned old_mode UNUSED
,
633 unsigned new_mode UNUSED
,
634 const struct object_id
*old_oid UNUSED
,
635 const struct object_id
*new_oid UNUSED
,
636 int old_oid_valid UNUSED
,
637 int new_oid_valid UNUSED
,
638 const char *fullpath UNUSED
,
639 unsigned old_dirty_submodule UNUSED
,
640 unsigned new_dirty_submodule UNUSED
)
642 tree_difference
= REV_TREE_DIFFERENT
;
643 options
->flags
.has_changes
= 1;
646 static int bloom_filter_atexit_registered
;
647 static unsigned int count_bloom_filter_maybe
;
648 static unsigned int count_bloom_filter_definitely_not
;
649 static unsigned int count_bloom_filter_false_positive
;
650 static unsigned int count_bloom_filter_not_present
;
652 static void trace2_bloom_filter_statistics_atexit(void)
654 struct json_writer jw
= JSON_WRITER_INIT
;
656 jw_object_begin(&jw
, 0);
657 jw_object_intmax(&jw
, "filter_not_present", count_bloom_filter_not_present
);
658 jw_object_intmax(&jw
, "maybe", count_bloom_filter_maybe
);
659 jw_object_intmax(&jw
, "definitely_not", count_bloom_filter_definitely_not
);
660 jw_object_intmax(&jw
, "false_positive", count_bloom_filter_false_positive
);
663 trace2_data_json("bloom", the_repository
, "statistics", &jw
);
668 static int forbid_bloom_filters(struct pathspec
*spec
)
670 if (spec
->has_wildcard
)
674 if (spec
->magic
& ~PATHSPEC_LITERAL
)
676 if (spec
->nr
&& (spec
->items
[0].magic
& ~PATHSPEC_LITERAL
))
682 static void prepare_to_use_bloom_filter(struct rev_info
*revs
)
684 struct pathspec_item
*pi
;
685 char *path_alloc
= NULL
;
686 const char *path
, *p
;
688 int path_component_nr
= 1;
693 if (forbid_bloom_filters(&revs
->prune_data
))
696 repo_parse_commit(revs
->repo
, revs
->commits
->item
);
698 revs
->bloom_filter_settings
= get_bloom_filter_settings(revs
->repo
);
699 if (!revs
->bloom_filter_settings
)
702 if (!revs
->pruning
.pathspec
.nr
)
705 pi
= &revs
->pruning
.pathspec
.items
[0];
707 /* remove single trailing slash from path, if needed */
708 if (pi
->len
> 0 && pi
->match
[pi
->len
- 1] == '/') {
709 path_alloc
= xmemdupz(pi
->match
, pi
->len
- 1);
716 revs
->bloom_filter_settings
= NULL
;
724 * At this point, the path is normalized to use Unix-style
725 * path separators. This is required due to how the
726 * changed-path Bloom filters store the paths.
733 revs
->bloom_keys_nr
= path_component_nr
;
734 ALLOC_ARRAY(revs
->bloom_keys
, revs
->bloom_keys_nr
);
736 fill_bloom_key(path
, len
, &revs
->bloom_keys
[0],
737 revs
->bloom_filter_settings
);
738 path_component_nr
= 1;
743 fill_bloom_key(path
, p
- path
,
744 &revs
->bloom_keys
[path_component_nr
++],
745 revs
->bloom_filter_settings
);
749 if (trace2_is_enabled() && !bloom_filter_atexit_registered
) {
750 atexit(trace2_bloom_filter_statistics_atexit
);
751 bloom_filter_atexit_registered
= 1;
757 static int check_maybe_different_in_bloom_filter(struct rev_info
*revs
,
758 struct commit
*commit
)
760 struct bloom_filter
*filter
;
763 if (!revs
->repo
->objects
->commit_graph
)
766 if (commit_graph_generation(commit
) == GENERATION_NUMBER_INFINITY
)
769 filter
= get_bloom_filter(revs
->repo
, commit
);
772 count_bloom_filter_not_present
++;
776 for (j
= 0; result
&& j
< revs
->bloom_keys_nr
; j
++) {
777 result
= bloom_filter_contains(filter
,
778 &revs
->bloom_keys
[j
],
779 revs
->bloom_filter_settings
);
783 count_bloom_filter_maybe
++;
785 count_bloom_filter_definitely_not
++;
790 static int rev_compare_tree(struct rev_info
*revs
,
791 struct commit
*parent
, struct commit
*commit
, int nth_parent
)
793 struct tree
*t1
= repo_get_commit_tree(the_repository
, parent
);
794 struct tree
*t2
= repo_get_commit_tree(the_repository
, commit
);
802 if (revs
->simplify_by_decoration
) {
804 * If we are simplifying by decoration, then the commit
805 * is worth showing if it has a tag pointing at it.
807 if (get_name_decoration(&commit
->object
))
808 return REV_TREE_DIFFERENT
;
810 * A commit that is not pointed by a tag is uninteresting
811 * if we are not limited by path. This means that you will
812 * see the usual "commits that touch the paths" plus any
813 * tagged commit by specifying both --simplify-by-decoration
816 if (!revs
->prune_data
.nr
)
817 return REV_TREE_SAME
;
820 if (revs
->bloom_keys_nr
&& !nth_parent
) {
821 bloom_ret
= check_maybe_different_in_bloom_filter(revs
, commit
);
824 return REV_TREE_SAME
;
827 tree_difference
= REV_TREE_SAME
;
828 revs
->pruning
.flags
.has_changes
= 0;
829 diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "", &revs
->pruning
);
832 if (bloom_ret
== 1 && tree_difference
== REV_TREE_SAME
)
833 count_bloom_filter_false_positive
++;
835 return tree_difference
;
838 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
840 struct tree
*t1
= repo_get_commit_tree(the_repository
, commit
);
845 tree_difference
= REV_TREE_SAME
;
846 revs
->pruning
.flags
.has_changes
= 0;
847 diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
849 return tree_difference
== REV_TREE_SAME
;
852 struct treesame_state
{
853 unsigned int nparents
;
854 unsigned char treesame
[FLEX_ARRAY
];
857 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
859 unsigned n
= commit_list_count(commit
->parents
);
860 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
862 add_decoration(&revs
->treesame
, &commit
->object
, st
);
867 * Must be called immediately after removing the nth_parent from a commit's
868 * parent list, if we are maintaining the per-parent treesame[] decoration.
869 * This does not recalculate the master TREESAME flag - update_treesame()
870 * should be called to update it after a sequence of treesame[] modifications
871 * that may have affected it.
873 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
875 struct treesame_state
*st
;
878 if (!commit
->parents
) {
880 * Have just removed the only parent from a non-merge.
881 * Different handling, as we lack decoration.
884 die("compact_treesame %u", nth_parent
);
885 old_same
= !!(commit
->object
.flags
& TREESAME
);
886 if (rev_same_tree_as_empty(revs
, commit
))
887 commit
->object
.flags
|= TREESAME
;
889 commit
->object
.flags
&= ~TREESAME
;
893 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
894 if (!st
|| nth_parent
>= st
->nparents
)
895 die("compact_treesame %u", nth_parent
);
897 old_same
= st
->treesame
[nth_parent
];
898 memmove(st
->treesame
+ nth_parent
,
899 st
->treesame
+ nth_parent
+ 1,
900 st
->nparents
- nth_parent
- 1);
903 * If we've just become a non-merge commit, update TREESAME
904 * immediately, and remove the no-longer-needed decoration.
905 * If still a merge, defer update until update_treesame().
907 if (--st
->nparents
== 1) {
908 if (commit
->parents
->next
)
909 die("compact_treesame parents mismatch");
910 if (st
->treesame
[0] && revs
->dense
)
911 commit
->object
.flags
|= TREESAME
;
913 commit
->object
.flags
&= ~TREESAME
;
914 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
920 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
922 if (commit
->parents
&& commit
->parents
->next
) {
924 struct treesame_state
*st
;
925 struct commit_list
*p
;
926 unsigned relevant_parents
;
927 unsigned relevant_change
, irrelevant_change
;
929 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
931 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
932 relevant_parents
= 0;
933 relevant_change
= irrelevant_change
= 0;
934 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
935 if (relevant_commit(p
->item
)) {
936 relevant_change
|= !st
->treesame
[n
];
939 irrelevant_change
|= !st
->treesame
[n
];
941 if (relevant_parents
? relevant_change
: irrelevant_change
)
942 commit
->object
.flags
&= ~TREESAME
;
944 commit
->object
.flags
|= TREESAME
;
947 return commit
->object
.flags
& TREESAME
;
950 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
953 * TREESAME is irrelevant unless prune && dense;
954 * if simplify_history is set, we can't have a mixture of TREESAME and
955 * !TREESAME INTERESTING parents (and we don't have treesame[]
956 * decoration anyway);
957 * if first_parent_only is set, then the TREESAME flag is locked
958 * against the first parent (and again we lack treesame[] decoration).
960 return revs
->prune
&& revs
->dense
&&
961 !revs
->simplify_history
&&
962 !revs
->first_parent_only
;
965 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
967 struct commit_list
**pp
, *parent
;
968 struct treesame_state
*ts
= NULL
;
969 int relevant_change
= 0, irrelevant_change
= 0;
970 int relevant_parents
, nth_parent
;
973 * If we don't do pruning, everything is interesting
978 if (!repo_get_commit_tree(the_repository
, commit
))
981 if (!commit
->parents
) {
982 if (rev_same_tree_as_empty(revs
, commit
))
983 commit
->object
.flags
|= TREESAME
;
988 * Normal non-merge commit? If we don't want to make the
989 * history dense, we consider it always to be a change..
991 if (!revs
->dense
&& !commit
->parents
->next
)
994 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
995 (parent
= *pp
) != NULL
;
996 pp
= &parent
->next
, nth_parent
++) {
997 struct commit
*p
= parent
->item
;
998 if (relevant_commit(p
))
1001 if (nth_parent
== 1) {
1003 * This our second loop iteration - so we now know
1004 * we're dealing with a merge.
1006 * Do not compare with later parents when we care only about
1007 * the first parent chain, in order to avoid derailing the
1008 * traversal to follow a side branch that brought everything
1009 * in the path we are limited to by the pathspec.
1011 if (revs
->first_parent_only
)
1014 * If this will remain a potentially-simplifiable
1015 * merge, remember per-parent treesame if needed.
1016 * Initialise the array with the comparison from our
1019 if (revs
->treesame
.name
&&
1020 !revs
->simplify_history
&&
1021 !(commit
->object
.flags
& UNINTERESTING
)) {
1022 ts
= initialise_treesame(revs
, commit
);
1023 if (!(irrelevant_change
|| relevant_change
))
1024 ts
->treesame
[0] = 1;
1027 if (repo_parse_commit(revs
->repo
, p
) < 0)
1028 die("cannot simplify commit %s (because of %s)",
1029 oid_to_hex(&commit
->object
.oid
),
1030 oid_to_hex(&p
->object
.oid
));
1031 switch (rev_compare_tree(revs
, p
, commit
, nth_parent
)) {
1033 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
1034 /* Even if a merge with an uninteresting
1035 * side branch brought the entire change
1036 * we are interested in, we do not want
1037 * to lose the other branches of this
1038 * merge, so we just keep going.
1041 ts
->treesame
[nth_parent
] = 1;
1044 parent
->next
= NULL
;
1045 commit
->parents
= parent
;
1048 * A merge commit is a "diversion" if it is not
1049 * TREESAME to its first parent but is TREESAME
1050 * to a later parent. In the simplified history,
1051 * we "divert" the history walk to the later
1052 * parent. These commits are shown when "show_pulls"
1053 * is enabled, so do not mark the object as
1056 if (!revs
->show_pulls
|| !nth_parent
)
1057 commit
->object
.flags
|= TREESAME
;
1062 if (revs
->remove_empty_trees
&&
1063 rev_same_tree_as_empty(revs
, p
)) {
1064 /* We are adding all the specified
1065 * paths from this parent, so the
1066 * history beyond this parent is not
1067 * interesting. Remove its parents
1068 * (they are grandparents for us).
1069 * IOW, we pretend this parent is a
1072 if (repo_parse_commit(revs
->repo
, p
) < 0)
1073 die("cannot simplify commit %s (invalid %s)",
1074 oid_to_hex(&commit
->object
.oid
),
1075 oid_to_hex(&p
->object
.oid
));
1080 case REV_TREE_DIFFERENT
:
1081 if (relevant_commit(p
))
1082 relevant_change
= 1;
1084 irrelevant_change
= 1;
1087 commit
->object
.flags
|= PULL_MERGE
;
1091 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
1095 * TREESAME is straightforward for single-parent commits. For merge
1096 * commits, it is most useful to define it so that "irrelevant"
1097 * parents cannot make us !TREESAME - if we have any relevant
1098 * parents, then we only consider TREESAMEness with respect to them,
1099 * allowing irrelevant merges from uninteresting branches to be
1100 * simplified away. Only if we have only irrelevant parents do we
1101 * base TREESAME on them. Note that this logic is replicated in
1102 * update_treesame, which should be kept in sync.
1104 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
1105 commit
->object
.flags
|= TREESAME
;
1108 static int process_parents(struct rev_info
*revs
, struct commit
*commit
,
1109 struct commit_list
**list
, struct prio_queue
*queue
)
1111 struct commit_list
*parent
= commit
->parents
;
1112 unsigned pass_flags
;
1114 if (commit
->object
.flags
& ADDED
)
1116 commit
->object
.flags
|= ADDED
;
1118 if (revs
->include_check
&&
1119 !revs
->include_check(commit
, revs
->include_check_data
))
1123 * If the commit is uninteresting, don't try to
1124 * prune parents - we want the maximal uninteresting
1127 * Normally we haven't parsed the parent
1128 * yet, so we won't have a parent of a parent
1129 * here. However, it may turn out that we've
1130 * reached this commit some other way (where it
1131 * wasn't uninteresting), in which case we need
1132 * to mark its parents recursively too..
1134 if (commit
->object
.flags
& UNINTERESTING
) {
1136 struct commit
*p
= parent
->item
;
1137 parent
= parent
->next
;
1139 p
->object
.flags
|= UNINTERESTING
;
1140 if (repo_parse_commit_gently(revs
->repo
, p
, 1) < 0)
1143 mark_parents_uninteresting(revs
, p
);
1144 if (p
->object
.flags
& SEEN
)
1146 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1148 commit_list_insert_by_date(p
, list
);
1150 prio_queue_put(queue
, p
);
1151 if (revs
->exclude_first_parent_only
)
1158 * Ok, the commit wasn't uninteresting. Try to
1159 * simplify the commit history and find the parent
1160 * that has no differences in the path set if one exists.
1162 try_to_simplify_commit(revs
, commit
);
1167 pass_flags
= (commit
->object
.flags
& (SYMMETRIC_LEFT
| ANCESTRY_PATH
));
1169 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
1170 struct commit
*p
= parent
->item
;
1171 int gently
= revs
->ignore_missing_links
||
1172 revs
->exclude_promisor_objects
;
1173 if (repo_parse_commit_gently(revs
->repo
, p
, gently
) < 0) {
1174 if (revs
->exclude_promisor_objects
&&
1175 is_promisor_object(&p
->object
.oid
)) {
1176 if (revs
->first_parent_only
)
1182 if (revs
->sources
) {
1183 char **slot
= revision_sources_at(revs
->sources
, p
);
1186 *slot
= *revision_sources_at(revs
->sources
, commit
);
1188 p
->object
.flags
|= pass_flags
;
1189 if (!(p
->object
.flags
& SEEN
)) {
1190 p
->object
.flags
|= (SEEN
| NOT_USER_GIVEN
);
1192 commit_list_insert_by_date(p
, list
);
1194 prio_queue_put(queue
, p
);
1196 if (revs
->first_parent_only
)
1202 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
1204 struct commit_list
*p
;
1205 int left_count
= 0, right_count
= 0;
1207 struct patch_ids ids
;
1208 unsigned cherry_flag
;
1210 /* First count the commits on the left and on the right */
1211 for (p
= list
; p
; p
= p
->next
) {
1212 struct commit
*commit
= p
->item
;
1213 unsigned flags
= commit
->object
.flags
;
1214 if (flags
& BOUNDARY
)
1216 else if (flags
& SYMMETRIC_LEFT
)
1222 if (!left_count
|| !right_count
)
1225 left_first
= left_count
< right_count
;
1226 init_patch_ids(revs
->repo
, &ids
);
1227 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
1229 /* Compute patch-ids for one side */
1230 for (p
= list
; p
; p
= p
->next
) {
1231 struct commit
*commit
= p
->item
;
1232 unsigned flags
= commit
->object
.flags
;
1234 if (flags
& BOUNDARY
)
1237 * If we have fewer left, left_first is set and we omit
1238 * commits on the right branch in this loop. If we have
1239 * fewer right, we skip the left ones.
1241 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
1243 add_commit_patch_id(commit
, &ids
);
1246 /* either cherry_mark or cherry_pick are true */
1247 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
1249 /* Check the other side */
1250 for (p
= list
; p
; p
= p
->next
) {
1251 struct commit
*commit
= p
->item
;
1252 struct patch_id
*id
;
1253 unsigned flags
= commit
->object
.flags
;
1255 if (flags
& BOUNDARY
)
1258 * If we have fewer left, left_first is set and we omit
1259 * commits on the left branch in this loop.
1261 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
1265 * Have we seen the same patch id?
1267 id
= patch_id_iter_first(commit
, &ids
);
1271 commit
->object
.flags
|= cherry_flag
;
1273 id
->commit
->object
.flags
|= cherry_flag
;
1274 } while ((id
= patch_id_iter_next(id
, &ids
)));
1277 free_patch_ids(&ids
);
1280 /* How many extra uninteresting commits we want to see.. */
1283 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
1284 struct commit
**interesting_cache
)
1287 * No source list at all? We're definitely done..
1293 * Does the destination list contain entries with a date
1294 * before the source list? Definitely _not_ done.
1296 if (date
<= src
->item
->date
)
1300 * Does the source list still have interesting commits in
1301 * it? Definitely not done..
1303 if (!everybody_uninteresting(src
, interesting_cache
))
1306 /* Ok, we're closing in.. */
1311 * "rev-list --ancestry-path=C_0 [--ancestry-path=C_1 ...] A..B"
1312 * computes commits that are ancestors of B but not ancestors of A but
1313 * further limits the result to those that have any of C in their
1314 * ancestry path (i.e. are either ancestors of any of C, descendants
1315 * of any of C, or are any of C). If --ancestry-path is specified with
1316 * no commit, we use all bottom commits for C.
1318 * Before this function is called, ancestors of C will have already
1319 * been marked with ANCESTRY_PATH previously.
1321 * This takes the list of bottom commits and the result of "A..B"
1322 * without --ancestry-path, and limits the latter further to the ones
1323 * that have any of C in their ancestry path. Since the ancestors of C
1324 * have already been marked (a prerequisite of this function), we just
1325 * need to mark the descendants, then exclude any commit that does not
1326 * have any of these marks.
1328 static void limit_to_ancestry(struct commit_list
*bottoms
, struct commit_list
*list
)
1330 struct commit_list
*p
;
1331 struct commit_list
*rlist
= NULL
;
1335 * Reverse the list so that it will be likely that we would
1336 * process parents before children.
1338 for (p
= list
; p
; p
= p
->next
)
1339 commit_list_insert(p
->item
, &rlist
);
1341 for (p
= bottoms
; p
; p
= p
->next
)
1342 p
->item
->object
.flags
|= TMP_MARK
;
1345 * Mark the ones that can reach bottom commits in "list",
1346 * in a bottom-up fashion.
1350 for (p
= rlist
; p
; p
= p
->next
) {
1351 struct commit
*c
= p
->item
;
1352 struct commit_list
*parents
;
1353 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
1355 for (parents
= c
->parents
;
1357 parents
= parents
->next
) {
1358 if (!(parents
->item
->object
.flags
& TMP_MARK
))
1360 c
->object
.flags
|= TMP_MARK
;
1365 } while (made_progress
);
1368 * NEEDSWORK: decide if we want to remove parents that are
1369 * not marked with TMP_MARK from commit->parents for commits
1370 * in the resulting list. We may not want to do that, though.
1374 * The ones that are not marked with either TMP_MARK or
1375 * ANCESTRY_PATH are uninteresting
1377 for (p
= list
; p
; p
= p
->next
) {
1378 struct commit
*c
= p
->item
;
1379 if (c
->object
.flags
& (TMP_MARK
| ANCESTRY_PATH
))
1381 c
->object
.flags
|= UNINTERESTING
;
1384 /* We are done with TMP_MARK and ANCESTRY_PATH */
1385 for (p
= list
; p
; p
= p
->next
)
1386 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1387 for (p
= bottoms
; p
; p
= p
->next
)
1388 p
->item
->object
.flags
&= ~(TMP_MARK
| ANCESTRY_PATH
);
1389 free_commit_list(rlist
);
1393 * Before walking the history, add the set of "negative" refs the
1394 * caller has asked to exclude to the bottom list.
1396 * This is used to compute "rev-list --ancestry-path A..B", as we need
1397 * to filter the result of "A..B" further to the ones that can actually
1400 static void collect_bottom_commits(struct commit_list
*list
,
1401 struct commit_list
**bottom
)
1403 struct commit_list
*elem
;
1404 for (elem
= list
; elem
; elem
= elem
->next
)
1405 if (elem
->item
->object
.flags
& BOTTOM
)
1406 commit_list_insert(elem
->item
, bottom
);
1409 /* Assumes either left_only or right_only is set */
1410 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1412 struct commit_list
*p
;
1414 for (p
= list
; p
; p
= p
->next
) {
1415 struct commit
*commit
= p
->item
;
1417 if (revs
->right_only
) {
1418 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1419 commit
->object
.flags
|= SHOWN
;
1420 } else /* revs->left_only is set */
1421 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1422 commit
->object
.flags
|= SHOWN
;
1426 static int limit_list(struct rev_info
*revs
)
1429 timestamp_t date
= TIME_MAX
;
1430 struct commit_list
*original_list
= revs
->commits
;
1431 struct commit_list
*newlist
= NULL
;
1432 struct commit_list
**p
= &newlist
;
1433 struct commit
*interesting_cache
= NULL
;
1435 if (revs
->ancestry_path_implicit_bottoms
) {
1436 collect_bottom_commits(original_list
,
1437 &revs
->ancestry_path_bottoms
);
1438 if (!revs
->ancestry_path_bottoms
)
1439 die("--ancestry-path given but there are no bottom commits");
1442 while (original_list
) {
1443 struct commit
*commit
= pop_commit(&original_list
);
1444 struct object
*obj
= &commit
->object
;
1445 show_early_output_fn_t show
;
1447 if (commit
== interesting_cache
)
1448 interesting_cache
= NULL
;
1450 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1451 obj
->flags
|= UNINTERESTING
;
1452 if (process_parents(revs
, commit
, &original_list
, NULL
) < 0)
1454 if (obj
->flags
& UNINTERESTING
) {
1455 mark_parents_uninteresting(revs
, commit
);
1456 slop
= still_interesting(original_list
, date
, slop
, &interesting_cache
);
1461 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
) &&
1462 !revs
->line_level_traverse
)
1464 if (revs
->max_age_as_filter
!= -1 &&
1465 (commit
->date
< revs
->max_age_as_filter
) && !revs
->line_level_traverse
)
1467 date
= commit
->date
;
1468 p
= &commit_list_insert(commit
, p
)->next
;
1470 show
= show_early_output
;
1474 show(revs
, newlist
);
1475 show_early_output
= NULL
;
1477 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1478 cherry_pick_list(newlist
, revs
);
1480 if (revs
->left_only
|| revs
->right_only
)
1481 limit_left_right(newlist
, revs
);
1483 if (revs
->ancestry_path
)
1484 limit_to_ancestry(revs
->ancestry_path_bottoms
, newlist
);
1487 * Check if any commits have become TREESAME by some of their parents
1488 * becoming UNINTERESTING.
1490 if (limiting_can_increase_treesame(revs
)) {
1491 struct commit_list
*list
= NULL
;
1492 for (list
= newlist
; list
; list
= list
->next
) {
1493 struct commit
*c
= list
->item
;
1494 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1496 update_treesame(revs
, c
);
1500 free_commit_list(original_list
);
1501 revs
->commits
= newlist
;
1506 * Add an entry to refs->cmdline with the specified information.
1509 static void add_rev_cmdline(struct rev_info
*revs
,
1510 struct object
*item
,
1515 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1516 unsigned int nr
= info
->nr
;
1518 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1519 info
->rev
[nr
].item
= item
;
1520 info
->rev
[nr
].name
= xstrdup(name
);
1521 info
->rev
[nr
].whence
= whence
;
1522 info
->rev
[nr
].flags
= flags
;
1526 static void add_rev_cmdline_list(struct rev_info
*revs
,
1527 struct commit_list
*commit_list
,
1531 while (commit_list
) {
1532 struct object
*object
= &commit_list
->item
->object
;
1533 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1535 commit_list
= commit_list
->next
;
1539 int ref_excluded(const struct ref_exclusions
*exclusions
, const char *path
)
1541 const char *stripped_path
= strip_namespace(path
);
1542 struct string_list_item
*item
;
1544 for_each_string_list_item(item
, &exclusions
->excluded_refs
) {
1545 if (!wildmatch(item
->string
, path
, 0))
1549 if (ref_is_hidden(stripped_path
, path
, &exclusions
->hidden_refs
))
1555 void init_ref_exclusions(struct ref_exclusions
*exclusions
)
1557 struct ref_exclusions blank
= REF_EXCLUSIONS_INIT
;
1558 memcpy(exclusions
, &blank
, sizeof(*exclusions
));
1561 void clear_ref_exclusions(struct ref_exclusions
*exclusions
)
1563 string_list_clear(&exclusions
->excluded_refs
, 0);
1564 string_list_clear(&exclusions
->hidden_refs
, 0);
1565 exclusions
->hidden_refs_configured
= 0;
1568 void add_ref_exclusion(struct ref_exclusions
*exclusions
, const char *exclude
)
1570 string_list_append(&exclusions
->excluded_refs
, exclude
);
1573 struct exclude_hidden_refs_cb
{
1574 struct ref_exclusions
*exclusions
;
1575 const char *section
;
1578 static int hide_refs_config(const char *var
, const char *value
, void *cb_data
)
1580 struct exclude_hidden_refs_cb
*cb
= cb_data
;
1581 cb
->exclusions
->hidden_refs_configured
= 1;
1582 return parse_hide_refs_config(var
, value
, cb
->section
,
1583 &cb
->exclusions
->hidden_refs
);
1586 void exclude_hidden_refs(struct ref_exclusions
*exclusions
, const char *section
)
1588 struct exclude_hidden_refs_cb cb
;
1590 if (strcmp(section
, "fetch") && strcmp(section
, "receive") &&
1591 strcmp(section
, "uploadpack"))
1592 die(_("unsupported section for hidden refs: %s"), section
);
1594 if (exclusions
->hidden_refs_configured
)
1595 die(_("--exclude-hidden= passed more than once"));
1597 cb
.exclusions
= exclusions
;
1598 cb
.section
= section
;
1600 git_config(hide_refs_config
, &cb
);
1603 struct all_refs_cb
{
1605 int warned_bad_reflog
;
1606 struct rev_info
*all_revs
;
1607 const char *name_for_errormsg
;
1608 struct worktree
*wt
;
1611 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1615 struct all_refs_cb
*cb
= cb_data
;
1616 struct object
*object
;
1618 if (ref_excluded(&cb
->all_revs
->ref_excludes
, path
))
1621 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1622 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1623 add_pending_object(cb
->all_revs
, object
, path
);
1627 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1630 cb
->all_revs
= revs
;
1631 cb
->all_flags
= flags
;
1632 revs
->rev_input_given
= 1;
1636 static void handle_refs(struct ref_store
*refs
,
1637 struct rev_info
*revs
, unsigned flags
,
1638 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1640 struct all_refs_cb cb
;
1643 /* this could happen with uninitialized submodules */
1647 init_all_refs_cb(&cb
, revs
, flags
);
1648 for_each(refs
, handle_one_ref
, &cb
);
1651 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1653 struct all_refs_cb
*cb
= cb_data
;
1654 if (!is_null_oid(oid
)) {
1655 struct object
*o
= parse_object(cb
->all_revs
->repo
, oid
);
1657 o
->flags
|= cb
->all_flags
;
1658 /* ??? CMDLINEFLAGS ??? */
1659 add_pending_object(cb
->all_revs
, o
, "");
1661 else if (!cb
->warned_bad_reflog
) {
1662 warning("reflog of '%s' references pruned commits",
1663 cb
->name_for_errormsg
);
1664 cb
->warned_bad_reflog
= 1;
1669 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1670 const char *email UNUSED
,
1671 timestamp_t timestamp UNUSED
,
1673 const char *message UNUSED
,
1676 handle_one_reflog_commit(ooid
, cb_data
);
1677 handle_one_reflog_commit(noid
, cb_data
);
1681 static int handle_one_reflog(const char *refname_in_wt
,
1682 const struct object_id
*oid UNUSED
,
1683 int flag UNUSED
, void *cb_data
)
1685 struct all_refs_cb
*cb
= cb_data
;
1686 struct strbuf refname
= STRBUF_INIT
;
1688 cb
->warned_bad_reflog
= 0;
1689 strbuf_worktree_ref(cb
->wt
, &refname
, refname_in_wt
);
1690 cb
->name_for_errormsg
= refname
.buf
;
1691 refs_for_each_reflog_ent(get_main_ref_store(the_repository
),
1693 handle_one_reflog_ent
, cb_data
);
1694 strbuf_release(&refname
);
1698 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1700 struct worktree
**worktrees
, **p
;
1702 worktrees
= get_worktrees();
1703 for (p
= worktrees
; *p
; p
++) {
1704 struct worktree
*wt
= *p
;
1710 refs_for_each_reflog(get_worktree_ref_store(wt
),
1714 free_worktrees(worktrees
);
1717 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1719 struct all_refs_cb cb
;
1722 cb
.all_flags
= flags
;
1724 for_each_reflog(handle_one_reflog
, &cb
);
1726 if (!revs
->single_worktree
)
1727 add_other_reflogs_to_pending(&cb
);
1730 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1731 struct strbuf
*path
, unsigned int flags
)
1733 size_t baselen
= path
->len
;
1736 if (it
->entry_count
>= 0) {
1737 struct tree
*tree
= lookup_tree(revs
->repo
, &it
->oid
);
1738 tree
->object
.flags
|= flags
;
1739 add_pending_object_with_path(revs
, &tree
->object
, "",
1743 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1744 struct cache_tree_sub
*sub
= it
->down
[i
];
1745 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1746 add_cache_tree(sub
->cache_tree
, revs
, path
, flags
);
1747 strbuf_setlen(path
, baselen
);
1752 static void add_resolve_undo_to_pending(struct index_state
*istate
, struct rev_info
*revs
)
1754 struct string_list_item
*item
;
1755 struct string_list
*resolve_undo
= istate
->resolve_undo
;
1760 for_each_string_list_item(item
, resolve_undo
) {
1761 const char *path
= item
->string
;
1762 struct resolve_undo_info
*ru
= item
->util
;
1767 for (i
= 0; i
< 3; i
++) {
1770 if (!ru
->mode
[i
] || !S_ISREG(ru
->mode
[i
]))
1773 blob
= lookup_blob(revs
->repo
, &ru
->oid
[i
]);
1775 warning(_("resolve-undo records `%s` which is missing"),
1776 oid_to_hex(&ru
->oid
[i
]));
1779 add_pending_object_with_path(revs
, &blob
->object
, "",
1785 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1786 struct index_state
*istate
,
1791 /* TODO: audit for interaction with sparse-index. */
1792 ensure_full_index(istate
);
1793 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1794 struct cache_entry
*ce
= istate
->cache
[i
];
1797 if (S_ISGITLINK(ce
->ce_mode
))
1800 blob
= lookup_blob(revs
->repo
, &ce
->oid
);
1802 die("unable to add index blob to traversal");
1803 blob
->object
.flags
|= flags
;
1804 add_pending_object_with_path(revs
, &blob
->object
, "",
1805 ce
->ce_mode
, ce
->name
);
1808 if (istate
->cache_tree
) {
1809 struct strbuf path
= STRBUF_INIT
;
1810 add_cache_tree(istate
->cache_tree
, revs
, &path
, flags
);
1811 strbuf_release(&path
);
1814 add_resolve_undo_to_pending(istate
, revs
);
1817 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1819 struct worktree
**worktrees
, **p
;
1821 repo_read_index(revs
->repo
);
1822 do_add_index_objects_to_pending(revs
, revs
->repo
->index
, flags
);
1824 if (revs
->single_worktree
)
1827 worktrees
= get_worktrees();
1828 for (p
= worktrees
; *p
; p
++) {
1829 struct worktree
*wt
= *p
;
1830 struct index_state istate
= INDEX_STATE_INIT(revs
->repo
);
1833 continue; /* current index already taken care of */
1835 if (read_index_from(&istate
,
1836 worktree_git_path(wt
, "index"),
1837 get_worktree_git_dir(wt
)) > 0)
1838 do_add_index_objects_to_pending(revs
, &istate
, flags
);
1839 discard_index(&istate
);
1841 free_worktrees(worktrees
);
1844 struct add_alternate_refs_data
{
1845 struct rev_info
*revs
;
1849 static void add_one_alternate_ref(const struct object_id
*oid
,
1852 const char *name
= ".alternate";
1853 struct add_alternate_refs_data
*data
= vdata
;
1856 obj
= get_reference(data
->revs
, name
, oid
, data
->flags
);
1857 add_rev_cmdline(data
->revs
, obj
, name
, REV_CMD_REV
, data
->flags
);
1858 add_pending_object(data
->revs
, obj
, name
);
1861 static void add_alternate_refs_to_pending(struct rev_info
*revs
,
1864 struct add_alternate_refs_data data
;
1867 for_each_alternate_ref(add_one_alternate_ref
, &data
);
1870 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1873 struct object_id oid
;
1875 struct commit
*commit
;
1876 struct commit_list
*parents
;
1878 const char *arg
= arg_
;
1881 flags
^= UNINTERESTING
| BOTTOM
;
1884 if (repo_get_oid_committish(the_repository
, arg
, &oid
))
1887 it
= get_reference(revs
, arg
, &oid
, 0);
1888 if (!it
&& revs
->ignore_missing
)
1890 if (it
->type
!= OBJ_TAG
)
1892 if (!((struct tag
*)it
)->tagged
)
1894 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1896 if (it
->type
!= OBJ_COMMIT
)
1898 commit
= (struct commit
*)it
;
1899 if (exclude_parent
&&
1900 exclude_parent
> commit_list_count(commit
->parents
))
1902 for (parents
= commit
->parents
, parent_number
= 1;
1904 parents
= parents
->next
, parent_number
++) {
1905 if (exclude_parent
&& parent_number
!= exclude_parent
)
1908 it
= &parents
->item
->object
;
1910 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1911 add_pending_object(revs
, it
, arg
);
1916 void repo_init_revisions(struct repository
*r
,
1917 struct rev_info
*revs
,
1920 struct rev_info blank
= REV_INFO_INIT
;
1921 memcpy(revs
, &blank
, sizeof(*revs
));
1924 revs
->pruning
.repo
= r
;
1925 revs
->pruning
.add_remove
= file_add_remove
;
1926 revs
->pruning
.change
= file_change
;
1927 revs
->pruning
.change_fn_data
= revs
;
1928 revs
->prefix
= prefix
;
1930 grep_init(&revs
->grep_filter
, revs
->repo
);
1931 revs
->grep_filter
.status_only
= 1;
1933 repo_diff_setup(revs
->repo
, &revs
->diffopt
);
1934 if (prefix
&& !revs
->diffopt
.prefix
) {
1935 revs
->diffopt
.prefix
= prefix
;
1936 revs
->diffopt
.prefix_length
= strlen(prefix
);
1939 init_display_notes(&revs
->notes_opt
);
1940 list_objects_filter_init(&revs
->filter
);
1941 init_ref_exclusions(&revs
->ref_excludes
);
1944 static void add_pending_commit_list(struct rev_info
*revs
,
1945 struct commit_list
*commit_list
,
1948 while (commit_list
) {
1949 struct object
*object
= &commit_list
->item
->object
;
1950 object
->flags
|= flags
;
1951 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1952 commit_list
= commit_list
->next
;
1956 static void prepare_show_merge(struct rev_info
*revs
)
1958 struct commit_list
*bases
;
1959 struct commit
*head
, *other
;
1960 struct object_id oid
;
1961 const char **prune
= NULL
;
1962 int i
, prune_num
= 1; /* counting terminating NULL */
1963 struct index_state
*istate
= revs
->repo
->index
;
1965 if (repo_get_oid(the_repository
, "HEAD", &oid
))
1966 die("--merge without HEAD?");
1967 head
= lookup_commit_or_die(&oid
, "HEAD");
1968 if (repo_get_oid(the_repository
, "MERGE_HEAD", &oid
))
1969 die("--merge without MERGE_HEAD?");
1970 other
= lookup_commit_or_die(&oid
, "MERGE_HEAD");
1971 add_pending_object(revs
, &head
->object
, "HEAD");
1972 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1973 bases
= repo_get_merge_bases(the_repository
, head
, other
);
1974 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
1975 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
1976 free_commit_list(bases
);
1977 head
->object
.flags
|= SYMMETRIC_LEFT
;
1979 if (!istate
->cache_nr
)
1980 repo_read_index(revs
->repo
);
1981 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1982 const struct cache_entry
*ce
= istate
->cache
[i
];
1985 if (ce_path_match(istate
, ce
, &revs
->prune_data
, NULL
)) {
1987 REALLOC_ARRAY(prune
, prune_num
);
1988 prune
[prune_num
-2] = ce
->name
;
1989 prune
[prune_num
-1] = NULL
;
1991 while ((i
+1 < istate
->cache_nr
) &&
1992 ce_same_name(ce
, istate
->cache
[i
+1]))
1995 clear_pathspec(&revs
->prune_data
);
1996 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1997 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
2001 static int dotdot_missing(const char *arg
, char *dotdot
,
2002 struct rev_info
*revs
, int symmetric
)
2004 if (revs
->ignore_missing
)
2006 /* de-munge so we report the full argument */
2009 ? "Invalid symmetric difference expression %s"
2010 : "Invalid revision range %s", arg
);
2013 static int handle_dotdot_1(const char *arg
, char *dotdot
,
2014 struct rev_info
*revs
, int flags
,
2015 int cant_be_filename
,
2016 struct object_context
*a_oc
,
2017 struct object_context
*b_oc
)
2019 const char *a_name
, *b_name
;
2020 struct object_id a_oid
, b_oid
;
2021 struct object
*a_obj
, *b_obj
;
2022 unsigned int a_flags
, b_flags
;
2024 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
2025 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
2031 b_name
= dotdot
+ 2;
2032 if (*b_name
== '.') {
2039 if (get_oid_with_context(revs
->repo
, a_name
, oc_flags
, &a_oid
, a_oc
) ||
2040 get_oid_with_context(revs
->repo
, b_name
, oc_flags
, &b_oid
, b_oc
))
2043 if (!cant_be_filename
) {
2045 verify_non_filename(revs
->prefix
, arg
);
2049 a_obj
= parse_object(revs
->repo
, &a_oid
);
2050 b_obj
= parse_object(revs
->repo
, &b_oid
);
2051 if (!a_obj
|| !b_obj
)
2052 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2057 a_flags
= flags_exclude
;
2059 /* A...B -- find merge bases between the two */
2060 struct commit
*a
, *b
;
2061 struct commit_list
*exclude
;
2063 a
= lookup_commit_reference(revs
->repo
, &a_obj
->oid
);
2064 b
= lookup_commit_reference(revs
->repo
, &b_obj
->oid
);
2066 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
2068 exclude
= repo_get_merge_bases(the_repository
, a
, b
);
2069 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
2071 add_pending_commit_list(revs
, exclude
, flags_exclude
);
2072 free_commit_list(exclude
);
2075 a_flags
= flags
| SYMMETRIC_LEFT
;
2078 a_obj
->flags
|= a_flags
;
2079 b_obj
->flags
|= b_flags
;
2080 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
2081 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
2082 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
2083 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
2087 static int handle_dotdot(const char *arg
,
2088 struct rev_info
*revs
, int flags
,
2089 int cant_be_filename
)
2091 struct object_context a_oc
, b_oc
;
2092 char *dotdot
= strstr(arg
, "..");
2098 memset(&a_oc
, 0, sizeof(a_oc
));
2099 memset(&b_oc
, 0, sizeof(b_oc
));
2102 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
2112 static int handle_revision_arg_1(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2114 struct object_context oc
;
2116 struct object
*object
;
2117 struct object_id oid
;
2119 const char *arg
= arg_
;
2120 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
2121 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
2123 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
2125 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
2127 * Just ".."? That is not a range but the
2128 * pathspec for the parent directory.
2133 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
2136 mark
= strstr(arg
, "^@");
2137 if (mark
&& !mark
[2]) {
2139 if (add_parents_only(revs
, arg
, flags
, 0))
2143 mark
= strstr(arg
, "^!");
2144 if (mark
&& !mark
[2]) {
2146 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
2149 mark
= strstr(arg
, "^-");
2151 int exclude_parent
= 1;
2154 if (strtol_i(mark
+ 2, 10, &exclude_parent
) ||
2160 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
2166 local_flags
= UNINTERESTING
| BOTTOM
;
2170 if (revarg_opt
& REVARG_COMMITTISH
)
2171 get_sha1_flags
|= GET_OID_COMMITTISH
;
2173 if (get_oid_with_context(revs
->repo
, arg
, get_sha1_flags
, &oid
, &oc
))
2174 return revs
->ignore_missing
? 0 : -1;
2175 if (!cant_be_filename
)
2176 verify_non_filename(revs
->prefix
, arg
);
2177 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
2179 return revs
->ignore_missing
? 0 : -1;
2180 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
2181 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
2186 int handle_revision_arg(const char *arg
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
2188 int ret
= handle_revision_arg_1(arg
, revs
, flags
, revarg_opt
);
2190 revs
->rev_input_given
= 1;
2194 static void read_pathspec_from_stdin(struct strbuf
*sb
,
2195 struct strvec
*prune
)
2197 while (strbuf_getline(sb
, stdin
) != EOF
)
2198 strvec_push(prune
, sb
->buf
);
2201 static void read_revisions_from_stdin(struct rev_info
*revs
,
2202 struct strvec
*prune
)
2205 int seen_dashdash
= 0;
2208 save_warning
= warn_on_object_refname_ambiguity
;
2209 warn_on_object_refname_ambiguity
= 0;
2211 strbuf_init(&sb
, 1000);
2212 while (strbuf_getline(&sb
, stdin
) != EOF
) {
2216 if (sb
.buf
[0] == '-') {
2217 if (len
== 2 && sb
.buf
[1] == '-') {
2221 die("options not supported in --stdin mode");
2223 if (handle_revision_arg(sb
.buf
, revs
, 0,
2224 REVARG_CANNOT_BE_FILENAME
))
2225 die("bad revision '%s'", sb
.buf
);
2228 read_pathspec_from_stdin(&sb
, prune
);
2230 strbuf_release(&sb
);
2231 warn_on_object_refname_ambiguity
= save_warning
;
2234 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
2236 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
2239 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
2241 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
2244 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
2246 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
2249 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
2250 int *unkc
, const char **unkv
,
2251 const struct setup_revision_opt
* opt
)
2253 const char *arg
= argv
[0];
2254 const char *optarg
= NULL
;
2256 const unsigned hexsz
= the_hash_algo
->hexsz
;
2258 /* pseudo revision arguments */
2259 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
2260 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
2261 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
2262 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
2263 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
2264 !strcmp(arg
, "--indexed-objects") ||
2265 !strcmp(arg
, "--alternate-refs") ||
2266 starts_with(arg
, "--exclude=") || starts_with(arg
, "--exclude-hidden=") ||
2267 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
2268 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
2270 unkv
[(*unkc
)++] = arg
;
2274 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
2275 revs
->max_count
= atoi(optarg
);
2278 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
2279 revs
->skip_count
= atoi(optarg
);
2281 } else if ((*arg
== '-') && isdigit(arg
[1])) {
2282 /* accept -<digit>, like traditional "head" */
2283 if (strtol_i(arg
+ 1, 10, &revs
->max_count
) < 0 ||
2284 revs
->max_count
< 0)
2285 die("'%s': not a non-negative integer", arg
+ 1);
2287 } else if (!strcmp(arg
, "-n")) {
2289 return error("-n requires an argument");
2290 revs
->max_count
= atoi(argv
[1]);
2293 } else if (skip_prefix(arg
, "-n", &optarg
)) {
2294 revs
->max_count
= atoi(optarg
);
2296 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
2297 revs
->max_age
= atoi(optarg
);
2299 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
2300 revs
->max_age
= approxidate(optarg
);
2302 } else if ((argcount
= parse_long_opt("since-as-filter", argv
, &optarg
))) {
2303 revs
->max_age_as_filter
= approxidate(optarg
);
2305 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
2306 revs
->max_age
= approxidate(optarg
);
2308 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
2309 revs
->min_age
= atoi(optarg
);
2311 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
2312 revs
->min_age
= approxidate(optarg
);
2314 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
2315 revs
->min_age
= approxidate(optarg
);
2317 } else if (!strcmp(arg
, "--first-parent")) {
2318 revs
->first_parent_only
= 1;
2319 } else if (!strcmp(arg
, "--exclude-first-parent-only")) {
2320 revs
->exclude_first_parent_only
= 1;
2321 } else if (!strcmp(arg
, "--ancestry-path")) {
2322 revs
->ancestry_path
= 1;
2323 revs
->simplify_history
= 0;
2325 revs
->ancestry_path_implicit_bottoms
= 1;
2326 } else if (skip_prefix(arg
, "--ancestry-path=", &optarg
)) {
2328 struct object_id oid
;
2329 const char *msg
= _("could not get commit for ancestry-path argument %s");
2331 revs
->ancestry_path
= 1;
2332 revs
->simplify_history
= 0;
2335 if (repo_get_oid_committish(revs
->repo
, optarg
, &oid
))
2336 return error(msg
, optarg
);
2337 get_reference(revs
, optarg
, &oid
, ANCESTRY_PATH
);
2338 c
= lookup_commit_reference(revs
->repo
, &oid
);
2340 return error(msg
, optarg
);
2341 commit_list_insert(c
, &revs
->ancestry_path_bottoms
);
2342 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
2343 init_reflog_walk(&revs
->reflog_info
);
2344 } else if (!strcmp(arg
, "--default")) {
2346 return error("bad --default argument");
2347 revs
->def
= argv
[1];
2349 } else if (!strcmp(arg
, "--merge")) {
2350 revs
->show_merge
= 1;
2351 } else if (!strcmp(arg
, "--topo-order")) {
2352 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
2353 revs
->topo_order
= 1;
2354 } else if (!strcmp(arg
, "--simplify-merges")) {
2355 revs
->simplify_merges
= 1;
2356 revs
->topo_order
= 1;
2357 revs
->rewrite_parents
= 1;
2358 revs
->simplify_history
= 0;
2360 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
2361 revs
->simplify_merges
= 1;
2362 revs
->topo_order
= 1;
2363 revs
->rewrite_parents
= 1;
2364 revs
->simplify_history
= 0;
2365 revs
->simplify_by_decoration
= 1;
2368 } else if (!strcmp(arg
, "--date-order")) {
2369 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
2370 revs
->topo_order
= 1;
2371 } else if (!strcmp(arg
, "--author-date-order")) {
2372 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
2373 revs
->topo_order
= 1;
2374 } else if (!strcmp(arg
, "--early-output")) {
2375 revs
->early_output
= 100;
2376 revs
->topo_order
= 1;
2377 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
2378 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
2379 die("'%s': not a non-negative integer", optarg
);
2380 revs
->topo_order
= 1;
2381 } else if (!strcmp(arg
, "--parents")) {
2382 revs
->rewrite_parents
= 1;
2383 revs
->print_parents
= 1;
2384 } else if (!strcmp(arg
, "--dense")) {
2386 } else if (!strcmp(arg
, "--sparse")) {
2388 } else if (!strcmp(arg
, "--in-commit-order")) {
2389 revs
->tree_blobs_in_commit_order
= 1;
2390 } else if (!strcmp(arg
, "--remove-empty")) {
2391 revs
->remove_empty_trees
= 1;
2392 } else if (!strcmp(arg
, "--merges")) {
2393 revs
->min_parents
= 2;
2394 } else if (!strcmp(arg
, "--no-merges")) {
2395 revs
->max_parents
= 1;
2396 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
2397 revs
->min_parents
= atoi(optarg
);
2398 } else if (!strcmp(arg
, "--no-min-parents")) {
2399 revs
->min_parents
= 0;
2400 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
2401 revs
->max_parents
= atoi(optarg
);
2402 } else if (!strcmp(arg
, "--no-max-parents")) {
2403 revs
->max_parents
= -1;
2404 } else if (!strcmp(arg
, "--boundary")) {
2406 } else if (!strcmp(arg
, "--left-right")) {
2407 revs
->left_right
= 1;
2408 } else if (!strcmp(arg
, "--left-only")) {
2409 if (revs
->right_only
)
2410 die("--left-only is incompatible with --right-only"
2412 revs
->left_only
= 1;
2413 } else if (!strcmp(arg
, "--right-only")) {
2414 if (revs
->left_only
)
2415 die(_("options '%s' and '%s' cannot be used together"), "--right-only", "--left-only");
2416 revs
->right_only
= 1;
2417 } else if (!strcmp(arg
, "--cherry")) {
2418 if (revs
->left_only
)
2419 die(_("options '%s' and '%s' cannot be used together"), "--cherry", "--left-only");
2420 revs
->cherry_mark
= 1;
2421 revs
->right_only
= 1;
2422 revs
->max_parents
= 1;
2424 } else if (!strcmp(arg
, "--count")) {
2426 } else if (!strcmp(arg
, "--cherry-mark")) {
2427 if (revs
->cherry_pick
)
2428 die(_("options '%s' and '%s' cannot be used together"), "--cherry-mark", "--cherry-pick");
2429 revs
->cherry_mark
= 1;
2430 revs
->limited
= 1; /* needs limit_list() */
2431 } else if (!strcmp(arg
, "--cherry-pick")) {
2432 if (revs
->cherry_mark
)
2433 die(_("options '%s' and '%s' cannot be used together"), "--cherry-pick", "--cherry-mark");
2434 revs
->cherry_pick
= 1;
2436 } else if (!strcmp(arg
, "--objects")) {
2437 revs
->tag_objects
= 1;
2438 revs
->tree_objects
= 1;
2439 revs
->blob_objects
= 1;
2440 } else if (!strcmp(arg
, "--objects-edge")) {
2441 revs
->tag_objects
= 1;
2442 revs
->tree_objects
= 1;
2443 revs
->blob_objects
= 1;
2444 revs
->edge_hint
= 1;
2445 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
2446 revs
->tag_objects
= 1;
2447 revs
->tree_objects
= 1;
2448 revs
->blob_objects
= 1;
2449 revs
->edge_hint
= 1;
2450 revs
->edge_hint_aggressive
= 1;
2451 } else if (!strcmp(arg
, "--verify-objects")) {
2452 revs
->tag_objects
= 1;
2453 revs
->tree_objects
= 1;
2454 revs
->blob_objects
= 1;
2455 revs
->verify_objects
= 1;
2456 disable_commit_graph(revs
->repo
);
2457 } else if (!strcmp(arg
, "--unpacked")) {
2459 } else if (starts_with(arg
, "--unpacked=")) {
2460 die(_("--unpacked=<packfile> no longer supported"));
2461 } else if (!strcmp(arg
, "--no-kept-objects")) {
2462 revs
->no_kept_objects
= 1;
2463 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2464 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2465 } else if (skip_prefix(arg
, "--no-kept-objects=", &optarg
)) {
2466 revs
->no_kept_objects
= 1;
2467 if (!strcmp(optarg
, "in-core"))
2468 revs
->keep_pack_cache_flags
|= IN_CORE_KEEP_PACKS
;
2469 if (!strcmp(optarg
, "on-disk"))
2470 revs
->keep_pack_cache_flags
|= ON_DISK_KEEP_PACKS
;
2471 } else if (!strcmp(arg
, "-r")) {
2473 revs
->diffopt
.flags
.recursive
= 1;
2474 } else if (!strcmp(arg
, "-t")) {
2476 revs
->diffopt
.flags
.recursive
= 1;
2477 revs
->diffopt
.flags
.tree_in_recursive
= 1;
2478 } else if ((argcount
= diff_merges_parse_opts(revs
, argv
))) {
2480 } else if (!strcmp(arg
, "-v")) {
2481 revs
->verbose_header
= 1;
2482 } else if (!strcmp(arg
, "--pretty")) {
2483 revs
->verbose_header
= 1;
2484 revs
->pretty_given
= 1;
2485 get_commit_format(NULL
, revs
);
2486 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
2487 skip_prefix(arg
, "--format=", &optarg
)) {
2489 * Detached form ("--pretty X" as opposed to "--pretty=X")
2490 * not allowed, since the argument is optional.
2492 revs
->verbose_header
= 1;
2493 revs
->pretty_given
= 1;
2494 get_commit_format(optarg
, revs
);
2495 } else if (!strcmp(arg
, "--expand-tabs")) {
2496 revs
->expand_tabs_in_log
= 8;
2497 } else if (!strcmp(arg
, "--no-expand-tabs")) {
2498 revs
->expand_tabs_in_log
= 0;
2499 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
2501 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
2502 die("'%s': not a non-negative integer", arg
);
2503 revs
->expand_tabs_in_log
= val
;
2504 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
2505 enable_default_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2506 revs
->show_notes_given
= 1;
2507 } else if (!strcmp(arg
, "--show-signature")) {
2508 revs
->show_signature
= 1;
2509 } else if (!strcmp(arg
, "--no-show-signature")) {
2510 revs
->show_signature
= 0;
2511 } else if (!strcmp(arg
, "--show-linear-break")) {
2512 revs
->break_bar
= " ..........";
2513 revs
->track_linear
= 1;
2514 revs
->track_first_time
= 1;
2515 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
2516 revs
->break_bar
= xstrdup(optarg
);
2517 revs
->track_linear
= 1;
2518 revs
->track_first_time
= 1;
2519 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
2520 skip_prefix(arg
, "--notes=", &optarg
)) {
2521 if (starts_with(arg
, "--show-notes=") &&
2522 revs
->notes_opt
.use_default_notes
< 0)
2523 revs
->notes_opt
.use_default_notes
= 1;
2524 enable_ref_display_notes(&revs
->notes_opt
, &revs
->show_notes
, optarg
);
2525 revs
->show_notes_given
= 1;
2526 } else if (!strcmp(arg
, "--no-notes")) {
2527 disable_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2528 revs
->show_notes_given
= 1;
2529 } else if (!strcmp(arg
, "--standard-notes")) {
2530 revs
->show_notes_given
= 1;
2531 revs
->notes_opt
.use_default_notes
= 1;
2532 } else if (!strcmp(arg
, "--no-standard-notes")) {
2533 revs
->notes_opt
.use_default_notes
= 0;
2534 } else if (!strcmp(arg
, "--oneline")) {
2535 revs
->verbose_header
= 1;
2536 get_commit_format("oneline", revs
);
2537 revs
->pretty_given
= 1;
2538 revs
->abbrev_commit
= 1;
2539 } else if (!strcmp(arg
, "--graph")) {
2540 graph_clear(revs
->graph
);
2541 revs
->graph
= graph_init(revs
);
2542 } else if (!strcmp(arg
, "--no-graph")) {
2543 graph_clear(revs
->graph
);
2545 } else if (!strcmp(arg
, "--encode-email-headers")) {
2546 revs
->encode_email_headers
= 1;
2547 } else if (!strcmp(arg
, "--no-encode-email-headers")) {
2548 revs
->encode_email_headers
= 0;
2549 } else if (!strcmp(arg
, "--root")) {
2550 revs
->show_root_diff
= 1;
2551 } else if (!strcmp(arg
, "--no-commit-id")) {
2552 revs
->no_commit_id
= 1;
2553 } else if (!strcmp(arg
, "--always")) {
2554 revs
->always_show_header
= 1;
2555 } else if (!strcmp(arg
, "--no-abbrev")) {
2557 } else if (!strcmp(arg
, "--abbrev")) {
2558 revs
->abbrev
= DEFAULT_ABBREV
;
2559 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2560 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2561 if (revs
->abbrev
< MINIMUM_ABBREV
)
2562 revs
->abbrev
= MINIMUM_ABBREV
;
2563 else if (revs
->abbrev
> hexsz
)
2564 revs
->abbrev
= hexsz
;
2565 } else if (!strcmp(arg
, "--abbrev-commit")) {
2566 revs
->abbrev_commit
= 1;
2567 revs
->abbrev_commit_given
= 1;
2568 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2569 revs
->abbrev_commit
= 0;
2570 } else if (!strcmp(arg
, "--full-diff")) {
2572 revs
->full_diff
= 1;
2573 } else if (!strcmp(arg
, "--show-pulls")) {
2574 revs
->show_pulls
= 1;
2575 } else if (!strcmp(arg
, "--full-history")) {
2576 revs
->simplify_history
= 0;
2577 } else if (!strcmp(arg
, "--relative-date")) {
2578 revs
->date_mode
.type
= DATE_RELATIVE
;
2579 revs
->date_mode_explicit
= 1;
2580 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2581 parse_date_format(optarg
, &revs
->date_mode
);
2582 revs
->date_mode_explicit
= 1;
2584 } else if (!strcmp(arg
, "--log-size")) {
2585 revs
->show_log_size
= 1;
2588 * Grepping the commit log
2590 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2591 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2593 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2594 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2596 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2597 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2599 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2600 add_message_grep(revs
, optarg
);
2602 } else if (!strcmp(arg
, "--basic-regexp")) {
2603 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2604 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2605 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2606 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2607 revs
->grep_filter
.ignore_case
= 1;
2608 revs
->diffopt
.pickaxe_opts
|= DIFF_PICKAXE_IGNORE_CASE
;
2609 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2610 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2611 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2612 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2613 } else if (!strcmp(arg
, "--all-match")) {
2614 revs
->grep_filter
.all_match
= 1;
2615 } else if (!strcmp(arg
, "--invert-grep")) {
2616 revs
->grep_filter
.no_body_match
= 1;
2617 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2618 if (strcmp(optarg
, "none"))
2619 git_log_output_encoding
= xstrdup(optarg
);
2621 git_log_output_encoding
= "";
2623 } else if (!strcmp(arg
, "--reverse")) {
2625 } else if (!strcmp(arg
, "--children")) {
2626 revs
->children
.name
= "children";
2628 } else if (!strcmp(arg
, "--ignore-missing")) {
2629 revs
->ignore_missing
= 1;
2630 } else if (opt
&& opt
->allow_exclude_promisor_objects
&&
2631 !strcmp(arg
, "--exclude-promisor-objects")) {
2632 if (fetch_if_missing
)
2633 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2634 revs
->exclude_promisor_objects
= 1;
2636 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2638 unkv
[(*unkc
)++] = arg
;
2645 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2646 const struct option
*options
,
2647 const char * const usagestr
[])
2649 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2650 &ctx
->cpidx
, ctx
->out
, NULL
);
2652 error("unknown option `%s'", ctx
->argv
[0]);
2653 usage_with_options(usagestr
, options
);
2659 void revision_opts_finish(struct rev_info
*revs
)
2661 if (revs
->graph
&& revs
->track_linear
)
2662 die(_("options '%s' and '%s' cannot be used together"), "--show-linear-break", "--graph");
2665 revs
->topo_order
= 1;
2666 revs
->rewrite_parents
= 1;
2670 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2671 void *cb_data
, const char *term
)
2673 struct strbuf bisect_refs
= STRBUF_INIT
;
2675 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2676 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, fn
, cb_data
);
2677 strbuf_release(&bisect_refs
);
2681 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2683 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2686 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2688 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2691 static int handle_revision_pseudo_opt(struct rev_info
*revs
,
2692 const char **argv
, int *flags
)
2694 const char *arg
= argv
[0];
2696 struct ref_store
*refs
;
2699 if (revs
->repo
!= the_repository
) {
2701 * We need some something like get_submodule_worktrees()
2702 * before we can go through all worktrees of a submodule,
2703 * .e.g with adding all HEADs from --all, which is not
2704 * supported right now, so stick to single worktree.
2706 if (!revs
->single_worktree
)
2707 BUG("--single-worktree cannot be used together with submodule");
2709 refs
= get_main_ref_store(revs
->repo
);
2714 * Commands like "git shortlog" will not accept the options below
2715 * unless parse_revision_opt queues them (as opposed to erroring
2718 * When implementing your new pseudo-option, remember to
2719 * register it in the list at the top of handle_revision_opt.
2721 if (!strcmp(arg
, "--all")) {
2722 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2723 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2724 if (!revs
->single_worktree
) {
2725 struct all_refs_cb cb
;
2727 init_all_refs_cb(&cb
, revs
, *flags
);
2728 other_head_refs(handle_one_ref
, &cb
);
2730 clear_ref_exclusions(&revs
->ref_excludes
);
2731 } else if (!strcmp(arg
, "--branches")) {
2732 if (revs
->ref_excludes
.hidden_refs_configured
)
2733 return error(_("--exclude-hidden cannot be used together with --branches"));
2734 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2735 clear_ref_exclusions(&revs
->ref_excludes
);
2736 } else if (!strcmp(arg
, "--bisect")) {
2737 read_bisect_terms(&term_bad
, &term_good
);
2738 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2739 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2740 for_each_good_bisect_ref
);
2742 } else if (!strcmp(arg
, "--tags")) {
2743 if (revs
->ref_excludes
.hidden_refs_configured
)
2744 return error(_("--exclude-hidden cannot be used together with --tags"));
2745 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2746 clear_ref_exclusions(&revs
->ref_excludes
);
2747 } else if (!strcmp(arg
, "--remotes")) {
2748 if (revs
->ref_excludes
.hidden_refs_configured
)
2749 return error(_("--exclude-hidden cannot be used together with --remotes"));
2750 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2751 clear_ref_exclusions(&revs
->ref_excludes
);
2752 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2753 struct all_refs_cb cb
;
2754 init_all_refs_cb(&cb
, revs
, *flags
);
2755 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
2756 clear_ref_exclusions(&revs
->ref_excludes
);
2758 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2759 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2761 } else if ((argcount
= parse_long_opt("exclude-hidden", argv
, &optarg
))) {
2762 exclude_hidden_refs(&revs
->ref_excludes
, optarg
);
2764 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2765 struct all_refs_cb cb
;
2766 if (revs
->ref_excludes
.hidden_refs_configured
)
2767 return error(_("--exclude-hidden cannot be used together with --branches"));
2768 init_all_refs_cb(&cb
, revs
, *flags
);
2769 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/heads/", &cb
);
2770 clear_ref_exclusions(&revs
->ref_excludes
);
2771 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2772 struct all_refs_cb cb
;
2773 if (revs
->ref_excludes
.hidden_refs_configured
)
2774 return error(_("--exclude-hidden cannot be used together with --tags"));
2775 init_all_refs_cb(&cb
, revs
, *flags
);
2776 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/tags/", &cb
);
2777 clear_ref_exclusions(&revs
->ref_excludes
);
2778 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2779 struct all_refs_cb cb
;
2780 if (revs
->ref_excludes
.hidden_refs_configured
)
2781 return error(_("--exclude-hidden cannot be used together with --remotes"));
2782 init_all_refs_cb(&cb
, revs
, *flags
);
2783 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/remotes/", &cb
);
2784 clear_ref_exclusions(&revs
->ref_excludes
);
2785 } else if (!strcmp(arg
, "--reflog")) {
2786 add_reflogs_to_pending(revs
, *flags
);
2787 } else if (!strcmp(arg
, "--indexed-objects")) {
2788 add_index_objects_to_pending(revs
, *flags
);
2789 } else if (!strcmp(arg
, "--alternate-refs")) {
2790 add_alternate_refs_to_pending(revs
, *flags
);
2791 } else if (!strcmp(arg
, "--not")) {
2792 *flags
^= UNINTERESTING
| BOTTOM
;
2793 } else if (!strcmp(arg
, "--no-walk")) {
2795 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2797 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2798 * not allowed, since the argument is optional.
2801 if (!strcmp(optarg
, "sorted"))
2802 revs
->unsorted_input
= 0;
2803 else if (!strcmp(optarg
, "unsorted"))
2804 revs
->unsorted_input
= 1;
2806 return error("invalid argument to --no-walk");
2807 } else if (!strcmp(arg
, "--do-walk")) {
2809 } else if (!strcmp(arg
, "--single-worktree")) {
2810 revs
->single_worktree
= 1;
2811 } else if (skip_prefix(arg
, ("--filter="), &arg
)) {
2812 parse_list_objects_filter(&revs
->filter
, arg
);
2813 } else if (!strcmp(arg
, ("--no-filter"))) {
2814 list_objects_filter_set_no_filter(&revs
->filter
);
2822 static void NORETURN
diagnose_missing_default(const char *def
)
2825 const char *refname
;
2827 refname
= resolve_ref_unsafe(def
, 0, NULL
, &flags
);
2828 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2829 die(_("your current branch appears to be broken"));
2831 skip_prefix(refname
, "refs/heads/", &refname
);
2832 die(_("your current branch '%s' does not have any commits yet"),
2837 * Parse revision information, filling in the "rev_info" structure,
2838 * and removing the used arguments from the argument list.
2840 * Returns the number of arguments left that weren't recognized
2841 * (which are also moved to the head of the argument list)
2843 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2845 int i
, flags
, left
, seen_dashdash
, revarg_opt
;
2846 struct strvec prune_data
= STRVEC_INIT
;
2847 int seen_end_of_options
= 0;
2849 /* First, search for "--" */
2850 if (opt
&& opt
->assume_dashdash
) {
2854 for (i
= 1; i
< argc
; i
++) {
2855 const char *arg
= argv
[i
];
2856 if (strcmp(arg
, "--"))
2858 if (opt
&& opt
->free_removed_argv_elements
)
2859 free((char *)argv
[i
]);
2863 strvec_pushv(&prune_data
, argv
+ i
+ 1);
2869 /* Second, deal with arguments and options */
2871 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2873 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2874 for (left
= i
= 1; i
< argc
; i
++) {
2875 const char *arg
= argv
[i
];
2876 if (!seen_end_of_options
&& *arg
== '-') {
2879 opts
= handle_revision_pseudo_opt(
2887 if (!strcmp(arg
, "--stdin")) {
2888 if (revs
->disable_stdin
) {
2892 if (revs
->read_from_stdin
++)
2893 die("--stdin given twice?");
2894 read_revisions_from_stdin(revs
, &prune_data
);
2898 if (!strcmp(arg
, "--end-of-options")) {
2899 seen_end_of_options
= 1;
2903 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
,
2915 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
2917 if (seen_dashdash
|| *arg
== '^')
2918 die("bad revision '%s'", arg
);
2920 /* If we didn't have a "--":
2921 * (1) all filenames must exist;
2922 * (2) all rev-args must not be interpretable
2923 * as a valid filename.
2924 * but the latter we have checked in the main loop.
2926 for (j
= i
; j
< argc
; j
++)
2927 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
2929 strvec_pushv(&prune_data
, argv
+ i
);
2933 revision_opts_finish(revs
);
2935 if (prune_data
.nr
) {
2937 * If we need to introduce the magic "a lone ':' means no
2938 * pathspec whatsoever", here is the place to do so.
2940 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2941 * prune_data.nr = 0;
2942 * prune_data.alloc = 0;
2943 * free(prune_data.path);
2944 * prune_data.path = NULL;
2946 * terminate prune_data.alloc with NULL and
2947 * call init_pathspec() to set revs->prune_data here.
2950 parse_pathspec(&revs
->prune_data
, 0, 0,
2951 revs
->prefix
, prune_data
.v
);
2953 strvec_clear(&prune_data
);
2956 revs
->def
= opt
? opt
->def
: NULL
;
2957 if (opt
&& opt
->tweak
)
2958 opt
->tweak(revs
, opt
);
2959 if (revs
->show_merge
)
2960 prepare_show_merge(revs
);
2961 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
) {
2962 struct object_id oid
;
2963 struct object
*object
;
2964 struct object_context oc
;
2965 if (get_oid_with_context(revs
->repo
, revs
->def
, 0, &oid
, &oc
))
2966 diagnose_missing_default(revs
->def
);
2967 object
= get_reference(revs
, revs
->def
, &oid
, 0);
2968 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
2971 /* Did the user ask for any diff output? Run the diff! */
2972 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
2975 /* Pickaxe, diff-filter and rename following need diffs */
2976 if ((revs
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
2977 revs
->diffopt
.filter
||
2978 revs
->diffopt
.flags
.follow_renames
)
2981 if (revs
->diffopt
.objfind
)
2982 revs
->simplify_history
= 0;
2984 if (revs
->line_level_traverse
) {
2985 if (want_ancestry(revs
))
2987 revs
->topo_order
= 1;
2990 if (revs
->topo_order
&& !generation_numbers_enabled(the_repository
))
2993 if (revs
->prune_data
.nr
) {
2994 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
2995 /* Can't prune commits with rename following: the paths change.. */
2996 if (!revs
->diffopt
.flags
.follow_renames
)
2998 if (!revs
->full_diff
)
2999 copy_pathspec(&revs
->diffopt
.pathspec
,
3003 diff_merges_setup_revs(revs
);
3005 revs
->diffopt
.abbrev
= revs
->abbrev
;
3007 diff_setup_done(&revs
->diffopt
);
3009 if (!is_encoding_utf8(get_log_output_encoding()))
3010 revs
->grep_filter
.ignore_locale
= 1;
3011 compile_grep_patterns(&revs
->grep_filter
);
3013 if (revs
->reverse
&& revs
->reflog_info
)
3014 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--walk-reflogs");
3015 if (revs
->reflog_info
&& revs
->limited
)
3016 die("cannot combine --walk-reflogs with history-limiting options");
3017 if (revs
->rewrite_parents
&& revs
->children
.name
)
3018 die(_("options '%s' and '%s' cannot be used together"), "--parents", "--children");
3019 if (revs
->filter
.choice
&& !revs
->blob_objects
)
3020 die(_("object filtering requires --objects"));
3023 * Limitations on the graph functionality
3025 if (revs
->reverse
&& revs
->graph
)
3026 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--graph");
3028 if (revs
->reflog_info
&& revs
->graph
)
3029 die(_("options '%s' and '%s' cannot be used together"), "--walk-reflogs", "--graph");
3030 if (revs
->no_walk
&& revs
->graph
)
3031 die(_("options '%s' and '%s' cannot be used together"), "--no-walk", "--graph");
3032 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
3033 die(_("the option '%s' requires '%s'"), "--grep-reflog", "--walk-reflogs");
3035 if (revs
->line_level_traverse
&&
3036 (revs
->diffopt
.output_format
& ~(DIFF_FORMAT_PATCH
| DIFF_FORMAT_NO_OUTPUT
)))
3037 die(_("-L does not yet support diff formats besides -p and -s"));
3039 if (revs
->expand_tabs_in_log
< 0)
3040 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
3045 static void release_revisions_cmdline(struct rev_cmdline_info
*cmdline
)
3049 for (i
= 0; i
< cmdline
->nr
; i
++)
3050 free((char *)cmdline
->rev
[i
].name
);
3054 static void release_revisions_mailmap(struct string_list
*mailmap
)
3058 clear_mailmap(mailmap
);
3062 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
);
3064 void release_revisions(struct rev_info
*revs
)
3066 free_commit_list(revs
->commits
);
3067 free_commit_list(revs
->ancestry_path_bottoms
);
3068 object_array_clear(&revs
->pending
);
3069 object_array_clear(&revs
->boundary_commits
);
3070 release_revisions_cmdline(&revs
->cmdline
);
3071 list_objects_filter_release(&revs
->filter
);
3072 clear_pathspec(&revs
->prune_data
);
3073 date_mode_release(&revs
->date_mode
);
3074 release_revisions_mailmap(revs
->mailmap
);
3075 free_grep_patterns(&revs
->grep_filter
);
3076 graph_clear(revs
->graph
);
3077 /* TODO (need to handle "no_free"): diff_free(&revs->diffopt) */
3078 diff_free(&revs
->pruning
);
3079 reflog_walk_info_release(revs
->reflog_info
);
3080 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3083 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
3085 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
3088 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
3091 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
3093 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3094 struct commit_list
**pp
, *p
;
3095 int surviving_parents
;
3097 /* Examine existing parents while marking ones we have seen... */
3098 pp
= &commit
->parents
;
3099 surviving_parents
= 0;
3100 while ((p
= *pp
) != NULL
) {
3101 struct commit
*parent
= p
->item
;
3102 if (parent
->object
.flags
& TMP_MARK
) {
3105 compact_treesame(revs
, commit
, surviving_parents
);
3108 parent
->object
.flags
|= TMP_MARK
;
3109 surviving_parents
++;
3112 /* clear the temporary mark */
3113 for (p
= commit
->parents
; p
; p
= p
->next
) {
3114 p
->item
->object
.flags
&= ~TMP_MARK
;
3116 /* no update_treesame() - removing duplicates can't affect TREESAME */
3117 return surviving_parents
;
3120 struct merge_simplify_state
{
3121 struct commit
*simplified
;
3124 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
3126 struct merge_simplify_state
*st
;
3128 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
3130 CALLOC_ARRAY(st
, 1);
3131 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
3136 static int mark_redundant_parents(struct commit
*commit
)
3138 struct commit_list
*h
= reduce_heads(commit
->parents
);
3139 int i
= 0, marked
= 0;
3140 struct commit_list
*po
, *pn
;
3142 /* Want these for sanity-checking only */
3143 int orig_cnt
= commit_list_count(commit
->parents
);
3144 int cnt
= commit_list_count(h
);
3147 * Not ready to remove items yet, just mark them for now, based
3148 * on the output of reduce_heads(). reduce_heads outputs the reduced
3149 * set in its original order, so this isn't too hard.
3151 po
= commit
->parents
;
3154 if (pn
&& po
->item
== pn
->item
) {
3158 po
->item
->object
.flags
|= TMP_MARK
;
3164 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
3165 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
3167 free_commit_list(h
);
3172 static int mark_treesame_root_parents(struct commit
*commit
)
3174 struct commit_list
*p
;
3177 for (p
= commit
->parents
; p
; p
= p
->next
) {
3178 struct commit
*parent
= p
->item
;
3179 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
3180 parent
->object
.flags
|= TMP_MARK
;
3189 * Awkward naming - this means one parent we are TREESAME to.
3190 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
3191 * empty tree). Better name suggestions?
3193 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
3195 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
3196 struct commit
*unmarked
= NULL
, *marked
= NULL
;
3197 struct commit_list
*p
;
3200 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
3201 if (ts
->treesame
[n
]) {
3202 if (p
->item
->object
.flags
& TMP_MARK
) {
3215 * If we are TREESAME to a marked-for-deletion parent, but not to any
3216 * unmarked parents, unmark the first TREESAME parent. This is the
3217 * parent that the default simplify_history==1 scan would have followed,
3218 * and it doesn't make sense to omit that path when asking for a
3219 * simplified full history. Retaining it improves the chances of
3220 * understanding odd missed merges that took an old version of a file.
3224 * I--------*X A modified the file, but mainline merge X used
3225 * \ / "-s ours", so took the version from I. X is
3226 * `-*A--' TREESAME to I and !TREESAME to A.
3228 * Default log from X would produce "I". Without this check,
3229 * --full-history --simplify-merges would produce "I-A-X", showing
3230 * the merge commit X and that it changed A, but not making clear that
3231 * it had just taken the I version. With this check, the topology above
3234 * Note that it is possible that the simplification chooses a different
3235 * TREESAME parent from the default, in which case this test doesn't
3236 * activate, and we _do_ drop the default parent. Example:
3238 * I------X A modified the file, but it was reverted in B,
3239 * \ / meaning mainline merge X is TREESAME to both
3242 * Default log would produce "I" by following the first parent;
3243 * --full-history --simplify-merges will produce "I-A-B". But this is a
3244 * reasonable result - it presents a logical full history leading from
3245 * I to X, and X is not an important merge.
3247 if (!unmarked
&& marked
) {
3248 marked
->object
.flags
&= ~TMP_MARK
;
3255 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
3257 struct commit_list
**pp
, *p
;
3258 int nth_parent
, removed
= 0;
3260 pp
= &commit
->parents
;
3262 while ((p
= *pp
) != NULL
) {
3263 struct commit
*parent
= p
->item
;
3264 if (parent
->object
.flags
& TMP_MARK
) {
3265 parent
->object
.flags
&= ~TMP_MARK
;
3269 compact_treesame(revs
, commit
, nth_parent
);
3276 /* Removing parents can only increase TREESAMEness */
3277 if (removed
&& !(commit
->object
.flags
& TREESAME
))
3278 update_treesame(revs
, commit
);
3283 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
3285 struct commit_list
*p
;
3286 struct commit
*parent
;
3287 struct merge_simplify_state
*st
, *pst
;
3290 st
= locate_simplify_state(revs
, commit
);
3293 * Have we handled this one?
3299 * An UNINTERESTING commit simplifies to itself, so does a
3300 * root commit. We do not rewrite parents of such commit
3303 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
3304 st
->simplified
= commit
;
3309 * Do we know what commit all of our parents that matter
3310 * should be rewritten to? Otherwise we are not ready to
3311 * rewrite this one yet.
3313 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
3314 pst
= locate_simplify_state(revs
, p
->item
);
3315 if (!pst
->simplified
) {
3316 tail
= &commit_list_insert(p
->item
, tail
)->next
;
3319 if (revs
->first_parent_only
)
3323 tail
= &commit_list_insert(commit
, tail
)->next
;
3328 * Rewrite our list of parents. Note that this cannot
3329 * affect our TREESAME flags in any way - a commit is
3330 * always TREESAME to its simplification.
3332 for (p
= commit
->parents
; p
; p
= p
->next
) {
3333 pst
= locate_simplify_state(revs
, p
->item
);
3334 p
->item
= pst
->simplified
;
3335 if (revs
->first_parent_only
)
3339 if (revs
->first_parent_only
)
3342 cnt
= remove_duplicate_parents(revs
, commit
);
3345 * It is possible that we are a merge and one side branch
3346 * does not have any commit that touches the given paths;
3347 * in such a case, the immediate parent from that branch
3348 * will be rewritten to be the merge base.
3350 * o----X X: the commit we are looking at;
3351 * / / o: a commit that touches the paths;
3354 * Further, a merge of an independent branch that doesn't
3355 * touch the path will reduce to a treesame root parent:
3357 * ----o----X X: the commit we are looking at;
3358 * / o: a commit that touches the paths;
3359 * r r: a root commit not touching the paths
3361 * Detect and simplify both cases.
3364 int marked
= mark_redundant_parents(commit
);
3365 marked
+= mark_treesame_root_parents(commit
);
3367 marked
-= leave_one_treesame_to_parent(revs
, commit
);
3369 cnt
= remove_marked_parents(revs
, commit
);
3373 * A commit simplifies to itself if it is a root, if it is
3374 * UNINTERESTING, if it touches the given paths, or if it is a
3375 * merge and its parents don't simplify to one relevant commit
3376 * (the first two cases are already handled at the beginning of
3379 * Otherwise, it simplifies to what its sole relevant parent
3383 (commit
->object
.flags
& UNINTERESTING
) ||
3384 !(commit
->object
.flags
& TREESAME
) ||
3385 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
||
3386 (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
)))
3387 st
->simplified
= commit
;
3389 pst
= locate_simplify_state(revs
, parent
);
3390 st
->simplified
= pst
->simplified
;
3395 static void simplify_merges(struct rev_info
*revs
)
3397 struct commit_list
*list
, *next
;
3398 struct commit_list
*yet_to_do
, **tail
;
3399 struct commit
*commit
;
3404 /* feed the list reversed */
3406 for (list
= revs
->commits
; list
; list
= next
) {
3407 commit
= list
->item
;
3410 * Do not free(list) here yet; the original list
3411 * is used later in this function.
3413 commit_list_insert(commit
, &yet_to_do
);
3420 commit
= pop_commit(&list
);
3421 tail
= simplify_one(revs
, commit
, tail
);
3425 /* clean up the result, removing the simplified ones */
3426 list
= revs
->commits
;
3427 revs
->commits
= NULL
;
3428 tail
= &revs
->commits
;
3430 struct merge_simplify_state
*st
;
3432 commit
= pop_commit(&list
);
3433 st
= locate_simplify_state(revs
, commit
);
3434 if (st
->simplified
== commit
)
3435 tail
= &commit_list_insert(commit
, tail
)->next
;
3439 static void set_children(struct rev_info
*revs
)
3441 struct commit_list
*l
;
3442 for (l
= revs
->commits
; l
; l
= l
->next
) {
3443 struct commit
*commit
= l
->item
;
3444 struct commit_list
*p
;
3446 for (p
= commit
->parents
; p
; p
= p
->next
)
3447 add_child(revs
, p
->item
, commit
);
3451 void reset_revision_walk(void)
3453 clear_object_flags(SEEN
| ADDED
| SHOWN
| TOPO_WALK_EXPLORED
| TOPO_WALK_INDEGREE
);
3456 static int mark_uninteresting(const struct object_id
*oid
,
3457 struct packed_git
*pack UNUSED
,
3458 uint32_t pos UNUSED
,
3461 struct rev_info
*revs
= cb
;
3462 struct object
*o
= lookup_unknown_object(revs
->repo
, oid
);
3463 o
->flags
|= UNINTERESTING
| SEEN
;
3467 define_commit_slab(indegree_slab
, int);
3468 define_commit_slab(author_date_slab
, timestamp_t
);
3470 struct topo_walk_info
{
3471 timestamp_t min_generation
;
3472 struct prio_queue explore_queue
;
3473 struct prio_queue indegree_queue
;
3474 struct prio_queue topo_queue
;
3475 struct indegree_slab indegree
;
3476 struct author_date_slab author_date
;
3479 static int topo_walk_atexit_registered
;
3480 static unsigned int count_explore_walked
;
3481 static unsigned int count_indegree_walked
;
3482 static unsigned int count_topo_walked
;
3484 static void trace2_topo_walk_statistics_atexit(void)
3486 struct json_writer jw
= JSON_WRITER_INIT
;
3488 jw_object_begin(&jw
, 0);
3489 jw_object_intmax(&jw
, "count_explore_walked", count_explore_walked
);
3490 jw_object_intmax(&jw
, "count_indegree_walked", count_indegree_walked
);
3491 jw_object_intmax(&jw
, "count_topo_walked", count_topo_walked
);
3494 trace2_data_json("topo_walk", the_repository
, "statistics", &jw
);
3499 static inline void test_flag_and_insert(struct prio_queue
*q
, struct commit
*c
, int flag
)
3501 if (c
->object
.flags
& flag
)
3504 c
->object
.flags
|= flag
;
3505 prio_queue_put(q
, c
);
3508 static void explore_walk_step(struct rev_info
*revs
)
3510 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3511 struct commit_list
*p
;
3512 struct commit
*c
= prio_queue_get(&info
->explore_queue
);
3517 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3520 count_explore_walked
++;
3522 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3523 record_author_date(&info
->author_date
, c
);
3525 if (revs
->max_age
!= -1 && (c
->date
< revs
->max_age
))
3526 c
->object
.flags
|= UNINTERESTING
;
3528 if (process_parents(revs
, c
, NULL
, NULL
) < 0)
3531 if (c
->object
.flags
& UNINTERESTING
)
3532 mark_parents_uninteresting(revs
, c
);
3534 for (p
= c
->parents
; p
; p
= p
->next
)
3535 test_flag_and_insert(&info
->explore_queue
, p
->item
, TOPO_WALK_EXPLORED
);
3538 static void explore_to_depth(struct rev_info
*revs
,
3539 timestamp_t gen_cutoff
)
3541 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3543 while ((c
= prio_queue_peek(&info
->explore_queue
)) &&
3544 commit_graph_generation(c
) >= gen_cutoff
)
3545 explore_walk_step(revs
);
3548 static void indegree_walk_step(struct rev_info
*revs
)
3550 struct commit_list
*p
;
3551 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3552 struct commit
*c
= prio_queue_get(&info
->indegree_queue
);
3557 if (repo_parse_commit_gently(revs
->repo
, c
, 1) < 0)
3560 count_indegree_walked
++;
3562 explore_to_depth(revs
, commit_graph_generation(c
));
3564 for (p
= c
->parents
; p
; p
= p
->next
) {
3565 struct commit
*parent
= p
->item
;
3566 int *pi
= indegree_slab_at(&info
->indegree
, parent
);
3568 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3576 test_flag_and_insert(&info
->indegree_queue
, parent
, TOPO_WALK_INDEGREE
);
3578 if (revs
->first_parent_only
)
3583 static void compute_indegrees_to_depth(struct rev_info
*revs
,
3584 timestamp_t gen_cutoff
)
3586 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3588 while ((c
= prio_queue_peek(&info
->indegree_queue
)) &&
3589 commit_graph_generation(c
) >= gen_cutoff
)
3590 indegree_walk_step(revs
);
3593 static void release_revisions_topo_walk_info(struct topo_walk_info
*info
)
3597 clear_prio_queue(&info
->explore_queue
);
3598 clear_prio_queue(&info
->indegree_queue
);
3599 clear_prio_queue(&info
->topo_queue
);
3600 clear_indegree_slab(&info
->indegree
);
3601 clear_author_date_slab(&info
->author_date
);
3605 static void reset_topo_walk(struct rev_info
*revs
)
3607 release_revisions_topo_walk_info(revs
->topo_walk_info
);
3608 revs
->topo_walk_info
= NULL
;
3611 static void init_topo_walk(struct rev_info
*revs
)
3613 struct topo_walk_info
*info
;
3614 struct commit_list
*list
;
3615 if (revs
->topo_walk_info
)
3616 reset_topo_walk(revs
);
3618 revs
->topo_walk_info
= xmalloc(sizeof(struct topo_walk_info
));
3619 info
= revs
->topo_walk_info
;
3620 memset(info
, 0, sizeof(struct topo_walk_info
));
3622 init_indegree_slab(&info
->indegree
);
3623 memset(&info
->explore_queue
, 0, sizeof(info
->explore_queue
));
3624 memset(&info
->indegree_queue
, 0, sizeof(info
->indegree_queue
));
3625 memset(&info
->topo_queue
, 0, sizeof(info
->topo_queue
));
3627 switch (revs
->sort_order
) {
3628 default: /* REV_SORT_IN_GRAPH_ORDER */
3629 info
->topo_queue
.compare
= NULL
;
3631 case REV_SORT_BY_COMMIT_DATE
:
3632 info
->topo_queue
.compare
= compare_commits_by_commit_date
;
3634 case REV_SORT_BY_AUTHOR_DATE
:
3635 init_author_date_slab(&info
->author_date
);
3636 info
->topo_queue
.compare
= compare_commits_by_author_date
;
3637 info
->topo_queue
.cb_data
= &info
->author_date
;
3641 info
->explore_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3642 info
->indegree_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3644 info
->min_generation
= GENERATION_NUMBER_INFINITY
;
3645 for (list
= revs
->commits
; list
; list
= list
->next
) {
3646 struct commit
*c
= list
->item
;
3647 timestamp_t generation
;
3649 if (repo_parse_commit_gently(revs
->repo
, c
, 1))
3652 test_flag_and_insert(&info
->explore_queue
, c
, TOPO_WALK_EXPLORED
);
3653 test_flag_and_insert(&info
->indegree_queue
, c
, TOPO_WALK_INDEGREE
);
3655 generation
= commit_graph_generation(c
);
3656 if (generation
< info
->min_generation
)
3657 info
->min_generation
= generation
;
3659 *(indegree_slab_at(&info
->indegree
, c
)) = 1;
3661 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3662 record_author_date(&info
->author_date
, c
);
3664 compute_indegrees_to_depth(revs
, info
->min_generation
);
3666 for (list
= revs
->commits
; list
; list
= list
->next
) {
3667 struct commit
*c
= list
->item
;
3669 if (*(indegree_slab_at(&info
->indegree
, c
)) == 1)
3670 prio_queue_put(&info
->topo_queue
, c
);
3674 * This is unfortunate; the initial tips need to be shown
3675 * in the order given from the revision traversal machinery.
3677 if (revs
->sort_order
== REV_SORT_IN_GRAPH_ORDER
)
3678 prio_queue_reverse(&info
->topo_queue
);
3680 if (trace2_is_enabled() && !topo_walk_atexit_registered
) {
3681 atexit(trace2_topo_walk_statistics_atexit
);
3682 topo_walk_atexit_registered
= 1;
3686 static struct commit
*next_topo_commit(struct rev_info
*revs
)
3689 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3691 /* pop next off of topo_queue */
3692 c
= prio_queue_get(&info
->topo_queue
);
3695 *(indegree_slab_at(&info
->indegree
, c
)) = 0;
3700 static void expand_topo_walk(struct rev_info
*revs
, struct commit
*commit
)
3702 struct commit_list
*p
;
3703 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3704 if (process_parents(revs
, commit
, NULL
, NULL
) < 0) {
3705 if (!revs
->ignore_missing_links
)
3706 die("Failed to traverse parents of commit %s",
3707 oid_to_hex(&commit
->object
.oid
));
3710 count_topo_walked
++;
3712 for (p
= commit
->parents
; p
; p
= p
->next
) {
3713 struct commit
*parent
= p
->item
;
3715 timestamp_t generation
;
3717 if (parent
->object
.flags
& UNINTERESTING
)
3720 if (repo_parse_commit_gently(revs
->repo
, parent
, 1) < 0)
3723 generation
= commit_graph_generation(parent
);
3724 if (generation
< info
->min_generation
) {
3725 info
->min_generation
= generation
;
3726 compute_indegrees_to_depth(revs
, info
->min_generation
);
3729 pi
= indegree_slab_at(&info
->indegree
, parent
);
3733 prio_queue_put(&info
->topo_queue
, parent
);
3735 if (revs
->first_parent_only
)
3740 int prepare_revision_walk(struct rev_info
*revs
)
3743 struct object_array old_pending
;
3744 struct commit_list
**next
= &revs
->commits
;
3746 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
3747 revs
->pending
.nr
= 0;
3748 revs
->pending
.alloc
= 0;
3749 revs
->pending
.objects
= NULL
;
3750 for (i
= 0; i
< old_pending
.nr
; i
++) {
3751 struct object_array_entry
*e
= old_pending
.objects
+ i
;
3752 struct commit
*commit
= handle_commit(revs
, e
);
3754 if (!(commit
->object
.flags
& SEEN
)) {
3755 commit
->object
.flags
|= SEEN
;
3756 next
= commit_list_append(commit
, next
);
3760 object_array_clear(&old_pending
);
3762 /* Signal whether we need per-parent treesame decoration */
3763 if (revs
->simplify_merges
||
3764 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
3765 revs
->treesame
.name
= "treesame";
3767 if (revs
->exclude_promisor_objects
) {
3768 for_each_packed_object(mark_uninteresting
, revs
,
3769 FOR_EACH_OBJECT_PROMISOR_ONLY
);
3772 if (!revs
->reflog_info
)
3773 prepare_to_use_bloom_filter(revs
);
3774 if (!revs
->unsorted_input
)
3775 commit_list_sort_by_date(&revs
->commits
);
3778 if (revs
->limited
) {
3779 if (limit_list(revs
) < 0)
3781 if (revs
->topo_order
)
3782 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3783 } else if (revs
->topo_order
)
3784 init_topo_walk(revs
);
3785 if (revs
->line_level_traverse
&& want_ancestry(revs
))
3787 * At the moment we can only do line-level log with parent
3788 * rewriting by performing this expensive pre-filtering step.
3789 * If parent rewriting is not requested, then we rather
3790 * perform the line-level log filtering during the regular
3791 * history traversal.
3793 line_log_filter(revs
);
3794 if (revs
->simplify_merges
)
3795 simplify_merges(revs
);
3796 if (revs
->children
.name
)
3802 static enum rewrite_result
rewrite_one_1(struct rev_info
*revs
,
3804 struct prio_queue
*queue
)
3807 struct commit
*p
= *pp
;
3809 if (process_parents(revs
, p
, NULL
, queue
) < 0)
3810 return rewrite_one_error
;
3811 if (p
->object
.flags
& UNINTERESTING
)
3812 return rewrite_one_ok
;
3813 if (!(p
->object
.flags
& TREESAME
))
3814 return rewrite_one_ok
;
3816 return rewrite_one_noparents
;
3817 if (!(p
= one_relevant_parent(revs
, p
->parents
)))
3818 return rewrite_one_ok
;
3823 static void merge_queue_into_list(struct prio_queue
*q
, struct commit_list
**list
)
3826 struct commit
*item
= prio_queue_peek(q
);
3827 struct commit_list
*p
= *list
;
3829 if (p
&& p
->item
->date
>= item
->date
)
3832 p
= commit_list_insert(item
, list
);
3833 list
= &p
->next
; /* skip newly added item */
3834 prio_queue_get(q
); /* pop item */
3839 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
3841 struct prio_queue queue
= { compare_commits_by_commit_date
};
3842 enum rewrite_result ret
= rewrite_one_1(revs
, pp
, &queue
);
3843 merge_queue_into_list(&queue
, &revs
->commits
);
3844 clear_prio_queue(&queue
);
3848 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
3849 rewrite_parent_fn_t rewrite_parent
)
3851 struct commit_list
**pp
= &commit
->parents
;
3853 struct commit_list
*parent
= *pp
;
3854 switch (rewrite_parent(revs
, &parent
->item
)) {
3855 case rewrite_one_ok
:
3857 case rewrite_one_noparents
:
3860 case rewrite_one_error
:
3865 remove_duplicate_parents(revs
, commit
);
3869 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
3872 const char *encoding
;
3873 const char *message
;
3874 struct strbuf buf
= STRBUF_INIT
;
3876 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
3879 /* Prepend "fake" headers as needed */
3880 if (opt
->grep_filter
.use_reflog_filter
) {
3881 strbuf_addstr(&buf
, "reflog ");
3882 get_reflog_message(&buf
, opt
->reflog_info
);
3883 strbuf_addch(&buf
, '\n');
3887 * We grep in the user's output encoding, under the assumption that it
3888 * is the encoding they are most likely to write their grep pattern
3889 * for. In addition, it means we will match the "notes" encoding below,
3890 * so we will not end up with a buffer that has two different encodings
3893 encoding
= get_log_output_encoding();
3894 message
= repo_logmsg_reencode(the_repository
, commit
, NULL
, encoding
);
3896 /* Copy the commit to temporary if we are using "fake" headers */
3898 strbuf_addstr(&buf
, message
);
3900 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
3901 const char *commit_headers
[] = { "author ", "committer ", NULL
};
3904 strbuf_addstr(&buf
, message
);
3906 apply_mailmap_to_header(&buf
, commit_headers
, opt
->mailmap
);
3909 /* Append "fake" message parts as needed */
3910 if (opt
->show_notes
) {
3912 strbuf_addstr(&buf
, message
);
3913 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
3917 * Find either in the original commit message, or in the temporary.
3918 * Note that we cast away the constness of "message" here. It is
3919 * const because it may come from the cached commit buffer. That's OK,
3920 * because we know that it is modifiable heap memory, and that while
3921 * grep_buffer may modify it for speed, it will restore any
3922 * changes before returning.
3925 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
3927 retval
= grep_buffer(&opt
->grep_filter
,
3928 (char *)message
, strlen(message
));
3929 strbuf_release(&buf
);
3930 repo_unuse_commit_buffer(the_repository
, commit
, message
);
3934 static inline int want_ancestry(const struct rev_info
*revs
)
3936 return (revs
->rewrite_parents
|| revs
->children
.name
);
3940 * Return a timestamp to be used for --since/--until comparisons for this
3941 * commit, based on the revision options.
3943 static timestamp_t
comparison_date(const struct rev_info
*revs
,
3944 struct commit
*commit
)
3946 return revs
->reflog_info
?
3947 get_reflog_timestamp(revs
->reflog_info
) :
3951 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
3953 if (commit
->object
.flags
& SHOWN
)
3954 return commit_ignore
;
3955 if (revs
->unpacked
&& has_object_pack(&commit
->object
.oid
))
3956 return commit_ignore
;
3957 if (revs
->no_kept_objects
) {
3958 if (has_object_kept_pack(&commit
->object
.oid
,
3959 revs
->keep_pack_cache_flags
))
3960 return commit_ignore
;
3962 if (commit
->object
.flags
& UNINTERESTING
)
3963 return commit_ignore
;
3964 if (revs
->line_level_traverse
&& !want_ancestry(revs
)) {
3966 * In case of line-level log with parent rewriting
3967 * prepare_revision_walk() already took care of all line-level
3968 * log filtering, and there is nothing left to do here.
3970 * If parent rewriting was not requested, then this is the
3971 * place to perform the line-level log filtering. Notably,
3972 * this check, though expensive, must come before the other,
3973 * cheaper filtering conditions, because the tracked line
3974 * ranges must be adjusted even when the commit will end up
3975 * being ignored based on other conditions.
3977 if (!line_log_process_ranges_arbitrary_commit(revs
, commit
))
3978 return commit_ignore
;
3980 if (revs
->min_age
!= -1 &&
3981 comparison_date(revs
, commit
) > revs
->min_age
)
3982 return commit_ignore
;
3983 if (revs
->max_age_as_filter
!= -1 &&
3984 comparison_date(revs
, commit
) < revs
->max_age_as_filter
)
3985 return commit_ignore
;
3986 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
3987 int n
= commit_list_count(commit
->parents
);
3988 if ((n
< revs
->min_parents
) ||
3989 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
3990 return commit_ignore
;
3992 if (!commit_match(commit
, revs
))
3993 return commit_ignore
;
3994 if (revs
->prune
&& revs
->dense
) {
3995 /* Commit without changes? */
3996 if (commit
->object
.flags
& TREESAME
) {
3998 struct commit_list
*p
;
3999 /* drop merges unless we want parenthood */
4000 if (!want_ancestry(revs
))
4001 return commit_ignore
;
4003 if (revs
->show_pulls
&& (commit
->object
.flags
& PULL_MERGE
))
4007 * If we want ancestry, then need to keep any merges
4008 * between relevant commits to tie together topology.
4009 * For consistency with TREESAME and simplification
4010 * use "relevant" here rather than just INTERESTING,
4011 * to treat bottom commit(s) as part of the topology.
4013 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
4014 if (relevant_commit(p
->item
))
4017 return commit_ignore
;
4023 define_commit_slab(saved_parents
, struct commit_list
*);
4025 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
4028 * You may only call save_parents() once per commit (this is checked
4029 * for non-root commits).
4031 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
4033 struct commit_list
**pp
;
4035 if (!revs
->saved_parents_slab
) {
4036 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
4037 init_saved_parents(revs
->saved_parents_slab
);
4040 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
4043 * When walking with reflogs, we may visit the same commit
4044 * several times: once for each appearance in the reflog.
4046 * In this case, save_parents() will be called multiple times.
4047 * We want to keep only the first set of parents. We need to
4048 * store a sentinel value for an empty (i.e., NULL) parent
4049 * list to distinguish it from a not-yet-saved list, however.
4053 if (commit
->parents
)
4054 *pp
= copy_commit_list(commit
->parents
);
4056 *pp
= EMPTY_PARENT_LIST
;
4059 static void free_saved_parents(struct rev_info
*revs
)
4061 if (revs
->saved_parents_slab
)
4062 clear_saved_parents(revs
->saved_parents_slab
);
4065 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
4067 struct commit_list
*parents
;
4069 if (!revs
->saved_parents_slab
)
4070 return commit
->parents
;
4072 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
4073 if (parents
== EMPTY_PARENT_LIST
)
4078 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
4080 enum commit_action action
= get_commit_action(revs
, commit
);
4082 if (action
== commit_show
&&
4083 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
4085 * --full-diff on simplified parents is no good: it
4086 * will show spurious changes from the commits that
4087 * were elided. So we save the parents on the side
4088 * when --full-diff is in effect.
4090 if (revs
->full_diff
)
4091 save_parents(revs
, commit
);
4092 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
4093 return commit_error
;
4098 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
4100 if (revs
->track_first_time
) {
4102 revs
->track_first_time
= 0;
4104 struct commit_list
*p
;
4105 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
4106 if (p
->item
== NULL
|| /* first commit */
4107 oideq(&p
->item
->object
.oid
, &commit
->object
.oid
))
4109 revs
->linear
= p
!= NULL
;
4111 if (revs
->reverse
) {
4113 commit
->object
.flags
|= TRACK_LINEAR
;
4115 free_commit_list(revs
->previous_parents
);
4116 revs
->previous_parents
= copy_commit_list(commit
->parents
);
4119 static struct commit
*get_revision_1(struct rev_info
*revs
)
4122 struct commit
*commit
;
4124 if (revs
->reflog_info
)
4125 commit
= next_reflog_entry(revs
->reflog_info
);
4126 else if (revs
->topo_walk_info
)
4127 commit
= next_topo_commit(revs
);
4129 commit
= pop_commit(&revs
->commits
);
4134 if (revs
->reflog_info
)
4135 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
4138 * If we haven't done the list limiting, we need to look at
4139 * the parents here. We also need to do the date-based limiting
4140 * that we'd otherwise have done in limit_list().
4142 if (!revs
->limited
) {
4143 if (revs
->max_age
!= -1 &&
4144 comparison_date(revs
, commit
) < revs
->max_age
)
4147 if (revs
->reflog_info
)
4148 try_to_simplify_commit(revs
, commit
);
4149 else if (revs
->topo_walk_info
)
4150 expand_topo_walk(revs
, commit
);
4151 else if (process_parents(revs
, commit
, &revs
->commits
, NULL
) < 0) {
4152 if (!revs
->ignore_missing_links
)
4153 die("Failed to traverse parents of commit %s",
4154 oid_to_hex(&commit
->object
.oid
));
4158 switch (simplify_commit(revs
, commit
)) {
4162 die("Failed to simplify parents of commit %s",
4163 oid_to_hex(&commit
->object
.oid
));
4165 if (revs
->track_linear
)
4166 track_linear(revs
, commit
);
4173 * Return true for entries that have not yet been shown. (This is an
4174 * object_array_each_func_t.)
4176 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data UNUSED
)
4178 return !(entry
->item
->flags
& SHOWN
);
4182 * If array is on the verge of a realloc, garbage-collect any entries
4183 * that have already been shown to try to free up some space.
4185 static void gc_boundary(struct object_array
*array
)
4187 if (array
->nr
== array
->alloc
)
4188 object_array_filter(array
, entry_unshown
, NULL
);
4191 static void create_boundary_commit_list(struct rev_info
*revs
)
4195 struct object_array
*array
= &revs
->boundary_commits
;
4196 struct object_array_entry
*objects
= array
->objects
;
4199 * If revs->commits is non-NULL at this point, an error occurred in
4200 * get_revision_1(). Ignore the error and continue printing the
4201 * boundary commits anyway. (This is what the code has always
4204 free_commit_list(revs
->commits
);
4205 revs
->commits
= NULL
;
4208 * Put all of the actual boundary commits from revs->boundary_commits
4209 * into revs->commits
4211 for (i
= 0; i
< array
->nr
; i
++) {
4212 c
= (struct commit
*)(objects
[i
].item
);
4215 if (!(c
->object
.flags
& CHILD_SHOWN
))
4217 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
4219 c
->object
.flags
|= BOUNDARY
;
4220 commit_list_insert(c
, &revs
->commits
);
4224 * If revs->topo_order is set, sort the boundary commits
4225 * in topological order
4227 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
4230 static struct commit
*get_revision_internal(struct rev_info
*revs
)
4232 struct commit
*c
= NULL
;
4233 struct commit_list
*l
;
4235 if (revs
->boundary
== 2) {
4237 * All of the normal commits have already been returned,
4238 * and we are now returning boundary commits.
4239 * create_boundary_commit_list() has populated
4240 * revs->commits with the remaining commits to return.
4242 c
= pop_commit(&revs
->commits
);
4244 c
->object
.flags
|= SHOWN
;
4249 * If our max_count counter has reached zero, then we are done. We
4250 * don't simply return NULL because we still might need to show
4251 * boundary commits. But we want to avoid calling get_revision_1, which
4252 * might do a considerable amount of work finding the next commit only
4253 * for us to throw it away.
4255 * If it is non-zero, then either we don't have a max_count at all
4256 * (-1), or it is still counting, in which case we decrement.
4258 if (revs
->max_count
) {
4259 c
= get_revision_1(revs
);
4261 while (revs
->skip_count
> 0) {
4263 c
= get_revision_1(revs
);
4269 if (revs
->max_count
> 0)
4274 c
->object
.flags
|= SHOWN
;
4276 if (!revs
->boundary
)
4281 * get_revision_1() runs out the commits, and
4282 * we are done computing the boundaries.
4283 * switch to boundary commits output mode.
4288 * Update revs->commits to contain the list of
4291 create_boundary_commit_list(revs
);
4293 return get_revision_internal(revs
);
4297 * boundary commits are the commits that are parents of the
4298 * ones we got from get_revision_1() but they themselves are
4299 * not returned from get_revision_1(). Before returning
4300 * 'c', we need to mark its parents that they could be boundaries.
4303 for (l
= c
->parents
; l
; l
= l
->next
) {
4305 p
= &(l
->item
->object
);
4306 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
4308 p
->flags
|= CHILD_SHOWN
;
4309 gc_boundary(&revs
->boundary_commits
);
4310 add_object_array(p
, NULL
, &revs
->boundary_commits
);
4316 struct commit
*get_revision(struct rev_info
*revs
)
4319 struct commit_list
*reversed
;
4321 if (revs
->reverse
) {
4323 while ((c
= get_revision_internal(revs
)))
4324 commit_list_insert(c
, &reversed
);
4325 revs
->commits
= reversed
;
4327 revs
->reverse_output_stage
= 1;
4330 if (revs
->reverse_output_stage
) {
4331 c
= pop_commit(&revs
->commits
);
4332 if (revs
->track_linear
)
4333 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
4337 c
= get_revision_internal(revs
);
4338 if (c
&& revs
->graph
)
4339 graph_update(revs
->graph
, c
);
4341 free_saved_parents(revs
);
4342 free_commit_list(revs
->previous_parents
);
4343 revs
->previous_parents
= NULL
;
4348 const char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4350 if (commit
->object
.flags
& BOUNDARY
)
4352 else if (commit
->object
.flags
& UNINTERESTING
)
4354 else if (commit
->object
.flags
& PATCHSAME
)
4356 else if (!revs
|| revs
->left_right
) {
4357 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
4361 } else if (revs
->graph
)
4363 else if (revs
->cherry_mark
)
4368 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4370 const char *mark
= get_revision_mark(revs
, commit
);
4373 fputs(mark
, stdout
);