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