Merge branch 'jn/no-g-plus-s-on-bsd'
[git.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))
1056                 die("--merge without HEAD?");
1057         head = lookup_commit_or_die(sha1, "HEAD");
1058         if (get_sha1("MERGE_HEAD", sha1))
1059                 die("--merge without MERGE_HEAD?");
1060         other = lookup_commit_or_die(sha1, "MERGE_HEAD");
1061         add_pending_object(revs, &head->object, "HEAD");
1062         add_pending_object(revs, &other->object, "MERGE_HEAD");
1063         bases = get_merge_bases(head, other, 1);
1064         add_pending_commit_list(revs, bases, UNINTERESTING);
1065         free_commit_list(bases);
1066         head->object.flags |= SYMMETRIC_LEFT;
1067
1068         if (!active_nr)
1069                 read_cache();
1070         for (i = 0; i < active_nr; i++) {
1071                 struct cache_entry *ce = active_cache[i];
1072                 if (!ce_stage(ce))
1073                         continue;
1074                 if (ce_path_match(ce, &revs->prune_data)) {
1075                         prune_num++;
1076                         prune = xrealloc(prune, sizeof(*prune) * prune_num);
1077                         prune[prune_num-2] = ce->name;
1078                         prune[prune_num-1] = NULL;
1079                 }
1080                 while ((i+1 < active_nr) &&
1081                        ce_same_name(ce, active_cache[i+1]))
1082                         i++;
1083         }
1084         free_pathspec(&revs->prune_data);
1085         init_pathspec(&revs->prune_data, prune);
1086         revs->limited = 1;
1087 }
1088
1089 int handle_revision_arg(const char *arg_, struct rev_info *revs,
1090                         int flags,
1091                         int cant_be_filename)
1092 {
1093         unsigned mode;
1094         char *dotdot;
1095         struct object *object;
1096         unsigned char sha1[20];
1097         int local_flags;
1098         const char *arg = arg_;
1099
1100         dotdot = strstr(arg, "..");
1101         if (dotdot) {
1102                 unsigned char from_sha1[20];
1103                 const char *next = dotdot + 2;
1104                 const char *this = arg;
1105                 int symmetric = *next == '.';
1106                 unsigned int flags_exclude = flags ^ UNINTERESTING;
1107                 unsigned int a_flags;
1108
1109                 *dotdot = 0;
1110                 next += symmetric;
1111
1112                 if (!*next)
1113                         next = "HEAD";
1114                 if (dotdot == arg)
1115                         this = "HEAD";
1116                 if (!get_sha1(this, from_sha1) &&
1117                     !get_sha1(next, sha1)) {
1118                         struct commit *a, *b;
1119                         struct commit_list *exclude;
1120
1121                         a = lookup_commit_reference(from_sha1);
1122                         b = lookup_commit_reference(sha1);
1123                         if (!a || !b) {
1124                                 if (revs->ignore_missing)
1125                                         return 0;
1126                                 die(symmetric ?
1127                                     "Invalid symmetric difference expression %s...%s" :
1128                                     "Invalid revision range %s..%s",
1129                                     arg, next);
1130                         }
1131
1132                         if (!cant_be_filename) {
1133                                 *dotdot = '.';
1134                                 verify_non_filename(revs->prefix, arg);
1135                         }
1136
1137                         if (symmetric) {
1138                                 exclude = get_merge_bases(a, b, 1);
1139                                 add_pending_commit_list(revs, exclude,
1140                                                         flags_exclude);
1141                                 free_commit_list(exclude);
1142                                 a_flags = flags | SYMMETRIC_LEFT;
1143                         } else
1144                                 a_flags = flags_exclude;
1145                         a->object.flags |= a_flags;
1146                         b->object.flags |= flags;
1147                         add_rev_cmdline(revs, &a->object, this,
1148                                         REV_CMD_LEFT, a_flags);
1149                         add_rev_cmdline(revs, &b->object, next,
1150                                         REV_CMD_RIGHT, flags);
1151                         add_pending_object(revs, &a->object, this);
1152                         add_pending_object(revs, &b->object, next);
1153                         return 0;
1154                 }
1155                 *dotdot = '.';
1156         }
1157         dotdot = strstr(arg, "^@");
1158         if (dotdot && !dotdot[2]) {
1159                 *dotdot = 0;
1160                 if (add_parents_only(revs, arg, flags))
1161                         return 0;
1162                 *dotdot = '^';
1163         }
1164         dotdot = strstr(arg, "^!");
1165         if (dotdot && !dotdot[2]) {
1166                 *dotdot = 0;
1167                 if (!add_parents_only(revs, arg, flags ^ UNINTERESTING))
1168                         *dotdot = '^';
1169         }
1170
1171         local_flags = 0;
1172         if (*arg == '^') {
1173                 local_flags = UNINTERESTING;
1174                 arg++;
1175         }
1176         if (get_sha1_with_mode(arg, sha1, &mode))
1177                 return revs->ignore_missing ? 0 : -1;
1178         if (!cant_be_filename)
1179                 verify_non_filename(revs->prefix, arg);
1180         object = get_reference(revs, arg, sha1, flags ^ local_flags);
1181         add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
1182         add_pending_object_with_mode(revs, object, arg, mode);
1183         return 0;
1184 }
1185
1186 struct cmdline_pathspec {
1187         int alloc;
1188         int nr;
1189         const char **path;
1190 };
1191
1192 static void append_prune_data(struct cmdline_pathspec *prune, const char **av)
1193 {
1194         while (*av) {
1195                 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1196                 prune->path[prune->nr++] = *(av++);
1197         }
1198 }
1199
1200 static void read_pathspec_from_stdin(struct rev_info *revs, struct strbuf *sb,
1201                                      struct cmdline_pathspec *prune)
1202 {
1203         while (strbuf_getwholeline(sb, stdin, '\n') != EOF) {
1204                 int len = sb->len;
1205                 if (len && sb->buf[len - 1] == '\n')
1206                         sb->buf[--len] = '\0';
1207                 ALLOC_GROW(prune->path, prune->nr+1, prune->alloc);
1208                 prune->path[prune->nr++] = xstrdup(sb->buf);
1209         }
1210 }
1211
1212 static void read_revisions_from_stdin(struct rev_info *revs,
1213                                       struct cmdline_pathspec *prune)
1214 {
1215         struct strbuf sb;
1216         int seen_dashdash = 0;
1217
1218         strbuf_init(&sb, 1000);
1219         while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
1220                 int len = sb.len;
1221                 if (len && sb.buf[len - 1] == '\n')
1222                         sb.buf[--len] = '\0';
1223                 if (!len)
1224                         break;
1225                 if (sb.buf[0] == '-') {
1226                         if (len == 2 && sb.buf[1] == '-') {
1227                                 seen_dashdash = 1;
1228                                 break;
1229                         }
1230                         die("options not supported in --stdin mode");
1231                 }
1232                 if (handle_revision_arg(sb.buf, revs, 0, 1))
1233                         die("bad revision '%s'", sb.buf);
1234         }
1235         if (seen_dashdash)
1236                 read_pathspec_from_stdin(revs, &sb, prune);
1237         strbuf_release(&sb);
1238 }
1239
1240 static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
1241 {
1242         append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
1243 }
1244
1245 static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
1246 {
1247         append_header_grep_pattern(&revs->grep_filter, field, pattern);
1248 }
1249
1250 static void add_message_grep(struct rev_info *revs, const char *pattern)
1251 {
1252         add_grep(revs, pattern, GREP_PATTERN_BODY);
1253 }
1254
1255 static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
1256                                int *unkc, const char **unkv)
1257 {
1258         const char *arg = argv[0];
1259         const char *optarg;
1260         int argcount;
1261
1262         /* pseudo revision arguments */
1263         if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
1264             !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
1265             !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
1266             !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
1267             !strcmp(arg, "--bisect") || !prefixcmp(arg, "--glob=") ||
1268             !prefixcmp(arg, "--branches=") || !prefixcmp(arg, "--tags=") ||
1269             !prefixcmp(arg, "--remotes="))
1270         {
1271                 unkv[(*unkc)++] = arg;
1272                 return 1;
1273         }
1274
1275         if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
1276                 revs->max_count = atoi(optarg);
1277                 revs->no_walk = 0;
1278                 return argcount;
1279         } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
1280                 revs->skip_count = atoi(optarg);
1281                 return argcount;
1282         } else if ((*arg == '-') && isdigit(arg[1])) {
1283         /* accept -<digit>, like traditional "head" */
1284                 revs->max_count = atoi(arg + 1);
1285                 revs->no_walk = 0;
1286         } else if (!strcmp(arg, "-n")) {
1287                 if (argc <= 1)
1288                         return error("-n requires an argument");
1289                 revs->max_count = atoi(argv[1]);
1290                 revs->no_walk = 0;
1291                 return 2;
1292         } else if (!prefixcmp(arg, "-n")) {
1293                 revs->max_count = atoi(arg + 2);
1294                 revs->no_walk = 0;
1295         } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
1296                 revs->max_age = atoi(optarg);
1297                 return argcount;
1298         } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
1299                 revs->max_age = approxidate(optarg);
1300                 return argcount;
1301         } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
1302                 revs->max_age = approxidate(optarg);
1303                 return argcount;
1304         } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
1305                 revs->min_age = atoi(optarg);
1306                 return argcount;
1307         } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
1308                 revs->min_age = approxidate(optarg);
1309                 return argcount;
1310         } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
1311                 revs->min_age = approxidate(optarg);
1312                 return argcount;
1313         } else if (!strcmp(arg, "--first-parent")) {
1314                 revs->first_parent_only = 1;
1315         } else if (!strcmp(arg, "--ancestry-path")) {
1316                 revs->ancestry_path = 1;
1317                 revs->simplify_history = 0;
1318                 revs->limited = 1;
1319         } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
1320                 init_reflog_walk(&revs->reflog_info);
1321         } else if (!strcmp(arg, "--default")) {
1322                 if (argc <= 1)
1323                         return error("bad --default argument");
1324                 revs->def = argv[1];
1325                 return 2;
1326         } else if (!strcmp(arg, "--merge")) {
1327                 revs->show_merge = 1;
1328         } else if (!strcmp(arg, "--topo-order")) {
1329                 revs->lifo = 1;
1330                 revs->topo_order = 1;
1331         } else if (!strcmp(arg, "--simplify-merges")) {
1332                 revs->simplify_merges = 1;
1333                 revs->rewrite_parents = 1;
1334                 revs->simplify_history = 0;
1335                 revs->limited = 1;
1336         } else if (!strcmp(arg, "--simplify-by-decoration")) {
1337                 revs->simplify_merges = 1;
1338                 revs->rewrite_parents = 1;
1339                 revs->simplify_history = 0;
1340                 revs->simplify_by_decoration = 1;
1341                 revs->limited = 1;
1342                 revs->prune = 1;
1343                 load_ref_decorations(DECORATE_SHORT_REFS);
1344         } else if (!strcmp(arg, "--date-order")) {
1345                 revs->lifo = 0;
1346                 revs->topo_order = 1;
1347         } else if (!prefixcmp(arg, "--early-output")) {
1348                 int count = 100;
1349                 switch (arg[14]) {
1350                 case '=':
1351                         count = atoi(arg+15);
1352                         /* Fallthrough */
1353                 case 0:
1354                         revs->topo_order = 1;
1355                        revs->early_output = count;
1356                 }
1357         } else if (!strcmp(arg, "--parents")) {
1358                 revs->rewrite_parents = 1;
1359                 revs->print_parents = 1;
1360         } else if (!strcmp(arg, "--dense")) {
1361                 revs->dense = 1;
1362         } else if (!strcmp(arg, "--sparse")) {
1363                 revs->dense = 0;
1364         } else if (!strcmp(arg, "--show-all")) {
1365                 revs->show_all = 1;
1366         } else if (!strcmp(arg, "--remove-empty")) {
1367                 revs->remove_empty_trees = 1;
1368         } else if (!strcmp(arg, "--merges")) {
1369                 revs->min_parents = 2;
1370         } else if (!strcmp(arg, "--no-merges")) {
1371                 revs->max_parents = 1;
1372         } else if (!prefixcmp(arg, "--min-parents=")) {
1373                 revs->min_parents = atoi(arg+14);
1374         } else if (!prefixcmp(arg, "--no-min-parents")) {
1375                 revs->min_parents = 0;
1376         } else if (!prefixcmp(arg, "--max-parents=")) {
1377                 revs->max_parents = atoi(arg+14);
1378         } else if (!prefixcmp(arg, "--no-max-parents")) {
1379                 revs->max_parents = -1;
1380         } else if (!strcmp(arg, "--boundary")) {
1381                 revs->boundary = 1;
1382         } else if (!strcmp(arg, "--left-right")) {
1383                 revs->left_right = 1;
1384         } else if (!strcmp(arg, "--left-only")) {
1385                 if (revs->right_only)
1386                         die("--left-only is incompatible with --right-only"
1387                             " or --cherry");
1388                 revs->left_only = 1;
1389         } else if (!strcmp(arg, "--right-only")) {
1390                 if (revs->left_only)
1391                         die("--right-only is incompatible with --left-only");
1392                 revs->right_only = 1;
1393         } else if (!strcmp(arg, "--cherry")) {
1394                 if (revs->left_only)
1395                         die("--cherry is incompatible with --left-only");
1396                 revs->cherry_mark = 1;
1397                 revs->right_only = 1;
1398                 revs->max_parents = 1;
1399                 revs->limited = 1;
1400         } else if (!strcmp(arg, "--count")) {
1401                 revs->count = 1;
1402         } else if (!strcmp(arg, "--cherry-mark")) {
1403                 if (revs->cherry_pick)
1404                         die("--cherry-mark is incompatible with --cherry-pick");
1405                 revs->cherry_mark = 1;
1406                 revs->limited = 1; /* needs limit_list() */
1407         } else if (!strcmp(arg, "--cherry-pick")) {
1408                 if (revs->cherry_mark)
1409                         die("--cherry-pick is incompatible with --cherry-mark");
1410                 revs->cherry_pick = 1;
1411                 revs->limited = 1;
1412         } else if (!strcmp(arg, "--objects")) {
1413                 revs->tag_objects = 1;
1414                 revs->tree_objects = 1;
1415                 revs->blob_objects = 1;
1416         } else if (!strcmp(arg, "--objects-edge")) {
1417                 revs->tag_objects = 1;
1418                 revs->tree_objects = 1;
1419                 revs->blob_objects = 1;
1420                 revs->edge_hint = 1;
1421         } else if (!strcmp(arg, "--verify-objects")) {
1422                 revs->tag_objects = 1;
1423                 revs->tree_objects = 1;
1424                 revs->blob_objects = 1;
1425                 revs->verify_objects = 1;
1426         } else if (!strcmp(arg, "--unpacked")) {
1427                 revs->unpacked = 1;
1428         } else if (!prefixcmp(arg, "--unpacked=")) {
1429                 die("--unpacked=<packfile> no longer supported.");
1430         } else if (!strcmp(arg, "-r")) {
1431                 revs->diff = 1;
1432                 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1433         } else if (!strcmp(arg, "-t")) {
1434                 revs->diff = 1;
1435                 DIFF_OPT_SET(&revs->diffopt, RECURSIVE);
1436                 DIFF_OPT_SET(&revs->diffopt, TREE_IN_RECURSIVE);
1437         } else if (!strcmp(arg, "-m")) {
1438                 revs->ignore_merges = 0;
1439         } else if (!strcmp(arg, "-c")) {
1440                 revs->diff = 1;
1441                 revs->dense_combined_merges = 0;
1442                 revs->combine_merges = 1;
1443         } else if (!strcmp(arg, "--cc")) {
1444                 revs->diff = 1;
1445                 revs->dense_combined_merges = 1;
1446                 revs->combine_merges = 1;
1447         } else if (!strcmp(arg, "-v")) {
1448                 revs->verbose_header = 1;
1449         } else if (!strcmp(arg, "--pretty")) {
1450                 revs->verbose_header = 1;
1451                 revs->pretty_given = 1;
1452                 get_commit_format(arg+8, revs);
1453         } else if (!prefixcmp(arg, "--pretty=") || !prefixcmp(arg, "--format=")) {
1454                 /*
1455                  * Detached form ("--pretty X" as opposed to "--pretty=X")
1456                  * not allowed, since the argument is optional.
1457                  */
1458                 revs->verbose_header = 1;
1459                 revs->pretty_given = 1;
1460                 get_commit_format(arg+9, revs);
1461         } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
1462                 revs->show_notes = 1;
1463                 revs->show_notes_given = 1;
1464                 revs->notes_opt.use_default_notes = 1;
1465         } else if (!prefixcmp(arg, "--show-notes=") ||
1466                    !prefixcmp(arg, "--notes=")) {
1467                 struct strbuf buf = STRBUF_INIT;
1468                 revs->show_notes = 1;
1469                 revs->show_notes_given = 1;
1470                 if (!prefixcmp(arg, "--show-notes")) {
1471                         if (revs->notes_opt.use_default_notes < 0)
1472                                 revs->notes_opt.use_default_notes = 1;
1473                         strbuf_addstr(&buf, arg+13);
1474                 }
1475                 else
1476                         strbuf_addstr(&buf, arg+8);
1477                 expand_notes_ref(&buf);
1478                 string_list_append(&revs->notes_opt.extra_notes_refs,
1479                                    strbuf_detach(&buf, NULL));
1480         } else if (!strcmp(arg, "--no-notes")) {
1481                 revs->show_notes = 0;
1482                 revs->show_notes_given = 1;
1483                 revs->notes_opt.use_default_notes = -1;
1484                 /* we have been strdup'ing ourselves, so trick
1485                  * string_list into free()ing strings */
1486                 revs->notes_opt.extra_notes_refs.strdup_strings = 1;
1487                 string_list_clear(&revs->notes_opt.extra_notes_refs, 0);
1488                 revs->notes_opt.extra_notes_refs.strdup_strings = 0;
1489         } else if (!strcmp(arg, "--standard-notes")) {
1490                 revs->show_notes_given = 1;
1491                 revs->notes_opt.use_default_notes = 1;
1492         } else if (!strcmp(arg, "--no-standard-notes")) {
1493                 revs->notes_opt.use_default_notes = 0;
1494         } else if (!strcmp(arg, "--oneline")) {
1495                 revs->verbose_header = 1;
1496                 get_commit_format("oneline", revs);
1497                 revs->pretty_given = 1;
1498                 revs->abbrev_commit = 1;
1499         } else if (!strcmp(arg, "--graph")) {
1500                 revs->topo_order = 1;
1501                 revs->rewrite_parents = 1;
1502                 revs->graph = graph_init(revs);
1503         } else if (!strcmp(arg, "--root")) {
1504                 revs->show_root_diff = 1;
1505         } else if (!strcmp(arg, "--no-commit-id")) {
1506                 revs->no_commit_id = 1;
1507         } else if (!strcmp(arg, "--always")) {
1508                 revs->always_show_header = 1;
1509         } else if (!strcmp(arg, "--no-abbrev")) {
1510                 revs->abbrev = 0;
1511         } else if (!strcmp(arg, "--abbrev")) {
1512                 revs->abbrev = DEFAULT_ABBREV;
1513         } else if (!prefixcmp(arg, "--abbrev=")) {
1514                 revs->abbrev = strtoul(arg + 9, NULL, 10);
1515                 if (revs->abbrev < MINIMUM_ABBREV)
1516                         revs->abbrev = MINIMUM_ABBREV;
1517                 else if (revs->abbrev > 40)
1518                         revs->abbrev = 40;
1519         } else if (!strcmp(arg, "--abbrev-commit")) {
1520                 revs->abbrev_commit = 1;
1521                 revs->abbrev_commit_given = 1;
1522         } else if (!strcmp(arg, "--no-abbrev-commit")) {
1523                 revs->abbrev_commit = 0;
1524         } else if (!strcmp(arg, "--full-diff")) {
1525                 revs->diff = 1;
1526                 revs->full_diff = 1;
1527         } else if (!strcmp(arg, "--full-history")) {
1528                 revs->simplify_history = 0;
1529         } else if (!strcmp(arg, "--relative-date")) {
1530                 revs->date_mode = DATE_RELATIVE;
1531                 revs->date_mode_explicit = 1;
1532         } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
1533                 revs->date_mode = parse_date_format(optarg);
1534                 revs->date_mode_explicit = 1;
1535                 return argcount;
1536         } else if (!strcmp(arg, "--log-size")) {
1537                 revs->show_log_size = 1;
1538         }
1539         /*
1540          * Grepping the commit log
1541          */
1542         else if ((argcount = parse_long_opt("author", argv, &optarg))) {
1543                 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
1544                 return argcount;
1545         } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
1546                 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
1547                 return argcount;
1548         } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
1549                 add_message_grep(revs, optarg);
1550                 return argcount;
1551         } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
1552                 revs->grep_filter.regflags |= REG_EXTENDED;
1553         } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
1554                 revs->grep_filter.regflags |= REG_ICASE;
1555         } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
1556                 revs->grep_filter.fixed = 1;
1557         } else if (!strcmp(arg, "--all-match")) {
1558                 revs->grep_filter.all_match = 1;
1559         } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
1560                 if (strcmp(optarg, "none"))
1561                         git_log_output_encoding = xstrdup(optarg);
1562                 else
1563                         git_log_output_encoding = "";
1564                 return argcount;
1565         } else if (!strcmp(arg, "--reverse")) {
1566                 revs->reverse ^= 1;
1567         } else if (!strcmp(arg, "--children")) {
1568                 revs->children.name = "children";
1569                 revs->limited = 1;
1570         } else if (!strcmp(arg, "--ignore-missing")) {
1571                 revs->ignore_missing = 1;
1572         } else {
1573                 int opts = diff_opt_parse(&revs->diffopt, argv, argc);
1574                 if (!opts)
1575                         unkv[(*unkc)++] = arg;
1576                 return opts;
1577         }
1578
1579         return 1;
1580 }
1581
1582 void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
1583                         const struct option *options,
1584                         const char * const usagestr[])
1585 {
1586         int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
1587                                     &ctx->cpidx, ctx->out);
1588         if (n <= 0) {
1589                 error("unknown option `%s'", ctx->argv[0]);
1590                 usage_with_options(usagestr, options);
1591         }
1592         ctx->argv += n;
1593         ctx->argc -= n;
1594 }
1595
1596 static int for_each_bad_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1597 {
1598         return for_each_ref_in_submodule(submodule, "refs/bisect/bad", fn, cb_data);
1599 }
1600
1601 static int for_each_good_bisect_ref(const char *submodule, each_ref_fn fn, void *cb_data)
1602 {
1603         return for_each_ref_in_submodule(submodule, "refs/bisect/good", fn, cb_data);
1604 }
1605
1606 static int handle_revision_pseudo_opt(const char *submodule,
1607                                 struct rev_info *revs,
1608                                 int argc, const char **argv, int *flags)
1609 {
1610         const char *arg = argv[0];
1611         const char *optarg;
1612         int argcount;
1613
1614         /*
1615          * NOTE!
1616          *
1617          * Commands like "git shortlog" will not accept the options below
1618          * unless parse_revision_opt queues them (as opposed to erroring
1619          * out).
1620          *
1621          * When implementing your new pseudo-option, remember to
1622          * register it in the list at the top of handle_revision_opt.
1623          */
1624         if (!strcmp(arg, "--all")) {
1625                 handle_refs(submodule, revs, *flags, for_each_ref_submodule);
1626                 handle_refs(submodule, revs, *flags, head_ref_submodule);
1627         } else if (!strcmp(arg, "--branches")) {
1628                 handle_refs(submodule, revs, *flags, for_each_branch_ref_submodule);
1629         } else if (!strcmp(arg, "--bisect")) {
1630                 handle_refs(submodule, revs, *flags, for_each_bad_bisect_ref);
1631                 handle_refs(submodule, revs, *flags ^ UNINTERESTING, for_each_good_bisect_ref);
1632                 revs->bisect = 1;
1633         } else if (!strcmp(arg, "--tags")) {
1634                 handle_refs(submodule, revs, *flags, for_each_tag_ref_submodule);
1635         } else if (!strcmp(arg, "--remotes")) {
1636                 handle_refs(submodule, revs, *flags, for_each_remote_ref_submodule);
1637         } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
1638                 struct all_refs_cb cb;
1639                 init_all_refs_cb(&cb, revs, *flags);
1640                 for_each_glob_ref(handle_one_ref, optarg, &cb);
1641                 return argcount;
1642         } else if (!prefixcmp(arg, "--branches=")) {
1643                 struct all_refs_cb cb;
1644                 init_all_refs_cb(&cb, revs, *flags);
1645                 for_each_glob_ref_in(handle_one_ref, arg + 11, "refs/heads/", &cb);
1646         } else if (!prefixcmp(arg, "--tags=")) {
1647                 struct all_refs_cb cb;
1648                 init_all_refs_cb(&cb, revs, *flags);
1649                 for_each_glob_ref_in(handle_one_ref, arg + 7, "refs/tags/", &cb);
1650         } else if (!prefixcmp(arg, "--remotes=")) {
1651                 struct all_refs_cb cb;
1652                 init_all_refs_cb(&cb, revs, *flags);
1653                 for_each_glob_ref_in(handle_one_ref, arg + 10, "refs/remotes/", &cb);
1654         } else if (!strcmp(arg, "--reflog")) {
1655                 handle_reflog(revs, *flags);
1656         } else if (!strcmp(arg, "--not")) {
1657                 *flags ^= UNINTERESTING;
1658         } else if (!strcmp(arg, "--no-walk")) {
1659                 revs->no_walk = 1;
1660         } else if (!strcmp(arg, "--do-walk")) {
1661                 revs->no_walk = 0;
1662         } else {
1663                 return 0;
1664         }
1665
1666         return 1;
1667 }
1668
1669 /*
1670  * Parse revision information, filling in the "rev_info" structure,
1671  * and removing the used arguments from the argument list.
1672  *
1673  * Returns the number of arguments left that weren't recognized
1674  * (which are also moved to the head of the argument list)
1675  */
1676 int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
1677 {
1678         int i, flags, left, seen_dashdash, read_from_stdin, got_rev_arg = 0;
1679         struct cmdline_pathspec prune_data;
1680         const char *submodule = NULL;
1681
1682         memset(&prune_data, 0, sizeof(prune_data));
1683         if (opt)
1684                 submodule = opt->submodule;
1685
1686         /* First, search for "--" */
1687         seen_dashdash = 0;
1688         for (i = 1; i < argc; i++) {
1689                 const char *arg = argv[i];
1690                 if (strcmp(arg, "--"))
1691                         continue;
1692                 argv[i] = NULL;
1693                 argc = i;
1694                 if (argv[i + 1])
1695                         append_prune_data(&prune_data, argv + i + 1);
1696                 seen_dashdash = 1;
1697                 break;
1698         }
1699
1700         /* Second, deal with arguments and options */
1701         flags = 0;
1702         read_from_stdin = 0;
1703         for (left = i = 1; i < argc; i++) {
1704                 const char *arg = argv[i];
1705                 if (*arg == '-') {
1706                         int opts;
1707
1708                         opts = handle_revision_pseudo_opt(submodule,
1709                                                 revs, argc - i, argv + i,
1710                                                 &flags);
1711                         if (opts > 0) {
1712                                 i += opts - 1;
1713                                 continue;
1714                         }
1715
1716                         if (!strcmp(arg, "--stdin")) {
1717                                 if (revs->disable_stdin) {
1718                                         argv[left++] = arg;
1719                                         continue;
1720                                 }
1721                                 if (read_from_stdin++)
1722                                         die("--stdin given twice?");
1723                                 read_revisions_from_stdin(revs, &prune_data);
1724                                 continue;
1725                         }
1726
1727                         opts = handle_revision_opt(revs, argc - i, argv + i, &left, argv);
1728                         if (opts > 0) {
1729                                 i += opts - 1;
1730                                 continue;
1731                         }
1732                         if (opts < 0)
1733                                 exit(128);
1734                         continue;
1735                 }
1736
1737                 if (handle_revision_arg(arg, revs, flags, seen_dashdash)) {
1738                         int j;
1739                         if (seen_dashdash || *arg == '^')
1740                                 die("bad revision '%s'", arg);
1741
1742                         /* If we didn't have a "--":
1743                          * (1) all filenames must exist;
1744                          * (2) all rev-args must not be interpretable
1745                          *     as a valid filename.
1746                          * but the latter we have checked in the main loop.
1747                          */
1748                         for (j = i; j < argc; j++)
1749                                 verify_filename(revs->prefix, argv[j]);
1750
1751                         append_prune_data(&prune_data, argv + i);
1752                         break;
1753                 }
1754                 else
1755                         got_rev_arg = 1;
1756         }
1757
1758         if (prune_data.nr) {
1759                 /*
1760                  * If we need to introduce the magic "a lone ':' means no
1761                  * pathspec whatsoever", here is the place to do so.
1762                  *
1763                  * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
1764                  *      prune_data.nr = 0;
1765                  *      prune_data.alloc = 0;
1766                  *      free(prune_data.path);
1767                  *      prune_data.path = NULL;
1768                  * } else {
1769                  *      terminate prune_data.alloc with NULL and
1770                  *      call init_pathspec() to set revs->prune_data here.
1771                  * }
1772                  */
1773                 ALLOC_GROW(prune_data.path, prune_data.nr+1, prune_data.alloc);
1774                 prune_data.path[prune_data.nr++] = NULL;
1775                 init_pathspec(&revs->prune_data,
1776                               get_pathspec(revs->prefix, prune_data.path));
1777         }
1778
1779         if (revs->def == NULL)
1780                 revs->def = opt ? opt->def : NULL;
1781         if (opt && opt->tweak)
1782                 opt->tweak(revs, opt);
1783         if (revs->show_merge)
1784                 prepare_show_merge(revs);
1785         if (revs->def && !revs->pending.nr && !got_rev_arg) {
1786                 unsigned char sha1[20];
1787                 struct object *object;
1788                 unsigned mode;
1789                 if (get_sha1_with_mode(revs->def, sha1, &mode))
1790                         die("bad default revision '%s'", revs->def);
1791                 object = get_reference(revs, revs->def, sha1, 0);
1792                 add_pending_object_with_mode(revs, object, revs->def, mode);
1793         }
1794
1795         /* Did the user ask for any diff output? Run the diff! */
1796         if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
1797                 revs->diff = 1;
1798
1799         /* Pickaxe, diff-filter and rename following need diffs */
1800         if (revs->diffopt.pickaxe ||
1801             revs->diffopt.filter ||
1802             DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1803                 revs->diff = 1;
1804
1805         if (revs->topo_order)
1806                 revs->limited = 1;
1807
1808         if (revs->prune_data.nr) {
1809                 diff_tree_setup_paths(revs->prune_data.raw, &revs->pruning);
1810                 /* Can't prune commits with rename following: the paths change.. */
1811                 if (!DIFF_OPT_TST(&revs->diffopt, FOLLOW_RENAMES))
1812                         revs->prune = 1;
1813                 if (!revs->full_diff)
1814                         diff_tree_setup_paths(revs->prune_data.raw, &revs->diffopt);
1815         }
1816         if (revs->combine_merges)
1817                 revs->ignore_merges = 0;
1818         revs->diffopt.abbrev = revs->abbrev;
1819         if (diff_setup_done(&revs->diffopt) < 0)
1820                 die("diff_setup_done failed");
1821
1822         compile_grep_patterns(&revs->grep_filter);
1823
1824         if (revs->reverse && revs->reflog_info)
1825                 die("cannot combine --reverse with --walk-reflogs");
1826         if (revs->rewrite_parents && revs->children.name)
1827                 die("cannot combine --parents and --children");
1828
1829         /*
1830          * Limitations on the graph functionality
1831          */
1832         if (revs->reverse && revs->graph)
1833                 die("cannot combine --reverse with --graph");
1834
1835         if (revs->reflog_info && revs->graph)
1836                 die("cannot combine --walk-reflogs with --graph");
1837
1838         return left;
1839 }
1840
1841 static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
1842 {
1843         struct commit_list *l = xcalloc(1, sizeof(*l));
1844
1845         l->item = child;
1846         l->next = add_decoration(&revs->children, &parent->object, l);
1847 }
1848
1849 static int remove_duplicate_parents(struct commit *commit)
1850 {
1851         struct commit_list **pp, *p;
1852         int surviving_parents;
1853
1854         /* Examine existing parents while marking ones we have seen... */
1855         pp = &commit->parents;
1856         while ((p = *pp) != NULL) {
1857                 struct commit *parent = p->item;
1858                 if (parent->object.flags & TMP_MARK) {
1859                         *pp = p->next;
1860                         continue;
1861                 }
1862                 parent->object.flags |= TMP_MARK;
1863                 pp = &p->next;
1864         }
1865         /* count them while clearing the temporary mark */
1866         surviving_parents = 0;
1867         for (p = commit->parents; p; p = p->next) {
1868                 p->item->object.flags &= ~TMP_MARK;
1869                 surviving_parents++;
1870         }
1871         return surviving_parents;
1872 }
1873
1874 struct merge_simplify_state {
1875         struct commit *simplified;
1876 };
1877
1878 static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
1879 {
1880         struct merge_simplify_state *st;
1881
1882         st = lookup_decoration(&revs->merge_simplification, &commit->object);
1883         if (!st) {
1884                 st = xcalloc(1, sizeof(*st));
1885                 add_decoration(&revs->merge_simplification, &commit->object, st);
1886         }
1887         return st;
1888 }
1889
1890 static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
1891 {
1892         struct commit_list *p;
1893         struct merge_simplify_state *st, *pst;
1894         int cnt;
1895
1896         st = locate_simplify_state(revs, commit);
1897
1898         /*
1899          * Have we handled this one?
1900          */
1901         if (st->simplified)
1902                 return tail;
1903
1904         /*
1905          * An UNINTERESTING commit simplifies to itself, so does a
1906          * root commit.  We do not rewrite parents of such commit
1907          * anyway.
1908          */
1909         if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
1910                 st->simplified = commit;
1911                 return tail;
1912         }
1913
1914         /*
1915          * Do we know what commit all of our parents should be rewritten to?
1916          * Otherwise we are not ready to rewrite this one yet.
1917          */
1918         for (cnt = 0, p = commit->parents; p; p = p->next) {
1919                 pst = locate_simplify_state(revs, p->item);
1920                 if (!pst->simplified) {
1921                         tail = &commit_list_insert(p->item, tail)->next;
1922                         cnt++;
1923                 }
1924         }
1925         if (cnt) {
1926                 tail = &commit_list_insert(commit, tail)->next;
1927                 return tail;
1928         }
1929
1930         /*
1931          * Rewrite our list of parents.
1932          */
1933         for (p = commit->parents; p; p = p->next) {
1934                 pst = locate_simplify_state(revs, p->item);
1935                 p->item = pst->simplified;
1936         }
1937         cnt = remove_duplicate_parents(commit);
1938
1939         /*
1940          * It is possible that we are a merge and one side branch
1941          * does not have any commit that touches the given paths;
1942          * in such a case, the immediate parents will be rewritten
1943          * to different commits.
1944          *
1945          *      o----X          X: the commit we are looking at;
1946          *     /    /           o: a commit that touches the paths;
1947          * ---o----'
1948          *
1949          * Further reduce the parents by removing redundant parents.
1950          */
1951         if (1 < cnt) {
1952                 struct commit_list *h = reduce_heads(commit->parents);
1953                 cnt = commit_list_count(h);
1954                 free_commit_list(commit->parents);
1955                 commit->parents = h;
1956         }
1957
1958         /*
1959          * A commit simplifies to itself if it is a root, if it is
1960          * UNINTERESTING, if it touches the given paths, or if it is a
1961          * merge and its parents simplifies to more than one commits
1962          * (the first two cases are already handled at the beginning of
1963          * this function).
1964          *
1965          * Otherwise, it simplifies to what its sole parent simplifies to.
1966          */
1967         if (!cnt ||
1968             (commit->object.flags & UNINTERESTING) ||
1969             !(commit->object.flags & TREESAME) ||
1970             (1 < cnt))
1971                 st->simplified = commit;
1972         else {
1973                 pst = locate_simplify_state(revs, commit->parents->item);
1974                 st->simplified = pst->simplified;
1975         }
1976         return tail;
1977 }
1978
1979 static void simplify_merges(struct rev_info *revs)
1980 {
1981         struct commit_list *list;
1982         struct commit_list *yet_to_do, **tail;
1983
1984         if (!revs->topo_order)
1985                 sort_in_topological_order(&revs->commits, revs->lifo);
1986         if (!revs->prune)
1987                 return;
1988
1989         /* feed the list reversed */
1990         yet_to_do = NULL;
1991         for (list = revs->commits; list; list = list->next)
1992                 commit_list_insert(list->item, &yet_to_do);
1993         while (yet_to_do) {
1994                 list = yet_to_do;
1995                 yet_to_do = NULL;
1996                 tail = &yet_to_do;
1997                 while (list) {
1998                         struct commit *commit = list->item;
1999                         struct commit_list *next = list->next;
2000                         free(list);
2001                         list = next;
2002                         tail = simplify_one(revs, commit, tail);
2003                 }
2004         }
2005
2006         /* clean up the result, removing the simplified ones */
2007         list = revs->commits;
2008         revs->commits = NULL;
2009         tail = &revs->commits;
2010         while (list) {
2011                 struct commit *commit = list->item;
2012                 struct commit_list *next = list->next;
2013                 struct merge_simplify_state *st;
2014                 free(list);
2015                 list = next;
2016                 st = locate_simplify_state(revs, commit);
2017                 if (st->simplified == commit)
2018                         tail = &commit_list_insert(commit, tail)->next;
2019         }
2020 }
2021
2022 static void set_children(struct rev_info *revs)
2023 {
2024         struct commit_list *l;
2025         for (l = revs->commits; l; l = l->next) {
2026                 struct commit *commit = l->item;
2027                 struct commit_list *p;
2028
2029                 for (p = commit->parents; p; p = p->next)
2030                         add_child(revs, p->item, commit);
2031         }
2032 }
2033
2034 int prepare_revision_walk(struct rev_info *revs)
2035 {
2036         int nr = revs->pending.nr;
2037         struct object_array_entry *e, *list;
2038
2039         e = list = revs->pending.objects;
2040         revs->pending.nr = 0;
2041         revs->pending.alloc = 0;
2042         revs->pending.objects = NULL;
2043         while (--nr >= 0) {
2044                 struct commit *commit = handle_commit(revs, e->item, e->name);
2045                 if (commit) {
2046                         if (!(commit->object.flags & SEEN)) {
2047                                 commit->object.flags |= SEEN;
2048                                 commit_list_insert_by_date(commit, &revs->commits);
2049                         }
2050                 }
2051                 e++;
2052         }
2053         free(list);
2054
2055         if (revs->no_walk)
2056                 return 0;
2057         if (revs->limited)
2058                 if (limit_list(revs) < 0)
2059                         return -1;
2060         if (revs->topo_order)
2061                 sort_in_topological_order(&revs->commits, revs->lifo);
2062         if (revs->simplify_merges)
2063                 simplify_merges(revs);
2064         if (revs->children.name)
2065                 set_children(revs);
2066         return 0;
2067 }
2068
2069 enum rewrite_result {
2070         rewrite_one_ok,
2071         rewrite_one_noparents,
2072         rewrite_one_error
2073 };
2074
2075 static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
2076 {
2077         struct commit_list *cache = NULL;
2078
2079         for (;;) {
2080                 struct commit *p = *pp;
2081                 if (!revs->limited)
2082                         if (add_parents_to_list(revs, p, &revs->commits, &cache) < 0)
2083                                 return rewrite_one_error;
2084                 if (p->parents && p->parents->next)
2085                         return rewrite_one_ok;
2086                 if (p->object.flags & UNINTERESTING)
2087                         return rewrite_one_ok;
2088                 if (!(p->object.flags & TREESAME))
2089                         return rewrite_one_ok;
2090                 if (!p->parents)
2091                         return rewrite_one_noparents;
2092                 *pp = p->parents->item;
2093         }
2094 }
2095
2096 static int rewrite_parents(struct rev_info *revs, struct commit *commit)
2097 {
2098         struct commit_list **pp = &commit->parents;
2099         while (*pp) {
2100                 struct commit_list *parent = *pp;
2101                 switch (rewrite_one(revs, &parent->item)) {
2102                 case rewrite_one_ok:
2103                         break;
2104                 case rewrite_one_noparents:
2105                         *pp = parent->next;
2106                         continue;
2107                 case rewrite_one_error:
2108                         return -1;
2109                 }
2110                 pp = &parent->next;
2111         }
2112         remove_duplicate_parents(commit);
2113         return 0;
2114 }
2115
2116 static int commit_match(struct commit *commit, struct rev_info *opt)
2117 {
2118         if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
2119                 return 1;
2120         return grep_buffer(&opt->grep_filter,
2121                            NULL, /* we say nothing, not even filename */
2122                            commit->buffer, strlen(commit->buffer));
2123 }
2124
2125 static inline int want_ancestry(struct rev_info *revs)
2126 {
2127         return (revs->rewrite_parents || revs->children.name);
2128 }
2129
2130 enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
2131 {
2132         if (commit->object.flags & SHOWN)
2133                 return commit_ignore;
2134         if (revs->unpacked && has_sha1_pack(commit->object.sha1))
2135                 return commit_ignore;
2136         if (revs->show_all)
2137                 return commit_show;
2138         if (commit->object.flags & UNINTERESTING)
2139                 return commit_ignore;
2140         if (revs->min_age != -1 && (commit->date > revs->min_age))
2141                 return commit_ignore;
2142         if (revs->min_parents || (revs->max_parents >= 0)) {
2143                 int n = 0;
2144                 struct commit_list *p;
2145                 for (p = commit->parents; p; p = p->next)
2146                         n++;
2147                 if ((n < revs->min_parents) ||
2148                     ((revs->max_parents >= 0) && (n > revs->max_parents)))
2149                         return commit_ignore;
2150         }
2151         if (!commit_match(commit, revs))
2152                 return commit_ignore;
2153         if (revs->prune && revs->dense) {
2154                 /* Commit without changes? */
2155                 if (commit->object.flags & TREESAME) {
2156                         /* drop merges unless we want parenthood */
2157                         if (!want_ancestry(revs))
2158                                 return commit_ignore;
2159                         /* non-merge - always ignore it */
2160                         if (!commit->parents || !commit->parents->next)
2161                                 return commit_ignore;
2162                 }
2163         }
2164         return commit_show;
2165 }
2166
2167 enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
2168 {
2169         enum commit_action action = get_commit_action(revs, commit);
2170
2171         if (action == commit_show &&
2172             !revs->show_all &&
2173             revs->prune && revs->dense && want_ancestry(revs)) {
2174                 if (rewrite_parents(revs, commit) < 0)
2175                         return commit_error;
2176         }
2177         return action;
2178 }
2179
2180 static struct commit *get_revision_1(struct rev_info *revs)
2181 {
2182         if (!revs->commits)
2183                 return NULL;
2184
2185         do {
2186                 struct commit_list *entry = revs->commits;
2187                 struct commit *commit = entry->item;
2188
2189                 revs->commits = entry->next;
2190                 free(entry);
2191
2192                 if (revs->reflog_info) {
2193                         fake_reflog_parent(revs->reflog_info, commit);
2194                         commit->object.flags &= ~(ADDED | SEEN | SHOWN);
2195                 }
2196
2197                 /*
2198                  * If we haven't done the list limiting, we need to look at
2199                  * the parents here. We also need to do the date-based limiting
2200                  * that we'd otherwise have done in limit_list().
2201                  */
2202                 if (!revs->limited) {
2203                         if (revs->max_age != -1 &&
2204                             (commit->date < revs->max_age))
2205                                 continue;
2206                         if (add_parents_to_list(revs, commit, &revs->commits, NULL) < 0)
2207                                 die("Failed to traverse parents of commit %s",
2208                                     sha1_to_hex(commit->object.sha1));
2209                 }
2210
2211                 switch (simplify_commit(revs, commit)) {
2212                 case commit_ignore:
2213                         continue;
2214                 case commit_error:
2215                         die("Failed to simplify parents of commit %s",
2216                             sha1_to_hex(commit->object.sha1));
2217                 default:
2218                         return commit;
2219                 }
2220         } while (revs->commits);
2221         return NULL;
2222 }
2223
2224 static void gc_boundary(struct object_array *array)
2225 {
2226         unsigned nr = array->nr;
2227         unsigned alloc = array->alloc;
2228         struct object_array_entry *objects = array->objects;
2229
2230         if (alloc <= nr) {
2231                 unsigned i, j;
2232                 for (i = j = 0; i < nr; i++) {
2233                         if (objects[i].item->flags & SHOWN)
2234                                 continue;
2235                         if (i != j)
2236                                 objects[j] = objects[i];
2237                         j++;
2238                 }
2239                 for (i = j; i < nr; i++)
2240                         objects[i].item = NULL;
2241                 array->nr = j;
2242         }
2243 }
2244
2245 static void create_boundary_commit_list(struct rev_info *revs)
2246 {
2247         unsigned i;
2248         struct commit *c;
2249         struct object_array *array = &revs->boundary_commits;
2250         struct object_array_entry *objects = array->objects;
2251
2252         /*
2253          * If revs->commits is non-NULL at this point, an error occurred in
2254          * get_revision_1().  Ignore the error and continue printing the
2255          * boundary commits anyway.  (This is what the code has always
2256          * done.)
2257          */
2258         if (revs->commits) {
2259                 free_commit_list(revs->commits);
2260                 revs->commits = NULL;
2261         }
2262
2263         /*
2264          * Put all of the actual boundary commits from revs->boundary_commits
2265          * into revs->commits
2266          */
2267         for (i = 0; i < array->nr; i++) {
2268                 c = (struct commit *)(objects[i].item);
2269                 if (!c)
2270                         continue;
2271                 if (!(c->object.flags & CHILD_SHOWN))
2272                         continue;
2273                 if (c->object.flags & (SHOWN | BOUNDARY))
2274                         continue;
2275                 c->object.flags |= BOUNDARY;
2276                 commit_list_insert(c, &revs->commits);
2277         }
2278
2279         /*
2280          * If revs->topo_order is set, sort the boundary commits
2281          * in topological order
2282          */
2283         sort_in_topological_order(&revs->commits, revs->lifo);
2284 }
2285
2286 static struct commit *get_revision_internal(struct rev_info *revs)
2287 {
2288         struct commit *c = NULL;
2289         struct commit_list *l;
2290
2291         if (revs->boundary == 2) {
2292                 /*
2293                  * All of the normal commits have already been returned,
2294                  * and we are now returning boundary commits.
2295                  * create_boundary_commit_list() has populated
2296                  * revs->commits with the remaining commits to return.
2297                  */
2298                 c = pop_commit(&revs->commits);
2299                 if (c)
2300                         c->object.flags |= SHOWN;
2301                 return c;
2302         }
2303
2304         /*
2305          * Now pick up what they want to give us
2306          */
2307         c = get_revision_1(revs);
2308         if (c) {
2309                 while (0 < revs->skip_count) {
2310                         revs->skip_count--;
2311                         c = get_revision_1(revs);
2312                         if (!c)
2313                                 break;
2314                 }
2315         }
2316
2317         /*
2318          * Check the max_count.
2319          */
2320         switch (revs->max_count) {
2321         case -1:
2322                 break;
2323         case 0:
2324                 c = NULL;
2325                 break;
2326         default:
2327                 revs->max_count--;
2328         }
2329
2330         if (c)
2331                 c->object.flags |= SHOWN;
2332
2333         if (!revs->boundary) {
2334                 return c;
2335         }
2336
2337         if (!c) {
2338                 /*
2339                  * get_revision_1() runs out the commits, and
2340                  * we are done computing the boundaries.
2341                  * switch to boundary commits output mode.
2342                  */
2343                 revs->boundary = 2;
2344
2345                 /*
2346                  * Update revs->commits to contain the list of
2347                  * boundary commits.
2348                  */
2349                 create_boundary_commit_list(revs);
2350
2351                 return get_revision_internal(revs);
2352         }
2353
2354         /*
2355          * boundary commits are the commits that are parents of the
2356          * ones we got from get_revision_1() but they themselves are
2357          * not returned from get_revision_1().  Before returning
2358          * 'c', we need to mark its parents that they could be boundaries.
2359          */
2360
2361         for (l = c->parents; l; l = l->next) {
2362                 struct object *p;
2363                 p = &(l->item->object);
2364                 if (p->flags & (CHILD_SHOWN | SHOWN))
2365                         continue;
2366                 p->flags |= CHILD_SHOWN;
2367                 gc_boundary(&revs->boundary_commits);
2368                 add_object_array(p, NULL, &revs->boundary_commits);
2369         }
2370
2371         return c;
2372 }
2373
2374 struct commit *get_revision(struct rev_info *revs)
2375 {
2376         struct commit *c;
2377         struct commit_list *reversed;
2378
2379         if (revs->reverse) {
2380                 reversed = NULL;
2381                 while ((c = get_revision_internal(revs))) {
2382                         commit_list_insert(c, &reversed);
2383                 }
2384                 revs->commits = reversed;
2385                 revs->reverse = 0;
2386                 revs->reverse_output_stage = 1;
2387         }
2388
2389         if (revs->reverse_output_stage)
2390                 return pop_commit(&revs->commits);
2391
2392         c = get_revision_internal(revs);
2393         if (c && revs->graph)
2394                 graph_update(revs->graph, c);
2395         return c;
2396 }
2397
2398 char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
2399 {
2400         if (commit->object.flags & BOUNDARY)
2401                 return "-";
2402         else if (commit->object.flags & UNINTERESTING)
2403                 return "^";
2404         else if (commit->object.flags & PATCHSAME)
2405                 return "=";
2406         else if (!revs || revs->left_right) {
2407                 if (commit->object.flags & SYMMETRIC_LEFT)
2408                         return "<";
2409                 else
2410                         return ">";
2411         } else if (revs->graph)
2412                 return "*";
2413         else if (revs->cherry_mark)
2414                 return "+";
2415         return "";
2416 }
2417
2418 void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
2419 {
2420         char *mark = get_revision_mark(revs, commit);
2421         if (!strlen(mark))
2422                 return;
2423         fputs(mark, stdout);
2424         putchar(' ');
2425 }