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