Merge branch 'jc/traverse-commit-list'
[git] / revision.c
1 #include "cache.h"
2 #include "tag.h"
3 #include "blob.h"
4 #include "tree.h"
5 #include "commit.h"
6 #include "diff.h"
7 #include "refs.h"
8 #include "revision.h"
9 #include "graph.h"
10 #include "grep.h"
11 #include "reflog-walk.h"
12 #include "patch-ids.h"
13 #include "decorate.h"
14 #include "log-tree.h"
15 #include "string-list.h"
16
17 volatile show_early_output_fn_t show_early_output;
18
19 char *path_name(const struct name_path *path, const char *name)
20 {
21         const struct name_path *p;
22         char *n, *m;
23         int nlen = strlen(name);
24         int len = nlen + 1;
25
26         for (p = path; p; p = p->up) {
27                 if (p->elem_len)
28                         len += p->elem_len + 1;
29         }
30         n = xmalloc(len);
31         m = n + len - (nlen + 1);
32         strcpy(m, name);
33         for (p = path; p; p = p->up) {
34                 if (p->elem_len) {
35                         m -= p->elem_len + 1;
36                         memcpy(m, p->elem, p->elem_len);
37                         m[p->elem_len] = '/';
38                 }
39         }
40         return n;
41 }
42
43 static int show_path_component_truncated(FILE *out, const char *name, int len)
44 {
45         int cnt;
46         for (cnt = 0; cnt < len; cnt++) {
47                 int ch = name[cnt];
48                 if (!ch || ch == '\n')
49                         return -1;
50                 fputc(ch, out);
51         }
52         return len;
53 }
54
55 static int show_path_truncated(FILE *out, const struct name_path *path)
56 {
57         int emitted, ours;
58
59         if (!path)
60                 return 0;
61         emitted = show_path_truncated(out, path->up);
62         if (emitted < 0)
63                 return emitted;
64         if (emitted)
65                 fputc('/', out);
66         ours = show_path_component_truncated(out, path->elem, path->elem_len);
67         if (ours < 0)
68                 return ours;
69         return ours || emitted;
70 }
71
72 void show_object_with_name(FILE *out, struct object *obj, const struct name_path *path, const char *component)
73 {
74         struct name_path leaf;
75         leaf.up = (struct name_path *)path;
76         leaf.elem = component;
77         leaf.elem_len = strlen(component);
78
79         fprintf(out, "%s ", sha1_to_hex(obj->sha1));
80         show_path_truncated(out, &leaf);
81         fputc('\n', out);
82 }
83
84 void add_object(struct object *obj,
85                 struct object_array *p,
86                 struct name_path *path,
87                 const char *name)
88 {
89         add_object_array(obj, path_name(path, name), p);
90 }
91
92 static void mark_blob_uninteresting(struct blob *blob)
93 {
94         if (!blob)
95                 return;
96         if (blob->object.flags & UNINTERESTING)
97                 return;
98         blob->object.flags |= UNINTERESTING;
99 }
100
101 void mark_tree_uninteresting(struct tree *tree)
102 {
103         struct tree_desc desc;
104         struct name_entry entry;
105         struct object *obj = &tree->object;
106
107         if (!tree)
108                 return;
109         if (obj->flags & UNINTERESTING)
110                 return;
111         obj->flags |= UNINTERESTING;
112         if (!has_sha1_file(obj->sha1))
113                 return;
114         if (parse_tree(tree) < 0)
115                 die("bad tree %s", sha1_to_hex(obj->sha1));
116
117         init_tree_desc(&desc, tree->buffer, tree->size);
118         while (tree_entry(&desc, &entry)) {
119                 switch (object_type(entry.mode)) {
120                 case OBJ_TREE:
121                         mark_tree_uninteresting(lookup_tree(entry.sha1));
122                         break;
123                 case OBJ_BLOB:
124                         mark_blob_uninteresting(lookup_blob(entry.sha1));
125                         break;
126                 default:
127                         /* Subproject commit - not in this repository */
128                         break;
129                 }
130         }
131
132         /*
133          * We don't care about the tree any more
134          * after it has been marked uninteresting.
135          */
136         free(tree->buffer);
137         tree->buffer = NULL;
138 }
139
140 void mark_parents_uninteresting(struct commit *commit)
141 {
142         struct commit_list *parents = commit->parents;
143
144         while (parents) {
145                 struct commit *commit = parents->item;
146                 if (!(commit->object.flags & UNINTERESTING)) {
147                         commit->object.flags |= UNINTERESTING;
148
149                         /*
150                          * Normally we haven't parsed the parent
151                          * yet, so we won't have a parent of a parent
152                          * here. However, it may turn out that we've
153                          * reached this commit some other way (where it
154                          * wasn't uninteresting), in which case we need
155                          * to mark its parents recursively too..
156                          */
157                         if (commit->parents)
158                                 mark_parents_uninteresting(commit);
159                 }
160
161                 /*
162                  * A missing commit is ok iff its parent is marked
163                  * uninteresting.
164                  *
165                  * We just mark such a thing parsed, so that when
166                  * it is popped next time around, we won't be trying
167                  * to parse it and get an error.
168                  */
169                 if (!has_sha1_file(commit->object.sha1))
170                         commit->object.parsed = 1;
171                 parents = parents->next;
172         }
173 }
174
175 static void add_pending_object_with_mode(struct rev_info *revs, struct object *obj, const char *name, unsigned mode)
176 {
177         if (!obj)
178                 return;
179         if (revs->no_walk && (obj->flags & UNINTERESTING))
180                 revs->no_walk = 0;
181         if (revs->reflog_info && obj->type == OBJ_COMMIT) {
182                 struct strbuf buf = STRBUF_INIT;
183                 int len = interpret_branch_name(name, &buf);
184                 int st;
185
186                 if (0 < len && name[len] && buf.len)
187                         strbuf_addstr(&buf, name + len);
188                 st = add_reflog_for_walk(revs->reflog_info,
189                                          (struct commit *)obj,
190                                          buf.buf[0] ? buf.buf: name);
191                 strbuf_release(&buf);
192                 if (st)
193                         return;
194         }
195         add_object_array_with_mode(obj, name, &revs->pending, mode);
196 }
197
198 void add_pending_object(struct rev_info *revs, struct object *obj, const char *name)
199 {
200         add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
201 }
202
203 void add_head_to_pending(struct rev_info *revs)
204 {
205         unsigned char sha1[20];
206         struct object *obj;
207         if (get_sha1("HEAD", sha1))
208                 return;
209         obj = parse_object(sha1);
210         if (!obj)
211                 return;
212         add_pending_object(revs, obj, "HEAD");
213 }
214
215 static struct object *get_reference(struct rev_info *revs, const char *name, const unsigned char *sha1, unsigned int flags)
216 {
217         struct object *object;
218
219         object = parse_object(sha1);
220         if (!object) {
221                 if (revs->ignore_missing)
222                         return object;
223                 die("bad object %s", name);
224         }
225         object->flags |= flags;
226         return object;
227 }
228
229 static struct commit *handle_commit(struct rev_info *revs, struct object *object, const char *name)
230 {
231         unsigned long flags = object->flags;
232
233         /*
234          * Tag object? Look what it points to..
235          */
236         while (object->type == OBJ_TAG) {
237                 struct tag *tag = (struct tag *) object;
238                 if (revs->tag_objects && !(flags & UNINTERESTING))
239                         add_pending_object(revs, object, tag->tag);
240                 if (!tag->tagged)
241                         die("bad tag");
242                 object = parse_object(tag->tagged->sha1);
243                 if (!object) {
244                         if (flags & UNINTERESTING)
245                                 return NULL;
246                         die("bad object %s", sha1_to_hex(tag->tagged->sha1));
247                 }
248         }
249
250         /*
251          * Commit object? Just return it, we'll do all the complex
252          * reachability crud.
253          */
254         if (object->type == OBJ_COMMIT) {
255                 struct commit *commit = (struct commit *)object;
256                 if (parse_commit(commit) < 0)
257                         die("unable to parse commit %s", name);
258                 if (flags & UNINTERESTING) {
259                         commit->object.flags |= UNINTERESTING;
260                         mark_parents_uninteresting(commit);
261                         revs->limited = 1;
262                 }
263                 if (revs->show_source && !commit->util)
264                         commit->util = (void *) name;
265                 return commit;
266         }
267
268         /*
269          * Tree object? Either mark it uninteresting, or add it
270          * to the list of objects to look at later..
271          */
272         if (object->type == OBJ_TREE) {
273                 struct tree *tree = (struct tree *)object;
274                 if (!revs->tree_objects)
275                         return NULL;
276                 if (flags & UNINTERESTING) {
277                         mark_tree_uninteresting(tree);
278                         return NULL;
279                 }
280                 add_pending_object(revs, object, "");
281                 return NULL;
282         }
283
284         /*
285          * Blob object? You know the drill by now..
286          */
287         if (object->type == OBJ_BLOB) {
288                 struct blob *blob = (struct blob *)object;
289                 if (!revs->blob_objects)
290                         return NULL;
291                 if (flags & UNINTERESTING) {
292                         mark_blob_uninteresting(blob);
293                         return NULL;
294                 }
295                 add_pending_object(revs, object, "");
296                 return NULL;
297         }
298         die("%s is unknown object", name);
299 }
300
301 static int everybody_uninteresting(struct commit_list *orig)
302 {
303         struct commit_list *list = orig;
304         while (list) {
305                 struct commit *commit = list->item;
306                 list = list->next;
307                 if (commit->object.flags & UNINTERESTING)
308                         continue;
309                 return 0;
310         }
311         return 1;
312 }
313
314 /*
315  * The goal is to get REV_TREE_NEW as the result only if the
316  * diff consists of all '+' (and no other changes), REV_TREE_OLD
317  * if the whole diff is removal of old data, and otherwise
318  * REV_TREE_DIFFERENT (of course if the trees are the same we
319  * want REV_TREE_SAME).
320  * That means that once we get to REV_TREE_DIFFERENT, we do not
321  * have to look any further.
322  */
323 static int tree_difference = REV_TREE_SAME;
324
325 static void file_add_remove(struct diff_options *options,
326                     int addremove, unsigned mode,
327                     const unsigned char *sha1,
328                     const char *fullpath, unsigned dirty_submodule)
329 {
330         int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
331
332         tree_difference |= diff;
333         if (tree_difference == REV_TREE_DIFFERENT)
334                 DIFF_OPT_SET(options, HAS_CHANGES);
335 }
336
337 static void file_change(struct diff_options *options,
338                  unsigned old_mode, unsigned new_mode,
339                  const unsigned char *old_sha1,
340                  const unsigned char *new_sha1,
341                  const char *fullpath,
342                  unsigned old_dirty_submodule, unsigned new_dirty_submodule)
343 {
344         tree_difference = REV_TREE_DIFFERENT;
345         DIFF_OPT_SET(options, HAS_CHANGES);
346 }
347
348 static int rev_compare_tree(struct rev_info *revs, struct commit *parent, struct commit *commit)
349 {
350         struct tree *t1 = parent->tree;
351         struct tree *t2 = commit->tree;
352
353         if (!t1)
354                 return REV_TREE_NEW;
355         if (!t2)
356                 return REV_TREE_OLD;
357
358         if (revs->simplify_by_decoration) {
359                 /*
360                  * If we are simplifying by decoration, then the commit
361                  * is worth showing if it has a tag pointing at it.
362                  */
363                 if (lookup_decoration(&name_decoration, &commit->object))
364                         return REV_TREE_DIFFERENT;
365                 /*
366                  * A commit that is not pointed by a tag is uninteresting
367                  * if we are not limited by path.  This means that you will
368                  * see the usual "commits that touch the paths" plus any
369                  * tagged commit by specifying both --simplify-by-decoration
370                  * and pathspec.
371                  */
372                 if (!revs->prune_data.nr)
373                         return REV_TREE_SAME;
374         }
375
376         tree_difference = REV_TREE_SAME;
377         DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
378         if (diff_tree_sha1(t1->object.sha1, t2->object.sha1, "",
379                            &revs->pruning) < 0)
380                 return REV_TREE_DIFFERENT;
381         return tree_difference;
382 }
383
384 static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
385 {
386         int retval;
387         void *tree;
388         unsigned long size;
389         struct tree_desc empty, real;
390         struct tree *t1 = commit->tree;
391
392         if (!t1)
393                 return 0;
394
395         tree = read_object_with_reference(t1->object.sha1, tree_type, &size, NULL);
396         if (!tree)
397                 return 0;
398         init_tree_desc(&real, tree, size);
399         init_tree_desc(&empty, "", 0);
400
401         tree_difference = REV_TREE_SAME;
402         DIFF_OPT_CLR(&revs->pruning, HAS_CHANGES);
403         retval = diff_tree(&empty, &real, "", &revs->pruning);
404         free(tree);
405
406         return retval >= 0 && (tree_difference == REV_TREE_SAME);
407 }
408
409 static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
410 {
411         struct commit_list **pp, *parent;
412         int tree_changed = 0, tree_same = 0;
413
414         /*
415          * If we don't do pruning, everything is interesting
416          */
417         if (!revs->prune)
418                 return;
419
420         if (!commit->tree)
421                 return;
422
423         if (!commit->parents) {
424                 if (rev_same_tree_as_empty(revs, commit))
425                         commit->object.flags |= TREESAME;
426                 return;
427         }
428
429         /*
430          * Normal non-merge commit? If we don't want to make the
431          * history dense, we consider it always to be a change..
432          */
433         if (!revs->dense && !commit->parents->next)
434                 return;
435
436         pp = &commit->parents;
437         while ((parent = *pp) != NULL) {
438                 struct commit *p = parent->item;
439
440                 if (parse_commit(p) < 0)
441                         die("cannot simplify commit %s (because of %s)",
442                             sha1_to_hex(commit->object.sha1),
443                             sha1_to_hex(p->object.sha1));
444                 switch (rev_compare_tree(revs, p, commit)) {
445                 case REV_TREE_SAME:
446                         tree_same = 1;
447                         if (!revs->simplify_history || (p->object.flags & UNINTERESTING)) {
448                                 /* Even if a merge with an uninteresting
449                                  * side branch brought the entire change
450                                  * we are interested in, we do not want
451                                  * to lose the other branches of this
452                                  * merge, so we just keep going.
453                                  */
454                                 pp = &parent->next;
455                                 continue;
456                         }
457                         parent->next = NULL;
458                         commit->parents = parent;
459                         commit->object.flags |= TREESAME;
460                         return;
461
462                 case REV_TREE_NEW:
463                         if (revs->remove_empty_trees &&
464                             rev_same_tree_as_empty(revs, p)) {
465                                 /* We are adding all the specified
466                                  * paths from this parent, so the
467                                  * history beyond this parent is not
468                                  * interesting.  Remove its parents
469                                  * (they are grandparents for us).
470                                  * IOW, we pretend this parent is a
471                                  * "root" commit.
472                                  */
473                                 if (parse_commit(p) < 0)
474                                         die("cannot simplify commit %s (invalid %s)",
475                                             sha1_to_hex(commit->object.sha1),
476                                             sha1_to_hex(p->object.sha1));
477                                 p->parents = NULL;
478                         }
479                 /* fallthrough */
480                 case REV_TREE_OLD:
481                 case REV_TREE_DIFFERENT:
482                         tree_changed = 1;
483                         pp = &parent->next;
484                         continue;
485                 }
486                 die("bad tree compare for commit %s", sha1_to_hex(commit->object.sha1));
487         }
488         if (tree_changed && !tree_same)
489                 return;
490         commit->object.flags |= TREESAME;
491 }
492
493 static void commit_list_insert_by_date_cached(struct commit *p, struct commit_list **head,
494                     struct commit_list *cached_base, struct commit_list **cache)
495 {
496         struct commit_list *new_entry;
497
498         if (cached_base && p->date < cached_base->item->date)
499                 new_entry = commit_list_insert_by_date(p, &cached_base->next);
500         else
501                 new_entry = commit_list_insert_by_date(p, head);
502
503         if (cache && (!*cache || p->date < (*cache)->item->date))
504                 *cache = new_entry;
505 }
506
507 static int add_parents_to_list(struct rev_info *revs, struct commit *commit,
508                     struct commit_list **list, struct commit_list **cache_ptr)
509 {
510         struct commit_list *parent = commit->parents;
511         unsigned left_flag;
512         struct commit_list *cached_base = cache_ptr ? *cache_ptr : NULL;
513
514         if (commit->object.flags & ADDED)
515                 return 0;
516         commit->object.flags |= ADDED;
517
518         /*
519          * If the commit is uninteresting, don't try to
520          * prune parents - we want the maximal uninteresting
521          * set.
522          *
523          * Normally we haven't parsed the parent
524          * yet, so we won't have a parent of a parent
525          * here. However, it may turn out that we've
526          * reached this commit some other way (where it
527          * wasn't uninteresting), in which case we need
528          * to mark its parents recursively too..
529          */
530         if (commit->object.flags & UNINTERESTING) {
531                 while (parent) {
532                         struct commit *p = parent->item;
533                         parent = parent->next;
534                         if (p)
535                                 p->object.flags |= UNINTERESTING;
536                         if (parse_commit(p) < 0)
537                                 continue;
538                         if (p->parents)
539                                 mark_parents_uninteresting(p);
540                         if (p->object.flags & SEEN)
541                                 continue;
542                         p->object.flags |= SEEN;
543                         commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
544                 }
545                 return 0;
546         }
547
548         /*
549          * Ok, the commit wasn't uninteresting. Try to
550          * simplify the commit history and find the parent
551          * that has no differences in the path set if one exists.
552          */
553         try_to_simplify_commit(revs, commit);
554
555         if (revs->no_walk)
556                 return 0;
557
558         left_flag = (commit->object.flags & SYMMETRIC_LEFT);
559
560         for (parent = commit->parents; parent; parent = parent->next) {
561                 struct commit *p = parent->item;
562
563                 if (parse_commit(p) < 0)
564                         return -1;
565                 if (revs->show_source && !p->util)
566                         p->util = commit->util;
567                 p->object.flags |= left_flag;
568                 if (!(p->object.flags & SEEN)) {
569                         p->object.flags |= SEEN;
570                         commit_list_insert_by_date_cached(p, list, cached_base, cache_ptr);
571                 }
572                 if (revs->first_parent_only)
573                         break;
574         }
575         return 0;
576 }
577
578 static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
579 {
580         struct commit_list *p;
581         int left_count = 0, right_count = 0;
582         int left_first;
583         struct patch_ids ids;
584         unsigned cherry_flag;
585
586         /* First count the commits on the left and on the right */
587         for (p = list; p; p = p->next) {
588                 struct commit *commit = p->item;
589                 unsigned flags = commit->object.flags;
590                 if (flags & BOUNDARY)
591                         ;
592                 else if (flags & SYMMETRIC_LEFT)
593                         left_count++;
594                 else
595                         right_count++;
596         }
597
598         if (!left_count || !right_count)
599                 return;
600
601         left_first = left_count < right_count;
602         init_patch_ids(&ids);
603         ids.diffopts.pathspec = revs->diffopt.pathspec;
604
605         /* Compute patch-ids for one side */
606         for (p = list; p; p = p->next) {
607                 struct commit *commit = p->item;
608                 unsigned flags = commit->object.flags;
609
610                 if (flags & BOUNDARY)
611                         continue;
612                 /*
613                  * If we have fewer left, left_first is set and we omit
614                  * commits on the right branch in this loop.  If we have
615                  * fewer right, we skip the left ones.
616                  */
617                 if (left_first != !!(flags & SYMMETRIC_LEFT))
618                         continue;
619                 commit->util = add_commit_patch_id(commit, &ids);
620         }
621
622         /* either cherry_mark or cherry_pick are true */
623         cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
624
625         /* Check the other side */
626         for (p = list; p; p = p->next) {
627                 struct commit *commit = p->item;
628                 struct patch_id *id;
629                 unsigned flags = commit->object.flags;
630
631                 if (flags & BOUNDARY)
632                         continue;
633                 /*
634                  * If we have fewer left, left_first is set and we omit
635                  * commits on the left branch in this loop.
636                  */
637                 if (left_first == !!(flags & SYMMETRIC_LEFT))
638                         continue;
639
640                 /*
641                  * Have we seen the same patch id?
642                  */
643                 id = has_commit_patch_id(commit, &ids);
644                 if (!id)
645                         continue;
646                 id->seen = 1;
647                 commit->object.flags |= cherry_flag;
648         }
649
650         /* Now check the original side for seen ones */
651         for (p = list; p; p = p->next) {
652                 struct commit *commit = p->item;
653                 struct patch_id *ent;
654
655                 ent = commit->util;
656                 if (!ent)
657                         continue;
658                 if (ent->seen)
659                         commit->object.flags |= cherry_flag;
660                 commit->util = NULL;
661         }
662
663         free_patch_ids(&ids);
664 }
665
666 /* How many extra uninteresting commits we want to see.. */
667 #define SLOP 5
668
669 static int still_interesting(struct commit_list *src, unsigned long date, int slop)
670 {
671         /*
672          * No source list at all? We're definitely done..
673          */
674         if (!src)
675                 return 0;
676
677         /*
678          * Does the destination list contain entries with a date
679          * before the source list? Definitely _not_ done.
680          */
681         if (date < src->item->date)
682                 return SLOP;
683
684         /*
685          * Does the source list still have interesting commits in
686          * it? Definitely not done..
687          */
688         if (!everybody_uninteresting(src))
689                 return SLOP;
690
691         /* Ok, we're closing in.. */
692         return slop-1;
693 }
694
695 /*
696  * "rev-list --ancestry-path A..B" computes commits that are ancestors
697  * of B but not ancestors of A but further limits the result to those
698  * that are descendants of A.  This takes the list of bottom commits and
699  * the result of "A..B" without --ancestry-path, and limits the latter
700  * further to the ones that can reach one of the commits in "bottom".
701  */
702 static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
703 {
704         struct commit_list *p;
705         struct commit_list *rlist = NULL;
706         int made_progress;
707
708         /*
709          * Reverse the list so that it will be likely that we would
710          * process parents before children.
711          */
712         for (p = list; p; p = p->next)
713                 commit_list_insert(p->item, &rlist);
714
715         for (p = bottom; p; p = p->next)
716                 p->item->object.flags |= TMP_MARK;
717
718         /*
719          * Mark the ones that can reach bottom commits in "list",
720          * in a bottom-up fashion.
721          */
722         do {
723                 made_progress = 0;
724                 for (p = rlist; p; p = p->next) {
725                         struct commit *c = p->item;
726                         struct commit_list *parents;
727                         if (c->object.flags & (TMP_MARK | UNINTERESTING))
728                                 continue;
729                         for (parents = c->parents;
730                              parents;
731                              parents = parents->next) {
732                                 if (!(parents->item->object.flags & TMP_MARK))
733                                         continue;
734                                 c->object.flags |= TMP_MARK;
735                                 made_progress = 1;
736                                 break;
737                         }
738                 }
739         } while (made_progress);
740
741         /*
742          * NEEDSWORK: decide if we want to remove parents that are
743          * not marked with TMP_MARK from commit->parents for commits
744          * in the resulting list.  We may not want to do that, though.
745          */
746
747         /*
748          * The ones that are not marked with TMP_MARK are uninteresting
749          */
750         for (p = list; p; p = p->next) {
751                 struct commit *c = p->item;
752                 if (c->object.flags & TMP_MARK)
753                         continue;
754                 c->object.flags |= UNINTERESTING;
755         }
756
757         /* We are done with the TMP_MARK */
758         for (p = list; p; p = p->next)
759                 p->item->object.flags &= ~TMP_MARK;
760         for (p = bottom; p; p = p->next)
761                 p->item->object.flags &= ~TMP_MARK;
762         free_commit_list(rlist);
763 }
764
765 /*
766  * Before walking the history, keep the set of "negative" refs the
767  * caller has asked to exclude.
768  *
769  * This is used to compute "rev-list --ancestry-path A..B", as we need
770  * to filter the result of "A..B" further to the ones that can actually
771  * reach A.
772  */
773 static struct commit_list *collect_bottom_commits(struct rev_info *revs)
774 {
775         struct commit_list *bottom = NULL;
776         int i;
777         for (i = 0; i < revs->cmdline.nr; i++) {
778                 struct rev_cmdline_entry *elem = &revs->cmdline.rev[i];
779                 if ((elem->flags & UNINTERESTING) &&
780                     elem->item->type == OBJ_COMMIT)
781                         commit_list_insert((struct commit *)elem->item, &bottom);
782         }
783         return bottom;
784 }
785
786 /* Assumes either left_only or right_only is set */
787 static void limit_left_right(struct commit_list *list, struct rev_info *revs)
788 {
789         struct commit_list *p;
790
791         for (p = list; p; p = p->next) {
792                 struct commit *commit = p->item;
793
794                 if (revs->right_only) {
795                         if (commit->object.flags & SYMMETRIC_LEFT)
796                                 commit->object.flags |= SHOWN;
797                 } else  /* revs->left_only is set */
798                         if (!(commit->object.flags & SYMMETRIC_LEFT))
799                                 commit->object.flags |= SHOWN;
800         }
801 }
802
803 static int limit_list(struct rev_info *revs)
804 {
805         int slop = SLOP;
806         unsigned long date = ~0ul;
807         struct commit_list *list = revs->commits;
808         struct commit_list *newlist = NULL;
809         struct commit_list **p = &newlist;
810         struct commit_list *bottom = NULL;
811
812         if (revs->ancestry_path) {
813                 bottom = collect_bottom_commits(revs);
814                 if (!bottom)
815                         die("--ancestry-path given but there are no bottom commits");
816         }
817
818         while (list) {
819                 struct commit_list *entry = list;
820                 struct commit *commit = list->item;
821                 struct object *obj = &commit->object;
822                 show_early_output_fn_t show;
823
824                 list = list->next;
825                 free(entry);
826
827                 if (revs->max_age != -1 && (commit->date < revs->max_age))
828                         obj->flags |= UNINTERESTING;
829                 if (add_parents_to_list(revs, commit, &list, NULL) < 0)
830                         return -1;
831                 if (obj->flags & UNINTERESTING) {
832                         mark_parents_uninteresting(commit);
833                         if (revs->show_all)
834                                 p = &commit_list_insert(commit, p)->next;
835                         slop = still_interesting(list, date, slop);
836                         if (slop)
837                                 continue;
838                         /* If showing all, add the whole pending list to the end */
839                         if (revs->show_all)
840                                 *p = list;
841                         break;
842                 }
843                 if (revs->min_age != -1 && (commit->date > revs->min_age))
844                         continue;
845                 date = commit->date;
846                 p = &commit_list_insert(commit, p)->next;
847
848                 show = show_early_output;
849                 if (!show)
850                         continue;
851
852                 show(revs, newlist);
853                 show_early_output = NULL;
854         }
855         if (revs->cherry_pick || revs->cherry_mark)
856                 cherry_pick_list(newlist, revs);
857
858         if (revs->left_only || revs->right_only)
859                 limit_left_right(newlist, revs);
860
861         if (bottom) {
862                 limit_to_ancestry(bottom, newlist);
863                 free_commit_list(bottom);
864         }
865
866         revs->commits = newlist;
867         return 0;
868 }
869
870 static void add_rev_cmdline(struct rev_info *revs,
871                             struct object *item,
872                             const char *name,
873                             int whence,
874                             unsigned flags)
875 {
876         struct rev_cmdline_info *info = &revs->cmdline;
877         int nr = info->nr;
878
879         ALLOC_GROW(info->rev, nr + 1, info->alloc);
880         info->rev[nr].item = item;
881         info->rev[nr].name = name;
882         info->rev[nr].whence = whence;
883         info->rev[nr].flags = flags;
884         info->nr++;
885 }
886
887 struct all_refs_cb {
888         int all_flags;
889         int warned_bad_reflog;
890         struct rev_info *all_revs;
891         const char *name_for_errormsg;
892 };
893
894 static int handle_one_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
895 {
896         struct all_refs_cb *cb = cb_data;
897         struct object *object = get_reference(cb->all_revs, path, sha1,
898                                               cb->all_flags);
899         add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
900         add_pending_object(cb->all_revs, object, path);
901         return 0;
902 }
903
904 static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
905         unsigned flags)
906 {
907         cb->all_revs = revs;
908         cb->all_flags = flags;
909 }
910
911 static void handle_refs(const char *submodule, struct rev_info *revs, unsigned flags,
912                 int (*for_each)(const char *, each_ref_fn, void *))
913 {
914         struct all_refs_cb cb;
915         init_all_refs_cb(&cb, revs, flags);
916         for_each(submodule, handle_one_ref, &cb);
917 }
918
919 static void handle_one_reflog_commit(unsigned char *sha1, void *cb_data)
920 {
921         struct all_refs_cb *cb = cb_data;
922         if (!is_null_sha1(sha1)) {
923                 struct object *o = parse_object(sha1);
924                 if (o) {
925                         o->flags |= cb->all_flags;
926                         /* ??? CMDLINEFLAGS ??? */
927                         add_pending_object(cb->all_revs, o, "");
928                 }
929                 else if (!cb->warned_bad_reflog) {
930                         warning("reflog of '%s' references pruned commits",
931                                 cb->name_for_errormsg);
932                         cb->warned_bad_reflog = 1;
933                 }
934         }
935 }
936
937 static int handle_one_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
938                 const char *email, unsigned long timestamp, int tz,
939                 const char *message, void *cb_data)
940 {
941         handle_one_reflog_commit(osha1, cb_data);
942         handle_one_reflog_commit(nsha1, cb_data);
943         return 0;
944 }
945
946 static int handle_one_reflog(const char *path, const unsigned char *sha1, int flag, void *cb_data)
947 {
948         struct all_refs_cb *cb = cb_data;
949         cb->warned_bad_reflog = 0;
950         cb->name_for_errormsg = path;
951         for_each_reflog_ent(path, handle_one_reflog_ent, cb_data);
952         return 0;
953 }
954
955 static void handle_reflog(struct rev_info *revs, unsigned flags)
956 {
957         struct all_refs_cb cb;
958         cb.all_revs = revs;
959         cb.all_flags = flags;
960         for_each_reflog(handle_one_reflog, &cb);
961 }
962
963 static int add_parents_only(struct rev_info *revs, const char *arg_, int flags)
964 {
965         unsigned char sha1[20];
966         struct object *it;
967         struct commit *commit;
968         struct commit_list *parents;
969         const char *arg = arg_;
970
971         if (*arg == '^') {
972                 flags ^= UNINTERESTING;
973                 arg++;
974         }
975         if (get_sha1(arg, sha1))
976                 return 0;
977         while (1) {
978                 it = get_reference(revs, arg, sha1, 0);
979                 if (!it && revs->ignore_missing)
980                         return 0;
981                 if (it->type != OBJ_TAG)
982                         break;
983                 if (!((struct tag*)it)->tagged)
984                         return 0;
985                 hashcpy(sha1, ((struct tag*)it)->tagged->sha1);
986         }
987         if (it->type != OBJ_COMMIT)
988                 return 0;
989         commit = (struct commit *)it;
990         for (parents = commit->parents; parents; parents = parents->next) {
991                 it = &parents->item->object;
992                 it->flags |= flags;
993                 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
994                 add_pending_object(revs, it, arg);
995         }
996         return 1;
997 }
998
999 void init_revisions(struct rev_info *revs, const char *prefix)
1000 {
1001         memset(revs, 0, sizeof(*revs));
1002
1003         revs->abbrev = DEFAULT_ABBREV;
1004         revs->ignore_merges = 1;
1005         revs->simplify_history = 1;
1006         DIFF_OPT_SET(&revs->pruning, RECURSIVE);
1007         DIFF_OPT_SET(&revs->pruning, QUICK);
1008         revs->pruning.add_remove = file_add_remove;
1009         revs->pruning.change = file_change;
1010         revs->lifo = 1;
1011         revs->dense = 1;
1012         revs->prefix = prefix;
1013         revs->max_age = -1;
1014         revs->min_age = -1;
1015         revs->skip_count = -1;
1016         revs->max_count = -1;
1017         revs->max_parents = -1;
1018
1019         revs->commit_format = CMIT_FMT_DEFAULT;
1020
1021         revs->grep_filter.status_only = 1;
1022         revs->grep_filter.pattern_tail = &(revs->grep_filter.pattern_list);
1023         revs->grep_filter.header_tail = &(revs->grep_filter.header_list);
1024         revs->grep_filter.regflags = REG_NEWLINE;
1025
1026         diff_setup(&revs->diffopt);
1027         if (prefix && !revs->diffopt.prefix) {
1028                 revs->diffopt.prefix = prefix;
1029                 revs->diffopt.prefix_length = strlen(prefix);
1030         }
1031
1032         revs->notes_opt.use_default_notes = -1;
1033 }
1034
1035 static void add_pending_commit_list(struct rev_info *revs,
1036                                     struct commit_list *commit_list,
1037                                     unsigned int flags)
1038 {
1039         while (commit_list) {
1040                 struct object *object = &commit_list->item->object;
1041                 object->flags |= flags;
1042                 add_pending_object(revs, object, sha1_to_hex(object->sha1));
1043                 commit_list = commit_list->next;
1044         }
1045 }
1046
1047 static void prepare_show_merge(struct rev_info *revs)
1048 {
1049         struct commit_list *bases;
1050         struct commit *head, *other;
1051         unsigned char sha1[20];
1052         const char **prune = NULL;
1053         int i, prune_num = 1; /* counting terminating NULL */
1054
1055         if (get_sha1("HEAD", sha1) || !(head = lookup_commit(sha1)))
1056                 die("--merge without HEAD?");
1057         if (get_sha1("MERGE_HEAD", sha1) || !(other = lookup_commit(sha1)))
1058                 die("--merge without MERGE_HEAD?");
1059         add_pending_object(revs, &head->object, "HEAD");
1060         add_pending_object(revs, &other->object, "MERGE_HEAD");
1061         bases = get_merge_bases(head, other, 1);
1062         add_pending_commit_list(revs, bases, UNINTERESTING);
1063         free_commit_list(bases);
1064         head->object.flags |= SYMMETRIC_LEFT;
1065
1066         if (!active_nr)
1067                 read_cache();
1068         for (i = 0; i < active_nr; i++) {
1069                 struct cache_entry *ce = active_cache[i];
1070                 if (!ce_stage(ce))
1071                         continue;
1072                 if (ce_path_match(ce, &revs->prune_data)) {
1073                         prune_num++;
1074                         prune = xrealloc(prune, sizeof(*prune) * prune_num);
1075                         prune[prune_num-2] = ce->name;
1076                         prune[prune_num-1] = NULL;
1077                 }
1078                 while ((i+1 < active_nr) &&
1079                        ce_same_name(ce, active_cache[i+1]))
1080                         i++;
1081         }
1082         free_pathspec(&revs->prune_data);
1083         init_pathspec(&revs->prune_data, prune);
1084         revs->limited = 1;
1085 }
1086
1087 int handle_revision_arg(const char *arg_, struct rev_info *revs,
1088                         int flags,
1089                         int cant_be_filename)
1090 {
1091         unsigned mode;
1092         char *dotdot;
1093         struct object *object;
1094         unsigned char sha1[20];
1095         int local_flags;
1096         const char *arg = arg_;
1097
1098         dotdot = strstr(arg, "..");
1099         if (dotdot) {
1100                 unsigned char from_sha1[20];
1101                 const char *next = dotdot + 2;
1102                 const char *this = arg;
1103                 int symmetric = *next == '.';
1104                 unsigned int flags_exclude = flags ^ UNINTERESTING;
1105                 unsigned int a_flags;
1106
1107                 *dotdot = 0;
1108                 next += symmetric;
1109
1110                 if (!*next)
1111                         next = "HEAD";
1112                 if (dotdot == arg)
1113                         this = "HEAD";
1114                 if (!get_sha1(this, from_sha1) &&
1115                     !get_sha1(next, sha1)) {
1116                         struct commit *a, *b;
1117                         struct commit_list *exclude;
1118
1119                         a = lookup_commit_reference(from_sha1);
1120                         b = lookup_commit_reference(sha1);
1121                         if (!a || !b) {
1122                                 if (revs->ignore_missing)
1123                                         return 0;
1124                                 die(symmetric ?
1125                                     "Invalid symmetric difference expression %s...%s" :
1126                                     "Invalid revision range %s..%s",
1127                                     arg, next);
1128                         }
1129
1130                         if (!cant_be_filename) {
1131                                 *dotdot = '.';
1132                                 verify_non_filename(revs->prefix, arg);
1133                         }
1134
1135                         if (symmetric) {
1136                                 exclude = get_merge_bases(a, b, 1);
1137                                 add_pending_commit_list(revs, exclude,
1138                                                         flags_exclude);
1139                                 free_commit_list(exclude);
1140                                 a_flags = flags | SYMMETRIC_LEFT;
1141                         } else
1142                                 a_flags = flags_exclude;
1143                         a->object.flags |= a_flags;
1144                         b->object.flags |= flags;
1145                         add_rev_cmdline(revs, &a->object, this,
1146                                         REV_CMD_LEFT, a_flags);
1147                         add_rev_cmdline(revs, &b->object, next,
1148                                         REV_CMD_RIGHT, flags);
1149                         add_pending_object(revs, &a->object, this);
1150                         add_pending_object(revs, &b->object, next);
1151                         return 0;
1152                 }
1153                 *dotdot = '.';
1154         }
1155         dotdot = strstr(arg, "^@");
1156         if (dotdot && !dotdot[2]) {
1157                 *dotdot = 0;
1158                 if (add_parents_only(revs, arg, flags))
1159                         return 0;
1160                 *dotdot = '^';
1161         }
1162         dotdot = strstr(arg, "^!");
1163         if (dotdot && !dotdot[2]) {
1164                 *dotdot = 0;
1165                 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1166                         *dotdot = '^';
1167         }
1168
1169         local_flags = 0;
1170         if (*arg == '^') {
1171                 local_flags = UNINTERESTING;
1172                 arg++;
1173         }
1174         if (get_sha1_with_mode(arg, sha1, &mode))
1175                 return revs->ignore_missing ? 0 : -1;
1176         if (!cant_be_filename)
1177                 verify_non_filename(revs->prefix, arg);
1178         object = get_reference(revs, arg, sha1, flags ^ local_flags);
1179         add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1180         add_pending_object_with_mode(revs, object, arg, mode);
1181         return 0;
1182 }
1183
1184 struct cmdline_pathspec {
1185         int alloc;
1186         int nr;
1187         const char **path;
1188 };
1189
1190 static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
1191 {
1192         while (*av) {
1193                 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1194                 prune->path[prune->nr++] = *(av++);
1195         }
1196 }
1197
1198 static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1199                                      struct cmdline_pathspec *prune)
1200 {
1201         while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1202                 int len = sb->len;
1203                 if (len && sb->buf[len - 1] == '\n')
1204                         sb->buf[--len] = '\0';
1205                 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1206                 prune->path[prune->nr++] = xstrdup(sb->buf);
1207         }
1208 }
1209
1210 static void read_revisions_from_stdin(struct rev_info *revs,
1211                                       struct cmdline_pathspec *prune)
1212 {
1213         struct strbuf sb;
1214         int seen_dashdash = 0;
1215
1216         strbuf_init(&sb, 1000);
1217         while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1218                 int len = sb.len;
1219                 if (len && sb.buf[len - 1] == '\n')
1220                         sb.buf[--len] = '\0';
1221                 if (!len)
1222                         break;
1223                 if (sb.buf[0] == '-') {
1224                         if (len == 2 && sb.buf[1] == '-') {
1225                                 seen_dashdash = 1;
1226                                 break;
1227                         }
1228                         die("options not supported in --stdin mode");
1229                 }
1230                 if (handle_revision_arg(sb.buf, revs, 0, 1))
1231                         die("bad revision '%s'", sb.buf);
1232         }
1233         if (seen_dashdash)
1234                 read_pathspec_from_stdin(revs, &sb, prune);
1235         strbuf_release(&sb);
1236 }
1237
1238 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1239 {
1240         append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1241 }
1242
1243 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1244 {
1245         append_header_grep_pattern(&revs->grep_filter, field, pattern);
1246 }
1247
1248 static void add_message_grep(struct rev_info *revs, const char *pattern)
1249 {
1250         add_grep(revs, pattern, GREP_PATTERN_BODY);
1251 }
1252
1253 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1254                                int *unkc, const char **unkv)
1255 {
1256         const char *arg = argv[0];
1257         const char *optarg;
1258         int argcount;
1259
1260         /* pseudo revision arguments */
1261         if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1262             !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1263             !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1264             !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1265             !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") ||
1266             !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") ||
1267             !prefixcmp(arg, "--remotes="))
1268         {
1269                 unkv[(*unkc)++] = arg;
1270                 return 1;
1271         }
1272
1273         if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1274                 revs->max_count = atoi(optarg);
1275                 revs->no_walk = 0;
1276                 return argcount;
1277         } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1278                 revs->skip_count = atoi(optarg);
1279                 return argcount;
1280         } else if ((*arg == '-') && isdigit(arg[1])) {
1281         /* accept -<digit>, like traditional "head" */
1282                 revs->max_count = atoi(arg + 1);
1283                 revs->no_walk = 0;
1284         } else if (!strcmp(arg, "-n")) {
1285                 if (argc <= 1)
1286                         return error("-n requires an argument");
1287                 revs->max_count = atoi(argv[1]);
1288                 revs->no_walk = 0;
1289                 return 2;
1290         } else if (!prefixcmp(arg, "-n")) {
1291                 revs->max_count = atoi(arg + 2);
1292                 revs->no_walk = 0;
1293         } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1294                 revs->max_age = atoi(optarg);
1295                 return argcount;
1296         } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1297                 revs->max_age = approxidate(optarg);
1298                 return argcount;
1299         } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1300                 revs->max_age = approxidate(optarg);
1301                 return argcount;
1302         } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1303                 revs->min_age = atoi(optarg);
1304                 return argcount;
1305         } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1306                 revs->min_age = approxidate(optarg);
1307                 return argcount;
1308         } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1309                 revs->min_age = approxidate(optarg);
1310                 return argcount;
1311         } else if (!strcmp(arg, "--first-parent")) {
1312                 revs->first_parent_only = 1;
1313         } else if (!strcmp(arg, "--ancestry-path")) {
1314                 revs->ancestry_path = 1;
1315                 revs->simplify_history = 0;
1316                 revs->limited = 1;
1317         } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1318                 init_reflog_walk(&revs->reflog_info);
1319         } else if (!strcmp(arg, "--default")) {
1320                 if (argc <= 1)
1321                         return error("bad --default argument");
1322                 revs->def = argv[1];
1323                 return 2;
1324         } else if (!strcmp(arg, "--merge")) {
1325                 revs->show_merge = 1;
1326         } else if (!strcmp(arg, "--topo-order")) {
1327                 revs->lifo = 1;
1328                 revs->topo_order = 1;
1329         } else if (!strcmp(arg, "--simplify-merges")) {
1330                 revs->simplify_merges = 1;
1331                 revs->rewrite_parents = 1;
1332                 revs->simplify_history = 0;
1333                 revs->limited = 1;
1334         } else if (!strcmp(arg, "--simplify-by-decoration")) {
1335                 revs->simplify_merges = 1;
1336                 revs->rewrite_parents = 1;
1337                 revs->simplify_history = 0;
1338                 revs->simplify_by_decoration = 1;
1339                 revs->limited = 1;
1340                 revs->prune = 1;
1341                 load_ref_decorations(DECORATE_SHORT_REFS);
1342         } else if (!strcmp(arg, "--date-order")) {
1343                 revs->lifo = 0;
1344                 revs->topo_order = 1;
1345         } else if (!prefixcmp(arg, "--early-output")) {
1346                 int count = 100;
1347                 switch (arg[14]) {
1348                 case '=':
1349                         count = atoi(arg+15);
1350                         /* Fallthrough */
1351                 case 0:
1352                         revs->topo_order = 1;
1353                        revs->early_output = count;
1354                 }
1355         } else if (!strcmp(arg, "--parents")) {
1356                 revs->rewrite_parents = 1;
1357                 revs->print_parents = 1;
1358         } else if (!strcmp(arg, "--dense")) {
1359                 revs->dense = 1;
1360         } else if (!strcmp(arg, "--sparse")) {
1361                 revs->dense = 0;
1362         } else if (!strcmp(arg, "--show-all")) {
1363                 revs->show_all = 1;
1364         } else if (!strcmp(arg, "--remove-empty")) {
1365                 revs->remove_empty_trees = 1;
1366         } else if (!strcmp(arg, "--merges")) {
1367                 revs->min_parents = 2;
1368         } else if (!strcmp(arg, "--no-merges")) {
1369                 revs->max_parents = 1;
1370         } else if (!prefixcmp(arg, "--min-parents=")) {
1371                 revs->min_parents = atoi(arg+14);
1372         } else if (!prefixcmp(arg, "--no-min-parents")) {
1373                 revs->min_parents = 0;
1374         } else if (!prefixcmp(arg, "--max-parents=")) {
1375                 revs->max_parents = atoi(arg+14);
1376         } else if (!prefixcmp(arg, "--no-max-parents")) {
1377                 revs->max_parents = -1;
1378         } else if (!strcmp(arg, "--boundary")) {
1379                 revs->boundary = 1;
1380         } else if (!strcmp(arg, "--left-right")) {
1381                 revs->left_right = 1;
1382         } else if (!strcmp(arg, "--left-only")) {
1383                 if (revs->right_only)
1384                         die("--left-only is incompatible with --right-only"
1385                             " or --cherry");
1386                 revs->left_only = 1;
1387         } else if (!strcmp(arg, "--right-only")) {
1388                 if (revs->left_only)
1389                         die("--right-only is incompatible with --left-only");
1390                 revs->right_only = 1;
1391         } else if (!strcmp(arg, "--cherry")) {
1392                 if (revs->left_only)
1393                         die("--cherry is incompatible with --left-only");
1394                 revs->cherry_mark = 1;
1395                 revs->right_only = 1;
1396                 revs->max_parents = 1;
1397                 revs->limited = 1;
1398         } else if (!strcmp(arg, "--count")) {
1399                 revs->count = 1;
1400         } else if (!strcmp(arg, "--cherry-mark")) {
1401                 if (revs->cherry_pick)
1402                         die("--cherry-mark is incompatible with --cherry-pick");
1403                 revs->cherry_mark = 1;
1404                 revs->limited = 1; /* needs limit_list() */
1405         } else if (!strcmp(arg, "--cherry-pick")) {
1406                 if (revs->cherry_mark)
1407                         die("--cherry-pick is incompatible with --cherry-mark");
1408                 revs->cherry_pick = 1;
1409                 revs->limited = 1;
1410         } else if (!strcmp(arg, "--objects")) {
1411                 revs->tag_objects = 1;
1412                 revs->tree_objects = 1;
1413                 revs->blob_objects = 1;
1414         } else if (!strcmp(arg, "--objects-edge")) {
1415                 revs->tag_objects = 1;
1416                 revs->tree_objects = 1;
1417                 revs->blob_objects = 1;
1418                 revs->edge_hint = 1;
1419         } else if (!strcmp(arg, "--unpacked")) {
1420                 revs->unpacked = 1;
1421         } else if (!prefixcmp(arg, "--unpacked=")) {
1422                 die("--unpacked=<packfile> no longer supported.");
1423         } else if (!strcmp(arg, "-r")) {
1424                 revs->diff = 1;
1425                 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1426         } else if (!strcmp(arg, "-t")) {
1427                 revs->diff = 1;
1428                 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1429                 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1430         } else if (!strcmp(arg, "-m")) {
1431                 revs->ignore_merges = 0;
1432         } else if (!strcmp(arg, "-c")) {
1433                 revs->diff = 1;
1434                 revs->dense_combined_merges = 0;
1435                 revs->combine_merges = 1;
1436         } else if (!strcmp(arg, "--cc")) {
1437                 revs->diff = 1;
1438                 revs->dense_combined_merges = 1;
1439                 revs->combine_merges = 1;
1440         } else if (!strcmp(arg, "-v")) {
1441                 revs->verbose_header = 1;
1442         } else if (!strcmp(arg, "--pretty")) {
1443                 revs->verbose_header = 1;
1444                 revs->pretty_given = 1;
1445                 get_commit_format(arg+8, revs);
1446         } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
1447                 /*
1448                  * Detached form ("--pretty X" as opposed to "--pretty=X")
1449                  * not allowed, since the argument is optional.
1450                  */
1451                 revs->verbose_header = 1;
1452                 revs->pretty_given = 1;
1453                 get_commit_format(arg+9, revs);
1454         } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
1455                 revs->show_notes = 1;
1456                 revs->show_notes_given = 1;
1457                 revs->notes_opt.use_default_notes = 1;
1458         } else if (!prefixcmp(arg, "--show-notes=") ||
1459                    !prefixcmp(arg, "--notes=")) {
1460                 struct strbuf buf = STRBUF_INIT;
1461                 revs->show_notes = 1;
1462                 revs->show_notes_given = 1;
1463                 if (!prefixcmp(arg, "--show-notes")) {
1464                         if (revs->notes_opt.use_default_notes < 0)
1465                                 revs->notes_opt.use_default_notes = 1;
1466                         strbuf_addstr(&buf, arg+13);
1467                 }
1468                 else
1469                         strbuf_addstr(&buf, arg+8);
1470                 expand_notes_ref(&buf);
1471                 string_list_append(&revs->notes_opt.extra_notes_refs,
1472                                    strbuf_detach(&buf, NULL));
1473         } else if (!strcmp(arg, "--no-notes")) {
1474                 revs->show_notes = 0;
1475                 revs->show_notes_given = 1;
1476                 revs->notes_opt.use_default_notes = -1;
1477                 /* we have been strdup'ing ourselves, so trick
1478                  * string_list into free()ing strings */
1479                 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1480                 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1481                 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
1482         } else if (!strcmp(arg, "--standard-notes")) {
1483                 revs->show_notes_given = 1;
1484                 revs->notes_opt.use_default_notes = 1;
1485         } else if (!strcmp(arg, "--no-standard-notes")) {
1486                 revs->notes_opt.use_default_notes = 0;
1487         } else if (!strcmp(arg, "--oneline")) {
1488                 revs->verbose_header = 1;
1489                 get_commit_format("oneline", revs);
1490                 revs->pretty_given = 1;
1491                 revs->abbrev_commit = 1;
1492         } else if (!strcmp(arg, "--graph")) {
1493                 revs->topo_order = 1;
1494                 revs->rewrite_parents = 1;
1495                 revs->graph = graph_init(revs);
1496         } else if (!strcmp(arg, "--root")) {
1497                 revs->show_root_diff = 1;
1498         } else if (!strcmp(arg, "--no-commit-id")) {
1499                 revs->no_commit_id = 1;
1500         } else if (!strcmp(arg, "--always")) {
1501                 revs->always_show_header = 1;
1502         } else if (!strcmp(arg, "--no-abbrev")) {
1503                 revs->abbrev = 0;
1504         } else if (!strcmp(arg, "--abbrev")) {
1505                 revs->abbrev = DEFAULT_ABBREV;
1506         } else if (!prefixcmp(arg, "--abbrev=")) {
1507                 revs->abbrev = strtoul(arg + 9, NULL, 10);
1508                 if (revs->abbrev < MINIMUM_ABBREV)
1509                         revs->abbrev = MINIMUM_ABBREV;
1510                 else if (revs->abbrev > 40)
1511                         revs->abbrev = 40;
1512         } else if (!strcmp(arg, "--abbrev-commit")) {
1513                 revs->abbrev_commit = 1;
1514                 revs->abbrev_commit_given = 1;
1515         } else if (!strcmp(arg, "--no-abbrev-commit")) {
1516                 revs->abbrev_commit = 0;
1517         } else if (!strcmp(arg, "--full-diff")) {
1518                 revs->diff = 1;
1519                 revs->full_diff = 1;
1520         } else if (!strcmp(arg, "--full-history")) {
1521                 revs->simplify_history = 0;
1522         } else if (!strcmp(arg, "--relative-date")) {
1523                 revs->date_mode = DATE_RELATIVE;
1524                 revs->date_mode_explicit = 1;
1525         } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1526                 revs->date_mode = parse_date_format(optarg);
1527                 revs->date_mode_explicit = 1;
1528                 return argcount;
1529         } else if (!strcmp(arg, "--log-size")) {
1530                 revs->show_log_size = 1;
1531         }
1532         /*
1533          * Grepping the commit log
1534          */
1535         else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1536                 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1537                 return argcount;
1538         } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1539                 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1540                 return argcount;
1541         } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1542                 add_message_grep(revs, optarg);
1543                 return argcount;
1544         } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1545                 revs->grep_filter.regflags |= REG_EXTENDED;
1546         } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1547                 revs->grep_filter.regflags |= REG_ICASE;
1548         } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1549                 revs->grep_filter.fixed = 1;
1550         } else if (!strcmp(arg, "--all-match")) {
1551                 revs->grep_filter.all_match = 1;
1552         } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1553                 if (strcmp(optarg, "none"))
1554                         git_log_output_encoding = xstrdup(optarg);
1555                 else
1556                         git_log_output_encoding = "";
1557                 return argcount;
1558         } else if (!strcmp(arg, "--reverse")) {
1559                 revs->reverse ^= 1;
1560         } else if (!strcmp(arg, "--children")) {
1561                 revs->children.name = "children";
1562                 revs->limited = 1;
1563         } else if (!strcmp(arg, "--ignore-missing")) {
1564                 revs->ignore_missing = 1;
1565         } else {
1566                 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1567                 if (!opts)
1568                         unkv[(*unkc)++] = arg;
1569                 return opts;
1570         }
1571
1572         return 1;
1573 }
1574
1575 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1576                         const struct option *options,
1577                         const char * const usagestr[])
1578 {
1579         int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1580                                     &ctx->cpidx, ctx->out);
1581         if (n <= 0) {
1582                 error("unknown option `%s'", ctx->argv[0]);
1583                 usage_with_options(usagestr, options);
1584         }
1585         ctx->argv += n;
1586         ctx->argc -= n;
1587 }
1588
1589 static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1590 {
1591         return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
1592 }
1593
1594 static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1595 {
1596         return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
1597 }
1598
1599 static int handle_revision_pseudo_opt(const char *submodule,
1600                                 struct rev_info *revs,
1601                                 int argc, const char **argv, int *flags)
1602 {
1603         const char *arg = argv[0];
1604         const char *optarg;
1605         int argcount;
1606
1607         /*
1608          * NOTE!
1609          *
1610          * Commands like "git shortlog" will not accept the options below
1611          * unless parse_revision_opt queues them (as opposed to erroring
1612          * out).
1613          *
1614          * When implementing your new pseudo-option, remember to
1615          * register it in the list at the top of handle_revision_opt.
1616          */
1617         if (!strcmp(arg, "--all")) {
1618                 handle_refs(submodule, revs, *flags, for_each_ref_submodule);
1619                 handle_refs(submodule, revs, *flags, head_ref_submodule);
1620         } else if (!strcmp(arg, "--branches")) {
1621                 handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
1622         } else if (!strcmp(arg, "--bisect")) {
1623                 handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
1624                 handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref);
1625                 revs->bisect = 1;
1626         } else if (!strcmp(arg, "--tags")) {
1627                 handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
1628         } else if (!strcmp(arg, "--remotes")) {
1629                 handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
1630         } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
1631                 struct all_refs_cb cb;
1632                 init_all_refs_cb(&cb, revs, *flags);
1633                 for_each_glob_ref(handle_one_ref, optarg, &cb);
1634                 return argcount;
1635         } else if (!prefixcmp(arg, "--branches=")) {
1636                 struct all_refs_cb cb;
1637                 init_all_refs_cb(&cb, revs, *flags);
1638                 for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1639         } else if (!prefixcmp(arg, "--tags=")) {
1640                 struct all_refs_cb cb;
1641                 init_all_refs_cb(&cb, revs, *flags);
1642                 for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1643         } else if (!prefixcmp(arg, "--remotes=")) {
1644                 struct all_refs_cb cb;
1645                 init_all_refs_cb(&cb, revs, *flags);
1646                 for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1647         } else if (!strcmp(arg, "--reflog")) {
1648                 handle_reflog(revs, *flags);
1649         } else if (!strcmp(arg, "--not")) {
1650                 *flags ^= UNINTERESTING;
1651         } else if (!strcmp(arg, "--no-walk")) {
1652                 revs->no_walk = 1;
1653         } else if (!strcmp(arg, "--do-walk")) {
1654                 revs->no_walk = 0;
1655         } else {
1656                 return 0;
1657         }
1658
1659         return 1;
1660 }
1661
1662 /*
1663  * Parse revision information, filling in the "rev_info" structure,
1664  * and removing the used arguments from the argument list.
1665  *
1666  * Returns the number of arguments left that weren't recognized
1667  * (which are also moved to the head of the argument list)
1668  */
1669 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
1670 {
1671         int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0;
1672         struct cmdline_pathspec prune_data;
1673         const char *submodule = NULL;
1674
1675         memset(&prune_data, 0, sizeof(prune_data));
1676         if (opt)
1677                 submodule = opt->submodule;
1678
1679         /* First, search for "--" */
1680         seen_dashdash = 0;
1681         for (i = 1; i < argc; i++) {
1682                 const char *arg = argv[i];
1683                 if (strcmp(arg, "--"))
1684                         continue;
1685                 argv[i] = NULL;
1686                 argc = i;
1687                 if (argv[i + 1])
1688                         append_prune_data(&prune_data, argv + i + 1);
1689                 seen_dashdash = 1;
1690                 break;
1691         }
1692
1693         /* Second, deal with arguments and options */
1694         flags = 0;
1695         read_from_stdin = 0;
1696         for (left = i = 1; i < argc; i++) {
1697                 const char *arg = argv[i];
1698                 if (*arg == '-') {
1699                         int opts;
1700
1701                         opts = handle_revision_pseudo_opt(submodule,
1702                                                 revs, argc - i, argv + i,
1703                                                 &flags);
1704                         if (opts > 0) {
1705                                 i += opts - 1;
1706                                 continue;
1707                         }
1708
1709                         if (!strcmp(arg, "--stdin")) {
1710                                 if (revs->disable_stdin) {
1711                                         argv[left++] = arg;
1712                                         continue;
1713                                 }
1714                                 if (read_from_stdin++)
1715                                         die("--stdin given twice?");
1716                                 read_revisions_from_stdin(revs, &prune_data);
1717                                 continue;
1718                         }
1719
1720                         opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1721                         if (opts > 0) {
1722                                 i += opts - 1;
1723                                 continue;
1724                         }
1725                         if (opts < 0)
1726                                 exit(128);
1727                         continue;
1728                 }
1729
1730                 if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
1731                         int j;
1732                         if (seen_dashdash || *arg == '^')
1733                                 die("bad revision '%s'", arg);
1734
1735                         /* If we didn't have a "--":
1736                          * (1) all filenames must exist;
1737                          * (2) all rev-args must not be interpretable
1738                          *     as a valid filename.
1739                          * but the latter we have checked in the main loop.
1740                          */
1741                         for (j = i; j < argc; j++)
1742                                 verify_filename(revs->prefix, argv[j]);
1743
1744                         append_prune_data(&prune_data, argv + i);
1745                         break;
1746                 }
1747                 else
1748                         got_rev_arg = 1;
1749         }
1750
1751         if (prune_data.nr) {
1752                 /*
1753                  * If we need to introduce the magic "a lone ':' means no
1754                  * pathspec whatsoever", here is the place to do so.
1755                  *
1756                  * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1757                  *      prune_data.nr = 0;
1758                  *      prune_data.alloc = 0;
1759                  *      free(prune_data.path);
1760                  *      prune_data.path = NULL;
1761                  * } else {
1762                  *      terminate prune_data.alloc with NULL and
1763                  *      call init_pathspec() to set revs->prune_data here.
1764                  * }
1765                  */
1766                 ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc);
1767                 prune_data.path[prune_data.nr++] = NULL;
1768                 init_pathspec(&revs->prune_data,
1769                               get_pathspec(revs->prefix, prune_data.path));
1770         }
1771
1772         if (revs->def == NULL)
1773                 revs->def = opt ? opt->def : NULL;
1774         if (opt && opt->tweak)
1775                 opt->tweak(revs, opt);
1776         if (revs->show_merge)
1777                 prepare_show_merge(revs);
1778         if (revs->def && !revs->pending.nr && !got_rev_arg) {
1779                 unsigned char sha1[20];
1780                 struct object *object;
1781                 unsigned mode;
1782                 if (get_sha1_with_mode(revs->def, sha1, &mode))
1783                         die("bad default revision '%s'", revs->def);
1784                 object = get_reference(revs, revs->def, sha1, 0);
1785                 add_pending_object_with_mode(revs, object, revs->def, mode);
1786         }
1787
1788         /* Did the user ask for any diff output? Run the diff! */
1789         if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1790                 revs->diff = 1;
1791
1792         /* Pickaxe, diff-filter and rename following need diffs */
1793         if (revs->diffopt.pickaxe ||
1794             revs->diffopt.filter ||
1795             DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1796                 revs->diff = 1;
1797
1798         if (revs->topo_order)
1799                 revs->limited = 1;
1800
1801         if (revs->prune_data.nr) {
1802                 diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning);
1803                 /* Can't prune commits with rename following: the paths change.. */
1804                 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1805                         revs->prune = 1;
1806                 if (!revs->full_diff)
1807                         diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt);
1808         }
1809         if (revs->combine_merges)
1810                 revs->ignore_merges = 0;
1811         revs->diffopt.abbrev = revs->abbrev;
1812         if (diff_setup_done(&revs->diffopt) < 0)
1813                 die("diff_setup_done failed");
1814
1815         compile_grep_patterns(&revs->grep_filter);
1816
1817         if (revs->reverse && revs->reflog_info)
1818                 die("cannot combine --reverse with --walk-reflogs");
1819         if (revs->rewrite_parents && revs->children.name)
1820                 die("cannot combine --parents and --children");
1821
1822         /*
1823          * Limitations on the graph functionality
1824          */
1825         if (revs->reverse && revs->graph)
1826                 die("cannot combine --reverse with --graph");
1827
1828         if (revs->reflog_info && revs->graph)
1829                 die("cannot combine --walk-reflogs with --graph");
1830
1831         return left;
1832 }
1833
1834 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1835 {
1836         struct commit_list *l = xcalloc(1, sizeof(*l));
1837
1838         l->item = child;
1839         l->next = add_decoration(&revs->children, &parent->object, l);
1840 }
1841
1842 static int remove_duplicate_parents(struct commit *commit)
1843 {
1844         struct commit_list **pp, *p;
1845         int surviving_parents;
1846
1847         /* Examine existing parents while marking ones we have seen... */
1848         pp = &commit->parents;
1849         while ((p = *pp) != NULL) {
1850                 struct commit *parent = p->item;
1851                 if (parent->object.flags & TMP_MARK) {
1852                         *pp = p->next;
1853                         continue;
1854                 }
1855                 parent->object.flags |= TMP_MARK;
1856                 pp = &p->next;
1857         }
1858         /* count them while clearing the temporary mark */
1859         surviving_parents = 0;
1860         for (p = commit->parents; p; p = p->next) {
1861                 p->item->object.flags &= ~TMP_MARK;
1862                 surviving_parents++;
1863         }
1864         return surviving_parents;
1865 }
1866
1867 struct merge_simplify_state {
1868         struct commit *simplified;
1869 };
1870
1871 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1872 {
1873         struct merge_simplify_state *st;
1874
1875         st = lookup_decoration(&revs->merge_simplification, &commit->object);
1876         if (!st) {
1877                 st = xcalloc(1, sizeof(*st));
1878                 add_decoration(&revs->merge_simplification, &commit->object, st);
1879         }
1880         return st;
1881 }
1882
1883 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
1884 {
1885         struct commit_list *p;
1886         struct merge_simplify_state *st, *pst;
1887         int cnt;
1888
1889         st = locate_simplify_state(revs, commit);
1890
1891         /*
1892          * Have we handled this one?
1893          */
1894         if (st->simplified)
1895                 return tail;
1896
1897         /*
1898          * An UNINTERESTING commit simplifies to itself, so does a
1899          * root commit.  We do not rewrite parents of such commit
1900          * anyway.
1901          */
1902         if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
1903                 st->simplified = commit;
1904                 return tail;
1905         }
1906
1907         /*
1908          * Do we know what commit all of our parents should be rewritten to?
1909          * Otherwise we are not ready to rewrite this one yet.
1910          */
1911         for (cnt = 0, p = commit->parents; p; p = p->next) {
1912                 pst = locate_simplify_state(revs, p->item);
1913                 if (!pst->simplified) {
1914                         tail = &commit_list_insert(p->item, tail)->next;
1915                         cnt++;
1916                 }
1917         }
1918         if (cnt) {
1919                 tail = &commit_list_insert(commit, tail)->next;
1920                 return tail;
1921         }
1922
1923         /*
1924          * Rewrite our list of parents.
1925          */
1926         for (p = commit->parents; p; p = p->next) {
1927                 pst = locate_simplify_state(revs, p->item);
1928                 p->item = pst->simplified;
1929         }
1930         cnt = remove_duplicate_parents(commit);
1931
1932         /*
1933          * It is possible that we are a merge and one side branch
1934          * does not have any commit that touches the given paths;
1935          * in such a case, the immediate parents will be rewritten
1936          * to different commits.
1937          *
1938          *      o----X          X: the commit we are looking at;
1939          *     /    /           o: a commit that touches the paths;
1940          * ---o----'
1941          *
1942          * Further reduce the parents by removing redundant parents.
1943          */
1944         if (1 < cnt) {
1945                 struct commit_list *h = reduce_heads(commit->parents);
1946                 cnt = commit_list_count(h);
1947                 free_commit_list(commit->parents);
1948                 commit->parents = h;
1949         }
1950
1951         /*
1952          * A commit simplifies to itself if it is a root, if it is
1953          * UNINTERESTING, if it touches the given paths, or if it is a
1954          * merge and its parents simplifies to more than one commits
1955          * (the first two cases are already handled at the beginning of
1956          * this function).
1957          *
1958          * Otherwise, it simplifies to what its sole parent simplifies to.
1959          */
1960         if (!cnt ||
1961             (commit->object.flags & UNINTERESTING) ||
1962             !(commit->object.flags & TREESAME) ||
1963             (1 < cnt))
1964                 st->simplified = commit;
1965         else {
1966                 pst = locate_simplify_state(revs, commit->parents->item);
1967                 st->simplified = pst->simplified;
1968         }
1969         return tail;
1970 }
1971
1972 static void simplify_merges(struct rev_info *revs)
1973 {
1974         struct commit_list *list;
1975         struct commit_list *yet_to_do, **tail;
1976
1977         if (!revs->topo_order)
1978                 sort_in_topological_order(&revs->commits, revs->lifo);
1979         if (!revs->prune)
1980                 return;
1981
1982         /* feed the list reversed */
1983         yet_to_do = NULL;
1984         for (list = revs->commits; list; list = list->next)
1985                 commit_list_insert(list->item, &yet_to_do);
1986         while (yet_to_do) {
1987                 list = yet_to_do;
1988                 yet_to_do = NULL;
1989                 tail = &yet_to_do;
1990                 while (list) {
1991                         struct commit *commit = list->item;
1992                         struct commit_list *next = list->next;
1993                         free(list);
1994                         list = next;
1995                         tail = simplify_one(revs, commit, tail);
1996                 }
1997         }
1998
1999         /* clean up the result, removing the simplified ones */
2000         list = revs->commits;
2001         revs->commits = NULL;
2002         tail = &revs->commits;
2003         while (list) {
2004                 struct commit *commit = list->item;
2005                 struct commit_list *next = list->next;
2006                 struct merge_simplify_state *st;
2007                 free(list);
2008                 list = next;
2009                 st = locate_simplify_state(revs, commit);
2010                 if (st->simplified == commit)
2011                         tail = &commit_list_insert(commit, tail)->next;
2012         }
2013 }
2014
2015 static void set_children(struct rev_info *revs)
2016 {
2017         struct commit_list *l;
2018         for (l = revs->commits; l; l = l->next) {
2019                 struct commit *commit = l->item;
2020                 struct commit_list *p;
2021
2022                 for (p = commit->parents; p; p = p->next)
2023                         add_child(revs, p->item, commit);
2024         }
2025 }
2026
2027 int prepare_revision_walk(struct rev_info *revs)
2028 {
2029         int nr = revs->pending.nr;
2030         struct object_array_entry *e, *list;
2031
2032         e = list = revs->pending.objects;
2033         revs->pending.nr = 0;
2034         revs->pending.alloc = 0;
2035         revs->pending.objects = NULL;
2036         while (--nr >= 0) {
2037                 struct commit *commit = handle_commit(revs, e->item, e->name);
2038                 if (commit) {
2039                         if (!(commit->object.flags & SEEN)) {
2040                                 commit->object.flags |= SEEN;
2041                                 commit_list_insert_by_date(commit, &revs->commits);
2042                         }
2043                 }
2044                 e++;
2045         }
2046         free(list);
2047
2048         if (revs->no_walk)
2049                 return 0;
2050         if (revs->limited)
2051                 if (limit_list(revs) < 0)
2052                         return -1;
2053         if (revs->topo_order)
2054                 sort_in_topological_order(&revs->commits, revs->lifo);
2055         if (revs->simplify_merges)
2056                 simplify_merges(revs);
2057         if (revs->children.name)
2058                 set_children(revs);
2059         return 0;
2060 }
2061
2062 enum rewrite_result {
2063         rewrite_one_ok,
2064         rewrite_one_noparents,
2065         rewrite_one_error
2066 };
2067
2068 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
2069 {
2070         struct commit_list *cache = NULL;
2071
2072         for (;;) {
2073                 struct commit *p = *pp;
2074                 if (!revs->limited)
2075                         if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
2076                                 return rewrite_one_error;
2077                 if (p->parents && p->parents->next)
2078                         return rewrite_one_ok;
2079                 if (p->object.flags & UNINTERESTING)
2080                         return rewrite_one_ok;
2081                 if (!(p->object.flags & TREESAME))
2082                         return rewrite_one_ok;
2083                 if (!p->parents)
2084                         return rewrite_one_noparents;
2085                 *pp = p->parents->item;
2086         }
2087 }
2088
2089 static int rewrite_parents(struct rev_info *revs, struct commit *commit)
2090 {
2091         struct commit_list **pp = &commit->parents;
2092         while (*pp) {
2093                 struct commit_list *parent = *pp;
2094                 switch (rewrite_one(revs, &parent->item)) {
2095                 case rewrite_one_ok:
2096                         break;
2097                 case rewrite_one_noparents:
2098                         *pp = parent->next;
2099                         continue;
2100                 case rewrite_one_error:
2101                         return -1;
2102                 }
2103                 pp = &parent->next;
2104         }
2105         remove_duplicate_parents(commit);
2106         return 0;
2107 }
2108
2109 static int commit_match(struct commit *commit, struct rev_info *opt)
2110 {
2111         if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
2112                 return 1;
2113         return grep_buffer(&opt->grep_filter,
2114                            NULL, /* we say nothing, not even filename */
2115                            commit->buffer, strlen(commit->buffer));
2116 }
2117
2118 static inline int want_ancestry(struct rev_info *revs)
2119 {
2120         return (revs->rewrite_parents || revs->children.name);
2121 }
2122
2123 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
2124 {
2125         if (commit->object.flags & SHOWN)
2126                 return commit_ignore;
2127         if (revs->unpacked && has_sha1_pack(commit->object.sha1))
2128                 return commit_ignore;
2129         if (revs->show_all)
2130                 return commit_show;
2131         if (commit->object.flags & UNINTERESTING)
2132                 return commit_ignore;
2133         if (revs->min_age != -1 && (commit->date > revs->min_age))
2134                 return commit_ignore;
2135         if (revs->min_parents || (revs->max_parents >= 0)) {
2136                 int n = 0;
2137                 struct commit_list *p;
2138                 for (p = commit->parents; p; p = p->next)
2139                         n++;
2140                 if ((n < revs->min_parents) ||
2141                     ((revs->max_parents >= 0) && (n > revs->max_parents)))
2142                         return commit_ignore;
2143         }
2144         if (!commit_match(commit, revs))
2145                 return commit_ignore;
2146         if (revs->prune && revs->dense) {
2147                 /* Commit without changes? */
2148                 if (commit->object.flags & TREESAME) {
2149                         /* drop merges unless we want parenthood */
2150                         if (!want_ancestry(revs))
2151                                 return commit_ignore;
2152                         /* non-merge - always ignore it */
2153                         if (!commit->parents || !commit->parents->next)
2154                                 return commit_ignore;
2155                 }
2156         }
2157         return commit_show;
2158 }
2159
2160 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2161 {
2162         enum commit_action action = get_commit_action(revs, commit);
2163
2164         if (action == commit_show &&
2165             !revs->show_all &&
2166             revs->prune && revs->dense && want_ancestry(revs)) {
2167                 if (rewrite_parents(revs, commit) < 0)
2168                         return commit_error;
2169         }
2170         return action;
2171 }
2172
2173 static struct commit *get_revision_1(struct rev_info *revs)
2174 {
2175         if (!revs->commits)
2176                 return NULL;
2177
2178         do {
2179                 struct commit_list *entry = revs->commits;
2180                 struct commit *commit = entry->item;
2181
2182                 revs->commits = entry->next;
2183                 free(entry);
2184
2185                 if (revs->reflog_info) {
2186                         fake_reflog_parent(revs->reflog_info, commit);
2187                         commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2188                 }
2189
2190                 /*
2191                  * If we haven't done the list limiting, we need to look at
2192                  * the parents here. We also need to do the date-based limiting
2193                  * that we'd otherwise have done in limit_list().
2194                  */
2195                 if (!revs->limited) {
2196                         if (revs->max_age != -1 &&
2197                             (commit->date < revs->max_age))
2198                                 continue;
2199                         if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
2200                                 die("Failed to traverse parents of commit %s",
2201                                     sha1_to_hex(commit->object.sha1));
2202                 }
2203
2204                 switch (simplify_commit(revs, commit)) {
2205                 case commit_ignore:
2206                         continue;
2207                 case commit_error:
2208                         die("Failed to simplify parents of commit %s",
2209                             sha1_to_hex(commit->object.sha1));
2210                 default:
2211                         return commit;
2212                 }
2213         } while (revs->commits);
2214         return NULL;
2215 }
2216
2217 static void gc_boundary(struct object_array *array)
2218 {
2219         unsigned nr = array->nr;
2220         unsigned alloc = array->alloc;
2221         struct object_array_entry *objects = array->objects;
2222
2223         if (alloc <= nr) {
2224                 unsigned i, j;
2225                 for (i = j = 0; i < nr; i++) {
2226                         if (objects[i].item->flags & SHOWN)
2227                                 continue;
2228                         if (i != j)
2229                                 objects[j] = objects[i];
2230                         j++;
2231                 }
2232                 for (i = j; i < nr; i++)
2233                         objects[i].item = NULL;
2234                 array->nr = j;
2235         }
2236 }
2237
2238 static void create_boundary_commit_list(struct rev_info *revs)
2239 {
2240         unsigned i;
2241         struct commit *c;
2242         struct object_array *array = &revs->boundary_commits;
2243         struct object_array_entry *objects = array->objects;
2244
2245         /*
2246          * If revs->commits is non-NULL at this point, an error occurred in
2247          * get_revision_1().  Ignore the error and continue printing the
2248          * boundary commits anyway.  (This is what the code has always
2249          * done.)
2250          */
2251         if (revs->commits) {
2252                 free_commit_list(revs->commits);
2253                 revs->commits = NULL;
2254         }
2255
2256         /*
2257          * Put all of the actual boundary commits from revs->boundary_commits
2258          * into revs->commits
2259          */
2260         for (i = 0; i < array->nr; i++) {
2261                 c = (struct commit *)(objects[i].item);
2262                 if (!c)
2263                         continue;
2264                 if (!(c->object.flags & CHILD_SHOWN))
2265                         continue;
2266                 if (c->object.flags & (SHOWN | BOUNDARY))
2267                         continue;
2268                 c->object.flags |= BOUNDARY;
2269                 commit_list_insert(c, &revs->commits);
2270         }
2271
2272         /*
2273          * If revs->topo_order is set, sort the boundary commits
2274          * in topological order
2275          */
2276         sort_in_topological_order(&revs->commits, revs->lifo);
2277 }
2278
2279 static struct commit *get_revision_internal(struct rev_info *revs)
2280 {
2281         struct commit *c = NULL;
2282         struct commit_list *l;
2283
2284         if (revs->boundary == 2) {
2285                 /*
2286                  * All of the normal commits have already been returned,
2287                  * and we are now returning boundary commits.
2288                  * create_boundary_commit_list() has populated
2289                  * revs->commits with the remaining commits to return.
2290                  */
2291                 c = pop_commit(&revs->commits);
2292                 if (c)
2293                         c->object.flags |= SHOWN;
2294                 return c;
2295         }
2296
2297         /*
2298          * Now pick up what they want to give us
2299          */
2300         c = get_revision_1(revs);
2301         if (c) {
2302                 while (0 < revs->skip_count) {
2303                         revs->skip_count--;
2304                         c = get_revision_1(revs);
2305                         if (!c)
2306                                 break;
2307                 }
2308         }
2309
2310         /*
2311          * Check the max_count.
2312          */
2313         switch (revs->max_count) {
2314         case -1:
2315                 break;
2316         case 0:
2317                 c = NULL;
2318                 break;
2319         default:
2320                 revs->max_count--;
2321         }
2322
2323         if (c)
2324                 c->object.flags |= SHOWN;
2325
2326         if (!revs->boundary) {
2327                 return c;
2328         }
2329
2330         if (!c) {
2331                 /*
2332                  * get_revision_1() runs out the commits, and
2333                  * we are done computing the boundaries.
2334                  * switch to boundary commits output mode.
2335                  */
2336                 revs->boundary = 2;
2337
2338                 /*
2339                  * Update revs->commits to contain the list of
2340                  * boundary commits.
2341                  */
2342                 create_boundary_commit_list(revs);
2343
2344                 return get_revision_internal(revs);
2345         }
2346
2347         /*
2348          * boundary commits are the commits that are parents of the
2349          * ones we got from get_revision_1() but they themselves are
2350          * not returned from get_revision_1().  Before returning
2351          * 'c', we need to mark its parents that they could be boundaries.
2352          */
2353
2354         for (l = c->parents; l; l = l->next) {
2355                 struct object *p;
2356                 p = &(l->item->object);
2357                 if (p->flags & (CHILD_SHOWN | SHOWN))
2358                         continue;
2359                 p->flags |= CHILD_SHOWN;
2360                 gc_boundary(&revs->boundary_commits);
2361                 add_object_array(p, NULL, &revs->boundary_commits);
2362         }
2363
2364         return c;
2365 }
2366
2367 struct commit *get_revision(struct rev_info *revs)
2368 {
2369         struct commit *c;
2370         struct commit_list *reversed;
2371
2372         if (revs->reverse) {
2373                 reversed = NULL;
2374                 while ((c = get_revision_internal(revs))) {
2375                         commit_list_insert(c, &reversed);
2376                 }
2377                 revs->commits = reversed;
2378                 revs->reverse = 0;
2379                 revs->reverse_output_stage = 1;
2380         }
2381
2382         if (revs->reverse_output_stage)
2383                 return pop_commit(&revs->commits);
2384
2385         c = get_revision_internal(revs);
2386         if (c && revs->graph)
2387                 graph_update(revs->graph, c);
2388         return c;
2389 }
2390
2391 char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
2392 {
2393         if (commit->object.flags & BOUNDARY)
2394                 return "-";
2395         else if (commit->object.flags & UNINTERESTING)
2396                 return "^";
2397         else if (commit->object.flags & PATCHSAME)
2398                 return "=";
2399         else if (!revs || revs->left_right) {
2400                 if (commit->object.flags & SYMMETRIC_LEFT)
2401                         return "<";
2402                 else
2403                         return ">";
2404         } else if (revs->graph)
2405                 return "*";
2406         else if (revs->cherry_mark)
2407                 return "+";
2408         return "";
2409 }
2410
2411 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
2412 {
2413         char *mark = get_revision_mark(revs, commit);
2414         if (!strlen(mark))
2415                 return;
2416         fputs(mark, stdout);
2417         putchar(' ');
2418 }