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