2 #include "object-store.h"
10 #include "repository.h"
13 #include "reflog-walk.h"
14 #include "patch-ids.h"
17 #include "string-list.h"
20 #include "commit-slab.h"
22 #include "cache-tree.h"
26 #include "argv-array.h"
27 #include "commit-reach.h"
28 #include "commit-graph.h"
29 #include "prio-queue.h"
33 #include "json-writer.h"
35 volatile show_early_output_fn_t show_early_output
;
37 static const char *term_bad
;
38 static const char *term_good
;
40 implement_shared_commit_slab(revision_sources
, char *);
42 void show_object_with_name(FILE *out
, struct object
*obj
, const char *name
)
46 fprintf(out
, "%s ", oid_to_hex(&obj
->oid
));
47 for (p
= name
; *p
&& *p
!= '\n'; p
++)
52 static void mark_blob_uninteresting(struct blob
*blob
)
56 if (blob
->object
.flags
& UNINTERESTING
)
58 blob
->object
.flags
|= UNINTERESTING
;
61 static void mark_tree_contents_uninteresting(struct repository
*r
,
64 struct tree_desc desc
;
65 struct name_entry entry
;
67 if (parse_tree_gently(tree
, 1) < 0)
70 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
71 while (tree_entry(&desc
, &entry
)) {
72 switch (object_type(entry
.mode
)) {
74 mark_tree_uninteresting(r
, lookup_tree(r
, &entry
.oid
));
77 mark_blob_uninteresting(lookup_blob(r
, &entry
.oid
));
80 /* Subproject commit - not in this repository */
86 * We don't care about the tree any more
87 * after it has been marked uninteresting.
89 free_tree_buffer(tree
);
92 void mark_tree_uninteresting(struct repository
*r
, struct tree
*tree
)
100 if (obj
->flags
& UNINTERESTING
)
102 obj
->flags
|= UNINTERESTING
;
103 mark_tree_contents_uninteresting(r
, tree
);
106 struct path_and_oids_entry
{
107 struct hashmap_entry ent
;
112 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data
,
113 const struct hashmap_entry
*eptr
,
114 const struct hashmap_entry
*entry_or_key
,
117 const struct path_and_oids_entry
*e1
, *e2
;
119 e1
= container_of(eptr
, const struct path_and_oids_entry
, ent
);
120 e2
= container_of(entry_or_key
, const struct path_and_oids_entry
, ent
);
122 return strcmp(e1
->path
, e2
->path
);
125 static void paths_and_oids_init(struct hashmap
*map
)
127 hashmap_init(map
, path_and_oids_cmp
, NULL
, 0);
130 static void paths_and_oids_clear(struct hashmap
*map
)
132 struct hashmap_iter iter
;
133 struct path_and_oids_entry
*entry
;
135 hashmap_for_each_entry(map
, &iter
, entry
, ent
/* member name */) {
136 oidset_clear(&entry
->trees
);
140 hashmap_free_entries(map
, struct path_and_oids_entry
, ent
);
143 static void paths_and_oids_insert(struct hashmap
*map
,
145 const struct object_id
*oid
)
147 int hash
= strhash(path
);
148 struct path_and_oids_entry key
;
149 struct path_and_oids_entry
*entry
;
151 hashmap_entry_init(&key
.ent
, hash
);
153 /* use a shallow copy for the lookup */
154 key
.path
= (char *)path
;
155 oidset_init(&key
.trees
, 0);
157 entry
= hashmap_get_entry(map
, &key
, ent
, NULL
);
159 entry
= xcalloc(1, sizeof(struct path_and_oids_entry
));
160 hashmap_entry_init(&entry
->ent
, hash
);
161 entry
->path
= xstrdup(key
.path
);
162 oidset_init(&entry
->trees
, 16);
163 hashmap_put(map
, &entry
->ent
);
166 oidset_insert(&entry
->trees
, oid
);
169 static void add_children_by_path(struct repository
*r
,
173 struct tree_desc desc
;
174 struct name_entry entry
;
179 if (parse_tree_gently(tree
, 1) < 0)
182 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
183 while (tree_entry(&desc
, &entry
)) {
184 switch (object_type(entry
.mode
)) {
186 paths_and_oids_insert(map
, entry
.path
, &entry
.oid
);
188 if (tree
->object
.flags
& UNINTERESTING
) {
189 struct tree
*child
= lookup_tree(r
, &entry
.oid
);
191 child
->object
.flags
|= UNINTERESTING
;
195 if (tree
->object
.flags
& UNINTERESTING
) {
196 struct blob
*child
= lookup_blob(r
, &entry
.oid
);
198 child
->object
.flags
|= UNINTERESTING
;
202 /* Subproject commit - not in this repository */
207 free_tree_buffer(tree
);
210 void mark_trees_uninteresting_sparse(struct repository
*r
,
211 struct oidset
*trees
)
213 unsigned has_interesting
= 0, has_uninteresting
= 0;
215 struct hashmap_iter map_iter
;
216 struct path_and_oids_entry
*entry
;
217 struct object_id
*oid
;
218 struct oidset_iter iter
;
220 oidset_iter_init(trees
, &iter
);
221 while ((!has_interesting
|| !has_uninteresting
) &&
222 (oid
= oidset_iter_next(&iter
))) {
223 struct tree
*tree
= lookup_tree(r
, oid
);
228 if (tree
->object
.flags
& UNINTERESTING
)
229 has_uninteresting
= 1;
234 /* Do not walk unless we have both types of trees. */
235 if (!has_uninteresting
|| !has_interesting
)
238 paths_and_oids_init(&map
);
240 oidset_iter_init(trees
, &iter
);
241 while ((oid
= oidset_iter_next(&iter
))) {
242 struct tree
*tree
= lookup_tree(r
, oid
);
243 add_children_by_path(r
, tree
, &map
);
246 hashmap_for_each_entry(&map
, &map_iter
, entry
, ent
/* member name */)
247 mark_trees_uninteresting_sparse(r
, &entry
->trees
);
249 paths_and_oids_clear(&map
);
252 struct commit_stack
{
253 struct commit
**items
;
256 #define COMMIT_STACK_INIT { NULL, 0, 0 }
258 static void commit_stack_push(struct commit_stack
*stack
, struct commit
*commit
)
260 ALLOC_GROW(stack
->items
, stack
->nr
+ 1, stack
->alloc
);
261 stack
->items
[stack
->nr
++] = commit
;
264 static struct commit
*commit_stack_pop(struct commit_stack
*stack
)
266 return stack
->nr
? stack
->items
[--stack
->nr
] : NULL
;
269 static void commit_stack_clear(struct commit_stack
*stack
)
271 FREE_AND_NULL(stack
->items
);
272 stack
->nr
= stack
->alloc
= 0;
275 static void mark_one_parent_uninteresting(struct commit
*commit
,
276 struct commit_stack
*pending
)
278 struct commit_list
*l
;
280 if (commit
->object
.flags
& UNINTERESTING
)
282 commit
->object
.flags
|= UNINTERESTING
;
285 * Normally we haven't parsed the parent
286 * yet, so we won't have a parent of a parent
287 * here. However, it may turn out that we've
288 * reached this commit some other way (where it
289 * wasn't uninteresting), in which case we need
290 * to mark its parents recursively too..
292 for (l
= commit
->parents
; l
; l
= l
->next
)
293 commit_stack_push(pending
, l
->item
);
296 void mark_parents_uninteresting(struct commit
*commit
)
298 struct commit_stack pending
= COMMIT_STACK_INIT
;
299 struct commit_list
*l
;
301 for (l
= commit
->parents
; l
; l
= l
->next
)
302 mark_one_parent_uninteresting(l
->item
, &pending
);
304 while (pending
.nr
> 0)
305 mark_one_parent_uninteresting(commit_stack_pop(&pending
),
308 commit_stack_clear(&pending
);
311 static void add_pending_object_with_path(struct rev_info
*revs
,
313 const char *name
, unsigned mode
,
318 if (revs
->no_walk
&& (obj
->flags
& UNINTERESTING
))
320 if (revs
->reflog_info
&& obj
->type
== OBJ_COMMIT
) {
321 struct strbuf buf
= STRBUF_INIT
;
322 int len
= interpret_branch_name(name
, 0, &buf
, 0);
324 if (0 < len
&& name
[len
] && buf
.len
)
325 strbuf_addstr(&buf
, name
+ len
);
326 add_reflog_for_walk(revs
->reflog_info
,
327 (struct commit
*)obj
,
328 buf
.buf
[0] ? buf
.buf
: name
);
329 strbuf_release(&buf
);
330 return; /* do not add the commit itself */
332 add_object_array_with_path(obj
, name
, &revs
->pending
, mode
, path
);
335 static void add_pending_object_with_mode(struct rev_info
*revs
,
337 const char *name
, unsigned mode
)
339 add_pending_object_with_path(revs
, obj
, name
, mode
, NULL
);
342 void add_pending_object(struct rev_info
*revs
,
343 struct object
*obj
, const char *name
)
345 add_pending_object_with_mode(revs
, obj
, name
, S_IFINVALID
);
348 void add_head_to_pending(struct rev_info
*revs
)
350 struct object_id oid
;
352 if (get_oid("HEAD", &oid
))
354 obj
= parse_object(revs
->repo
, &oid
);
357 add_pending_object(revs
, obj
, "HEAD");
360 static struct object
*get_reference(struct rev_info
*revs
, const char *name
,
361 const struct object_id
*oid
,
364 struct object
*object
;
367 * If the repository has commit graphs, repo_parse_commit() avoids
368 * reading the object buffer, so use it whenever possible.
370 if (oid_object_info(revs
->repo
, oid
, NULL
) == OBJ_COMMIT
) {
371 struct commit
*c
= lookup_commit(revs
->repo
, oid
);
372 if (!repo_parse_commit(revs
->repo
, c
))
373 object
= (struct object
*) c
;
377 object
= parse_object(revs
->repo
, oid
);
381 if (revs
->ignore_missing
)
383 if (revs
->exclude_promisor_objects
&& is_promisor_object(oid
))
385 die("bad object %s", name
);
387 object
->flags
|= flags
;
391 void add_pending_oid(struct rev_info
*revs
, const char *name
,
392 const struct object_id
*oid
, unsigned int flags
)
394 struct object
*object
= get_reference(revs
, name
, oid
, flags
);
395 add_pending_object(revs
, object
, name
);
398 static struct commit
*handle_commit(struct rev_info
*revs
,
399 struct object_array_entry
*entry
)
401 struct object
*object
= entry
->item
;
402 const char *name
= entry
->name
;
403 const char *path
= entry
->path
;
404 unsigned int mode
= entry
->mode
;
405 unsigned long flags
= object
->flags
;
408 * Tag object? Look what it points to..
410 while (object
->type
== OBJ_TAG
) {
411 struct tag
*tag
= (struct tag
*) object
;
412 if (revs
->tag_objects
&& !(flags
& UNINTERESTING
))
413 add_pending_object(revs
, object
, tag
->tag
);
414 object
= parse_object(revs
->repo
, get_tagged_oid(tag
));
416 if (revs
->ignore_missing_links
|| (flags
& UNINTERESTING
))
418 if (revs
->exclude_promisor_objects
&&
419 is_promisor_object(&tag
->tagged
->oid
))
421 die("bad object %s", oid_to_hex(&tag
->tagged
->oid
));
423 object
->flags
|= flags
;
425 * We'll handle the tagged object by looping or dropping
426 * through to the non-tag handlers below. Do not
427 * propagate path data from the tag's pending entry.
434 * Commit object? Just return it, we'll do all the complex
437 if (object
->type
== OBJ_COMMIT
) {
438 struct commit
*commit
= (struct commit
*)object
;
440 if (parse_commit(commit
) < 0)
441 die("unable to parse commit %s", name
);
442 if (flags
& UNINTERESTING
) {
443 mark_parents_uninteresting(commit
);
445 if (!revs
->topo_order
|| !generation_numbers_enabled(the_repository
))
449 char **slot
= revision_sources_at(revs
->sources
, commit
);
452 *slot
= xstrdup(name
);
458 * Tree object? Either mark it uninteresting, or add it
459 * to the list of objects to look at later..
461 if (object
->type
== OBJ_TREE
) {
462 struct tree
*tree
= (struct tree
*)object
;
463 if (!revs
->tree_objects
)
465 if (flags
& UNINTERESTING
) {
466 mark_tree_contents_uninteresting(revs
->repo
, tree
);
469 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
474 * Blob object? You know the drill by now..
476 if (object
->type
== OBJ_BLOB
) {
477 if (!revs
->blob_objects
)
479 if (flags
& UNINTERESTING
)
481 add_pending_object_with_path(revs
, object
, name
, mode
, path
);
484 die("%s is unknown object", name
);
487 static int everybody_uninteresting(struct commit_list
*orig
,
488 struct commit
**interesting_cache
)
490 struct commit_list
*list
= orig
;
492 if (*interesting_cache
) {
493 struct commit
*commit
= *interesting_cache
;
494 if (!(commit
->object
.flags
& UNINTERESTING
))
499 struct commit
*commit
= list
->item
;
501 if (commit
->object
.flags
& UNINTERESTING
)
504 *interesting_cache
= commit
;
511 * A definition of "relevant" commit that we can use to simplify limited graphs
512 * by eliminating side branches.
514 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
515 * in our list), or that is a specified BOTTOM commit. Then after computing
516 * a limited list, during processing we can generally ignore boundary merges
517 * coming from outside the graph, (ie from irrelevant parents), and treat
518 * those merges as if they were single-parent. TREESAME is defined to consider
519 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
520 * we don't care if we were !TREESAME to non-graph parents.
522 * Treating bottom commits as relevant ensures that a limited graph's
523 * connection to the actual bottom commit is not viewed as a side branch, but
524 * treated as part of the graph. For example:
526 * ....Z...A---X---o---o---B
530 * When computing "A..B", the A-X connection is at least as important as
531 * Y-X, despite A being flagged UNINTERESTING.
533 * And when computing --ancestry-path "A..B", the A-X connection is more
534 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
536 static inline int relevant_commit(struct commit
*commit
)
538 return (commit
->object
.flags
& (UNINTERESTING
| BOTTOM
)) != UNINTERESTING
;
542 * Return a single relevant commit from a parent list. If we are a TREESAME
543 * commit, and this selects one of our parents, then we can safely simplify to
546 static struct commit
*one_relevant_parent(const struct rev_info
*revs
,
547 struct commit_list
*orig
)
549 struct commit_list
*list
= orig
;
550 struct commit
*relevant
= NULL
;
556 * For 1-parent commits, or if first-parent-only, then return that
557 * first parent (even if not "relevant" by the above definition).
558 * TREESAME will have been set purely on that parent.
560 if (revs
->first_parent_only
|| !orig
->next
)
564 * For multi-parent commits, identify a sole relevant parent, if any.
565 * If we have only one relevant parent, then TREESAME will be set purely
566 * with regard to that parent, and we can simplify accordingly.
568 * If we have more than one relevant parent, or no relevant parents
569 * (and multiple irrelevant ones), then we can't select a parent here
573 struct commit
*commit
= list
->item
;
575 if (relevant_commit(commit
)) {
585 * The goal is to get REV_TREE_NEW as the result only if the
586 * diff consists of all '+' (and no other changes), REV_TREE_OLD
587 * if the whole diff is removal of old data, and otherwise
588 * REV_TREE_DIFFERENT (of course if the trees are the same we
589 * want REV_TREE_SAME).
591 * The only time we care about the distinction is when
592 * remove_empty_trees is in effect, in which case we care only about
593 * whether the whole change is REV_TREE_NEW, or if there's another type
594 * of change. Which means we can stop the diff early in either of these
597 * 1. We're not using remove_empty_trees at all.
599 * 2. We saw anything except REV_TREE_NEW.
601 static int tree_difference
= REV_TREE_SAME
;
603 static void file_add_remove(struct diff_options
*options
,
604 int addremove
, unsigned mode
,
605 const struct object_id
*oid
,
607 const char *fullpath
, unsigned dirty_submodule
)
609 int diff
= addremove
== '+' ? REV_TREE_NEW
: REV_TREE_OLD
;
610 struct rev_info
*revs
= options
->change_fn_data
;
612 tree_difference
|= diff
;
613 if (!revs
->remove_empty_trees
|| tree_difference
!= REV_TREE_NEW
)
614 options
->flags
.has_changes
= 1;
617 static void file_change(struct diff_options
*options
,
618 unsigned old_mode
, unsigned new_mode
,
619 const struct object_id
*old_oid
,
620 const struct object_id
*new_oid
,
621 int old_oid_valid
, int new_oid_valid
,
622 const char *fullpath
,
623 unsigned old_dirty_submodule
, unsigned new_dirty_submodule
)
625 tree_difference
= REV_TREE_DIFFERENT
;
626 options
->flags
.has_changes
= 1;
629 static int bloom_filter_atexit_registered
;
630 static unsigned int count_bloom_filter_maybe
;
631 static unsigned int count_bloom_filter_definitely_not
;
632 static unsigned int count_bloom_filter_false_positive
;
633 static unsigned int count_bloom_filter_not_present
;
634 static unsigned int count_bloom_filter_length_zero
;
636 static void trace2_bloom_filter_statistics_atexit(void)
638 struct json_writer jw
= JSON_WRITER_INIT
;
640 jw_object_begin(&jw
, 0);
641 jw_object_intmax(&jw
, "filter_not_present", count_bloom_filter_not_present
);
642 jw_object_intmax(&jw
, "zero_length_filter", count_bloom_filter_length_zero
);
643 jw_object_intmax(&jw
, "maybe", count_bloom_filter_maybe
);
644 jw_object_intmax(&jw
, "definitely_not", count_bloom_filter_definitely_not
);
645 jw_object_intmax(&jw
, "false_positive", count_bloom_filter_false_positive
);
648 trace2_data_json("bloom", the_repository
, "statistics", &jw
);
653 static int forbid_bloom_filters(struct pathspec
*spec
)
655 if (spec
->has_wildcard
)
659 if (spec
->magic
& ~PATHSPEC_LITERAL
)
661 if (spec
->nr
&& (spec
->items
[0].magic
& ~PATHSPEC_LITERAL
))
667 static void prepare_to_use_bloom_filter(struct rev_info
*revs
)
669 struct pathspec_item
*pi
;
670 char *path_alloc
= NULL
;
678 if (forbid_bloom_filters(&revs
->prune_data
))
681 repo_parse_commit(revs
->repo
, revs
->commits
->item
);
683 if (!revs
->repo
->objects
->commit_graph
)
686 revs
->bloom_filter_settings
= revs
->repo
->objects
->commit_graph
->bloom_filter_settings
;
687 if (!revs
->bloom_filter_settings
)
690 pi
= &revs
->pruning
.pathspec
.items
[0];
691 last_index
= pi
->len
- 1;
693 /* remove single trailing slash from path, if needed */
694 if (pi
->match
[last_index
] == '/') {
695 path_alloc
= xstrdup(pi
->match
);
696 path_alloc
[last_index
] = '\0';
703 revs
->bloom_key
= xmalloc(sizeof(struct bloom_key
));
704 fill_bloom_key(path
, len
, revs
->bloom_key
, revs
->bloom_filter_settings
);
706 if (trace2_is_enabled() && !bloom_filter_atexit_registered
) {
707 atexit(trace2_bloom_filter_statistics_atexit
);
708 bloom_filter_atexit_registered
= 1;
714 static int check_maybe_different_in_bloom_filter(struct rev_info
*revs
,
715 struct commit
*commit
)
717 struct bloom_filter
*filter
;
720 if (!revs
->repo
->objects
->commit_graph
)
723 if (commit
->generation
== GENERATION_NUMBER_INFINITY
)
726 filter
= get_bloom_filter(revs
->repo
, commit
, 0);
729 count_bloom_filter_not_present
++;
734 count_bloom_filter_length_zero
++;
738 result
= bloom_filter_contains(filter
,
740 revs
->bloom_filter_settings
);
743 count_bloom_filter_maybe
++;
745 count_bloom_filter_definitely_not
++;
750 static int rev_compare_tree(struct rev_info
*revs
,
751 struct commit
*parent
, struct commit
*commit
, int nth_parent
)
753 struct tree
*t1
= get_commit_tree(parent
);
754 struct tree
*t2
= get_commit_tree(commit
);
762 if (revs
->simplify_by_decoration
) {
764 * If we are simplifying by decoration, then the commit
765 * is worth showing if it has a tag pointing at it.
767 if (get_name_decoration(&commit
->object
))
768 return REV_TREE_DIFFERENT
;
770 * A commit that is not pointed by a tag is uninteresting
771 * if we are not limited by path. This means that you will
772 * see the usual "commits that touch the paths" plus any
773 * tagged commit by specifying both --simplify-by-decoration
776 if (!revs
->prune_data
.nr
)
777 return REV_TREE_SAME
;
780 if (revs
->bloom_key
&& !nth_parent
) {
781 bloom_ret
= check_maybe_different_in_bloom_filter(revs
, commit
);
784 return REV_TREE_SAME
;
787 tree_difference
= REV_TREE_SAME
;
788 revs
->pruning
.flags
.has_changes
= 0;
789 if (diff_tree_oid(&t1
->object
.oid
, &t2
->object
.oid
, "",
791 return REV_TREE_DIFFERENT
;
794 if (bloom_ret
== 1 && tree_difference
== REV_TREE_SAME
)
795 count_bloom_filter_false_positive
++;
797 return tree_difference
;
800 static int rev_same_tree_as_empty(struct rev_info
*revs
, struct commit
*commit
)
803 struct tree
*t1
= get_commit_tree(commit
);
808 tree_difference
= REV_TREE_SAME
;
809 revs
->pruning
.flags
.has_changes
= 0;
810 retval
= diff_tree_oid(NULL
, &t1
->object
.oid
, "", &revs
->pruning
);
812 return retval
>= 0 && (tree_difference
== REV_TREE_SAME
);
815 struct treesame_state
{
816 unsigned int nparents
;
817 unsigned char treesame
[FLEX_ARRAY
];
820 static struct treesame_state
*initialise_treesame(struct rev_info
*revs
, struct commit
*commit
)
822 unsigned n
= commit_list_count(commit
->parents
);
823 struct treesame_state
*st
= xcalloc(1, st_add(sizeof(*st
), n
));
825 add_decoration(&revs
->treesame
, &commit
->object
, st
);
830 * Must be called immediately after removing the nth_parent from a commit's
831 * parent list, if we are maintaining the per-parent treesame[] decoration.
832 * This does not recalculate the master TREESAME flag - update_treesame()
833 * should be called to update it after a sequence of treesame[] modifications
834 * that may have affected it.
836 static int compact_treesame(struct rev_info
*revs
, struct commit
*commit
, unsigned nth_parent
)
838 struct treesame_state
*st
;
841 if (!commit
->parents
) {
843 * Have just removed the only parent from a non-merge.
844 * Different handling, as we lack decoration.
847 die("compact_treesame %u", nth_parent
);
848 old_same
= !!(commit
->object
.flags
& TREESAME
);
849 if (rev_same_tree_as_empty(revs
, commit
))
850 commit
->object
.flags
|= TREESAME
;
852 commit
->object
.flags
&= ~TREESAME
;
856 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
857 if (!st
|| nth_parent
>= st
->nparents
)
858 die("compact_treesame %u", nth_parent
);
860 old_same
= st
->treesame
[nth_parent
];
861 memmove(st
->treesame
+ nth_parent
,
862 st
->treesame
+ nth_parent
+ 1,
863 st
->nparents
- nth_parent
- 1);
866 * If we've just become a non-merge commit, update TREESAME
867 * immediately, and remove the no-longer-needed decoration.
868 * If still a merge, defer update until update_treesame().
870 if (--st
->nparents
== 1) {
871 if (commit
->parents
->next
)
872 die("compact_treesame parents mismatch");
873 if (st
->treesame
[0] && revs
->dense
)
874 commit
->object
.flags
|= TREESAME
;
876 commit
->object
.flags
&= ~TREESAME
;
877 free(add_decoration(&revs
->treesame
, &commit
->object
, NULL
));
883 static unsigned update_treesame(struct rev_info
*revs
, struct commit
*commit
)
885 if (commit
->parents
&& commit
->parents
->next
) {
887 struct treesame_state
*st
;
888 struct commit_list
*p
;
889 unsigned relevant_parents
;
890 unsigned relevant_change
, irrelevant_change
;
892 st
= lookup_decoration(&revs
->treesame
, &commit
->object
);
894 die("update_treesame %s", oid_to_hex(&commit
->object
.oid
));
895 relevant_parents
= 0;
896 relevant_change
= irrelevant_change
= 0;
897 for (p
= commit
->parents
, n
= 0; p
; n
++, p
= p
->next
) {
898 if (relevant_commit(p
->item
)) {
899 relevant_change
|= !st
->treesame
[n
];
902 irrelevant_change
|= !st
->treesame
[n
];
904 if (relevant_parents
? relevant_change
: irrelevant_change
)
905 commit
->object
.flags
&= ~TREESAME
;
907 commit
->object
.flags
|= TREESAME
;
910 return commit
->object
.flags
& TREESAME
;
913 static inline int limiting_can_increase_treesame(const struct rev_info
*revs
)
916 * TREESAME is irrelevant unless prune && dense;
917 * if simplify_history is set, we can't have a mixture of TREESAME and
918 * !TREESAME INTERESTING parents (and we don't have treesame[]
919 * decoration anyway);
920 * if first_parent_only is set, then the TREESAME flag is locked
921 * against the first parent (and again we lack treesame[] decoration).
923 return revs
->prune
&& revs
->dense
&&
924 !revs
->simplify_history
&&
925 !revs
->first_parent_only
;
928 static void try_to_simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
930 struct commit_list
**pp
, *parent
;
931 struct treesame_state
*ts
= NULL
;
932 int relevant_change
= 0, irrelevant_change
= 0;
933 int relevant_parents
, nth_parent
;
936 * If we don't do pruning, everything is interesting
941 if (!get_commit_tree(commit
))
944 if (!commit
->parents
) {
945 if (rev_same_tree_as_empty(revs
, commit
))
946 commit
->object
.flags
|= TREESAME
;
951 * Normal non-merge commit? If we don't want to make the
952 * history dense, we consider it always to be a change..
954 if (!revs
->dense
&& !commit
->parents
->next
)
957 for (pp
= &commit
->parents
, nth_parent
= 0, relevant_parents
= 0;
958 (parent
= *pp
) != NULL
;
959 pp
= &parent
->next
, nth_parent
++) {
960 struct commit
*p
= parent
->item
;
961 if (relevant_commit(p
))
964 if (nth_parent
== 1) {
966 * This our second loop iteration - so we now know
967 * we're dealing with a merge.
969 * Do not compare with later parents when we care only about
970 * the first parent chain, in order to avoid derailing the
971 * traversal to follow a side branch that brought everything
972 * in the path we are limited to by the pathspec.
974 if (revs
->first_parent_only
)
977 * If this will remain a potentially-simplifiable
978 * merge, remember per-parent treesame if needed.
979 * Initialise the array with the comparison from our
982 if (revs
->treesame
.name
&&
983 !revs
->simplify_history
&&
984 !(commit
->object
.flags
& UNINTERESTING
)) {
985 ts
= initialise_treesame(revs
, commit
);
986 if (!(irrelevant_change
|| relevant_change
))
990 if (parse_commit(p
) < 0)
991 die("cannot simplify commit %s (because of %s)",
992 oid_to_hex(&commit
->object
.oid
),
993 oid_to_hex(&p
->object
.oid
));
994 switch (rev_compare_tree(revs
, p
, commit
, nth_parent
)) {
996 if (!revs
->simplify_history
|| !relevant_commit(p
)) {
997 /* Even if a merge with an uninteresting
998 * side branch brought the entire change
999 * we are interested in, we do not want
1000 * to lose the other branches of this
1001 * merge, so we just keep going.
1004 ts
->treesame
[nth_parent
] = 1;
1007 parent
->next
= NULL
;
1008 commit
->parents
= parent
;
1009 commit
->object
.flags
|= TREESAME
;
1013 if (revs
->remove_empty_trees
&&
1014 rev_same_tree_as_empty(revs
, p
)) {
1015 /* We are adding all the specified
1016 * paths from this parent, so the
1017 * history beyond this parent is not
1018 * interesting. Remove its parents
1019 * (they are grandparents for us).
1020 * IOW, we pretend this parent is a
1023 if (parse_commit(p
) < 0)
1024 die("cannot simplify commit %s (invalid %s)",
1025 oid_to_hex(&commit
->object
.oid
),
1026 oid_to_hex(&p
->object
.oid
));
1031 case REV_TREE_DIFFERENT
:
1032 if (relevant_commit(p
))
1033 relevant_change
= 1;
1035 irrelevant_change
= 1;
1038 die("bad tree compare for commit %s", oid_to_hex(&commit
->object
.oid
));
1042 * TREESAME is straightforward for single-parent commits. For merge
1043 * commits, it is most useful to define it so that "irrelevant"
1044 * parents cannot make us !TREESAME - if we have any relevant
1045 * parents, then we only consider TREESAMEness with respect to them,
1046 * allowing irrelevant merges from uninteresting branches to be
1047 * simplified away. Only if we have only irrelevant parents do we
1048 * base TREESAME on them. Note that this logic is replicated in
1049 * update_treesame, which should be kept in sync.
1051 if (relevant_parents
? !relevant_change
: !irrelevant_change
)
1052 commit
->object
.flags
|= TREESAME
;
1055 static int process_parents(struct rev_info
*revs
, struct commit
*commit
,
1056 struct commit_list
**list
, struct prio_queue
*queue
)
1058 struct commit_list
*parent
= commit
->parents
;
1061 if (commit
->object
.flags
& ADDED
)
1063 commit
->object
.flags
|= ADDED
;
1065 if (revs
->include_check
&&
1066 !revs
->include_check(commit
, revs
->include_check_data
))
1070 * If the commit is uninteresting, don't try to
1071 * prune parents - we want the maximal uninteresting
1074 * Normally we haven't parsed the parent
1075 * yet, so we won't have a parent of a parent
1076 * here. However, it may turn out that we've
1077 * reached this commit some other way (where it
1078 * wasn't uninteresting), in which case we need
1079 * to mark its parents recursively too..
1081 if (commit
->object
.flags
& UNINTERESTING
) {
1083 struct commit
*p
= parent
->item
;
1084 parent
= parent
->next
;
1086 p
->object
.flags
|= UNINTERESTING
;
1087 if (parse_commit_gently(p
, 1) < 0)
1090 mark_parents_uninteresting(p
);
1091 if (p
->object
.flags
& SEEN
)
1093 p
->object
.flags
|= SEEN
;
1095 commit_list_insert_by_date(p
, list
);
1097 prio_queue_put(queue
, p
);
1103 * Ok, the commit wasn't uninteresting. Try to
1104 * simplify the commit history and find the parent
1105 * that has no differences in the path set if one exists.
1107 try_to_simplify_commit(revs
, commit
);
1112 left_flag
= (commit
->object
.flags
& SYMMETRIC_LEFT
);
1114 for (parent
= commit
->parents
; parent
; parent
= parent
->next
) {
1115 struct commit
*p
= parent
->item
;
1116 int gently
= revs
->ignore_missing_links
||
1117 revs
->exclude_promisor_objects
;
1118 if (parse_commit_gently(p
, gently
) < 0) {
1119 if (revs
->exclude_promisor_objects
&&
1120 is_promisor_object(&p
->object
.oid
)) {
1121 if (revs
->first_parent_only
)
1127 if (revs
->sources
) {
1128 char **slot
= revision_sources_at(revs
->sources
, p
);
1131 *slot
= *revision_sources_at(revs
->sources
, commit
);
1133 p
->object
.flags
|= left_flag
;
1134 if (!(p
->object
.flags
& SEEN
)) {
1135 p
->object
.flags
|= SEEN
;
1137 commit_list_insert_by_date(p
, list
);
1139 prio_queue_put(queue
, p
);
1141 if (revs
->first_parent_only
)
1147 static void cherry_pick_list(struct commit_list
*list
, struct rev_info
*revs
)
1149 struct commit_list
*p
;
1150 int left_count
= 0, right_count
= 0;
1152 struct patch_ids ids
;
1153 unsigned cherry_flag
;
1155 /* First count the commits on the left and on the right */
1156 for (p
= list
; p
; p
= p
->next
) {
1157 struct commit
*commit
= p
->item
;
1158 unsigned flags
= commit
->object
.flags
;
1159 if (flags
& BOUNDARY
)
1161 else if (flags
& SYMMETRIC_LEFT
)
1167 if (!left_count
|| !right_count
)
1170 left_first
= left_count
< right_count
;
1171 init_patch_ids(revs
->repo
, &ids
);
1172 ids
.diffopts
.pathspec
= revs
->diffopt
.pathspec
;
1174 /* Compute patch-ids for one side */
1175 for (p
= list
; p
; p
= p
->next
) {
1176 struct commit
*commit
= p
->item
;
1177 unsigned flags
= commit
->object
.flags
;
1179 if (flags
& BOUNDARY
)
1182 * If we have fewer left, left_first is set and we omit
1183 * commits on the right branch in this loop. If we have
1184 * fewer right, we skip the left ones.
1186 if (left_first
!= !!(flags
& SYMMETRIC_LEFT
))
1188 add_commit_patch_id(commit
, &ids
);
1191 /* either cherry_mark or cherry_pick are true */
1192 cherry_flag
= revs
->cherry_mark
? PATCHSAME
: SHOWN
;
1194 /* Check the other side */
1195 for (p
= list
; p
; p
= p
->next
) {
1196 struct commit
*commit
= p
->item
;
1197 struct patch_id
*id
;
1198 unsigned flags
= commit
->object
.flags
;
1200 if (flags
& BOUNDARY
)
1203 * If we have fewer left, left_first is set and we omit
1204 * commits on the left branch in this loop.
1206 if (left_first
== !!(flags
& SYMMETRIC_LEFT
))
1210 * Have we seen the same patch id?
1212 id
= has_commit_patch_id(commit
, &ids
);
1216 commit
->object
.flags
|= cherry_flag
;
1217 id
->commit
->object
.flags
|= cherry_flag
;
1220 free_patch_ids(&ids
);
1223 /* How many extra uninteresting commits we want to see.. */
1226 static int still_interesting(struct commit_list
*src
, timestamp_t date
, int slop
,
1227 struct commit
**interesting_cache
)
1230 * No source list at all? We're definitely done..
1236 * Does the destination list contain entries with a date
1237 * before the source list? Definitely _not_ done.
1239 if (date
<= src
->item
->date
)
1243 * Does the source list still have interesting commits in
1244 * it? Definitely not done..
1246 if (!everybody_uninteresting(src
, interesting_cache
))
1249 /* Ok, we're closing in.. */
1254 * "rev-list --ancestry-path A..B" computes commits that are ancestors
1255 * of B but not ancestors of A but further limits the result to those
1256 * that are descendants of A. This takes the list of bottom commits and
1257 * the result of "A..B" without --ancestry-path, and limits the latter
1258 * further to the ones that can reach one of the commits in "bottom".
1260 static void limit_to_ancestry(struct commit_list
*bottom
, struct commit_list
*list
)
1262 struct commit_list
*p
;
1263 struct commit_list
*rlist
= NULL
;
1267 * Reverse the list so that it will be likely that we would
1268 * process parents before children.
1270 for (p
= list
; p
; p
= p
->next
)
1271 commit_list_insert(p
->item
, &rlist
);
1273 for (p
= bottom
; p
; p
= p
->next
)
1274 p
->item
->object
.flags
|= TMP_MARK
;
1277 * Mark the ones that can reach bottom commits in "list",
1278 * in a bottom-up fashion.
1282 for (p
= rlist
; p
; p
= p
->next
) {
1283 struct commit
*c
= p
->item
;
1284 struct commit_list
*parents
;
1285 if (c
->object
.flags
& (TMP_MARK
| UNINTERESTING
))
1287 for (parents
= c
->parents
;
1289 parents
= parents
->next
) {
1290 if (!(parents
->item
->object
.flags
& TMP_MARK
))
1292 c
->object
.flags
|= TMP_MARK
;
1297 } while (made_progress
);
1300 * NEEDSWORK: decide if we want to remove parents that are
1301 * not marked with TMP_MARK from commit->parents for commits
1302 * in the resulting list. We may not want to do that, though.
1306 * The ones that are not marked with TMP_MARK are uninteresting
1308 for (p
= list
; p
; p
= p
->next
) {
1309 struct commit
*c
= p
->item
;
1310 if (c
->object
.flags
& TMP_MARK
)
1312 c
->object
.flags
|= UNINTERESTING
;
1315 /* We are done with the TMP_MARK */
1316 for (p
= list
; p
; p
= p
->next
)
1317 p
->item
->object
.flags
&= ~TMP_MARK
;
1318 for (p
= bottom
; p
; p
= p
->next
)
1319 p
->item
->object
.flags
&= ~TMP_MARK
;
1320 free_commit_list(rlist
);
1324 * Before walking the history, keep the set of "negative" refs the
1325 * caller has asked to exclude.
1327 * This is used to compute "rev-list --ancestry-path A..B", as we need
1328 * to filter the result of "A..B" further to the ones that can actually
1331 static struct commit_list
*collect_bottom_commits(struct commit_list
*list
)
1333 struct commit_list
*elem
, *bottom
= NULL
;
1334 for (elem
= list
; elem
; elem
= elem
->next
)
1335 if (elem
->item
->object
.flags
& BOTTOM
)
1336 commit_list_insert(elem
->item
, &bottom
);
1340 /* Assumes either left_only or right_only is set */
1341 static void limit_left_right(struct commit_list
*list
, struct rev_info
*revs
)
1343 struct commit_list
*p
;
1345 for (p
= list
; p
; p
= p
->next
) {
1346 struct commit
*commit
= p
->item
;
1348 if (revs
->right_only
) {
1349 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
1350 commit
->object
.flags
|= SHOWN
;
1351 } else /* revs->left_only is set */
1352 if (!(commit
->object
.flags
& SYMMETRIC_LEFT
))
1353 commit
->object
.flags
|= SHOWN
;
1357 static int limit_list(struct rev_info
*revs
)
1360 timestamp_t date
= TIME_MAX
;
1361 struct commit_list
*list
= revs
->commits
;
1362 struct commit_list
*newlist
= NULL
;
1363 struct commit_list
**p
= &newlist
;
1364 struct commit_list
*bottom
= NULL
;
1365 struct commit
*interesting_cache
= NULL
;
1367 if (revs
->ancestry_path
) {
1368 bottom
= collect_bottom_commits(list
);
1370 die("--ancestry-path given but there are no bottom commits");
1374 struct commit
*commit
= pop_commit(&list
);
1375 struct object
*obj
= &commit
->object
;
1376 show_early_output_fn_t show
;
1378 if (commit
== interesting_cache
)
1379 interesting_cache
= NULL
;
1381 if (revs
->max_age
!= -1 && (commit
->date
< revs
->max_age
))
1382 obj
->flags
|= UNINTERESTING
;
1383 if (process_parents(revs
, commit
, &list
, NULL
) < 0)
1385 if (obj
->flags
& UNINTERESTING
) {
1386 mark_parents_uninteresting(commit
);
1387 slop
= still_interesting(list
, date
, slop
, &interesting_cache
);
1392 if (revs
->min_age
!= -1 && (commit
->date
> revs
->min_age
))
1394 date
= commit
->date
;
1395 p
= &commit_list_insert(commit
, p
)->next
;
1397 show
= show_early_output
;
1401 show(revs
, newlist
);
1402 show_early_output
= NULL
;
1404 if (revs
->cherry_pick
|| revs
->cherry_mark
)
1405 cherry_pick_list(newlist
, revs
);
1407 if (revs
->left_only
|| revs
->right_only
)
1408 limit_left_right(newlist
, revs
);
1411 limit_to_ancestry(bottom
, newlist
);
1412 free_commit_list(bottom
);
1416 * Check if any commits have become TREESAME by some of their parents
1417 * becoming UNINTERESTING.
1419 if (limiting_can_increase_treesame(revs
))
1420 for (list
= newlist
; list
; list
= list
->next
) {
1421 struct commit
*c
= list
->item
;
1422 if (c
->object
.flags
& (UNINTERESTING
| TREESAME
))
1424 update_treesame(revs
, c
);
1427 revs
->commits
= newlist
;
1432 * Add an entry to refs->cmdline with the specified information.
1435 static void add_rev_cmdline(struct rev_info
*revs
,
1436 struct object
*item
,
1441 struct rev_cmdline_info
*info
= &revs
->cmdline
;
1442 unsigned int nr
= info
->nr
;
1444 ALLOC_GROW(info
->rev
, nr
+ 1, info
->alloc
);
1445 info
->rev
[nr
].item
= item
;
1446 info
->rev
[nr
].name
= xstrdup(name
);
1447 info
->rev
[nr
].whence
= whence
;
1448 info
->rev
[nr
].flags
= flags
;
1452 static void add_rev_cmdline_list(struct rev_info
*revs
,
1453 struct commit_list
*commit_list
,
1457 while (commit_list
) {
1458 struct object
*object
= &commit_list
->item
->object
;
1459 add_rev_cmdline(revs
, object
, oid_to_hex(&object
->oid
),
1461 commit_list
= commit_list
->next
;
1465 struct all_refs_cb
{
1467 int warned_bad_reflog
;
1468 struct rev_info
*all_revs
;
1469 const char *name_for_errormsg
;
1470 struct worktree
*wt
;
1473 int ref_excluded(struct string_list
*ref_excludes
, const char *path
)
1475 struct string_list_item
*item
;
1479 for_each_string_list_item(item
, ref_excludes
) {
1480 if (!wildmatch(item
->string
, path
, 0))
1486 static int handle_one_ref(const char *path
, const struct object_id
*oid
,
1487 int flag
, void *cb_data
)
1489 struct all_refs_cb
*cb
= cb_data
;
1490 struct object
*object
;
1492 if (ref_excluded(cb
->all_revs
->ref_excludes
, path
))
1495 object
= get_reference(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1496 add_rev_cmdline(cb
->all_revs
, object
, path
, REV_CMD_REF
, cb
->all_flags
);
1497 add_pending_oid(cb
->all_revs
, path
, oid
, cb
->all_flags
);
1501 static void init_all_refs_cb(struct all_refs_cb
*cb
, struct rev_info
*revs
,
1504 cb
->all_revs
= revs
;
1505 cb
->all_flags
= flags
;
1506 revs
->rev_input_given
= 1;
1510 void clear_ref_exclusion(struct string_list
**ref_excludes_p
)
1512 if (*ref_excludes_p
) {
1513 string_list_clear(*ref_excludes_p
, 0);
1514 free(*ref_excludes_p
);
1516 *ref_excludes_p
= NULL
;
1519 void add_ref_exclusion(struct string_list
**ref_excludes_p
, const char *exclude
)
1521 if (!*ref_excludes_p
) {
1522 *ref_excludes_p
= xcalloc(1, sizeof(**ref_excludes_p
));
1523 (*ref_excludes_p
)->strdup_strings
= 1;
1525 string_list_append(*ref_excludes_p
, exclude
);
1528 static void handle_refs(struct ref_store
*refs
,
1529 struct rev_info
*revs
, unsigned flags
,
1530 int (*for_each
)(struct ref_store
*, each_ref_fn
, void *))
1532 struct all_refs_cb cb
;
1535 /* this could happen with uninitialized submodules */
1539 init_all_refs_cb(&cb
, revs
, flags
);
1540 for_each(refs
, handle_one_ref
, &cb
);
1543 static void handle_one_reflog_commit(struct object_id
*oid
, void *cb_data
)
1545 struct all_refs_cb
*cb
= cb_data
;
1546 if (!is_null_oid(oid
)) {
1547 struct object
*o
= parse_object(cb
->all_revs
->repo
, oid
);
1549 o
->flags
|= cb
->all_flags
;
1550 /* ??? CMDLINEFLAGS ??? */
1551 add_pending_object(cb
->all_revs
, o
, "");
1553 else if (!cb
->warned_bad_reflog
) {
1554 warning("reflog of '%s' references pruned commits",
1555 cb
->name_for_errormsg
);
1556 cb
->warned_bad_reflog
= 1;
1561 static int handle_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1562 const char *email
, timestamp_t timestamp
, int tz
,
1563 const char *message
, void *cb_data
)
1565 handle_one_reflog_commit(ooid
, cb_data
);
1566 handle_one_reflog_commit(noid
, cb_data
);
1570 static int handle_one_reflog(const char *refname_in_wt
,
1571 const struct object_id
*oid
,
1572 int flag
, void *cb_data
)
1574 struct all_refs_cb
*cb
= cb_data
;
1575 struct strbuf refname
= STRBUF_INIT
;
1577 cb
->warned_bad_reflog
= 0;
1578 strbuf_worktree_ref(cb
->wt
, &refname
, refname_in_wt
);
1579 cb
->name_for_errormsg
= refname
.buf
;
1580 refs_for_each_reflog_ent(get_main_ref_store(the_repository
),
1582 handle_one_reflog_ent
, cb_data
);
1583 strbuf_release(&refname
);
1587 static void add_other_reflogs_to_pending(struct all_refs_cb
*cb
)
1589 struct worktree
**worktrees
, **p
;
1591 worktrees
= get_worktrees(0);
1592 for (p
= worktrees
; *p
; p
++) {
1593 struct worktree
*wt
= *p
;
1599 refs_for_each_reflog(get_worktree_ref_store(wt
),
1603 free_worktrees(worktrees
);
1606 void add_reflogs_to_pending(struct rev_info
*revs
, unsigned flags
)
1608 struct all_refs_cb cb
;
1611 cb
.all_flags
= flags
;
1613 for_each_reflog(handle_one_reflog
, &cb
);
1615 if (!revs
->single_worktree
)
1616 add_other_reflogs_to_pending(&cb
);
1619 static void add_cache_tree(struct cache_tree
*it
, struct rev_info
*revs
,
1620 struct strbuf
*path
, unsigned int flags
)
1622 size_t baselen
= path
->len
;
1625 if (it
->entry_count
>= 0) {
1626 struct tree
*tree
= lookup_tree(revs
->repo
, &it
->oid
);
1627 tree
->object
.flags
|= flags
;
1628 add_pending_object_with_path(revs
, &tree
->object
, "",
1632 for (i
= 0; i
< it
->subtree_nr
; i
++) {
1633 struct cache_tree_sub
*sub
= it
->down
[i
];
1634 strbuf_addf(path
, "%s%s", baselen
? "/" : "", sub
->name
);
1635 add_cache_tree(sub
->cache_tree
, revs
, path
, flags
);
1636 strbuf_setlen(path
, baselen
);
1641 static void do_add_index_objects_to_pending(struct rev_info
*revs
,
1642 struct index_state
*istate
,
1647 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1648 struct cache_entry
*ce
= istate
->cache
[i
];
1651 if (S_ISGITLINK(ce
->ce_mode
))
1654 blob
= lookup_blob(revs
->repo
, &ce
->oid
);
1656 die("unable to add index blob to traversal");
1657 blob
->object
.flags
|= flags
;
1658 add_pending_object_with_path(revs
, &blob
->object
, "",
1659 ce
->ce_mode
, ce
->name
);
1662 if (istate
->cache_tree
) {
1663 struct strbuf path
= STRBUF_INIT
;
1664 add_cache_tree(istate
->cache_tree
, revs
, &path
, flags
);
1665 strbuf_release(&path
);
1669 void add_index_objects_to_pending(struct rev_info
*revs
, unsigned int flags
)
1671 struct worktree
**worktrees
, **p
;
1673 repo_read_index(revs
->repo
);
1674 do_add_index_objects_to_pending(revs
, revs
->repo
->index
, flags
);
1676 if (revs
->single_worktree
)
1679 worktrees
= get_worktrees(0);
1680 for (p
= worktrees
; *p
; p
++) {
1681 struct worktree
*wt
= *p
;
1682 struct index_state istate
= { NULL
};
1685 continue; /* current index already taken care of */
1687 if (read_index_from(&istate
,
1688 worktree_git_path(wt
, "index"),
1689 get_worktree_git_dir(wt
)) > 0)
1690 do_add_index_objects_to_pending(revs
, &istate
, flags
);
1691 discard_index(&istate
);
1693 free_worktrees(worktrees
);
1696 struct add_alternate_refs_data
{
1697 struct rev_info
*revs
;
1701 static void add_one_alternate_ref(const struct object_id
*oid
,
1704 const char *name
= ".alternate";
1705 struct add_alternate_refs_data
*data
= vdata
;
1708 obj
= get_reference(data
->revs
, name
, oid
, data
->flags
);
1709 add_rev_cmdline(data
->revs
, obj
, name
, REV_CMD_REV
, data
->flags
);
1710 add_pending_object(data
->revs
, obj
, name
);
1713 static void add_alternate_refs_to_pending(struct rev_info
*revs
,
1716 struct add_alternate_refs_data data
;
1719 for_each_alternate_ref(add_one_alternate_ref
, &data
);
1722 static int add_parents_only(struct rev_info
*revs
, const char *arg_
, int flags
,
1725 struct object_id oid
;
1727 struct commit
*commit
;
1728 struct commit_list
*parents
;
1730 const char *arg
= arg_
;
1733 flags
^= UNINTERESTING
| BOTTOM
;
1736 if (get_oid_committish(arg
, &oid
))
1739 it
= get_reference(revs
, arg
, &oid
, 0);
1740 if (!it
&& revs
->ignore_missing
)
1742 if (it
->type
!= OBJ_TAG
)
1744 if (!((struct tag
*)it
)->tagged
)
1746 oidcpy(&oid
, &((struct tag
*)it
)->tagged
->oid
);
1748 if (it
->type
!= OBJ_COMMIT
)
1750 commit
= (struct commit
*)it
;
1751 if (exclude_parent
&&
1752 exclude_parent
> commit_list_count(commit
->parents
))
1754 for (parents
= commit
->parents
, parent_number
= 1;
1756 parents
= parents
->next
, parent_number
++) {
1757 if (exclude_parent
&& parent_number
!= exclude_parent
)
1760 it
= &parents
->item
->object
;
1762 add_rev_cmdline(revs
, it
, arg_
, REV_CMD_PARENTS_ONLY
, flags
);
1763 add_pending_object(revs
, it
, arg
);
1768 void repo_init_revisions(struct repository
*r
,
1769 struct rev_info
*revs
,
1772 memset(revs
, 0, sizeof(*revs
));
1775 revs
->abbrev
= DEFAULT_ABBREV
;
1776 revs
->ignore_merges
= 1;
1777 revs
->simplify_history
= 1;
1778 revs
->pruning
.repo
= r
;
1779 revs
->pruning
.flags
.recursive
= 1;
1780 revs
->pruning
.flags
.quick
= 1;
1781 revs
->pruning
.add_remove
= file_add_remove
;
1782 revs
->pruning
.change
= file_change
;
1783 revs
->pruning
.change_fn_data
= revs
;
1784 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
1786 revs
->prefix
= prefix
;
1789 revs
->skip_count
= -1;
1790 revs
->max_count
= -1;
1791 revs
->max_parents
= -1;
1792 revs
->expand_tabs_in_log
= -1;
1794 revs
->commit_format
= CMIT_FMT_DEFAULT
;
1795 revs
->expand_tabs_in_log_default
= 8;
1797 init_grep_defaults(revs
->repo
);
1798 grep_init(&revs
->grep_filter
, revs
->repo
, prefix
);
1799 revs
->grep_filter
.status_only
= 1;
1801 repo_diff_setup(revs
->repo
, &revs
->diffopt
);
1802 if (prefix
&& !revs
->diffopt
.prefix
) {
1803 revs
->diffopt
.prefix
= prefix
;
1804 revs
->diffopt
.prefix_length
= strlen(prefix
);
1807 init_display_notes(&revs
->notes_opt
);
1810 static void add_pending_commit_list(struct rev_info
*revs
,
1811 struct commit_list
*commit_list
,
1814 while (commit_list
) {
1815 struct object
*object
= &commit_list
->item
->object
;
1816 object
->flags
|= flags
;
1817 add_pending_object(revs
, object
, oid_to_hex(&object
->oid
));
1818 commit_list
= commit_list
->next
;
1822 static void prepare_show_merge(struct rev_info
*revs
)
1824 struct commit_list
*bases
;
1825 struct commit
*head
, *other
;
1826 struct object_id oid
;
1827 const char **prune
= NULL
;
1828 int i
, prune_num
= 1; /* counting terminating NULL */
1829 struct index_state
*istate
= revs
->repo
->index
;
1831 if (get_oid("HEAD", &oid
))
1832 die("--merge without HEAD?");
1833 head
= lookup_commit_or_die(&oid
, "HEAD");
1834 if (get_oid("MERGE_HEAD", &oid
))
1835 die("--merge without MERGE_HEAD?");
1836 other
= lookup_commit_or_die(&oid
, "MERGE_HEAD");
1837 add_pending_object(revs
, &head
->object
, "HEAD");
1838 add_pending_object(revs
, &other
->object
, "MERGE_HEAD");
1839 bases
= get_merge_bases(head
, other
);
1840 add_rev_cmdline_list(revs
, bases
, REV_CMD_MERGE_BASE
, UNINTERESTING
| BOTTOM
);
1841 add_pending_commit_list(revs
, bases
, UNINTERESTING
| BOTTOM
);
1842 free_commit_list(bases
);
1843 head
->object
.flags
|= SYMMETRIC_LEFT
;
1845 if (!istate
->cache_nr
)
1846 repo_read_index(revs
->repo
);
1847 for (i
= 0; i
< istate
->cache_nr
; i
++) {
1848 const struct cache_entry
*ce
= istate
->cache
[i
];
1851 if (ce_path_match(istate
, ce
, &revs
->prune_data
, NULL
)) {
1853 REALLOC_ARRAY(prune
, prune_num
);
1854 prune
[prune_num
-2] = ce
->name
;
1855 prune
[prune_num
-1] = NULL
;
1857 while ((i
+1 < istate
->cache_nr
) &&
1858 ce_same_name(ce
, istate
->cache
[i
+1]))
1861 clear_pathspec(&revs
->prune_data
);
1862 parse_pathspec(&revs
->prune_data
, PATHSPEC_ALL_MAGIC
& ~PATHSPEC_LITERAL
,
1863 PATHSPEC_PREFER_FULL
| PATHSPEC_LITERAL_PATH
, "", prune
);
1867 static int dotdot_missing(const char *arg
, char *dotdot
,
1868 struct rev_info
*revs
, int symmetric
)
1870 if (revs
->ignore_missing
)
1872 /* de-munge so we report the full argument */
1875 ? "Invalid symmetric difference expression %s"
1876 : "Invalid revision range %s", arg
);
1879 static int handle_dotdot_1(const char *arg
, char *dotdot
,
1880 struct rev_info
*revs
, int flags
,
1881 int cant_be_filename
,
1882 struct object_context
*a_oc
,
1883 struct object_context
*b_oc
)
1885 const char *a_name
, *b_name
;
1886 struct object_id a_oid
, b_oid
;
1887 struct object
*a_obj
, *b_obj
;
1888 unsigned int a_flags
, b_flags
;
1890 unsigned int flags_exclude
= flags
^ (UNINTERESTING
| BOTTOM
);
1891 unsigned int oc_flags
= GET_OID_COMMITTISH
| GET_OID_RECORD_PATH
;
1897 b_name
= dotdot
+ 2;
1898 if (*b_name
== '.') {
1905 if (get_oid_with_context(revs
->repo
, a_name
, oc_flags
, &a_oid
, a_oc
) ||
1906 get_oid_with_context(revs
->repo
, b_name
, oc_flags
, &b_oid
, b_oc
))
1909 if (!cant_be_filename
) {
1911 verify_non_filename(revs
->prefix
, arg
);
1915 a_obj
= parse_object(revs
->repo
, &a_oid
);
1916 b_obj
= parse_object(revs
->repo
, &b_oid
);
1917 if (!a_obj
|| !b_obj
)
1918 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1923 a_flags
= flags_exclude
;
1925 /* A...B -- find merge bases between the two */
1926 struct commit
*a
, *b
;
1927 struct commit_list
*exclude
;
1929 a
= lookup_commit_reference(revs
->repo
, &a_obj
->oid
);
1930 b
= lookup_commit_reference(revs
->repo
, &b_obj
->oid
);
1932 return dotdot_missing(arg
, dotdot
, revs
, symmetric
);
1934 exclude
= get_merge_bases(a
, b
);
1935 add_rev_cmdline_list(revs
, exclude
, REV_CMD_MERGE_BASE
,
1937 add_pending_commit_list(revs
, exclude
, flags_exclude
);
1938 free_commit_list(exclude
);
1941 a_flags
= flags
| SYMMETRIC_LEFT
;
1944 a_obj
->flags
|= a_flags
;
1945 b_obj
->flags
|= b_flags
;
1946 add_rev_cmdline(revs
, a_obj
, a_name
, REV_CMD_LEFT
, a_flags
);
1947 add_rev_cmdline(revs
, b_obj
, b_name
, REV_CMD_RIGHT
, b_flags
);
1948 add_pending_object_with_path(revs
, a_obj
, a_name
, a_oc
->mode
, a_oc
->path
);
1949 add_pending_object_with_path(revs
, b_obj
, b_name
, b_oc
->mode
, b_oc
->path
);
1953 static int handle_dotdot(const char *arg
,
1954 struct rev_info
*revs
, int flags
,
1955 int cant_be_filename
)
1957 struct object_context a_oc
, b_oc
;
1958 char *dotdot
= strstr(arg
, "..");
1964 memset(&a_oc
, 0, sizeof(a_oc
));
1965 memset(&b_oc
, 0, sizeof(b_oc
));
1968 ret
= handle_dotdot_1(arg
, dotdot
, revs
, flags
, cant_be_filename
,
1978 int handle_revision_arg(const char *arg_
, struct rev_info
*revs
, int flags
, unsigned revarg_opt
)
1980 struct object_context oc
;
1982 struct object
*object
;
1983 struct object_id oid
;
1985 const char *arg
= arg_
;
1986 int cant_be_filename
= revarg_opt
& REVARG_CANNOT_BE_FILENAME
;
1987 unsigned get_sha1_flags
= GET_OID_RECORD_PATH
;
1989 flags
= flags
& UNINTERESTING
? flags
| BOTTOM
: flags
& ~BOTTOM
;
1991 if (!cant_be_filename
&& !strcmp(arg
, "..")) {
1993 * Just ".."? That is not a range but the
1994 * pathspec for the parent directory.
1999 if (!handle_dotdot(arg
, revs
, flags
, revarg_opt
))
2002 mark
= strstr(arg
, "^@");
2003 if (mark
&& !mark
[2]) {
2005 if (add_parents_only(revs
, arg
, flags
, 0))
2009 mark
= strstr(arg
, "^!");
2010 if (mark
&& !mark
[2]) {
2012 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), 0))
2015 mark
= strstr(arg
, "^-");
2017 int exclude_parent
= 1;
2021 exclude_parent
= strtoul(mark
+ 2, &end
, 10);
2022 if (*end
!= '\0' || !exclude_parent
)
2027 if (!add_parents_only(revs
, arg
, flags
^ (UNINTERESTING
| BOTTOM
), exclude_parent
))
2033 local_flags
= UNINTERESTING
| BOTTOM
;
2037 if (revarg_opt
& REVARG_COMMITTISH
)
2038 get_sha1_flags
|= GET_OID_COMMITTISH
;
2040 if (get_oid_with_context(revs
->repo
, arg
, get_sha1_flags
, &oid
, &oc
))
2041 return revs
->ignore_missing
? 0 : -1;
2042 if (!cant_be_filename
)
2043 verify_non_filename(revs
->prefix
, arg
);
2044 object
= get_reference(revs
, arg
, &oid
, flags
^ local_flags
);
2046 return revs
->ignore_missing
? 0 : -1;
2047 add_rev_cmdline(revs
, object
, arg_
, REV_CMD_REV
, flags
^ local_flags
);
2048 add_pending_object_with_path(revs
, object
, arg
, oc
.mode
, oc
.path
);
2053 static void read_pathspec_from_stdin(struct strbuf
*sb
,
2054 struct argv_array
*prune
)
2056 while (strbuf_getline(sb
, stdin
) != EOF
)
2057 argv_array_push(prune
, sb
->buf
);
2060 static void read_revisions_from_stdin(struct rev_info
*revs
,
2061 struct argv_array
*prune
)
2064 int seen_dashdash
= 0;
2067 save_warning
= warn_on_object_refname_ambiguity
;
2068 warn_on_object_refname_ambiguity
= 0;
2070 strbuf_init(&sb
, 1000);
2071 while (strbuf_getline(&sb
, stdin
) != EOF
) {
2075 if (sb
.buf
[0] == '-') {
2076 if (len
== 2 && sb
.buf
[1] == '-') {
2080 die("options not supported in --stdin mode");
2082 if (handle_revision_arg(sb
.buf
, revs
, 0,
2083 REVARG_CANNOT_BE_FILENAME
))
2084 die("bad revision '%s'", sb
.buf
);
2087 read_pathspec_from_stdin(&sb
, prune
);
2089 strbuf_release(&sb
);
2090 warn_on_object_refname_ambiguity
= save_warning
;
2093 static void add_grep(struct rev_info
*revs
, const char *ptn
, enum grep_pat_token what
)
2095 append_grep_pattern(&revs
->grep_filter
, ptn
, "command line", 0, what
);
2098 static void add_header_grep(struct rev_info
*revs
, enum grep_header_field field
, const char *pattern
)
2100 append_header_grep_pattern(&revs
->grep_filter
, field
, pattern
);
2103 static void add_message_grep(struct rev_info
*revs
, const char *pattern
)
2105 add_grep(revs
, pattern
, GREP_PATTERN_BODY
);
2108 static int handle_revision_opt(struct rev_info
*revs
, int argc
, const char **argv
,
2109 int *unkc
, const char **unkv
,
2110 const struct setup_revision_opt
* opt
)
2112 const char *arg
= argv
[0];
2115 const unsigned hexsz
= the_hash_algo
->hexsz
;
2117 /* pseudo revision arguments */
2118 if (!strcmp(arg
, "--all") || !strcmp(arg
, "--branches") ||
2119 !strcmp(arg
, "--tags") || !strcmp(arg
, "--remotes") ||
2120 !strcmp(arg
, "--reflog") || !strcmp(arg
, "--not") ||
2121 !strcmp(arg
, "--no-walk") || !strcmp(arg
, "--do-walk") ||
2122 !strcmp(arg
, "--bisect") || starts_with(arg
, "--glob=") ||
2123 !strcmp(arg
, "--indexed-objects") ||
2124 !strcmp(arg
, "--alternate-refs") ||
2125 starts_with(arg
, "--exclude=") ||
2126 starts_with(arg
, "--branches=") || starts_with(arg
, "--tags=") ||
2127 starts_with(arg
, "--remotes=") || starts_with(arg
, "--no-walk="))
2129 unkv
[(*unkc
)++] = arg
;
2133 if ((argcount
= parse_long_opt("max-count", argv
, &optarg
))) {
2134 revs
->max_count
= atoi(optarg
);
2137 } else if ((argcount
= parse_long_opt("skip", argv
, &optarg
))) {
2138 revs
->skip_count
= atoi(optarg
);
2140 } else if ((*arg
== '-') && isdigit(arg
[1])) {
2141 /* accept -<digit>, like traditional "head" */
2142 if (strtol_i(arg
+ 1, 10, &revs
->max_count
) < 0 ||
2143 revs
->max_count
< 0)
2144 die("'%s': not a non-negative integer", arg
+ 1);
2146 } else if (!strcmp(arg
, "-n")) {
2148 return error("-n requires an argument");
2149 revs
->max_count
= atoi(argv
[1]);
2152 } else if (skip_prefix(arg
, "-n", &optarg
)) {
2153 revs
->max_count
= atoi(optarg
);
2155 } else if ((argcount
= parse_long_opt("max-age", argv
, &optarg
))) {
2156 revs
->max_age
= atoi(optarg
);
2158 } else if ((argcount
= parse_long_opt("since", argv
, &optarg
))) {
2159 revs
->max_age
= approxidate(optarg
);
2161 } else if ((argcount
= parse_long_opt("after", argv
, &optarg
))) {
2162 revs
->max_age
= approxidate(optarg
);
2164 } else if ((argcount
= parse_long_opt("min-age", argv
, &optarg
))) {
2165 revs
->min_age
= atoi(optarg
);
2167 } else if ((argcount
= parse_long_opt("before", argv
, &optarg
))) {
2168 revs
->min_age
= approxidate(optarg
);
2170 } else if ((argcount
= parse_long_opt("until", argv
, &optarg
))) {
2171 revs
->min_age
= approxidate(optarg
);
2173 } else if (!strcmp(arg
, "--first-parent")) {
2174 revs
->first_parent_only
= 1;
2175 } else if (!strcmp(arg
, "--ancestry-path")) {
2176 revs
->ancestry_path
= 1;
2177 revs
->simplify_history
= 0;
2179 } else if (!strcmp(arg
, "-g") || !strcmp(arg
, "--walk-reflogs")) {
2180 init_reflog_walk(&revs
->reflog_info
);
2181 } else if (!strcmp(arg
, "--default")) {
2183 return error("bad --default argument");
2184 revs
->def
= argv
[1];
2186 } else if (!strcmp(arg
, "--merge")) {
2187 revs
->show_merge
= 1;
2188 } else if (!strcmp(arg
, "--topo-order")) {
2189 revs
->sort_order
= REV_SORT_IN_GRAPH_ORDER
;
2190 revs
->topo_order
= 1;
2191 } else if (!strcmp(arg
, "--simplify-merges")) {
2192 revs
->simplify_merges
= 1;
2193 revs
->topo_order
= 1;
2194 revs
->rewrite_parents
= 1;
2195 revs
->simplify_history
= 0;
2197 } else if (!strcmp(arg
, "--simplify-by-decoration")) {
2198 revs
->simplify_merges
= 1;
2199 revs
->topo_order
= 1;
2200 revs
->rewrite_parents
= 1;
2201 revs
->simplify_history
= 0;
2202 revs
->simplify_by_decoration
= 1;
2205 } else if (!strcmp(arg
, "--date-order")) {
2206 revs
->sort_order
= REV_SORT_BY_COMMIT_DATE
;
2207 revs
->topo_order
= 1;
2208 } else if (!strcmp(arg
, "--author-date-order")) {
2209 revs
->sort_order
= REV_SORT_BY_AUTHOR_DATE
;
2210 revs
->topo_order
= 1;
2211 } else if (!strcmp(arg
, "--early-output")) {
2212 revs
->early_output
= 100;
2213 revs
->topo_order
= 1;
2214 } else if (skip_prefix(arg
, "--early-output=", &optarg
)) {
2215 if (strtoul_ui(optarg
, 10, &revs
->early_output
) < 0)
2216 die("'%s': not a non-negative integer", optarg
);
2217 revs
->topo_order
= 1;
2218 } else if (!strcmp(arg
, "--parents")) {
2219 revs
->rewrite_parents
= 1;
2220 revs
->print_parents
= 1;
2221 } else if (!strcmp(arg
, "--dense")) {
2223 } else if (!strcmp(arg
, "--sparse")) {
2225 } else if (!strcmp(arg
, "--in-commit-order")) {
2226 revs
->tree_blobs_in_commit_order
= 1;
2227 } else if (!strcmp(arg
, "--remove-empty")) {
2228 revs
->remove_empty_trees
= 1;
2229 } else if (!strcmp(arg
, "--merges")) {
2230 revs
->min_parents
= 2;
2231 } else if (!strcmp(arg
, "--no-merges")) {
2232 revs
->max_parents
= 1;
2233 } else if (skip_prefix(arg
, "--min-parents=", &optarg
)) {
2234 revs
->min_parents
= atoi(optarg
);
2235 } else if (!strcmp(arg
, "--no-min-parents")) {
2236 revs
->min_parents
= 0;
2237 } else if (skip_prefix(arg
, "--max-parents=", &optarg
)) {
2238 revs
->max_parents
= atoi(optarg
);
2239 } else if (!strcmp(arg
, "--no-max-parents")) {
2240 revs
->max_parents
= -1;
2241 } else if (!strcmp(arg
, "--boundary")) {
2243 } else if (!strcmp(arg
, "--left-right")) {
2244 revs
->left_right
= 1;
2245 } else if (!strcmp(arg
, "--left-only")) {
2246 if (revs
->right_only
)
2247 die("--left-only is incompatible with --right-only"
2249 revs
->left_only
= 1;
2250 } else if (!strcmp(arg
, "--right-only")) {
2251 if (revs
->left_only
)
2252 die("--right-only is incompatible with --left-only");
2253 revs
->right_only
= 1;
2254 } else if (!strcmp(arg
, "--cherry")) {
2255 if (revs
->left_only
)
2256 die("--cherry is incompatible with --left-only");
2257 revs
->cherry_mark
= 1;
2258 revs
->right_only
= 1;
2259 revs
->max_parents
= 1;
2261 } else if (!strcmp(arg
, "--count")) {
2263 } else if (!strcmp(arg
, "--cherry-mark")) {
2264 if (revs
->cherry_pick
)
2265 die("--cherry-mark is incompatible with --cherry-pick");
2266 revs
->cherry_mark
= 1;
2267 revs
->limited
= 1; /* needs limit_list() */
2268 } else if (!strcmp(arg
, "--cherry-pick")) {
2269 if (revs
->cherry_mark
)
2270 die("--cherry-pick is incompatible with --cherry-mark");
2271 revs
->cherry_pick
= 1;
2273 } else if (!strcmp(arg
, "--objects")) {
2274 revs
->tag_objects
= 1;
2275 revs
->tree_objects
= 1;
2276 revs
->blob_objects
= 1;
2277 } else if (!strcmp(arg
, "--objects-edge")) {
2278 revs
->tag_objects
= 1;
2279 revs
->tree_objects
= 1;
2280 revs
->blob_objects
= 1;
2281 revs
->edge_hint
= 1;
2282 } else if (!strcmp(arg
, "--objects-edge-aggressive")) {
2283 revs
->tag_objects
= 1;
2284 revs
->tree_objects
= 1;
2285 revs
->blob_objects
= 1;
2286 revs
->edge_hint
= 1;
2287 revs
->edge_hint_aggressive
= 1;
2288 } else if (!strcmp(arg
, "--verify-objects")) {
2289 revs
->tag_objects
= 1;
2290 revs
->tree_objects
= 1;
2291 revs
->blob_objects
= 1;
2292 revs
->verify_objects
= 1;
2293 } else if (!strcmp(arg
, "--unpacked")) {
2295 } else if (starts_with(arg
, "--unpacked=")) {
2296 die("--unpacked=<packfile> no longer supported.");
2297 } else if (!strcmp(arg
, "-r")) {
2299 revs
->diffopt
.flags
.recursive
= 1;
2300 } else if (!strcmp(arg
, "-t")) {
2302 revs
->diffopt
.flags
.recursive
= 1;
2303 revs
->diffopt
.flags
.tree_in_recursive
= 1;
2304 } else if (!strcmp(arg
, "-m")) {
2305 revs
->ignore_merges
= 0;
2306 } else if (!strcmp(arg
, "-c")) {
2308 revs
->dense_combined_merges
= 0;
2309 revs
->combine_merges
= 1;
2310 } else if (!strcmp(arg
, "--combined-all-paths")) {
2312 revs
->combined_all_paths
= 1;
2313 } else if (!strcmp(arg
, "--cc")) {
2315 revs
->dense_combined_merges
= 1;
2316 revs
->combine_merges
= 1;
2317 } else if (!strcmp(arg
, "-v")) {
2318 revs
->verbose_header
= 1;
2319 } else if (!strcmp(arg
, "--pretty")) {
2320 revs
->verbose_header
= 1;
2321 revs
->pretty_given
= 1;
2322 get_commit_format(NULL
, revs
);
2323 } else if (skip_prefix(arg
, "--pretty=", &optarg
) ||
2324 skip_prefix(arg
, "--format=", &optarg
)) {
2326 * Detached form ("--pretty X" as opposed to "--pretty=X")
2327 * not allowed, since the argument is optional.
2329 revs
->verbose_header
= 1;
2330 revs
->pretty_given
= 1;
2331 get_commit_format(optarg
, revs
);
2332 } else if (!strcmp(arg
, "--expand-tabs")) {
2333 revs
->expand_tabs_in_log
= 8;
2334 } else if (!strcmp(arg
, "--no-expand-tabs")) {
2335 revs
->expand_tabs_in_log
= 0;
2336 } else if (skip_prefix(arg
, "--expand-tabs=", &arg
)) {
2338 if (strtol_i(arg
, 10, &val
) < 0 || val
< 0)
2339 die("'%s': not a non-negative integer", arg
);
2340 revs
->expand_tabs_in_log
= val
;
2341 } else if (!strcmp(arg
, "--show-notes") || !strcmp(arg
, "--notes")) {
2342 enable_default_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2343 revs
->show_notes_given
= 1;
2344 } else if (!strcmp(arg
, "--show-signature")) {
2345 revs
->show_signature
= 1;
2346 } else if (!strcmp(arg
, "--no-show-signature")) {
2347 revs
->show_signature
= 0;
2348 } else if (!strcmp(arg
, "--show-linear-break")) {
2349 revs
->break_bar
= " ..........";
2350 revs
->track_linear
= 1;
2351 revs
->track_first_time
= 1;
2352 } else if (skip_prefix(arg
, "--show-linear-break=", &optarg
)) {
2353 revs
->break_bar
= xstrdup(optarg
);
2354 revs
->track_linear
= 1;
2355 revs
->track_first_time
= 1;
2356 } else if (skip_prefix(arg
, "--show-notes=", &optarg
) ||
2357 skip_prefix(arg
, "--notes=", &optarg
)) {
2358 if (starts_with(arg
, "--show-notes=") &&
2359 revs
->notes_opt
.use_default_notes
< 0)
2360 revs
->notes_opt
.use_default_notes
= 1;
2361 enable_ref_display_notes(&revs
->notes_opt
, &revs
->show_notes
, optarg
);
2362 revs
->show_notes_given
= 1;
2363 } else if (!strcmp(arg
, "--no-notes")) {
2364 disable_display_notes(&revs
->notes_opt
, &revs
->show_notes
);
2365 revs
->show_notes_given
= 1;
2366 } else if (!strcmp(arg
, "--standard-notes")) {
2367 revs
->show_notes_given
= 1;
2368 revs
->notes_opt
.use_default_notes
= 1;
2369 } else if (!strcmp(arg
, "--no-standard-notes")) {
2370 revs
->notes_opt
.use_default_notes
= 0;
2371 } else if (!strcmp(arg
, "--oneline")) {
2372 revs
->verbose_header
= 1;
2373 get_commit_format("oneline", revs
);
2374 revs
->pretty_given
= 1;
2375 revs
->abbrev_commit
= 1;
2376 } else if (!strcmp(arg
, "--graph")) {
2377 revs
->topo_order
= 1;
2378 revs
->rewrite_parents
= 1;
2379 revs
->graph
= graph_init(revs
);
2380 } else if (!strcmp(arg
, "--root")) {
2381 revs
->show_root_diff
= 1;
2382 } else if (!strcmp(arg
, "--no-commit-id")) {
2383 revs
->no_commit_id
= 1;
2384 } else if (!strcmp(arg
, "--always")) {
2385 revs
->always_show_header
= 1;
2386 } else if (!strcmp(arg
, "--no-abbrev")) {
2388 } else if (!strcmp(arg
, "--abbrev")) {
2389 revs
->abbrev
= DEFAULT_ABBREV
;
2390 } else if (skip_prefix(arg
, "--abbrev=", &optarg
)) {
2391 revs
->abbrev
= strtoul(optarg
, NULL
, 10);
2392 if (revs
->abbrev
< MINIMUM_ABBREV
)
2393 revs
->abbrev
= MINIMUM_ABBREV
;
2394 else if (revs
->abbrev
> hexsz
)
2395 revs
->abbrev
= hexsz
;
2396 } else if (!strcmp(arg
, "--abbrev-commit")) {
2397 revs
->abbrev_commit
= 1;
2398 revs
->abbrev_commit_given
= 1;
2399 } else if (!strcmp(arg
, "--no-abbrev-commit")) {
2400 revs
->abbrev_commit
= 0;
2401 } else if (!strcmp(arg
, "--full-diff")) {
2403 revs
->full_diff
= 1;
2404 } else if (!strcmp(arg
, "--full-history")) {
2405 revs
->simplify_history
= 0;
2406 } else if (!strcmp(arg
, "--relative-date")) {
2407 revs
->date_mode
.type
= DATE_RELATIVE
;
2408 revs
->date_mode_explicit
= 1;
2409 } else if ((argcount
= parse_long_opt("date", argv
, &optarg
))) {
2410 parse_date_format(optarg
, &revs
->date_mode
);
2411 revs
->date_mode_explicit
= 1;
2413 } else if (!strcmp(arg
, "--log-size")) {
2414 revs
->show_log_size
= 1;
2417 * Grepping the commit log
2419 else if ((argcount
= parse_long_opt("author", argv
, &optarg
))) {
2420 add_header_grep(revs
, GREP_HEADER_AUTHOR
, optarg
);
2422 } else if ((argcount
= parse_long_opt("committer", argv
, &optarg
))) {
2423 add_header_grep(revs
, GREP_HEADER_COMMITTER
, optarg
);
2425 } else if ((argcount
= parse_long_opt("grep-reflog", argv
, &optarg
))) {
2426 add_header_grep(revs
, GREP_HEADER_REFLOG
, optarg
);
2428 } else if ((argcount
= parse_long_opt("grep", argv
, &optarg
))) {
2429 add_message_grep(revs
, optarg
);
2431 } else if (!strcmp(arg
, "--grep-debug")) {
2432 revs
->grep_filter
.debug
= 1;
2433 } else if (!strcmp(arg
, "--basic-regexp")) {
2434 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_BRE
;
2435 } else if (!strcmp(arg
, "--extended-regexp") || !strcmp(arg
, "-E")) {
2436 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_ERE
;
2437 } else if (!strcmp(arg
, "--regexp-ignore-case") || !strcmp(arg
, "-i")) {
2438 revs
->grep_filter
.ignore_case
= 1;
2439 revs
->diffopt
.pickaxe_opts
|= DIFF_PICKAXE_IGNORE_CASE
;
2440 } else if (!strcmp(arg
, "--fixed-strings") || !strcmp(arg
, "-F")) {
2441 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_FIXED
;
2442 } else if (!strcmp(arg
, "--perl-regexp") || !strcmp(arg
, "-P")) {
2443 revs
->grep_filter
.pattern_type_option
= GREP_PATTERN_TYPE_PCRE
;
2444 } else if (!strcmp(arg
, "--all-match")) {
2445 revs
->grep_filter
.all_match
= 1;
2446 } else if (!strcmp(arg
, "--invert-grep")) {
2447 revs
->invert_grep
= 1;
2448 } else if ((argcount
= parse_long_opt("encoding", argv
, &optarg
))) {
2449 if (strcmp(optarg
, "none"))
2450 git_log_output_encoding
= xstrdup(optarg
);
2452 git_log_output_encoding
= "";
2454 } else if (!strcmp(arg
, "--reverse")) {
2456 } else if (!strcmp(arg
, "--children")) {
2457 revs
->children
.name
= "children";
2459 } else if (!strcmp(arg
, "--ignore-missing")) {
2460 revs
->ignore_missing
= 1;
2461 } else if (opt
&& opt
->allow_exclude_promisor_objects
&&
2462 !strcmp(arg
, "--exclude-promisor-objects")) {
2463 if (fetch_if_missing
)
2464 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2465 revs
->exclude_promisor_objects
= 1;
2467 int opts
= diff_opt_parse(&revs
->diffopt
, argv
, argc
, revs
->prefix
);
2469 unkv
[(*unkc
)++] = arg
;
2472 if (revs
->graph
&& revs
->track_linear
)
2473 die("--show-linear-break and --graph are incompatible");
2478 void parse_revision_opt(struct rev_info
*revs
, struct parse_opt_ctx_t
*ctx
,
2479 const struct option
*options
,
2480 const char * const usagestr
[])
2482 int n
= handle_revision_opt(revs
, ctx
->argc
, ctx
->argv
,
2483 &ctx
->cpidx
, ctx
->out
, NULL
);
2485 error("unknown option `%s'", ctx
->argv
[0]);
2486 usage_with_options(usagestr
, options
);
2492 static int for_each_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
,
2493 void *cb_data
, const char *term
)
2495 struct strbuf bisect_refs
= STRBUF_INIT
;
2497 strbuf_addf(&bisect_refs
, "refs/bisect/%s", term
);
2498 status
= refs_for_each_fullref_in(refs
, bisect_refs
.buf
, fn
, cb_data
, 0);
2499 strbuf_release(&bisect_refs
);
2503 static int for_each_bad_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2505 return for_each_bisect_ref(refs
, fn
, cb_data
, term_bad
);
2508 static int for_each_good_bisect_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
2510 return for_each_bisect_ref(refs
, fn
, cb_data
, term_good
);
2513 static int handle_revision_pseudo_opt(const char *submodule
,
2514 struct rev_info
*revs
,
2515 int argc
, const char **argv
, int *flags
)
2517 const char *arg
= argv
[0];
2519 struct ref_store
*refs
;
2524 * We need some something like get_submodule_worktrees()
2525 * before we can go through all worktrees of a submodule,
2526 * .e.g with adding all HEADs from --all, which is not
2527 * supported right now, so stick to single worktree.
2529 if (!revs
->single_worktree
)
2530 BUG("--single-worktree cannot be used together with submodule");
2531 refs
= get_submodule_ref_store(submodule
);
2533 refs
= get_main_ref_store(revs
->repo
);
2538 * Commands like "git shortlog" will not accept the options below
2539 * unless parse_revision_opt queues them (as opposed to erroring
2542 * When implementing your new pseudo-option, remember to
2543 * register it in the list at the top of handle_revision_opt.
2545 if (!strcmp(arg
, "--all")) {
2546 handle_refs(refs
, revs
, *flags
, refs_for_each_ref
);
2547 handle_refs(refs
, revs
, *flags
, refs_head_ref
);
2548 if (!revs
->single_worktree
) {
2549 struct all_refs_cb cb
;
2551 init_all_refs_cb(&cb
, revs
, *flags
);
2552 other_head_refs(handle_one_ref
, &cb
);
2554 clear_ref_exclusion(&revs
->ref_excludes
);
2555 } else if (!strcmp(arg
, "--branches")) {
2556 handle_refs(refs
, revs
, *flags
, refs_for_each_branch_ref
);
2557 clear_ref_exclusion(&revs
->ref_excludes
);
2558 } else if (!strcmp(arg
, "--bisect")) {
2559 read_bisect_terms(&term_bad
, &term_good
);
2560 handle_refs(refs
, revs
, *flags
, for_each_bad_bisect_ref
);
2561 handle_refs(refs
, revs
, *flags
^ (UNINTERESTING
| BOTTOM
),
2562 for_each_good_bisect_ref
);
2564 } else if (!strcmp(arg
, "--tags")) {
2565 handle_refs(refs
, revs
, *flags
, refs_for_each_tag_ref
);
2566 clear_ref_exclusion(&revs
->ref_excludes
);
2567 } else if (!strcmp(arg
, "--remotes")) {
2568 handle_refs(refs
, revs
, *flags
, refs_for_each_remote_ref
);
2569 clear_ref_exclusion(&revs
->ref_excludes
);
2570 } else if ((argcount
= parse_long_opt("glob", argv
, &optarg
))) {
2571 struct all_refs_cb cb
;
2572 init_all_refs_cb(&cb
, revs
, *flags
);
2573 for_each_glob_ref(handle_one_ref
, optarg
, &cb
);
2574 clear_ref_exclusion(&revs
->ref_excludes
);
2576 } else if ((argcount
= parse_long_opt("exclude", argv
, &optarg
))) {
2577 add_ref_exclusion(&revs
->ref_excludes
, optarg
);
2579 } else if (skip_prefix(arg
, "--branches=", &optarg
)) {
2580 struct all_refs_cb cb
;
2581 init_all_refs_cb(&cb
, revs
, *flags
);
2582 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/heads/", &cb
);
2583 clear_ref_exclusion(&revs
->ref_excludes
);
2584 } else if (skip_prefix(arg
, "--tags=", &optarg
)) {
2585 struct all_refs_cb cb
;
2586 init_all_refs_cb(&cb
, revs
, *flags
);
2587 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/tags/", &cb
);
2588 clear_ref_exclusion(&revs
->ref_excludes
);
2589 } else if (skip_prefix(arg
, "--remotes=", &optarg
)) {
2590 struct all_refs_cb cb
;
2591 init_all_refs_cb(&cb
, revs
, *flags
);
2592 for_each_glob_ref_in(handle_one_ref
, optarg
, "refs/remotes/", &cb
);
2593 clear_ref_exclusion(&revs
->ref_excludes
);
2594 } else if (!strcmp(arg
, "--reflog")) {
2595 add_reflogs_to_pending(revs
, *flags
);
2596 } else if (!strcmp(arg
, "--indexed-objects")) {
2597 add_index_objects_to_pending(revs
, *flags
);
2598 } else if (!strcmp(arg
, "--alternate-refs")) {
2599 add_alternate_refs_to_pending(revs
, *flags
);
2600 } else if (!strcmp(arg
, "--not")) {
2601 *flags
^= UNINTERESTING
| BOTTOM
;
2602 } else if (!strcmp(arg
, "--no-walk")) {
2603 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2604 } else if (skip_prefix(arg
, "--no-walk=", &optarg
)) {
2606 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2607 * not allowed, since the argument is optional.
2609 if (!strcmp(optarg
, "sorted"))
2610 revs
->no_walk
= REVISION_WALK_NO_WALK_SORTED
;
2611 else if (!strcmp(optarg
, "unsorted"))
2612 revs
->no_walk
= REVISION_WALK_NO_WALK_UNSORTED
;
2614 return error("invalid argument to --no-walk");
2615 } else if (!strcmp(arg
, "--do-walk")) {
2617 } else if (!strcmp(arg
, "--single-worktree")) {
2618 revs
->single_worktree
= 1;
2626 static void NORETURN
diagnose_missing_default(const char *def
)
2629 const char *refname
;
2631 refname
= resolve_ref_unsafe(def
, 0, NULL
, &flags
);
2632 if (!refname
|| !(flags
& REF_ISSYMREF
) || (flags
& REF_ISBROKEN
))
2633 die(_("your current branch appears to be broken"));
2635 skip_prefix(refname
, "refs/heads/", &refname
);
2636 die(_("your current branch '%s' does not have any commits yet"),
2641 * Parse revision information, filling in the "rev_info" structure,
2642 * and removing the used arguments from the argument list.
2644 * Returns the number of arguments left that weren't recognized
2645 * (which are also moved to the head of the argument list)
2647 int setup_revisions(int argc
, const char **argv
, struct rev_info
*revs
, struct setup_revision_opt
*opt
)
2649 int i
, flags
, left
, seen_dashdash
, got_rev_arg
= 0, revarg_opt
;
2650 struct argv_array prune_data
= ARGV_ARRAY_INIT
;
2651 const char *submodule
= NULL
;
2652 int seen_end_of_options
= 0;
2655 submodule
= opt
->submodule
;
2657 /* First, search for "--" */
2658 if (opt
&& opt
->assume_dashdash
) {
2662 for (i
= 1; i
< argc
; i
++) {
2663 const char *arg
= argv
[i
];
2664 if (strcmp(arg
, "--"))
2669 argv_array_pushv(&prune_data
, argv
+ i
+ 1);
2675 /* Second, deal with arguments and options */
2677 revarg_opt
= opt
? opt
->revarg_opt
: 0;
2679 revarg_opt
|= REVARG_CANNOT_BE_FILENAME
;
2680 for (left
= i
= 1; i
< argc
; i
++) {
2681 const char *arg
= argv
[i
];
2682 if (!seen_end_of_options
&& *arg
== '-') {
2685 opts
= handle_revision_pseudo_opt(submodule
,
2686 revs
, argc
- i
, argv
+ i
,
2693 if (!strcmp(arg
, "--stdin")) {
2694 if (revs
->disable_stdin
) {
2698 if (revs
->read_from_stdin
++)
2699 die("--stdin given twice?");
2700 read_revisions_from_stdin(revs
, &prune_data
);
2704 if (!strcmp(arg
, "--end-of-options")) {
2705 seen_end_of_options
= 1;
2709 opts
= handle_revision_opt(revs
, argc
- i
, argv
+ i
,
2721 if (handle_revision_arg(arg
, revs
, flags
, revarg_opt
)) {
2723 if (seen_dashdash
|| *arg
== '^')
2724 die("bad revision '%s'", arg
);
2726 /* If we didn't have a "--":
2727 * (1) all filenames must exist;
2728 * (2) all rev-args must not be interpretable
2729 * as a valid filename.
2730 * but the latter we have checked in the main loop.
2732 for (j
= i
; j
< argc
; j
++)
2733 verify_filename(revs
->prefix
, argv
[j
], j
== i
);
2735 argv_array_pushv(&prune_data
, argv
+ i
);
2742 if (prune_data
.argc
) {
2744 * If we need to introduce the magic "a lone ':' means no
2745 * pathspec whatsoever", here is the place to do so.
2747 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2748 * prune_data.nr = 0;
2749 * prune_data.alloc = 0;
2750 * free(prune_data.path);
2751 * prune_data.path = NULL;
2753 * terminate prune_data.alloc with NULL and
2754 * call init_pathspec() to set revs->prune_data here.
2757 parse_pathspec(&revs
->prune_data
, 0, 0,
2758 revs
->prefix
, prune_data
.argv
);
2760 argv_array_clear(&prune_data
);
2762 if (revs
->def
== NULL
)
2763 revs
->def
= opt
? opt
->def
: NULL
;
2764 if (opt
&& opt
->tweak
)
2765 opt
->tweak(revs
, opt
);
2766 if (revs
->show_merge
)
2767 prepare_show_merge(revs
);
2768 if (revs
->def
&& !revs
->pending
.nr
&& !revs
->rev_input_given
&& !got_rev_arg
) {
2769 struct object_id oid
;
2770 struct object
*object
;
2771 struct object_context oc
;
2772 if (get_oid_with_context(revs
->repo
, revs
->def
, 0, &oid
, &oc
))
2773 diagnose_missing_default(revs
->def
);
2774 object
= get_reference(revs
, revs
->def
, &oid
, 0);
2775 add_pending_object_with_mode(revs
, object
, revs
->def
, oc
.mode
);
2778 /* Did the user ask for any diff output? Run the diff! */
2779 if (revs
->diffopt
.output_format
& ~DIFF_FORMAT_NO_OUTPUT
)
2782 /* Pickaxe, diff-filter and rename following need diffs */
2783 if ((revs
->diffopt
.pickaxe_opts
& DIFF_PICKAXE_KINDS_MASK
) ||
2784 revs
->diffopt
.filter
||
2785 revs
->diffopt
.flags
.follow_renames
)
2788 if (revs
->diffopt
.objfind
)
2789 revs
->simplify_history
= 0;
2791 if (revs
->topo_order
&& !generation_numbers_enabled(the_repository
))
2794 if (revs
->prune_data
.nr
) {
2795 copy_pathspec(&revs
->pruning
.pathspec
, &revs
->prune_data
);
2796 /* Can't prune commits with rename following: the paths change.. */
2797 if (!revs
->diffopt
.flags
.follow_renames
)
2799 if (!revs
->full_diff
)
2800 copy_pathspec(&revs
->diffopt
.pathspec
,
2803 if (revs
->combine_merges
)
2804 revs
->ignore_merges
= 0;
2805 if (revs
->combined_all_paths
&& !revs
->combine_merges
)
2806 die("--combined-all-paths makes no sense without -c or --cc");
2808 revs
->diffopt
.abbrev
= revs
->abbrev
;
2810 if (revs
->line_level_traverse
) {
2812 revs
->topo_order
= 1;
2815 diff_setup_done(&revs
->diffopt
);
2817 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED
,
2818 &revs
->grep_filter
);
2819 if (!is_encoding_utf8(get_log_output_encoding()))
2820 revs
->grep_filter
.ignore_locale
= 1;
2821 compile_grep_patterns(&revs
->grep_filter
);
2823 if (revs
->reverse
&& revs
->reflog_info
)
2824 die("cannot combine --reverse with --walk-reflogs");
2825 if (revs
->reflog_info
&& revs
->limited
)
2826 die("cannot combine --walk-reflogs with history-limiting options");
2827 if (revs
->rewrite_parents
&& revs
->children
.name
)
2828 die("cannot combine --parents and --children");
2831 * Limitations on the graph functionality
2833 if (revs
->reverse
&& revs
->graph
)
2834 die("cannot combine --reverse with --graph");
2836 if (revs
->reflog_info
&& revs
->graph
)
2837 die("cannot combine --walk-reflogs with --graph");
2838 if (revs
->no_walk
&& revs
->graph
)
2839 die("cannot combine --no-walk with --graph");
2840 if (!revs
->reflog_info
&& revs
->grep_filter
.use_reflog_filter
)
2841 die("cannot use --grep-reflog without --walk-reflogs");
2843 if (revs
->first_parent_only
&& revs
->bisect
)
2844 die(_("--first-parent is incompatible with --bisect"));
2846 if (revs
->line_level_traverse
&&
2847 (revs
->diffopt
.output_format
& ~(DIFF_FORMAT_PATCH
| DIFF_FORMAT_NO_OUTPUT
)))
2848 die(_("-L does not yet support diff formats besides -p and -s"));
2850 if (revs
->expand_tabs_in_log
< 0)
2851 revs
->expand_tabs_in_log
= revs
->expand_tabs_in_log_default
;
2856 static void add_child(struct rev_info
*revs
, struct commit
*parent
, struct commit
*child
)
2858 struct commit_list
*l
= xcalloc(1, sizeof(*l
));
2861 l
->next
= add_decoration(&revs
->children
, &parent
->object
, l
);
2864 static int remove_duplicate_parents(struct rev_info
*revs
, struct commit
*commit
)
2866 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2867 struct commit_list
**pp
, *p
;
2868 int surviving_parents
;
2870 /* Examine existing parents while marking ones we have seen... */
2871 pp
= &commit
->parents
;
2872 surviving_parents
= 0;
2873 while ((p
= *pp
) != NULL
) {
2874 struct commit
*parent
= p
->item
;
2875 if (parent
->object
.flags
& TMP_MARK
) {
2878 compact_treesame(revs
, commit
, surviving_parents
);
2881 parent
->object
.flags
|= TMP_MARK
;
2882 surviving_parents
++;
2885 /* clear the temporary mark */
2886 for (p
= commit
->parents
; p
; p
= p
->next
) {
2887 p
->item
->object
.flags
&= ~TMP_MARK
;
2889 /* no update_treesame() - removing duplicates can't affect TREESAME */
2890 return surviving_parents
;
2893 struct merge_simplify_state
{
2894 struct commit
*simplified
;
2897 static struct merge_simplify_state
*locate_simplify_state(struct rev_info
*revs
, struct commit
*commit
)
2899 struct merge_simplify_state
*st
;
2901 st
= lookup_decoration(&revs
->merge_simplification
, &commit
->object
);
2903 st
= xcalloc(1, sizeof(*st
));
2904 add_decoration(&revs
->merge_simplification
, &commit
->object
, st
);
2909 static int mark_redundant_parents(struct commit
*commit
)
2911 struct commit_list
*h
= reduce_heads(commit
->parents
);
2912 int i
= 0, marked
= 0;
2913 struct commit_list
*po
, *pn
;
2915 /* Want these for sanity-checking only */
2916 int orig_cnt
= commit_list_count(commit
->parents
);
2917 int cnt
= commit_list_count(h
);
2920 * Not ready to remove items yet, just mark them for now, based
2921 * on the output of reduce_heads(). reduce_heads outputs the reduced
2922 * set in its original order, so this isn't too hard.
2924 po
= commit
->parents
;
2927 if (pn
&& po
->item
== pn
->item
) {
2931 po
->item
->object
.flags
|= TMP_MARK
;
2937 if (i
!= cnt
|| cnt
+marked
!= orig_cnt
)
2938 die("mark_redundant_parents %d %d %d %d", orig_cnt
, cnt
, i
, marked
);
2940 free_commit_list(h
);
2945 static int mark_treesame_root_parents(struct commit
*commit
)
2947 struct commit_list
*p
;
2950 for (p
= commit
->parents
; p
; p
= p
->next
) {
2951 struct commit
*parent
= p
->item
;
2952 if (!parent
->parents
&& (parent
->object
.flags
& TREESAME
)) {
2953 parent
->object
.flags
|= TMP_MARK
;
2962 * Awkward naming - this means one parent we are TREESAME to.
2963 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2964 * empty tree). Better name suggestions?
2966 static int leave_one_treesame_to_parent(struct rev_info
*revs
, struct commit
*commit
)
2968 struct treesame_state
*ts
= lookup_decoration(&revs
->treesame
, &commit
->object
);
2969 struct commit
*unmarked
= NULL
, *marked
= NULL
;
2970 struct commit_list
*p
;
2973 for (p
= commit
->parents
, n
= 0; p
; p
= p
->next
, n
++) {
2974 if (ts
->treesame
[n
]) {
2975 if (p
->item
->object
.flags
& TMP_MARK
) {
2988 * If we are TREESAME to a marked-for-deletion parent, but not to any
2989 * unmarked parents, unmark the first TREESAME parent. This is the
2990 * parent that the default simplify_history==1 scan would have followed,
2991 * and it doesn't make sense to omit that path when asking for a
2992 * simplified full history. Retaining it improves the chances of
2993 * understanding odd missed merges that took an old version of a file.
2997 * I--------*X A modified the file, but mainline merge X used
2998 * \ / "-s ours", so took the version from I. X is
2999 * `-*A--' TREESAME to I and !TREESAME to A.
3001 * Default log from X would produce "I". Without this check,
3002 * --full-history --simplify-merges would produce "I-A-X", showing
3003 * the merge commit X and that it changed A, but not making clear that
3004 * it had just taken the I version. With this check, the topology above
3007 * Note that it is possible that the simplification chooses a different
3008 * TREESAME parent from the default, in which case this test doesn't
3009 * activate, and we _do_ drop the default parent. Example:
3011 * I------X A modified the file, but it was reverted in B,
3012 * \ / meaning mainline merge X is TREESAME to both
3015 * Default log would produce "I" by following the first parent;
3016 * --full-history --simplify-merges will produce "I-A-B". But this is a
3017 * reasonable result - it presents a logical full history leading from
3018 * I to X, and X is not an important merge.
3020 if (!unmarked
&& marked
) {
3021 marked
->object
.flags
&= ~TMP_MARK
;
3028 static int remove_marked_parents(struct rev_info
*revs
, struct commit
*commit
)
3030 struct commit_list
**pp
, *p
;
3031 int nth_parent
, removed
= 0;
3033 pp
= &commit
->parents
;
3035 while ((p
= *pp
) != NULL
) {
3036 struct commit
*parent
= p
->item
;
3037 if (parent
->object
.flags
& TMP_MARK
) {
3038 parent
->object
.flags
&= ~TMP_MARK
;
3042 compact_treesame(revs
, commit
, nth_parent
);
3049 /* Removing parents can only increase TREESAMEness */
3050 if (removed
&& !(commit
->object
.flags
& TREESAME
))
3051 update_treesame(revs
, commit
);
3056 static struct commit_list
**simplify_one(struct rev_info
*revs
, struct commit
*commit
, struct commit_list
**tail
)
3058 struct commit_list
*p
;
3059 struct commit
*parent
;
3060 struct merge_simplify_state
*st
, *pst
;
3063 st
= locate_simplify_state(revs
, commit
);
3066 * Have we handled this one?
3072 * An UNINTERESTING commit simplifies to itself, so does a
3073 * root commit. We do not rewrite parents of such commit
3076 if ((commit
->object
.flags
& UNINTERESTING
) || !commit
->parents
) {
3077 st
->simplified
= commit
;
3082 * Do we know what commit all of our parents that matter
3083 * should be rewritten to? Otherwise we are not ready to
3084 * rewrite this one yet.
3086 for (cnt
= 0, p
= commit
->parents
; p
; p
= p
->next
) {
3087 pst
= locate_simplify_state(revs
, p
->item
);
3088 if (!pst
->simplified
) {
3089 tail
= &commit_list_insert(p
->item
, tail
)->next
;
3092 if (revs
->first_parent_only
)
3096 tail
= &commit_list_insert(commit
, tail
)->next
;
3101 * Rewrite our list of parents. Note that this cannot
3102 * affect our TREESAME flags in any way - a commit is
3103 * always TREESAME to its simplification.
3105 for (p
= commit
->parents
; p
; p
= p
->next
) {
3106 pst
= locate_simplify_state(revs
, p
->item
);
3107 p
->item
= pst
->simplified
;
3108 if (revs
->first_parent_only
)
3112 if (revs
->first_parent_only
)
3115 cnt
= remove_duplicate_parents(revs
, commit
);
3118 * It is possible that we are a merge and one side branch
3119 * does not have any commit that touches the given paths;
3120 * in such a case, the immediate parent from that branch
3121 * will be rewritten to be the merge base.
3123 * o----X X: the commit we are looking at;
3124 * / / o: a commit that touches the paths;
3127 * Further, a merge of an independent branch that doesn't
3128 * touch the path will reduce to a treesame root parent:
3130 * ----o----X X: the commit we are looking at;
3131 * / o: a commit that touches the paths;
3132 * r r: a root commit not touching the paths
3134 * Detect and simplify both cases.
3137 int marked
= mark_redundant_parents(commit
);
3138 marked
+= mark_treesame_root_parents(commit
);
3140 marked
-= leave_one_treesame_to_parent(revs
, commit
);
3142 cnt
= remove_marked_parents(revs
, commit
);
3146 * A commit simplifies to itself if it is a root, if it is
3147 * UNINTERESTING, if it touches the given paths, or if it is a
3148 * merge and its parents don't simplify to one relevant commit
3149 * (the first two cases are already handled at the beginning of
3152 * Otherwise, it simplifies to what its sole relevant parent
3156 (commit
->object
.flags
& UNINTERESTING
) ||
3157 !(commit
->object
.flags
& TREESAME
) ||
3158 (parent
= one_relevant_parent(revs
, commit
->parents
)) == NULL
)
3159 st
->simplified
= commit
;
3161 pst
= locate_simplify_state(revs
, parent
);
3162 st
->simplified
= pst
->simplified
;
3167 static void simplify_merges(struct rev_info
*revs
)
3169 struct commit_list
*list
, *next
;
3170 struct commit_list
*yet_to_do
, **tail
;
3171 struct commit
*commit
;
3176 /* feed the list reversed */
3178 for (list
= revs
->commits
; list
; list
= next
) {
3179 commit
= list
->item
;
3182 * Do not free(list) here yet; the original list
3183 * is used later in this function.
3185 commit_list_insert(commit
, &yet_to_do
);
3192 commit
= pop_commit(&list
);
3193 tail
= simplify_one(revs
, commit
, tail
);
3197 /* clean up the result, removing the simplified ones */
3198 list
= revs
->commits
;
3199 revs
->commits
= NULL
;
3200 tail
= &revs
->commits
;
3202 struct merge_simplify_state
*st
;
3204 commit
= pop_commit(&list
);
3205 st
= locate_simplify_state(revs
, commit
);
3206 if (st
->simplified
== commit
)
3207 tail
= &commit_list_insert(commit
, tail
)->next
;
3211 static void set_children(struct rev_info
*revs
)
3213 struct commit_list
*l
;
3214 for (l
= revs
->commits
; l
; l
= l
->next
) {
3215 struct commit
*commit
= l
->item
;
3216 struct commit_list
*p
;
3218 for (p
= commit
->parents
; p
; p
= p
->next
)
3219 add_child(revs
, p
->item
, commit
);
3223 void reset_revision_walk(void)
3225 clear_object_flags(SEEN
| ADDED
| SHOWN
| TOPO_WALK_EXPLORED
| TOPO_WALK_INDEGREE
);
3228 static int mark_uninteresting(const struct object_id
*oid
,
3229 struct packed_git
*pack
,
3233 struct rev_info
*revs
= cb
;
3234 struct object
*o
= parse_object(revs
->repo
, oid
);
3235 o
->flags
|= UNINTERESTING
| SEEN
;
3239 define_commit_slab(indegree_slab
, int);
3240 define_commit_slab(author_date_slab
, timestamp_t
);
3242 struct topo_walk_info
{
3243 uint32_t min_generation
;
3244 struct prio_queue explore_queue
;
3245 struct prio_queue indegree_queue
;
3246 struct prio_queue topo_queue
;
3247 struct indegree_slab indegree
;
3248 struct author_date_slab author_date
;
3251 static inline void test_flag_and_insert(struct prio_queue
*q
, struct commit
*c
, int flag
)
3253 if (c
->object
.flags
& flag
)
3256 c
->object
.flags
|= flag
;
3257 prio_queue_put(q
, c
);
3260 static void explore_walk_step(struct rev_info
*revs
)
3262 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3263 struct commit_list
*p
;
3264 struct commit
*c
= prio_queue_get(&info
->explore_queue
);
3269 if (parse_commit_gently(c
, 1) < 0)
3272 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3273 record_author_date(&info
->author_date
, c
);
3275 if (revs
->max_age
!= -1 && (c
->date
< revs
->max_age
))
3276 c
->object
.flags
|= UNINTERESTING
;
3278 if (process_parents(revs
, c
, NULL
, NULL
) < 0)
3281 if (c
->object
.flags
& UNINTERESTING
)
3282 mark_parents_uninteresting(c
);
3284 for (p
= c
->parents
; p
; p
= p
->next
)
3285 test_flag_and_insert(&info
->explore_queue
, p
->item
, TOPO_WALK_EXPLORED
);
3288 static void explore_to_depth(struct rev_info
*revs
,
3289 uint32_t gen_cutoff
)
3291 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3293 while ((c
= prio_queue_peek(&info
->explore_queue
)) &&
3294 c
->generation
>= gen_cutoff
)
3295 explore_walk_step(revs
);
3298 static void indegree_walk_step(struct rev_info
*revs
)
3300 struct commit_list
*p
;
3301 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3302 struct commit
*c
= prio_queue_get(&info
->indegree_queue
);
3307 if (parse_commit_gently(c
, 1) < 0)
3310 explore_to_depth(revs
, c
->generation
);
3312 for (p
= c
->parents
; p
; p
= p
->next
) {
3313 struct commit
*parent
= p
->item
;
3314 int *pi
= indegree_slab_at(&info
->indegree
, parent
);
3321 test_flag_and_insert(&info
->indegree_queue
, parent
, TOPO_WALK_INDEGREE
);
3323 if (revs
->first_parent_only
)
3328 static void compute_indegrees_to_depth(struct rev_info
*revs
,
3329 uint32_t gen_cutoff
)
3331 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3333 while ((c
= prio_queue_peek(&info
->indegree_queue
)) &&
3334 c
->generation
>= gen_cutoff
)
3335 indegree_walk_step(revs
);
3338 static void reset_topo_walk(struct rev_info
*revs
)
3340 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3342 clear_prio_queue(&info
->explore_queue
);
3343 clear_prio_queue(&info
->indegree_queue
);
3344 clear_prio_queue(&info
->topo_queue
);
3345 clear_indegree_slab(&info
->indegree
);
3346 clear_author_date_slab(&info
->author_date
);
3348 FREE_AND_NULL(revs
->topo_walk_info
);
3351 static void init_topo_walk(struct rev_info
*revs
)
3353 struct topo_walk_info
*info
;
3354 struct commit_list
*list
;
3355 if (revs
->topo_walk_info
)
3356 reset_topo_walk(revs
);
3358 revs
->topo_walk_info
= xmalloc(sizeof(struct topo_walk_info
));
3359 info
= revs
->topo_walk_info
;
3360 memset(info
, 0, sizeof(struct topo_walk_info
));
3362 init_indegree_slab(&info
->indegree
);
3363 memset(&info
->explore_queue
, 0, sizeof(info
->explore_queue
));
3364 memset(&info
->indegree_queue
, 0, sizeof(info
->indegree_queue
));
3365 memset(&info
->topo_queue
, 0, sizeof(info
->topo_queue
));
3367 switch (revs
->sort_order
) {
3368 default: /* REV_SORT_IN_GRAPH_ORDER */
3369 info
->topo_queue
.compare
= NULL
;
3371 case REV_SORT_BY_COMMIT_DATE
:
3372 info
->topo_queue
.compare
= compare_commits_by_commit_date
;
3374 case REV_SORT_BY_AUTHOR_DATE
:
3375 init_author_date_slab(&info
->author_date
);
3376 info
->topo_queue
.compare
= compare_commits_by_author_date
;
3377 info
->topo_queue
.cb_data
= &info
->author_date
;
3381 info
->explore_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3382 info
->indegree_queue
.compare
= compare_commits_by_gen_then_commit_date
;
3384 info
->min_generation
= GENERATION_NUMBER_INFINITY
;
3385 for (list
= revs
->commits
; list
; list
= list
->next
) {
3386 struct commit
*c
= list
->item
;
3388 if (parse_commit_gently(c
, 1))
3391 test_flag_and_insert(&info
->explore_queue
, c
, TOPO_WALK_EXPLORED
);
3392 test_flag_and_insert(&info
->indegree_queue
, c
, TOPO_WALK_INDEGREE
);
3394 if (c
->generation
< info
->min_generation
)
3395 info
->min_generation
= c
->generation
;
3397 *(indegree_slab_at(&info
->indegree
, c
)) = 1;
3399 if (revs
->sort_order
== REV_SORT_BY_AUTHOR_DATE
)
3400 record_author_date(&info
->author_date
, c
);
3402 compute_indegrees_to_depth(revs
, info
->min_generation
);
3404 for (list
= revs
->commits
; list
; list
= list
->next
) {
3405 struct commit
*c
= list
->item
;
3407 if (*(indegree_slab_at(&info
->indegree
, c
)) == 1)
3408 prio_queue_put(&info
->topo_queue
, c
);
3412 * This is unfortunate; the initial tips need to be shown
3413 * in the order given from the revision traversal machinery.
3415 if (revs
->sort_order
== REV_SORT_IN_GRAPH_ORDER
)
3416 prio_queue_reverse(&info
->topo_queue
);
3419 static struct commit
*next_topo_commit(struct rev_info
*revs
)
3422 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3424 /* pop next off of topo_queue */
3425 c
= prio_queue_get(&info
->topo_queue
);
3428 *(indegree_slab_at(&info
->indegree
, c
)) = 0;
3433 static void expand_topo_walk(struct rev_info
*revs
, struct commit
*commit
)
3435 struct commit_list
*p
;
3436 struct topo_walk_info
*info
= revs
->topo_walk_info
;
3437 if (process_parents(revs
, commit
, NULL
, NULL
) < 0) {
3438 if (!revs
->ignore_missing_links
)
3439 die("Failed to traverse parents of commit %s",
3440 oid_to_hex(&commit
->object
.oid
));
3443 for (p
= commit
->parents
; p
; p
= p
->next
) {
3444 struct commit
*parent
= p
->item
;
3447 if (parent
->object
.flags
& UNINTERESTING
)
3450 if (parse_commit_gently(parent
, 1) < 0)
3453 if (parent
->generation
< info
->min_generation
) {
3454 info
->min_generation
= parent
->generation
;
3455 compute_indegrees_to_depth(revs
, info
->min_generation
);
3458 pi
= indegree_slab_at(&info
->indegree
, parent
);
3462 prio_queue_put(&info
->topo_queue
, parent
);
3464 if (revs
->first_parent_only
)
3469 int prepare_revision_walk(struct rev_info
*revs
)
3472 struct object_array old_pending
;
3473 struct commit_list
**next
= &revs
->commits
;
3475 memcpy(&old_pending
, &revs
->pending
, sizeof(old_pending
));
3476 revs
->pending
.nr
= 0;
3477 revs
->pending
.alloc
= 0;
3478 revs
->pending
.objects
= NULL
;
3479 for (i
= 0; i
< old_pending
.nr
; i
++) {
3480 struct object_array_entry
*e
= old_pending
.objects
+ i
;
3481 struct commit
*commit
= handle_commit(revs
, e
);
3483 if (!(commit
->object
.flags
& SEEN
)) {
3484 commit
->object
.flags
|= SEEN
;
3485 next
= commit_list_append(commit
, next
);
3489 object_array_clear(&old_pending
);
3491 /* Signal whether we need per-parent treesame decoration */
3492 if (revs
->simplify_merges
||
3493 (revs
->limited
&& limiting_can_increase_treesame(revs
)))
3494 revs
->treesame
.name
= "treesame";
3496 if (revs
->exclude_promisor_objects
) {
3497 for_each_packed_object(mark_uninteresting
, revs
,
3498 FOR_EACH_OBJECT_PROMISOR_ONLY
);
3501 if (revs
->pruning
.pathspec
.nr
== 1 && !revs
->reflog_info
)
3502 prepare_to_use_bloom_filter(revs
);
3503 if (revs
->no_walk
!= REVISION_WALK_NO_WALK_UNSORTED
)
3504 commit_list_sort_by_date(&revs
->commits
);
3507 if (revs
->limited
) {
3508 if (limit_list(revs
) < 0)
3510 if (revs
->topo_order
)
3511 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3512 } else if (revs
->topo_order
)
3513 init_topo_walk(revs
);
3514 if (revs
->line_level_traverse
)
3515 line_log_filter(revs
);
3516 if (revs
->simplify_merges
)
3517 simplify_merges(revs
);
3518 if (revs
->children
.name
)
3524 static enum rewrite_result
rewrite_one_1(struct rev_info
*revs
,
3526 struct prio_queue
*queue
)
3529 struct commit
*p
= *pp
;
3531 if (process_parents(revs
, p
, NULL
, queue
) < 0)
3532 return rewrite_one_error
;
3533 if (p
->object
.flags
& UNINTERESTING
)
3534 return rewrite_one_ok
;
3535 if (!(p
->object
.flags
& TREESAME
))
3536 return rewrite_one_ok
;
3538 return rewrite_one_noparents
;
3539 if ((p
= one_relevant_parent(revs
, p
->parents
)) == NULL
)
3540 return rewrite_one_ok
;
3545 static void merge_queue_into_list(struct prio_queue
*q
, struct commit_list
**list
)
3548 struct commit
*item
= prio_queue_peek(q
);
3549 struct commit_list
*p
= *list
;
3551 if (p
&& p
->item
->date
>= item
->date
)
3554 p
= commit_list_insert(item
, list
);
3555 list
= &p
->next
; /* skip newly added item */
3556 prio_queue_get(q
); /* pop item */
3561 static enum rewrite_result
rewrite_one(struct rev_info
*revs
, struct commit
**pp
)
3563 struct prio_queue queue
= { compare_commits_by_commit_date
};
3564 enum rewrite_result ret
= rewrite_one_1(revs
, pp
, &queue
);
3565 merge_queue_into_list(&queue
, &revs
->commits
);
3566 clear_prio_queue(&queue
);
3570 int rewrite_parents(struct rev_info
*revs
, struct commit
*commit
,
3571 rewrite_parent_fn_t rewrite_parent
)
3573 struct commit_list
**pp
= &commit
->parents
;
3575 struct commit_list
*parent
= *pp
;
3576 switch (rewrite_parent(revs
, &parent
->item
)) {
3577 case rewrite_one_ok
:
3579 case rewrite_one_noparents
:
3582 case rewrite_one_error
:
3587 remove_duplicate_parents(revs
, commit
);
3591 static int commit_rewrite_person(struct strbuf
*buf
, const char *what
, struct string_list
*mailmap
)
3593 char *person
, *endp
;
3594 size_t len
, namelen
, maillen
;
3597 struct ident_split ident
;
3599 person
= strstr(buf
->buf
, what
);
3603 person
+= strlen(what
);
3604 endp
= strchr(person
, '\n');
3608 len
= endp
- person
;
3610 if (split_ident_line(&ident
, person
, len
))
3613 mail
= ident
.mail_begin
;
3614 maillen
= ident
.mail_end
- ident
.mail_begin
;
3615 name
= ident
.name_begin
;
3616 namelen
= ident
.name_end
- ident
.name_begin
;
3618 if (map_user(mailmap
, &mail
, &maillen
, &name
, &namelen
)) {
3619 struct strbuf namemail
= STRBUF_INIT
;
3621 strbuf_addf(&namemail
, "%.*s <%.*s>",
3622 (int)namelen
, name
, (int)maillen
, mail
);
3624 strbuf_splice(buf
, ident
.name_begin
- buf
->buf
,
3625 ident
.mail_end
- ident
.name_begin
+ 1,
3626 namemail
.buf
, namemail
.len
);
3628 strbuf_release(&namemail
);
3636 static int commit_match(struct commit
*commit
, struct rev_info
*opt
)
3639 const char *encoding
;
3640 const char *message
;
3641 struct strbuf buf
= STRBUF_INIT
;
3643 if (!opt
->grep_filter
.pattern_list
&& !opt
->grep_filter
.header_list
)
3646 /* Prepend "fake" headers as needed */
3647 if (opt
->grep_filter
.use_reflog_filter
) {
3648 strbuf_addstr(&buf
, "reflog ");
3649 get_reflog_message(&buf
, opt
->reflog_info
);
3650 strbuf_addch(&buf
, '\n');
3654 * We grep in the user's output encoding, under the assumption that it
3655 * is the encoding they are most likely to write their grep pattern
3656 * for. In addition, it means we will match the "notes" encoding below,
3657 * so we will not end up with a buffer that has two different encodings
3660 encoding
= get_log_output_encoding();
3661 message
= logmsg_reencode(commit
, NULL
, encoding
);
3663 /* Copy the commit to temporary if we are using "fake" headers */
3665 strbuf_addstr(&buf
, message
);
3667 if (opt
->grep_filter
.header_list
&& opt
->mailmap
) {
3669 strbuf_addstr(&buf
, message
);
3671 commit_rewrite_person(&buf
, "\nauthor ", opt
->mailmap
);
3672 commit_rewrite_person(&buf
, "\ncommitter ", opt
->mailmap
);
3675 /* Append "fake" message parts as needed */
3676 if (opt
->show_notes
) {
3678 strbuf_addstr(&buf
, message
);
3679 format_display_notes(&commit
->object
.oid
, &buf
, encoding
, 1);
3683 * Find either in the original commit message, or in the temporary.
3684 * Note that we cast away the constness of "message" here. It is
3685 * const because it may come from the cached commit buffer. That's OK,
3686 * because we know that it is modifiable heap memory, and that while
3687 * grep_buffer may modify it for speed, it will restore any
3688 * changes before returning.
3691 retval
= grep_buffer(&opt
->grep_filter
, buf
.buf
, buf
.len
);
3693 retval
= grep_buffer(&opt
->grep_filter
,
3694 (char *)message
, strlen(message
));
3695 strbuf_release(&buf
);
3696 unuse_commit_buffer(commit
, message
);
3697 return opt
->invert_grep
? !retval
: retval
;
3700 static inline int want_ancestry(const struct rev_info
*revs
)
3702 return (revs
->rewrite_parents
|| revs
->children
.name
);
3706 * Return a timestamp to be used for --since/--until comparisons for this
3707 * commit, based on the revision options.
3709 static timestamp_t
comparison_date(const struct rev_info
*revs
,
3710 struct commit
*commit
)
3712 return revs
->reflog_info
?
3713 get_reflog_timestamp(revs
->reflog_info
) :
3717 enum commit_action
get_commit_action(struct rev_info
*revs
, struct commit
*commit
)
3719 if (commit
->object
.flags
& SHOWN
)
3720 return commit_ignore
;
3721 if (revs
->unpacked
&& has_object_pack(&commit
->object
.oid
))
3722 return commit_ignore
;
3723 if (commit
->object
.flags
& UNINTERESTING
)
3724 return commit_ignore
;
3725 if (revs
->min_age
!= -1 &&
3726 comparison_date(revs
, commit
) > revs
->min_age
)
3727 return commit_ignore
;
3728 if (revs
->min_parents
|| (revs
->max_parents
>= 0)) {
3729 int n
= commit_list_count(commit
->parents
);
3730 if ((n
< revs
->min_parents
) ||
3731 ((revs
->max_parents
>= 0) && (n
> revs
->max_parents
)))
3732 return commit_ignore
;
3734 if (!commit_match(commit
, revs
))
3735 return commit_ignore
;
3736 if (revs
->prune
&& revs
->dense
) {
3737 /* Commit without changes? */
3738 if (commit
->object
.flags
& TREESAME
) {
3740 struct commit_list
*p
;
3741 /* drop merges unless we want parenthood */
3742 if (!want_ancestry(revs
))
3743 return commit_ignore
;
3745 * If we want ancestry, then need to keep any merges
3746 * between relevant commits to tie together topology.
3747 * For consistency with TREESAME and simplification
3748 * use "relevant" here rather than just INTERESTING,
3749 * to treat bottom commit(s) as part of the topology.
3751 for (n
= 0, p
= commit
->parents
; p
; p
= p
->next
)
3752 if (relevant_commit(p
->item
))
3755 return commit_ignore
;
3761 define_commit_slab(saved_parents
, struct commit_list
*);
3763 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3766 * You may only call save_parents() once per commit (this is checked
3767 * for non-root commits).
3769 static void save_parents(struct rev_info
*revs
, struct commit
*commit
)
3771 struct commit_list
**pp
;
3773 if (!revs
->saved_parents_slab
) {
3774 revs
->saved_parents_slab
= xmalloc(sizeof(struct saved_parents
));
3775 init_saved_parents(revs
->saved_parents_slab
);
3778 pp
= saved_parents_at(revs
->saved_parents_slab
, commit
);
3781 * When walking with reflogs, we may visit the same commit
3782 * several times: once for each appearance in the reflog.
3784 * In this case, save_parents() will be called multiple times.
3785 * We want to keep only the first set of parents. We need to
3786 * store a sentinel value for an empty (i.e., NULL) parent
3787 * list to distinguish it from a not-yet-saved list, however.
3791 if (commit
->parents
)
3792 *pp
= copy_commit_list(commit
->parents
);
3794 *pp
= EMPTY_PARENT_LIST
;
3797 static void free_saved_parents(struct rev_info
*revs
)
3799 if (revs
->saved_parents_slab
)
3800 clear_saved_parents(revs
->saved_parents_slab
);
3803 struct commit_list
*get_saved_parents(struct rev_info
*revs
, const struct commit
*commit
)
3805 struct commit_list
*parents
;
3807 if (!revs
->saved_parents_slab
)
3808 return commit
->parents
;
3810 parents
= *saved_parents_at(revs
->saved_parents_slab
, commit
);
3811 if (parents
== EMPTY_PARENT_LIST
)
3816 enum commit_action
simplify_commit(struct rev_info
*revs
, struct commit
*commit
)
3818 enum commit_action action
= get_commit_action(revs
, commit
);
3820 if (action
== commit_show
&&
3821 revs
->prune
&& revs
->dense
&& want_ancestry(revs
)) {
3823 * --full-diff on simplified parents is no good: it
3824 * will show spurious changes from the commits that
3825 * were elided. So we save the parents on the side
3826 * when --full-diff is in effect.
3828 if (revs
->full_diff
)
3829 save_parents(revs
, commit
);
3830 if (rewrite_parents(revs
, commit
, rewrite_one
) < 0)
3831 return commit_error
;
3836 static void track_linear(struct rev_info
*revs
, struct commit
*commit
)
3838 if (revs
->track_first_time
) {
3840 revs
->track_first_time
= 0;
3842 struct commit_list
*p
;
3843 for (p
= revs
->previous_parents
; p
; p
= p
->next
)
3844 if (p
->item
== NULL
|| /* first commit */
3845 oideq(&p
->item
->object
.oid
, &commit
->object
.oid
))
3847 revs
->linear
= p
!= NULL
;
3849 if (revs
->reverse
) {
3851 commit
->object
.flags
|= TRACK_LINEAR
;
3853 free_commit_list(revs
->previous_parents
);
3854 revs
->previous_parents
= copy_commit_list(commit
->parents
);
3857 static struct commit
*get_revision_1(struct rev_info
*revs
)
3860 struct commit
*commit
;
3862 if (revs
->reflog_info
)
3863 commit
= next_reflog_entry(revs
->reflog_info
);
3864 else if (revs
->topo_walk_info
)
3865 commit
= next_topo_commit(revs
);
3867 commit
= pop_commit(&revs
->commits
);
3872 if (revs
->reflog_info
)
3873 commit
->object
.flags
&= ~(ADDED
| SEEN
| SHOWN
);
3876 * If we haven't done the list limiting, we need to look at
3877 * the parents here. We also need to do the date-based limiting
3878 * that we'd otherwise have done in limit_list().
3880 if (!revs
->limited
) {
3881 if (revs
->max_age
!= -1 &&
3882 comparison_date(revs
, commit
) < revs
->max_age
)
3885 if (revs
->reflog_info
)
3886 try_to_simplify_commit(revs
, commit
);
3887 else if (revs
->topo_walk_info
)
3888 expand_topo_walk(revs
, commit
);
3889 else if (process_parents(revs
, commit
, &revs
->commits
, NULL
) < 0) {
3890 if (!revs
->ignore_missing_links
)
3891 die("Failed to traverse parents of commit %s",
3892 oid_to_hex(&commit
->object
.oid
));
3896 switch (simplify_commit(revs
, commit
)) {
3900 die("Failed to simplify parents of commit %s",
3901 oid_to_hex(&commit
->object
.oid
));
3903 if (revs
->track_linear
)
3904 track_linear(revs
, commit
);
3911 * Return true for entries that have not yet been shown. (This is an
3912 * object_array_each_func_t.)
3914 static int entry_unshown(struct object_array_entry
*entry
, void *cb_data_unused
)
3916 return !(entry
->item
->flags
& SHOWN
);
3920 * If array is on the verge of a realloc, garbage-collect any entries
3921 * that have already been shown to try to free up some space.
3923 static void gc_boundary(struct object_array
*array
)
3925 if (array
->nr
== array
->alloc
)
3926 object_array_filter(array
, entry_unshown
, NULL
);
3929 static void create_boundary_commit_list(struct rev_info
*revs
)
3933 struct object_array
*array
= &revs
->boundary_commits
;
3934 struct object_array_entry
*objects
= array
->objects
;
3937 * If revs->commits is non-NULL at this point, an error occurred in
3938 * get_revision_1(). Ignore the error and continue printing the
3939 * boundary commits anyway. (This is what the code has always
3942 if (revs
->commits
) {
3943 free_commit_list(revs
->commits
);
3944 revs
->commits
= NULL
;
3948 * Put all of the actual boundary commits from revs->boundary_commits
3949 * into revs->commits
3951 for (i
= 0; i
< array
->nr
; i
++) {
3952 c
= (struct commit
*)(objects
[i
].item
);
3955 if (!(c
->object
.flags
& CHILD_SHOWN
))
3957 if (c
->object
.flags
& (SHOWN
| BOUNDARY
))
3959 c
->object
.flags
|= BOUNDARY
;
3960 commit_list_insert(c
, &revs
->commits
);
3964 * If revs->topo_order is set, sort the boundary commits
3965 * in topological order
3967 sort_in_topological_order(&revs
->commits
, revs
->sort_order
);
3970 static struct commit
*get_revision_internal(struct rev_info
*revs
)
3972 struct commit
*c
= NULL
;
3973 struct commit_list
*l
;
3975 if (revs
->boundary
== 2) {
3977 * All of the normal commits have already been returned,
3978 * and we are now returning boundary commits.
3979 * create_boundary_commit_list() has populated
3980 * revs->commits with the remaining commits to return.
3982 c
= pop_commit(&revs
->commits
);
3984 c
->object
.flags
|= SHOWN
;
3989 * If our max_count counter has reached zero, then we are done. We
3990 * don't simply return NULL because we still might need to show
3991 * boundary commits. But we want to avoid calling get_revision_1, which
3992 * might do a considerable amount of work finding the next commit only
3993 * for us to throw it away.
3995 * If it is non-zero, then either we don't have a max_count at all
3996 * (-1), or it is still counting, in which case we decrement.
3998 if (revs
->max_count
) {
3999 c
= get_revision_1(revs
);
4001 while (revs
->skip_count
> 0) {
4003 c
= get_revision_1(revs
);
4009 if (revs
->max_count
> 0)
4014 c
->object
.flags
|= SHOWN
;
4016 if (!revs
->boundary
)
4021 * get_revision_1() runs out the commits, and
4022 * we are done computing the boundaries.
4023 * switch to boundary commits output mode.
4028 * Update revs->commits to contain the list of
4031 create_boundary_commit_list(revs
);
4033 return get_revision_internal(revs
);
4037 * boundary commits are the commits that are parents of the
4038 * ones we got from get_revision_1() but they themselves are
4039 * not returned from get_revision_1(). Before returning
4040 * 'c', we need to mark its parents that they could be boundaries.
4043 for (l
= c
->parents
; l
; l
= l
->next
) {
4045 p
= &(l
->item
->object
);
4046 if (p
->flags
& (CHILD_SHOWN
| SHOWN
))
4048 p
->flags
|= CHILD_SHOWN
;
4049 gc_boundary(&revs
->boundary_commits
);
4050 add_object_array(p
, NULL
, &revs
->boundary_commits
);
4056 struct commit
*get_revision(struct rev_info
*revs
)
4059 struct commit_list
*reversed
;
4061 if (revs
->reverse
) {
4063 while ((c
= get_revision_internal(revs
)))
4064 commit_list_insert(c
, &reversed
);
4065 revs
->commits
= reversed
;
4067 revs
->reverse_output_stage
= 1;
4070 if (revs
->reverse_output_stage
) {
4071 c
= pop_commit(&revs
->commits
);
4072 if (revs
->track_linear
)
4073 revs
->linear
= !!(c
&& c
->object
.flags
& TRACK_LINEAR
);
4077 c
= get_revision_internal(revs
);
4078 if (c
&& revs
->graph
)
4079 graph_update(revs
->graph
, c
);
4081 free_saved_parents(revs
);
4082 if (revs
->previous_parents
) {
4083 free_commit_list(revs
->previous_parents
);
4084 revs
->previous_parents
= NULL
;
4090 const char *get_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4092 if (commit
->object
.flags
& BOUNDARY
)
4094 else if (commit
->object
.flags
& UNINTERESTING
)
4096 else if (commit
->object
.flags
& PATCHSAME
)
4098 else if (!revs
|| revs
->left_right
) {
4099 if (commit
->object
.flags
& SYMMETRIC_LEFT
)
4103 } else if (revs
->graph
)
4105 else if (revs
->cherry_mark
)
4110 void put_revision_mark(const struct rev_info
*revs
, const struct commit
*commit
)
4112 const char *mark
= get_revision_mark(revs
, commit
);
4115 fputs(mark
, stdout
);