t4209: factor out helper function test_log()
[git.git] / revision.c
bloba0df72f32c100a68e5d99b5b00e597d43f3802a5
1 #include "cache.h"
2 #include "tag.h"
3 #include "blob.h"
4 #include "tree.h"
5 #include "commit.h"
6 #include "diff.h"
7 #include "refs.h"
8 #include "revision.h"
9 #include "graph.h"
10 #include "grep.h"
11 #include "reflog-walk.h"
12 #include "patch-ids.h"
13 #include "decorate.h"
14 #include "log-tree.h"
15 #include "string-list.h"
16 #include "line-log.h"
17 #include "mailmap.h"
18 #include "commit-slab.h"
20 volatile show_early_output_fn_t show_early_output;
22 char *path_name(const struct name_path *path, const char *name)
24 const struct name_path *p;
25 char *n, *m;
26 int nlen = strlen(name);
27 int len = nlen + 1;
29 for (p = path; p; p = p->up) {
30 if (p->elem_len)
31 len += p->elem_len + 1;
33 n = xmalloc(len);
34 m = n + len - (nlen + 1);
35 strcpy(m, name);
36 for (p = path; p; p = p->up) {
37 if (p->elem_len) {
38 m -= p->elem_len + 1;
39 memcpy(m, p->elem, p->elem_len);
40 m[p->elem_len] = '/';
43 return n;
46 static int show_path_component_truncated(FILE *out, const char *name, int len)
48 int cnt;
49 for (cnt = 0; cnt < len; cnt++) {
50 int ch = name[cnt];
51 if (!ch || ch == '\n')
52 return -1;
53 fputc(ch, out);
55 return len;
58 static int show_path_truncated(FILE *out, const struct name_path *path)
60 int emitted, ours;
62 if (!path)
63 return 0;
64 emitted = show_path_truncated(out, path->up);
65 if (emitted < 0)
66 return emitted;
67 if (emitted)
68 fputc('/', out);
69 ours = show_path_component_truncated(out, path->elem, path->elem_len);
70 if (ours < 0)
71 return ours;
72 return ours || emitted;
75 void show_object_with_name(FILE *out, struct object *obj,
76 const struct name_path *path, const char *component)
78 struct name_path leaf;
79 leaf.up = (struct name_path *)path;
80 leaf.elem = component;
81 leaf.elem_len = strlen(component);
83 fprintf(out, "%s ", sha1_to_hex(obj->sha1));
84 show_path_truncated(out, &leaf);
85 fputc('\n', out);
88 void add_object(struct object *obj,
89 struct object_array *p,
90 struct name_path *path,
91 const char *name)
93 char *pn = path_name(path, name);
94 add_object_array(obj, pn, p);
95 free(pn);
98 static void mark_blob_uninteresting(struct blob *blob)
100 if (!blob)
101 return;
102 if (blob->object.flags & UNINTERESTING)
103 return;
104 blob->object.flags |= UNINTERESTING;
107 static void mark_tree_contents_uninteresting(struct tree *tree)
109 struct tree_desc desc;
110 struct name_entry entry;
111 struct object *obj = &tree->object;
113 if (!has_sha1_file(obj->sha1))
114 return;
115 if (parse_tree(tree) < 0)
116 die("bad tree %s", sha1_to_hex(obj->sha1));
118 init_tree_desc(&desc, tree->buffer, tree->size);
119 while (tree_entry(&desc, &entry)) {
120 switch (object_type(entry.mode)) {
121 case OBJ_TREE:
122 mark_tree_uninteresting(lookup_tree(entry.sha1));
123 break;
124 case OBJ_BLOB:
125 mark_blob_uninteresting(lookup_blob(entry.sha1));
126 break;
127 default:
128 /* Subproject commit - not in this repository */
129 break;
134 * We don't care about the tree any more
135 * after it has been marked uninteresting.
137 free_tree_buffer(tree);
140 void mark_tree_uninteresting(struct tree *tree)
142 struct object *obj = &tree->object;
144 if (!tree)
145 return;
146 if (obj->flags & UNINTERESTING)
147 return;
148 obj->flags |= UNINTERESTING;
149 mark_tree_contents_uninteresting(tree);
152 void mark_parents_uninteresting(struct commit *commit)
154 struct commit_list *parents = NULL, *l;
156 for (l = commit->parents; l; l = l->next)
157 commit_list_insert(l->item, &parents);
159 while (parents) {
160 struct commit *commit = parents->item;
161 l = parents;
162 parents = parents->next;
163 free(l);
165 while (commit) {
167 * A missing commit is ok iff its parent is marked
168 * uninteresting.
170 * We just mark such a thing parsed, so that when
171 * it is popped next time around, we won't be trying
172 * to parse it and get an error.
174 if (!has_sha1_file(commit->object.sha1))
175 commit->object.parsed = 1;
177 if (commit->object.flags & UNINTERESTING)
178 break;
180 commit->object.flags |= UNINTERESTING;
183 * Normally we haven't parsed the parent
184 * yet, so we won't have a parent of a parent
185 * here. However, it may turn out that we've
186 * reached this commit some other way (where it
187 * wasn't uninteresting), in which case we need
188 * to mark its parents recursively too..
190 if (!commit->parents)
191 break;
193 for (l = commit->parents->next; l; l = l->next)
194 commit_list_insert(l->item, &parents);
195 commit = commit->parents->item;
200 static void add_pending_object_with_mode(struct rev_info *revs,
201 struct object *obj,
202 const char *name, unsigned mode)
204 if (!obj)
205 return;
206 if (revs->no_walk && (obj->flags & UNINTERESTING))
207 revs->no_walk = 0;
208 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
209 struct strbuf buf = STRBUF_INIT;
210 int len = interpret_branch_name(name, 0, &buf);
211 int st;
213 if (0 < len && name[len] && buf.len)
214 strbuf_addstr(&buf, name + len);
215 st = add_reflog_for_walk(revs->reflog_info,
216 (struct commit *)obj,
217 buf.buf[0] ? buf.buf: name);
218 strbuf_release(&buf);
219 if (st)
220 return;
222 add_object_array_with_mode(obj, name, &revs->pending, mode);
225 void add_pending_object(struct rev_info *revs,
226 struct object *obj, const char *name)
228 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
231 void add_head_to_pending(struct rev_info *revs)
233 unsigned char sha1[20];
234 struct object *obj;
235 if (get_sha1("HEAD", sha1))
236 return;
237 obj = parse_object(sha1);
238 if (!obj)
239 return;
240 add_pending_object(revs, obj, "HEAD");
243 static struct object *get_reference(struct rev_info *revs, const char *name,
244 const unsigned char *sha1,
245 unsigned int flags)
247 struct object *object;
249 object = parse_object(sha1);
250 if (!object) {
251 if (revs->ignore_missing)
252 return object;
253 die("bad object %s", name);
255 object->flags |= flags;
256 return object;
259 void add_pending_sha1(struct rev_info *revs, const char *name,
260 const unsigned char *sha1, unsigned int flags)
262 struct object *object = get_reference(revs, name, sha1, flags);
263 add_pending_object(revs, object, name);
266 static struct commit *handle_commit(struct rev_info *revs,
267 struct object *object, const char *name)
269 unsigned long flags = object->flags;
272 * Tag object? Look what it points to..
274 while (object->type == OBJ_TAG) {
275 struct tag *tag = (struct tag *) object;
276 if (revs->tag_objects && !(flags & UNINTERESTING))
277 add_pending_object(revs, object, tag->tag);
278 if (!tag->tagged)
279 die("bad tag");
280 object = parse_object(tag->tagged->sha1);
281 if (!object) {
282 if (flags & UNINTERESTING)
283 return NULL;
284 die("bad object %s", sha1_to_hex(tag->tagged->sha1));
286 object->flags |= flags;
290 * Commit object? Just return it, we'll do all the complex
291 * reachability crud.
293 if (object->type == OBJ_COMMIT) {
294 struct commit *commit = (struct commit *)object;
295 if (parse_commit(commit) < 0)
296 die("unable to parse commit %s", name);
297 if (flags & UNINTERESTING) {
298 mark_parents_uninteresting(commit);
299 revs->limited = 1;
301 if (revs->show_source && !commit->util)
302 commit->util = (void *) name;
303 return commit;
307 * Tree object? Either mark it uninteresting, or add it
308 * to the list of objects to look at later..
310 if (object->type == OBJ_TREE) {
311 struct tree *tree = (struct tree *)object;
312 if (!revs->tree_objects)
313 return NULL;
314 if (flags & UNINTERESTING) {
315 mark_tree_contents_uninteresting(tree);
316 return NULL;
318 add_pending_object(revs, object, "");
319 return NULL;
323 * Blob object? You know the drill by now..
325 if (object->type == OBJ_BLOB) {
326 if (!revs->blob_objects)
327 return NULL;
328 if (flags & UNINTERESTING)
329 return NULL;
330 add_pending_object(revs, object, "");
331 return NULL;
333 die("%s is unknown object", name);
336 static int everybody_uninteresting(struct commit_list *orig)
338 struct commit_list *list = orig;
339 while (list) {
340 struct commit *commit = list->item;
341 list = list->next;
342 if (commit->object.flags & UNINTERESTING)
343 continue;
344 return 0;
346 return 1;
350 * A definition of "relevant" commit that we can use to simplify limited graphs
351 * by eliminating side branches.
353 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
354 * in our list), or that is a specified BOTTOM commit. Then after computing
355 * a limited list, during processing we can generally ignore boundary merges
356 * coming from outside the graph, (ie from irrelevant parents), and treat
357 * those merges as if they were single-parent. TREESAME is defined to consider
358 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
359 * we don't care if we were !TREESAME to non-graph parents.
361 * Treating bottom commits as relevant ensures that a limited graph's
362 * connection to the actual bottom commit is not viewed as a side branch, but
363 * treated as part of the graph. For example:
365 * ....Z...A---X---o---o---B
366 * . /
367 * W---Y
369 * When computing "A..B", the A-X connection is at least as important as
370 * Y-X, despite A being flagged UNINTERESTING.
372 * And when computing --ancestry-path "A..B", the A-X connection is more
373 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
375 static inline int relevant_commit(struct commit *commit)
377 return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
381 * Return a single relevant commit from a parent list. If we are a TREESAME
382 * commit, and this selects one of our parents, then we can safely simplify to
383 * that parent.
385 static struct commit *one_relevant_parent(const struct rev_info *revs,
386 struct commit_list *orig)
388 struct commit_list *list = orig;
389 struct commit *relevant = NULL;
391 if (!orig)
392 return NULL;
395 * For 1-parent commits, or if first-parent-only, then return that
396 * first parent (even if not "relevant" by the above definition).
397 * TREESAME will have been set purely on that parent.
399 if (revs->first_parent_only || !orig->next)
400 return orig->item;
403 * For multi-parent commits, identify a sole relevant parent, if any.
404 * If we have only one relevant parent, then TREESAME will be set purely
405 * with regard to that parent, and we can simplify accordingly.
407 * If we have more than one relevant parent, or no relevant parents
408 * (and multiple irrelevant ones), then we can't select a parent here
409 * and return NULL.
411 while (list) {
412 struct commit *commit = list->item;
413 list = list->next;
414 if (relevant_commit(commit)) {
415 if (relevant)
416 return NULL;
417 relevant = commit;
420 return relevant;
424 * The goal is to get REV_TREE_NEW as the result only if the
425 * diff consists of all '+' (and no other changes), REV_TREE_OLD
426 * if the whole diff is removal of old data, and otherwise
427 * REV_TREE_DIFFERENT (of course if the trees are the same we
428 * want REV_TREE_SAME).
429 * That means that once we get to REV_TREE_DIFFERENT, we do not
430 * have to look any further.
432 static int tree_difference = REV_TREE_SAME;
434 static void file_add_remove(struct diff_options *options,
435 int addremove, unsigned mode,
436 const unsigned char *sha1,
437 int sha1_valid,
438 const char *fullpath, unsigned dirty_submodule)
440 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
442 tree_difference |= diff;
443 if (tree_difference == REV_TREE_DIFFERENT)
444 DIFF_OPT_SET(options, HAS_CHANGES);
447 static void file_change(struct diff_options *options,
448 unsigned old_mode, unsigned new_mode,
449 const unsigned char *old_sha1,
450 const unsigned char *new_sha1,
451 int old_sha1_valid, int new_sha1_valid,
452 const char *fullpath,
453 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
455 tree_difference = REV_TREE_DIFFERENT;
456 DIFF_OPT_SET(options, HAS_CHANGES);
459 static int rev_compare_tree(struct rev_info *revs,
460 struct commit *parent, struct commit *commit)
462 struct tree *t1 = parent->tree;
463 struct tree *t2 = commit->tree;
465 if (!t1)
466 return REV_TREE_NEW;
467 if (!t2)
468 return REV_TREE_OLD;
470 if (revs->simplify_by_decoration) {
472 * If we are simplifying by decoration, then the commit
473 * is worth showing if it has a tag pointing at it.
475 if (lookup_decoration(&name_decoration, &commit->object))
476 return REV_TREE_DIFFERENT;
478 * A commit that is not pointed by a tag is uninteresting
479 * if we are not limited by path. This means that you will
480 * see the usual "commits that touch the paths" plus any
481 * tagged commit by specifying both --simplify-by-decoration
482 * and pathspec.
484 if (!revs->prune_data.nr)
485 return REV_TREE_SAME;
488 tree_difference = REV_TREE_SAME;
489 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
490 if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
491 &revs->pruning) < 0)
492 return REV_TREE_DIFFERENT;
493 return tree_difference;
496 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
498 int retval;
499 void *tree;
500 unsigned long size;
501 struct tree_desc empty, real;
502 struct tree *t1 = commit->tree;
504 if (!t1)
505 return 0;
507 tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
508 if (!tree)
509 return 0;
510 init_tree_desc(&real, tree, size);
511 init_tree_desc(&empty, "", 0);
513 tree_difference = REV_TREE_SAME;
514 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
515 retval = diff_tree(&empty, &real, "", &revs->pruning);
516 free(tree);
518 return retval >= 0 && (tree_difference == REV_TREE_SAME);
521 struct treesame_state {
522 unsigned int nparents;
523 unsigned char treesame[FLEX_ARRAY];
526 static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
528 unsigned n = commit_list_count(commit->parents);
529 struct treesame_state *st = xcalloc(1, sizeof(*st) + n);
530 st->nparents = n;
531 add_decoration(&revs->treesame, &commit->object, st);
532 return st;
536 * Must be called immediately after removing the nth_parent from a commit's
537 * parent list, if we are maintaining the per-parent treesame[] decoration.
538 * This does not recalculate the master TREESAME flag - update_treesame()
539 * should be called to update it after a sequence of treesame[] modifications
540 * that may have affected it.
542 static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
544 struct treesame_state *st;
545 int old_same;
547 if (!commit->parents) {
549 * Have just removed the only parent from a non-merge.
550 * Different handling, as we lack decoration.
552 if (nth_parent != 0)
553 die("compact_treesame %u", nth_parent);
554 old_same = !!(commit->object.flags & TREESAME);
555 if (rev_same_tree_as_empty(revs, commit))
556 commit->object.flags |= TREESAME;
557 else
558 commit->object.flags &= ~TREESAME;
559 return old_same;
562 st = lookup_decoration(&revs->treesame, &commit->object);
563 if (!st || nth_parent >= st->nparents)
564 die("compact_treesame %u", nth_parent);
566 old_same = st->treesame[nth_parent];
567 memmove(st->treesame + nth_parent,
568 st->treesame + nth_parent + 1,
569 st->nparents - nth_parent - 1);
572 * If we've just become a non-merge commit, update TREESAME
573 * immediately, and remove the no-longer-needed decoration.
574 * If still a merge, defer update until update_treesame().
576 if (--st->nparents == 1) {
577 if (commit->parents->next)
578 die("compact_treesame parents mismatch");
579 if (st->treesame[0] && revs->dense)
580 commit->object.flags |= TREESAME;
581 else
582 commit->object.flags &= ~TREESAME;
583 free(add_decoration(&revs->treesame, &commit->object, NULL));
586 return old_same;
589 static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
591 if (commit->parents && commit->parents->next) {
592 unsigned n;
593 struct treesame_state *st;
594 struct commit_list *p;
595 unsigned relevant_parents;
596 unsigned relevant_change, irrelevant_change;
598 st = lookup_decoration(&revs->treesame, &commit->object);
599 if (!st)
600 die("update_treesame %s", sha1_to_hex(commit->object.sha1));
601 relevant_parents = 0;
602 relevant_change = irrelevant_change = 0;
603 for (p = commit->parents, n = 0; p; n++, p = p->next) {
604 if (relevant_commit(p->item)) {
605 relevant_change |= !st->treesame[n];
606 relevant_parents++;
607 } else
608 irrelevant_change |= !st->treesame[n];
610 if (relevant_parents ? relevant_change : irrelevant_change)
611 commit->object.flags &= ~TREESAME;
612 else
613 commit->object.flags |= TREESAME;
616 return commit->object.flags & TREESAME;
619 static inline int limiting_can_increase_treesame(const struct rev_info *revs)
622 * TREESAME is irrelevant unless prune && dense;
623 * if simplify_history is set, we can't have a mixture of TREESAME and
624 * !TREESAME INTERESTING parents (and we don't have treesame[]
625 * decoration anyway);
626 * if first_parent_only is set, then the TREESAME flag is locked
627 * against the first parent (and again we lack treesame[] decoration).
629 return revs->prune && revs->dense &&
630 !revs->simplify_history &&
631 !revs->first_parent_only;
634 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
636 struct commit_list **pp, *parent;
637 struct treesame_state *ts = NULL;
638 int relevant_change = 0, irrelevant_change = 0;
639 int relevant_parents, nth_parent;
642 * If we don't do pruning, everything is interesting
644 if (!revs->prune)
645 return;
647 if (!commit->tree)
648 return;
650 if (!commit->parents) {
651 if (rev_same_tree_as_empty(revs, commit))
652 commit->object.flags |= TREESAME;
653 return;
657 * Normal non-merge commit? If we don't want to make the
658 * history dense, we consider it always to be a change..
660 if (!revs->dense && !commit->parents->next)
661 return;
663 for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
664 (parent = *pp) != NULL;
665 pp = &parent->next, nth_parent++) {
666 struct commit *p = parent->item;
667 if (relevant_commit(p))
668 relevant_parents++;
670 if (nth_parent == 1) {
672 * This our second loop iteration - so we now know
673 * we're dealing with a merge.
675 * Do not compare with later parents when we care only about
676 * the first parent chain, in order to avoid derailing the
677 * traversal to follow a side branch that brought everything
678 * in the path we are limited to by the pathspec.
680 if (revs->first_parent_only)
681 break;
683 * If this will remain a potentially-simplifiable
684 * merge, remember per-parent treesame if needed.
685 * Initialise the array with the comparison from our
686 * first iteration.
688 if (revs->treesame.name &&
689 !revs->simplify_history &&
690 !(commit->object.flags & UNINTERESTING)) {
691 ts = initialise_treesame(revs, commit);
692 if (!(irrelevant_change || relevant_change))
693 ts->treesame[0] = 1;
696 if (parse_commit(p) < 0)
697 die("cannot simplify commit %s (because of %s)",
698 sha1_to_hex(commit->object.sha1),
699 sha1_to_hex(p->object.sha1));
700 switch (rev_compare_tree(revs, p, commit)) {
701 case REV_TREE_SAME:
702 if (!revs->simplify_history || !relevant_commit(p)) {
703 /* Even if a merge with an uninteresting
704 * side branch brought the entire change
705 * we are interested in, we do not want
706 * to lose the other branches of this
707 * merge, so we just keep going.
709 if (ts)
710 ts->treesame[nth_parent] = 1;
711 continue;
713 parent->next = NULL;
714 commit->parents = parent;
715 commit->object.flags |= TREESAME;
716 return;
718 case REV_TREE_NEW:
719 if (revs->remove_empty_trees &&
720 rev_same_tree_as_empty(revs, p)) {
721 /* We are adding all the specified
722 * paths from this parent, so the
723 * history beyond this parent is not
724 * interesting. Remove its parents
725 * (they are grandparents for us).
726 * IOW, we pretend this parent is a
727 * "root" commit.
729 if (parse_commit(p) < 0)
730 die("cannot simplify commit %s (invalid %s)",
731 sha1_to_hex(commit->object.sha1),
732 sha1_to_hex(p->object.sha1));
733 p->parents = NULL;
735 /* fallthrough */
736 case REV_TREE_OLD:
737 case REV_TREE_DIFFERENT:
738 if (relevant_commit(p))
739 relevant_change = 1;
740 else
741 irrelevant_change = 1;
742 continue;
744 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
748 * TREESAME is straightforward for single-parent commits. For merge
749 * commits, it is most useful to define it so that "irrelevant"
750 * parents cannot make us !TREESAME - if we have any relevant
751 * parents, then we only consider TREESAMEness with respect to them,
752 * allowing irrelevant merges from uninteresting branches to be
753 * simplified away. Only if we have only irrelevant parents do we
754 * base TREESAME on them. Note that this logic is replicated in
755 * update_treesame, which should be kept in sync.
757 if (relevant_parents ? !relevant_change : !irrelevant_change)
758 commit->object.flags |= TREESAME;
761 static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
762 struct commit_list *cached_base, struct commit_list **cache)
764 struct commit_list *new_entry;
766 if (cached_base && p->date < cached_base->item->date)
767 new_entry = commit_list_insert_by_date(p, &cached_base->next);
768 else
769 new_entry = commit_list_insert_by_date(p, head);
771 if (cache && (!*cache || p->date < (*cache)->item->date))
772 *cache = new_entry;
775 static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
776 struct commit_list **list, struct commit_list **cache_ptr)
778 struct commit_list *parent = commit->parents;
779 unsigned left_flag;
780 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
782 if (commit->object.flags & ADDED)
783 return 0;
784 commit->object.flags |= ADDED;
787 * If the commit is uninteresting, don't try to
788 * prune parents - we want the maximal uninteresting
789 * set.
791 * Normally we haven't parsed the parent
792 * yet, so we won't have a parent of a parent
793 * here. However, it may turn out that we've
794 * reached this commit some other way (where it
795 * wasn't uninteresting), in which case we need
796 * to mark its parents recursively too..
798 if (commit->object.flags & UNINTERESTING) {
799 while (parent) {
800 struct commit *p = parent->item;
801 parent = parent->next;
802 if (p)
803 p->object.flags |= UNINTERESTING;
804 if (parse_commit(p) < 0)
805 continue;
806 if (p->parents)
807 mark_parents_uninteresting(p);
808 if (p->object.flags & SEEN)
809 continue;
810 p->object.flags |= SEEN;
811 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
813 return 0;
817 * Ok, the commit wasn't uninteresting. Try to
818 * simplify the commit history and find the parent
819 * that has no differences in the path set if one exists.
821 try_to_simplify_commit(revs, commit);
823 if (revs->no_walk)
824 return 0;
826 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
828 for (parent = commit->parents; parent; parent = parent->next) {
829 struct commit *p = parent->item;
831 if (parse_commit(p) < 0)
832 return -1;
833 if (revs->show_source && !p->util)
834 p->util = commit->util;
835 p->object.flags |= left_flag;
836 if (!(p->object.flags & SEEN)) {
837 p->object.flags |= SEEN;
838 commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
840 if (revs->first_parent_only)
841 break;
843 return 0;
846 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
848 struct commit_list *p;
849 int left_count = 0, right_count = 0;
850 int left_first;
851 struct patch_ids ids;
852 unsigned cherry_flag;
854 /* First count the commits on the left and on the right */
855 for (p = list; p; p = p->next) {
856 struct commit *commit = p->item;
857 unsigned flags = commit->object.flags;
858 if (flags & BOUNDARY)
860 else if (flags & SYMMETRIC_LEFT)
861 left_count++;
862 else
863 right_count++;
866 if (!left_count || !right_count)
867 return;
869 left_first = left_count < right_count;
870 init_patch_ids(&ids);
871 ids.diffopts.pathspec = revs->diffopt.pathspec;
873 /* Compute patch-ids for one side */
874 for (p = list; p; p = p->next) {
875 struct commit *commit = p->item;
876 unsigned flags = commit->object.flags;
878 if (flags & BOUNDARY)
879 continue;
881 * If we have fewer left, left_first is set and we omit
882 * commits on the right branch in this loop. If we have
883 * fewer right, we skip the left ones.
885 if (left_first != !!(flags & SYMMETRIC_LEFT))
886 continue;
887 commit->util = add_commit_patch_id(commit, &ids);
890 /* either cherry_mark or cherry_pick are true */
891 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
893 /* Check the other side */
894 for (p = list; p; p = p->next) {
895 struct commit *commit = p->item;
896 struct patch_id *id;
897 unsigned flags = commit->object.flags;
899 if (flags & BOUNDARY)
900 continue;
902 * If we have fewer left, left_first is set and we omit
903 * commits on the left branch in this loop.
905 if (left_first == !!(flags & SYMMETRIC_LEFT))
906 continue;
909 * Have we seen the same patch id?
911 id = has_commit_patch_id(commit, &ids);
912 if (!id)
913 continue;
914 id->seen = 1;
915 commit->object.flags |= cherry_flag;
918 /* Now check the original side for seen ones */
919 for (p = list; p; p = p->next) {
920 struct commit *commit = p->item;
921 struct patch_id *ent;
923 ent = commit->util;
924 if (!ent)
925 continue;
926 if (ent->seen)
927 commit->object.flags |= cherry_flag;
928 commit->util = NULL;
931 free_patch_ids(&ids);
934 /* How many extra uninteresting commits we want to see.. */
935 #define SLOP 5
937 static int still_interesting(struct commit_list *src, unsigned long date, int slop)
940 * No source list at all? We're definitely done..
942 if (!src)
943 return 0;
946 * Does the destination list contain entries with a date
947 * before the source list? Definitely _not_ done.
949 if (date <= src->item->date)
950 return SLOP;
953 * Does the source list still have interesting commits in
954 * it? Definitely not done..
956 if (!everybody_uninteresting(src))
957 return SLOP;
959 /* Ok, we're closing in.. */
960 return slop-1;
964 * "rev-list --ancestry-path A..B" computes commits that are ancestors
965 * of B but not ancestors of A but further limits the result to those
966 * that are descendants of A. This takes the list of bottom commits and
967 * the result of "A..B" without --ancestry-path, and limits the latter
968 * further to the ones that can reach one of the commits in "bottom".
970 static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
972 struct commit_list *p;
973 struct commit_list *rlist = NULL;
974 int made_progress;
977 * Reverse the list so that it will be likely that we would
978 * process parents before children.
980 for (p = list; p; p = p->next)
981 commit_list_insert(p->item, &rlist);
983 for (p = bottom; p; p = p->next)
984 p->item->object.flags |= TMP_MARK;
987 * Mark the ones that can reach bottom commits in "list",
988 * in a bottom-up fashion.
990 do {
991 made_progress = 0;
992 for (p = rlist; p; p = p->next) {
993 struct commit *c = p->item;
994 struct commit_list *parents;
995 if (c->object.flags & (TMP_MARK | UNINTERESTING))
996 continue;
997 for (parents = c->parents;
998 parents;
999 parents = parents->next) {
1000 if (!(parents->item->object.flags & TMP_MARK))
1001 continue;
1002 c->object.flags |= TMP_MARK;
1003 made_progress = 1;
1004 break;
1007 } while (made_progress);
1010 * NEEDSWORK: decide if we want to remove parents that are
1011 * not marked with TMP_MARK from commit->parents for commits
1012 * in the resulting list. We may not want to do that, though.
1016 * The ones that are not marked with TMP_MARK are uninteresting
1018 for (p = list; p; p = p->next) {
1019 struct commit *c = p->item;
1020 if (c->object.flags & TMP_MARK)
1021 continue;
1022 c->object.flags |= UNINTERESTING;
1025 /* We are done with the TMP_MARK */
1026 for (p = list; p; p = p->next)
1027 p->item->object.flags &= ~TMP_MARK;
1028 for (p = bottom; p; p = p->next)
1029 p->item->object.flags &= ~TMP_MARK;
1030 free_commit_list(rlist);
1034 * Before walking the history, keep the set of "negative" refs the
1035 * caller has asked to exclude.
1037 * This is used to compute "rev-list --ancestry-path A..B", as we need
1038 * to filter the result of "A..B" further to the ones that can actually
1039 * reach A.
1041 static struct commit_list *collect_bottom_commits(struct commit_list *list)
1043 struct commit_list *elem, *bottom = NULL;
1044 for (elem = list; elem; elem = elem->next)
1045 if (elem->item->object.flags & BOTTOM)
1046 commit_list_insert(elem->item, &bottom);
1047 return bottom;
1050 /* Assumes either left_only or right_only is set */
1051 static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1053 struct commit_list *p;
1055 for (p = list; p; p = p->next) {
1056 struct commit *commit = p->item;
1058 if (revs->right_only) {
1059 if (commit->object.flags & SYMMETRIC_LEFT)
1060 commit->object.flags |= SHOWN;
1061 } else /* revs->left_only is set */
1062 if (!(commit->object.flags & SYMMETRIC_LEFT))
1063 commit->object.flags |= SHOWN;
1067 static int limit_list(struct rev_info *revs)
1069 int slop = SLOP;
1070 unsigned long date = ~0ul;
1071 struct commit_list *list = revs->commits;
1072 struct commit_list *newlist = NULL;
1073 struct commit_list **p = &newlist;
1074 struct commit_list *bottom = NULL;
1076 if (revs->ancestry_path) {
1077 bottom = collect_bottom_commits(list);
1078 if (!bottom)
1079 die("--ancestry-path given but there are no bottom commits");
1082 while (list) {
1083 struct commit_list *entry = list;
1084 struct commit *commit = list->item;
1085 struct object *obj = &commit->object;
1086 show_early_output_fn_t show;
1088 list = list->next;
1089 free(entry);
1091 if (revs->max_age != -1 && (commit->date < revs->max_age))
1092 obj->flags |= UNINTERESTING;
1093 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
1094 return -1;
1095 if (obj->flags & UNINTERESTING) {
1096 mark_parents_uninteresting(commit);
1097 if (revs->show_all)
1098 p = &commit_list_insert(commit, p)->next;
1099 slop = still_interesting(list, date, slop);
1100 if (slop)
1101 continue;
1102 /* If showing all, add the whole pending list to the end */
1103 if (revs->show_all)
1104 *p = list;
1105 break;
1107 if (revs->min_age != -1 && (commit->date > revs->min_age))
1108 continue;
1109 date = commit->date;
1110 p = &commit_list_insert(commit, p)->next;
1112 show = show_early_output;
1113 if (!show)
1114 continue;
1116 show(revs, newlist);
1117 show_early_output = NULL;
1119 if (revs->cherry_pick || revs->cherry_mark)
1120 cherry_pick_list(newlist, revs);
1122 if (revs->left_only || revs->right_only)
1123 limit_left_right(newlist, revs);
1125 if (bottom) {
1126 limit_to_ancestry(bottom, newlist);
1127 free_commit_list(bottom);
1131 * Check if any commits have become TREESAME by some of their parents
1132 * becoming UNINTERESTING.
1134 if (limiting_can_increase_treesame(revs))
1135 for (list = newlist; list; list = list->next) {
1136 struct commit *c = list->item;
1137 if (c->object.flags & (UNINTERESTING | TREESAME))
1138 continue;
1139 update_treesame(revs, c);
1142 revs->commits = newlist;
1143 return 0;
1147 * Add an entry to refs->cmdline with the specified information.
1148 * *name is copied.
1150 static void add_rev_cmdline(struct rev_info *revs,
1151 struct object *item,
1152 const char *name,
1153 int whence,
1154 unsigned flags)
1156 struct rev_cmdline_info *info = &revs->cmdline;
1157 int nr = info->nr;
1159 ALLOC_GROW(info->rev, nr + 1, info->alloc);
1160 info->rev[nr].item = item;
1161 info->rev[nr].name = xstrdup(name);
1162 info->rev[nr].whence = whence;
1163 info->rev[nr].flags = flags;
1164 info->nr++;
1167 static void add_rev_cmdline_list(struct rev_info *revs,
1168 struct commit_list *commit_list,
1169 int whence,
1170 unsigned flags)
1172 while (commit_list) {
1173 struct object *object = &commit_list->item->object;
1174 add_rev_cmdline(revs, object, sha1_to_hex(object->sha1),
1175 whence, flags);
1176 commit_list = commit_list->next;
1180 struct all_refs_cb {
1181 int all_flags;
1182 int warned_bad_reflog;
1183 struct rev_info *all_revs;
1184 const char *name_for_errormsg;
1187 int ref_excluded(struct string_list *ref_excludes, const char *path)
1189 struct string_list_item *item;
1191 if (!ref_excludes)
1192 return 0;
1193 for_each_string_list_item(item, ref_excludes) {
1194 if (!fnmatch(item->string, path, 0))
1195 return 1;
1197 return 0;
1200 static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
1202 struct all_refs_cb *cb = cb_data;
1203 struct object *object;
1205 if (ref_excluded(cb->all_revs->ref_excludes, path))
1206 return 0;
1208 object = get_reference(cb->all_revs, path, sha1, cb->all_flags);
1209 add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
1210 add_pending_sha1(cb->all_revs, path, sha1, cb->all_flags);
1211 return 0;
1214 static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1215 unsigned flags)
1217 cb->all_revs = revs;
1218 cb->all_flags = flags;
1221 void clear_ref_exclusion(struct string_list **ref_excludes_p)
1223 if (*ref_excludes_p) {
1224 string_list_clear(*ref_excludes_p, 0);
1225 free(*ref_excludes_p);
1227 *ref_excludes_p = NULL;
1230 void add_ref_exclusion(struct string_list **ref_excludes_p, const char *exclude)
1232 if (!*ref_excludes_p) {
1233 *ref_excludes_p = xcalloc(1, sizeof(**ref_excludes_p));
1234 (*ref_excludes_p)->strdup_strings = 1;
1236 string_list_append(*ref_excludes_p, exclude);
1239 static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags,
1240 int (*for_each)(const char *, each_ref_fn, void *))
1242 struct all_refs_cb cb;
1243 init_all_refs_cb(&cb, revs, flags);
1244 for_each(submodule, handle_one_ref, &cb);
1247 static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
1249 struct all_refs_cb *cb = cb_data;
1250 if (!is_null_sha1(sha1)) {
1251 struct object *o = parse_object(sha1);
1252 if (o) {
1253 o->flags |= cb->all_flags;
1254 /* ??? CMDLINEFLAGS ??? */
1255 add_pending_object(cb->all_revs, o, "");
1257 else if (!cb->warned_bad_reflog) {
1258 warning("reflog of '%s' references pruned commits",
1259 cb->name_for_errormsg);
1260 cb->warned_bad_reflog = 1;
1265 static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
1266 const char *email, unsigned long timestamp, int tz,
1267 const char *message, void *cb_data)
1269 handle_one_reflog_commit(osha1, cb_data);
1270 handle_one_reflog_commit(nsha1, cb_data);
1271 return 0;
1274 static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
1276 struct all_refs_cb *cb = cb_data;
1277 cb->warned_bad_reflog = 0;
1278 cb->name_for_errormsg = path;
1279 for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
1280 return 0;
1283 static void handle_reflog(struct rev_info *revs, unsigned flags)
1285 struct all_refs_cb cb;
1286 cb.all_revs = revs;
1287 cb.all_flags = flags;
1288 for_each_reflog(handle_one_reflog, &cb);
1291 static int add_parents_only(struct rev_info *revs, const char *arg_, int flags)
1293 unsigned char sha1[20];
1294 struct object *it;
1295 struct commit *commit;
1296 struct commit_list *parents;
1297 const char *arg = arg_;
1299 if (*arg == '^') {
1300 flags ^= UNINTERESTING | BOTTOM;
1301 arg++;
1303 if (get_sha1_committish(arg, sha1))
1304 return 0;
1305 while (1) {
1306 it = get_reference(revs, arg, sha1, 0);
1307 if (!it && revs->ignore_missing)
1308 return 0;
1309 if (it->type != OBJ_TAG)
1310 break;
1311 if (!((struct tag*)it)->tagged)
1312 return 0;
1313 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
1315 if (it->type != OBJ_COMMIT)
1316 return 0;
1317 commit = (struct commit *)it;
1318 for (parents = commit->parents; parents; parents = parents->next) {
1319 it = &parents->item->object;
1320 it->flags |= flags;
1321 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
1322 add_pending_object(revs, it, arg);
1324 return 1;
1327 void init_revisions(struct rev_info *revs, const char *prefix)
1329 memset(revs, 0, sizeof(*revs));
1331 revs->abbrev = DEFAULT_ABBREV;
1332 revs->ignore_merges = 1;
1333 revs->simplify_history = 1;
1334 DIFF_OPT_SET(&revs->pruning, RECURSIVE);
1335 DIFF_OPT_SET(&revs->pruning, QUICK);
1336 revs->pruning.add_remove = file_add_remove;
1337 revs->pruning.change = file_change;
1338 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1339 revs->dense = 1;
1340 revs->prefix = prefix;
1341 revs->max_age = -1;
1342 revs->min_age = -1;
1343 revs->skip_count = -1;
1344 revs->max_count = -1;
1345 revs->max_parents = -1;
1347 revs->commit_format = CMIT_FMT_DEFAULT;
1349 init_grep_defaults();
1350 grep_init(&revs->grep_filter, prefix);
1351 revs->grep_filter.status_only = 1;
1352 revs->grep_filter.regflags = REG_NEWLINE;
1354 diff_setup(&revs->diffopt);
1355 if (prefix && !revs->diffopt.prefix) {
1356 revs->diffopt.prefix = prefix;
1357 revs->diffopt.prefix_length = strlen(prefix);
1360 revs->notes_opt.use_default_notes = -1;
1363 static void add_pending_commit_list(struct rev_info *revs,
1364 struct commit_list *commit_list,
1365 unsigned int flags)
1367 while (commit_list) {
1368 struct object *object = &commit_list->item->object;
1369 object->flags |= flags;
1370 add_pending_object(revs, object, sha1_to_hex(object->sha1));
1371 commit_list = commit_list->next;
1375 static void prepare_show_merge(struct rev_info *revs)
1377 struct commit_list *bases;
1378 struct commit *head, *other;
1379 unsigned char sha1[20];
1380 const char **prune = NULL;
1381 int i, prune_num = 1; /* counting terminating NULL */
1383 if (get_sha1("HEAD", sha1))
1384 die("--merge without HEAD?");
1385 head = lookup_commit_or_die(sha1, "HEAD");
1386 if (get_sha1("MERGE_HEAD", sha1))
1387 die("--merge without MERGE_HEAD?");
1388 other = lookup_commit_or_die(sha1, "MERGE_HEAD");
1389 add_pending_object(revs, &head->object, "HEAD");
1390 add_pending_object(revs, &other->object, "MERGE_HEAD");
1391 bases = get_merge_bases(head, other, 1);
1392 add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
1393 add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
1394 free_commit_list(bases);
1395 head->object.flags |= SYMMETRIC_LEFT;
1397 if (!active_nr)
1398 read_cache();
1399 for (i = 0; i < active_nr; i++) {
1400 const struct cache_entry *ce = active_cache[i];
1401 if (!ce_stage(ce))
1402 continue;
1403 if (ce_path_match(ce, &revs->prune_data)) {
1404 prune_num++;
1405 prune = xrealloc(prune, sizeof(*prune) * prune_num);
1406 prune[prune_num-2] = ce->name;
1407 prune[prune_num-1] = NULL;
1409 while ((i+1 < active_nr) &&
1410 ce_same_name(ce, active_cache[i+1]))
1411 i++;
1413 free_pathspec(&revs->prune_data);
1414 parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
1415 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
1416 revs->limited = 1;
1419 int handle_revision_arg(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
1421 struct object_context oc;
1422 char *dotdot;
1423 struct object *object;
1424 unsigned char sha1[20];
1425 int local_flags;
1426 const char *arg = arg_;
1427 int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
1428 unsigned get_sha1_flags = 0;
1430 flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
1432 dotdot = strstr(arg, "..");
1433 if (dotdot) {
1434 unsigned char from_sha1[20];
1435 const char *next = dotdot + 2;
1436 const char *this = arg;
1437 int symmetric = *next == '.';
1438 unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
1439 static const char head_by_default[] = "HEAD";
1440 unsigned int a_flags;
1442 *dotdot = 0;
1443 next += symmetric;
1445 if (!*next)
1446 next = head_by_default;
1447 if (dotdot == arg)
1448 this = head_by_default;
1449 if (this == head_by_default && next == head_by_default &&
1450 !symmetric) {
1452 * Just ".."? That is not a range but the
1453 * pathspec for the parent directory.
1455 if (!cant_be_filename) {
1456 *dotdot = '.';
1457 return -1;
1460 if (!get_sha1_committish(this, from_sha1) &&
1461 !get_sha1_committish(next, sha1)) {
1462 struct object *a_obj, *b_obj;
1464 if (!cant_be_filename) {
1465 *dotdot = '.';
1466 verify_non_filename(revs->prefix, arg);
1469 a_obj = parse_object(from_sha1);
1470 b_obj = parse_object(sha1);
1471 if (!a_obj || !b_obj) {
1472 missing:
1473 if (revs->ignore_missing)
1474 return 0;
1475 die(symmetric
1476 ? "Invalid symmetric difference expression %s"
1477 : "Invalid revision range %s", arg);
1480 if (!symmetric) {
1481 /* just A..B */
1482 a_flags = flags_exclude;
1483 } else {
1484 /* A...B -- find merge bases between the two */
1485 struct commit *a, *b;
1486 struct commit_list *exclude;
1488 a = (a_obj->type == OBJ_COMMIT
1489 ? (struct commit *)a_obj
1490 : lookup_commit_reference(a_obj->sha1));
1491 b = (b_obj->type == OBJ_COMMIT
1492 ? (struct commit *)b_obj
1493 : lookup_commit_reference(b_obj->sha1));
1494 if (!a || !b)
1495 goto missing;
1496 exclude = get_merge_bases(a, b, 1);
1497 add_rev_cmdline_list(revs, exclude,
1498 REV_CMD_MERGE_BASE,
1499 flags_exclude);
1500 add_pending_commit_list(revs, exclude,
1501 flags_exclude);
1502 free_commit_list(exclude);
1504 a_flags = flags | SYMMETRIC_LEFT;
1507 a_obj->flags |= a_flags;
1508 b_obj->flags |= flags;
1509 add_rev_cmdline(revs, a_obj, this,
1510 REV_CMD_LEFT, a_flags);
1511 add_rev_cmdline(revs, b_obj, next,
1512 REV_CMD_RIGHT, flags);
1513 add_pending_object(revs, a_obj, this);
1514 add_pending_object(revs, b_obj, next);
1515 return 0;
1517 *dotdot = '.';
1519 dotdot = strstr(arg, "^@");
1520 if (dotdot && !dotdot[2]) {
1521 *dotdot = 0;
1522 if (add_parents_only(revs, arg, flags))
1523 return 0;
1524 *dotdot = '^';
1526 dotdot = strstr(arg, "^!");
1527 if (dotdot && !dotdot[2]) {
1528 *dotdot = 0;
1529 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM)))
1530 *dotdot = '^';
1533 local_flags = 0;
1534 if (*arg == '^') {
1535 local_flags = UNINTERESTING | BOTTOM;
1536 arg++;
1539 if (revarg_opt & REVARG_COMMITTISH)
1540 get_sha1_flags = GET_SHA1_COMMITTISH;
1542 if (get_sha1_with_context(arg, get_sha1_flags, sha1, &oc))
1543 return revs->ignore_missing ? 0 : -1;
1544 if (!cant_be_filename)
1545 verify_non_filename(revs->prefix, arg);
1546 object = get_reference(revs, arg, sha1, flags ^ local_flags);
1547 add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1548 add_pending_object_with_mode(revs, object, arg, oc.mode);
1549 return 0;
1552 struct cmdline_pathspec {
1553 int alloc;
1554 int nr;
1555 const char **path;
1558 static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
1560 while (*av) {
1561 ALLOC_GROW(prune->path, prune->nr + 1, prune->alloc);
1562 prune->path[prune->nr++] = *(av++);
1566 static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1567 struct cmdline_pathspec *prune)
1569 while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1570 int len = sb->len;
1571 if (len && sb->buf[len - 1] == '\n')
1572 sb->buf[--len] = '\0';
1573 ALLOC_GROW(prune->path, prune->nr + 1, prune->alloc);
1574 prune->path[prune->nr++] = xstrdup(sb->buf);
1578 static void read_revisions_from_stdin(struct rev_info *revs,
1579 struct cmdline_pathspec *prune)
1581 struct strbuf sb;
1582 int seen_dashdash = 0;
1584 strbuf_init(&sb, 1000);
1585 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1586 int len = sb.len;
1587 if (len && sb.buf[len - 1] == '\n')
1588 sb.buf[--len] = '\0';
1589 if (!len)
1590 break;
1591 if (sb.buf[0] == '-') {
1592 if (len == 2 && sb.buf[1] == '-') {
1593 seen_dashdash = 1;
1594 break;
1596 die("options not supported in --stdin mode");
1598 if (handle_revision_arg(sb.buf, revs, 0,
1599 REVARG_CANNOT_BE_FILENAME))
1600 die("bad revision '%s'", sb.buf);
1602 if (seen_dashdash)
1603 read_pathspec_from_stdin(revs, &sb, prune);
1604 strbuf_release(&sb);
1607 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1609 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1612 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1614 append_header_grep_pattern(&revs->grep_filter, field, pattern);
1617 static void add_message_grep(struct rev_info *revs, const char *pattern)
1619 add_grep(revs, pattern, GREP_PATTERN_BODY);
1622 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1623 int *unkc, const char **unkv)
1625 const char *arg = argv[0];
1626 const char *optarg;
1627 int argcount;
1629 /* pseudo revision arguments */
1630 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1631 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1632 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1633 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1634 !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
1635 starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
1636 starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
1638 unkv[(*unkc)++] = arg;
1639 return 1;
1642 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1643 revs->max_count = atoi(optarg);
1644 revs->no_walk = 0;
1645 return argcount;
1646 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1647 revs->skip_count = atoi(optarg);
1648 return argcount;
1649 } else if ((*arg == '-') && isdigit(arg[1])) {
1650 /* accept -<digit>, like traditional "head" */
1651 revs->max_count = atoi(arg + 1);
1652 revs->no_walk = 0;
1653 } else if (!strcmp(arg, "-n")) {
1654 if (argc <= 1)
1655 return error("-n requires an argument");
1656 revs->max_count = atoi(argv[1]);
1657 revs->no_walk = 0;
1658 return 2;
1659 } else if (starts_with(arg, "-n")) {
1660 revs->max_count = atoi(arg + 2);
1661 revs->no_walk = 0;
1662 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1663 revs->max_age = atoi(optarg);
1664 return argcount;
1665 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1666 revs->max_age = approxidate(optarg);
1667 return argcount;
1668 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1669 revs->max_age = approxidate(optarg);
1670 return argcount;
1671 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1672 revs->min_age = atoi(optarg);
1673 return argcount;
1674 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1675 revs->min_age = approxidate(optarg);
1676 return argcount;
1677 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1678 revs->min_age = approxidate(optarg);
1679 return argcount;
1680 } else if (!strcmp(arg, "--first-parent")) {
1681 revs->first_parent_only = 1;
1682 } else if (!strcmp(arg, "--ancestry-path")) {
1683 revs->ancestry_path = 1;
1684 revs->simplify_history = 0;
1685 revs->limited = 1;
1686 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1687 init_reflog_walk(&revs->reflog_info);
1688 } else if (!strcmp(arg, "--default")) {
1689 if (argc <= 1)
1690 return error("bad --default argument");
1691 revs->def = argv[1];
1692 return 2;
1693 } else if (!strcmp(arg, "--merge")) {
1694 revs->show_merge = 1;
1695 } else if (!strcmp(arg, "--topo-order")) {
1696 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
1697 revs->topo_order = 1;
1698 } else if (!strcmp(arg, "--simplify-merges")) {
1699 revs->simplify_merges = 1;
1700 revs->topo_order = 1;
1701 revs->rewrite_parents = 1;
1702 revs->simplify_history = 0;
1703 revs->limited = 1;
1704 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1705 revs->simplify_merges = 1;
1706 revs->topo_order = 1;
1707 revs->rewrite_parents = 1;
1708 revs->simplify_history = 0;
1709 revs->simplify_by_decoration = 1;
1710 revs->limited = 1;
1711 revs->prune = 1;
1712 load_ref_decorations(DECORATE_SHORT_REFS);
1713 } else if (!strcmp(arg, "--date-order")) {
1714 revs->sort_order = REV_SORT_BY_COMMIT_DATE;
1715 revs->topo_order = 1;
1716 } else if (!strcmp(arg, "--author-date-order")) {
1717 revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
1718 revs->topo_order = 1;
1719 } else if (starts_with(arg, "--early-output")) {
1720 int count = 100;
1721 switch (arg[14]) {
1722 case '=':
1723 count = atoi(arg+15);
1724 /* Fallthrough */
1725 case 0:
1726 revs->topo_order = 1;
1727 revs->early_output = count;
1729 } else if (!strcmp(arg, "--parents")) {
1730 revs->rewrite_parents = 1;
1731 revs->print_parents = 1;
1732 } else if (!strcmp(arg, "--dense")) {
1733 revs->dense = 1;
1734 } else if (!strcmp(arg, "--sparse")) {
1735 revs->dense = 0;
1736 } else if (!strcmp(arg, "--show-all")) {
1737 revs->show_all = 1;
1738 } else if (!strcmp(arg, "--remove-empty")) {
1739 revs->remove_empty_trees = 1;
1740 } else if (!strcmp(arg, "--merges")) {
1741 revs->min_parents = 2;
1742 } else if (!strcmp(arg, "--no-merges")) {
1743 revs->max_parents = 1;
1744 } else if (starts_with(arg, "--min-parents=")) {
1745 revs->min_parents = atoi(arg+14);
1746 } else if (starts_with(arg, "--no-min-parents")) {
1747 revs->min_parents = 0;
1748 } else if (starts_with(arg, "--max-parents=")) {
1749 revs->max_parents = atoi(arg+14);
1750 } else if (starts_with(arg, "--no-max-parents")) {
1751 revs->max_parents = -1;
1752 } else if (!strcmp(arg, "--boundary")) {
1753 revs->boundary = 1;
1754 } else if (!strcmp(arg, "--left-right")) {
1755 revs->left_right = 1;
1756 } else if (!strcmp(arg, "--left-only")) {
1757 if (revs->right_only)
1758 die("--left-only is incompatible with --right-only"
1759 " or --cherry");
1760 revs->left_only = 1;
1761 } else if (!strcmp(arg, "--right-only")) {
1762 if (revs->left_only)
1763 die("--right-only is incompatible with --left-only");
1764 revs->right_only = 1;
1765 } else if (!strcmp(arg, "--cherry")) {
1766 if (revs->left_only)
1767 die("--cherry is incompatible with --left-only");
1768 revs->cherry_mark = 1;
1769 revs->right_only = 1;
1770 revs->max_parents = 1;
1771 revs->limited = 1;
1772 } else if (!strcmp(arg, "--count")) {
1773 revs->count = 1;
1774 } else if (!strcmp(arg, "--cherry-mark")) {
1775 if (revs->cherry_pick)
1776 die("--cherry-mark is incompatible with --cherry-pick");
1777 revs->cherry_mark = 1;
1778 revs->limited = 1; /* needs limit_list() */
1779 } else if (!strcmp(arg, "--cherry-pick")) {
1780 if (revs->cherry_mark)
1781 die("--cherry-pick is incompatible with --cherry-mark");
1782 revs->cherry_pick = 1;
1783 revs->limited = 1;
1784 } else if (!strcmp(arg, "--objects")) {
1785 revs->tag_objects = 1;
1786 revs->tree_objects = 1;
1787 revs->blob_objects = 1;
1788 } else if (!strcmp(arg, "--objects-edge")) {
1789 revs->tag_objects = 1;
1790 revs->tree_objects = 1;
1791 revs->blob_objects = 1;
1792 revs->edge_hint = 1;
1793 } else if (!strcmp(arg, "--verify-objects")) {
1794 revs->tag_objects = 1;
1795 revs->tree_objects = 1;
1796 revs->blob_objects = 1;
1797 revs->verify_objects = 1;
1798 } else if (!strcmp(arg, "--unpacked")) {
1799 revs->unpacked = 1;
1800 } else if (starts_with(arg, "--unpacked=")) {
1801 die("--unpacked=<packfile> no longer supported.");
1802 } else if (!strcmp(arg, "-r")) {
1803 revs->diff = 1;
1804 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1805 } else if (!strcmp(arg, "-t")) {
1806 revs->diff = 1;
1807 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1808 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1809 } else if (!strcmp(arg, "-m")) {
1810 revs->ignore_merges = 0;
1811 } else if (!strcmp(arg, "-c")) {
1812 revs->diff = 1;
1813 revs->dense_combined_merges = 0;
1814 revs->combine_merges = 1;
1815 } else if (!strcmp(arg, "--cc")) {
1816 revs->diff = 1;
1817 revs->dense_combined_merges = 1;
1818 revs->combine_merges = 1;
1819 } else if (!strcmp(arg, "-v")) {
1820 revs->verbose_header = 1;
1821 } else if (!strcmp(arg, "--pretty")) {
1822 revs->verbose_header = 1;
1823 revs->pretty_given = 1;
1824 get_commit_format(arg+8, revs);
1825 } else if (starts_with(arg, "--pretty=") || starts_with(arg, "--format=")) {
1827 * Detached form ("--pretty X" as opposed to "--pretty=X")
1828 * not allowed, since the argument is optional.
1830 revs->verbose_header = 1;
1831 revs->pretty_given = 1;
1832 get_commit_format(arg+9, revs);
1833 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
1834 revs->show_notes = 1;
1835 revs->show_notes_given = 1;
1836 revs->notes_opt.use_default_notes = 1;
1837 } else if (!strcmp(arg, "--show-signature")) {
1838 revs->show_signature = 1;
1839 } else if (starts_with(arg, "--show-notes=") ||
1840 starts_with(arg, "--notes=")) {
1841 struct strbuf buf = STRBUF_INIT;
1842 revs->show_notes = 1;
1843 revs->show_notes_given = 1;
1844 if (starts_with(arg, "--show-notes")) {
1845 if (revs->notes_opt.use_default_notes < 0)
1846 revs->notes_opt.use_default_notes = 1;
1847 strbuf_addstr(&buf, arg+13);
1849 else
1850 strbuf_addstr(&buf, arg+8);
1851 expand_notes_ref(&buf);
1852 string_list_append(&revs->notes_opt.extra_notes_refs,
1853 strbuf_detach(&buf, NULL));
1854 } else if (!strcmp(arg, "--no-notes")) {
1855 revs->show_notes = 0;
1856 revs->show_notes_given = 1;
1857 revs->notes_opt.use_default_notes = -1;
1858 /* we have been strdup'ing ourselves, so trick
1859 * string_list into free()ing strings */
1860 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1861 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1862 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
1863 } else if (!strcmp(arg, "--standard-notes")) {
1864 revs->show_notes_given = 1;
1865 revs->notes_opt.use_default_notes = 1;
1866 } else if (!strcmp(arg, "--no-standard-notes")) {
1867 revs->notes_opt.use_default_notes = 0;
1868 } else if (!strcmp(arg, "--oneline")) {
1869 revs->verbose_header = 1;
1870 get_commit_format("oneline", revs);
1871 revs->pretty_given = 1;
1872 revs->abbrev_commit = 1;
1873 } else if (!strcmp(arg, "--graph")) {
1874 revs->topo_order = 1;
1875 revs->rewrite_parents = 1;
1876 revs->graph = graph_init(revs);
1877 } else if (!strcmp(arg, "--root")) {
1878 revs->show_root_diff = 1;
1879 } else if (!strcmp(arg, "--no-commit-id")) {
1880 revs->no_commit_id = 1;
1881 } else if (!strcmp(arg, "--always")) {
1882 revs->always_show_header = 1;
1883 } else if (!strcmp(arg, "--no-abbrev")) {
1884 revs->abbrev = 0;
1885 } else if (!strcmp(arg, "--abbrev")) {
1886 revs->abbrev = DEFAULT_ABBREV;
1887 } else if (starts_with(arg, "--abbrev=")) {
1888 revs->abbrev = strtoul(arg + 9, NULL, 10);
1889 if (revs->abbrev < MINIMUM_ABBREV)
1890 revs->abbrev = MINIMUM_ABBREV;
1891 else if (revs->abbrev > 40)
1892 revs->abbrev = 40;
1893 } else if (!strcmp(arg, "--abbrev-commit")) {
1894 revs->abbrev_commit = 1;
1895 revs->abbrev_commit_given = 1;
1896 } else if (!strcmp(arg, "--no-abbrev-commit")) {
1897 revs->abbrev_commit = 0;
1898 } else if (!strcmp(arg, "--full-diff")) {
1899 revs->diff = 1;
1900 revs->full_diff = 1;
1901 } else if (!strcmp(arg, "--full-history")) {
1902 revs->simplify_history = 0;
1903 } else if (!strcmp(arg, "--relative-date")) {
1904 revs->date_mode = DATE_RELATIVE;
1905 revs->date_mode_explicit = 1;
1906 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1907 revs->date_mode = parse_date_format(optarg);
1908 revs->date_mode_explicit = 1;
1909 return argcount;
1910 } else if (!strcmp(arg, "--log-size")) {
1911 revs->show_log_size = 1;
1914 * Grepping the commit log
1916 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1917 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1918 return argcount;
1919 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1920 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1921 return argcount;
1922 } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
1923 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
1924 return argcount;
1925 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1926 add_message_grep(revs, optarg);
1927 return argcount;
1928 } else if (!strcmp(arg, "--grep-debug")) {
1929 revs->grep_filter.debug = 1;
1930 } else if (!strcmp(arg, "--basic-regexp")) {
1931 grep_set_pattern_type_option(GREP_PATTERN_TYPE_BRE, &revs->grep_filter);
1932 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1933 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE, &revs->grep_filter);
1934 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1935 revs->grep_filter.regflags |= REG_ICASE;
1936 DIFF_OPT_SET(&revs->diffopt, PICKAXE_IGNORE_CASE);
1937 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1938 grep_set_pattern_type_option(GREP_PATTERN_TYPE_FIXED, &revs->grep_filter);
1939 } else if (!strcmp(arg, "--perl-regexp")) {
1940 grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE, &revs->grep_filter);
1941 } else if (!strcmp(arg, "--all-match")) {
1942 revs->grep_filter.all_match = 1;
1943 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1944 if (strcmp(optarg, "none"))
1945 git_log_output_encoding = xstrdup(optarg);
1946 else
1947 git_log_output_encoding = "";
1948 return argcount;
1949 } else if (!strcmp(arg, "--reverse")) {
1950 revs->reverse ^= 1;
1951 } else if (!strcmp(arg, "--children")) {
1952 revs->children.name = "children";
1953 revs->limited = 1;
1954 } else if (!strcmp(arg, "--ignore-missing")) {
1955 revs->ignore_missing = 1;
1956 } else {
1957 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1958 if (!opts)
1959 unkv[(*unkc)++] = arg;
1960 return opts;
1963 return 1;
1966 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1967 const struct option *options,
1968 const char * const usagestr[])
1970 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1971 &ctx->cpidx, ctx->out);
1972 if (n <= 0) {
1973 error("unknown option `%s'", ctx->argv[0]);
1974 usage_with_options(usagestr, options);
1976 ctx->argv += n;
1977 ctx->argc -= n;
1980 static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1982 return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
1985 static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1987 return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
1990 static int handle_revision_pseudo_opt(const char *submodule,
1991 struct rev_info *revs,
1992 int argc, const char **argv, int *flags)
1994 const char *arg = argv[0];
1995 const char *optarg;
1996 int argcount;
1999 * NOTE!
2001 * Commands like "git shortlog" will not accept the options below
2002 * unless parse_revision_opt queues them (as opposed to erroring
2003 * out).
2005 * When implementing your new pseudo-option, remember to
2006 * register it in the list at the top of handle_revision_opt.
2008 if (!strcmp(arg, "--all")) {
2009 handle_refs(submodule, revs, *flags, for_each_ref_submodule);
2010 handle_refs(submodule, revs, *flags, head_ref_submodule);
2011 clear_ref_exclusion(&revs->ref_excludes);
2012 } else if (!strcmp(arg, "--branches")) {
2013 handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
2014 clear_ref_exclusion(&revs->ref_excludes);
2015 } else if (!strcmp(arg, "--bisect")) {
2016 handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
2017 handle_refs(submodule, revs, *flags ^ (UNINTERESTING | BOTTOM), for_each_good_bisect_ref);
2018 revs->bisect = 1;
2019 } else if (!strcmp(arg, "--tags")) {
2020 handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
2021 clear_ref_exclusion(&revs->ref_excludes);
2022 } else if (!strcmp(arg, "--remotes")) {
2023 handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
2024 clear_ref_exclusion(&revs->ref_excludes);
2025 } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
2026 struct all_refs_cb cb;
2027 init_all_refs_cb(&cb, revs, *flags);
2028 for_each_glob_ref(handle_one_ref, optarg, &cb);
2029 clear_ref_exclusion(&revs->ref_excludes);
2030 return argcount;
2031 } else if ((argcount = parse_long_opt("exclude", argv, &optarg))) {
2032 add_ref_exclusion(&revs->ref_excludes, optarg);
2033 return argcount;
2034 } else if (starts_with(arg, "--branches=")) {
2035 struct all_refs_cb cb;
2036 init_all_refs_cb(&cb, revs, *flags);
2037 for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
2038 clear_ref_exclusion(&revs->ref_excludes);
2039 } else if (starts_with(arg, "--tags=")) {
2040 struct all_refs_cb cb;
2041 init_all_refs_cb(&cb, revs, *flags);
2042 for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
2043 clear_ref_exclusion(&revs->ref_excludes);
2044 } else if (starts_with(arg, "--remotes=")) {
2045 struct all_refs_cb cb;
2046 init_all_refs_cb(&cb, revs, *flags);
2047 for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
2048 clear_ref_exclusion(&revs->ref_excludes);
2049 } else if (!strcmp(arg, "--reflog")) {
2050 handle_reflog(revs, *flags);
2051 } else if (!strcmp(arg, "--not")) {
2052 *flags ^= UNINTERESTING | BOTTOM;
2053 } else if (!strcmp(arg, "--no-walk")) {
2054 revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2055 } else if (starts_with(arg, "--no-walk=")) {
2057 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2058 * not allowed, since the argument is optional.
2060 if (!strcmp(arg + 10, "sorted"))
2061 revs->no_walk = REVISION_WALK_NO_WALK_SORTED;
2062 else if (!strcmp(arg + 10, "unsorted"))
2063 revs->no_walk = REVISION_WALK_NO_WALK_UNSORTED;
2064 else
2065 return error("invalid argument to --no-walk");
2066 } else if (!strcmp(arg, "--do-walk")) {
2067 revs->no_walk = 0;
2068 } else {
2069 return 0;
2072 return 1;
2076 * Parse revision information, filling in the "rev_info" structure,
2077 * and removing the used arguments from the argument list.
2079 * Returns the number of arguments left that weren't recognized
2080 * (which are also moved to the head of the argument list)
2082 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
2084 int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0, revarg_opt;
2085 struct cmdline_pathspec prune_data;
2086 const char *submodule = NULL;
2088 memset(&prune_data, 0, sizeof(prune_data));
2089 if (opt)
2090 submodule = opt->submodule;
2092 /* First, search for "--" */
2093 if (opt && opt->assume_dashdash) {
2094 seen_dashdash = 1;
2095 } else {
2096 seen_dashdash = 0;
2097 for (i = 1; i < argc; i++) {
2098 const char *arg = argv[i];
2099 if (strcmp(arg, "--"))
2100 continue;
2101 argv[i] = NULL;
2102 argc = i;
2103 if (argv[i + 1])
2104 append_prune_data(&prune_data, argv + i + 1);
2105 seen_dashdash = 1;
2106 break;
2110 /* Second, deal with arguments and options */
2111 flags = 0;
2112 revarg_opt = opt ? opt->revarg_opt : 0;
2113 if (seen_dashdash)
2114 revarg_opt |= REVARG_CANNOT_BE_FILENAME;
2115 read_from_stdin = 0;
2116 for (left = i = 1; i < argc; i++) {
2117 const char *arg = argv[i];
2118 if (*arg == '-') {
2119 int opts;
2121 opts = handle_revision_pseudo_opt(submodule,
2122 revs, argc - i, argv + i,
2123 &flags);
2124 if (opts > 0) {
2125 i += opts - 1;
2126 continue;
2129 if (!strcmp(arg, "--stdin")) {
2130 if (revs->disable_stdin) {
2131 argv[left++] = arg;
2132 continue;
2134 if (read_from_stdin++)
2135 die("--stdin given twice?");
2136 read_revisions_from_stdin(revs, &prune_data);
2137 continue;
2140 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
2141 if (opts > 0) {
2142 i += opts - 1;
2143 continue;
2145 if (opts < 0)
2146 exit(128);
2147 continue;
2151 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
2152 int j;
2153 if (seen_dashdash || *arg == '^')
2154 die("bad revision '%s'", arg);
2156 /* If we didn't have a "--":
2157 * (1) all filenames must exist;
2158 * (2) all rev-args must not be interpretable
2159 * as a valid filename.
2160 * but the latter we have checked in the main loop.
2162 for (j = i; j < argc; j++)
2163 verify_filename(revs->prefix, argv[j], j == i);
2165 append_prune_data(&prune_data, argv + i);
2166 break;
2168 else
2169 got_rev_arg = 1;
2172 if (prune_data.nr) {
2174 * If we need to introduce the magic "a lone ':' means no
2175 * pathspec whatsoever", here is the place to do so.
2177 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2178 * prune_data.nr = 0;
2179 * prune_data.alloc = 0;
2180 * free(prune_data.path);
2181 * prune_data.path = NULL;
2182 * } else {
2183 * terminate prune_data.alloc with NULL and
2184 * call init_pathspec() to set revs->prune_data here.
2187 ALLOC_GROW(prune_data.path, prune_data.nr + 1, prune_data.alloc);
2188 prune_data.path[prune_data.nr++] = NULL;
2189 parse_pathspec(&revs->prune_data, 0, 0,
2190 revs->prefix, prune_data.path);
2193 if (revs->def == NULL)
2194 revs->def = opt ? opt->def : NULL;
2195 if (opt && opt->tweak)
2196 opt->tweak(revs, opt);
2197 if (revs->show_merge)
2198 prepare_show_merge(revs);
2199 if (revs->def && !revs->pending.nr && !got_rev_arg) {
2200 unsigned char sha1[20];
2201 struct object *object;
2202 struct object_context oc;
2203 if (get_sha1_with_context(revs->def, 0, sha1, &oc))
2204 die("bad default revision '%s'", revs->def);
2205 object = get_reference(revs, revs->def, sha1, 0);
2206 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
2209 /* Did the user ask for any diff output? Run the diff! */
2210 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2211 revs->diff = 1;
2213 /* Pickaxe, diff-filter and rename following need diffs */
2214 if (revs->diffopt.pickaxe ||
2215 revs->diffopt.filter ||
2216 DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
2217 revs->diff = 1;
2219 if (revs->topo_order)
2220 revs->limited = 1;
2222 if (revs->prune_data.nr) {
2223 copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
2224 /* Can't prune commits with rename following: the paths change.. */
2225 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
2226 revs->prune = 1;
2227 if (!revs->full_diff)
2228 copy_pathspec(&revs->diffopt.pathspec,
2229 &revs->prune_data);
2231 if (revs->combine_merges)
2232 revs->ignore_merges = 0;
2233 revs->diffopt.abbrev = revs->abbrev;
2235 if (revs->line_level_traverse) {
2236 revs->limited = 1;
2237 revs->topo_order = 1;
2240 diff_setup_done(&revs->diffopt);
2242 grep_commit_pattern_type(GREP_PATTERN_TYPE_UNSPECIFIED,
2243 &revs->grep_filter);
2244 compile_grep_patterns(&revs->grep_filter);
2246 if (revs->reverse && revs->reflog_info)
2247 die("cannot combine --reverse with --walk-reflogs");
2248 if (revs->rewrite_parents && revs->children.name)
2249 die("cannot combine --parents and --children");
2252 * Limitations on the graph functionality
2254 if (revs->reverse && revs->graph)
2255 die("cannot combine --reverse with --graph");
2257 if (revs->reflog_info && revs->graph)
2258 die("cannot combine --walk-reflogs with --graph");
2259 if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
2260 die("cannot use --grep-reflog without --walk-reflogs");
2262 return left;
2265 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2267 struct commit_list *l = xcalloc(1, sizeof(*l));
2269 l->item = child;
2270 l->next = add_decoration(&revs->children, &parent->object, l);
2273 static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
2275 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2276 struct commit_list **pp, *p;
2277 int surviving_parents;
2279 /* Examine existing parents while marking ones we have seen... */
2280 pp = &commit->parents;
2281 surviving_parents = 0;
2282 while ((p = *pp) != NULL) {
2283 struct commit *parent = p->item;
2284 if (parent->object.flags & TMP_MARK) {
2285 *pp = p->next;
2286 if (ts)
2287 compact_treesame(revs, commit, surviving_parents);
2288 continue;
2290 parent->object.flags |= TMP_MARK;
2291 surviving_parents++;
2292 pp = &p->next;
2294 /* clear the temporary mark */
2295 for (p = commit->parents; p; p = p->next) {
2296 p->item->object.flags &= ~TMP_MARK;
2298 /* no update_treesame() - removing duplicates can't affect TREESAME */
2299 return surviving_parents;
2302 struct merge_simplify_state {
2303 struct commit *simplified;
2306 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2308 struct merge_simplify_state *st;
2310 st = lookup_decoration(&revs->merge_simplification, &commit->object);
2311 if (!st) {
2312 st = xcalloc(1, sizeof(*st));
2313 add_decoration(&revs->merge_simplification, &commit->object, st);
2315 return st;
2318 static int mark_redundant_parents(struct rev_info *revs, struct commit *commit)
2320 struct commit_list *h = reduce_heads(commit->parents);
2321 int i = 0, marked = 0;
2322 struct commit_list *po, *pn;
2324 /* Want these for sanity-checking only */
2325 int orig_cnt = commit_list_count(commit->parents);
2326 int cnt = commit_list_count(h);
2329 * Not ready to remove items yet, just mark them for now, based
2330 * on the output of reduce_heads(). reduce_heads outputs the reduced
2331 * set in its original order, so this isn't too hard.
2333 po = commit->parents;
2334 pn = h;
2335 while (po) {
2336 if (pn && po->item == pn->item) {
2337 pn = pn->next;
2338 i++;
2339 } else {
2340 po->item->object.flags |= TMP_MARK;
2341 marked++;
2343 po=po->next;
2346 if (i != cnt || cnt+marked != orig_cnt)
2347 die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
2349 free_commit_list(h);
2351 return marked;
2354 static int mark_treesame_root_parents(struct rev_info *revs, struct commit *commit)
2356 struct commit_list *p;
2357 int marked = 0;
2359 for (p = commit->parents; p; p = p->next) {
2360 struct commit *parent = p->item;
2361 if (!parent->parents && (parent->object.flags & TREESAME)) {
2362 parent->object.flags |= TMP_MARK;
2363 marked++;
2367 return marked;
2371 * Awkward naming - this means one parent we are TREESAME to.
2372 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
2373 * empty tree). Better name suggestions?
2375 static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
2377 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
2378 struct commit *unmarked = NULL, *marked = NULL;
2379 struct commit_list *p;
2380 unsigned n;
2382 for (p = commit->parents, n = 0; p; p = p->next, n++) {
2383 if (ts->treesame[n]) {
2384 if (p->item->object.flags & TMP_MARK) {
2385 if (!marked)
2386 marked = p->item;
2387 } else {
2388 if (!unmarked) {
2389 unmarked = p->item;
2390 break;
2397 * If we are TREESAME to a marked-for-deletion parent, but not to any
2398 * unmarked parents, unmark the first TREESAME parent. This is the
2399 * parent that the default simplify_history==1 scan would have followed,
2400 * and it doesn't make sense to omit that path when asking for a
2401 * simplified full history. Retaining it improves the chances of
2402 * understanding odd missed merges that took an old version of a file.
2404 * Example:
2406 * I--------*X A modified the file, but mainline merge X used
2407 * \ / "-s ours", so took the version from I. X is
2408 * `-*A--' TREESAME to I and !TREESAME to A.
2410 * Default log from X would produce "I". Without this check,
2411 * --full-history --simplify-merges would produce "I-A-X", showing
2412 * the merge commit X and that it changed A, but not making clear that
2413 * it had just taken the I version. With this check, the topology above
2414 * is retained.
2416 * Note that it is possible that the simplification chooses a different
2417 * TREESAME parent from the default, in which case this test doesn't
2418 * activate, and we _do_ drop the default parent. Example:
2420 * I------X A modified the file, but it was reverted in B,
2421 * \ / meaning mainline merge X is TREESAME to both
2422 * *A-*B parents.
2424 * Default log would produce "I" by following the first parent;
2425 * --full-history --simplify-merges will produce "I-A-B". But this is a
2426 * reasonable result - it presents a logical full history leading from
2427 * I to X, and X is not an important merge.
2429 if (!unmarked && marked) {
2430 marked->object.flags &= ~TMP_MARK;
2431 return 1;
2434 return 0;
2437 static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
2439 struct commit_list **pp, *p;
2440 int nth_parent, removed = 0;
2442 pp = &commit->parents;
2443 nth_parent = 0;
2444 while ((p = *pp) != NULL) {
2445 struct commit *parent = p->item;
2446 if (parent->object.flags & TMP_MARK) {
2447 parent->object.flags &= ~TMP_MARK;
2448 *pp = p->next;
2449 free(p);
2450 removed++;
2451 compact_treesame(revs, commit, nth_parent);
2452 continue;
2454 pp = &p->next;
2455 nth_parent++;
2458 /* Removing parents can only increase TREESAMEness */
2459 if (removed && !(commit->object.flags & TREESAME))
2460 update_treesame(revs, commit);
2462 return nth_parent;
2465 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
2467 struct commit_list *p;
2468 struct commit *parent;
2469 struct merge_simplify_state *st, *pst;
2470 int cnt;
2472 st = locate_simplify_state(revs, commit);
2475 * Have we handled this one?
2477 if (st->simplified)
2478 return tail;
2481 * An UNINTERESTING commit simplifies to itself, so does a
2482 * root commit. We do not rewrite parents of such commit
2483 * anyway.
2485 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
2486 st->simplified = commit;
2487 return tail;
2491 * Do we know what commit all of our parents that matter
2492 * should be rewritten to? Otherwise we are not ready to
2493 * rewrite this one yet.
2495 for (cnt = 0, p = commit->parents; p; p = p->next) {
2496 pst = locate_simplify_state(revs, p->item);
2497 if (!pst->simplified) {
2498 tail = &commit_list_insert(p->item, tail)->next;
2499 cnt++;
2501 if (revs->first_parent_only)
2502 break;
2504 if (cnt) {
2505 tail = &commit_list_insert(commit, tail)->next;
2506 return tail;
2510 * Rewrite our list of parents. Note that this cannot
2511 * affect our TREESAME flags in any way - a commit is
2512 * always TREESAME to its simplification.
2514 for (p = commit->parents; p; p = p->next) {
2515 pst = locate_simplify_state(revs, p->item);
2516 p->item = pst->simplified;
2517 if (revs->first_parent_only)
2518 break;
2521 if (revs->first_parent_only)
2522 cnt = 1;
2523 else
2524 cnt = remove_duplicate_parents(revs, commit);
2527 * It is possible that we are a merge and one side branch
2528 * does not have any commit that touches the given paths;
2529 * in such a case, the immediate parent from that branch
2530 * will be rewritten to be the merge base.
2532 * o----X X: the commit we are looking at;
2533 * / / o: a commit that touches the paths;
2534 * ---o----'
2536 * Further, a merge of an independent branch that doesn't
2537 * touch the path will reduce to a treesame root parent:
2539 * ----o----X X: the commit we are looking at;
2540 * / o: a commit that touches the paths;
2541 * r r: a root commit not touching the paths
2543 * Detect and simplify both cases.
2545 if (1 < cnt) {
2546 int marked = mark_redundant_parents(revs, commit);
2547 marked += mark_treesame_root_parents(revs, commit);
2548 if (marked)
2549 marked -= leave_one_treesame_to_parent(revs, commit);
2550 if (marked)
2551 cnt = remove_marked_parents(revs, commit);
2555 * A commit simplifies to itself if it is a root, if it is
2556 * UNINTERESTING, if it touches the given paths, or if it is a
2557 * merge and its parents don't simplify to one relevant commit
2558 * (the first two cases are already handled at the beginning of
2559 * this function).
2561 * Otherwise, it simplifies to what its sole relevant parent
2562 * simplifies to.
2564 if (!cnt ||
2565 (commit->object.flags & UNINTERESTING) ||
2566 !(commit->object.flags & TREESAME) ||
2567 (parent = one_relevant_parent(revs, commit->parents)) == NULL)
2568 st->simplified = commit;
2569 else {
2570 pst = locate_simplify_state(revs, parent);
2571 st->simplified = pst->simplified;
2573 return tail;
2576 static void simplify_merges(struct rev_info *revs)
2578 struct commit_list *list, *next;
2579 struct commit_list *yet_to_do, **tail;
2580 struct commit *commit;
2582 if (!revs->prune)
2583 return;
2585 /* feed the list reversed */
2586 yet_to_do = NULL;
2587 for (list = revs->commits; list; list = next) {
2588 commit = list->item;
2589 next = list->next;
2591 * Do not free(list) here yet; the original list
2592 * is used later in this function.
2594 commit_list_insert(commit, &yet_to_do);
2596 while (yet_to_do) {
2597 list = yet_to_do;
2598 yet_to_do = NULL;
2599 tail = &yet_to_do;
2600 while (list) {
2601 commit = list->item;
2602 next = list->next;
2603 free(list);
2604 list = next;
2605 tail = simplify_one(revs, commit, tail);
2609 /* clean up the result, removing the simplified ones */
2610 list = revs->commits;
2611 revs->commits = NULL;
2612 tail = &revs->commits;
2613 while (list) {
2614 struct merge_simplify_state *st;
2616 commit = list->item;
2617 next = list->next;
2618 free(list);
2619 list = next;
2620 st = locate_simplify_state(revs, commit);
2621 if (st->simplified == commit)
2622 tail = &commit_list_insert(commit, tail)->next;
2626 static void set_children(struct rev_info *revs)
2628 struct commit_list *l;
2629 for (l = revs->commits; l; l = l->next) {
2630 struct commit *commit = l->item;
2631 struct commit_list *p;
2633 for (p = commit->parents; p; p = p->next)
2634 add_child(revs, p->item, commit);
2638 void reset_revision_walk(void)
2640 clear_object_flags(SEEN | ADDED | SHOWN);
2643 int prepare_revision_walk(struct rev_info *revs)
2645 int nr = revs->pending.nr;
2646 struct object_array_entry *e, *list;
2647 struct commit_list **next = &revs->commits;
2649 e = list = revs->pending.objects;
2650 revs->pending.nr = 0;
2651 revs->pending.alloc = 0;
2652 revs->pending.objects = NULL;
2653 while (--nr >= 0) {
2654 struct commit *commit = handle_commit(revs, e->item, e->name);
2655 if (commit) {
2656 if (!(commit->object.flags & SEEN)) {
2657 commit->object.flags |= SEEN;
2658 next = commit_list_append(commit, next);
2661 e++;
2663 if (!revs->leak_pending)
2664 free(list);
2666 /* Signal whether we need per-parent treesame decoration */
2667 if (revs->simplify_merges ||
2668 (revs->limited && limiting_can_increase_treesame(revs)))
2669 revs->treesame.name = "treesame";
2671 if (revs->no_walk != REVISION_WALK_NO_WALK_UNSORTED)
2672 commit_list_sort_by_date(&revs->commits);
2673 if (revs->no_walk)
2674 return 0;
2675 if (revs->limited)
2676 if (limit_list(revs) < 0)
2677 return -1;
2678 if (revs->topo_order)
2679 sort_in_topological_order(&revs->commits, revs->sort_order);
2680 if (revs->line_level_traverse)
2681 line_log_filter(revs);
2682 if (revs->simplify_merges)
2683 simplify_merges(revs);
2684 if (revs->children.name)
2685 set_children(revs);
2686 return 0;
2689 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
2691 struct commit_list *cache = NULL;
2693 for (;;) {
2694 struct commit *p = *pp;
2695 if (!revs->limited)
2696 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
2697 return rewrite_one_error;
2698 if (p->object.flags & UNINTERESTING)
2699 return rewrite_one_ok;
2700 if (!(p->object.flags & TREESAME))
2701 return rewrite_one_ok;
2702 if (!p->parents)
2703 return rewrite_one_noparents;
2704 if ((p = one_relevant_parent(revs, p->parents)) == NULL)
2705 return rewrite_one_ok;
2706 *pp = p;
2710 int rewrite_parents(struct rev_info *revs, struct commit *commit,
2711 rewrite_parent_fn_t rewrite_parent)
2713 struct commit_list **pp = &commit->parents;
2714 while (*pp) {
2715 struct commit_list *parent = *pp;
2716 switch (rewrite_parent(revs, &parent->item)) {
2717 case rewrite_one_ok:
2718 break;
2719 case rewrite_one_noparents:
2720 *pp = parent->next;
2721 continue;
2722 case rewrite_one_error:
2723 return -1;
2725 pp = &parent->next;
2727 remove_duplicate_parents(revs, commit);
2728 return 0;
2731 static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
2733 char *person, *endp;
2734 size_t len, namelen, maillen;
2735 const char *name;
2736 const char *mail;
2737 struct ident_split ident;
2739 person = strstr(buf->buf, what);
2740 if (!person)
2741 return 0;
2743 person += strlen(what);
2744 endp = strchr(person, '\n');
2745 if (!endp)
2746 return 0;
2748 len = endp - person;
2750 if (split_ident_line(&ident, person, len))
2751 return 0;
2753 mail = ident.mail_begin;
2754 maillen = ident.mail_end - ident.mail_begin;
2755 name = ident.name_begin;
2756 namelen = ident.name_end - ident.name_begin;
2758 if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
2759 struct strbuf namemail = STRBUF_INIT;
2761 strbuf_addf(&namemail, "%.*s <%.*s>",
2762 (int)namelen, name, (int)maillen, mail);
2764 strbuf_splice(buf, ident.name_begin - buf->buf,
2765 ident.mail_end - ident.name_begin + 1,
2766 namemail.buf, namemail.len);
2768 strbuf_release(&namemail);
2770 return 1;
2773 return 0;
2776 static int commit_match(struct commit *commit, struct rev_info *opt)
2778 int retval;
2779 const char *encoding;
2780 char *message;
2781 struct strbuf buf = STRBUF_INIT;
2783 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
2784 return 1;
2786 /* Prepend "fake" headers as needed */
2787 if (opt->grep_filter.use_reflog_filter) {
2788 strbuf_addstr(&buf, "reflog ");
2789 get_reflog_message(&buf, opt->reflog_info);
2790 strbuf_addch(&buf, '\n');
2794 * We grep in the user's output encoding, under the assumption that it
2795 * is the encoding they are most likely to write their grep pattern
2796 * for. In addition, it means we will match the "notes" encoding below,
2797 * so we will not end up with a buffer that has two different encodings
2798 * in it.
2800 encoding = get_log_output_encoding();
2801 message = logmsg_reencode(commit, NULL, encoding);
2803 /* Copy the commit to temporary if we are using "fake" headers */
2804 if (buf.len)
2805 strbuf_addstr(&buf, message);
2807 if (opt->grep_filter.header_list && opt->mailmap) {
2808 if (!buf.len)
2809 strbuf_addstr(&buf, message);
2811 commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
2812 commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
2815 /* Append "fake" message parts as needed */
2816 if (opt->show_notes) {
2817 if (!buf.len)
2818 strbuf_addstr(&buf, message);
2819 format_display_notes(commit->object.sha1, &buf, encoding, 1);
2822 /* Find either in the original commit message, or in the temporary */
2823 if (buf.len)
2824 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
2825 else
2826 retval = grep_buffer(&opt->grep_filter,
2827 message, strlen(message));
2828 strbuf_release(&buf);
2829 logmsg_free(message, commit);
2830 return retval;
2833 static inline int want_ancestry(const struct rev_info *revs)
2835 return (revs->rewrite_parents || revs->children.name);
2838 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
2840 if (commit->object.flags & SHOWN)
2841 return commit_ignore;
2842 if (revs->unpacked && has_sha1_pack(commit->object.sha1))
2843 return commit_ignore;
2844 if (revs->show_all)
2845 return commit_show;
2846 if (commit->object.flags & UNINTERESTING)
2847 return commit_ignore;
2848 if (revs->min_age != -1 && (commit->date > revs->min_age))
2849 return commit_ignore;
2850 if (revs->min_parents || (revs->max_parents >= 0)) {
2851 int n = commit_list_count(commit->parents);
2852 if ((n < revs->min_parents) ||
2853 ((revs->max_parents >= 0) && (n > revs->max_parents)))
2854 return commit_ignore;
2856 if (!commit_match(commit, revs))
2857 return commit_ignore;
2858 if (revs->prune && revs->dense) {
2859 /* Commit without changes? */
2860 if (commit->object.flags & TREESAME) {
2861 int n;
2862 struct commit_list *p;
2863 /* drop merges unless we want parenthood */
2864 if (!want_ancestry(revs))
2865 return commit_ignore;
2867 * If we want ancestry, then need to keep any merges
2868 * between relevant commits to tie together topology.
2869 * For consistency with TREESAME and simplification
2870 * use "relevant" here rather than just INTERESTING,
2871 * to treat bottom commit(s) as part of the topology.
2873 for (n = 0, p = commit->parents; p; p = p->next)
2874 if (relevant_commit(p->item))
2875 if (++n >= 2)
2876 return commit_show;
2877 return commit_ignore;
2880 return commit_show;
2883 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2885 enum commit_action action = get_commit_action(revs, commit);
2887 if (action == commit_show &&
2888 !revs->show_all &&
2889 revs->prune && revs->dense && want_ancestry(revs)) {
2891 * --full-diff on simplified parents is no good: it
2892 * will show spurious changes from the commits that
2893 * were elided. So we save the parents on the side
2894 * when --full-diff is in effect.
2896 if (revs->full_diff)
2897 save_parents(revs, commit);
2898 if (rewrite_parents(revs, commit, rewrite_one) < 0)
2899 return commit_error;
2901 return action;
2904 static struct commit *get_revision_1(struct rev_info *revs)
2906 if (!revs->commits)
2907 return NULL;
2909 do {
2910 struct commit_list *entry = revs->commits;
2911 struct commit *commit = entry->item;
2913 revs->commits = entry->next;
2914 free(entry);
2916 if (revs->reflog_info) {
2917 save_parents(revs, commit);
2918 fake_reflog_parent(revs->reflog_info, commit);
2919 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2923 * If we haven't done the list limiting, we need to look at
2924 * the parents here. We also need to do the date-based limiting
2925 * that we'd otherwise have done in limit_list().
2927 if (!revs->limited) {
2928 if (revs->max_age != -1 &&
2929 (commit->date < revs->max_age))
2930 continue;
2931 if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
2932 die("Failed to traverse parents of commit %s",
2933 sha1_to_hex(commit->object.sha1));
2936 switch (simplify_commit(revs, commit)) {
2937 case commit_ignore:
2938 continue;
2939 case commit_error:
2940 die("Failed to simplify parents of commit %s",
2941 sha1_to_hex(commit->object.sha1));
2942 default:
2943 return commit;
2945 } while (revs->commits);
2946 return NULL;
2950 * Return true for entries that have not yet been shown. (This is an
2951 * object_array_each_func_t.)
2953 static int entry_unshown(struct object_array_entry *entry, void *cb_data_unused)
2955 return !(entry->item->flags & SHOWN);
2959 * If array is on the verge of a realloc, garbage-collect any entries
2960 * that have already been shown to try to free up some space.
2962 static void gc_boundary(struct object_array *array)
2964 if (array->nr == array->alloc)
2965 object_array_filter(array, entry_unshown, NULL);
2968 static void create_boundary_commit_list(struct rev_info *revs)
2970 unsigned i;
2971 struct commit *c;
2972 struct object_array *array = &revs->boundary_commits;
2973 struct object_array_entry *objects = array->objects;
2976 * If revs->commits is non-NULL at this point, an error occurred in
2977 * get_revision_1(). Ignore the error and continue printing the
2978 * boundary commits anyway. (This is what the code has always
2979 * done.)
2981 if (revs->commits) {
2982 free_commit_list(revs->commits);
2983 revs->commits = NULL;
2987 * Put all of the actual boundary commits from revs->boundary_commits
2988 * into revs->commits
2990 for (i = 0; i < array->nr; i++) {
2991 c = (struct commit *)(objects[i].item);
2992 if (!c)
2993 continue;
2994 if (!(c->object.flags & CHILD_SHOWN))
2995 continue;
2996 if (c->object.flags & (SHOWN | BOUNDARY))
2997 continue;
2998 c->object.flags |= BOUNDARY;
2999 commit_list_insert(c, &revs->commits);
3003 * If revs->topo_order is set, sort the boundary commits
3004 * in topological order
3006 sort_in_topological_order(&revs->commits, revs->sort_order);
3009 static struct commit *get_revision_internal(struct rev_info *revs)
3011 struct commit *c = NULL;
3012 struct commit_list *l;
3014 if (revs->boundary == 2) {
3016 * All of the normal commits have already been returned,
3017 * and we are now returning boundary commits.
3018 * create_boundary_commit_list() has populated
3019 * revs->commits with the remaining commits to return.
3021 c = pop_commit(&revs->commits);
3022 if (c)
3023 c->object.flags |= SHOWN;
3024 return c;
3028 * If our max_count counter has reached zero, then we are done. We
3029 * don't simply return NULL because we still might need to show
3030 * boundary commits. But we want to avoid calling get_revision_1, which
3031 * might do a considerable amount of work finding the next commit only
3032 * for us to throw it away.
3034 * If it is non-zero, then either we don't have a max_count at all
3035 * (-1), or it is still counting, in which case we decrement.
3037 if (revs->max_count) {
3038 c = get_revision_1(revs);
3039 if (c) {
3040 while (revs->skip_count > 0) {
3041 revs->skip_count--;
3042 c = get_revision_1(revs);
3043 if (!c)
3044 break;
3048 if (revs->max_count > 0)
3049 revs->max_count--;
3052 if (c)
3053 c->object.flags |= SHOWN;
3055 if (!revs->boundary)
3056 return c;
3058 if (!c) {
3060 * get_revision_1() runs out the commits, and
3061 * we are done computing the boundaries.
3062 * switch to boundary commits output mode.
3064 revs->boundary = 2;
3067 * Update revs->commits to contain the list of
3068 * boundary commits.
3070 create_boundary_commit_list(revs);
3072 return get_revision_internal(revs);
3076 * boundary commits are the commits that are parents of the
3077 * ones we got from get_revision_1() but they themselves are
3078 * not returned from get_revision_1(). Before returning
3079 * 'c', we need to mark its parents that they could be boundaries.
3082 for (l = c->parents; l; l = l->next) {
3083 struct object *p;
3084 p = &(l->item->object);
3085 if (p->flags & (CHILD_SHOWN | SHOWN))
3086 continue;
3087 p->flags |= CHILD_SHOWN;
3088 gc_boundary(&revs->boundary_commits);
3089 add_object_array(p, NULL, &revs->boundary_commits);
3092 return c;
3095 struct commit *get_revision(struct rev_info *revs)
3097 struct commit *c;
3098 struct commit_list *reversed;
3100 if (revs->reverse) {
3101 reversed = NULL;
3102 while ((c = get_revision_internal(revs)))
3103 commit_list_insert(c, &reversed);
3104 revs->commits = reversed;
3105 revs->reverse = 0;
3106 revs->reverse_output_stage = 1;
3109 if (revs->reverse_output_stage)
3110 return pop_commit(&revs->commits);
3112 c = get_revision_internal(revs);
3113 if (c && revs->graph)
3114 graph_update(revs->graph, c);
3115 if (!c)
3116 free_saved_parents(revs);
3117 return c;
3120 char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
3122 if (commit->object.flags & BOUNDARY)
3123 return "-";
3124 else if (commit->object.flags & UNINTERESTING)
3125 return "^";
3126 else if (commit->object.flags & PATCHSAME)
3127 return "=";
3128 else if (!revs || revs->left_right) {
3129 if (commit->object.flags & SYMMETRIC_LEFT)
3130 return "<";
3131 else
3132 return ">";
3133 } else if (revs->graph)
3134 return "*";
3135 else if (revs->cherry_mark)
3136 return "+";
3137 return "";
3140 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
3142 char *mark = get_revision_mark(revs, commit);
3143 if (!strlen(mark))
3144 return;
3145 fputs(mark, stdout);
3146 putchar(' ');
3149 define_commit_slab(saved_parents, struct commit_list *);
3151 #define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3153 void save_parents(struct rev_info *revs, struct commit *commit)
3155 struct commit_list **pp;
3157 if (!revs->saved_parents_slab) {
3158 revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
3159 init_saved_parents(revs->saved_parents_slab);
3162 pp = saved_parents_at(revs->saved_parents_slab, commit);
3165 * When walking with reflogs, we may visit the same commit
3166 * several times: once for each appearance in the reflog.
3168 * In this case, save_parents() will be called multiple times.
3169 * We want to keep only the first set of parents. We need to
3170 * store a sentinel value for an empty (i.e., NULL) parent
3171 * list to distinguish it from a not-yet-saved list, however.
3173 if (*pp)
3174 return;
3175 if (commit->parents)
3176 *pp = copy_commit_list(commit->parents);
3177 else
3178 *pp = EMPTY_PARENT_LIST;
3181 struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
3183 struct commit_list *parents;
3185 if (!revs->saved_parents_slab)
3186 return commit->parents;
3188 parents = *saved_parents_at(revs->saved_parents_slab, commit);
3189 if (parents == EMPTY_PARENT_LIST)
3190 return NULL;
3191 return parents;
3194 void free_saved_parents(struct rev_info *revs)
3196 if (revs->saved_parents_slab)
3197 clear_saved_parents(revs->saved_parents_slab);