11 #include "reflog-walk.h"
12 #include "patch-ids.h"
16 volatile show_early_output_fn_t show_early_output;
18 static char *path_name(struct name_path *path, const char *name)
22 int nlen = strlen(name);
25 for (p = path; p; p = p->up) {
27 len += p->elem_len + 1;
30 m = n + len - (nlen + 1);
32 for (p = path; p; p = p->up) {
35 memcpy(m, p->elem, p->elem_len);
42 void add_object(struct object *obj,
43 struct object_array *p,
44 struct name_path *path,
47 add_object_array(obj, path_name(path, name), p);
50 static void mark_blob_uninteresting(struct blob *blob)
54 if (blob->object.flags & UNINTERESTING)
56 blob->object.flags |= UNINTERESTING;
59 void mark_tree_uninteresting(struct tree *tree)
61 struct tree_desc desc;
62 struct name_entry entry;
63 struct object *obj = &tree->object;
67 if (obj->flags & UNINTERESTING)
69 obj->flags |= UNINTERESTING;
70 if (!has_sha1_file(obj->sha1))
72 if (parse_tree(tree) < 0)
73 die("bad tree %s", sha1_to_hex(obj->sha1));
75 init_tree_desc(&desc, tree->buffer, tree->size);
76 while (tree_entry(&desc, &entry)) {
77 switch (object_type(entry.mode)) {
79 mark_tree_uninteresting(lookup_tree(entry.sha1));
82 mark_blob_uninteresting(lookup_blob(entry.sha1));
85 /* Subproject commit - not in this repository */
91 * We don't care about the tree any more
92 * after it has been marked uninteresting.
98 void mark_parents_uninteresting(struct commit *commit)
100 struct commit_list *parents = commit->parents;
103 struct commit *commit = parents->item;
104 if (!(commit->object.flags & UNINTERESTING)) {
105 commit->object.flags |= UNINTERESTING;
108 * Normally we haven't parsed the parent
109 * yet, so we won't have a parent of a parent
110 * here. However, it may turn out that we've
111 * reached this commit some other way (where it
112 * wasn't uninteresting), in which case we need
113 * to mark its parents recursively too..
116 mark_parents_uninteresting(commit);
120 * A missing commit is ok iff its parent is marked
123 * We just mark such a thing parsed, so that when
124 * it is popped next time around, we won't be trying
125 * to parse it and get an error.
127 if (!has_sha1_file(commit->object.sha1))
128 commit->object.parsed = 1;
129 parents = parents->next;
133 static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode)
135 if (revs->no_walk && (obj->flags & UNINTERESTING))
136 die("object ranges do not make sense when not walking revisions");
137 if (revs->reflog_info && obj->type == OBJ_COMMIT &&
138 add_reflog_for_walk(revs->reflog_info,
139 (struct commit *)obj, name))
141 add_object_array_with_mode(obj, name, &revs->pending, mode);
144 void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
146 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
149 void add_head_to_pending(struct rev_info *revs)
151 unsigned char sha1[20];
153 if (get_sha1("HEAD", sha1))
155 obj = parse_object(sha1);
158 add_pending_object(revs, obj, "HEAD");
161 static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags)
163 struct object *object;
165 object = parse_object(sha1);
167 die("bad object %s", name);
168 object->flags |= flags;
172 static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
174 unsigned long flags = object->flags;
177 * Tag object? Look what it points to..
179 while (object->type == OBJ_TAG) {
180 struct tag *tag = (struct tag *) object;
181 if (revs->tag_objects && !(flags & UNINTERESTING))
182 add_pending_object(revs, object, tag->tag);
185 object = parse_object(tag->tagged->sha1);
187 die("bad object %s", sha1_to_hex(tag->tagged->sha1));
191 * Commit object? Just return it, we'll do all the complex
194 if (object->type == OBJ_COMMIT) {
195 struct commit *commit = (struct commit *)object;
196 if (parse_commit(commit) < 0)
197 die("unable to parse commit %s", name);
198 if (flags & UNINTERESTING) {
199 commit->object.flags |= UNINTERESTING;
200 mark_parents_uninteresting(commit);
203 if (revs->show_source && !commit->util)
204 commit->util = (void *) name;
209 * Tree object? Either mark it uniniteresting, or add it
210 * to the list of objects to look at later..
212 if (object->type == OBJ_TREE) {
213 struct tree *tree = (struct tree *)object;
214 if (!revs->tree_objects)
216 if (flags & UNINTERESTING) {
217 mark_tree_uninteresting(tree);
220 add_pending_object(revs, object, "");
225 * Blob object? You know the drill by now..
227 if (object->type == OBJ_BLOB) {
228 struct blob *blob = (struct blob *)object;
229 if (!revs->blob_objects)
231 if (flags & UNINTERESTING) {
232 mark_blob_uninteresting(blob);
235 add_pending_object(revs, object, "");
238 die("%s is unknown object", name);
241 static int everybody_uninteresting(struct commit_list *orig)
243 struct commit_list *list = orig;
245 struct commit *commit = list->item;
247 if (commit->object.flags & UNINTERESTING)
255 * The goal is to get REV_TREE_NEW as the result only if the
256 * diff consists of all '+' (and no other changes), and
257 * REV_TREE_DIFFERENT otherwise (of course if the trees are
258 * the same we want REV_TREE_SAME). That means that once we
259 * get to REV_TREE_DIFFERENT, we do not have to look any further.
261 static int tree_difference = REV_TREE_SAME;
263 static void file_add_remove(struct diff_options *options,
264 int addremove, unsigned mode,
265 const unsigned char *sha1,
266 const char *fullpath)
268 int diff = REV_TREE_DIFFERENT;
271 * Is it an add of a new file? It means that the old tree
272 * didn't have it at all, so we will turn "REV_TREE_SAME" ->
273 * "REV_TREE_NEW", but leave any "REV_TREE_DIFFERENT" alone
274 * (and if it already was "REV_TREE_NEW", we'll keep it
275 * "REV_TREE_NEW" of course).
277 if (addremove == '+') {
278 diff = tree_difference;
279 if (diff != REV_TREE_SAME)
283 tree_difference = diff;
284 if (tree_difference == REV_TREE_DIFFERENT)
285 DIFF_OPT_SET(options, HAS_CHANGES);
288 static void file_change(struct diff_options *options,
289 unsigned old_mode, unsigned new_mode,
290 const unsigned char *old_sha1,
291 const unsigned char *new_sha1,
292 const char *fullpath)
294 tree_difference = REV_TREE_DIFFERENT;
295 DIFF_OPT_SET(options, HAS_CHANGES);
298 static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
300 struct tree *t1 = parent->tree;
301 struct tree *t2 = commit->tree;
306 if (revs->simplify_by_decoration) {
308 * If we are simplifying by decoration, then the commit
309 * is worth showing if it has a tag pointing at it.
311 if (lookup_decoration(&name_decoration, &commit->object))
312 return REV_TREE_DIFFERENT;
314 * A commit that is not pointed by a tag is uninteresting
315 * if we are not limited by path. This means that you will
316 * see the usual "commits that touch the paths" plus any
317 * tagged commit by specifying both --simplify-by-decoration
320 if (!revs->prune_data)
321 return REV_TREE_SAME;
324 return REV_TREE_DIFFERENT;
325 tree_difference = REV_TREE_SAME;
326 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
327 if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
329 return REV_TREE_DIFFERENT;
330 return tree_difference;
333 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
338 struct tree_desc empty, real;
339 struct tree *t1 = commit->tree;
344 tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
347 init_tree_desc(&real, tree, size);
348 init_tree_desc(&empty, "", 0);
350 tree_difference = REV_TREE_SAME;
351 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
352 retval = diff_tree(&empty, &real, "", &revs->pruning);
355 return retval >= 0 && (tree_difference == REV_TREE_SAME);
358 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
360 struct commit_list **pp, *parent;
361 int tree_changed = 0, tree_same = 0;
364 * If we don't do pruning, everything is interesting
372 if (!commit->parents) {
373 if (rev_same_tree_as_empty(revs, commit))
374 commit->object.flags |= TREESAME;
379 * Normal non-merge commit? If we don't want to make the
380 * history dense, we consider it always to be a change..
382 if (!revs->dense && !commit->parents->next)
385 pp = &commit->parents;
386 while ((parent = *pp) != NULL) {
387 struct commit *p = parent->item;
389 if (parse_commit(p) < 0)
390 die("cannot simplify commit %s (because of %s)",
391 sha1_to_hex(commit->object.sha1),
392 sha1_to_hex(p->object.sha1));
393 switch (rev_compare_tree(revs, p, commit)) {
396 if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
397 /* Even if a merge with an uninteresting
398 * side branch brought the entire change
399 * we are interested in, we do not want
400 * to lose the other branches of this
401 * merge, so we just keep going.
407 commit->parents = parent;
408 commit->object.flags |= TREESAME;
412 if (revs->remove_empty_trees &&
413 rev_same_tree_as_empty(revs, p)) {
414 /* We are adding all the specified
415 * paths from this parent, so the
416 * history beyond this parent is not
417 * interesting. Remove its parents
418 * (they are grandparents for us).
419 * IOW, we pretend this parent is a
422 if (parse_commit(p) < 0)
423 die("cannot simplify commit %s (invalid %s)",
424 sha1_to_hex(commit->object.sha1),
425 sha1_to_hex(p->object.sha1));
429 case REV_TREE_DIFFERENT:
434 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
436 if (tree_changed && !tree_same)
438 commit->object.flags |= TREESAME;
441 static void insert_by_date_cached(struct commit *p, struct commit_list **head,
442 struct commit_list *cached_base, struct commit_list **cache)
444 struct commit_list *new_entry;
446 if (cached_base && p->date < cached_base->item->date)
447 new_entry = insert_by_date(p, &cached_base->next);
449 new_entry = insert_by_date(p, head);
451 if (cache && (!*cache || p->date < (*cache)->item->date))
455 static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
456 struct commit_list **list, struct commit_list **cache_ptr)
458 struct commit_list *parent = commit->parents;
460 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
462 if (commit->object.flags & ADDED)
464 commit->object.flags |= ADDED;
467 * If the commit is uninteresting, don't try to
468 * prune parents - we want the maximal uninteresting
471 * Normally we haven't parsed the parent
472 * yet, so we won't have a parent of a parent
473 * here. However, it may turn out that we've
474 * reached this commit some other way (where it
475 * wasn't uninteresting), in which case we need
476 * to mark its parents recursively too..
478 if (commit->object.flags & UNINTERESTING) {
480 struct commit *p = parent->item;
481 parent = parent->next;
482 if (parse_commit(p) < 0)
484 p->object.flags |= UNINTERESTING;
486 mark_parents_uninteresting(p);
487 if (p->object.flags & SEEN)
489 p->object.flags |= SEEN;
490 insert_by_date_cached(p, list, cached_base, cache_ptr);
496 * Ok, the commit wasn't uninteresting. Try to
497 * simplify the commit history and find the parent
498 * that has no differences in the path set if one exists.
500 try_to_simplify_commit(revs, commit);
505 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
507 for (parent = commit->parents; parent; parent = parent->next) {
508 struct commit *p = parent->item;
510 if (parse_commit(p) < 0)
512 if (revs->show_source && !p->util)
513 p->util = commit->util;
514 p->object.flags |= left_flag;
515 if (!(p->object.flags & SEEN)) {
516 p->object.flags |= SEEN;
517 insert_by_date_cached(p, list, cached_base, cache_ptr);
519 if (revs->first_parent_only)
525 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
527 struct commit_list *p;
528 int left_count = 0, right_count = 0;
530 struct patch_ids ids;
532 /* First count the commits on the left and on the right */
533 for (p = list; p; p = p->next) {
534 struct commit *commit = p->item;
535 unsigned flags = commit->object.flags;
536 if (flags & BOUNDARY)
538 else if (flags & SYMMETRIC_LEFT)
544 left_first = left_count < right_count;
545 init_patch_ids(&ids);
546 if (revs->diffopt.nr_paths) {
547 ids.diffopts.nr_paths = revs->diffopt.nr_paths;
548 ids.diffopts.paths = revs->diffopt.paths;
549 ids.diffopts.pathlens = revs->diffopt.pathlens;
552 /* Compute patch-ids for one side */
553 for (p = list; p; p = p->next) {
554 struct commit *commit = p->item;
555 unsigned flags = commit->object.flags;
557 if (flags & BOUNDARY)
560 * If we have fewer left, left_first is set and we omit
561 * commits on the right branch in this loop. If we have
562 * fewer right, we skip the left ones.
564 if (left_first != !!(flags & SYMMETRIC_LEFT))
566 commit->util = add_commit_patch_id(commit, &ids);
569 /* Check the other side */
570 for (p = list; p; p = p->next) {
571 struct commit *commit = p->item;
573 unsigned flags = commit->object.flags;
575 if (flags & BOUNDARY)
578 * If we have fewer left, left_first is set and we omit
579 * commits on the left branch in this loop.
581 if (left_first == !!(flags & SYMMETRIC_LEFT))
585 * Have we seen the same patch id?
587 id = has_commit_patch_id(commit, &ids);
591 commit->object.flags |= SHOWN;
594 /* Now check the original side for seen ones */
595 for (p = list; p; p = p->next) {
596 struct commit *commit = p->item;
597 struct patch_id *ent;
603 commit->object.flags |= SHOWN;
607 free_patch_ids(&ids);
610 /* How many extra uninteresting commits we want to see.. */
613 static int still_interesting(struct commit_list *src, unsigned long date, int slop)
616 * No source list at all? We're definitely done..
622 * Does the destination list contain entries with a date
623 * before the source list? Definitely _not_ done.
625 if (date < src->item->date)
629 * Does the source list still have interesting commits in
630 * it? Definitely not done..
632 if (!everybody_uninteresting(src))
635 /* Ok, we're closing in.. */
639 static int limit_list(struct rev_info *revs)
642 unsigned long date = ~0ul;
643 struct commit_list *list = revs->commits;
644 struct commit_list *newlist = NULL;
645 struct commit_list **p = &newlist;
648 struct commit_list *entry = list;
649 struct commit *commit = list->item;
650 struct object *obj = &commit->object;
651 show_early_output_fn_t show;
656 if (revs->max_age != -1 && (commit->date < revs->max_age))
657 obj->flags |= UNINTERESTING;
658 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
660 if (obj->flags & UNINTERESTING) {
661 mark_parents_uninteresting(commit);
663 p = &commit_list_insert(commit, p)->next;
664 slop = still_interesting(list, date, slop);
667 /* If showing all, add the whole pending list to the end */
672 if (revs->min_age != -1 && (commit->date > revs->min_age))
675 p = &commit_list_insert(commit, p)->next;
677 show = show_early_output;
682 show_early_output = NULL;
684 if (revs->cherry_pick)
685 cherry_pick_list(newlist, revs);
687 revs->commits = newlist;
693 int warned_bad_reflog;
694 struct rev_info *all_revs;
695 const char *name_for_errormsg;
698 static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
700 struct all_refs_cb *cb = cb_data;
701 struct object *object = get_reference(cb->all_revs, path, sha1,
703 add_pending_object(cb->all_revs, object, path);
707 static void handle_refs(struct rev_info *revs, unsigned flags,
708 int (*for_each)(each_ref_fn, void *))
710 struct all_refs_cb cb;
712 cb.all_flags = flags;
713 for_each(handle_one_ref, &cb);
716 static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
718 struct all_refs_cb *cb = cb_data;
719 if (!is_null_sha1(sha1)) {
720 struct object *o = parse_object(sha1);
722 o->flags |= cb->all_flags;
723 add_pending_object(cb->all_revs, o, "");
725 else if (!cb->warned_bad_reflog) {
726 warning("reflog of '%s' references pruned commits",
727 cb->name_for_errormsg);
728 cb->warned_bad_reflog = 1;
733 static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
734 const char *email, unsigned long timestamp, int tz,
735 const char *message, void *cb_data)
737 handle_one_reflog_commit(osha1, cb_data);
738 handle_one_reflog_commit(nsha1, cb_data);
742 static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
744 struct all_refs_cb *cb = cb_data;
745 cb->warned_bad_reflog = 0;
746 cb->name_for_errormsg = path;
747 for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
751 static void handle_reflog(struct rev_info *revs, unsigned flags)
753 struct all_refs_cb cb;
755 cb.all_flags = flags;
756 for_each_reflog(handle_one_reflog, &cb);
759 static int add_parents_only(struct rev_info *revs, const char *arg, int flags)
761 unsigned char sha1[20];
763 struct commit *commit;
764 struct commit_list *parents;
767 flags ^= UNINTERESTING;
770 if (get_sha1(arg, sha1))
773 it = get_reference(revs, arg, sha1, 0);
774 if (it->type != OBJ_TAG)
776 if (!((struct tag*)it)->tagged)
778 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
780 if (it->type != OBJ_COMMIT)
782 commit = (struct commit *)it;
783 for (parents = commit->parents; parents; parents = parents->next) {
784 it = &parents->item->object;
786 add_pending_object(revs, it, arg);
791 void init_revisions(struct rev_info *revs, const char *prefix)
793 memset(revs, 0, sizeof(*revs));
795 revs->abbrev = DEFAULT_ABBREV;
796 revs->ignore_merges = 1;
797 revs->simplify_history = 1;
798 DIFF_OPT_SET(&revs->pruning, RECURSIVE);
799 DIFF_OPT_SET(&revs->pruning, QUIET);
800 revs->pruning.add_remove = file_add_remove;
801 revs->pruning.change = file_change;
804 revs->prefix = prefix;
807 revs->skip_count = -1;
808 revs->max_count = -1;
810 revs->commit_format = CMIT_FMT_DEFAULT;
812 revs->grep_filter.status_only = 1;
813 revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list);
814 revs->grep_filter.regflags = REG_NEWLINE;
816 diff_setup(&revs->diffopt);
817 if (prefix && !revs->diffopt.prefix) {
818 revs->diffopt.prefix = prefix;
819 revs->diffopt.prefix_length = strlen(prefix);
823 static void add_pending_commit_list(struct rev_info *revs,
824 struct commit_list *commit_list,
827 while (commit_list) {
828 struct object *object = &commit_list->item->object;
829 object->flags |= flags;
830 add_pending_object(revs, object, sha1_to_hex(object->sha1));
831 commit_list = commit_list->next;
835 static void prepare_show_merge(struct rev_info *revs)
837 struct commit_list *bases;
838 struct commit *head, *other;
839 unsigned char sha1[20];
840 const char **prune = NULL;
841 int i, prune_num = 1; /* counting terminating NULL */
843 if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1)))
844 die("--merge without HEAD?");
845 if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1)))
846 die("--merge without MERGE_HEAD?");
847 add_pending_object(revs, &head->object, "HEAD");
848 add_pending_object(revs, &other->object, "MERGE_HEAD");
849 bases = get_merge_bases(head, other, 1);
850 add_pending_commit_list(revs, bases, UNINTERESTING);
851 free_commit_list(bases);
852 head->object.flags |= SYMMETRIC_LEFT;
856 for (i = 0; i < active_nr; i++) {
857 struct cache_entry *ce = active_cache[i];
860 if (ce_path_match(ce, revs->prune_data)) {
862 prune = xrealloc(prune, sizeof(*prune) * prune_num);
863 prune[prune_num-2] = ce->name;
864 prune[prune_num-1] = NULL;
866 while ((i+1 < active_nr) &&
867 ce_same_name(ce, active_cache[i+1]))
870 revs->prune_data = prune;
874 int handle_revision_arg(const char *arg, struct rev_info *revs,
876 int cant_be_filename)
880 struct object *object;
881 unsigned char sha1[20];
884 dotdot = strstr(arg, "..");
886 unsigned char from_sha1[20];
887 const char *next = dotdot + 2;
888 const char *this = arg;
889 int symmetric = *next == '.';
890 unsigned int flags_exclude = flags ^ UNINTERESTING;
899 if (!get_sha1(this, from_sha1) &&
900 !get_sha1(next, sha1)) {
901 struct commit *a, *b;
902 struct commit_list *exclude;
904 a = lookup_commit_reference(from_sha1);
905 b = lookup_commit_reference(sha1);
908 "Invalid symmetric difference expression %s...%s" :
909 "Invalid revision range %s..%s",
913 if (!cant_be_filename) {
915 verify_non_filename(revs->prefix, arg);
919 exclude = get_merge_bases(a, b, 1);
920 add_pending_commit_list(revs, exclude,
922 free_commit_list(exclude);
923 a->object.flags |= flags | SYMMETRIC_LEFT;
925 a->object.flags |= flags_exclude;
926 b->object.flags |= flags;
927 add_pending_object(revs, &a->object, this);
928 add_pending_object(revs, &b->object, next);
933 dotdot = strstr(arg, "^@");
934 if (dotdot && !dotdot[2]) {
936 if (add_parents_only(revs, arg, flags))
940 dotdot = strstr(arg, "^!");
941 if (dotdot && !dotdot[2]) {
943 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
949 local_flags = UNINTERESTING;
952 if (get_sha1_with_mode(arg, sha1, &mode))
954 if (!cant_be_filename)
955 verify_non_filename(revs->prefix, arg);
956 object = get_reference(revs, arg, sha1, flags ^ local_flags);
957 add_pending_object_with_mode(revs, object, arg, mode);
961 void read_revisions_from_stdin(struct rev_info *revs)
965 while (fgets(line, sizeof(line), stdin) != NULL) {
966 int len = strlen(line);
967 if (len && line[len - 1] == '\n')
972 die("options not supported in --stdin mode");
973 if (handle_revision_arg(line, revs, 0, 1))
974 die("bad revision '%s'", line);
978 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
980 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
983 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
985 append_header_grep_pattern(&revs->grep_filter, field, pattern);
988 static void add_message_grep(struct rev_info *revs, const char *pattern)
990 add_grep(revs, pattern, GREP_PATTERN_BODY);
993 static void add_ignore_packed(struct rev_info *revs, const char *name)
995 int num = ++revs->num_ignore_packed;
997 revs->ignore_packed = xrealloc(revs->ignore_packed,
998 sizeof(const char *) * (num + 1));
999 revs->ignore_packed[num-1] = name;
1000 revs->ignore_packed[num] = NULL;
1003 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1004 int *unkc, const char **unkv)
1006 const char *arg = argv[0];
1008 /* pseudo revision arguments */
1009 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1010 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1011 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1012 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk"))
1014 unkv[(*unkc)++] = arg;
1018 if (!prefixcmp(arg, "--max-count=")) {
1019 revs->max_count = atoi(arg + 12);
1020 } else if (!prefixcmp(arg, "--skip=")) {
1021 revs->skip_count = atoi(arg + 7);
1022 } else if ((*arg == '-') && isdigit(arg[1])) {
1023 /* accept -<digit>, like traditional "head" */
1024 revs->max_count = atoi(arg + 1);
1025 } else if (!strcmp(arg, "-n")) {
1027 return error("-n requires an argument");
1028 revs->max_count = atoi(argv[1]);
1030 } else if (!prefixcmp(arg, "-n")) {
1031 revs->max_count = atoi(arg + 2);
1032 } else if (!prefixcmp(arg, "--max-age=")) {
1033 revs->max_age = atoi(arg + 10);
1034 } else if (!prefixcmp(arg, "--since=")) {
1035 revs->max_age = approxidate(arg + 8);
1036 } else if (!prefixcmp(arg, "--after=")) {
1037 revs->max_age = approxidate(arg + 8);
1038 } else if (!prefixcmp(arg, "--min-age=")) {
1039 revs->min_age = atoi(arg + 10);
1040 } else if (!prefixcmp(arg, "--before=")) {
1041 revs->min_age = approxidate(arg + 9);
1042 } else if (!prefixcmp(arg, "--until=")) {
1043 revs->min_age = approxidate(arg + 8);
1044 } else if (!strcmp(arg, "--first-parent")) {
1045 revs->first_parent_only = 1;
1046 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1047 init_reflog_walk(&revs->reflog_info);
1048 } else if (!strcmp(arg, "--default")) {
1050 return error("bad --default argument");
1051 revs->def = argv[1];
1053 } else if (!strcmp(arg, "--merge")) {
1054 revs->show_merge = 1;
1055 } else if (!strcmp(arg, "--topo-order")) {
1057 revs->topo_order = 1;
1058 } else if (!strcmp(arg, "--simplify-merges")) {
1059 revs->simplify_merges = 1;
1060 revs->rewrite_parents = 1;
1061 revs->simplify_history = 0;
1063 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1064 revs->simplify_merges = 1;
1065 revs->rewrite_parents = 1;
1066 revs->simplify_history = 0;
1067 revs->simplify_by_decoration = 1;
1070 load_ref_decorations();
1071 } else if (!strcmp(arg, "--date-order")) {
1073 revs->topo_order = 1;
1074 } else if (!prefixcmp(arg, "--early-output")) {
1078 count = atoi(arg+15);
1081 revs->topo_order = 1;
1082 revs->early_output = count;
1084 } else if (!strcmp(arg, "--parents")) {
1085 revs->rewrite_parents = 1;
1086 revs->print_parents = 1;
1087 } else if (!strcmp(arg, "--dense")) {
1089 } else if (!strcmp(arg, "--sparse")) {
1091 } else if (!strcmp(arg, "--show-all")) {
1093 } else if (!strcmp(arg, "--remove-empty")) {
1094 revs->remove_empty_trees = 1;
1095 } else if (!strcmp(arg, "--no-merges")) {
1096 revs->no_merges = 1;
1097 } else if (!strcmp(arg, "--boundary")) {
1099 } else if (!strcmp(arg, "--left-right")) {
1100 revs->left_right = 1;
1101 } else if (!strcmp(arg, "--cherry-pick")) {
1102 revs->cherry_pick = 1;
1104 } else if (!strcmp(arg, "--objects")) {
1105 revs->tag_objects = 1;
1106 revs->tree_objects = 1;
1107 revs->blob_objects = 1;
1108 } else if (!strcmp(arg, "--objects-edge")) {
1109 revs->tag_objects = 1;
1110 revs->tree_objects = 1;
1111 revs->blob_objects = 1;
1112 revs->edge_hint = 1;
1113 } else if (!strcmp(arg, "--unpacked")) {
1115 free(revs->ignore_packed);
1116 revs->ignore_packed = NULL;
1117 revs->num_ignore_packed = 0;
1118 } else if (!prefixcmp(arg, "--unpacked=")) {
1120 add_ignore_packed(revs, arg+11);
1121 } else if (!strcmp(arg, "-r")) {
1123 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1124 } else if (!strcmp(arg, "-t")) {
1126 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1127 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1128 } else if (!strcmp(arg, "-m")) {
1129 revs->ignore_merges = 0;
1130 } else if (!strcmp(arg, "-c")) {
1132 revs->dense_combined_merges = 0;
1133 revs->combine_merges = 1;
1134 } else if (!strcmp(arg, "--cc")) {
1136 revs->dense_combined_merges = 1;
1137 revs->combine_merges = 1;
1138 } else if (!strcmp(arg, "-v")) {
1139 revs->verbose_header = 1;
1140 } else if (!strcmp(arg, "--pretty")) {
1141 revs->verbose_header = 1;
1142 get_commit_format(arg+8, revs);
1143 } else if (!prefixcmp(arg, "--pretty=")) {
1144 revs->verbose_header = 1;
1145 get_commit_format(arg+9, revs);
1146 } else if (!strcmp(arg, "--graph")) {
1147 revs->topo_order = 1;
1148 revs->rewrite_parents = 1;
1149 revs->graph = graph_init(revs);
1150 } else if (!strcmp(arg, "--root")) {
1151 revs->show_root_diff = 1;
1152 } else if (!strcmp(arg, "--no-commit-id")) {
1153 revs->no_commit_id = 1;
1154 } else if (!strcmp(arg, "--always")) {
1155 revs->always_show_header = 1;
1156 } else if (!strcmp(arg, "--no-abbrev")) {
1158 } else if (!strcmp(arg, "--abbrev")) {
1159 revs->abbrev = DEFAULT_ABBREV;
1160 } else if (!prefixcmp(arg, "--abbrev=")) {
1161 revs->abbrev = strtoul(arg + 9, NULL, 10);
1162 if (revs->abbrev < MINIMUM_ABBREV)
1163 revs->abbrev = MINIMUM_ABBREV;
1164 else if (revs->abbrev > 40)
1166 } else if (!strcmp(arg, "--abbrev-commit")) {
1167 revs->abbrev_commit = 1;
1168 } else if (!strcmp(arg, "--full-diff")) {
1170 revs->full_diff = 1;
1171 } else if (!strcmp(arg, "--full-history")) {
1172 revs->simplify_history = 0;
1173 } else if (!strcmp(arg, "--relative-date")) {
1174 revs->date_mode = DATE_RELATIVE;
1175 } else if (!strncmp(arg, "--date=", 7)) {
1176 revs->date_mode = parse_date_format(arg + 7);
1177 } else if (!strcmp(arg, "--log-size")) {
1178 revs->show_log_size = 1;
1181 * Grepping the commit log
1183 else if (!prefixcmp(arg, "--author=")) {
1184 add_header_grep(revs, GREP_HEADER_AUTHOR, arg+9);
1185 } else if (!prefixcmp(arg, "--committer=")) {
1186 add_header_grep(revs, GREP_HEADER_COMMITTER, arg+12);
1187 } else if (!prefixcmp(arg, "--grep=")) {
1188 add_message_grep(revs, arg+7);
1189 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1190 revs->grep_filter.regflags |= REG_EXTENDED;
1191 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1192 revs->grep_filter.regflags |= REG_ICASE;
1193 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1194 revs->grep_filter.fixed = 1;
1195 } else if (!strcmp(arg, "--all-match")) {
1196 revs->grep_filter.all_match = 1;
1197 } else if (!prefixcmp(arg, "--encoding=")) {
1199 if (strcmp(arg, "none"))
1200 git_log_output_encoding = xstrdup(arg);
1202 git_log_output_encoding = "";
1203 } else if (!strcmp(arg, "--reverse")) {
1205 } else if (!strcmp(arg, "--children")) {
1206 revs->children.name = "children";
1209 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1211 unkv[(*unkc)++] = arg;
1218 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1219 const struct option *options,
1220 const char * const usagestr[])
1222 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1223 &ctx->cpidx, ctx->out);
1225 error("unknown option `%s'", ctx->argv[0]);
1226 usage_with_options(usagestr, options);
1233 * Parse revision information, filling in the "rev_info" structure,
1234 * and removing the used arguments from the argument list.
1236 * Returns the number of arguments left that weren't recognized
1237 * (which are also moved to the head of the argument list)
1239 int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def)
1241 int i, flags, left, seen_dashdash;
1243 /* First, search for "--" */
1245 for (i = 1; i < argc; i++) {
1246 const char *arg = argv[i];
1247 if (strcmp(arg, "--"))
1252 revs->prune_data = get_pathspec(revs->prefix, argv + i + 1);
1257 /* Second, deal with arguments and options */
1259 for (left = i = 1; i < argc; i++) {
1260 const char *arg = argv[i];
1264 if (!strcmp(arg, "--all")) {
1265 handle_refs(revs, flags, for_each_ref);
1266 handle_refs(revs, flags, head_ref);
1269 if (!strcmp(arg, "--branches")) {
1270 handle_refs(revs, flags, for_each_branch_ref);
1273 if (!strcmp(arg, "--tags")) {
1274 handle_refs(revs, flags, for_each_tag_ref);
1277 if (!strcmp(arg, "--remotes")) {
1278 handle_refs(revs, flags, for_each_remote_ref);
1281 if (!strcmp(arg, "--reflog")) {
1282 handle_reflog(revs, flags);
1285 if (!strcmp(arg, "--not")) {
1286 flags ^= UNINTERESTING;
1289 if (!strcmp(arg, "--no-walk")) {
1293 if (!strcmp(arg, "--do-walk")) {
1298 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1308 if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
1310 if (seen_dashdash || *arg == '^')
1311 die("bad revision '%s'", arg);
1313 /* If we didn't have a "--":
1314 * (1) all filenames must exist;
1315 * (2) all rev-args must not be interpretable
1316 * as a valid filename.
1317 * but the latter we have checked in the main loop.
1319 for (j = i; j < argc; j++)
1320 verify_filename(revs->prefix, argv[j]);
1322 revs->prune_data = get_pathspec(revs->prefix,
1328 if (revs->def == NULL)
1330 if (revs->show_merge)
1331 prepare_show_merge(revs);
1332 if (revs->def && !revs->pending.nr) {
1333 unsigned char sha1[20];
1334 struct object *object;
1336 if (get_sha1_with_mode(revs->def, sha1, &mode))
1337 die("bad default revision '%s'", revs->def);
1338 object = get_reference(revs, revs->def, sha1, 0);
1339 add_pending_object_with_mode(revs, object, revs->def, mode);
1342 /* Did the user ask for any diff output? Run the diff! */
1343 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1346 /* Pickaxe, diff-filter and rename following need diffs */
1347 if (revs->diffopt.pickaxe ||
1348 revs->diffopt.filter ||
1349 DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1352 if (revs->topo_order)
1355 if (revs->prune_data) {
1356 diff_tree_setup_paths(revs->prune_data, &revs->pruning);
1357 /* Can't prune commits with rename following: the paths change.. */
1358 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1360 if (!revs->full_diff)
1361 diff_tree_setup_paths(revs->prune_data, &revs->diffopt);
1363 if (revs->combine_merges) {
1364 revs->ignore_merges = 0;
1365 if (revs->dense_combined_merges && !revs->diffopt.output_format)
1366 revs->diffopt.output_format = DIFF_FORMAT_PATCH;
1368 revs->diffopt.abbrev = revs->abbrev;
1369 if (diff_setup_done(&revs->diffopt) < 0)
1370 die("diff_setup_done failed");
1372 compile_grep_patterns(&revs->grep_filter);
1374 if (revs->reverse && revs->reflog_info)
1375 die("cannot combine --reverse with --walk-reflogs");
1376 if (revs->rewrite_parents && revs->children.name)
1377 die("cannot combine --parents and --children");
1380 * Limitations on the graph functionality
1382 if (revs->reverse && revs->graph)
1383 die("cannot combine --reverse with --graph");
1385 if (revs->reflog_info && revs->graph)
1386 die("cannot combine --walk-reflogs with --graph");
1391 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1393 struct commit_list *l = xcalloc(1, sizeof(*l));
1396 l->next = add_decoration(&revs->children, &parent->object, l);
1399 static int remove_duplicate_parents(struct commit *commit)
1401 struct commit_list **pp, *p;
1402 int surviving_parents;
1404 /* Examine existing parents while marking ones we have seen... */
1405 pp = &commit->parents;
1406 while ((p = *pp) != NULL) {
1407 struct commit *parent = p->item;
1408 if (parent->object.flags & TMP_MARK) {
1412 parent->object.flags |= TMP_MARK;
1415 /* count them while clearing the temporary mark */
1416 surviving_parents = 0;
1417 for (p = commit->parents; p; p = p->next) {
1418 p->item->object.flags &= ~TMP_MARK;
1419 surviving_parents++;
1421 return surviving_parents;
1424 struct merge_simplify_state {
1425 struct commit *simplified;
1428 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1430 struct merge_simplify_state *st;
1432 st = lookup_decoration(&revs->merge_simplification, &commit->object);
1434 st = xcalloc(1, sizeof(*st));
1435 add_decoration(&revs->merge_simplification, &commit->object, st);
1440 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
1442 struct commit_list *p;
1443 struct merge_simplify_state *st, *pst;
1446 st = locate_simplify_state(revs, commit);
1449 * Have we handled this one?
1455 * An UNINTERESTING commit simplifies to itself, so does a
1456 * root commit. We do not rewrite parents of such commit
1459 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
1460 st->simplified = commit;
1465 * Do we know what commit all of our parents should be rewritten to?
1466 * Otherwise we are not ready to rewrite this one yet.
1468 for (cnt = 0, p = commit->parents; p; p = p->next) {
1469 pst = locate_simplify_state(revs, p->item);
1470 if (!pst->simplified) {
1471 tail = &commit_list_insert(p->item, tail)->next;
1476 tail = &commit_list_insert(commit, tail)->next;
1481 * Rewrite our list of parents.
1483 for (p = commit->parents; p; p = p->next) {
1484 pst = locate_simplify_state(revs, p->item);
1485 p->item = pst->simplified;
1487 cnt = remove_duplicate_parents(commit);
1490 * It is possible that we are a merge and one side branch
1491 * does not have any commit that touches the given paths;
1492 * in such a case, the immediate parents will be rewritten
1493 * to different commits.
1495 * o----X X: the commit we are looking at;
1496 * / / o: a commit that touches the paths;
1499 * Further reduce the parents by removing redundant parents.
1502 struct commit_list *h = reduce_heads(commit->parents);
1503 cnt = commit_list_count(h);
1504 free_commit_list(commit->parents);
1505 commit->parents = h;
1509 * A commit simplifies to itself if it is a root, if it is
1510 * UNINTERESTING, if it touches the given paths, or if it is a
1511 * merge and its parents simplifies to more than one commits
1512 * (the first two cases are already handled at the beginning of
1515 * Otherwise, it simplifies to what its sole parent simplifies to.
1518 (commit->object.flags & UNINTERESTING) ||
1519 !(commit->object.flags & TREESAME) ||
1521 st->simplified = commit;
1523 pst = locate_simplify_state(revs, commit->parents->item);
1524 st->simplified = pst->simplified;
1529 static void simplify_merges(struct rev_info *revs)
1531 struct commit_list *list;
1532 struct commit_list *yet_to_do, **tail;
1534 if (!revs->topo_order)
1535 sort_in_topological_order(&revs->commits, revs->lifo);
1539 /* feed the list reversed */
1541 for (list = revs->commits; list; list = list->next)
1542 commit_list_insert(list->item, &yet_to_do);
1548 struct commit *commit = list->item;
1549 struct commit_list *next = list->next;
1552 tail = simplify_one(revs, commit, tail);
1556 /* clean up the result, removing the simplified ones */
1557 list = revs->commits;
1558 revs->commits = NULL;
1559 tail = &revs->commits;
1561 struct commit *commit = list->item;
1562 struct commit_list *next = list->next;
1563 struct merge_simplify_state *st;
1566 st = locate_simplify_state(revs, commit);
1567 if (st->simplified == commit)
1568 tail = &commit_list_insert(commit, tail)->next;
1572 static void set_children(struct rev_info *revs)
1574 struct commit_list *l;
1575 for (l = revs->commits; l; l = l->next) {
1576 struct commit *commit = l->item;
1577 struct commit_list *p;
1579 for (p = commit->parents; p; p = p->next)
1580 add_child(revs, p->item, commit);
1584 int prepare_revision_walk(struct rev_info *revs)
1586 int nr = revs->pending.nr;
1587 struct object_array_entry *e, *list;
1589 e = list = revs->pending.objects;
1590 revs->pending.nr = 0;
1591 revs->pending.alloc = 0;
1592 revs->pending.objects = NULL;
1594 struct commit *commit = handle_commit(revs, e->item, e->name);
1596 if (!(commit->object.flags & SEEN)) {
1597 commit->object.flags |= SEEN;
1598 insert_by_date(commit, &revs->commits);
1608 if (limit_list(revs) < 0)
1610 if (revs->topo_order)
1611 sort_in_topological_order(&revs->commits, revs->lifo);
1612 if (revs->simplify_merges)
1613 simplify_merges(revs);
1614 if (revs->children.name)
1619 enum rewrite_result {
1621 rewrite_one_noparents,
1625 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
1627 struct commit_list *cache = NULL;
1630 struct commit *p = *pp;
1632 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
1633 return rewrite_one_error;
1634 if (p->parents && p->parents->next)
1635 return rewrite_one_ok;
1636 if (p->object.flags & UNINTERESTING)
1637 return rewrite_one_ok;
1638 if (!(p->object.flags & TREESAME))
1639 return rewrite_one_ok;
1641 return rewrite_one_noparents;
1642 *pp = p->parents->item;
1646 static int rewrite_parents(struct rev_info *revs, struct commit *commit)
1648 struct commit_list **pp = &commit->parents;
1650 struct commit_list *parent = *pp;
1651 switch (rewrite_one(revs, &parent->item)) {
1652 case rewrite_one_ok:
1654 case rewrite_one_noparents:
1657 case rewrite_one_error:
1662 remove_duplicate_parents(commit);
1666 static int commit_match(struct commit *commit, struct rev_info *opt)
1668 if (!opt->grep_filter.pattern_list)
1670 return grep_buffer(&opt->grep_filter,
1671 NULL, /* we say nothing, not even filename */
1672 commit->buffer, strlen(commit->buffer));
1675 static inline int want_ancestry(struct rev_info *revs)
1677 return (revs->rewrite_parents || revs->children.name);
1680 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
1682 if (commit->object.flags & SHOWN)
1683 return commit_ignore;
1684 if (revs->unpacked && has_sha1_pack(commit->object.sha1, revs->ignore_packed))
1685 return commit_ignore;
1688 if (commit->object.flags & UNINTERESTING)
1689 return commit_ignore;
1690 if (revs->min_age != -1 && (commit->date > revs->min_age))
1691 return commit_ignore;
1692 if (revs->no_merges && commit->parents && commit->parents->next)
1693 return commit_ignore;
1694 if (!commit_match(commit, revs))
1695 return commit_ignore;
1696 if (revs->prune && revs->dense) {
1697 /* Commit without changes? */
1698 if (commit->object.flags & TREESAME) {
1699 /* drop merges unless we want parenthood */
1700 if (!want_ancestry(revs))
1701 return commit_ignore;
1702 /* non-merge - always ignore it */
1703 if (!commit->parents || !commit->parents->next)
1704 return commit_ignore;
1706 if (want_ancestry(revs) && rewrite_parents(revs, commit) < 0)
1707 return commit_error;
1712 static struct commit *get_revision_1(struct rev_info *revs)
1718 struct commit_list *entry = revs->commits;
1719 struct commit *commit = entry->item;
1721 revs->commits = entry->next;
1724 if (revs->reflog_info)
1725 fake_reflog_parent(revs->reflog_info, commit);
1728 * If we haven't done the list limiting, we need to look at
1729 * the parents here. We also need to do the date-based limiting
1730 * that we'd otherwise have done in limit_list().
1732 if (!revs->limited) {
1733 if (revs->max_age != -1 &&
1734 (commit->date < revs->max_age))
1736 if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
1737 die("Failed to traverse parents of commit %s",
1738 sha1_to_hex(commit->object.sha1));
1741 switch (simplify_commit(revs, commit)) {
1745 die("Failed to simplify parents of commit %s",
1746 sha1_to_hex(commit->object.sha1));
1750 } while (revs->commits);
1754 static void gc_boundary(struct object_array *array)
1756 unsigned nr = array->nr;
1757 unsigned alloc = array->alloc;
1758 struct object_array_entry *objects = array->objects;
1762 for (i = j = 0; i < nr; i++) {
1763 if (objects[i].item->flags & SHOWN)
1766 objects[j] = objects[i];
1769 for (i = j; i < nr; i++)
1770 objects[i].item = NULL;
1775 static void create_boundary_commit_list(struct rev_info *revs)
1779 struct object_array *array = &revs->boundary_commits;
1780 struct object_array_entry *objects = array->objects;
1783 * If revs->commits is non-NULL at this point, an error occurred in
1784 * get_revision_1(). Ignore the error and continue printing the
1785 * boundary commits anyway. (This is what the code has always
1788 if (revs->commits) {
1789 free_commit_list(revs->commits);
1790 revs->commits = NULL;
1794 * Put all of the actual boundary commits from revs->boundary_commits
1795 * into revs->commits
1797 for (i = 0; i < array->nr; i++) {
1798 c = (struct commit *)(objects[i].item);
1801 if (!(c->object.flags & CHILD_SHOWN))
1803 if (c->object.flags & (SHOWN | BOUNDARY))
1805 c->object.flags |= BOUNDARY;
1806 commit_list_insert(c, &revs->commits);
1810 * If revs->topo_order is set, sort the boundary commits
1811 * in topological order
1813 sort_in_topological_order(&revs->commits, revs->lifo);
1816 static struct commit *get_revision_internal(struct rev_info *revs)
1818 struct commit *c = NULL;
1819 struct commit_list *l;
1821 if (revs->boundary == 2) {
1823 * All of the normal commits have already been returned,
1824 * and we are now returning boundary commits.
1825 * create_boundary_commit_list() has populated
1826 * revs->commits with the remaining commits to return.
1828 c = pop_commit(&revs->commits);
1830 c->object.flags |= SHOWN;
1835 * Now pick up what they want to give us
1837 c = get_revision_1(revs);
1839 while (0 < revs->skip_count) {
1841 c = get_revision_1(revs);
1848 * Check the max_count.
1850 switch (revs->max_count) {
1861 c->object.flags |= SHOWN;
1863 if (!revs->boundary) {
1869 * get_revision_1() runs out the commits, and
1870 * we are done computing the boundaries.
1871 * switch to boundary commits output mode.
1876 * Update revs->commits to contain the list of
1879 create_boundary_commit_list(revs);
1881 return get_revision_internal(revs);
1885 * boundary commits are the commits that are parents of the
1886 * ones we got from get_revision_1() but they themselves are
1887 * not returned from get_revision_1(). Before returning
1888 * 'c', we need to mark its parents that they could be boundaries.
1891 for (l = c->parents; l; l = l->next) {
1893 p = &(l->item->object);
1894 if (p->flags & (CHILD_SHOWN | SHOWN))
1896 p->flags |= CHILD_SHOWN;
1897 gc_boundary(&revs->boundary_commits);
1898 add_object_array(p, NULL, &revs->boundary_commits);
1904 struct commit *get_revision(struct rev_info *revs)
1907 struct commit_list *reversed;
1909 if (revs->reverse) {
1911 while ((c = get_revision_internal(revs))) {
1912 commit_list_insert(c, &reversed);
1914 revs->commits = reversed;
1916 revs->reverse_output_stage = 1;
1919 if (revs->reverse_output_stage)
1920 return pop_commit(&revs->commits);
1922 c = get_revision_internal(revs);
1923 if (c && revs->graph)
1924 graph_update(revs->graph, c);