Sync with 'master'
[alt-git.git] / revision.c
blob7ddf0f151a381077c7e30d2a9835c4ec64947006
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "environment.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "object-name.h"
7 #include "object-file.h"
8 #include "object-store-ll.h"
9 #include "oidset.h"
10 #include "tag.h"
11 #include "blob.h"
12 #include "tree.h"
13 #include "commit.h"
14 #include "diff.h"
15 #include "diff-merges.h"
16 #include "refs.h"
17 #include "revision.h"
18 #include "repository.h"
19 #include "graph.h"
20 #include "grep.h"
21 #include "reflog-walk.h"
22 #include "patch-ids.h"
23 #include "decorate.h"
24 #include "string-list.h"
25 #include "line-log.h"
26 #include "mailmap.h"
27 #include "commit-slab.h"
28 #include "cache-tree.h"
29 #include "bisect.h"
30 #include "packfile.h"
31 #include "worktree.h"
32 #include "read-cache.h"
33 #include "setup.h"
34 #include "sparse-index.h"
35 #include "strvec.h"
36 #include "trace2.h"
37 #include "commit-reach.h"
38 #include "commit-graph.h"
39 #include "prio-queue.h"
40 #include "hashmap.h"
41 #include "utf8.h"
42 #include "bloom.h"
43 #include "json-writer.h"
44 #include "list-objects-filter-options.h"
45 #include "resolve-undo.h"
46 #include "parse-options.h"
47 #include "wildmatch.h"
49 volatile show_early_output_fn_t show_early_output;
51 static const char *term_bad;
52 static const char *term_good;
54 implement_shared_commit_slab(revision_sources, char *);
56 static inline int want_ancestry(const struct rev_info *revs);
58 void show_object_with_name(FILE *out, struct object *obj, const char *name)
60 fprintf(out, "%s ", oid_to_hex(&obj->oid));
61 for (const char *p = name; *p && *p != '\n'; p++)
62 fputc(*p, out);
63 fputc('\n', out);
66 static void mark_blob_uninteresting(struct blob *blob)
68 if (!blob)
69 return;
70 if (blob->object.flags & UNINTERESTING)
71 return;
72 blob->object.flags |= UNINTERESTING;
75 static void mark_tree_contents_uninteresting(struct repository *r,
76 struct tree *tree)
78 struct tree_desc desc;
79 struct name_entry entry;
81 if (parse_tree_gently(tree, 1) < 0)
82 return;
84 init_tree_desc(&desc, &tree->object.oid, tree->buffer, tree->size);
85 while (tree_entry(&desc, &entry)) {
86 switch (object_type(entry.mode)) {
87 case OBJ_TREE:
88 mark_tree_uninteresting(r, lookup_tree(r, &entry.oid));
89 break;
90 case OBJ_BLOB:
91 mark_blob_uninteresting(lookup_blob(r, &entry.oid));
92 break;
93 default:
94 /* Subproject commit - not in this repository */
95 break;
100 * We don't care about the tree any more
101 * after it has been marked uninteresting.
103 free_tree_buffer(tree);
106 void mark_tree_uninteresting(struct repository *r, struct tree *tree)
108 struct object *obj;
110 if (!tree)
111 return;
113 obj = &tree->object;
114 if (obj->flags & UNINTERESTING)
115 return;
116 obj->flags |= UNINTERESTING;
117 mark_tree_contents_uninteresting(r, tree);
120 struct path_and_oids_entry {
121 struct hashmap_entry ent;
122 char *path;
123 struct oidset trees;
126 static int path_and_oids_cmp(const void *hashmap_cmp_fn_data UNUSED,
127 const struct hashmap_entry *eptr,
128 const struct hashmap_entry *entry_or_key,
129 const void *keydata UNUSED)
131 const struct path_and_oids_entry *e1, *e2;
133 e1 = container_of(eptr, const struct path_and_oids_entry, ent);
134 e2 = container_of(entry_or_key, const struct path_and_oids_entry, ent);
136 return strcmp(e1->path, e2->path);
139 static void paths_and_oids_clear(struct hashmap *map)
141 struct hashmap_iter iter;
142 struct path_and_oids_entry *entry;
144 hashmap_for_each_entry(map, &iter, entry, ent /* member name */) {
145 oidset_clear(&entry->trees);
146 free(entry->path);
149 hashmap_clear_and_free(map, struct path_and_oids_entry, ent);
152 static void paths_and_oids_insert(struct hashmap *map,
153 const char *path,
154 const struct object_id *oid)
156 int hash = strhash(path);
157 struct path_and_oids_entry key;
158 struct path_and_oids_entry *entry;
160 hashmap_entry_init(&key.ent, hash);
162 /* use a shallow copy for the lookup */
163 key.path = (char *)path;
164 oidset_init(&key.trees, 0);
166 entry = hashmap_get_entry(map, &key, ent, NULL);
167 if (!entry) {
168 CALLOC_ARRAY(entry, 1);
169 hashmap_entry_init(&entry->ent, hash);
170 entry->path = xstrdup(key.path);
171 oidset_init(&entry->trees, 16);
172 hashmap_put(map, &entry->ent);
175 oidset_insert(&entry->trees, oid);
178 static void add_children_by_path(struct repository *r,
179 struct tree *tree,
180 struct hashmap *map)
182 struct tree_desc desc;
183 struct name_entry entry;
185 if (!tree)
186 return;
188 if (parse_tree_gently(tree, 1) < 0)
189 return;
191 init_tree_desc(&desc, &tree->object.oid, tree->buffer, tree->size);
192 while (tree_entry(&desc, &entry)) {
193 switch (object_type(entry.mode)) {
194 case OBJ_TREE:
195 paths_and_oids_insert(map, entry.path, &entry.oid);
197 if (tree->object.flags & UNINTERESTING) {
198 struct tree *child = lookup_tree(r, &entry.oid);
199 if (child)
200 child->object.flags |= UNINTERESTING;
202 break;
203 case OBJ_BLOB:
204 if (tree->object.flags & UNINTERESTING) {
205 struct blob *child = lookup_blob(r, &entry.oid);
206 if (child)
207 child->object.flags |= UNINTERESTING;
209 break;
210 default:
211 /* Subproject commit - not in this repository */
212 break;
216 free_tree_buffer(tree);
219 void mark_trees_uninteresting_sparse(struct repository *r,
220 struct oidset *trees)
222 unsigned has_interesting = 0, has_uninteresting = 0;
223 struct hashmap map = HASHMAP_INIT(path_and_oids_cmp, NULL);
224 struct hashmap_iter map_iter;
225 struct path_and_oids_entry *entry;
226 struct object_id *oid;
227 struct oidset_iter iter;
229 oidset_iter_init(trees, &iter);
230 while ((!has_interesting || !has_uninteresting) &&
231 (oid = oidset_iter_next(&iter))) {
232 struct tree *tree = lookup_tree(r, oid);
234 if (!tree)
235 continue;
237 if (tree->object.flags & UNINTERESTING)
238 has_uninteresting = 1;
239 else
240 has_interesting = 1;
243 /* Do not walk unless we have both types of trees. */
244 if (!has_uninteresting || !has_interesting)
245 return;
247 oidset_iter_init(trees, &iter);
248 while ((oid = oidset_iter_next(&iter))) {
249 struct tree *tree = lookup_tree(r, oid);
250 add_children_by_path(r, tree, &map);
253 hashmap_for_each_entry(&map, &map_iter, entry, ent /* member name */)
254 mark_trees_uninteresting_sparse(r, &entry->trees);
256 paths_and_oids_clear(&map);
259 struct commit_stack {
260 struct commit **items;
261 size_t nr, alloc;
263 #define COMMIT_STACK_INIT { 0 }
265 static void commit_stack_push(struct commit_stack *stack, struct commit *commit)
267 ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
268 stack->items[stack->nr++] = commit;
271 static struct commit *commit_stack_pop(struct commit_stack *stack)
273 return stack->nr ? stack->items[--stack->nr] : NULL;
276 static void commit_stack_clear(struct commit_stack *stack)
278 FREE_AND_NULL(stack->items);
279 stack->nr = stack->alloc = 0;
282 static void mark_one_parent_uninteresting(struct rev_info *revs, struct commit *commit,
283 struct commit_stack *pending)
285 struct commit_list *l;
287 if (commit->object.flags & UNINTERESTING)
288 return;
289 commit->object.flags |= UNINTERESTING;
292 * Normally we haven't parsed the parent
293 * yet, so we won't have a parent of a parent
294 * here. However, it may turn out that we've
295 * reached this commit some other way (where it
296 * wasn't uninteresting), in which case we need
297 * to mark its parents recursively too..
299 for (l = commit->parents; l; l = l->next) {
300 commit_stack_push(pending, l->item);
301 if (revs && revs->exclude_first_parent_only)
302 break;
306 void mark_parents_uninteresting(struct rev_info *revs, struct commit *commit)
308 struct commit_stack pending = COMMIT_STACK_INIT;
309 struct commit_list *l;
311 for (l = commit->parents; l; l = l->next) {
312 mark_one_parent_uninteresting(revs, l->item, &pending);
313 if (revs && revs->exclude_first_parent_only)
314 break;
317 while (pending.nr > 0)
318 mark_one_parent_uninteresting(revs, commit_stack_pop(&pending),
319 &pending);
321 commit_stack_clear(&pending);
324 static void add_pending_object_with_path(struct rev_info *revs,
325 struct object *obj,
326 const char *name, unsigned mode,
327 const char *path)
329 struct interpret_branch_name_options options = { 0 };
330 if (!obj)
331 return;
332 if (revs->no_walk && (obj->flags & UNINTERESTING))
333 revs->no_walk = 0;
334 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
335 struct strbuf buf = STRBUF_INIT;
336 size_t namelen = strlen(name);
337 int len = repo_interpret_branch_name(the_repository, name,
338 namelen, &buf, &options);
340 if (0 < len && len < namelen && buf.len)
341 strbuf_addstr(&buf, name + len);
342 add_reflog_for_walk(revs->reflog_info,
343 (struct commit *)obj,
344 buf.buf[0] ? buf.buf: name);
345 strbuf_release(&buf);
346 return; /* do not add the commit itself */
348 add_object_array_with_path(obj, name, &revs->pending, mode, path);
351 static void add_pending_object_with_mode(struct rev_info *revs,
352 struct object *obj,
353 const char *name, unsigned mode)
355 add_pending_object_with_path(revs, obj, name, mode, NULL);
358 void add_pending_object(struct rev_info *revs,
359 struct object *obj, const char *name)
361 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
364 void add_head_to_pending(struct rev_info *revs)
366 struct object_id oid;
367 struct object *obj;
368 if (repo_get_oid(the_repository, "HEAD", &oid))
369 return;
370 obj = parse_object(revs->repo, &oid);
371 if (!obj)
372 return;
373 add_pending_object(revs, obj, "HEAD");
376 static struct object *get_reference(struct rev_info *revs, const char *name,
377 const struct object_id *oid,
378 unsigned int flags)
380 struct object *object;
382 object = parse_object_with_flags(revs->repo, oid,
383 revs->verify_objects ? 0 :
384 PARSE_OBJECT_SKIP_HASH_CHECK |
385 PARSE_OBJECT_DISCARD_TREE);
387 if (!object) {
388 if (revs->ignore_missing)
389 return NULL;
390 if (revs->exclude_promisor_objects && is_promisor_object(oid))
391 return NULL;
392 if (revs->do_not_die_on_missing_objects) {
393 oidset_insert(&revs->missing_commits, oid);
394 return NULL;
396 die("bad object %s", name);
398 object->flags |= flags;
399 return object;
402 void add_pending_oid(struct rev_info *revs, const char *name,
403 const struct object_id *oid, unsigned int flags)
405 struct object *object = get_reference(revs, name, oid, flags);
406 add_pending_object(revs, object, name);
409 static struct commit *handle_commit(struct rev_info *revs,
410 struct object_array_entry *entry)
412 struct object *object = entry->item;
413 const char *name = entry->name;
414 const char *path = entry->path;
415 unsigned int mode = entry->mode;
416 unsigned long flags = object->flags;
419 * Tag object? Look what it points to..
421 while (object->type == OBJ_TAG) {
422 struct tag *tag = (struct tag *) object;
423 struct object_id *oid;
424 if (revs->tag_objects && !(flags & UNINTERESTING))
425 add_pending_object(revs, object, tag->tag);
426 oid = get_tagged_oid(tag);
427 object = parse_object(revs->repo, oid);
428 if (!object) {
429 if (revs->ignore_missing_links || (flags & UNINTERESTING))
430 return NULL;
431 if (revs->exclude_promisor_objects &&
432 is_promisor_object(&tag->tagged->oid))
433 return NULL;
434 if (revs->do_not_die_on_missing_objects && oid) {
435 oidset_insert(&revs->missing_commits, oid);
436 return NULL;
438 die("bad object %s", oid_to_hex(&tag->tagged->oid));
440 object->flags |= flags;
442 * We'll handle the tagged object by looping or dropping
443 * through to the non-tag handlers below. Do not
444 * propagate path data from the tag's pending entry.
446 path = NULL;
447 mode = 0;
451 * Commit object? Just return it, we'll do all the complex
452 * reachability crud.
454 if (object->type == OBJ_COMMIT) {
455 struct commit *commit = (struct commit *)object;
457 if (repo_parse_commit(revs->repo, commit) < 0)
458 die("unable to parse commit %s", name);
459 if (flags & UNINTERESTING) {
460 mark_parents_uninteresting(revs, commit);
462 if (!revs->topo_order || !generation_numbers_enabled(the_repository))
463 revs->limited = 1;
465 if (revs->sources) {
466 char **slot = revision_sources_at(revs->sources, commit);
468 if (!*slot)
469 *slot = xstrdup(name);
471 return commit;
475 * Tree object? Either mark it uninteresting, or add it
476 * to the list of objects to look at later..
478 if (object->type == OBJ_TREE) {
479 struct tree *tree = (struct tree *)object;
480 if (!revs->tree_objects)
481 return NULL;
482 if (flags & UNINTERESTING) {
483 mark_tree_contents_uninteresting(revs->repo, tree);
484 return NULL;
486 add_pending_object_with_path(revs, object, name, mode, path);
487 return NULL;
491 * Blob object? You know the drill by now..
493 if (object->type == OBJ_BLOB) {
494 if (!revs->blob_objects)
495 return NULL;
496 if (flags & UNINTERESTING)
497 return NULL;
498 add_pending_object_with_path(revs, object, name, mode, path);
499 return NULL;
501 die("%s is unknown object", name);
504 static int everybody_uninteresting(struct commit_list *orig,
505 struct commit **interesting_cache)
507 struct commit_list *list = orig;
509 if (*interesting_cache) {
510 struct commit *commit = *interesting_cache;
511 if (!(commit->object.flags & UNINTERESTING))
512 return 0;
515 while (list) {
516 struct commit *commit = list->item;
517 list = list->next;
518 if (commit->object.flags & UNINTERESTING)
519 continue;
521 *interesting_cache = commit;
522 return 0;
524 return 1;
528 * A definition of "relevant" commit that we can use to simplify limited graphs
529 * by eliminating side branches.
531 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
532 * in our list), or that is a specified BOTTOM commit. Then after computing
533 * a limited list, during processing we can generally ignore boundary merges
534 * coming from outside the graph, (ie from irrelevant parents), and treat
535 * those merges as if they were single-parent. TREESAME is defined to consider
536 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
537 * we don't care if we were !TREESAME to non-graph parents.
539 * Treating bottom commits as relevant ensures that a limited graph's
540 * connection to the actual bottom commit is not viewed as a side branch, but
541 * treated as part of the graph. For example:
543 * ....Z...A---X---o---o---B
544 * . /
545 * W---Y
547 * When computing "A..B", the A-X connection is at least as important as
548 * Y-X, despite A being flagged UNINTERESTING.
550 * And when computing --ancestry-path "A..B", the A-X connection is more
551 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
553 static inline int relevant_commit(struct commit *commit)
555 return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
559 * Return a single relevant commit from a parent list. If we are a TREESAME
560 * commit, and this selects one of our parents, then we can safely simplify to
561 * that parent.
563 static struct commit *one_relevant_parent(const struct rev_info *revs,
564 struct commit_list *orig)
566 struct commit_list *list = orig;
567 struct commit *relevant = NULL;
569 if (!orig)
570 return NULL;
573 * For 1-parent commits, or if first-parent-only, then return that
574 * first parent (even if not "relevant" by the above definition).
575 * TREESAME will have been set purely on that parent.
577 if (revs->first_parent_only || !orig->next)
578 return orig->item;
581 * For multi-parent commits, identify a sole relevant parent, if any.
582 * If we have only one relevant parent, then TREESAME will be set purely
583 * with regard to that parent, and we can simplify accordingly.
585 * If we have more than one relevant parent, or no relevant parents
586 * (and multiple irrelevant ones), then we can't select a parent here
587 * and return NULL.
589 while (list) {
590 struct commit *commit = list->item;
591 list = list->next;
592 if (relevant_commit(commit)) {
593 if (relevant)
594 return NULL;
595 relevant = commit;
598 return relevant;
602 * The goal is to get REV_TREE_NEW as the result only if the
603 * diff consists of all '+' (and no other changes), REV_TREE_OLD
604 * if the whole diff is removal of old data, and otherwise
605 * REV_TREE_DIFFERENT (of course if the trees are the same we
606 * want REV_TREE_SAME).
608 * The only time we care about the distinction is when
609 * remove_empty_trees is in effect, in which case we care only about
610 * whether the whole change is REV_TREE_NEW, or if there's another type
611 * of change. Which means we can stop the diff early in either of these
612 * cases:
614 * 1. We're not using remove_empty_trees at all.
616 * 2. We saw anything except REV_TREE_NEW.
618 #define REV_TREE_SAME 0
619 #define REV_TREE_NEW 1 /* Only new files */
620 #define REV_TREE_OLD 2 /* Only files removed */
621 #define REV_TREE_DIFFERENT 3 /* Mixed changes */
622 static int tree_difference = REV_TREE_SAME;
624 static void file_add_remove(struct diff_options *options,
625 int addremove,
626 unsigned mode UNUSED,
627 const struct object_id *oid UNUSED,
628 int oid_valid UNUSED,
629 const char *fullpath UNUSED,
630 unsigned dirty_submodule UNUSED)
632 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
633 struct rev_info *revs = options->change_fn_data;
635 tree_difference |= diff;
636 if (!revs->remove_empty_trees || tree_difference != REV_TREE_NEW)
637 options->flags.has_changes = 1;
640 static void file_change(struct diff_options *options,
641 unsigned old_mode UNUSED,
642 unsigned new_mode UNUSED,
643 const struct object_id *old_oid UNUSED,
644 const struct object_id *new_oid UNUSED,
645 int old_oid_valid UNUSED,
646 int new_oid_valid UNUSED,
647 const char *fullpath UNUSED,
648 unsigned old_dirty_submodule UNUSED,
649 unsigned new_dirty_submodule UNUSED)
651 tree_difference = REV_TREE_DIFFERENT;
652 options->flags.has_changes = 1;
655 static int bloom_filter_atexit_registered;
656 static unsigned int count_bloom_filter_maybe;
657 static unsigned int count_bloom_filter_definitely_not;
658 static unsigned int count_bloom_filter_false_positive;
659 static unsigned int count_bloom_filter_not_present;
661 static void trace2_bloom_filter_statistics_atexit(void)
663 struct json_writer jw = JSON_WRITER_INIT;
665 jw_object_begin(&jw, 0);
666 jw_object_intmax(&jw, "filter_not_present", count_bloom_filter_not_present);
667 jw_object_intmax(&jw, "maybe", count_bloom_filter_maybe);
668 jw_object_intmax(&jw, "definitely_not", count_bloom_filter_definitely_not);
669 jw_object_intmax(&jw, "false_positive", count_bloom_filter_false_positive);
670 jw_end(&jw);
672 trace2_data_json("bloom", the_repository, "statistics", &jw);
674 jw_release(&jw);
677 static int forbid_bloom_filters(struct pathspec *spec)
679 if (spec->has_wildcard)
680 return 1;
681 if (spec->nr > 1)
682 return 1;
683 if (spec->magic & ~PATHSPEC_LITERAL)
684 return 1;
685 if (spec->nr && (spec->items[0].magic & ~PATHSPEC_LITERAL))
686 return 1;
688 return 0;
691 static void prepare_to_use_bloom_filter(struct rev_info *revs)
693 struct pathspec_item *pi;
694 char *path_alloc = NULL;
695 const char *path, *p;
696 size_t len;
697 int path_component_nr = 1;
699 if (!revs->commits)
700 return;
702 if (forbid_bloom_filters(&revs->prune_data))
703 return;
705 repo_parse_commit(revs->repo, revs->commits->item);
707 revs->bloom_filter_settings = get_bloom_filter_settings(revs->repo);
708 if (!revs->bloom_filter_settings)
709 return;
711 if (!revs->pruning.pathspec.nr)
712 return;
714 pi = &revs->pruning.pathspec.items[0];
716 /* remove single trailing slash from path, if needed */
717 if (pi->len > 0 && pi->match[pi->len - 1] == '/') {
718 path_alloc = xmemdupz(pi->match, pi->len - 1);
719 path = path_alloc;
720 } else
721 path = pi->match;
723 len = strlen(path);
724 if (!len) {
725 revs->bloom_filter_settings = NULL;
726 free(path_alloc);
727 return;
730 p = path;
731 while (*p) {
733 * At this point, the path is normalized to use Unix-style
734 * path separators. This is required due to how the
735 * changed-path Bloom filters store the paths.
737 if (*p == '/')
738 path_component_nr++;
739 p++;
742 revs->bloom_keys_nr = path_component_nr;
743 ALLOC_ARRAY(revs->bloom_keys, revs->bloom_keys_nr);
745 fill_bloom_key(path, len, &revs->bloom_keys[0],
746 revs->bloom_filter_settings);
747 path_component_nr = 1;
749 p = path + len - 1;
750 while (p > path) {
751 if (*p == '/')
752 fill_bloom_key(path, p - path,
753 &revs->bloom_keys[path_component_nr++],
754 revs->bloom_filter_settings);
755 p--;
758 if (trace2_is_enabled() && !bloom_filter_atexit_registered) {
759 atexit(trace2_bloom_filter_statistics_atexit);
760 bloom_filter_atexit_registered = 1;
763 free(path_alloc);
766 static int check_maybe_different_in_bloom_filter(struct rev_info *revs,
767 struct commit *commit)
769 struct bloom_filter *filter;
770 int result = 1, j;
772 if (!revs->repo->objects->commit_graph)
773 return -1;
775 if (commit_graph_generation(commit) == GENERATION_NUMBER_INFINITY)
776 return -1;
778 filter = get_bloom_filter(revs->repo, commit);
780 if (!filter) {
781 count_bloom_filter_not_present++;
782 return -1;
785 for (j = 0; result && j < revs->bloom_keys_nr; j++) {
786 result = bloom_filter_contains(filter,
787 &revs->bloom_keys[j],
788 revs->bloom_filter_settings);
791 if (result)
792 count_bloom_filter_maybe++;
793 else
794 count_bloom_filter_definitely_not++;
796 return result;
799 static int rev_compare_tree(struct rev_info *revs,
800 struct commit *parent, struct commit *commit, int nth_parent)
802 struct tree *t1 = repo_get_commit_tree(the_repository, parent);
803 struct tree *t2 = repo_get_commit_tree(the_repository, commit);
804 int bloom_ret = 1;
806 if (!t1)
807 return REV_TREE_NEW;
808 if (!t2)
809 return REV_TREE_OLD;
811 if (revs->simplify_by_decoration) {
813 * If we are simplifying by decoration, then the commit
814 * is worth showing if it has a tag pointing at it.
816 if (get_name_decoration(&commit->object))
817 return REV_TREE_DIFFERENT;
819 * A commit that is not pointed by a tag is uninteresting
820 * if we are not limited by path. This means that you will
821 * see the usual "commits that touch the paths" plus any
822 * tagged commit by specifying both --simplify-by-decoration
823 * and pathspec.
825 if (!revs->prune_data.nr)
826 return REV_TREE_SAME;
829 if (revs->bloom_keys_nr && !nth_parent) {
830 bloom_ret = check_maybe_different_in_bloom_filter(revs, commit);
832 if (bloom_ret == 0)
833 return REV_TREE_SAME;
836 tree_difference = REV_TREE_SAME;
837 revs->pruning.flags.has_changes = 0;
838 diff_tree_oid(&t1->object.oid, &t2->object.oid, "", &revs->pruning);
840 if (!nth_parent)
841 if (bloom_ret == 1 && tree_difference == REV_TREE_SAME)
842 count_bloom_filter_false_positive++;
844 return tree_difference;
847 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
849 struct tree *t1 = repo_get_commit_tree(the_repository, commit);
851 if (!t1)
852 return 0;
854 tree_difference = REV_TREE_SAME;
855 revs->pruning.flags.has_changes = 0;
856 diff_tree_oid(NULL, &t1->object.oid, "", &revs->pruning);
858 return tree_difference == REV_TREE_SAME;
861 struct treesame_state {
862 unsigned int nparents;
863 unsigned char treesame[FLEX_ARRAY];
866 static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
868 unsigned n = commit_list_count(commit->parents);
869 struct treesame_state *st = xcalloc(1, st_add(sizeof(*st), n));
870 st->nparents = n;
871 add_decoration(&revs->treesame, &commit->object, st);
872 return st;
876 * Must be called immediately after removing the nth_parent from a commit's
877 * parent list, if we are maintaining the per-parent treesame[] decoration.
878 * This does not recalculate the master TREESAME flag - update_treesame()
879 * should be called to update it after a sequence of treesame[] modifications
880 * that may have affected it.
882 static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
884 struct treesame_state *st;
885 int old_same;
887 if (!commit->parents) {
889 * Have just removed the only parent from a non-merge.
890 * Different handling, as we lack decoration.
892 if (nth_parent != 0)
893 die("compact_treesame %u", nth_parent);
894 old_same = !!(commit->object.flags & TREESAME);
895 if (rev_same_tree_as_empty(revs, commit))
896 commit->object.flags |= TREESAME;
897 else
898 commit->object.flags &= ~TREESAME;
899 return old_same;
902 st = lookup_decoration(&revs->treesame, &commit->object);
903 if (!st || nth_parent >= st->nparents)
904 die("compact_treesame %u", nth_parent);
906 old_same = st->treesame[nth_parent];
907 memmove(st->treesame + nth_parent,
908 st->treesame + nth_parent + 1,
909 st->nparents - nth_parent - 1);
912 * If we've just become a non-merge commit, update TREESAME
913 * immediately, and remove the no-longer-needed decoration.
914 * If still a merge, defer update until update_treesame().
916 if (--st->nparents == 1) {
917 if (commit->parents->next)
918 die("compact_treesame parents mismatch");
919 if (st->treesame[0] && revs->dense)
920 commit->object.flags |= TREESAME;
921 else
922 commit->object.flags &= ~TREESAME;
923 free(add_decoration(&revs->treesame, &commit->object, NULL));
926 return old_same;
929 static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
931 if (commit->parents && commit->parents->next) {
932 unsigned n;
933 struct treesame_state *st;
934 struct commit_list *p;
935 unsigned relevant_parents;
936 unsigned relevant_change, irrelevant_change;
938 st = lookup_decoration(&revs->treesame, &commit->object);
939 if (!st)
940 die("update_treesame %s", oid_to_hex(&commit->object.oid));
941 relevant_parents = 0;
942 relevant_change = irrelevant_change = 0;
943 for (p = commit->parents, n = 0; p; n++, p = p->next) {
944 if (relevant_commit(p->item)) {
945 relevant_change |= !st->treesame[n];
946 relevant_parents++;
947 } else
948 irrelevant_change |= !st->treesame[n];
950 if (relevant_parents ? relevant_change : irrelevant_change)
951 commit->object.flags &= ~TREESAME;
952 else
953 commit->object.flags |= TREESAME;
956 return commit->object.flags & TREESAME;
959 static inline int limiting_can_increase_treesame(const struct rev_info *revs)
962 * TREESAME is irrelevant unless prune && dense;
963 * if simplify_history is set, we can't have a mixture of TREESAME and
964 * !TREESAME INTERESTING parents (and we don't have treesame[]
965 * decoration anyway);
966 * if first_parent_only is set, then the TREESAME flag is locked
967 * against the first parent (and again we lack treesame[] decoration).
969 return revs->prune && revs->dense &&
970 !revs->simplify_history &&
971 !revs->first_parent_only;
974 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
976 struct commit_list **pp, *parent;
977 struct treesame_state *ts = NULL;
978 int relevant_change = 0, irrelevant_change = 0;
979 int relevant_parents, nth_parent;
982 * If we don't do pruning, everything is interesting
984 if (!revs->prune)
985 return;
987 if (!repo_get_commit_tree(the_repository, commit))
988 return;
990 if (!commit->parents) {
991 if (rev_same_tree_as_empty(revs, commit))
992 commit->object.flags |= TREESAME;
993 return;
997 * Normal non-merge commit? If we don't want to make the
998 * history dense, we consider it always to be a change..
1000 if (!revs->dense && !commit->parents->next)
1001 return;
1003 for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
1004 (parent = *pp) != NULL;
1005 pp = &parent->next, nth_parent++) {
1006 struct commit *p = parent->item;
1007 if (relevant_commit(p))
1008 relevant_parents++;
1010 if (nth_parent == 1) {
1012 * This our second loop iteration - so we now know
1013 * we're dealing with a merge.
1015 * Do not compare with later parents when we care only about
1016 * the first parent chain, in order to avoid derailing the
1017 * traversal to follow a side branch that brought everything
1018 * in the path we are limited to by the pathspec.
1020 if (revs->first_parent_only)
1021 break;
1023 * If this will remain a potentially-simplifiable
1024 * merge, remember per-parent treesame if needed.
1025 * Initialise the array with the comparison from our
1026 * first iteration.
1028 if (revs->treesame.name &&
1029 !revs->simplify_history &&
1030 !(commit->object.flags & UNINTERESTING)) {
1031 ts = initialise_treesame(revs, commit);
1032 if (!(irrelevant_change || relevant_change))
1033 ts->treesame[0] = 1;
1036 if (repo_parse_commit(revs->repo, p) < 0)
1037 die("cannot simplify commit %s (because of %s)",
1038 oid_to_hex(&commit->object.oid),
1039 oid_to_hex(&p->object.oid));
1040 switch (rev_compare_tree(revs, p, commit, nth_parent)) {
1041 case REV_TREE_SAME:
1042 if (!revs->simplify_history || !relevant_commit(p)) {
1043 /* Even if a merge with an uninteresting
1044 * side branch brought the entire change
1045 * we are interested in, we do not want
1046 * to lose the other branches of this
1047 * merge, so we just keep going.
1049 if (ts)
1050 ts->treesame[nth_parent] = 1;
1051 continue;
1053 parent->next = NULL;
1054 commit->parents = parent;
1057 * A merge commit is a "diversion" if it is not
1058 * TREESAME to its first parent but is TREESAME
1059 * to a later parent. In the simplified history,
1060 * we "divert" the history walk to the later
1061 * parent. These commits are shown when "show_pulls"
1062 * is enabled, so do not mark the object as
1063 * TREESAME here.
1065 if (!revs->show_pulls || !nth_parent)
1066 commit->object.flags |= TREESAME;
1068 return;
1070 case REV_TREE_NEW:
1071 if (revs->remove_empty_trees &&
1072 rev_same_tree_as_empty(revs, p)) {
1073 /* We are adding all the specified
1074 * paths from this parent, so the
1075 * history beyond this parent is not
1076 * interesting. Remove its parents
1077 * (they are grandparents for us).
1078 * IOW, we pretend this parent is a
1079 * "root" commit.
1081 if (repo_parse_commit(revs->repo, p) < 0)
1082 die("cannot simplify commit %s (invalid %s)",
1083 oid_to_hex(&commit->object.oid),
1084 oid_to_hex(&p->object.oid));
1085 p->parents = NULL;
1087 /* fallthrough */
1088 case REV_TREE_OLD:
1089 case REV_TREE_DIFFERENT:
1090 if (relevant_commit(p))
1091 relevant_change = 1;
1092 else
1093 irrelevant_change = 1;
1095 if (!nth_parent)
1096 commit->object.flags |= PULL_MERGE;
1098 continue;
1100 die("bad tree compare for commit %s", oid_to_hex(&commit->object.oid));
1104 * TREESAME is straightforward for single-parent commits. For merge
1105 * commits, it is most useful to define it so that "irrelevant"
1106 * parents cannot make us !TREESAME - if we have any relevant
1107 * parents, then we only consider TREESAMEness with respect to them,
1108 * allowing irrelevant merges from uninteresting branches to be
1109 * simplified away. Only if we have only irrelevant parents do we
1110 * base TREESAME on them. Note that this logic is replicated in
1111 * update_treesame, which should be kept in sync.
1113 if (relevant_parents ? !relevant_change : !irrelevant_change)
1114 commit->object.flags |= TREESAME;
1117 static int process_parents(struct rev_info *revs, struct commit *commit,
1118 struct commit_list **list, struct prio_queue *queue)
1120 struct commit_list *parent = commit->parents;
1121 unsigned pass_flags;
1123 if (commit->object.flags & ADDED)
1124 return 0;
1125 if (revs->do_not_die_on_missing_objects &&
1126 oidset_contains(&revs->missing_commits, &commit->object.oid))
1127 return 0;
1128 commit->object.flags |= ADDED;
1130 if (revs->include_check &&
1131 !revs->include_check(commit, revs->include_check_data))
1132 return 0;
1135 * If the commit is uninteresting, don't try to
1136 * prune parents - we want the maximal uninteresting
1137 * set.
1139 * Normally we haven't parsed the parent
1140 * yet, so we won't have a parent of a parent
1141 * here. However, it may turn out that we've
1142 * reached this commit some other way (where it
1143 * wasn't uninteresting), in which case we need
1144 * to mark its parents recursively too..
1146 if (commit->object.flags & UNINTERESTING) {
1147 while (parent) {
1148 struct commit *p = parent->item;
1149 parent = parent->next;
1150 if (p)
1151 p->object.flags |= UNINTERESTING;
1152 if (repo_parse_commit_gently(revs->repo, p, 1) < 0)
1153 continue;
1154 if (p->parents)
1155 mark_parents_uninteresting(revs, p);
1156 if (p->object.flags & SEEN)
1157 continue;
1158 p->object.flags |= (SEEN | NOT_USER_GIVEN);
1159 if (list)
1160 commit_list_insert_by_date(p, list);
1161 if (queue)
1162 prio_queue_put(queue, p);
1163 if (revs->exclude_first_parent_only)
1164 break;
1166 return 0;
1170 * Ok, the commit wasn't uninteresting. Try to
1171 * simplify the commit history and find the parent
1172 * that has no differences in the path set if one exists.
1174 try_to_simplify_commit(revs, commit);
1176 if (revs->no_walk)
1177 return 0;
1179 pass_flags = (commit->object.flags & (SYMMETRIC_LEFT | ANCESTRY_PATH));
1181 for (parent = commit->parents; parent; parent = parent->next) {
1182 struct commit *p = parent->item;
1183 int gently = revs->ignore_missing_links ||
1184 revs->exclude_promisor_objects ||
1185 revs->do_not_die_on_missing_objects;
1186 if (repo_parse_commit_gently(revs->repo, p, gently) < 0) {
1187 if (revs->exclude_promisor_objects &&
1188 is_promisor_object(&p->object.oid)) {
1189 if (revs->first_parent_only)
1190 break;
1191 continue;
1194 if (revs->do_not_die_on_missing_objects)
1195 oidset_insert(&revs->missing_commits, &p->object.oid);
1196 else
1197 return -1; /* corrupt repository */
1199 if (revs->sources) {
1200 char **slot = revision_sources_at(revs->sources, p);
1202 if (!*slot)
1203 *slot = *revision_sources_at(revs->sources, commit);
1205 p->object.flags |= pass_flags;
1206 if (!(p->object.flags & SEEN)) {
1207 p->object.flags |= (SEEN | NOT_USER_GIVEN);
1208 if (list)
1209 commit_list_insert_by_date(p, list);
1210 if (queue)
1211 prio_queue_put(queue, p);
1213 if (revs->first_parent_only)
1214 break;
1216 return 0;
1219 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
1221 struct commit_list *p;
1222 int left_count = 0, right_count = 0;
1223 int left_first;
1224 struct patch_ids ids;
1225 unsigned cherry_flag;
1227 /* First count the commits on the left and on the right */
1228 for (p = list; p; p = p->next) {
1229 struct commit *commit = p->item;
1230 unsigned flags = commit->object.flags;
1231 if (flags & BOUNDARY)
1233 else if (flags & SYMMETRIC_LEFT)
1234 left_count++;
1235 else
1236 right_count++;
1239 if (!left_count || !right_count)
1240 return;
1242 left_first = left_count < right_count;
1243 init_patch_ids(revs->repo, &ids);
1244 ids.diffopts.pathspec = revs->diffopt.pathspec;
1246 /* Compute patch-ids for one side */
1247 for (p = list; p; p = p->next) {
1248 struct commit *commit = p->item;
1249 unsigned flags = commit->object.flags;
1251 if (flags & BOUNDARY)
1252 continue;
1254 * If we have fewer left, left_first is set and we omit
1255 * commits on the right branch in this loop. If we have
1256 * fewer right, we skip the left ones.
1258 if (left_first != !!(flags & SYMMETRIC_LEFT))
1259 continue;
1260 add_commit_patch_id(commit, &ids);
1263 /* either cherry_mark or cherry_pick are true */
1264 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
1266 /* Check the other side */
1267 for (p = list; p; p = p->next) {
1268 struct commit *commit = p->item;
1269 struct patch_id *id;
1270 unsigned flags = commit->object.flags;
1272 if (flags & BOUNDARY)
1273 continue;
1275 * If we have fewer left, left_first is set and we omit
1276 * commits on the left branch in this loop.
1278 if (left_first == !!(flags & SYMMETRIC_LEFT))
1279 continue;
1282 * Have we seen the same patch id?
1284 id = patch_id_iter_first(commit, &ids);
1285 if (!id)
1286 continue;
1288 commit->object.flags |= cherry_flag;
1289 do {
1290 id->commit->object.flags |= cherry_flag;
1291 } while ((id = patch_id_iter_next(id, &ids)));
1294 free_patch_ids(&ids);
1297 /* How many extra uninteresting commits we want to see.. */
1298 #define SLOP 5
1300 static int still_interesting(struct commit_list *src, timestamp_t date, int slop,
1301 struct commit **interesting_cache)
1304 * No source list at all? We're definitely done..
1306 if (!src)
1307 return 0;
1310 * Does the destination list contain entries with a date
1311 * before the source list? Definitely _not_ done.
1313 if (date <= src->item->date)
1314 return SLOP;
1317 * Does the source list still have interesting commits in
1318 * it? Definitely not done..
1320 if (!everybody_uninteresting(src, interesting_cache))
1321 return SLOP;
1323 /* Ok, we're closing in.. */
1324 return slop-1;
1328 * "rev-list --ancestry-path=C_0 [--ancestry-path=C_1 ...] A..B"
1329 * computes commits that are ancestors of B but not ancestors of A but
1330 * further limits the result to those that have any of C in their
1331 * ancestry path (i.e. are either ancestors of any of C, descendants
1332 * of any of C, or are any of C). If --ancestry-path is specified with
1333 * no commit, we use all bottom commits for C.
1335 * Before this function is called, ancestors of C will have already
1336 * been marked with ANCESTRY_PATH previously.
1338 * This takes the list of bottom commits and the result of "A..B"
1339 * without --ancestry-path, and limits the latter further to the ones
1340 * that have any of C in their ancestry path. Since the ancestors of C
1341 * have already been marked (a prerequisite of this function), we just
1342 * need to mark the descendants, then exclude any commit that does not
1343 * have any of these marks.
1345 static void limit_to_ancestry(struct commit_list *bottoms, struct commit_list *list)
1347 struct commit_list *p;
1348 struct commit_list *rlist = NULL;
1349 int made_progress;
1352 * Reverse the list so that it will be likely that we would
1353 * process parents before children.
1355 for (p = list; p; p = p->next)
1356 commit_list_insert(p->item, &rlist);
1358 for (p = bottoms; p; p = p->next)
1359 p->item->object.flags |= TMP_MARK;
1362 * Mark the ones that can reach bottom commits in "list",
1363 * in a bottom-up fashion.
1365 do {
1366 made_progress = 0;
1367 for (p = rlist; p; p = p->next) {
1368 struct commit *c = p->item;
1369 struct commit_list *parents;
1370 if (c->object.flags & (TMP_MARK | UNINTERESTING))
1371 continue;
1372 for (parents = c->parents;
1373 parents;
1374 parents = parents->next) {
1375 if (!(parents->item->object.flags & TMP_MARK))
1376 continue;
1377 c->object.flags |= TMP_MARK;
1378 made_progress = 1;
1379 break;
1382 } while (made_progress);
1385 * NEEDSWORK: decide if we want to remove parents that are
1386 * not marked with TMP_MARK from commit->parents for commits
1387 * in the resulting list. We may not want to do that, though.
1391 * The ones that are not marked with either TMP_MARK or
1392 * ANCESTRY_PATH are uninteresting
1394 for (p = list; p; p = p->next) {
1395 struct commit *c = p->item;
1396 if (c->object.flags & (TMP_MARK | ANCESTRY_PATH))
1397 continue;
1398 c->object.flags |= UNINTERESTING;
1401 /* We are done with TMP_MARK and ANCESTRY_PATH */
1402 for (p = list; p; p = p->next)
1403 p->item->object.flags &= ~(TMP_MARK | ANCESTRY_PATH);
1404 for (p = bottoms; p; p = p->next)
1405 p->item->object.flags &= ~(TMP_MARK | ANCESTRY_PATH);
1406 free_commit_list(rlist);
1410 * Before walking the history, add the set of "negative" refs the
1411 * caller has asked to exclude to the bottom list.
1413 * This is used to compute "rev-list --ancestry-path A..B", as we need
1414 * to filter the result of "A..B" further to the ones that can actually
1415 * reach A.
1417 static void collect_bottom_commits(struct commit_list *list,
1418 struct commit_list **bottom)
1420 struct commit_list *elem;
1421 for (elem = list; elem; elem = elem->next)
1422 if (elem->item->object.flags & BOTTOM)
1423 commit_list_insert(elem->item, bottom);
1426 /* Assumes either left_only or right_only is set */
1427 static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1429 struct commit_list *p;
1431 for (p = list; p; p = p->next) {
1432 struct commit *commit = p->item;
1434 if (revs->right_only) {
1435 if (commit->object.flags & SYMMETRIC_LEFT)
1436 commit->object.flags |= SHOWN;
1437 } else /* revs->left_only is set */
1438 if (!(commit->object.flags & SYMMETRIC_LEFT))
1439 commit->object.flags |= SHOWN;
1443 static int limit_list(struct rev_info *revs)
1445 int slop = SLOP;
1446 timestamp_t date = TIME_MAX;
1447 struct commit_list *original_list = revs->commits;
1448 struct commit_list *newlist = NULL;
1449 struct commit_list **p = &newlist;
1450 struct commit *interesting_cache = NULL;
1452 if (revs->ancestry_path_implicit_bottoms) {
1453 collect_bottom_commits(original_list,
1454 &revs->ancestry_path_bottoms);
1455 if (!revs->ancestry_path_bottoms)
1456 die("--ancestry-path given but there are no bottom commits");
1459 while (original_list) {
1460 struct commit *commit = pop_commit(&original_list);
1461 struct object *obj = &commit->object;
1462 show_early_output_fn_t show;
1464 if (commit == interesting_cache)
1465 interesting_cache = NULL;
1467 if (revs->max_age != -1 && (commit->date < revs->max_age))
1468 obj->flags |= UNINTERESTING;
1469 if (process_parents(revs, commit, &original_list, NULL) < 0)
1470 return -1;
1471 if (obj->flags & UNINTERESTING) {
1472 mark_parents_uninteresting(revs, commit);
1473 slop = still_interesting(original_list, date, slop, &interesting_cache);
1474 if (slop)
1475 continue;
1476 break;
1478 if (revs->min_age != -1 && (commit->date > revs->min_age) &&
1479 !revs->line_level_traverse)
1480 continue;
1481 if (revs->max_age_as_filter != -1 &&
1482 (commit->date < revs->max_age_as_filter) && !revs->line_level_traverse)
1483 continue;
1484 date = commit->date;
1485 p = &commit_list_insert(commit, p)->next;
1487 show = show_early_output;
1488 if (!show)
1489 continue;
1491 show(revs, newlist);
1492 show_early_output = NULL;
1494 if (revs->cherry_pick || revs->cherry_mark)
1495 cherry_pick_list(newlist, revs);
1497 if (revs->left_only || revs->right_only)
1498 limit_left_right(newlist, revs);
1500 if (revs->ancestry_path)
1501 limit_to_ancestry(revs->ancestry_path_bottoms, newlist);
1504 * Check if any commits have become TREESAME by some of their parents
1505 * becoming UNINTERESTING.
1507 if (limiting_can_increase_treesame(revs)) {
1508 struct commit_list *list = NULL;
1509 for (list = newlist; list; list = list->next) {
1510 struct commit *c = list->item;
1511 if (c->object.flags & (UNINTERESTING | TREESAME))
1512 continue;
1513 update_treesame(revs, c);
1517 free_commit_list(original_list);
1518 revs->commits = newlist;
1519 return 0;
1523 * Add an entry to refs->cmdline with the specified information.
1524 * *name is copied.
1526 static void add_rev_cmdline(struct rev_info *revs,
1527 struct object *item,
1528 const char *name,
1529 int whence,
1530 unsigned flags)
1532 struct rev_cmdline_info *info = &revs->cmdline;
1533 unsigned int nr = info->nr;
1535 ALLOC_GROW(info->rev, nr + 1, info->alloc);
1536 info->rev[nr].item = item;
1537 info->rev[nr].name = xstrdup(name);
1538 info->rev[nr].whence = whence;
1539 info->rev[nr].flags = flags;
1540 info->nr++;
1543 static void add_rev_cmdline_list(struct rev_info *revs,
1544 struct commit_list *commit_list,
1545 int whence,
1546 unsigned flags)
1548 while (commit_list) {
1549 struct object *object = &commit_list->item->object;
1550 add_rev_cmdline(revs, object, oid_to_hex(&object->oid),
1551 whence, flags);
1552 commit_list = commit_list->next;
1556 int ref_excluded(const struct ref_exclusions *exclusions, const char *path)
1558 const char *stripped_path = strip_namespace(path);
1559 struct string_list_item *item;
1561 for_each_string_list_item(item, &exclusions->excluded_refs) {
1562 if (!wildmatch(item->string, path, 0))
1563 return 1;
1566 if (ref_is_hidden(stripped_path, path, &exclusions->hidden_refs))
1567 return 1;
1569 return 0;
1572 void init_ref_exclusions(struct ref_exclusions *exclusions)
1574 struct ref_exclusions blank = REF_EXCLUSIONS_INIT;
1575 memcpy(exclusions, &blank, sizeof(*exclusions));
1578 void clear_ref_exclusions(struct ref_exclusions *exclusions)
1580 string_list_clear(&exclusions->excluded_refs, 0);
1581 strvec_clear(&exclusions->hidden_refs);
1582 exclusions->hidden_refs_configured = 0;
1585 void add_ref_exclusion(struct ref_exclusions *exclusions, const char *exclude)
1587 string_list_append(&exclusions->excluded_refs, exclude);
1590 struct exclude_hidden_refs_cb {
1591 struct ref_exclusions *exclusions;
1592 const char *section;
1595 static int hide_refs_config(const char *var, const char *value,
1596 const struct config_context *ctx UNUSED,
1597 void *cb_data)
1599 struct exclude_hidden_refs_cb *cb = cb_data;
1600 cb->exclusions->hidden_refs_configured = 1;
1601 return parse_hide_refs_config(var, value, cb->section,
1602 &cb->exclusions->hidden_refs);
1605 void exclude_hidden_refs(struct ref_exclusions *exclusions, const char *section)
1607 struct exclude_hidden_refs_cb cb;
1609 if (strcmp(section, "fetch") && strcmp(section, "receive") &&
1610 strcmp(section, "uploadpack"))
1611 die(_("unsupported section for hidden refs: %s"), section);
1613 if (exclusions->hidden_refs_configured)
1614 die(_("--exclude-hidden= passed more than once"));
1616 cb.exclusions = exclusions;
1617 cb.section = section;
1619 git_config(hide_refs_config, &cb);
1622 struct all_refs_cb {
1623 int all_flags;
1624 int warned_bad_reflog;
1625 struct rev_info *all_revs;
1626 const char *name_for_errormsg;
1627 struct worktree *wt;
1630 static int handle_one_ref(const char *path, const struct object_id *oid,
1631 int flag UNUSED,
1632 void *cb_data)
1634 struct all_refs_cb *cb = cb_data;
1635 struct object *object;
1637 if (ref_excluded(&cb->all_revs->ref_excludes, path))
1638 return 0;
1640 object = get_reference(cb->all_revs, path, oid, cb->all_flags);
1641 add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1642 add_pending_object(cb->all_revs, object, path);
1643 return 0;
1646 static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1647 unsigned flags)
1649 cb->all_revs = revs;
1650 cb->all_flags = flags;
1651 revs->rev_input_given = 1;
1652 cb->wt = NULL;
1655 static void handle_refs(struct ref_store *refs,
1656 struct rev_info *revs, unsigned flags,
1657 int (*for_each)(struct ref_store *, each_ref_fn, void *))
1659 struct all_refs_cb cb;
1661 if (!refs) {
1662 /* this could happen with uninitialized submodules */
1663 return;
1666 init_all_refs_cb(&cb, revs, flags);
1667 for_each(refs, handle_one_ref, &cb);
1670 static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
1672 struct all_refs_cb *cb = cb_data;
1673 if (!is_null_oid(oid)) {
1674 struct object *o = parse_object(cb->all_revs->repo, oid);
1675 if (o) {
1676 o->flags |= cb->all_flags;
1677 /* ??? CMDLINEFLAGS ??? */
1678 add_pending_object(cb->all_revs, o, "");
1680 else if (!cb->warned_bad_reflog) {
1681 warning("reflog of '%s' references pruned commits",
1682 cb->name_for_errormsg);
1683 cb->warned_bad_reflog = 1;
1688 static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
1689 const char *email UNUSED,
1690 timestamp_t timestamp UNUSED,
1691 int tz UNUSED,
1692 const char *message UNUSED,
1693 void *cb_data)
1695 handle_one_reflog_commit(ooid, cb_data);
1696 handle_one_reflog_commit(noid, cb_data);
1697 return 0;
1700 static int handle_one_reflog(const char *refname_in_wt, void *cb_data)
1702 struct all_refs_cb *cb = cb_data;
1703 struct strbuf refname = STRBUF_INIT;
1705 cb->warned_bad_reflog = 0;
1706 strbuf_worktree_ref(cb->wt, &refname, refname_in_wt);
1707 cb->name_for_errormsg = refname.buf;
1708 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1709 refname.buf,
1710 handle_one_reflog_ent, cb_data);
1711 strbuf_release(&refname);
1712 return 0;
1715 static void add_other_reflogs_to_pending(struct all_refs_cb *cb)
1717 struct worktree **worktrees, **p;
1719 worktrees = get_worktrees();
1720 for (p = worktrees; *p; p++) {
1721 struct worktree *wt = *p;
1723 if (wt->is_current)
1724 continue;
1726 cb->wt = wt;
1727 refs_for_each_reflog(get_worktree_ref_store(wt),
1728 handle_one_reflog,
1729 cb);
1731 free_worktrees(worktrees);
1734 void add_reflogs_to_pending(struct rev_info *revs, unsigned flags)
1736 struct all_refs_cb cb;
1738 cb.all_revs = revs;
1739 cb.all_flags = flags;
1740 cb.wt = NULL;
1741 refs_for_each_reflog(get_main_ref_store(the_repository),
1742 handle_one_reflog, &cb);
1744 if (!revs->single_worktree)
1745 add_other_reflogs_to_pending(&cb);
1748 static void add_cache_tree(struct cache_tree *it, struct rev_info *revs,
1749 struct strbuf *path, unsigned int flags)
1751 size_t baselen = path->len;
1752 int i;
1754 if (it->entry_count >= 0) {
1755 struct tree *tree = lookup_tree(revs->repo, &it->oid);
1756 tree->object.flags |= flags;
1757 add_pending_object_with_path(revs, &tree->object, "",
1758 040000, path->buf);
1761 for (i = 0; i < it->subtree_nr; i++) {
1762 struct cache_tree_sub *sub = it->down[i];
1763 strbuf_addf(path, "%s%s", baselen ? "/" : "", sub->name);
1764 add_cache_tree(sub->cache_tree, revs, path, flags);
1765 strbuf_setlen(path, baselen);
1770 static void add_resolve_undo_to_pending(struct index_state *istate, struct rev_info *revs)
1772 struct string_list_item *item;
1773 struct string_list *resolve_undo = istate->resolve_undo;
1775 if (!resolve_undo)
1776 return;
1778 for_each_string_list_item(item, resolve_undo) {
1779 const char *path = item->string;
1780 struct resolve_undo_info *ru = item->util;
1781 int i;
1783 if (!ru)
1784 continue;
1785 for (i = 0; i < 3; i++) {
1786 struct blob *blob;
1788 if (!ru->mode[i] || !S_ISREG(ru->mode[i]))
1789 continue;
1791 blob = lookup_blob(revs->repo, &ru->oid[i]);
1792 if (!blob) {
1793 warning(_("resolve-undo records `%s` which is missing"),
1794 oid_to_hex(&ru->oid[i]));
1795 continue;
1797 add_pending_object_with_path(revs, &blob->object, "",
1798 ru->mode[i], path);
1803 static void do_add_index_objects_to_pending(struct rev_info *revs,
1804 struct index_state *istate,
1805 unsigned int flags)
1807 int i;
1809 /* TODO: audit for interaction with sparse-index. */
1810 ensure_full_index(istate);
1811 for (i = 0; i < istate->cache_nr; i++) {
1812 struct cache_entry *ce = istate->cache[i];
1813 struct blob *blob;
1815 if (S_ISGITLINK(ce->ce_mode))
1816 continue;
1818 blob = lookup_blob(revs->repo, &ce->oid);
1819 if (!blob)
1820 die("unable to add index blob to traversal");
1821 blob->object.flags |= flags;
1822 add_pending_object_with_path(revs, &blob->object, "",
1823 ce->ce_mode, ce->name);
1826 if (istate->cache_tree) {
1827 struct strbuf path = STRBUF_INIT;
1828 add_cache_tree(istate->cache_tree, revs, &path, flags);
1829 strbuf_release(&path);
1832 add_resolve_undo_to_pending(istate, revs);
1835 void add_index_objects_to_pending(struct rev_info *revs, unsigned int flags)
1837 struct worktree **worktrees, **p;
1839 repo_read_index(revs->repo);
1840 do_add_index_objects_to_pending(revs, revs->repo->index, flags);
1842 if (revs->single_worktree)
1843 return;
1845 worktrees = get_worktrees();
1846 for (p = worktrees; *p; p++) {
1847 struct worktree *wt = *p;
1848 struct index_state istate = INDEX_STATE_INIT(revs->repo);
1850 if (wt->is_current)
1851 continue; /* current index already taken care of */
1853 if (read_index_from(&istate,
1854 worktree_git_path(wt, "index"),
1855 get_worktree_git_dir(wt)) > 0)
1856 do_add_index_objects_to_pending(revs, &istate, flags);
1857 discard_index(&istate);
1859 free_worktrees(worktrees);
1862 struct add_alternate_refs_data {
1863 struct rev_info *revs;
1864 unsigned int flags;
1867 static void add_one_alternate_ref(const struct object_id *oid,
1868 void *vdata)
1870 const char *name = ".alternate";
1871 struct add_alternate_refs_data *data = vdata;
1872 struct object *obj;
1874 obj = get_reference(data->revs, name, oid, data->flags);
1875 add_rev_cmdline(data->revs, obj, name, REV_CMD_REV, data->flags);
1876 add_pending_object(data->revs, obj, name);
1879 static void add_alternate_refs_to_pending(struct rev_info *revs,
1880 unsigned int flags)
1882 struct add_alternate_refs_data data;
1883 data.revs = revs;
1884 data.flags = flags;
1885 for_each_alternate_ref(add_one_alternate_ref, &data);
1888 static int add_parents_only(struct rev_info *revs, const char *arg_, int flags,
1889 int exclude_parent)
1891 struct object_id oid;
1892 struct object *it;
1893 struct commit *commit;
1894 struct commit_list *parents;
1895 int parent_number;
1896 const char *arg = arg_;
1898 if (*arg == '^') {
1899 flags ^= UNINTERESTING | BOTTOM;
1900 arg++;
1902 if (repo_get_oid_committish(the_repository, arg, &oid))
1903 return 0;
1904 while (1) {
1905 it = get_reference(revs, arg, &oid, 0);
1906 if (!it && revs->ignore_missing)
1907 return 0;
1908 if (it->type != OBJ_TAG)
1909 break;
1910 if (!((struct tag*)it)->tagged)
1911 return 0;
1912 oidcpy(&oid, &((struct tag*)it)->tagged->oid);
1914 if (it->type != OBJ_COMMIT)
1915 return 0;
1916 commit = (struct commit *)it;
1917 if (exclude_parent &&
1918 exclude_parent > commit_list_count(commit->parents))
1919 return 0;
1920 for (parents = commit->parents, parent_number = 1;
1921 parents;
1922 parents = parents->next, parent_number++) {
1923 if (exclude_parent && parent_number != exclude_parent)
1924 continue;
1926 it = &parents->item->object;
1927 it->flags |= flags;
1928 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1929 add_pending_object(revs, it, arg);
1931 return 1;
1934 void repo_init_revisions(struct repository *r,
1935 struct rev_info *revs,
1936 const char *prefix)
1938 struct rev_info blank = REV_INFO_INIT;
1939 memcpy(revs, &blank, sizeof(*revs));
1941 revs->repo = r;
1942 revs->pruning.repo = r;
1943 revs->pruning.add_remove = file_add_remove;
1944 revs->pruning.change = file_change;
1945 revs->pruning.change_fn_data = revs;
1946 revs->prefix = prefix;
1948 grep_init(&revs->grep_filter, revs->repo);
1949 revs->grep_filter.status_only = 1;
1951 repo_diff_setup(revs->repo, &revs->diffopt);
1952 if (prefix && !revs->diffopt.prefix) {
1953 revs->diffopt.prefix = prefix;
1954 revs->diffopt.prefix_length = strlen(prefix);
1957 init_display_notes(&revs->notes_opt);
1958 list_objects_filter_init(&revs->filter);
1959 init_ref_exclusions(&revs->ref_excludes);
1960 oidset_init(&revs->missing_commits, 0);
1963 static void add_pending_commit_list(struct rev_info *revs,
1964 struct commit_list *commit_list,
1965 unsigned int flags)
1967 while (commit_list) {
1968 struct object *object = &commit_list->item->object;
1969 object->flags |= flags;
1970 add_pending_object(revs, object, oid_to_hex(&object->oid));
1971 commit_list = commit_list->next;
1975 static const char *lookup_other_head(struct object_id *oid)
1977 int i;
1978 static const char *const other_head[] = {
1979 "MERGE_HEAD", "CHERRY_PICK_HEAD", "REVERT_HEAD", "REBASE_HEAD"
1982 for (i = 0; i < ARRAY_SIZE(other_head); i++)
1983 if (!refs_read_ref_full(get_main_ref_store(the_repository), other_head[i],
1984 RESOLVE_REF_READING | RESOLVE_REF_NO_RECURSE,
1985 oid, NULL)) {
1986 if (is_null_oid(oid))
1987 die(_("%s exists but is a symbolic ref"), other_head[i]);
1988 return other_head[i];
1991 die(_("--merge requires one of the pseudorefs MERGE_HEAD, CHERRY_PICK_HEAD, REVERT_HEAD or REBASE_HEAD"));
1994 static void prepare_show_merge(struct rev_info *revs)
1996 struct commit_list *bases = NULL;
1997 struct commit *head, *other;
1998 struct object_id oid;
1999 const char *other_name;
2000 const char **prune = NULL;
2001 int i, prune_num = 1; /* counting terminating NULL */
2002 struct index_state *istate = revs->repo->index;
2004 if (repo_get_oid(the_repository, "HEAD", &oid))
2005 die("--merge without HEAD?");
2006 head = lookup_commit_or_die(&oid, "HEAD");
2007 other_name = lookup_other_head(&oid);
2008 other = lookup_commit_or_die(&oid, other_name);
2009 add_pending_object(revs, &head->object, "HEAD");
2010 add_pending_object(revs, &other->object, other_name);
2011 if (repo_get_merge_bases(the_repository, head, other, &bases) < 0)
2012 exit(128);
2013 add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
2014 add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
2015 free_commit_list(bases);
2016 head->object.flags |= SYMMETRIC_LEFT;
2018 if (!istate->cache_nr)
2019 repo_read_index(revs->repo);
2020 for (i = 0; i < istate->cache_nr; i++) {
2021 const struct cache_entry *ce = istate->cache[i];
2022 if (!ce_stage(ce))
2023 continue;
2024 if (ce_path_match(istate, ce, &revs->prune_data, NULL)) {
2025 prune_num++;
2026 REALLOC_ARRAY(prune, prune_num);
2027 prune[prune_num-2] = ce->name;
2028 prune[prune_num-1] = NULL;
2030 while ((i+1 < istate->cache_nr) &&
2031 ce_same_name(ce, istate->cache[i+1]))
2032 i++;
2034 clear_pathspec(&revs->prune_data);
2035 parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
2036 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
2037 revs->limited = 1;
2040 static int dotdot_missing(const char *arg, char *dotdot,
2041 struct rev_info *revs, int symmetric)
2043 if (revs->ignore_missing)
2044 return 0;
2045 /* de-munge so we report the full argument */
2046 *dotdot = '.';
2047 die(symmetric
2048 ? "Invalid symmetric difference expression %s"
2049 : "Invalid revision range %s", arg);
2052 static int handle_dotdot_1(const char *arg, char *dotdot,
2053 struct rev_info *revs, int flags,
2054 int cant_be_filename,
2055 struct object_context *a_oc,
2056 struct object_context *b_oc)
2058 const char *a_name, *b_name;
2059 struct object_id a_oid, b_oid;
2060 struct object *a_obj, *b_obj;
2061 unsigned int a_flags, b_flags;
2062 int symmetric = 0;
2063 unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
2064 unsigned int oc_flags = GET_OID_COMMITTISH | GET_OID_RECORD_PATH;
2066 a_name = arg;
2067 if (!*a_name)
2068 a_name = "HEAD";
2070 b_name = dotdot + 2;
2071 if (*b_name == '.') {
2072 symmetric = 1;
2073 b_name++;
2075 if (!*b_name)
2076 b_name = "HEAD";
2078 if (get_oid_with_context(revs->repo, a_name, oc_flags, &a_oid, a_oc) ||
2079 get_oid_with_context(revs->repo, b_name, oc_flags, &b_oid, b_oc))
2080 return -1;
2082 if (!cant_be_filename) {
2083 *dotdot = '.';
2084 verify_non_filename(revs->prefix, arg);
2085 *dotdot = '\0';
2088 a_obj = parse_object(revs->repo, &a_oid);
2089 b_obj = parse_object(revs->repo, &b_oid);
2090 if (!a_obj || !b_obj)
2091 return dotdot_missing(arg, dotdot, revs, symmetric);
2093 if (!symmetric) {
2094 /* just A..B */
2095 b_flags = flags;
2096 a_flags = flags_exclude;
2097 } else {
2098 /* A...B -- find merge bases between the two */
2099 struct commit *a, *b;
2100 struct commit_list *exclude = NULL;
2102 a = lookup_commit_reference(revs->repo, &a_obj->oid);
2103 b = lookup_commit_reference(revs->repo, &b_obj->oid);
2104 if (!a || !b)
2105 return dotdot_missing(arg, dotdot, revs, symmetric);
2107 if (repo_get_merge_bases(the_repository, a, b, &exclude) < 0) {
2108 free_commit_list(exclude);
2109 return -1;
2111 add_rev_cmdline_list(revs, exclude, REV_CMD_MERGE_BASE,
2112 flags_exclude);
2113 add_pending_commit_list(revs, exclude, flags_exclude);
2114 free_commit_list(exclude);
2116 b_flags = flags;
2117 a_flags = flags | SYMMETRIC_LEFT;
2120 a_obj->flags |= a_flags;
2121 b_obj->flags |= b_flags;
2122 add_rev_cmdline(revs, a_obj, a_name, REV_CMD_LEFT, a_flags);
2123 add_rev_cmdline(revs, b_obj, b_name, REV_CMD_RIGHT, b_flags);
2124 add_pending_object_with_path(revs, a_obj, a_name, a_oc->mode, a_oc->path);
2125 add_pending_object_with_path(revs, b_obj, b_name, b_oc->mode, b_oc->path);
2126 return 0;
2129 static int handle_dotdot(const char *arg,
2130 struct rev_info *revs, int flags,
2131 int cant_be_filename)
2133 struct object_context a_oc, b_oc;
2134 char *dotdot = strstr(arg, "..");
2135 int ret;
2137 if (!dotdot)
2138 return -1;
2140 memset(&a_oc, 0, sizeof(a_oc));
2141 memset(&b_oc, 0, sizeof(b_oc));
2143 *dotdot = '\0';
2144 ret = handle_dotdot_1(arg, dotdot, revs, flags, cant_be_filename,
2145 &a_oc, &b_oc);
2146 *dotdot = '.';
2148 free(a_oc.path);
2149 free(b_oc.path);
2151 return ret;
2154 static int handle_revision_arg_1(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
2156 struct object_context oc;
2157 char *mark;
2158 struct object *object;
2159 struct object_id oid;
2160 int local_flags;
2161 const char *arg = arg_;
2162 int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
2163 unsigned get_sha1_flags = GET_OID_RECORD_PATH;
2165 flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
2167 if (!cant_be_filename && !strcmp(arg, "..")) {
2169 * Just ".."? That is not a range but the
2170 * pathspec for the parent directory.
2172 return -1;
2175 if (!handle_dotdot(arg, revs, flags, revarg_opt))
2176 return 0;
2178 mark = strstr(arg, "^@");
2179 if (mark && !mark[2]) {
2180 *mark = 0;
2181 if (add_parents_only(revs, arg, flags, 0))
2182 return 0;
2183 *mark = '^';
2185 mark = strstr(arg, "^!");
2186 if (mark && !mark[2]) {
2187 *mark = 0;
2188 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), 0))
2189 *mark = '^';
2191 mark = strstr(arg, "^-");
2192 if (mark) {
2193 int exclude_parent = 1;
2195 if (mark[2]) {
2196 if (strtol_i(mark + 2, 10, &exclude_parent) ||
2197 exclude_parent < 1)
2198 return -1;
2201 *mark = 0;
2202 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), exclude_parent))
2203 *mark = '^';
2206 local_flags = 0;
2207 if (*arg == '^') {
2208 local_flags = UNINTERESTING | BOTTOM;
2209 arg++;
2212 if (revarg_opt & REVARG_COMMITTISH)
2213 get_sha1_flags |= GET_OID_COMMITTISH;
2216 * Even if revs->do_not_die_on_missing_objects is set, we
2217 * should error out if we can't even get an oid, as
2218 * `--missing=print` should be able to report missing oids.
2220 if (get_oid_with_context(revs->repo, arg, get_sha1_flags, &oid, &oc))
2221 return revs->ignore_missing ? 0 : -1;
2222 if (!cant_be_filename)
2223 verify_non_filename(revs->prefix, arg);
2224 object = get_reference(revs, arg, &oid, flags ^ local_flags);
2225 if (!object)
2226 return (revs->ignore_missing || revs->do_not_die_on_missing_objects) ? 0 : -1;
2227 add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
2228 add_pending_object_with_path(revs, object, arg, oc.mode, oc.path);
2229 free(oc.path);
2230 return 0;
2233 int handle_revision_arg(const char *arg, struct rev_info *revs, int flags, unsigned revarg_opt)
2235 int ret = handle_revision_arg_1(arg, revs, flags, revarg_opt);
2236 if (!ret)
2237 revs->rev_input_given = 1;
2238 return ret;
2241 static void read_pathspec_from_stdin(struct strbuf *sb,
2242 struct strvec *prune)
2244 while (strbuf_getline(sb, stdin) != EOF)
2245 strvec_push(prune, sb->buf);
2248 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
2250 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
2253 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
2255 append_header_grep_pattern(&revs->grep_filter, field, pattern);
2258 static void add_message_grep(struct rev_info *revs, const char *pattern)
2260 add_grep(revs, pattern, GREP_PATTERN_BODY);
2263 static int parse_count(const char *arg)
2265 int count;
2267 if (strtol_i(arg, 10, &count) < 0)
2268 die("'%s': not an integer", arg);
2269 return count;
2272 static timestamp_t parse_age(const char *arg)
2274 timestamp_t num;
2275 char *p;
2277 errno = 0;
2278 num = parse_timestamp(arg, &p, 10);
2279 if (errno || *p || p == arg)
2280 die("'%s': not a number of seconds since epoch", arg);
2281 return num;
2284 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
2285 int *unkc, const char **unkv,
2286 const struct setup_revision_opt* opt)
2288 const char *arg = argv[0];
2289 const char *optarg = NULL;
2290 int argcount;
2291 const unsigned hexsz = the_hash_algo->hexsz;
2293 /* pseudo revision arguments */
2294 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
2295 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
2296 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
2297 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
2298 !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
2299 !strcmp(arg, "--indexed-objects") ||
2300 !strcmp(arg, "--alternate-refs") ||
2301 starts_with(arg, "--exclude=") || starts_with(arg, "--exclude-hidden=") ||
2302 starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
2303 starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
2305 unkv[(*unkc)++] = arg;
2306 return 1;
2309 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
2310 revs->max_count = parse_count(optarg);
2311 revs->no_walk = 0;
2312 return argcount;
2313 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
2314 revs->skip_count = parse_count(optarg);
2315 return argcount;
2316 } else if ((*arg == '-') && isdigit(arg[1])) {
2317 /* accept -<digit>, like traditional "head" */
2318 revs->max_count = parse_count(arg + 1);
2319 revs->no_walk = 0;
2320 } else if (!strcmp(arg, "-n")) {
2321 if (argc <= 1)
2322 return error("-n requires an argument");
2323 revs->max_count = parse_count(argv[1]);
2324 revs->no_walk = 0;
2325 return 2;
2326 } else if (skip_prefix(arg, "-n", &optarg)) {
2327 revs->max_count = parse_count(optarg);
2328 revs->no_walk = 0;
2329 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
2330 revs->max_age = parse_age(optarg);
2331 return argcount;
2332 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
2333 revs->max_age = approxidate(optarg);
2334 return argcount;
2335 } else if ((argcount = parse_long_opt("since-as-filter", argv, &optarg))) {
2336 revs->max_age_as_filter = approxidate(optarg);
2337 return argcount;
2338 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
2339 revs->max_age = approxidate(optarg);
2340 return argcount;
2341 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
2342 revs->min_age = parse_age(optarg);
2343 return argcount;
2344 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
2345 revs->min_age = approxidate(optarg);
2346 return argcount;
2347 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
2348 revs->min_age = approxidate(optarg);
2349 return argcount;
2350 } else if (!strcmp(arg, "--first-parent")) {
2351 revs->first_parent_only = 1;
2352 } else if (!strcmp(arg, "--exclude-first-parent-only")) {
2353 revs->exclude_first_parent_only = 1;
2354 } else if (!strcmp(arg, "--ancestry-path")) {
2355 revs->ancestry_path = 1;
2356 revs->simplify_history = 0;
2357 revs->limited = 1;
2358 revs->ancestry_path_implicit_bottoms = 1;
2359 } else if (skip_prefix(arg, "--ancestry-path=", &optarg)) {
2360 struct commit *c;
2361 struct object_id oid;
2362 const char *msg = _("could not get commit for --ancestry-path argument %s");
2364 revs->ancestry_path = 1;
2365 revs->simplify_history = 0;
2366 revs->limited = 1;
2368 if (repo_get_oid_committish(revs->repo, optarg, &oid))
2369 return error(msg, optarg);
2370 get_reference(revs, optarg, &oid, ANCESTRY_PATH);
2371 c = lookup_commit_reference(revs->repo, &oid);
2372 if (!c)
2373 return error(msg, optarg);
2374 commit_list_insert(c, &revs->ancestry_path_bottoms);
2375 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
2376 init_reflog_walk(&revs->reflog_info);
2377 } else if (!strcmp(arg, "--default")) {
2378 if (argc <= 1)
2379 return error("bad --default argument");
2380 revs->def = argv[1];
2381 return 2;
2382 } else if (!strcmp(arg, "--merge")) {
2383 revs->show_merge = 1;
2384 } else if (!strcmp(arg, "--topo-order")) {
2385 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
2386 revs->topo_order = 1;
2387 } else if (!strcmp(arg, "--simplify-merges")) {
2388 revs->simplify_merges = 1;
2389 revs->topo_order = 1;
2390 revs->rewrite_parents = 1;
2391 revs->simplify_history = 0;
2392 revs->limited = 1;
2393 } else if (!strcmp(arg, "--simplify-by-decoration")) {
2394 revs->simplify_merges = 1;
2395 revs->topo_order = 1;
2396 revs->rewrite_parents = 1;
2397 revs->simplify_history = 0;
2398 revs->simplify_by_decoration = 1;
2399 revs->limited = 1;
2400 revs->prune = 1;
2401 } else if (!strcmp(arg, "--date-order")) {
2402 revs->sort_order = REV_SORT_BY_COMMIT_DATE;
2403 revs->topo_order = 1;
2404 } else if (!strcmp(arg, "--author-date-order")) {
2405 revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
2406 revs->topo_order = 1;
2407 } else if (!strcmp(arg, "--early-output")) {
2408 revs->early_output = 100;
2409 revs->topo_order = 1;
2410 } else if (skip_prefix(arg, "--early-output=", &optarg)) {
2411 if (strtoul_ui(optarg, 10, &revs->early_output) < 0)
2412 die("'%s': not a non-negative integer", optarg);
2413 revs->topo_order = 1;
2414 } else if (!strcmp(arg, "--parents")) {
2415 revs->rewrite_parents = 1;
2416 revs->print_parents = 1;
2417 } else if (!strcmp(arg, "--dense")) {
2418 revs->dense = 1;
2419 } else if (!strcmp(arg, "--sparse")) {
2420 revs->dense = 0;
2421 } else if (!strcmp(arg, "--in-commit-order")) {
2422 revs->tree_blobs_in_commit_order = 1;
2423 } else if (!strcmp(arg, "--remove-empty")) {
2424 revs->remove_empty_trees = 1;
2425 } else if (!strcmp(arg, "--merges")) {
2426 revs->min_parents = 2;
2427 } else if (!strcmp(arg, "--no-merges")) {
2428 revs->max_parents = 1;
2429 } else if (skip_prefix(arg, "--min-parents=", &optarg)) {
2430 revs->min_parents = parse_count(optarg);
2431 } else if (!strcmp(arg, "--no-min-parents")) {
2432 revs->min_parents = 0;
2433 } else if (skip_prefix(arg, "--max-parents=", &optarg)) {
2434 revs->max_parents = parse_count(optarg);
2435 } else if (!strcmp(arg, "--no-max-parents")) {
2436 revs->max_parents = -1;
2437 } else if (!strcmp(arg, "--boundary")) {
2438 revs->boundary = 1;
2439 } else if (!strcmp(arg, "--left-right")) {
2440 revs->left_right = 1;
2441 } else if (!strcmp(arg, "--left-only")) {
2442 if (revs->right_only)
2443 die(_("options '%s' and '%s' cannot be used together"),
2444 "--left-only", "--right-only/--cherry");
2445 revs->left_only = 1;
2446 } else if (!strcmp(arg, "--right-only")) {
2447 if (revs->left_only)
2448 die(_("options '%s' and '%s' cannot be used together"), "--right-only", "--left-only");
2449 revs->right_only = 1;
2450 } else if (!strcmp(arg, "--cherry")) {
2451 if (revs->left_only)
2452 die(_("options '%s' and '%s' cannot be used together"), "--cherry", "--left-only");
2453 revs->cherry_mark = 1;
2454 revs->right_only = 1;
2455 revs->max_parents = 1;
2456 revs->limited = 1;
2457 } else if (!strcmp(arg, "--count")) {
2458 revs->count = 1;
2459 } else if (!strcmp(arg, "--cherry-mark")) {
2460 if (revs->cherry_pick)
2461 die(_("options '%s' and '%s' cannot be used together"), "--cherry-mark", "--cherry-pick");
2462 revs->cherry_mark = 1;
2463 revs->limited = 1; /* needs limit_list() */
2464 } else if (!strcmp(arg, "--cherry-pick")) {
2465 if (revs->cherry_mark)
2466 die(_("options '%s' and '%s' cannot be used together"), "--cherry-pick", "--cherry-mark");
2467 revs->cherry_pick = 1;
2468 revs->limited = 1;
2469 } else if (!strcmp(arg, "--objects")) {
2470 revs->tag_objects = 1;
2471 revs->tree_objects = 1;
2472 revs->blob_objects = 1;
2473 } else if (!strcmp(arg, "--objects-edge")) {
2474 revs->tag_objects = 1;
2475 revs->tree_objects = 1;
2476 revs->blob_objects = 1;
2477 revs->edge_hint = 1;
2478 } else if (!strcmp(arg, "--objects-edge-aggressive")) {
2479 revs->tag_objects = 1;
2480 revs->tree_objects = 1;
2481 revs->blob_objects = 1;
2482 revs->edge_hint = 1;
2483 revs->edge_hint_aggressive = 1;
2484 } else if (!strcmp(arg, "--verify-objects")) {
2485 revs->tag_objects = 1;
2486 revs->tree_objects = 1;
2487 revs->blob_objects = 1;
2488 revs->verify_objects = 1;
2489 disable_commit_graph(revs->repo);
2490 } else if (!strcmp(arg, "--unpacked")) {
2491 revs->unpacked = 1;
2492 } else if (starts_with(arg, "--unpacked=")) {
2493 die(_("--unpacked=<packfile> no longer supported"));
2494 } else if (!strcmp(arg, "--no-kept-objects")) {
2495 revs->no_kept_objects = 1;
2496 revs->keep_pack_cache_flags |= IN_CORE_KEEP_PACKS;
2497 revs->keep_pack_cache_flags |= ON_DISK_KEEP_PACKS;
2498 } else if (skip_prefix(arg, "--no-kept-objects=", &optarg)) {
2499 revs->no_kept_objects = 1;
2500 if (!strcmp(optarg, "in-core"))
2501 revs->keep_pack_cache_flags |= IN_CORE_KEEP_PACKS;
2502 if (!strcmp(optarg, "on-disk"))
2503 revs->keep_pack_cache_flags |= ON_DISK_KEEP_PACKS;
2504 } else if (!strcmp(arg, "-r")) {
2505 revs->diff = 1;
2506 revs->diffopt.flags.recursive = 1;
2507 } else if (!strcmp(arg, "-t")) {
2508 revs->diff = 1;
2509 revs->diffopt.flags.recursive = 1;
2510 revs->diffopt.flags.tree_in_recursive = 1;
2511 } else if ((argcount = diff_merges_parse_opts(revs, argv))) {
2512 return argcount;
2513 } else if (!strcmp(arg, "-v")) {
2514 revs->verbose_header = 1;
2515 } else if (!strcmp(arg, "--pretty")) {
2516 revs->verbose_header = 1;
2517 revs->pretty_given = 1;
2518 get_commit_format(NULL, revs);
2519 } else if (skip_prefix(arg, "--pretty=", &optarg) ||
2520 skip_prefix(arg, "--format=", &optarg)) {
2522 * Detached form ("--pretty X" as opposed to "--pretty=X")
2523 * not allowed, since the argument is optional.
2525 revs->verbose_header = 1;
2526 revs->pretty_given = 1;
2527 get_commit_format(optarg, revs);
2528 } else if (!strcmp(arg, "--expand-tabs")) {
2529 revs->expand_tabs_in_log = 8;
2530 } else if (!strcmp(arg, "--no-expand-tabs")) {
2531 revs->expand_tabs_in_log = 0;
2532 } else if (skip_prefix(arg, "--expand-tabs=", &arg)) {
2533 int val;
2534 if (strtol_i(arg, 10, &val) < 0 || val < 0)
2535 die("'%s': not a non-negative integer", arg);
2536 revs->expand_tabs_in_log = val;
2537 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
2538 enable_default_display_notes(&revs->notes_opt, &revs->show_notes);
2539 revs->show_notes_given = 1;
2540 } else if (!strcmp(arg, "--show-signature")) {
2541 revs->show_signature = 1;
2542 } else if (!strcmp(arg, "--no-show-signature")) {
2543 revs->show_signature = 0;
2544 } else if (!strcmp(arg, "--show-linear-break")) {
2545 revs->break_bar = " ..........";
2546 revs->track_linear = 1;
2547 revs->track_first_time = 1;
2548 } else if (skip_prefix(arg, "--show-linear-break=", &optarg)) {
2549 revs->break_bar = xstrdup(optarg);
2550 revs->track_linear = 1;
2551 revs->track_first_time = 1;
2552 } else if (!strcmp(arg, "--show-notes-by-default")) {
2553 revs->show_notes_by_default = 1;
2554 } else if (skip_prefix(arg, "--show-notes=", &optarg) ||
2555 skip_prefix(arg, "--notes=", &optarg)) {
2556 if (starts_with(arg, "--show-notes=") &&
2557 revs->notes_opt.use_default_notes < 0)
2558 revs->notes_opt.use_default_notes = 1;
2559 enable_ref_display_notes(&revs->notes_opt, &revs->show_notes, optarg);
2560 revs->show_notes_given = 1;
2561 } else if (!strcmp(arg, "--no-notes")) {
2562 disable_display_notes(&revs->notes_opt, &revs->show_notes);
2563 revs->show_notes_given = 1;
2564 } else if (!strcmp(arg, "--standard-notes")) {
2565 revs->show_notes_given = 1;
2566 revs->notes_opt.use_default_notes = 1;
2567 } else if (!strcmp(arg, "--no-standard-notes")) {
2568 revs->notes_opt.use_default_notes = 0;
2569 } else if (!strcmp(arg, "--oneline")) {
2570 revs->verbose_header = 1;
2571 get_commit_format("oneline", revs);
2572 revs->pretty_given = 1;
2573 revs->abbrev_commit = 1;
2574 } else if (!strcmp(arg, "--graph")) {
2575 graph_clear(revs->graph);
2576 revs->graph = graph_init(revs);
2577 } else if (!strcmp(arg, "--no-graph")) {
2578 graph_clear(revs->graph);
2579 revs->graph = NULL;
2580 } else if (!strcmp(arg, "--encode-email-headers")) {
2581 revs->encode_email_headers = 1;
2582 } else if (!strcmp(arg, "--no-encode-email-headers")) {
2583 revs->encode_email_headers = 0;
2584 } else if (!strcmp(arg, "--root")) {
2585 revs->show_root_diff = 1;
2586 } else if (!strcmp(arg, "--no-commit-id")) {
2587 revs->no_commit_id = 1;
2588 } else if (!strcmp(arg, "--always")) {
2589 revs->always_show_header = 1;
2590 } else if (!strcmp(arg, "--no-abbrev")) {
2591 revs->abbrev = 0;
2592 } else if (!strcmp(arg, "--abbrev")) {
2593 revs->abbrev = DEFAULT_ABBREV;
2594 } else if (skip_prefix(arg, "--abbrev=", &optarg)) {
2595 revs->abbrev = strtoul(optarg, NULL, 10);
2596 if (revs->abbrev < MINIMUM_ABBREV)
2597 revs->abbrev = MINIMUM_ABBREV;
2598 else if (revs->abbrev > hexsz)
2599 revs->abbrev = hexsz;
2600 } else if (!strcmp(arg, "--abbrev-commit")) {
2601 revs->abbrev_commit = 1;
2602 revs->abbrev_commit_given = 1;
2603 } else if (!strcmp(arg, "--no-abbrev-commit")) {
2604 revs->abbrev_commit = 0;
2605 } else if (!strcmp(arg, "--full-diff")) {
2606 revs->diff = 1;
2607 revs->full_diff = 1;
2608 } else if (!strcmp(arg, "--show-pulls")) {
2609 revs->show_pulls = 1;
2610 } else if (!strcmp(arg, "--full-history")) {
2611 revs->simplify_history = 0;
2612 } else if (!strcmp(arg, "--relative-date")) {
2613 revs->date_mode.type = DATE_RELATIVE;
2614 revs->date_mode_explicit = 1;
2615 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
2616 parse_date_format(optarg, &revs->date_mode);
2617 revs->date_mode_explicit = 1;
2618 return argcount;
2619 } else if (!strcmp(arg, "--log-size")) {
2620 revs->show_log_size = 1;
2623 * Grepping the commit log
2625 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
2626 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
2627 return argcount;
2628 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
2629 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
2630 return argcount;
2631 } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
2632 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
2633 return argcount;
2634 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
2635 add_message_grep(revs, optarg);
2636 return argcount;
2637 } else if (!strcmp(arg, "--basic-regexp")) {
2638 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_BRE;
2639 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
2640 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_ERE;
2641 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
2642 revs->grep_filter.ignore_case = 1;
2643 revs->diffopt.pickaxe_opts |= DIFF_PICKAXE_IGNORE_CASE;
2644 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
2645 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_FIXED;
2646 } else if (!strcmp(arg, "--perl-regexp") || !strcmp(arg, "-P")) {
2647 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_PCRE;
2648 } else if (!strcmp(arg, "--all-match")) {
2649 revs->grep_filter.all_match = 1;
2650 } else if (!strcmp(arg, "--invert-grep")) {
2651 revs->grep_filter.no_body_match = 1;
2652 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
2653 if (strcmp(optarg, "none"))
2654 git_log_output_encoding = xstrdup(optarg);
2655 else
2656 git_log_output_encoding = "";
2657 return argcount;
2658 } else if (!strcmp(arg, "--reverse")) {
2659 revs->reverse ^= 1;
2660 } else if (!strcmp(arg, "--children")) {
2661 revs->children.name = "children";
2662 revs->limited = 1;
2663 } else if (!strcmp(arg, "--ignore-missing")) {
2664 revs->ignore_missing = 1;
2665 } else if (opt && opt->allow_exclude_promisor_objects &&
2666 !strcmp(arg, "--exclude-promisor-objects")) {
2667 if (fetch_if_missing)
2668 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
2669 revs->exclude_promisor_objects = 1;
2670 } else {
2671 int opts = diff_opt_parse(&revs->diffopt, argv, argc, revs->prefix);
2672 if (!opts)
2673 unkv[(*unkc)++] = arg;
2674 return opts;
2677 return 1;
2680 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
2681 const struct option *options,
2682 const char * const usagestr[])
2684 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
2685 &ctx->cpidx, ctx->out, NULL);
2686 if (n <= 0) {
2687 error("unknown option `%s'", ctx->argv[0]);
2688 usage_with_options(usagestr, options);
2690 ctx->argv += n;
2691 ctx->argc -= n;
2694 void revision_opts_finish(struct rev_info *revs)
2696 if (revs->graph && revs->track_linear)
2697 die(_("options '%s' and '%s' cannot be used together"), "--show-linear-break", "--graph");
2699 if (revs->graph) {
2700 revs->topo_order = 1;
2701 revs->rewrite_parents = 1;
2705 static int for_each_bisect_ref(struct ref_store *refs, each_ref_fn fn,
2706 void *cb_data, const char *term)
2708 struct strbuf bisect_refs = STRBUF_INIT;
2709 int status;
2710 strbuf_addf(&bisect_refs, "refs/bisect/%s", term);
2711 status = refs_for_each_fullref_in(refs, bisect_refs.buf, NULL, fn, cb_data);
2712 strbuf_release(&bisect_refs);
2713 return status;
2716 static int for_each_bad_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2718 return for_each_bisect_ref(refs, fn, cb_data, term_bad);
2721 static int for_each_good_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
2723 return for_each_bisect_ref(refs, fn, cb_data, term_good);
2726 static int handle_revision_pseudo_opt(struct rev_info *revs,
2727 const char **argv, int *flags)
2729 const char *arg = argv[0];
2730 const char *optarg;
2731 struct ref_store *refs;
2732 int argcount;
2734 if (revs->repo != the_repository) {
2736 * We need some something like get_submodule_worktrees()
2737 * before we can go through all worktrees of a submodule,
2738 * .e.g with adding all HEADs from --all, which is not
2739 * supported right now, so stick to single worktree.
2741 if (!revs->single_worktree)
2742 BUG("--single-worktree cannot be used together with submodule");
2744 refs = get_main_ref_store(revs->repo);
2747 * NOTE!
2749 * Commands like "git shortlog" will not accept the options below
2750 * unless parse_revision_opt queues them (as opposed to erroring
2751 * out).
2753 * When implementing your new pseudo-option, remember to
2754 * register it in the list at the top of handle_revision_opt.
2756 if (!strcmp(arg, "--all")) {
2757 handle_refs(refs, revs, *flags, refs_for_each_ref);
2758 handle_refs(refs, revs, *flags, refs_head_ref);
2759 if (!revs->single_worktree) {
2760 struct all_refs_cb cb;
2762 init_all_refs_cb(&cb, revs, *flags);
2763 other_head_refs(handle_one_ref, &cb);
2765 clear_ref_exclusions(&revs->ref_excludes);
2766 } else if (!strcmp(arg, "--branches")) {
2767 if (revs->ref_excludes.hidden_refs_configured)
2768 return error(_("options '%s' and '%s' cannot be used together"),
2769 "--exclude-hidden", "--branches");
2770 handle_refs(refs, revs, *flags, refs_for_each_branch_ref);
2771 clear_ref_exclusions(&revs->ref_excludes);
2772 } else if (!strcmp(arg, "--bisect")) {
2773 read_bisect_terms(&term_bad, &term_good);
2774 handle_refs(refs, revs, *flags, for_each_bad_bisect_ref);
2775 handle_refs(refs, revs, *flags ^ (UNINTERESTING | BOTTOM),
2776 for_each_good_bisect_ref);
2777 revs->bisect = 1;
2778 } else if (!strcmp(arg, "--tags")) {
2779 if (revs->ref_excludes.hidden_refs_configured)
2780 return error(_("options '%s' and '%s' cannot be used together"),
2781 "--exclude-hidden", "--tags");
2782 handle_refs(refs, revs, *flags, refs_for_each_tag_ref);
2783 clear_ref_exclusions(&revs->ref_excludes);
2784 } else if (!strcmp(arg, "--remotes")) {
2785 if (revs->ref_excludes.hidden_refs_configured)
2786 return error(_("options '%s' and '%s' cannot be used together"),
2787 "--exclude-hidden", "--remotes");
2788 handle_refs(refs, revs, *flags, refs_for_each_remote_ref);
2789 clear_ref_exclusions(&revs->ref_excludes);
2790 } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
2791 struct all_refs_cb cb;
2792 init_all_refs_cb(&cb, revs, *flags);
2793 refs_for_each_glob_ref(get_main_ref_store(the_repository),
2794 handle_one_ref, optarg, &cb);
2795 clear_ref_exclusions(&revs->ref_excludes);
2796 return argcount;
2797 } else if ((argcount = parse_long_opt("exclude", argv, &optarg))) {
2798 add_ref_exclusion(&revs->ref_excludes, optarg);
2799 return argcount;
2800 } else if ((argcount = parse_long_opt("exclude-hidden", argv, &optarg))) {
2801 exclude_hidden_refs(&revs->ref_excludes, optarg);
2802 return argcount;
2803 } else if (skip_prefix(arg, "--branches=", &optarg)) {
2804 struct all_refs_cb cb;
2805 if (revs->ref_excludes.hidden_refs_configured)
2806 return error(_("options '%s' and '%s' cannot be used together"),
2807 "--exclude-hidden", "--branches");
2808 init_all_refs_cb(&cb, revs, *flags);
2809 refs_for_each_glob_ref_in(get_main_ref_store(the_repository),
2810 handle_one_ref, optarg,
2811 "refs/heads/", &cb);
2812 clear_ref_exclusions(&revs->ref_excludes);
2813 } else if (skip_prefix(arg, "--tags=", &optarg)) {
2814 struct all_refs_cb cb;
2815 if (revs->ref_excludes.hidden_refs_configured)
2816 return error(_("options '%s' and '%s' cannot be used together"),
2817 "--exclude-hidden", "--tags");
2818 init_all_refs_cb(&cb, revs, *flags);
2819 refs_for_each_glob_ref_in(get_main_ref_store(the_repository),
2820 handle_one_ref, optarg,
2821 "refs/tags/", &cb);
2822 clear_ref_exclusions(&revs->ref_excludes);
2823 } else if (skip_prefix(arg, "--remotes=", &optarg)) {
2824 struct all_refs_cb cb;
2825 if (revs->ref_excludes.hidden_refs_configured)
2826 return error(_("options '%s' and '%s' cannot be used together"),
2827 "--exclude-hidden", "--remotes");
2828 init_all_refs_cb(&cb, revs, *flags);
2829 refs_for_each_glob_ref_in(get_main_ref_store(the_repository),
2830 handle_one_ref, optarg,
2831 "refs/remotes/", &cb);
2832 clear_ref_exclusions(&revs->ref_excludes);
2833 } else if (!strcmp(arg, "--reflog")) {
2834 add_reflogs_to_pending(revs, *flags);
2835 } else if (!strcmp(arg, "--indexed-objects")) {
2836 add_index_objects_to_pending(revs, *flags);
2837 } else if (!strcmp(arg, "--alternate-refs")) {
2838 add_alternate_refs_to_pending(revs, *flags);
2839 } else if (!strcmp(arg, "--not")) {
2840 *flags ^= UNINTERESTING | BOTTOM;
2841 } else if (!strcmp(arg, "--no-walk")) {
2842 revs->no_walk = 1;
2843 } else if (skip_prefix(arg, "--no-walk=", &optarg)) {
2845 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2846 * not allowed, since the argument is optional.
2848 revs->no_walk = 1;
2849 if (!strcmp(optarg, "sorted"))
2850 revs->unsorted_input = 0;
2851 else if (!strcmp(optarg, "unsorted"))
2852 revs->unsorted_input = 1;
2853 else
2854 return error("invalid argument to --no-walk");
2855 } else if (!strcmp(arg, "--do-walk")) {
2856 revs->no_walk = 0;
2857 } else if (!strcmp(arg, "--single-worktree")) {
2858 revs->single_worktree = 1;
2859 } else if (skip_prefix(arg, ("--filter="), &arg)) {
2860 parse_list_objects_filter(&revs->filter, arg);
2861 } else if (!strcmp(arg, ("--no-filter"))) {
2862 list_objects_filter_set_no_filter(&revs->filter);
2863 } else {
2864 return 0;
2867 return 1;
2870 static void read_revisions_from_stdin(struct rev_info *revs,
2871 struct strvec *prune)
2873 struct strbuf sb;
2874 int seen_dashdash = 0;
2875 int seen_end_of_options = 0;
2876 int save_warning;
2877 int flags = 0;
2879 save_warning = warn_on_object_refname_ambiguity;
2880 warn_on_object_refname_ambiguity = 0;
2882 strbuf_init(&sb, 1000);
2883 while (strbuf_getline(&sb, stdin) != EOF) {
2884 if (!sb.len)
2885 break;
2887 if (!strcmp(sb.buf, "--")) {
2888 seen_dashdash = 1;
2889 break;
2892 if (!seen_end_of_options && sb.buf[0] == '-') {
2893 const char *argv[] = { sb.buf, NULL };
2895 if (!strcmp(sb.buf, "--end-of-options")) {
2896 seen_end_of_options = 1;
2897 continue;
2900 if (handle_revision_pseudo_opt(revs, argv, &flags) > 0)
2901 continue;
2903 die(_("invalid option '%s' in --stdin mode"), sb.buf);
2906 if (handle_revision_arg(sb.buf, revs, flags,
2907 REVARG_CANNOT_BE_FILENAME))
2908 die("bad revision '%s'", sb.buf);
2910 if (seen_dashdash)
2911 read_pathspec_from_stdin(&sb, prune);
2913 strbuf_release(&sb);
2914 warn_on_object_refname_ambiguity = save_warning;
2917 static void NORETURN diagnose_missing_default(const char *def)
2919 int flags;
2920 const char *refname;
2922 refname = refs_resolve_ref_unsafe(get_main_ref_store(the_repository),
2923 def, 0, NULL, &flags);
2924 if (!refname || !(flags & REF_ISSYMREF) || (flags & REF_ISBROKEN))
2925 die(_("your current branch appears to be broken"));
2927 skip_prefix(refname, "refs/heads/", &refname);
2928 die(_("your current branch '%s' does not have any commits yet"),
2929 refname);
2933 * Parse revision information, filling in the "rev_info" structure,
2934 * and removing the used arguments from the argument list.
2936 * Returns the number of arguments left that weren't recognized
2937 * (which are also moved to the head of the argument list)
2939 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
2941 int i, flags, left, seen_dashdash, revarg_opt;
2942 struct strvec prune_data = STRVEC_INIT;
2943 int seen_end_of_options = 0;
2945 /* First, search for "--" */
2946 if (opt && opt->assume_dashdash) {
2947 seen_dashdash = 1;
2948 } else {
2949 seen_dashdash = 0;
2950 for (i = 1; i < argc; i++) {
2951 const char *arg = argv[i];
2952 if (strcmp(arg, "--"))
2953 continue;
2954 if (opt && opt->free_removed_argv_elements)
2955 free((char *)argv[i]);
2956 argv[i] = NULL;
2957 argc = i;
2958 if (argv[i + 1])
2959 strvec_pushv(&prune_data, argv + i + 1);
2960 seen_dashdash = 1;
2961 break;
2965 /* Second, deal with arguments and options */
2966 flags = 0;
2967 revarg_opt = opt ? opt->revarg_opt : 0;
2968 if (seen_dashdash)
2969 revarg_opt |= REVARG_CANNOT_BE_FILENAME;
2970 for (left = i = 1; i < argc; i++) {
2971 const char *arg = argv[i];
2972 if (!seen_end_of_options && *arg == '-') {
2973 int opts;
2975 opts = handle_revision_pseudo_opt(
2976 revs, argv + i,
2977 &flags);
2978 if (opts > 0) {
2979 i += opts - 1;
2980 continue;
2983 if (!strcmp(arg, "--stdin")) {
2984 if (revs->disable_stdin) {
2985 argv[left++] = arg;
2986 continue;
2988 if (revs->read_from_stdin++)
2989 die("--stdin given twice?");
2990 read_revisions_from_stdin(revs, &prune_data);
2991 continue;
2994 if (!strcmp(arg, "--end-of-options")) {
2995 seen_end_of_options = 1;
2996 continue;
2999 opts = handle_revision_opt(revs, argc - i, argv + i,
3000 &left, argv, opt);
3001 if (opts > 0) {
3002 i += opts - 1;
3003 continue;
3005 if (opts < 0)
3006 exit(128);
3007 continue;
3011 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
3012 int j;
3013 if (seen_dashdash || *arg == '^')
3014 die("bad revision '%s'", arg);
3016 /* If we didn't have a "--":
3017 * (1) all filenames must exist;
3018 * (2) all rev-args must not be interpretable
3019 * as a valid filename.
3020 * but the latter we have checked in the main loop.
3022 for (j = i; j < argc; j++)
3023 verify_filename(revs->prefix, argv[j], j == i);
3025 strvec_pushv(&prune_data, argv + i);
3026 break;
3029 revision_opts_finish(revs);
3031 if (prune_data.nr) {
3033 * If we need to introduce the magic "a lone ':' means no
3034 * pathspec whatsoever", here is the place to do so.
3036 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
3037 * prune_data.nr = 0;
3038 * prune_data.alloc = 0;
3039 * free(prune_data.path);
3040 * prune_data.path = NULL;
3041 * } else {
3042 * terminate prune_data.alloc with NULL and
3043 * call init_pathspec() to set revs->prune_data here.
3046 parse_pathspec(&revs->prune_data, 0, 0,
3047 revs->prefix, prune_data.v);
3049 strvec_clear(&prune_data);
3051 if (!revs->def)
3052 revs->def = opt ? opt->def : NULL;
3053 if (opt && opt->tweak)
3054 opt->tweak(revs);
3055 if (revs->show_merge)
3056 prepare_show_merge(revs);
3057 if (revs->def && !revs->pending.nr && !revs->rev_input_given) {
3058 struct object_id oid;
3059 struct object *object;
3060 struct object_context oc;
3061 if (get_oid_with_context(revs->repo, revs->def, 0, &oid, &oc))
3062 diagnose_missing_default(revs->def);
3063 object = get_reference(revs, revs->def, &oid, 0);
3064 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
3067 /* Did the user ask for any diff output? Run the diff! */
3068 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
3069 revs->diff = 1;
3071 /* Pickaxe, diff-filter and rename following need diffs */
3072 if ((revs->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
3073 revs->diffopt.filter ||
3074 revs->diffopt.flags.follow_renames)
3075 revs->diff = 1;
3077 if (revs->diffopt.objfind)
3078 revs->simplify_history = 0;
3080 if (revs->line_level_traverse) {
3081 if (want_ancestry(revs))
3082 revs->limited = 1;
3083 revs->topo_order = 1;
3086 if (revs->topo_order && !generation_numbers_enabled(the_repository))
3087 revs->limited = 1;
3089 if (revs->prune_data.nr) {
3090 copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
3091 /* Can't prune commits with rename following: the paths change.. */
3092 if (!revs->diffopt.flags.follow_renames)
3093 revs->prune = 1;
3094 if (!revs->full_diff)
3095 copy_pathspec(&revs->diffopt.pathspec,
3096 &revs->prune_data);
3099 diff_merges_setup_revs(revs);
3101 revs->diffopt.abbrev = revs->abbrev;
3103 diff_setup_done(&revs->diffopt);
3105 if (!is_encoding_utf8(get_log_output_encoding()))
3106 revs->grep_filter.ignore_locale = 1;
3107 compile_grep_patterns(&revs->grep_filter);
3109 if (revs->reflog_info && revs->limited)
3110 die("cannot combine --walk-reflogs with history-limiting options");
3111 if (revs->rewrite_parents && revs->children.name)
3112 die(_("options '%s' and '%s' cannot be used together"), "--parents", "--children");
3113 if (revs->filter.choice && !revs->blob_objects)
3114 die(_("object filtering requires --objects"));
3117 * Limitations on the graph functionality
3119 die_for_incompatible_opt3(!!revs->graph, "--graph",
3120 !!revs->reverse, "--reverse",
3121 !!revs->reflog_info, "--walk-reflogs");
3123 if (revs->no_walk && revs->graph)
3124 die(_("options '%s' and '%s' cannot be used together"), "--no-walk", "--graph");
3125 if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
3126 die(_("the option '%s' requires '%s'"), "--grep-reflog", "--walk-reflogs");
3128 if (revs->line_level_traverse &&
3129 (revs->diffopt.output_format & ~(DIFF_FORMAT_PATCH | DIFF_FORMAT_NO_OUTPUT)))
3130 die(_("-L does not yet support diff formats besides -p and -s"));
3132 if (revs->expand_tabs_in_log < 0)
3133 revs->expand_tabs_in_log = revs->expand_tabs_in_log_default;
3135 if (!revs->show_notes_given && revs->show_notes_by_default) {
3136 enable_default_display_notes(&revs->notes_opt, &revs->show_notes);
3137 revs->show_notes_given = 1;
3140 return left;
3143 static void release_revisions_cmdline(struct rev_cmdline_info *cmdline)
3145 unsigned int i;
3147 for (i = 0; i < cmdline->nr; i++)
3148 free((char *)cmdline->rev[i].name);
3149 free(cmdline->rev);
3152 static void release_revisions_mailmap(struct string_list *mailmap)
3154 if (!mailmap)
3155 return;
3156 clear_mailmap(mailmap);
3157 free(mailmap);
3160 static void release_revisions_topo_walk_info(struct topo_walk_info *info);
3162 static void free_void_commit_list(void *list)
3164 free_commit_list(list);
3167 void release_revisions(struct rev_info *revs)
3169 free_commit_list(revs->commits);
3170 free_commit_list(revs->ancestry_path_bottoms);
3171 object_array_clear(&revs->pending);
3172 object_array_clear(&revs->boundary_commits);
3173 release_revisions_cmdline(&revs->cmdline);
3174 list_objects_filter_release(&revs->filter);
3175 clear_pathspec(&revs->prune_data);
3176 date_mode_release(&revs->date_mode);
3177 release_revisions_mailmap(revs->mailmap);
3178 free_grep_patterns(&revs->grep_filter);
3179 graph_clear(revs->graph);
3180 /* TODO (need to handle "no_free"): diff_free(&revs->diffopt) */
3181 diff_free(&revs->pruning);
3182 reflog_walk_info_release(revs->reflog_info);
3183 release_revisions_topo_walk_info(revs->topo_walk_info);
3184 clear_decoration(&revs->children, free_void_commit_list);
3185 clear_decoration(&revs->merge_simplification, free);
3186 clear_decoration(&revs->treesame, free);
3187 line_log_free(revs);
3188 oidset_clear(&revs->missing_commits);
3191 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
3193 struct commit_list *l = xcalloc(1, sizeof(*l));
3195 l->item = child;
3196 l->next = add_decoration(&revs->children, &parent->object, l);
3199 static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
3201 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
3202 struct commit_list **pp, *p;
3203 int surviving_parents;
3205 /* Examine existing parents while marking ones we have seen... */
3206 pp = &commit->parents;
3207 surviving_parents = 0;
3208 while ((p = *pp) != NULL) {
3209 struct commit *parent = p->item;
3210 if (parent->object.flags & TMP_MARK) {
3211 *pp = p->next;
3212 if (ts)
3213 compact_treesame(revs, commit, surviving_parents);
3214 continue;
3216 parent->object.flags |= TMP_MARK;
3217 surviving_parents++;
3218 pp = &p->next;
3220 /* clear the temporary mark */
3221 for (p = commit->parents; p; p = p->next) {
3222 p->item->object.flags &= ~TMP_MARK;
3224 /* no update_treesame() - removing duplicates can't affect TREESAME */
3225 return surviving_parents;
3228 struct merge_simplify_state {
3229 struct commit *simplified;
3232 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
3234 struct merge_simplify_state *st;
3236 st = lookup_decoration(&revs->merge_simplification, &commit->object);
3237 if (!st) {
3238 CALLOC_ARRAY(st, 1);
3239 add_decoration(&revs->merge_simplification, &commit->object, st);
3241 return st;
3244 static int mark_redundant_parents(struct commit *commit)
3246 struct commit_list *h = reduce_heads(commit->parents);
3247 int i = 0, marked = 0;
3248 struct commit_list *po, *pn;
3250 /* Want these for sanity-checking only */
3251 int orig_cnt = commit_list_count(commit->parents);
3252 int cnt = commit_list_count(h);
3255 * Not ready to remove items yet, just mark them for now, based
3256 * on the output of reduce_heads(). reduce_heads outputs the reduced
3257 * set in its original order, so this isn't too hard.
3259 po = commit->parents;
3260 pn = h;
3261 while (po) {
3262 if (pn && po->item == pn->item) {
3263 pn = pn->next;
3264 i++;
3265 } else {
3266 po->item->object.flags |= TMP_MARK;
3267 marked++;
3269 po=po->next;
3272 if (i != cnt || cnt+marked != orig_cnt)
3273 die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
3275 free_commit_list(h);
3277 return marked;
3280 static int mark_treesame_root_parents(struct commit *commit)
3282 struct commit_list *p;
3283 int marked = 0;
3285 for (p = commit->parents; p; p = p->next) {
3286 struct commit *parent = p->item;
3287 if (!parent->parents && (parent->object.flags & TREESAME)) {
3288 parent->object.flags |= TMP_MARK;
3289 marked++;
3293 return marked;
3297 * Awkward naming - this means one parent we are TREESAME to.
3298 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
3299 * empty tree). Better name suggestions?
3301 static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
3303 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
3304 struct commit *unmarked = NULL, *marked = NULL;
3305 struct commit_list *p;
3306 unsigned n;
3308 for (p = commit->parents, n = 0; p; p = p->next, n++) {
3309 if (ts->treesame[n]) {
3310 if (p->item->object.flags & TMP_MARK) {
3311 if (!marked)
3312 marked = p->item;
3313 } else {
3314 if (!unmarked) {
3315 unmarked = p->item;
3316 break;
3323 * If we are TREESAME to a marked-for-deletion parent, but not to any
3324 * unmarked parents, unmark the first TREESAME parent. This is the
3325 * parent that the default simplify_history==1 scan would have followed,
3326 * and it doesn't make sense to omit that path when asking for a
3327 * simplified full history. Retaining it improves the chances of
3328 * understanding odd missed merges that took an old version of a file.
3330 * Example:
3332 * I--------*X A modified the file, but mainline merge X used
3333 * \ / "-s ours", so took the version from I. X is
3334 * `-*A--' TREESAME to I and !TREESAME to A.
3336 * Default log from X would produce "I". Without this check,
3337 * --full-history --simplify-merges would produce "I-A-X", showing
3338 * the merge commit X and that it changed A, but not making clear that
3339 * it had just taken the I version. With this check, the topology above
3340 * is retained.
3342 * Note that it is possible that the simplification chooses a different
3343 * TREESAME parent from the default, in which case this test doesn't
3344 * activate, and we _do_ drop the default parent. Example:
3346 * I------X A modified the file, but it was reverted in B,
3347 * \ / meaning mainline merge X is TREESAME to both
3348 * *A-*B parents.
3350 * Default log would produce "I" by following the first parent;
3351 * --full-history --simplify-merges will produce "I-A-B". But this is a
3352 * reasonable result - it presents a logical full history leading from
3353 * I to X, and X is not an important merge.
3355 if (!unmarked && marked) {
3356 marked->object.flags &= ~TMP_MARK;
3357 return 1;
3360 return 0;
3363 static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
3365 struct commit_list **pp, *p;
3366 int nth_parent, removed = 0;
3368 pp = &commit->parents;
3369 nth_parent = 0;
3370 while ((p = *pp) != NULL) {
3371 struct commit *parent = p->item;
3372 if (parent->object.flags & TMP_MARK) {
3373 parent->object.flags &= ~TMP_MARK;
3374 *pp = p->next;
3375 free(p);
3376 removed++;
3377 compact_treesame(revs, commit, nth_parent);
3378 continue;
3380 pp = &p->next;
3381 nth_parent++;
3384 /* Removing parents can only increase TREESAMEness */
3385 if (removed && !(commit->object.flags & TREESAME))
3386 update_treesame(revs, commit);
3388 return nth_parent;
3391 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
3393 struct commit_list *p;
3394 struct commit *parent;
3395 struct merge_simplify_state *st, *pst;
3396 int cnt;
3398 st = locate_simplify_state(revs, commit);
3401 * Have we handled this one?
3403 if (st->simplified)
3404 return tail;
3407 * An UNINTERESTING commit simplifies to itself, so does a
3408 * root commit. We do not rewrite parents of such commit
3409 * anyway.
3411 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
3412 st->simplified = commit;
3413 return tail;
3417 * Do we know what commit all of our parents that matter
3418 * should be rewritten to? Otherwise we are not ready to
3419 * rewrite this one yet.
3421 for (cnt = 0, p = commit->parents; p; p = p->next) {
3422 pst = locate_simplify_state(revs, p->item);
3423 if (!pst->simplified) {
3424 tail = &commit_list_insert(p->item, tail)->next;
3425 cnt++;
3427 if (revs->first_parent_only)
3428 break;
3430 if (cnt) {
3431 tail = &commit_list_insert(commit, tail)->next;
3432 return tail;
3436 * Rewrite our list of parents. Note that this cannot
3437 * affect our TREESAME flags in any way - a commit is
3438 * always TREESAME to its simplification.
3440 for (p = commit->parents; p; p = p->next) {
3441 pst = locate_simplify_state(revs, p->item);
3442 p->item = pst->simplified;
3443 if (revs->first_parent_only)
3444 break;
3447 if (revs->first_parent_only)
3448 cnt = 1;
3449 else
3450 cnt = remove_duplicate_parents(revs, commit);
3453 * It is possible that we are a merge and one side branch
3454 * does not have any commit that touches the given paths;
3455 * in such a case, the immediate parent from that branch
3456 * will be rewritten to be the merge base.
3458 * o----X X: the commit we are looking at;
3459 * / / o: a commit that touches the paths;
3460 * ---o----'
3462 * Further, a merge of an independent branch that doesn't
3463 * touch the path will reduce to a treesame root parent:
3465 * ----o----X X: the commit we are looking at;
3466 * / o: a commit that touches the paths;
3467 * r r: a root commit not touching the paths
3469 * Detect and simplify both cases.
3471 if (1 < cnt) {
3472 int marked = mark_redundant_parents(commit);
3473 marked += mark_treesame_root_parents(commit);
3474 if (marked)
3475 marked -= leave_one_treesame_to_parent(revs, commit);
3476 if (marked)
3477 cnt = remove_marked_parents(revs, commit);
3481 * A commit simplifies to itself if it is a root, if it is
3482 * UNINTERESTING, if it touches the given paths, or if it is a
3483 * merge and its parents don't simplify to one relevant commit
3484 * (the first two cases are already handled at the beginning of
3485 * this function).
3487 * Otherwise, it simplifies to what its sole relevant parent
3488 * simplifies to.
3490 if (!cnt ||
3491 (commit->object.flags & UNINTERESTING) ||
3492 !(commit->object.flags & TREESAME) ||
3493 (parent = one_relevant_parent(revs, commit->parents)) == NULL ||
3494 (revs->show_pulls && (commit->object.flags & PULL_MERGE)))
3495 st->simplified = commit;
3496 else {
3497 pst = locate_simplify_state(revs, parent);
3498 st->simplified = pst->simplified;
3500 return tail;
3503 static void simplify_merges(struct rev_info *revs)
3505 struct commit_list *list, *next;
3506 struct commit_list *yet_to_do, **tail;
3507 struct commit *commit;
3509 if (!revs->prune)
3510 return;
3512 /* feed the list reversed */
3513 yet_to_do = NULL;
3514 for (list = revs->commits; list; list = next) {
3515 commit = list->item;
3516 next = list->next;
3518 * Do not free(list) here yet; the original list
3519 * is used later in this function.
3521 commit_list_insert(commit, &yet_to_do);
3523 while (yet_to_do) {
3524 list = yet_to_do;
3525 yet_to_do = NULL;
3526 tail = &yet_to_do;
3527 while (list) {
3528 commit = pop_commit(&list);
3529 tail = simplify_one(revs, commit, tail);
3533 /* clean up the result, removing the simplified ones */
3534 list = revs->commits;
3535 revs->commits = NULL;
3536 tail = &revs->commits;
3537 while (list) {
3538 struct merge_simplify_state *st;
3540 commit = pop_commit(&list);
3541 st = locate_simplify_state(revs, commit);
3542 if (st->simplified == commit)
3543 tail = &commit_list_insert(commit, tail)->next;
3547 static void set_children(struct rev_info *revs)
3549 struct commit_list *l;
3550 for (l = revs->commits; l; l = l->next) {
3551 struct commit *commit = l->item;
3552 struct commit_list *p;
3554 for (p = commit->parents; p; p = p->next)
3555 add_child(revs, p->item, commit);
3559 void reset_revision_walk(void)
3561 clear_object_flags(SEEN | ADDED | SHOWN | TOPO_WALK_EXPLORED | TOPO_WALK_INDEGREE);
3564 static int mark_uninteresting(const struct object_id *oid,
3565 struct packed_git *pack UNUSED,
3566 uint32_t pos UNUSED,
3567 void *cb)
3569 struct rev_info *revs = cb;
3570 struct object *o = lookup_unknown_object(revs->repo, oid);
3571 o->flags |= UNINTERESTING | SEEN;
3572 return 0;
3575 define_commit_slab(indegree_slab, int);
3576 define_commit_slab(author_date_slab, timestamp_t);
3578 struct topo_walk_info {
3579 timestamp_t min_generation;
3580 struct prio_queue explore_queue;
3581 struct prio_queue indegree_queue;
3582 struct prio_queue topo_queue;
3583 struct indegree_slab indegree;
3584 struct author_date_slab author_date;
3587 static int topo_walk_atexit_registered;
3588 static unsigned int count_explore_walked;
3589 static unsigned int count_indegree_walked;
3590 static unsigned int count_topo_walked;
3592 static void trace2_topo_walk_statistics_atexit(void)
3594 struct json_writer jw = JSON_WRITER_INIT;
3596 jw_object_begin(&jw, 0);
3597 jw_object_intmax(&jw, "count_explore_walked", count_explore_walked);
3598 jw_object_intmax(&jw, "count_indegree_walked", count_indegree_walked);
3599 jw_object_intmax(&jw, "count_topo_walked", count_topo_walked);
3600 jw_end(&jw);
3602 trace2_data_json("topo_walk", the_repository, "statistics", &jw);
3604 jw_release(&jw);
3607 static inline void test_flag_and_insert(struct prio_queue *q, struct commit *c, int flag)
3609 if (c->object.flags & flag)
3610 return;
3612 c->object.flags |= flag;
3613 prio_queue_put(q, c);
3616 static void explore_walk_step(struct rev_info *revs)
3618 struct topo_walk_info *info = revs->topo_walk_info;
3619 struct commit_list *p;
3620 struct commit *c = prio_queue_get(&info->explore_queue);
3622 if (!c)
3623 return;
3625 if (repo_parse_commit_gently(revs->repo, c, 1) < 0)
3626 return;
3628 count_explore_walked++;
3630 if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3631 record_author_date(&info->author_date, c);
3633 if (revs->max_age != -1 && (c->date < revs->max_age))
3634 c->object.flags |= UNINTERESTING;
3636 if (process_parents(revs, c, NULL, NULL) < 0)
3637 return;
3639 if (c->object.flags & UNINTERESTING)
3640 mark_parents_uninteresting(revs, c);
3642 for (p = c->parents; p; p = p->next)
3643 test_flag_and_insert(&info->explore_queue, p->item, TOPO_WALK_EXPLORED);
3646 static void explore_to_depth(struct rev_info *revs,
3647 timestamp_t gen_cutoff)
3649 struct topo_walk_info *info = revs->topo_walk_info;
3650 struct commit *c;
3651 while ((c = prio_queue_peek(&info->explore_queue)) &&
3652 commit_graph_generation(c) >= gen_cutoff)
3653 explore_walk_step(revs);
3656 static void indegree_walk_step(struct rev_info *revs)
3658 struct commit_list *p;
3659 struct topo_walk_info *info = revs->topo_walk_info;
3660 struct commit *c = prio_queue_get(&info->indegree_queue);
3662 if (!c)
3663 return;
3665 if (repo_parse_commit_gently(revs->repo, c, 1) < 0)
3666 return;
3668 count_indegree_walked++;
3670 explore_to_depth(revs, commit_graph_generation(c));
3672 for (p = c->parents; p; p = p->next) {
3673 struct commit *parent = p->item;
3674 int *pi = indegree_slab_at(&info->indegree, parent);
3676 if (repo_parse_commit_gently(revs->repo, parent, 1) < 0)
3677 return;
3679 if (*pi)
3680 (*pi)++;
3681 else
3682 *pi = 2;
3684 test_flag_and_insert(&info->indegree_queue, parent, TOPO_WALK_INDEGREE);
3686 if (revs->first_parent_only)
3687 return;
3691 static void compute_indegrees_to_depth(struct rev_info *revs,
3692 timestamp_t gen_cutoff)
3694 struct topo_walk_info *info = revs->topo_walk_info;
3695 struct commit *c;
3696 while ((c = prio_queue_peek(&info->indegree_queue)) &&
3697 commit_graph_generation(c) >= gen_cutoff)
3698 indegree_walk_step(revs);
3701 static void release_revisions_topo_walk_info(struct topo_walk_info *info)
3703 if (!info)
3704 return;
3705 clear_prio_queue(&info->explore_queue);
3706 clear_prio_queue(&info->indegree_queue);
3707 clear_prio_queue(&info->topo_queue);
3708 clear_indegree_slab(&info->indegree);
3709 clear_author_date_slab(&info->author_date);
3710 free(info);
3713 static void reset_topo_walk(struct rev_info *revs)
3715 release_revisions_topo_walk_info(revs->topo_walk_info);
3716 revs->topo_walk_info = NULL;
3719 static void init_topo_walk(struct rev_info *revs)
3721 struct topo_walk_info *info;
3722 struct commit_list *list;
3723 if (revs->topo_walk_info)
3724 reset_topo_walk(revs);
3726 revs->topo_walk_info = xmalloc(sizeof(struct topo_walk_info));
3727 info = revs->topo_walk_info;
3728 memset(info, 0, sizeof(struct topo_walk_info));
3730 init_indegree_slab(&info->indegree);
3731 memset(&info->explore_queue, 0, sizeof(info->explore_queue));
3732 memset(&info->indegree_queue, 0, sizeof(info->indegree_queue));
3733 memset(&info->topo_queue, 0, sizeof(info->topo_queue));
3735 switch (revs->sort_order) {
3736 default: /* REV_SORT_IN_GRAPH_ORDER */
3737 info->topo_queue.compare = NULL;
3738 break;
3739 case REV_SORT_BY_COMMIT_DATE:
3740 info->topo_queue.compare = compare_commits_by_commit_date;
3741 break;
3742 case REV_SORT_BY_AUTHOR_DATE:
3743 init_author_date_slab(&info->author_date);
3744 info->topo_queue.compare = compare_commits_by_author_date;
3745 info->topo_queue.cb_data = &info->author_date;
3746 break;
3749 info->explore_queue.compare = compare_commits_by_gen_then_commit_date;
3750 info->indegree_queue.compare = compare_commits_by_gen_then_commit_date;
3752 info->min_generation = GENERATION_NUMBER_INFINITY;
3753 for (list = revs->commits; list; list = list->next) {
3754 struct commit *c = list->item;
3755 timestamp_t generation;
3757 if (repo_parse_commit_gently(revs->repo, c, 1))
3758 continue;
3760 test_flag_and_insert(&info->explore_queue, c, TOPO_WALK_EXPLORED);
3761 test_flag_and_insert(&info->indegree_queue, c, TOPO_WALK_INDEGREE);
3763 generation = commit_graph_generation(c);
3764 if (generation < info->min_generation)
3765 info->min_generation = generation;
3767 *(indegree_slab_at(&info->indegree, c)) = 1;
3769 if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3770 record_author_date(&info->author_date, c);
3772 compute_indegrees_to_depth(revs, info->min_generation);
3774 for (list = revs->commits; list; list = list->next) {
3775 struct commit *c = list->item;
3777 if (*(indegree_slab_at(&info->indegree, c)) == 1)
3778 prio_queue_put(&info->topo_queue, c);
3782 * This is unfortunate; the initial tips need to be shown
3783 * in the order given from the revision traversal machinery.
3785 if (revs->sort_order == REV_SORT_IN_GRAPH_ORDER)
3786 prio_queue_reverse(&info->topo_queue);
3788 if (trace2_is_enabled() && !topo_walk_atexit_registered) {
3789 atexit(trace2_topo_walk_statistics_atexit);
3790 topo_walk_atexit_registered = 1;
3794 static struct commit *next_topo_commit(struct rev_info *revs)
3796 struct commit *c;
3797 struct topo_walk_info *info = revs->topo_walk_info;
3799 /* pop next off of topo_queue */
3800 c = prio_queue_get(&info->topo_queue);
3802 if (c)
3803 *(indegree_slab_at(&info->indegree, c)) = 0;
3805 return c;
3808 static void expand_topo_walk(struct rev_info *revs, struct commit *commit)
3810 struct commit_list *p;
3811 struct topo_walk_info *info = revs->topo_walk_info;
3812 if (process_parents(revs, commit, NULL, NULL) < 0) {
3813 if (!revs->ignore_missing_links)
3814 die("Failed to traverse parents of commit %s",
3815 oid_to_hex(&commit->object.oid));
3818 count_topo_walked++;
3820 for (p = commit->parents; p; p = p->next) {
3821 struct commit *parent = p->item;
3822 int *pi;
3823 timestamp_t generation;
3825 if (parent->object.flags & UNINTERESTING)
3826 continue;
3828 if (repo_parse_commit_gently(revs->repo, parent, 1) < 0)
3829 continue;
3831 generation = commit_graph_generation(parent);
3832 if (generation < info->min_generation) {
3833 info->min_generation = generation;
3834 compute_indegrees_to_depth(revs, info->min_generation);
3837 pi = indegree_slab_at(&info->indegree, parent);
3839 (*pi)--;
3840 if (*pi == 1)
3841 prio_queue_put(&info->topo_queue, parent);
3843 if (revs->first_parent_only)
3844 return;
3848 int prepare_revision_walk(struct rev_info *revs)
3850 int i;
3851 struct object_array old_pending;
3852 struct commit_list **next = &revs->commits;
3854 memcpy(&old_pending, &revs->pending, sizeof(old_pending));
3855 revs->pending.nr = 0;
3856 revs->pending.alloc = 0;
3857 revs->pending.objects = NULL;
3858 for (i = 0; i < old_pending.nr; i++) {
3859 struct object_array_entry *e = old_pending.objects + i;
3860 struct commit *commit = handle_commit(revs, e);
3861 if (commit) {
3862 if (!(commit->object.flags & SEEN)) {
3863 commit->object.flags |= SEEN;
3864 next = commit_list_append(commit, next);
3868 object_array_clear(&old_pending);
3870 /* Signal whether we need per-parent treesame decoration */
3871 if (revs->simplify_merges ||
3872 (revs->limited && limiting_can_increase_treesame(revs)))
3873 revs->treesame.name = "treesame";
3875 if (revs->exclude_promisor_objects) {
3876 for_each_packed_object(mark_uninteresting, revs,
3877 FOR_EACH_OBJECT_PROMISOR_ONLY);
3880 if (!revs->reflog_info)
3881 prepare_to_use_bloom_filter(revs);
3882 if (!revs->unsorted_input)
3883 commit_list_sort_by_date(&revs->commits);
3884 if (revs->no_walk)
3885 return 0;
3886 if (revs->limited) {
3887 if (limit_list(revs) < 0)
3888 return -1;
3889 if (revs->topo_order)
3890 sort_in_topological_order(&revs->commits, revs->sort_order);
3891 } else if (revs->topo_order)
3892 init_topo_walk(revs);
3893 if (revs->line_level_traverse && want_ancestry(revs))
3895 * At the moment we can only do line-level log with parent
3896 * rewriting by performing this expensive pre-filtering step.
3897 * If parent rewriting is not requested, then we rather
3898 * perform the line-level log filtering during the regular
3899 * history traversal.
3901 line_log_filter(revs);
3902 if (revs->simplify_merges)
3903 simplify_merges(revs);
3904 if (revs->children.name)
3905 set_children(revs);
3907 return 0;
3910 static enum rewrite_result rewrite_one_1(struct rev_info *revs,
3911 struct commit **pp,
3912 struct prio_queue *queue)
3914 for (;;) {
3915 struct commit *p = *pp;
3916 if (!revs->limited)
3917 if (process_parents(revs, p, NULL, queue) < 0)
3918 return rewrite_one_error;
3919 if (p->object.flags & UNINTERESTING)
3920 return rewrite_one_ok;
3921 if (!(p->object.flags & TREESAME))
3922 return rewrite_one_ok;
3923 if (!p->parents)
3924 return rewrite_one_noparents;
3925 if (!(p = one_relevant_parent(revs, p->parents)))
3926 return rewrite_one_ok;
3927 *pp = p;
3931 static void merge_queue_into_list(struct prio_queue *q, struct commit_list **list)
3933 while (q->nr) {
3934 struct commit *item = prio_queue_peek(q);
3935 struct commit_list *p = *list;
3937 if (p && p->item->date >= item->date)
3938 list = &p->next;
3939 else {
3940 p = commit_list_insert(item, list);
3941 list = &p->next; /* skip newly added item */
3942 prio_queue_get(q); /* pop item */
3947 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
3949 struct prio_queue queue = { compare_commits_by_commit_date };
3950 enum rewrite_result ret = rewrite_one_1(revs, pp, &queue);
3951 merge_queue_into_list(&queue, &revs->commits);
3952 clear_prio_queue(&queue);
3953 return ret;
3956 int rewrite_parents(struct rev_info *revs, struct commit *commit,
3957 rewrite_parent_fn_t rewrite_parent)
3959 struct commit_list **pp = &commit->parents;
3960 while (*pp) {
3961 struct commit_list *parent = *pp;
3962 switch (rewrite_parent(revs, &parent->item)) {
3963 case rewrite_one_ok:
3964 break;
3965 case rewrite_one_noparents:
3966 *pp = parent->next;
3967 continue;
3968 case rewrite_one_error:
3969 return -1;
3971 pp = &parent->next;
3973 remove_duplicate_parents(revs, commit);
3974 return 0;
3977 static int commit_match(struct commit *commit, struct rev_info *opt)
3979 int retval;
3980 const char *encoding;
3981 const char *message;
3982 struct strbuf buf = STRBUF_INIT;
3984 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
3985 return 1;
3987 /* Prepend "fake" headers as needed */
3988 if (opt->grep_filter.use_reflog_filter) {
3989 strbuf_addstr(&buf, "reflog ");
3990 get_reflog_message(&buf, opt->reflog_info);
3991 strbuf_addch(&buf, '\n');
3995 * We grep in the user's output encoding, under the assumption that it
3996 * is the encoding they are most likely to write their grep pattern
3997 * for. In addition, it means we will match the "notes" encoding below,
3998 * so we will not end up with a buffer that has two different encodings
3999 * in it.
4001 encoding = get_log_output_encoding();
4002 message = repo_logmsg_reencode(the_repository, commit, NULL, encoding);
4004 /* Copy the commit to temporary if we are using "fake" headers */
4005 if (buf.len)
4006 strbuf_addstr(&buf, message);
4008 if (opt->grep_filter.header_list && opt->mailmap) {
4009 const char *commit_headers[] = { "author ", "committer ", NULL };
4011 if (!buf.len)
4012 strbuf_addstr(&buf, message);
4014 apply_mailmap_to_header(&buf, commit_headers, opt->mailmap);
4017 /* Append "fake" message parts as needed */
4018 if (opt->show_notes) {
4019 if (!buf.len)
4020 strbuf_addstr(&buf, message);
4021 format_display_notes(&commit->object.oid, &buf, encoding, 1);
4025 * Find either in the original commit message, or in the temporary.
4026 * Note that we cast away the constness of "message" here. It is
4027 * const because it may come from the cached commit buffer. That's OK,
4028 * because we know that it is modifiable heap memory, and that while
4029 * grep_buffer may modify it for speed, it will restore any
4030 * changes before returning.
4032 if (buf.len)
4033 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
4034 else
4035 retval = grep_buffer(&opt->grep_filter,
4036 (char *)message, strlen(message));
4037 strbuf_release(&buf);
4038 repo_unuse_commit_buffer(the_repository, commit, message);
4039 return retval;
4042 static inline int want_ancestry(const struct rev_info *revs)
4044 return (revs->rewrite_parents || revs->children.name);
4048 * Return a timestamp to be used for --since/--until comparisons for this
4049 * commit, based on the revision options.
4051 static timestamp_t comparison_date(const struct rev_info *revs,
4052 struct commit *commit)
4054 return revs->reflog_info ?
4055 get_reflog_timestamp(revs->reflog_info) :
4056 commit->date;
4059 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
4061 if (commit->object.flags & SHOWN)
4062 return commit_ignore;
4063 if (revs->unpacked && has_object_pack(&commit->object.oid))
4064 return commit_ignore;
4065 if (revs->no_kept_objects) {
4066 if (has_object_kept_pack(&commit->object.oid,
4067 revs->keep_pack_cache_flags))
4068 return commit_ignore;
4070 if (commit->object.flags & UNINTERESTING)
4071 return commit_ignore;
4072 if (revs->line_level_traverse && !want_ancestry(revs)) {
4074 * In case of line-level log with parent rewriting
4075 * prepare_revision_walk() already took care of all line-level
4076 * log filtering, and there is nothing left to do here.
4078 * If parent rewriting was not requested, then this is the
4079 * place to perform the line-level log filtering. Notably,
4080 * this check, though expensive, must come before the other,
4081 * cheaper filtering conditions, because the tracked line
4082 * ranges must be adjusted even when the commit will end up
4083 * being ignored based on other conditions.
4085 if (!line_log_process_ranges_arbitrary_commit(revs, commit))
4086 return commit_ignore;
4088 if (revs->min_age != -1 &&
4089 comparison_date(revs, commit) > revs->min_age)
4090 return commit_ignore;
4091 if (revs->max_age_as_filter != -1 &&
4092 comparison_date(revs, commit) < revs->max_age_as_filter)
4093 return commit_ignore;
4094 if (revs->min_parents || (revs->max_parents >= 0)) {
4095 int n = commit_list_count(commit->parents);
4096 if ((n < revs->min_parents) ||
4097 ((revs->max_parents >= 0) && (n > revs->max_parents)))
4098 return commit_ignore;
4100 if (!commit_match(commit, revs))
4101 return commit_ignore;
4102 if (revs->prune && revs->dense) {
4103 /* Commit without changes? */
4104 if (commit->object.flags & TREESAME) {
4105 int n;
4106 struct commit_list *p;
4107 /* drop merges unless we want parenthood */
4108 if (!want_ancestry(revs))
4109 return commit_ignore;
4111 if (revs->show_pulls && (commit->object.flags & PULL_MERGE))
4112 return commit_show;
4115 * If we want ancestry, then need to keep any merges
4116 * between relevant commits to tie together topology.
4117 * For consistency with TREESAME and simplification
4118 * use "relevant" here rather than just INTERESTING,
4119 * to treat bottom commit(s) as part of the topology.
4121 for (n = 0, p = commit->parents; p; p = p->next)
4122 if (relevant_commit(p->item))
4123 if (++n >= 2)
4124 return commit_show;
4125 return commit_ignore;
4128 return commit_show;
4131 define_commit_slab(saved_parents, struct commit_list *);
4133 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
4136 * You may only call save_parents() once per commit (this is checked
4137 * for non-root commits).
4139 static void save_parents(struct rev_info *revs, struct commit *commit)
4141 struct commit_list **pp;
4143 if (!revs->saved_parents_slab) {
4144 revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
4145 init_saved_parents(revs->saved_parents_slab);
4148 pp = saved_parents_at(revs->saved_parents_slab, commit);
4151 * When walking with reflogs, we may visit the same commit
4152 * several times: once for each appearance in the reflog.
4154 * In this case, save_parents() will be called multiple times.
4155 * We want to keep only the first set of parents. We need to
4156 * store a sentinel value for an empty (i.e., NULL) parent
4157 * list to distinguish it from a not-yet-saved list, however.
4159 if (*pp)
4160 return;
4161 if (commit->parents)
4162 *pp = copy_commit_list(commit->parents);
4163 else
4164 *pp = EMPTY_PARENT_LIST;
4167 static void free_saved_parents(struct rev_info *revs)
4169 if (revs->saved_parents_slab)
4170 clear_saved_parents(revs->saved_parents_slab);
4173 struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
4175 struct commit_list *parents;
4177 if (!revs->saved_parents_slab)
4178 return commit->parents;
4180 parents = *saved_parents_at(revs->saved_parents_slab, commit);
4181 if (parents == EMPTY_PARENT_LIST)
4182 return NULL;
4183 return parents;
4186 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
4188 enum commit_action action = get_commit_action(revs, commit);
4190 if (action == commit_show &&
4191 revs->prune && revs->dense && want_ancestry(revs)) {
4193 * --full-diff on simplified parents is no good: it
4194 * will show spurious changes from the commits that
4195 * were elided. So we save the parents on the side
4196 * when --full-diff is in effect.
4198 if (revs->full_diff)
4199 save_parents(revs, commit);
4200 if (rewrite_parents(revs, commit, rewrite_one) < 0)
4201 return commit_error;
4203 return action;
4206 static void track_linear(struct rev_info *revs, struct commit *commit)
4208 if (revs->track_first_time) {
4209 revs->linear = 1;
4210 revs->track_first_time = 0;
4211 } else {
4212 struct commit_list *p;
4213 for (p = revs->previous_parents; p; p = p->next)
4214 if (p->item == NULL || /* first commit */
4215 oideq(&p->item->object.oid, &commit->object.oid))
4216 break;
4217 revs->linear = p != NULL;
4219 if (revs->reverse) {
4220 if (revs->linear)
4221 commit->object.flags |= TRACK_LINEAR;
4223 free_commit_list(revs->previous_parents);
4224 revs->previous_parents = copy_commit_list(commit->parents);
4227 static struct commit *get_revision_1(struct rev_info *revs)
4229 while (1) {
4230 struct commit *commit;
4232 if (revs->reflog_info)
4233 commit = next_reflog_entry(revs->reflog_info);
4234 else if (revs->topo_walk_info)
4235 commit = next_topo_commit(revs);
4236 else
4237 commit = pop_commit(&revs->commits);
4239 if (!commit)
4240 return NULL;
4242 if (revs->reflog_info)
4243 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
4246 * If we haven't done the list limiting, we need to look at
4247 * the parents here. We also need to do the date-based limiting
4248 * that we'd otherwise have done in limit_list().
4250 if (!revs->limited) {
4251 if (revs->max_age != -1 &&
4252 comparison_date(revs, commit) < revs->max_age)
4253 continue;
4255 if (revs->reflog_info)
4256 try_to_simplify_commit(revs, commit);
4257 else if (revs->topo_walk_info)
4258 expand_topo_walk(revs, commit);
4259 else if (process_parents(revs, commit, &revs->commits, NULL) < 0) {
4260 if (!revs->ignore_missing_links)
4261 die("Failed to traverse parents of commit %s",
4262 oid_to_hex(&commit->object.oid));
4266 switch (simplify_commit(revs, commit)) {
4267 case commit_ignore:
4268 continue;
4269 case commit_error:
4270 die("Failed to simplify parents of commit %s",
4271 oid_to_hex(&commit->object.oid));
4272 default:
4273 if (revs->track_linear)
4274 track_linear(revs, commit);
4275 return commit;
4281 * Return true for entries that have not yet been shown. (This is an
4282 * object_array_each_func_t.)
4284 static int entry_unshown(struct object_array_entry *entry, void *cb_data UNUSED)
4286 return !(entry->item->flags & SHOWN);
4290 * If array is on the verge of a realloc, garbage-collect any entries
4291 * that have already been shown to try to free up some space.
4293 static void gc_boundary(struct object_array *array)
4295 if (array->nr == array->alloc)
4296 object_array_filter(array, entry_unshown, NULL);
4299 static void create_boundary_commit_list(struct rev_info *revs)
4301 unsigned i;
4302 struct commit *c;
4303 struct object_array *array = &revs->boundary_commits;
4304 struct object_array_entry *objects = array->objects;
4307 * If revs->commits is non-NULL at this point, an error occurred in
4308 * get_revision_1(). Ignore the error and continue printing the
4309 * boundary commits anyway. (This is what the code has always
4310 * done.)
4312 free_commit_list(revs->commits);
4313 revs->commits = NULL;
4316 * Put all of the actual boundary commits from revs->boundary_commits
4317 * into revs->commits
4319 for (i = 0; i < array->nr; i++) {
4320 c = (struct commit *)(objects[i].item);
4321 if (!c)
4322 continue;
4323 if (!(c->object.flags & CHILD_SHOWN))
4324 continue;
4325 if (c->object.flags & (SHOWN | BOUNDARY))
4326 continue;
4327 c->object.flags |= BOUNDARY;
4328 commit_list_insert(c, &revs->commits);
4332 * If revs->topo_order is set, sort the boundary commits
4333 * in topological order
4335 sort_in_topological_order(&revs->commits, revs->sort_order);
4338 static struct commit *get_revision_internal(struct rev_info *revs)
4340 struct commit *c = NULL;
4341 struct commit_list *l;
4343 if (revs->boundary == 2) {
4345 * All of the normal commits have already been returned,
4346 * and we are now returning boundary commits.
4347 * create_boundary_commit_list() has populated
4348 * revs->commits with the remaining commits to return.
4350 c = pop_commit(&revs->commits);
4351 if (c)
4352 c->object.flags |= SHOWN;
4353 return c;
4357 * If our max_count counter has reached zero, then we are done. We
4358 * don't simply return NULL because we still might need to show
4359 * boundary commits. But we want to avoid calling get_revision_1, which
4360 * might do a considerable amount of work finding the next commit only
4361 * for us to throw it away.
4363 * If it is non-zero, then either we don't have a max_count at all
4364 * (-1), or it is still counting, in which case we decrement.
4366 if (revs->max_count) {
4367 c = get_revision_1(revs);
4368 if (c) {
4369 while (revs->skip_count > 0) {
4370 revs->skip_count--;
4371 c = get_revision_1(revs);
4372 if (!c)
4373 break;
4377 if (revs->max_count > 0)
4378 revs->max_count--;
4381 if (c)
4382 c->object.flags |= SHOWN;
4384 if (!revs->boundary)
4385 return c;
4387 if (!c) {
4389 * get_revision_1() runs out the commits, and
4390 * we are done computing the boundaries.
4391 * switch to boundary commits output mode.
4393 revs->boundary = 2;
4396 * Update revs->commits to contain the list of
4397 * boundary commits.
4399 create_boundary_commit_list(revs);
4401 return get_revision_internal(revs);
4405 * boundary commits are the commits that are parents of the
4406 * ones we got from get_revision_1() but they themselves are
4407 * not returned from get_revision_1(). Before returning
4408 * 'c', we need to mark its parents that they could be boundaries.
4411 for (l = c->parents; l; l = l->next) {
4412 struct object *p;
4413 p = &(l->item->object);
4414 if (p->flags & (CHILD_SHOWN | SHOWN))
4415 continue;
4416 p->flags |= CHILD_SHOWN;
4417 gc_boundary(&revs->boundary_commits);
4418 add_object_array(p, NULL, &revs->boundary_commits);
4421 return c;
4424 struct commit *get_revision(struct rev_info *revs)
4426 struct commit *c;
4427 struct commit_list *reversed;
4429 if (revs->reverse) {
4430 reversed = NULL;
4431 while ((c = get_revision_internal(revs)))
4432 commit_list_insert(c, &reversed);
4433 revs->commits = reversed;
4434 revs->reverse = 0;
4435 revs->reverse_output_stage = 1;
4438 if (revs->reverse_output_stage) {
4439 c = pop_commit(&revs->commits);
4440 if (revs->track_linear)
4441 revs->linear = !!(c && c->object.flags & TRACK_LINEAR);
4442 return c;
4445 c = get_revision_internal(revs);
4446 if (c && revs->graph)
4447 graph_update(revs->graph, c);
4448 if (!c) {
4449 free_saved_parents(revs);
4450 free_commit_list(revs->previous_parents);
4451 revs->previous_parents = NULL;
4453 return c;
4456 const char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
4458 if (commit->object.flags & BOUNDARY)
4459 return "-";
4460 else if (commit->object.flags & UNINTERESTING)
4461 return "^";
4462 else if (commit->object.flags & PATCHSAME)
4463 return "=";
4464 else if (!revs || revs->left_right) {
4465 if (commit->object.flags & SYMMETRIC_LEFT)
4466 return "<";
4467 else
4468 return ">";
4469 } else if (revs->graph)
4470 return "*";
4471 else if (revs->cherry_mark)
4472 return "+";
4473 return "";
4476 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
4478 const char *mark = get_revision_mark(revs, commit);
4479 if (!strlen(mark))
4480 return;
4481 fputs(mark, stdout);
4482 putchar(' ');