Make --stdin option to "log" family read also pathspecs
[git/dscho.git] / revision.c
blob8750c20e07d7b1533e948d93097a1e091f899bc7
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"
16 volatile show_early_output_fn_t show_early_output;
18 char *path_name(const struct name_path *path, const char *name)
20 const struct name_path *p;
21 char *n, *m;
22 int nlen = strlen(name);
23 int len = nlen + 1;
25 for (p = path; p; p = p->up) {
26 if (p->elem_len)
27 len += p->elem_len + 1;
29 n = xmalloc(len);
30 m = n + len - (nlen + 1);
31 strcpy(m, name);
32 for (p = path; p; p = p->up) {
33 if (p->elem_len) {
34 m -= p->elem_len + 1;
35 memcpy(m, p->elem, p->elem_len);
36 m[p->elem_len] = '/';
39 return n;
42 void add_object(struct object *obj,
43 struct object_array *p,
44 struct name_path *path,
45 const char *name)
47 add_object_array(obj, path_name(path, name), p);
50 static void mark_blob_uninteresting(struct blob *blob)
52 if (!blob)
53 return;
54 if (blob->object.flags & UNINTERESTING)
55 return;
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;
65 if (!tree)
66 return;
67 if (obj->flags & UNINTERESTING)
68 return;
69 obj->flags |= UNINTERESTING;
70 if (!has_sha1_file(obj->sha1))
71 return;
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)) {
78 case OBJ_TREE:
79 mark_tree_uninteresting(lookup_tree(entry.sha1));
80 break;
81 case OBJ_BLOB:
82 mark_blob_uninteresting(lookup_blob(entry.sha1));
83 break;
84 default:
85 /* Subproject commit - not in this repository */
86 break;
91 * We don't care about the tree any more
92 * after it has been marked uninteresting.
94 free(tree->buffer);
95 tree->buffer = NULL;
98 void mark_parents_uninteresting(struct commit *commit)
100 struct commit_list *parents = commit->parents;
102 while (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..
115 if (commit->parents)
116 mark_parents_uninteresting(commit);
120 * A missing commit is ok iff its parent is marked
121 * uninteresting.
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 revs->no_walk = 0;
137 if (revs->reflog_info && obj->type == OBJ_COMMIT &&
138 add_reflog_for_walk(revs->reflog_info,
139 (struct commit *)obj, name))
140 return;
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];
152 struct object *obj;
153 if (get_sha1("HEAD", sha1))
154 return;
155 obj = parse_object(sha1);
156 if (!obj)
157 return;
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);
166 if (!object)
167 die("bad object %s", name);
168 object->flags |= flags;
169 return object;
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);
183 if (!tag->tagged)
184 die("bad tag");
185 object = parse_object(tag->tagged->sha1);
186 if (!object) {
187 if (flags & UNINTERESTING)
188 return NULL;
189 die("bad object %s", sha1_to_hex(tag->tagged->sha1));
194 * Commit object? Just return it, we'll do all the complex
195 * reachability crud.
197 if (object->type == OBJ_COMMIT) {
198 struct commit *commit = (struct commit *)object;
199 if (parse_commit(commit) < 0)
200 die("unable to parse commit %s", name);
201 if (flags & UNINTERESTING) {
202 commit->object.flags |= UNINTERESTING;
203 mark_parents_uninteresting(commit);
204 revs->limited = 1;
206 if (revs->show_source && !commit->util)
207 commit->util = (void *) name;
208 return commit;
212 * Tree object? Either mark it uninteresting, or add it
213 * to the list of objects to look at later..
215 if (object->type == OBJ_TREE) {
216 struct tree *tree = (struct tree *)object;
217 if (!revs->tree_objects)
218 return NULL;
219 if (flags & UNINTERESTING) {
220 mark_tree_uninteresting(tree);
221 return NULL;
223 add_pending_object(revs, object, "");
224 return NULL;
228 * Blob object? You know the drill by now..
230 if (object->type == OBJ_BLOB) {
231 struct blob *blob = (struct blob *)object;
232 if (!revs->blob_objects)
233 return NULL;
234 if (flags & UNINTERESTING) {
235 mark_blob_uninteresting(blob);
236 return NULL;
238 add_pending_object(revs, object, "");
239 return NULL;
241 die("%s is unknown object", name);
244 static int everybody_uninteresting(struct commit_list *orig)
246 struct commit_list *list = orig;
247 while (list) {
248 struct commit *commit = list->item;
249 list = list->next;
250 if (commit->object.flags & UNINTERESTING)
251 continue;
252 return 0;
254 return 1;
258 * The goal is to get REV_TREE_NEW as the result only if the
259 * diff consists of all '+' (and no other changes), REV_TREE_OLD
260 * if the whole diff is removal of old data, and otherwise
261 * REV_TREE_DIFFERENT (of course if the trees are the same we
262 * want REV_TREE_SAME).
263 * That means that once we get to REV_TREE_DIFFERENT, we do not
264 * have to look any further.
266 static int tree_difference = REV_TREE_SAME;
268 static void file_add_remove(struct diff_options *options,
269 int addremove, unsigned mode,
270 const unsigned char *sha1,
271 const char *fullpath)
273 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
275 tree_difference |= diff;
276 if (tree_difference == REV_TREE_DIFFERENT)
277 DIFF_OPT_SET(options, HAS_CHANGES);
280 static void file_change(struct diff_options *options,
281 unsigned old_mode, unsigned new_mode,
282 const unsigned char *old_sha1,
283 const unsigned char *new_sha1,
284 const char *fullpath)
286 tree_difference = REV_TREE_DIFFERENT;
287 DIFF_OPT_SET(options, HAS_CHANGES);
290 static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
292 struct tree *t1 = parent->tree;
293 struct tree *t2 = commit->tree;
295 if (!t1)
296 return REV_TREE_NEW;
297 if (!t2)
298 return REV_TREE_OLD;
300 if (revs->simplify_by_decoration) {
302 * If we are simplifying by decoration, then the commit
303 * is worth showing if it has a tag pointing at it.
305 if (lookup_decoration(&name_decoration, &commit->object))
306 return REV_TREE_DIFFERENT;
308 * A commit that is not pointed by a tag is uninteresting
309 * if we are not limited by path. This means that you will
310 * see the usual "commits that touch the paths" plus any
311 * tagged commit by specifying both --simplify-by-decoration
312 * and pathspec.
314 if (!revs->prune_data)
315 return REV_TREE_SAME;
318 tree_difference = REV_TREE_SAME;
319 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
320 if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
321 &revs->pruning) < 0)
322 return REV_TREE_DIFFERENT;
323 return tree_difference;
326 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
328 int retval;
329 void *tree;
330 unsigned long size;
331 struct tree_desc empty, real;
332 struct tree *t1 = commit->tree;
334 if (!t1)
335 return 0;
337 tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
338 if (!tree)
339 return 0;
340 init_tree_desc(&real, tree, size);
341 init_tree_desc(&empty, "", 0);
343 tree_difference = REV_TREE_SAME;
344 DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
345 retval = diff_tree(&empty, &real, "", &revs->pruning);
346 free(tree);
348 return retval >= 0 && (tree_difference == REV_TREE_SAME);
351 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
353 struct commit_list **pp, *parent;
354 int tree_changed = 0, tree_same = 0;
357 * If we don't do pruning, everything is interesting
359 if (!revs->prune)
360 return;
362 if (!commit->tree)
363 return;
365 if (!commit->parents) {
366 if (rev_same_tree_as_empty(revs, commit))
367 commit->object.flags |= TREESAME;
368 return;
372 * Normal non-merge commit? If we don't want to make the
373 * history dense, we consider it always to be a change..
375 if (!revs->dense && !commit->parents->next)
376 return;
378 pp = &commit->parents;
379 while ((parent = *pp) != NULL) {
380 struct commit *p = parent->item;
382 if (parse_commit(p) < 0)
383 die("cannot simplify commit %s (because of %s)",
384 sha1_to_hex(commit->object.sha1),
385 sha1_to_hex(p->object.sha1));
386 switch (rev_compare_tree(revs, p, commit)) {
387 case REV_TREE_SAME:
388 tree_same = 1;
389 if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
390 /* Even if a merge with an uninteresting
391 * side branch brought the entire change
392 * we are interested in, we do not want
393 * to lose the other branches of this
394 * merge, so we just keep going.
396 pp = &parent->next;
397 continue;
399 parent->next = NULL;
400 commit->parents = parent;
401 commit->object.flags |= TREESAME;
402 return;
404 case REV_TREE_NEW:
405 if (revs->remove_empty_trees &&
406 rev_same_tree_as_empty(revs, p)) {
407 /* We are adding all the specified
408 * paths from this parent, so the
409 * history beyond this parent is not
410 * interesting. Remove its parents
411 * (they are grandparents for us).
412 * IOW, we pretend this parent is a
413 * "root" commit.
415 if (parse_commit(p) < 0)
416 die("cannot simplify commit %s (invalid %s)",
417 sha1_to_hex(commit->object.sha1),
418 sha1_to_hex(p->object.sha1));
419 p->parents = NULL;
421 /* fallthrough */
422 case REV_TREE_OLD:
423 case REV_TREE_DIFFERENT:
424 tree_changed = 1;
425 pp = &parent->next;
426 continue;
428 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
430 if (tree_changed && !tree_same)
431 return;
432 commit->object.flags |= TREESAME;
435 static void insert_by_date_cached(struct commit *p, struct commit_list **head,
436 struct commit_list *cached_base, struct commit_list **cache)
438 struct commit_list *new_entry;
440 if (cached_base && p->date < cached_base->item->date)
441 new_entry = insert_by_date(p, &cached_base->next);
442 else
443 new_entry = insert_by_date(p, head);
445 if (cache && (!*cache || p->date < (*cache)->item->date))
446 *cache = new_entry;
449 static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
450 struct commit_list **list, struct commit_list **cache_ptr)
452 struct commit_list *parent = commit->parents;
453 unsigned left_flag;
454 struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
456 if (commit->object.flags & ADDED)
457 return 0;
458 commit->object.flags |= ADDED;
461 * If the commit is uninteresting, don't try to
462 * prune parents - we want the maximal uninteresting
463 * set.
465 * Normally we haven't parsed the parent
466 * yet, so we won't have a parent of a parent
467 * here. However, it may turn out that we've
468 * reached this commit some other way (where it
469 * wasn't uninteresting), in which case we need
470 * to mark its parents recursively too..
472 if (commit->object.flags & UNINTERESTING) {
473 while (parent) {
474 struct commit *p = parent->item;
475 parent = parent->next;
476 if (p)
477 p->object.flags |= UNINTERESTING;
478 if (parse_commit(p) < 0)
479 continue;
480 if (p->parents)
481 mark_parents_uninteresting(p);
482 if (p->object.flags & SEEN)
483 continue;
484 p->object.flags |= SEEN;
485 insert_by_date_cached(p, list, cached_base, cache_ptr);
487 return 0;
491 * Ok, the commit wasn't uninteresting. Try to
492 * simplify the commit history and find the parent
493 * that has no differences in the path set if one exists.
495 try_to_simplify_commit(revs, commit);
497 if (revs->no_walk)
498 return 0;
500 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
502 for (parent = commit->parents; parent; parent = parent->next) {
503 struct commit *p = parent->item;
505 if (parse_commit(p) < 0)
506 return -1;
507 if (revs->show_source && !p->util)
508 p->util = commit->util;
509 p->object.flags |= left_flag;
510 if (!(p->object.flags & SEEN)) {
511 p->object.flags |= SEEN;
512 insert_by_date_cached(p, list, cached_base, cache_ptr);
514 if (revs->first_parent_only)
515 break;
517 return 0;
520 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
522 struct commit_list *p;
523 int left_count = 0, right_count = 0;
524 int left_first;
525 struct patch_ids ids;
527 /* First count the commits on the left and on the right */
528 for (p = list; p; p = p->next) {
529 struct commit *commit = p->item;
530 unsigned flags = commit->object.flags;
531 if (flags & BOUNDARY)
533 else if (flags & SYMMETRIC_LEFT)
534 left_count++;
535 else
536 right_count++;
539 left_first = left_count < right_count;
540 init_patch_ids(&ids);
541 if (revs->diffopt.nr_paths) {
542 ids.diffopts.nr_paths = revs->diffopt.nr_paths;
543 ids.diffopts.paths = revs->diffopt.paths;
544 ids.diffopts.pathlens = revs->diffopt.pathlens;
547 /* Compute patch-ids for one side */
548 for (p = list; p; p = p->next) {
549 struct commit *commit = p->item;
550 unsigned flags = commit->object.flags;
552 if (flags & BOUNDARY)
553 continue;
555 * If we have fewer left, left_first is set and we omit
556 * commits on the right branch in this loop. If we have
557 * fewer right, we skip the left ones.
559 if (left_first != !!(flags & SYMMETRIC_LEFT))
560 continue;
561 commit->util = add_commit_patch_id(commit, &ids);
564 /* Check the other side */
565 for (p = list; p; p = p->next) {
566 struct commit *commit = p->item;
567 struct patch_id *id;
568 unsigned flags = commit->object.flags;
570 if (flags & BOUNDARY)
571 continue;
573 * If we have fewer left, left_first is set and we omit
574 * commits on the left branch in this loop.
576 if (left_first == !!(flags & SYMMETRIC_LEFT))
577 continue;
580 * Have we seen the same patch id?
582 id = has_commit_patch_id(commit, &ids);
583 if (!id)
584 continue;
585 id->seen = 1;
586 commit->object.flags |= SHOWN;
589 /* Now check the original side for seen ones */
590 for (p = list; p; p = p->next) {
591 struct commit *commit = p->item;
592 struct patch_id *ent;
594 ent = commit->util;
595 if (!ent)
596 continue;
597 if (ent->seen)
598 commit->object.flags |= SHOWN;
599 commit->util = NULL;
602 free_patch_ids(&ids);
605 /* How many extra uninteresting commits we want to see.. */
606 #define SLOP 5
608 static int still_interesting(struct commit_list *src, unsigned long date, int slop)
611 * No source list at all? We're definitely done..
613 if (!src)
614 return 0;
617 * Does the destination list contain entries with a date
618 * before the source list? Definitely _not_ done.
620 if (date < src->item->date)
621 return SLOP;
624 * Does the source list still have interesting commits in
625 * it? Definitely not done..
627 if (!everybody_uninteresting(src))
628 return SLOP;
630 /* Ok, we're closing in.. */
631 return slop-1;
634 static int limit_list(struct rev_info *revs)
636 int slop = SLOP;
637 unsigned long date = ~0ul;
638 struct commit_list *list = revs->commits;
639 struct commit_list *newlist = NULL;
640 struct commit_list **p = &newlist;
642 while (list) {
643 struct commit_list *entry = list;
644 struct commit *commit = list->item;
645 struct object *obj = &commit->object;
646 show_early_output_fn_t show;
648 list = list->next;
649 free(entry);
651 if (revs->max_age != -1 && (commit->date < revs->max_age))
652 obj->flags |= UNINTERESTING;
653 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
654 return -1;
655 if (obj->flags & UNINTERESTING) {
656 mark_parents_uninteresting(commit);
657 if (revs->show_all)
658 p = &commit_list_insert(commit, p)->next;
659 slop = still_interesting(list, date, slop);
660 if (slop)
661 continue;
662 /* If showing all, add the whole pending list to the end */
663 if (revs->show_all)
664 *p = list;
665 break;
667 if (revs->min_age != -1 && (commit->date > revs->min_age))
668 continue;
669 date = commit->date;
670 p = &commit_list_insert(commit, p)->next;
672 show = show_early_output;
673 if (!show)
674 continue;
676 show(revs, newlist);
677 show_early_output = NULL;
679 if (revs->cherry_pick)
680 cherry_pick_list(newlist, revs);
682 revs->commits = newlist;
683 return 0;
686 struct all_refs_cb {
687 int all_flags;
688 int warned_bad_reflog;
689 struct rev_info *all_revs;
690 const char *name_for_errormsg;
693 static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
695 struct all_refs_cb *cb = cb_data;
696 struct object *object = get_reference(cb->all_revs, path, sha1,
697 cb->all_flags);
698 add_pending_object(cb->all_revs, object, path);
699 return 0;
702 static void handle_refs(struct rev_info *revs, unsigned flags,
703 int (*for_each)(each_ref_fn, void *))
705 struct all_refs_cb cb;
706 cb.all_revs = revs;
707 cb.all_flags = flags;
708 for_each(handle_one_ref, &cb);
711 static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
713 struct all_refs_cb *cb = cb_data;
714 if (!is_null_sha1(sha1)) {
715 struct object *o = parse_object(sha1);
716 if (o) {
717 o->flags |= cb->all_flags;
718 add_pending_object(cb->all_revs, o, "");
720 else if (!cb->warned_bad_reflog) {
721 warning("reflog of '%s' references pruned commits",
722 cb->name_for_errormsg);
723 cb->warned_bad_reflog = 1;
728 static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
729 const char *email, unsigned long timestamp, int tz,
730 const char *message, void *cb_data)
732 handle_one_reflog_commit(osha1, cb_data);
733 handle_one_reflog_commit(nsha1, cb_data);
734 return 0;
737 static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
739 struct all_refs_cb *cb = cb_data;
740 cb->warned_bad_reflog = 0;
741 cb->name_for_errormsg = path;
742 for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
743 return 0;
746 static void handle_reflog(struct rev_info *revs, unsigned flags)
748 struct all_refs_cb cb;
749 cb.all_revs = revs;
750 cb.all_flags = flags;
751 for_each_reflog(handle_one_reflog, &cb);
754 static int add_parents_only(struct rev_info *revs, const char *arg, int flags)
756 unsigned char sha1[20];
757 struct object *it;
758 struct commit *commit;
759 struct commit_list *parents;
761 if (*arg == '^') {
762 flags ^= UNINTERESTING;
763 arg++;
765 if (get_sha1(arg, sha1))
766 return 0;
767 while (1) {
768 it = get_reference(revs, arg, sha1, 0);
769 if (it->type != OBJ_TAG)
770 break;
771 if (!((struct tag*)it)->tagged)
772 return 0;
773 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
775 if (it->type != OBJ_COMMIT)
776 return 0;
777 commit = (struct commit *)it;
778 for (parents = commit->parents; parents; parents = parents->next) {
779 it = &parents->item->object;
780 it->flags |= flags;
781 add_pending_object(revs, it, arg);
783 return 1;
786 void init_revisions(struct rev_info *revs, const char *prefix)
788 memset(revs, 0, sizeof(*revs));
790 revs->abbrev = DEFAULT_ABBREV;
791 revs->ignore_merges = 1;
792 revs->simplify_history = 1;
793 DIFF_OPT_SET(&revs->pruning, RECURSIVE);
794 DIFF_OPT_SET(&revs->pruning, QUIET);
795 revs->pruning.add_remove = file_add_remove;
796 revs->pruning.change = file_change;
797 revs->lifo = 1;
798 revs->dense = 1;
799 revs->prefix = prefix;
800 revs->max_age = -1;
801 revs->min_age = -1;
802 revs->skip_count = -1;
803 revs->max_count = -1;
805 revs->commit_format = CMIT_FMT_DEFAULT;
807 revs->grep_filter.status_only = 1;
808 revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list);
809 revs->grep_filter.regflags = REG_NEWLINE;
811 diff_setup(&revs->diffopt);
812 if (prefix && !revs->diffopt.prefix) {
813 revs->diffopt.prefix = prefix;
814 revs->diffopt.prefix_length = strlen(prefix);
818 static void add_pending_commit_list(struct rev_info *revs,
819 struct commit_list *commit_list,
820 unsigned int flags)
822 while (commit_list) {
823 struct object *object = &commit_list->item->object;
824 object->flags |= flags;
825 add_pending_object(revs, object, sha1_to_hex(object->sha1));
826 commit_list = commit_list->next;
830 static void prepare_show_merge(struct rev_info *revs)
832 struct commit_list *bases;
833 struct commit *head, *other;
834 unsigned char sha1[20];
835 const char **prune = NULL;
836 int i, prune_num = 1; /* counting terminating NULL */
838 if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1)))
839 die("--merge without HEAD?");
840 if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1)))
841 die("--merge without MERGE_HEAD?");
842 add_pending_object(revs, &head->object, "HEAD");
843 add_pending_object(revs, &other->object, "MERGE_HEAD");
844 bases = get_merge_bases(head, other, 1);
845 add_pending_commit_list(revs, bases, UNINTERESTING);
846 free_commit_list(bases);
847 head->object.flags |= SYMMETRIC_LEFT;
849 if (!active_nr)
850 read_cache();
851 for (i = 0; i < active_nr; i++) {
852 struct cache_entry *ce = active_cache[i];
853 if (!ce_stage(ce))
854 continue;
855 if (ce_path_match(ce, revs->prune_data)) {
856 prune_num++;
857 prune = xrealloc(prune, sizeof(*prune) * prune_num);
858 prune[prune_num-2] = ce->name;
859 prune[prune_num-1] = NULL;
861 while ((i+1 < active_nr) &&
862 ce_same_name(ce, active_cache[i+1]))
863 i++;
865 revs->prune_data = prune;
866 revs->limited = 1;
869 int handle_revision_arg(const char *arg, struct rev_info *revs,
870 int flags,
871 int cant_be_filename)
873 unsigned mode;
874 char *dotdot;
875 struct object *object;
876 unsigned char sha1[20];
877 int local_flags;
879 dotdot = strstr(arg, "..");
880 if (dotdot) {
881 unsigned char from_sha1[20];
882 const char *next = dotdot + 2;
883 const char *this = arg;
884 int symmetric = *next == '.';
885 unsigned int flags_exclude = flags ^ UNINTERESTING;
887 *dotdot = 0;
888 next += symmetric;
890 if (!*next)
891 next = "HEAD";
892 if (dotdot == arg)
893 this = "HEAD";
894 if (!get_sha1(this, from_sha1) &&
895 !get_sha1(next, sha1)) {
896 struct commit *a, *b;
897 struct commit_list *exclude;
899 a = lookup_commit_reference(from_sha1);
900 b = lookup_commit_reference(sha1);
901 if (!a || !b) {
902 die(symmetric ?
903 "Invalid symmetric difference expression %s...%s" :
904 "Invalid revision range %s..%s",
905 arg, next);
908 if (!cant_be_filename) {
909 *dotdot = '.';
910 verify_non_filename(revs->prefix, arg);
913 if (symmetric) {
914 exclude = get_merge_bases(a, b, 1);
915 add_pending_commit_list(revs, exclude,
916 flags_exclude);
917 free_commit_list(exclude);
918 a->object.flags |= flags | SYMMETRIC_LEFT;
919 } else
920 a->object.flags |= flags_exclude;
921 b->object.flags |= flags;
922 add_pending_object(revs, &a->object, this);
923 add_pending_object(revs, &b->object, next);
924 return 0;
926 *dotdot = '.';
928 dotdot = strstr(arg, "^@");
929 if (dotdot && !dotdot[2]) {
930 *dotdot = 0;
931 if (add_parents_only(revs, arg, flags))
932 return 0;
933 *dotdot = '^';
935 dotdot = strstr(arg, "^!");
936 if (dotdot && !dotdot[2]) {
937 *dotdot = 0;
938 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
939 *dotdot = '^';
942 local_flags = 0;
943 if (*arg == '^') {
944 local_flags = UNINTERESTING;
945 arg++;
947 if (get_sha1_with_mode(arg, sha1, &mode))
948 return -1;
949 if (!cant_be_filename)
950 verify_non_filename(revs->prefix, arg);
951 object = get_reference(revs, arg, sha1, flags ^ local_flags);
952 add_pending_object_with_mode(revs, object, arg, mode);
953 return 0;
956 static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb, const char ***prune_data)
958 const char **prune = *prune_data;
959 int prune_nr;
960 int prune_alloc;
962 /* count existing ones */
963 if (!prune)
964 prune_nr = 0;
965 else
966 for (prune_nr = 0; prune[prune_nr]; prune_nr++)
968 prune_alloc = prune_nr; /* not really, but we do not know */
970 while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
971 int len = sb->len;
972 if (len && sb->buf[len - 1] == '\n')
973 sb->buf[--len] = '\0';
974 ALLOC_GROW(prune, prune_nr+1, prune_alloc);
975 prune[prune_nr++] = xstrdup(sb->buf);
977 if (prune) {
978 ALLOC_GROW(prune, prune_nr+1, prune_alloc);
979 prune[prune_nr] = NULL;
981 *prune_data = prune;
984 static void read_revisions_from_stdin(struct rev_info *revs, const char ***prune)
986 struct strbuf sb;
987 int seen_dashdash = 0;
989 strbuf_init(&sb, 1000);
990 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
991 int len = sb.len;
992 if (len && sb.buf[len - 1] == '\n')
993 sb.buf[--len] = '\0';
994 if (!len)
995 break;
996 if (sb.buf[0] == '-') {
997 if (len == 2 && sb.buf[1] == '-') {
998 seen_dashdash = 1;
999 break;
1001 die("options not supported in --stdin mode");
1003 if (handle_revision_arg(sb.buf, revs, 0, 1))
1004 die("bad revision '%s'", sb.buf);
1006 if (seen_dashdash)
1007 read_pathspec_from_stdin(revs, &sb, prune);
1008 strbuf_release(&sb);
1011 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1013 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1016 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1018 append_header_grep_pattern(&revs->grep_filter, field, pattern);
1021 static void add_message_grep(struct rev_info *revs, const char *pattern)
1023 add_grep(revs, pattern, GREP_PATTERN_BODY);
1026 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1027 int *unkc, const char **unkv)
1029 const char *arg = argv[0];
1031 /* pseudo revision arguments */
1032 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1033 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1034 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1035 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk"))
1037 unkv[(*unkc)++] = arg;
1038 return 1;
1041 if (!prefixcmp(arg, "--max-count=")) {
1042 revs->max_count = atoi(arg + 12);
1043 } else if (!prefixcmp(arg, "--skip=")) {
1044 revs->skip_count = atoi(arg + 7);
1045 } else if ((*arg == '-') && isdigit(arg[1])) {
1046 /* accept -<digit>, like traditional "head" */
1047 revs->max_count = atoi(arg + 1);
1048 } else if (!strcmp(arg, "-n")) {
1049 if (argc <= 1)
1050 return error("-n requires an argument");
1051 revs->max_count = atoi(argv[1]);
1052 return 2;
1053 } else if (!prefixcmp(arg, "-n")) {
1054 revs->max_count = atoi(arg + 2);
1055 } else if (!prefixcmp(arg, "--max-age=")) {
1056 revs->max_age = atoi(arg + 10);
1057 } else if (!prefixcmp(arg, "--since=")) {
1058 revs->max_age = approxidate(arg + 8);
1059 } else if (!prefixcmp(arg, "--after=")) {
1060 revs->max_age = approxidate(arg + 8);
1061 } else if (!prefixcmp(arg, "--min-age=")) {
1062 revs->min_age = atoi(arg + 10);
1063 } else if (!prefixcmp(arg, "--before=")) {
1064 revs->min_age = approxidate(arg + 9);
1065 } else if (!prefixcmp(arg, "--until=")) {
1066 revs->min_age = approxidate(arg + 8);
1067 } else if (!strcmp(arg, "--first-parent")) {
1068 revs->first_parent_only = 1;
1069 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1070 init_reflog_walk(&revs->reflog_info);
1071 } else if (!strcmp(arg, "--default")) {
1072 if (argc <= 1)
1073 return error("bad --default argument");
1074 revs->def = argv[1];
1075 return 2;
1076 } else if (!strcmp(arg, "--merge")) {
1077 revs->show_merge = 1;
1078 } else if (!strcmp(arg, "--topo-order")) {
1079 revs->lifo = 1;
1080 revs->topo_order = 1;
1081 } else if (!strcmp(arg, "--simplify-merges")) {
1082 revs->simplify_merges = 1;
1083 revs->rewrite_parents = 1;
1084 revs->simplify_history = 0;
1085 revs->limited = 1;
1086 } else if (!strcmp(arg, "--simplify-by-decoration")) {
1087 revs->simplify_merges = 1;
1088 revs->rewrite_parents = 1;
1089 revs->simplify_history = 0;
1090 revs->simplify_by_decoration = 1;
1091 revs->limited = 1;
1092 revs->prune = 1;
1093 load_ref_decorations(DECORATE_SHORT_REFS);
1094 } else if (!strcmp(arg, "--date-order")) {
1095 revs->lifo = 0;
1096 revs->topo_order = 1;
1097 } else if (!prefixcmp(arg, "--early-output")) {
1098 int count = 100;
1099 switch (arg[14]) {
1100 case '=':
1101 count = atoi(arg+15);
1102 /* Fallthrough */
1103 case 0:
1104 revs->topo_order = 1;
1105 revs->early_output = count;
1107 } else if (!strcmp(arg, "--parents")) {
1108 revs->rewrite_parents = 1;
1109 revs->print_parents = 1;
1110 } else if (!strcmp(arg, "--dense")) {
1111 revs->dense = 1;
1112 } else if (!strcmp(arg, "--sparse")) {
1113 revs->dense = 0;
1114 } else if (!strcmp(arg, "--show-all")) {
1115 revs->show_all = 1;
1116 } else if (!strcmp(arg, "--remove-empty")) {
1117 revs->remove_empty_trees = 1;
1118 } else if (!strcmp(arg, "--merges")) {
1119 revs->merges_only = 1;
1120 } else if (!strcmp(arg, "--no-merges")) {
1121 revs->no_merges = 1;
1122 } else if (!strcmp(arg, "--boundary")) {
1123 revs->boundary = 1;
1124 } else if (!strcmp(arg, "--left-right")) {
1125 revs->left_right = 1;
1126 } else if (!strcmp(arg, "--cherry-pick")) {
1127 revs->cherry_pick = 1;
1128 revs->limited = 1;
1129 } else if (!strcmp(arg, "--objects")) {
1130 revs->tag_objects = 1;
1131 revs->tree_objects = 1;
1132 revs->blob_objects = 1;
1133 } else if (!strcmp(arg, "--objects-edge")) {
1134 revs->tag_objects = 1;
1135 revs->tree_objects = 1;
1136 revs->blob_objects = 1;
1137 revs->edge_hint = 1;
1138 } else if (!strcmp(arg, "--unpacked")) {
1139 revs->unpacked = 1;
1140 } else if (!prefixcmp(arg, "--unpacked=")) {
1141 die("--unpacked=<packfile> no longer supported.");
1142 } else if (!strcmp(arg, "-r")) {
1143 revs->diff = 1;
1144 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1145 } else if (!strcmp(arg, "-t")) {
1146 revs->diff = 1;
1147 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1148 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1149 } else if (!strcmp(arg, "-m")) {
1150 revs->ignore_merges = 0;
1151 } else if (!strcmp(arg, "-c")) {
1152 revs->diff = 1;
1153 revs->dense_combined_merges = 0;
1154 revs->combine_merges = 1;
1155 } else if (!strcmp(arg, "--cc")) {
1156 revs->diff = 1;
1157 revs->dense_combined_merges = 1;
1158 revs->combine_merges = 1;
1159 } else if (!strcmp(arg, "-v")) {
1160 revs->verbose_header = 1;
1161 } else if (!strcmp(arg, "--pretty")) {
1162 revs->verbose_header = 1;
1163 get_commit_format(arg+8, revs);
1164 } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
1165 revs->verbose_header = 1;
1166 get_commit_format(arg+9, revs);
1167 } else if (!strcmp(arg, "--oneline")) {
1168 revs->verbose_header = 1;
1169 get_commit_format("oneline", revs);
1170 revs->abbrev_commit = 1;
1171 } else if (!strcmp(arg, "--graph")) {
1172 revs->topo_order = 1;
1173 revs->rewrite_parents = 1;
1174 revs->graph = graph_init(revs);
1175 } else if (!strcmp(arg, "--root")) {
1176 revs->show_root_diff = 1;
1177 } else if (!strcmp(arg, "--no-commit-id")) {
1178 revs->no_commit_id = 1;
1179 } else if (!strcmp(arg, "--always")) {
1180 revs->always_show_header = 1;
1181 } else if (!strcmp(arg, "--no-abbrev")) {
1182 revs->abbrev = 0;
1183 } else if (!strcmp(arg, "--abbrev")) {
1184 revs->abbrev = DEFAULT_ABBREV;
1185 } else if (!prefixcmp(arg, "--abbrev=")) {
1186 revs->abbrev = strtoul(arg + 9, NULL, 10);
1187 if (revs->abbrev < MINIMUM_ABBREV)
1188 revs->abbrev = MINIMUM_ABBREV;
1189 else if (revs->abbrev > 40)
1190 revs->abbrev = 40;
1191 } else if (!strcmp(arg, "--abbrev-commit")) {
1192 revs->abbrev_commit = 1;
1193 } else if (!strcmp(arg, "--full-diff")) {
1194 revs->diff = 1;
1195 revs->full_diff = 1;
1196 } else if (!strcmp(arg, "--full-history")) {
1197 revs->simplify_history = 0;
1198 } else if (!strcmp(arg, "--relative-date")) {
1199 revs->date_mode = DATE_RELATIVE;
1200 revs->date_mode_explicit = 1;
1201 } else if (!strncmp(arg, "--date=", 7)) {
1202 revs->date_mode = parse_date_format(arg + 7);
1203 revs->date_mode_explicit = 1;
1204 } else if (!strcmp(arg, "--log-size")) {
1205 revs->show_log_size = 1;
1208 * Grepping the commit log
1210 else if (!prefixcmp(arg, "--author=")) {
1211 add_header_grep(revs, GREP_HEADER_AUTHOR, arg+9);
1212 } else if (!prefixcmp(arg, "--committer=")) {
1213 add_header_grep(revs, GREP_HEADER_COMMITTER, arg+12);
1214 } else if (!prefixcmp(arg, "--grep=")) {
1215 add_message_grep(revs, arg+7);
1216 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1217 revs->grep_filter.regflags |= REG_EXTENDED;
1218 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1219 revs->grep_filter.regflags |= REG_ICASE;
1220 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1221 revs->grep_filter.fixed = 1;
1222 } else if (!strcmp(arg, "--all-match")) {
1223 revs->grep_filter.all_match = 1;
1224 } else if (!prefixcmp(arg, "--encoding=")) {
1225 arg += 11;
1226 if (strcmp(arg, "none"))
1227 git_log_output_encoding = xstrdup(arg);
1228 else
1229 git_log_output_encoding = "";
1230 } else if (!strcmp(arg, "--reverse")) {
1231 revs->reverse ^= 1;
1232 } else if (!strcmp(arg, "--children")) {
1233 revs->children.name = "children";
1234 revs->limited = 1;
1235 } else {
1236 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1237 if (!opts)
1238 unkv[(*unkc)++] = arg;
1239 return opts;
1242 return 1;
1245 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1246 const struct option *options,
1247 const char * const usagestr[])
1249 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1250 &ctx->cpidx, ctx->out);
1251 if (n <= 0) {
1252 error("unknown option `%s'", ctx->argv[0]);
1253 usage_with_options(usagestr, options);
1255 ctx->argv += n;
1256 ctx->argc -= n;
1259 static void append_prune_data(const char ***prune_data, const char **av)
1261 const char **prune = *prune_data;
1262 int prune_nr;
1263 int prune_alloc;
1265 if (!prune) {
1266 *prune_data = av;
1267 return;
1270 /* count existing ones */
1271 for (prune_nr = 0; prune[prune_nr]; prune_nr++)
1273 prune_alloc = prune_nr; /* not really, but we do not know */
1275 while (*av) {
1276 ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1277 prune[prune_nr++] = *av;
1278 av++;
1280 if (prune) {
1281 ALLOC_GROW(prune, prune_nr+1, prune_alloc);
1282 prune[prune_nr] = NULL;
1284 *prune_data = prune;
1288 * Parse revision information, filling in the "rev_info" structure,
1289 * and removing the used arguments from the argument list.
1291 * Returns the number of arguments left that weren't recognized
1292 * (which are also moved to the head of the argument list)
1294 int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def)
1296 int i, flags, left, seen_dashdash, read_from_stdin;
1297 const char **prune_data = NULL;
1299 /* First, search for "--" */
1300 seen_dashdash = 0;
1301 for (i = 1; i < argc; i++) {
1302 const char *arg = argv[i];
1303 if (strcmp(arg, "--"))
1304 continue;
1305 argv[i] = NULL;
1306 argc = i;
1307 if (argv[i + 1])
1308 prune_data = argv + i + 1;
1309 seen_dashdash = 1;
1310 break;
1313 /* Second, deal with arguments and options */
1314 flags = 0;
1315 read_from_stdin = 0;
1316 for (left = i = 1; i < argc; i++) {
1317 const char *arg = argv[i];
1318 if (*arg == '-') {
1319 int opts;
1321 if (!strcmp(arg, "--all")) {
1322 handle_refs(revs, flags, for_each_ref);
1323 handle_refs(revs, flags, head_ref);
1324 continue;
1326 if (!strcmp(arg, "--branches")) {
1327 handle_refs(revs, flags, for_each_branch_ref);
1328 continue;
1330 if (!strcmp(arg, "--tags")) {
1331 handle_refs(revs, flags, for_each_tag_ref);
1332 continue;
1334 if (!strcmp(arg, "--remotes")) {
1335 handle_refs(revs, flags, for_each_remote_ref);
1336 continue;
1338 if (!strcmp(arg, "--reflog")) {
1339 handle_reflog(revs, flags);
1340 continue;
1342 if (!strcmp(arg, "--not")) {
1343 flags ^= UNINTERESTING;
1344 continue;
1346 if (!strcmp(arg, "--no-walk")) {
1347 revs->no_walk = 1;
1348 continue;
1350 if (!strcmp(arg, "--do-walk")) {
1351 revs->no_walk = 0;
1352 continue;
1354 if (!strcmp(arg, "--stdin")) {
1355 if (revs->disable_stdin) {
1356 argv[left++] = arg;
1357 continue;
1359 if (read_from_stdin++)
1360 die("--stdin given twice?");
1361 read_revisions_from_stdin(revs, &prune_data);
1362 continue;
1365 opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1366 if (opts > 0) {
1367 i += opts - 1;
1368 continue;
1370 if (opts < 0)
1371 exit(128);
1372 continue;
1375 if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
1376 int j;
1377 if (seen_dashdash || *arg == '^')
1378 die("bad revision '%s'", arg);
1380 /* If we didn't have a "--":
1381 * (1) all filenames must exist;
1382 * (2) all rev-args must not be interpretable
1383 * as a valid filename.
1384 * but the latter we have checked in the main loop.
1386 for (j = i; j < argc; j++)
1387 verify_filename(revs->prefix, argv[j]);
1389 append_prune_data(&prune_data, argv + i);
1390 break;
1394 if (prune_data)
1395 revs->prune_data = get_pathspec(revs->prefix, prune_data);
1397 if (revs->def == NULL)
1398 revs->def = def;
1399 if (revs->show_merge)
1400 prepare_show_merge(revs);
1401 if (revs->def && !revs->pending.nr) {
1402 unsigned char sha1[20];
1403 struct object *object;
1404 unsigned mode;
1405 if (get_sha1_with_mode(revs->def, sha1, &mode))
1406 die("bad default revision '%s'", revs->def);
1407 object = get_reference(revs, revs->def, sha1, 0);
1408 add_pending_object_with_mode(revs, object, revs->def, mode);
1411 /* Did the user ask for any diff output? Run the diff! */
1412 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1413 revs->diff = 1;
1415 /* Pickaxe, diff-filter and rename following need diffs */
1416 if (revs->diffopt.pickaxe ||
1417 revs->diffopt.filter ||
1418 DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1419 revs->diff = 1;
1421 if (revs->topo_order)
1422 revs->limited = 1;
1424 if (revs->prune_data) {
1425 diff_tree_setup_paths(revs->prune_data, &revs->pruning);
1426 /* Can't prune commits with rename following: the paths change.. */
1427 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1428 revs->prune = 1;
1429 if (!revs->full_diff)
1430 diff_tree_setup_paths(revs->prune_data, &revs->diffopt);
1432 if (revs->combine_merges) {
1433 revs->ignore_merges = 0;
1434 if (revs->dense_combined_merges && !revs->diffopt.output_format)
1435 revs->diffopt.output_format = DIFF_FORMAT_PATCH;
1437 revs->diffopt.abbrev = revs->abbrev;
1438 if (diff_setup_done(&revs->diffopt) < 0)
1439 die("diff_setup_done failed");
1441 compile_grep_patterns(&revs->grep_filter);
1443 if (revs->reverse && revs->reflog_info)
1444 die("cannot combine --reverse with --walk-reflogs");
1445 if (revs->rewrite_parents && revs->children.name)
1446 die("cannot combine --parents and --children");
1449 * Limitations on the graph functionality
1451 if (revs->reverse && revs->graph)
1452 die("cannot combine --reverse with --graph");
1454 if (revs->reflog_info && revs->graph)
1455 die("cannot combine --walk-reflogs with --graph");
1457 return left;
1460 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1462 struct commit_list *l = xcalloc(1, sizeof(*l));
1464 l->item = child;
1465 l->next = add_decoration(&revs->children, &parent->object, l);
1468 static int remove_duplicate_parents(struct commit *commit)
1470 struct commit_list **pp, *p;
1471 int surviving_parents;
1473 /* Examine existing parents while marking ones we have seen... */
1474 pp = &commit->parents;
1475 while ((p = *pp) != NULL) {
1476 struct commit *parent = p->item;
1477 if (parent->object.flags & TMP_MARK) {
1478 *pp = p->next;
1479 continue;
1481 parent->object.flags |= TMP_MARK;
1482 pp = &p->next;
1484 /* count them while clearing the temporary mark */
1485 surviving_parents = 0;
1486 for (p = commit->parents; p; p = p->next) {
1487 p->item->object.flags &= ~TMP_MARK;
1488 surviving_parents++;
1490 return surviving_parents;
1493 struct merge_simplify_state {
1494 struct commit *simplified;
1497 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1499 struct merge_simplify_state *st;
1501 st = lookup_decoration(&revs->merge_simplification, &commit->object);
1502 if (!st) {
1503 st = xcalloc(1, sizeof(*st));
1504 add_decoration(&revs->merge_simplification, &commit->object, st);
1506 return st;
1509 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
1511 struct commit_list *p;
1512 struct merge_simplify_state *st, *pst;
1513 int cnt;
1515 st = locate_simplify_state(revs, commit);
1518 * Have we handled this one?
1520 if (st->simplified)
1521 return tail;
1524 * An UNINTERESTING commit simplifies to itself, so does a
1525 * root commit. We do not rewrite parents of such commit
1526 * anyway.
1528 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
1529 st->simplified = commit;
1530 return tail;
1534 * Do we know what commit all of our parents should be rewritten to?
1535 * Otherwise we are not ready to rewrite this one yet.
1537 for (cnt = 0, p = commit->parents; p; p = p->next) {
1538 pst = locate_simplify_state(revs, p->item);
1539 if (!pst->simplified) {
1540 tail = &commit_list_insert(p->item, tail)->next;
1541 cnt++;
1544 if (cnt) {
1545 tail = &commit_list_insert(commit, tail)->next;
1546 return tail;
1550 * Rewrite our list of parents.
1552 for (p = commit->parents; p; p = p->next) {
1553 pst = locate_simplify_state(revs, p->item);
1554 p->item = pst->simplified;
1556 cnt = remove_duplicate_parents(commit);
1559 * It is possible that we are a merge and one side branch
1560 * does not have any commit that touches the given paths;
1561 * in such a case, the immediate parents will be rewritten
1562 * to different commits.
1564 * o----X X: the commit we are looking at;
1565 * / / o: a commit that touches the paths;
1566 * ---o----'
1568 * Further reduce the parents by removing redundant parents.
1570 if (1 < cnt) {
1571 struct commit_list *h = reduce_heads(commit->parents);
1572 cnt = commit_list_count(h);
1573 free_commit_list(commit->parents);
1574 commit->parents = h;
1578 * A commit simplifies to itself if it is a root, if it is
1579 * UNINTERESTING, if it touches the given paths, or if it is a
1580 * merge and its parents simplifies to more than one commits
1581 * (the first two cases are already handled at the beginning of
1582 * this function).
1584 * Otherwise, it simplifies to what its sole parent simplifies to.
1586 if (!cnt ||
1587 (commit->object.flags & UNINTERESTING) ||
1588 !(commit->object.flags & TREESAME) ||
1589 (1 < cnt))
1590 st->simplified = commit;
1591 else {
1592 pst = locate_simplify_state(revs, commit->parents->item);
1593 st->simplified = pst->simplified;
1595 return tail;
1598 static void simplify_merges(struct rev_info *revs)
1600 struct commit_list *list;
1601 struct commit_list *yet_to_do, **tail;
1603 if (!revs->topo_order)
1604 sort_in_topological_order(&revs->commits, revs->lifo);
1605 if (!revs->prune)
1606 return;
1608 /* feed the list reversed */
1609 yet_to_do = NULL;
1610 for (list = revs->commits; list; list = list->next)
1611 commit_list_insert(list->item, &yet_to_do);
1612 while (yet_to_do) {
1613 list = yet_to_do;
1614 yet_to_do = NULL;
1615 tail = &yet_to_do;
1616 while (list) {
1617 struct commit *commit = list->item;
1618 struct commit_list *next = list->next;
1619 free(list);
1620 list = next;
1621 tail = simplify_one(revs, commit, tail);
1625 /* clean up the result, removing the simplified ones */
1626 list = revs->commits;
1627 revs->commits = NULL;
1628 tail = &revs->commits;
1629 while (list) {
1630 struct commit *commit = list->item;
1631 struct commit_list *next = list->next;
1632 struct merge_simplify_state *st;
1633 free(list);
1634 list = next;
1635 st = locate_simplify_state(revs, commit);
1636 if (st->simplified == commit)
1637 tail = &commit_list_insert(commit, tail)->next;
1641 static void set_children(struct rev_info *revs)
1643 struct commit_list *l;
1644 for (l = revs->commits; l; l = l->next) {
1645 struct commit *commit = l->item;
1646 struct commit_list *p;
1648 for (p = commit->parents; p; p = p->next)
1649 add_child(revs, p->item, commit);
1653 int prepare_revision_walk(struct rev_info *revs)
1655 int nr = revs->pending.nr;
1656 struct object_array_entry *e, *list;
1658 e = list = revs->pending.objects;
1659 revs->pending.nr = 0;
1660 revs->pending.alloc = 0;
1661 revs->pending.objects = NULL;
1662 while (--nr >= 0) {
1663 struct commit *commit = handle_commit(revs, e->item, e->name);
1664 if (commit) {
1665 if (!(commit->object.flags & SEEN)) {
1666 commit->object.flags |= SEEN;
1667 insert_by_date(commit, &revs->commits);
1670 e++;
1672 free(list);
1674 if (revs->no_walk)
1675 return 0;
1676 if (revs->limited)
1677 if (limit_list(revs) < 0)
1678 return -1;
1679 if (revs->topo_order)
1680 sort_in_topological_order(&revs->commits, revs->lifo);
1681 if (revs->simplify_merges)
1682 simplify_merges(revs);
1683 if (revs->children.name)
1684 set_children(revs);
1685 return 0;
1688 enum rewrite_result {
1689 rewrite_one_ok,
1690 rewrite_one_noparents,
1691 rewrite_one_error,
1694 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
1696 struct commit_list *cache = NULL;
1698 for (;;) {
1699 struct commit *p = *pp;
1700 if (!revs->limited)
1701 if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
1702 return rewrite_one_error;
1703 if (p->parents && p->parents->next)
1704 return rewrite_one_ok;
1705 if (p->object.flags & UNINTERESTING)
1706 return rewrite_one_ok;
1707 if (!(p->object.flags & TREESAME))
1708 return rewrite_one_ok;
1709 if (!p->parents)
1710 return rewrite_one_noparents;
1711 *pp = p->parents->item;
1715 static int rewrite_parents(struct rev_info *revs, struct commit *commit)
1717 struct commit_list **pp = &commit->parents;
1718 while (*pp) {
1719 struct commit_list *parent = *pp;
1720 switch (rewrite_one(revs, &parent->item)) {
1721 case rewrite_one_ok:
1722 break;
1723 case rewrite_one_noparents:
1724 *pp = parent->next;
1725 continue;
1726 case rewrite_one_error:
1727 return -1;
1729 pp = &parent->next;
1731 remove_duplicate_parents(commit);
1732 return 0;
1735 static int commit_match(struct commit *commit, struct rev_info *opt)
1737 if (!opt->grep_filter.pattern_list)
1738 return 1;
1739 return grep_buffer(&opt->grep_filter,
1740 NULL, /* we say nothing, not even filename */
1741 commit->buffer, strlen(commit->buffer));
1744 static inline int want_ancestry(struct rev_info *revs)
1746 return (revs->rewrite_parents || revs->children.name);
1749 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
1751 if (commit->object.flags & SHOWN)
1752 return commit_ignore;
1753 if (revs->unpacked && has_sha1_pack(commit->object.sha1))
1754 return commit_ignore;
1755 if (revs->show_all)
1756 return commit_show;
1757 if (commit->object.flags & UNINTERESTING)
1758 return commit_ignore;
1759 if (revs->min_age != -1 && (commit->date > revs->min_age))
1760 return commit_ignore;
1761 if (revs->no_merges && commit->parents && commit->parents->next)
1762 return commit_ignore;
1763 if (revs->merges_only && !(commit->parents && commit->parents->next))
1764 return commit_ignore;
1765 if (!commit_match(commit, revs))
1766 return commit_ignore;
1767 if (revs->prune && revs->dense) {
1768 /* Commit without changes? */
1769 if (commit->object.flags & TREESAME) {
1770 /* drop merges unless we want parenthood */
1771 if (!want_ancestry(revs))
1772 return commit_ignore;
1773 /* non-merge - always ignore it */
1774 if (!commit->parents || !commit->parents->next)
1775 return commit_ignore;
1778 return commit_show;
1781 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
1783 enum commit_action action = get_commit_action(revs, commit);
1785 if (action == commit_show &&
1786 !revs->show_all &&
1787 revs->prune && revs->dense && want_ancestry(revs)) {
1788 if (rewrite_parents(revs, commit) < 0)
1789 return commit_error;
1791 return action;
1794 static struct commit *get_revision_1(struct rev_info *revs)
1796 if (!revs->commits)
1797 return NULL;
1799 do {
1800 struct commit_list *entry = revs->commits;
1801 struct commit *commit = entry->item;
1803 revs->commits = entry->next;
1804 free(entry);
1806 if (revs->reflog_info)
1807 fake_reflog_parent(revs->reflog_info, commit);
1810 * If we haven't done the list limiting, we need to look at
1811 * the parents here. We also need to do the date-based limiting
1812 * that we'd otherwise have done in limit_list().
1814 if (!revs->limited) {
1815 if (revs->max_age != -1 &&
1816 (commit->date < revs->max_age))
1817 continue;
1818 if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
1819 die("Failed to traverse parents of commit %s",
1820 sha1_to_hex(commit->object.sha1));
1823 switch (simplify_commit(revs, commit)) {
1824 case commit_ignore:
1825 continue;
1826 case commit_error:
1827 die("Failed to simplify parents of commit %s",
1828 sha1_to_hex(commit->object.sha1));
1829 default:
1830 return commit;
1832 } while (revs->commits);
1833 return NULL;
1836 static void gc_boundary(struct object_array *array)
1838 unsigned nr = array->nr;
1839 unsigned alloc = array->alloc;
1840 struct object_array_entry *objects = array->objects;
1842 if (alloc <= nr) {
1843 unsigned i, j;
1844 for (i = j = 0; i < nr; i++) {
1845 if (objects[i].item->flags & SHOWN)
1846 continue;
1847 if (i != j)
1848 objects[j] = objects[i];
1849 j++;
1851 for (i = j; i < nr; i++)
1852 objects[i].item = NULL;
1853 array->nr = j;
1857 static void create_boundary_commit_list(struct rev_info *revs)
1859 unsigned i;
1860 struct commit *c;
1861 struct object_array *array = &revs->boundary_commits;
1862 struct object_array_entry *objects = array->objects;
1865 * If revs->commits is non-NULL at this point, an error occurred in
1866 * get_revision_1(). Ignore the error and continue printing the
1867 * boundary commits anyway. (This is what the code has always
1868 * done.)
1870 if (revs->commits) {
1871 free_commit_list(revs->commits);
1872 revs->commits = NULL;
1876 * Put all of the actual boundary commits from revs->boundary_commits
1877 * into revs->commits
1879 for (i = 0; i < array->nr; i++) {
1880 c = (struct commit *)(objects[i].item);
1881 if (!c)
1882 continue;
1883 if (!(c->object.flags & CHILD_SHOWN))
1884 continue;
1885 if (c->object.flags & (SHOWN | BOUNDARY))
1886 continue;
1887 c->object.flags |= BOUNDARY;
1888 commit_list_insert(c, &revs->commits);
1892 * If revs->topo_order is set, sort the boundary commits
1893 * in topological order
1895 sort_in_topological_order(&revs->commits, revs->lifo);
1898 static struct commit *get_revision_internal(struct rev_info *revs)
1900 struct commit *c = NULL;
1901 struct commit_list *l;
1903 if (revs->boundary == 2) {
1905 * All of the normal commits have already been returned,
1906 * and we are now returning boundary commits.
1907 * create_boundary_commit_list() has populated
1908 * revs->commits with the remaining commits to return.
1910 c = pop_commit(&revs->commits);
1911 if (c)
1912 c->object.flags |= SHOWN;
1913 return c;
1917 * Now pick up what they want to give us
1919 c = get_revision_1(revs);
1920 if (c) {
1921 while (0 < revs->skip_count) {
1922 revs->skip_count--;
1923 c = get_revision_1(revs);
1924 if (!c)
1925 break;
1930 * Check the max_count.
1932 switch (revs->max_count) {
1933 case -1:
1934 break;
1935 case 0:
1936 c = NULL;
1937 break;
1938 default:
1939 revs->max_count--;
1942 if (c)
1943 c->object.flags |= SHOWN;
1945 if (!revs->boundary) {
1946 return c;
1949 if (!c) {
1951 * get_revision_1() runs out the commits, and
1952 * we are done computing the boundaries.
1953 * switch to boundary commits output mode.
1955 revs->boundary = 2;
1958 * Update revs->commits to contain the list of
1959 * boundary commits.
1961 create_boundary_commit_list(revs);
1963 return get_revision_internal(revs);
1967 * boundary commits are the commits that are parents of the
1968 * ones we got from get_revision_1() but they themselves are
1969 * not returned from get_revision_1(). Before returning
1970 * 'c', we need to mark its parents that they could be boundaries.
1973 for (l = c->parents; l; l = l->next) {
1974 struct object *p;
1975 p = &(l->item->object);
1976 if (p->flags & (CHILD_SHOWN | SHOWN))
1977 continue;
1978 p->flags |= CHILD_SHOWN;
1979 gc_boundary(&revs->boundary_commits);
1980 add_object_array(p, NULL, &revs->boundary_commits);
1983 return c;
1986 struct commit *get_revision(struct rev_info *revs)
1988 struct commit *c;
1989 struct commit_list *reversed;
1991 if (revs->reverse) {
1992 reversed = NULL;
1993 while ((c = get_revision_internal(revs))) {
1994 commit_list_insert(c, &reversed);
1996 revs->commits = reversed;
1997 revs->reverse = 0;
1998 revs->reverse_output_stage = 1;
2001 if (revs->reverse_output_stage)
2002 return pop_commit(&revs->commits);
2004 c = get_revision_internal(revs);
2005 if (c && revs->graph)
2006 graph_update(revs->graph, c);
2007 return c;