]> git.ipfire.org Git - thirdparty/git.git/blame - revision.c
revisions API: have release_revisions() release "cmdline"
[thirdparty/git.git] / revision.c
CommitLineData
ae563542 1#include "cache.h"
cbd53a21 2#include "object-store.h"
ae563542
LT
3#include "tag.h"
4#include "blob.h"
5#include "tree.h"
6#include "commit.h"
a4a88b2b 7#include "diff.h"
a37eec63 8#include "diff-merges.h"
ae563542
LT
9#include "refs.h"
10#include "revision.h"
23a3f0cb 11#include "repository.h"
7fefda5c 12#include "graph.h"
8ecae9b0 13#include "grep.h"
8860fd42 14#include "reflog-walk.h"
d7a17cad 15#include "patch-ids.h"
f35f5603 16#include "decorate.h"
78892e32 17#include "log-tree.h"
894a9d33 18#include "string-list.h"
12da1d1f 19#include "line-log.h"
d72fbe81 20#include "mailmap.h"
53d00b39 21#include "commit-slab.h"
429bb40a 22#include "dir.h"
4fe10219 23#include "cache-tree.h"
cb46d630 24#include "bisect.h"
150e3001 25#include "packfile.h"
be489d02 26#include "worktree.h"
dbbcd44f 27#include "strvec.h"
64043556 28#include "commit-reach.h"
f0d9cc41 29#include "commit-graph.h"
b4542418 30#include "prio-queue.h"
d5d2e935 31#include "hashmap.h"
44570188 32#include "utf8.h"
a56b9464 33#include "bloom.h"
42e50e78 34#include "json-writer.h"
c4ea513f 35#include "list-objects-filter-options.h"
ae563542 36
cdcefbc9
LT
37volatile show_early_output_fn_t show_early_output;
38
cb46d630
AD
39static const char *term_bad;
40static const char *term_good;
41
87be2523
NTND
42implement_shared_commit_slab(revision_sources, char *);
43
3cb9d2b6
SG
44static inline int want_ancestry(const struct rev_info *revs);
45
de1e67d0 46void show_object_with_name(FILE *out, struct object *obj, const char *name)
ae563542 47{
f2fd0760 48 fprintf(out, "%s ", oid_to_hex(&obj->oid));
44ba10d6
JH
49 /*
50 * This "for (const char *p = ..." is made as a first step towards
51 * making use of such declarations elsewhere in our codebase. If
52 * it causes compilation problems on your platform, please report
53 * it to the Git mailing list at git@vger.kernel.org. In the meantime,
54 * adding -std=gnu99 to CFLAGS may help if you are with older GCC.
55 */
56 for (const char *p = name; *p && *p != '\n'; p++)
f9fb9d0e 57 fputc(*p, out);
beba25ab 58 fputc('\n', out);
91f17516
JH
59}
60
ae563542
LT
61static void mark_blob_uninteresting(struct blob *blob)
62{
c1ee9013
MK
63 if (!blob)
64 return;
ae563542
LT
65 if (blob->object.flags & UNINTERESTING)
66 return;
67 blob->object.flags |= UNINTERESTING;
68}
69
b3c7eef9
NTND
70static void mark_tree_contents_uninteresting(struct repository *r,
71 struct tree *tree)
ae563542 72{
f75e53ed 73 struct tree_desc desc;
4c068a98 74 struct name_entry entry;
ae563542 75
a5411df0 76 if (parse_tree_gently(tree, 1) < 0)
ae563542 77 return;
f75e53ed 78
6fda5e51 79 init_tree_desc(&desc, tree->buffer, tree->size);
4c068a98 80 while (tree_entry(&desc, &entry)) {
4d1012c3
LT
81 switch (object_type(entry.mode)) {
82 case OBJ_TREE:
ea82b2a0 83 mark_tree_uninteresting(r, lookup_tree(r, &entry.oid));
4d1012c3
LT
84 break;
85 case OBJ_BLOB:
ea82b2a0 86 mark_blob_uninteresting(lookup_blob(r, &entry.oid));
4d1012c3
LT
87 break;
88 default:
89 /* Subproject commit - not in this repository */
90 break;
91 }
ae563542 92 }
f75e53ed
LT
93
94 /*
95 * We don't care about the tree any more
96 * after it has been marked uninteresting.
97 */
6e454b9a 98 free_tree_buffer(tree);
ae563542
LT
99}
100
b3c7eef9 101void mark_tree_uninteresting(struct repository *r, struct tree *tree)
2ac5e447 102{
a2678df3 103 struct object *obj;
2ac5e447
JH
104
105 if (!tree)
106 return;
a2678df3
SN
107
108 obj = &tree->object;
2ac5e447
JH
109 if (obj->flags & UNINTERESTING)
110 return;
111 obj->flags |= UNINTERESTING;
b3c7eef9 112 mark_tree_contents_uninteresting(r, tree);
ae563542
LT
113}
114
d5d2e935
DS
115struct path_and_oids_entry {
116 struct hashmap_entry ent;
117 char *path;
118 struct oidset trees;
119};
120
121static int path_and_oids_cmp(const void *hashmap_cmp_fn_data,
939af16e
EW
122 const struct hashmap_entry *eptr,
123 const struct hashmap_entry *entry_or_key,
d5d2e935
DS
124 const void *keydata)
125{
939af16e
EW
126 const struct path_and_oids_entry *e1, *e2;
127
128 e1 = container_of(eptr, const struct path_and_oids_entry, ent);
129 e2 = container_of(entry_or_key, const struct path_and_oids_entry, ent);
130
d5d2e935
DS
131 return strcmp(e1->path, e2->path);
132}
133
d5d2e935
DS
134static void paths_and_oids_clear(struct hashmap *map)
135{
136 struct hashmap_iter iter;
137 struct path_and_oids_entry *entry;
d5d2e935 138
23dee69f 139 hashmap_for_each_entry(map, &iter, entry, ent /* member name */) {
d5d2e935
DS
140 oidset_clear(&entry->trees);
141 free(entry->path);
142 }
143
6da1a258 144 hashmap_clear_and_free(map, struct path_and_oids_entry, ent);
d5d2e935
DS
145}
146
147static void paths_and_oids_insert(struct hashmap *map,
148 const char *path,
149 const struct object_id *oid)
150{
151 int hash = strhash(path);
152 struct path_and_oids_entry key;
153 struct path_and_oids_entry *entry;
154
d22245a2 155 hashmap_entry_init(&key.ent, hash);
d5d2e935
DS
156
157 /* use a shallow copy for the lookup */
158 key.path = (char *)path;
159 oidset_init(&key.trees, 0);
160
404ab78e 161 entry = hashmap_get_entry(map, &key, ent, NULL);
b6c52416 162 if (!entry) {
ca56dadb 163 CALLOC_ARRAY(entry, 1);
d22245a2 164 hashmap_entry_init(&entry->ent, hash);
d5d2e935
DS
165 entry->path = xstrdup(key.path);
166 oidset_init(&entry->trees, 16);
26b455f2 167 hashmap_put(map, &entry->ent);
d5d2e935
DS
168 }
169
170 oidset_insert(&entry->trees, oid);
171}
172
173static void add_children_by_path(struct repository *r,
174 struct tree *tree,
175 struct hashmap *map)
176{
177 struct tree_desc desc;
178 struct name_entry entry;
179
180 if (!tree)
181 return;
182
183 if (parse_tree_gently(tree, 1) < 0)
184 return;
185
186 init_tree_desc(&desc, tree->buffer, tree->size);
187 while (tree_entry(&desc, &entry)) {
188 switch (object_type(entry.mode)) {
189 case OBJ_TREE:
5fda3433 190 paths_and_oids_insert(map, entry.path, &entry.oid);
d5d2e935
DS
191
192 if (tree->object.flags & UNINTERESTING) {
5fda3433 193 struct tree *child = lookup_tree(r, &entry.oid);
d5d2e935
DS
194 if (child)
195 child->object.flags |= UNINTERESTING;
196 }
197 break;
198 case OBJ_BLOB:
199 if (tree->object.flags & UNINTERESTING) {
5fda3433 200 struct blob *child = lookup_blob(r, &entry.oid);
d5d2e935
DS
201 if (child)
202 child->object.flags |= UNINTERESTING;
203 }
204 break;
205 default:
206 /* Subproject commit - not in this repository */
207 break;
208 }
209 }
210
211 free_tree_buffer(tree);
212}
213
f1f5de44
DS
214void mark_trees_uninteresting_sparse(struct repository *r,
215 struct oidset *trees)
216{
d5d2e935 217 unsigned has_interesting = 0, has_uninteresting = 0;
b19315d8 218 struct hashmap map = HASHMAP_INIT(path_and_oids_cmp, NULL);
d5d2e935
DS
219 struct hashmap_iter map_iter;
220 struct path_and_oids_entry *entry;
f1f5de44
DS
221 struct object_id *oid;
222 struct oidset_iter iter;
223
224 oidset_iter_init(trees, &iter);
d5d2e935
DS
225 while ((!has_interesting || !has_uninteresting) &&
226 (oid = oidset_iter_next(&iter))) {
f1f5de44
DS
227 struct tree *tree = lookup_tree(r, oid);
228
229 if (!tree)
230 continue;
231
d5d2e935
DS
232 if (tree->object.flags & UNINTERESTING)
233 has_uninteresting = 1;
234 else
235 has_interesting = 1;
f1f5de44 236 }
d5d2e935
DS
237
238 /* Do not walk unless we have both types of trees. */
239 if (!has_uninteresting || !has_interesting)
240 return;
241
d5d2e935
DS
242 oidset_iter_init(trees, &iter);
243 while ((oid = oidset_iter_next(&iter))) {
244 struct tree *tree = lookup_tree(r, oid);
245 add_children_by_path(r, tree, &map);
246 }
247
23dee69f 248 hashmap_for_each_entry(&map, &map_iter, entry, ent /* member name */)
d5d2e935
DS
249 mark_trees_uninteresting_sparse(r, &entry->trees);
250
251 paths_and_oids_clear(&map);
f1f5de44
DS
252}
253
43fc643b
JK
254struct commit_stack {
255 struct commit **items;
256 size_t nr, alloc;
257};
9865b6e6 258#define COMMIT_STACK_INIT { 0 }
43fc643b
JK
259
260static void commit_stack_push(struct commit_stack *stack, struct commit *commit)
261{
262 ALLOC_GROW(stack->items, stack->nr + 1, stack->alloc);
263 stack->items[stack->nr++] = commit;
264}
265
266static struct commit *commit_stack_pop(struct commit_stack *stack)
267{
268 return stack->nr ? stack->items[--stack->nr] : NULL;
269}
270
271static void commit_stack_clear(struct commit_stack *stack)
272{
273 FREE_AND_NULL(stack->items);
274 stack->nr = stack->alloc = 0;
275}
276
9d505b7b 277static void mark_one_parent_uninteresting(struct rev_info *revs, struct commit *commit,
8702b30f
JK
278 struct commit_stack *pending)
279{
280 struct commit_list *l;
281
282 if (commit->object.flags & UNINTERESTING)
283 return;
284 commit->object.flags |= UNINTERESTING;
285
286 /*
287 * Normally we haven't parsed the parent
288 * yet, so we won't have a parent of a parent
289 * here. However, it may turn out that we've
290 * reached this commit some other way (where it
291 * wasn't uninteresting), in which case we need
292 * to mark its parents recursively too..
293 */
9d505b7b 294 for (l = commit->parents; l; l = l->next) {
8702b30f 295 commit_stack_push(pending, l->item);
9d505b7b
JZ
296 if (revs && revs->exclude_first_parent_only)
297 break;
298 }
8702b30f
JK
299}
300
9d505b7b 301void mark_parents_uninteresting(struct rev_info *revs, struct commit *commit)
ae563542 302{
43fc643b
JK
303 struct commit_stack pending = COMMIT_STACK_INIT;
304 struct commit_list *l;
941ba8db 305
9d505b7b
JZ
306 for (l = commit->parents; l; l = l->next) {
307 mark_one_parent_uninteresting(revs, l->item, &pending);
308 if (revs && revs->exclude_first_parent_only)
309 break;
310 }
8702b30f
JK
311
312 while (pending.nr > 0)
9d505b7b 313 mark_one_parent_uninteresting(revs, commit_stack_pop(&pending),
8702b30f 314 &pending);
43fc643b
JK
315
316 commit_stack_clear(&pending);
ae563542
LT
317}
318
20739490 319static void add_pending_object_with_path(struct rev_info *revs,
ff5f5f26 320 struct object *obj,
20739490
JK
321 const char *name, unsigned mode,
322 const char *path)
ae563542 323{
a4f66a78 324 struct interpret_branch_name_options options = { 0 };
cc243c3c
JH
325 if (!obj)
326 return;
aa27e461 327 if (revs->no_walk && (obj->flags & UNINTERESTING))
f222abde 328 revs->no_walk = 0;
105e4733
JH
329 if (revs->reflog_info && obj->type == OBJ_COMMIT) {
330 struct strbuf buf = STRBUF_INIT;
1d72b604
JK
331 size_t namelen = strlen(name);
332 int len = interpret_branch_name(name, namelen, &buf, &options);
105e4733 333
1d72b604 334 if (0 < len && len < namelen && buf.len)
105e4733 335 strbuf_addstr(&buf, name + len);
d08565bf
JK
336 add_reflog_for_walk(revs->reflog_info,
337 (struct commit *)obj,
338 buf.buf[0] ? buf.buf: name);
105e4733 339 strbuf_release(&buf);
d08565bf 340 return; /* do not add the commit itself */
105e4733 341 }
20739490
JK
342 add_object_array_with_path(obj, name, &revs->pending, mode, path);
343}
344
345static void add_pending_object_with_mode(struct rev_info *revs,
346 struct object *obj,
347 const char *name, unsigned mode)
348{
349 add_pending_object_with_path(revs, obj, name, mode, NULL);
ae563542
LT
350}
351
ff5f5f26
MH
352void add_pending_object(struct rev_info *revs,
353 struct object *obj, const char *name)
2d93b9fa
JH
354{
355 add_pending_object_with_mode(revs, obj, name, S_IFINVALID);
356}
357
3384a2df
JH
358void add_head_to_pending(struct rev_info *revs)
359{
654b9a90 360 struct object_id oid;
3384a2df 361 struct object *obj;
654b9a90 362 if (get_oid("HEAD", &oid))
3384a2df 363 return;
b3c7eef9 364 obj = parse_object(revs->repo, &oid);
3384a2df
JH
365 if (!obj)
366 return;
367 add_pending_object(revs, obj, "HEAD");
368}
369
ff5f5f26 370static struct object *get_reference(struct rev_info *revs, const char *name,
654b9a90 371 const struct object_id *oid,
ff5f5f26 372 unsigned int flags)
ae563542
LT
373{
374 struct object *object;
f559d6d4 375 struct commit *commit;
ae563542 376
ec0c5798 377 /*
f559d6d4
PS
378 * If the repository has commit graphs, we try to opportunistically
379 * look up the object ID in those graphs. Like this, we can avoid
380 * parsing commit data from disk.
ec0c5798 381 */
f559d6d4
PS
382 commit = lookup_commit_in_graph(revs->repo, oid);
383 if (commit)
384 object = &commit->object;
385 else
ec0c5798 386 object = parse_object(revs->repo, oid);
ec0c5798 387
cc243c3c
JH
388 if (!object) {
389 if (revs->ignore_missing)
390 return object;
df11e196
JT
391 if (revs->exclude_promisor_objects && is_promisor_object(oid))
392 return NULL;
ae563542 393 die("bad object %s", name);
cc243c3c 394 }
cd2bdc53
LT
395 object->flags |= flags;
396 return object;
397}
398
a58a1b01 399void add_pending_oid(struct rev_info *revs, const char *name,
400 const struct object_id *oid, unsigned int flags)
26c3177e 401{
654b9a90 402 struct object *object = get_reference(revs, name, oid, flags);
26c3177e
RS
403 add_pending_object(revs, object, name);
404}
405
ff5f5f26 406static struct commit *handle_commit(struct rev_info *revs,
20739490 407 struct object_array_entry *entry)
cd2bdc53 408{
20739490
JK
409 struct object *object = entry->item;
410 const char *name = entry->name;
411 const char *path = entry->path;
412 unsigned int mode = entry->mode;
cd2bdc53 413 unsigned long flags = object->flags;
ae563542
LT
414
415 /*
416 * Tag object? Look what it points to..
417 */
1974632c 418 while (object->type == OBJ_TAG) {
ae563542 419 struct tag *tag = (struct tag *) object;
cd2bdc53 420 if (revs->tag_objects && !(flags & UNINTERESTING))
ae563542 421 add_pending_object(revs, object, tag->tag);
dad3f060 422 object = parse_object(revs->repo, get_tagged_oid(tag));
aeeae1b7 423 if (!object) {
a3ba6bf1 424 if (revs->ignore_missing_links || (flags & UNINTERESTING))
aeeae1b7 425 return NULL;
dc0a13f6
JT
426 if (revs->exclude_promisor_objects &&
427 is_promisor_object(&tag->tagged->oid))
428 return NULL;
f2fd0760 429 die("bad object %s", oid_to_hex(&tag->tagged->oid));
aeeae1b7 430 }
a7435286 431 object->flags |= flags;
20739490
JK
432 /*
433 * We'll handle the tagged object by looping or dropping
434 * through to the non-tag handlers below. Do not
728350b7 435 * propagate path data from the tag's pending entry.
20739490 436 */
20739490
JK
437 path = NULL;
438 mode = 0;
ae563542
LT
439 }
440
441 /*
442 * Commit object? Just return it, we'll do all the complex
443 * reachability crud.
444 */
1974632c 445 if (object->type == OBJ_COMMIT) {
ae563542 446 struct commit *commit = (struct commit *)object;
87be2523 447
ea3f7e59 448 if (repo_parse_commit(revs->repo, commit) < 0)
ae563542 449 die("unable to parse commit %s", name);
d9a83684 450 if (flags & UNINTERESTING) {
9d505b7b 451 mark_parents_uninteresting(revs, commit);
1b4d8827
DS
452
453 if (!revs->topo_order || !generation_numbers_enabled(the_repository))
454 revs->limited = 1;
d9a83684 455 }
87be2523
NTND
456 if (revs->sources) {
457 char **slot = revision_sources_at(revs->sources, commit);
458
459 if (!*slot)
460 *slot = xstrdup(name);
461 }
ae563542
LT
462 return commit;
463 }
464
465 /*
3ea3c215 466 * Tree object? Either mark it uninteresting, or add it
ae563542
LT
467 * to the list of objects to look at later..
468 */
1974632c 469 if (object->type == OBJ_TREE) {
ae563542
LT
470 struct tree *tree = (struct tree *)object;
471 if (!revs->tree_objects)
472 return NULL;
473 if (flags & UNINTERESTING) {
b3c7eef9 474 mark_tree_contents_uninteresting(revs->repo, tree);
ae563542
LT
475 return NULL;
476 }
20739490 477 add_pending_object_with_path(revs, object, name, mode, path);
ae563542
LT
478 return NULL;
479 }
480
481 /*
482 * Blob object? You know the drill by now..
483 */
1974632c 484 if (object->type == OBJ_BLOB) {
ae563542
LT
485 if (!revs->blob_objects)
486 return NULL;
a7435286 487 if (flags & UNINTERESTING)
ae563542 488 return NULL;
20739490 489 add_pending_object_with_path(revs, object, name, mode, path);
ae563542
LT
490 return NULL;
491 }
492 die("%s is unknown object", name);
493}
494
b6e8a3b5
JK
495static int everybody_uninteresting(struct commit_list *orig,
496 struct commit **interesting_cache)
a4a88b2b
LT
497{
498 struct commit_list *list = orig;
b6e8a3b5
JK
499
500 if (*interesting_cache) {
501 struct commit *commit = *interesting_cache;
502 if (!(commit->object.flags & UNINTERESTING))
503 return 0;
504 }
505
a4a88b2b
LT
506 while (list) {
507 struct commit *commit = list->item;
508 list = list->next;
509 if (commit->object.flags & UNINTERESTING)
510 continue;
ae40ebda
SB
511
512 *interesting_cache = commit;
a4a88b2b
LT
513 return 0;
514 }
515 return 1;
516}
517
4d826608
KB
518/*
519 * A definition of "relevant" commit that we can use to simplify limited graphs
520 * by eliminating side branches.
521 *
522 * A "relevant" commit is one that is !UNINTERESTING (ie we are including it
523 * in our list), or that is a specified BOTTOM commit. Then after computing
524 * a limited list, during processing we can generally ignore boundary merges
525 * coming from outside the graph, (ie from irrelevant parents), and treat
526 * those merges as if they were single-parent. TREESAME is defined to consider
527 * only relevant parents, if any. If we are TREESAME to our on-graph parents,
528 * we don't care if we were !TREESAME to non-graph parents.
529 *
530 * Treating bottom commits as relevant ensures that a limited graph's
531 * connection to the actual bottom commit is not viewed as a side branch, but
532 * treated as part of the graph. For example:
533 *
534 * ....Z...A---X---o---o---B
535 * . /
536 * W---Y
537 *
538 * When computing "A..B", the A-X connection is at least as important as
539 * Y-X, despite A being flagged UNINTERESTING.
540 *
541 * And when computing --ancestry-path "A..B", the A-X connection is more
542 * important than Y-X, despite both A and Y being flagged UNINTERESTING.
543 */
544static inline int relevant_commit(struct commit *commit)
545{
546 return (commit->object.flags & (UNINTERESTING | BOTTOM)) != UNINTERESTING;
547}
548
549/*
550 * Return a single relevant commit from a parent list. If we are a TREESAME
551 * commit, and this selects one of our parents, then we can safely simplify to
552 * that parent.
553 */
554static struct commit *one_relevant_parent(const struct rev_info *revs,
555 struct commit_list *orig)
556{
557 struct commit_list *list = orig;
558 struct commit *relevant = NULL;
559
560 if (!orig)
561 return NULL;
562
563 /*
564 * For 1-parent commits, or if first-parent-only, then return that
565 * first parent (even if not "relevant" by the above definition).
566 * TREESAME will have been set purely on that parent.
567 */
568 if (revs->first_parent_only || !orig->next)
569 return orig->item;
570
571 /*
572 * For multi-parent commits, identify a sole relevant parent, if any.
573 * If we have only one relevant parent, then TREESAME will be set purely
574 * with regard to that parent, and we can simplify accordingly.
575 *
576 * If we have more than one relevant parent, or no relevant parents
577 * (and multiple irrelevant ones), then we can't select a parent here
578 * and return NULL.
579 */
580 while (list) {
581 struct commit *commit = list->item;
582 list = list->next;
583 if (relevant_commit(commit)) {
584 if (relevant)
585 return NULL;
586 relevant = commit;
587 }
588 }
589 return relevant;
590}
591
0a4ba7f8
JH
592/*
593 * The goal is to get REV_TREE_NEW as the result only if the
ceff8e7a
LT
594 * diff consists of all '+' (and no other changes), REV_TREE_OLD
595 * if the whole diff is removal of old data, and otherwise
596 * REV_TREE_DIFFERENT (of course if the trees are the same we
597 * want REV_TREE_SAME).
a937b37e
JK
598 *
599 * The only time we care about the distinction is when
600 * remove_empty_trees is in effect, in which case we care only about
601 * whether the whole change is REV_TREE_NEW, or if there's another type
602 * of change. Which means we can stop the diff early in either of these
603 * cases:
604 *
605 * 1. We're not using remove_empty_trees at all.
606 *
607 * 2. We saw anything except REV_TREE_NEW.
0a4ba7f8 608 */
296a1438
ÆAB
609#define REV_TREE_SAME 0
610#define REV_TREE_NEW 1 /* Only new files */
611#define REV_TREE_OLD 2 /* Only files removed */
612#define REV_TREE_DIFFERENT 3 /* Mixed changes */
8efdc326 613static int tree_difference = REV_TREE_SAME;
a4a88b2b
LT
614
615static void file_add_remove(struct diff_options *options,
616 int addremove, unsigned mode,
c26022ea
BW
617 const struct object_id *oid,
618 int oid_valid,
e3d42c47 619 const char *fullpath, unsigned dirty_submodule)
a4a88b2b 620{
ceff8e7a 621 int diff = addremove == '+' ? REV_TREE_NEW : REV_TREE_OLD;
a937b37e 622 struct rev_info *revs = options->change_fn_data;
a4a88b2b 623
ceff8e7a 624 tree_difference |= diff;
a937b37e 625 if (!revs->remove_empty_trees || tree_difference != REV_TREE_NEW)
0d1e0e78 626 options->flags.has_changes = 1;
a4a88b2b
LT
627}
628
629static void file_change(struct diff_options *options,
630 unsigned old_mode, unsigned new_mode,
94a0097a
BW
631 const struct object_id *old_oid,
632 const struct object_id *new_oid,
633 int old_oid_valid, int new_oid_valid,
e3d42c47
JL
634 const char *fullpath,
635 unsigned old_dirty_submodule, unsigned new_dirty_submodule)
a4a88b2b 636{
8efdc326 637 tree_difference = REV_TREE_DIFFERENT;
0d1e0e78 638 options->flags.has_changes = 1;
a4a88b2b
LT
639}
640
42e50e78
GS
641static int bloom_filter_atexit_registered;
642static unsigned int count_bloom_filter_maybe;
643static unsigned int count_bloom_filter_definitely_not;
644static unsigned int count_bloom_filter_false_positive;
645static unsigned int count_bloom_filter_not_present;
42e50e78
GS
646
647static void trace2_bloom_filter_statistics_atexit(void)
648{
649 struct json_writer jw = JSON_WRITER_INIT;
650
651 jw_object_begin(&jw, 0);
652 jw_object_intmax(&jw, "filter_not_present", count_bloom_filter_not_present);
42e50e78
GS
653 jw_object_intmax(&jw, "maybe", count_bloom_filter_maybe);
654 jw_object_intmax(&jw, "definitely_not", count_bloom_filter_definitely_not);
655 jw_object_intmax(&jw, "false_positive", count_bloom_filter_false_positive);
656 jw_end(&jw);
657
658 trace2_data_json("bloom", the_repository, "statistics", &jw);
659
660 jw_release(&jw);
661}
662
8918e379
DS
663static int forbid_bloom_filters(struct pathspec *spec)
664{
665 if (spec->has_wildcard)
666 return 1;
667 if (spec->nr > 1)
668 return 1;
669 if (spec->magic & ~PATHSPEC_LITERAL)
670 return 1;
671 if (spec->nr && (spec->items[0].magic & ~PATHSPEC_LITERAL))
672 return 1;
673
674 return 0;
675}
676
a56b9464
GS
677static void prepare_to_use_bloom_filter(struct rev_info *revs)
678{
679 struct pathspec_item *pi;
680 char *path_alloc = NULL;
c525ce95 681 const char *path, *p;
c525ce95
SG
682 size_t len;
683 int path_component_nr = 1;
a56b9464
GS
684
685 if (!revs->commits)
8918e379
DS
686 return;
687
688 if (forbid_bloom_filters(&revs->prune_data))
689 return;
a56b9464
GS
690
691 repo_parse_commit(revs->repo, revs->commits->item);
692
4f364405 693 revs->bloom_filter_settings = get_bloom_filter_settings(revs->repo);
a56b9464
GS
694 if (!revs->bloom_filter_settings)
695 return;
696
f32dde8c
DS
697 if (!revs->pruning.pathspec.nr)
698 return;
699
a56b9464 700 pi = &revs->pruning.pathspec.items[0];
a56b9464
GS
701
702 /* remove single trailing slash from path, if needed */
fd9a631c
JK
703 if (pi->len > 0 && pi->match[pi->len - 1] == '/') {
704 path_alloc = xmemdupz(pi->match, pi->len - 1);
dc8e95ba 705 path = path_alloc;
a56b9464 706 } else
dc8e95ba 707 path = pi->match;
a56b9464
GS
708
709 len = strlen(path);
f3c2a368
TB
710 if (!len) {
711 revs->bloom_filter_settings = NULL;
398e659e 712 free(path_alloc);
f3c2a368
TB
713 return;
714 }
a56b9464 715
c525ce95
SG
716 p = path;
717 while (*p) {
718 /*
719 * At this point, the path is normalized to use Unix-style
720 * path separators. This is required due to how the
721 * changed-path Bloom filters store the paths.
722 */
723 if (*p == '/')
724 path_component_nr++;
725 p++;
726 }
727
728 revs->bloom_keys_nr = path_component_nr;
729 ALLOC_ARRAY(revs->bloom_keys, revs->bloom_keys_nr);
a56b9464 730
c525ce95
SG
731 fill_bloom_key(path, len, &revs->bloom_keys[0],
732 revs->bloom_filter_settings);
733 path_component_nr = 1;
734
735 p = path + len - 1;
736 while (p > path) {
737 if (*p == '/')
738 fill_bloom_key(path, p - path,
739 &revs->bloom_keys[path_component_nr++],
740 revs->bloom_filter_settings);
741 p--;
742 }
a56b9464 743
42e50e78
GS
744 if (trace2_is_enabled() && !bloom_filter_atexit_registered) {
745 atexit(trace2_bloom_filter_statistics_atexit);
746 bloom_filter_atexit_registered = 1;
747 }
748
a56b9464
GS
749 free(path_alloc);
750}
751
752static int check_maybe_different_in_bloom_filter(struct rev_info *revs,
753 struct commit *commit)
754{
755 struct bloom_filter *filter;
c525ce95 756 int result = 1, j;
a56b9464
GS
757
758 if (!revs->repo->objects->commit_graph)
759 return -1;
760
c49c82aa 761 if (commit_graph_generation(commit) == GENERATION_NUMBER_INFINITY)
a56b9464
GS
762 return -1;
763
312cff52 764 filter = get_bloom_filter(revs->repo, commit);
a56b9464
GS
765
766 if (!filter) {
42e50e78 767 count_bloom_filter_not_present++;
a56b9464
GS
768 return -1;
769 }
770
c525ce95
SG
771 for (j = 0; result && j < revs->bloom_keys_nr; j++) {
772 result = bloom_filter_contains(filter,
773 &revs->bloom_keys[j],
774 revs->bloom_filter_settings);
a56b9464
GS
775 }
776
42e50e78
GS
777 if (result)
778 count_bloom_filter_maybe++;
779 else
780 count_bloom_filter_definitely_not++;
781
a56b9464
GS
782 return result;
783}
784
ff5f5f26 785static int rev_compare_tree(struct rev_info *revs,
a56b9464 786 struct commit *parent, struct commit *commit, int nth_parent)
a4a88b2b 787{
2e27bd77
DS
788 struct tree *t1 = get_commit_tree(parent);
789 struct tree *t2 = get_commit_tree(commit);
a56b9464 790 int bloom_ret = 1;
3a5e8608 791
a4a88b2b 792 if (!t1)
8efdc326 793 return REV_TREE_NEW;
ceff8e7a
LT
794 if (!t2)
795 return REV_TREE_OLD;
78892e32
LT
796
797 if (revs->simplify_by_decoration) {
798 /*
799 * If we are simplifying by decoration, then the commit
800 * is worth showing if it has a tag pointing at it.
801 */
2608c249 802 if (get_name_decoration(&commit->object))
78892e32
LT
803 return REV_TREE_DIFFERENT;
804 /*
805 * A commit that is not pointed by a tag is uninteresting
806 * if we are not limited by path. This means that you will
807 * see the usual "commits that touch the paths" plus any
808 * tagged commit by specifying both --simplify-by-decoration
809 * and pathspec.
810 */
afe069d1 811 if (!revs->prune_data.nr)
78892e32
LT
812 return REV_TREE_SAME;
813 }
ceff8e7a 814
c525ce95 815 if (revs->bloom_keys_nr && !nth_parent) {
a56b9464
GS
816 bloom_ret = check_maybe_different_in_bloom_filter(revs, commit);
817
818 if (bloom_ret == 0)
819 return REV_TREE_SAME;
820 }
821
8efdc326 822 tree_difference = REV_TREE_SAME;
0d1e0e78 823 revs->pruning.flags.has_changes = 0;
0ee3cb88 824 diff_tree_oid(&t1->object.oid, &t2->object.oid, "", &revs->pruning);
a56b9464 825
42e50e78
GS
826 if (!nth_parent)
827 if (bloom_ret == 1 && tree_difference == REV_TREE_SAME)
828 count_bloom_filter_false_positive++;
829
a4a88b2b
LT
830 return tree_difference;
831}
832
3a5e8608 833static int rev_same_tree_as_empty(struct rev_info *revs, struct commit *commit)
a4a88b2b 834{
2e27bd77 835 struct tree *t1 = get_commit_tree(commit);
a4a88b2b
LT
836
837 if (!t1)
838 return 0;
839
0a4ba7f8 840 tree_difference = REV_TREE_SAME;
0d1e0e78 841 revs->pruning.flags.has_changes = 0;
0ee3cb88 842 diff_tree_oid(NULL, &t1->object.oid, "", &revs->pruning);
a4a88b2b 843
0ee3cb88 844 return tree_difference == REV_TREE_SAME;
a4a88b2b
LT
845}
846
d0af663e
KB
847struct treesame_state {
848 unsigned int nparents;
849 unsigned char treesame[FLEX_ARRAY];
850};
851
852static struct treesame_state *initialise_treesame(struct rev_info *revs, struct commit *commit)
853{
854 unsigned n = commit_list_count(commit->parents);
50a6c8ef 855 struct treesame_state *st = xcalloc(1, st_add(sizeof(*st), n));
d0af663e
KB
856 st->nparents = n;
857 add_decoration(&revs->treesame, &commit->object, st);
858 return st;
859}
860
861/*
862 * Must be called immediately after removing the nth_parent from a commit's
863 * parent list, if we are maintaining the per-parent treesame[] decoration.
864 * This does not recalculate the master TREESAME flag - update_treesame()
865 * should be called to update it after a sequence of treesame[] modifications
866 * that may have affected it.
867 */
868static int compact_treesame(struct rev_info *revs, struct commit *commit, unsigned nth_parent)
869{
870 struct treesame_state *st;
871 int old_same;
872
873 if (!commit->parents) {
874 /*
875 * Have just removed the only parent from a non-merge.
876 * Different handling, as we lack decoration.
877 */
878 if (nth_parent != 0)
879 die("compact_treesame %u", nth_parent);
880 old_same = !!(commit->object.flags & TREESAME);
881 if (rev_same_tree_as_empty(revs, commit))
882 commit->object.flags |= TREESAME;
883 else
884 commit->object.flags &= ~TREESAME;
885 return old_same;
886 }
887
888 st = lookup_decoration(&revs->treesame, &commit->object);
889 if (!st || nth_parent >= st->nparents)
890 die("compact_treesame %u", nth_parent);
891
892 old_same = st->treesame[nth_parent];
893 memmove(st->treesame + nth_parent,
894 st->treesame + nth_parent + 1,
895 st->nparents - nth_parent - 1);
896
897 /*
898 * If we've just become a non-merge commit, update TREESAME
899 * immediately, and remove the no-longer-needed decoration.
900 * If still a merge, defer update until update_treesame().
901 */
902 if (--st->nparents == 1) {
903 if (commit->parents->next)
904 die("compact_treesame parents mismatch");
905 if (st->treesame[0] && revs->dense)
906 commit->object.flags |= TREESAME;
907 else
908 commit->object.flags &= ~TREESAME;
909 free(add_decoration(&revs->treesame, &commit->object, NULL));
910 }
911
912 return old_same;
913}
914
915static unsigned update_treesame(struct rev_info *revs, struct commit *commit)
916{
917 if (commit->parents && commit->parents->next) {
918 unsigned n;
919 struct treesame_state *st;
4d826608
KB
920 struct commit_list *p;
921 unsigned relevant_parents;
922 unsigned relevant_change, irrelevant_change;
d0af663e
KB
923
924 st = lookup_decoration(&revs->treesame, &commit->object);
925 if (!st)
f2fd0760 926 die("update_treesame %s", oid_to_hex(&commit->object.oid));
4d826608
KB
927 relevant_parents = 0;
928 relevant_change = irrelevant_change = 0;
929 for (p = commit->parents, n = 0; p; n++, p = p->next) {
930 if (relevant_commit(p->item)) {
931 relevant_change |= !st->treesame[n];
932 relevant_parents++;
933 } else
934 irrelevant_change |= !st->treesame[n];
d0af663e 935 }
4d826608
KB
936 if (relevant_parents ? relevant_change : irrelevant_change)
937 commit->object.flags &= ~TREESAME;
938 else
939 commit->object.flags |= TREESAME;
d0af663e
KB
940 }
941
942 return commit->object.flags & TREESAME;
943}
944
4d826608
KB
945static inline int limiting_can_increase_treesame(const struct rev_info *revs)
946{
947 /*
948 * TREESAME is irrelevant unless prune && dense;
949 * if simplify_history is set, we can't have a mixture of TREESAME and
950 * !TREESAME INTERESTING parents (and we don't have treesame[]
951 * decoration anyway);
952 * if first_parent_only is set, then the TREESAME flag is locked
953 * against the first parent (and again we lack treesame[] decoration).
954 */
955 return revs->prune && revs->dense &&
956 !revs->simplify_history &&
957 !revs->first_parent_only;
958}
959
a4a88b2b
LT
960static void try_to_simplify_commit(struct rev_info *revs, struct commit *commit)
961{
962 struct commit_list **pp, *parent;
d0af663e 963 struct treesame_state *ts = NULL;
4d826608
KB
964 int relevant_change = 0, irrelevant_change = 0;
965 int relevant_parents, nth_parent;
a4a88b2b 966
53b2c823
LT
967 /*
968 * If we don't do pruning, everything is interesting
969 */
7dc0fe3b 970 if (!revs->prune)
53b2c823 971 return;
53b2c823 972
2e27bd77 973 if (!get_commit_tree(commit))
a4a88b2b
LT
974 return;
975
976 if (!commit->parents) {
3a5e8608 977 if (rev_same_tree_as_empty(revs, commit))
7dc0fe3b 978 commit->object.flags |= TREESAME;
a4a88b2b
LT
979 return;
980 }
981
53b2c823
LT
982 /*
983 * Normal non-merge commit? If we don't want to make the
984 * history dense, we consider it always to be a change..
985 */
7dc0fe3b 986 if (!revs->dense && !commit->parents->next)
53b2c823 987 return;
53b2c823 988
4d826608 989 for (pp = &commit->parents, nth_parent = 0, relevant_parents = 0;
d0af663e
KB
990 (parent = *pp) != NULL;
991 pp = &parent->next, nth_parent++) {
a4a88b2b 992 struct commit *p = parent->item;
4d826608
KB
993 if (relevant_commit(p))
994 relevant_parents++;
a4a88b2b 995
d0af663e
KB
996 if (nth_parent == 1) {
997 /*
998 * This our second loop iteration - so we now know
999 * we're dealing with a merge.
1000 *
1001 * Do not compare with later parents when we care only about
1002 * the first parent chain, in order to avoid derailing the
1003 * traversal to follow a side branch that brought everything
1004 * in the path we are limited to by the pathspec.
1005 */
1006 if (revs->first_parent_only)
1007 break;
1008 /*
1009 * If this will remain a potentially-simplifiable
1010 * merge, remember per-parent treesame if needed.
1011 * Initialise the array with the comparison from our
1012 * first iteration.
1013 */
1014 if (revs->treesame.name &&
1015 !revs->simplify_history &&
1016 !(commit->object.flags & UNINTERESTING)) {
1017 ts = initialise_treesame(revs, commit);
4d826608 1018 if (!(irrelevant_change || relevant_change))
d0af663e
KB
1019 ts->treesame[0] = 1;
1020 }
1021 }
ea3f7e59 1022 if (repo_parse_commit(revs->repo, p) < 0)
cc0e6c5a 1023 die("cannot simplify commit %s (because of %s)",
f2fd0760 1024 oid_to_hex(&commit->object.oid),
1025 oid_to_hex(&p->object.oid));
a56b9464 1026 switch (rev_compare_tree(revs, p, commit, nth_parent)) {
8efdc326 1027 case REV_TREE_SAME:
141efdba 1028 if (!revs->simplify_history || !relevant_commit(p)) {
f3219fbb
JH
1029 /* Even if a merge with an uninteresting
1030 * side branch brought the entire change
1031 * we are interested in, we do not want
1032 * to lose the other branches of this
1033 * merge, so we just keep going.
1034 */
d0af663e
KB
1035 if (ts)
1036 ts->treesame[nth_parent] = 1;
f3219fbb
JH
1037 continue;
1038 }
a4a88b2b
LT
1039 parent->next = NULL;
1040 commit->parents = parent;
8d049e18
DS
1041
1042 /*
1043 * A merge commit is a "diversion" if it is not
1044 * TREESAME to its first parent but is TREESAME
1045 * to a later parent. In the simplified history,
1046 * we "divert" the history walk to the later
1047 * parent. These commits are shown when "show_pulls"
1048 * is enabled, so do not mark the object as
1049 * TREESAME here.
1050 */
1051 if (!revs->show_pulls || !nth_parent)
1052 commit->object.flags |= TREESAME;
1053
a4a88b2b
LT
1054 return;
1055
8efdc326
FK
1056 case REV_TREE_NEW:
1057 if (revs->remove_empty_trees &&
3a5e8608 1058 rev_same_tree_as_empty(revs, p)) {
c348f31a
JH
1059 /* We are adding all the specified
1060 * paths from this parent, so the
1061 * history beyond this parent is not
1062 * interesting. Remove its parents
1063 * (they are grandparents for us).
1064 * IOW, we pretend this parent is a
1065 * "root" commit.
a41e109c 1066 */
ea3f7e59 1067 if (repo_parse_commit(revs->repo, p) < 0)
cc0e6c5a 1068 die("cannot simplify commit %s (invalid %s)",
f2fd0760 1069 oid_to_hex(&commit->object.oid),
1070 oid_to_hex(&p->object.oid));
c348f31a 1071 p->parents = NULL;
a4a88b2b
LT
1072 }
1073 /* fallthrough */
ceff8e7a 1074 case REV_TREE_OLD:
8efdc326 1075 case REV_TREE_DIFFERENT:
4d826608
KB
1076 if (relevant_commit(p))
1077 relevant_change = 1;
1078 else
1079 irrelevant_change = 1;
8d049e18
DS
1080
1081 if (!nth_parent)
1082 commit->object.flags |= PULL_MERGE;
1083
a4a88b2b
LT
1084 continue;
1085 }
f2fd0760 1086 die("bad tree compare for commit %s", oid_to_hex(&commit->object.oid));
a4a88b2b 1087 }
4d826608
KB
1088
1089 /*
1090 * TREESAME is straightforward for single-parent commits. For merge
1091 * commits, it is most useful to define it so that "irrelevant"
1092 * parents cannot make us !TREESAME - if we have any relevant
1093 * parents, then we only consider TREESAMEness with respect to them,
1094 * allowing irrelevant merges from uninteresting branches to be
1095 * simplified away. Only if we have only irrelevant parents do we
1096 * base TREESAME on them. Note that this logic is replicated in
1097 * update_treesame, which should be kept in sync.
1098 */
1099 if (relevant_parents ? !relevant_change : !irrelevant_change)
1100 commit->object.flags |= TREESAME;
a4a88b2b
LT
1101}
1102
5284fc5c 1103static int process_parents(struct rev_info *revs, struct commit *commit,
8320b1db 1104 struct commit_list **list, struct prio_queue *queue)
a4a88b2b
LT
1105{
1106 struct commit_list *parent = commit->parents;
577ed5c2 1107 unsigned left_flag;
a4a88b2b 1108
3381c790 1109 if (commit->object.flags & ADDED)
cc0e6c5a 1110 return 0;
3381c790
LT
1111 commit->object.flags |= ADDED;
1112
a330de31
VM
1113 if (revs->include_check &&
1114 !revs->include_check(commit, revs->include_check_data))
1115 return 0;
1116
a4a88b2b
LT
1117 /*
1118 * If the commit is uninteresting, don't try to
1119 * prune parents - we want the maximal uninteresting
1120 * set.
1121 *
1122 * Normally we haven't parsed the parent
1123 * yet, so we won't have a parent of a parent
1124 * here. However, it may turn out that we've
1125 * reached this commit some other way (where it
1126 * wasn't uninteresting), in which case we need
1127 * to mark its parents recursively too..
1128 */
1129 if (commit->object.flags & UNINTERESTING) {
1130 while (parent) {
1131 struct commit *p = parent->item;
1132 parent = parent->next;
aeeae1b7
JH
1133 if (p)
1134 p->object.flags |= UNINTERESTING;
ea3f7e59 1135 if (repo_parse_commit_gently(revs->repo, p, 1) < 0)
aeeae1b7 1136 continue;
a4a88b2b 1137 if (p->parents)
9d505b7b 1138 mark_parents_uninteresting(revs, p);
a4a88b2b
LT
1139 if (p->object.flags & SEEN)
1140 continue;
b2025da3 1141 p->object.flags |= (SEEN | NOT_USER_GIVEN);
5284fc5c 1142 if (list)
8320b1db
JK
1143 commit_list_insert_by_date(p, list);
1144 if (queue)
1145 prio_queue_put(queue, p);
9d505b7b
JZ
1146 if (revs->exclude_first_parent_only)
1147 break;
a4a88b2b 1148 }
cc0e6c5a 1149 return 0;
a4a88b2b
LT
1150 }
1151
1152 /*
1153 * Ok, the commit wasn't uninteresting. Try to
1154 * simplify the commit history and find the parent
1155 * that has no differences in the path set if one exists.
1156 */
53b2c823 1157 try_to_simplify_commit(revs, commit);
a4a88b2b 1158
ba1d4505 1159 if (revs->no_walk)
cc0e6c5a 1160 return 0;
ba1d4505 1161
577ed5c2 1162 left_flag = (commit->object.flags & SYMMETRIC_LEFT);
0053e902 1163
d9c292e8 1164 for (parent = commit->parents; parent; parent = parent->next) {
a4a88b2b 1165 struct commit *p = parent->item;
df11e196
JT
1166 int gently = revs->ignore_missing_links ||
1167 revs->exclude_promisor_objects;
ea3f7e59 1168 if (repo_parse_commit_gently(revs->repo, p, gently) < 0) {
df11e196
JT
1169 if (revs->exclude_promisor_objects &&
1170 is_promisor_object(&p->object.oid)) {
1171 if (revs->first_parent_only)
1172 break;
1173 continue;
1174 }
cc0e6c5a 1175 return -1;
df11e196 1176 }
87be2523
NTND
1177 if (revs->sources) {
1178 char **slot = revision_sources_at(revs->sources, p);
1179
1180 if (!*slot)
1181 *slot = *revision_sources_at(revs->sources, commit);
1182 }
577ed5c2 1183 p->object.flags |= left_flag;
ad1012eb 1184 if (!(p->object.flags & SEEN)) {
b2025da3 1185 p->object.flags |= (SEEN | NOT_USER_GIVEN);
5284fc5c 1186 if (list)
8320b1db
JK
1187 commit_list_insert_by_date(p, list);
1188 if (queue)
1189 prio_queue_put(queue, p);
ad1012eb 1190 }
60d30b02 1191 if (revs->first_parent_only)
d9c292e8 1192 break;
a4a88b2b 1193 }
cc0e6c5a 1194 return 0;
a4a88b2b
LT
1195}
1196
36d56de6 1197static void cherry_pick_list(struct commit_list *list, struct rev_info *revs)
d7a17cad
JH
1198{
1199 struct commit_list *p;
1200 int left_count = 0, right_count = 0;
1201 int left_first;
1202 struct patch_ids ids;
adbbb31e 1203 unsigned cherry_flag;
d7a17cad
JH
1204
1205 /* First count the commits on the left and on the right */
1206 for (p = list; p; p = p->next) {
1207 struct commit *commit = p->item;
1208 unsigned flags = commit->object.flags;
1209 if (flags & BOUNDARY)
1210 ;
1211 else if (flags & SYMMETRIC_LEFT)
1212 left_count++;
1213 else
1214 right_count++;
1215 }
1216
36c07975
TR
1217 if (!left_count || !right_count)
1218 return;
1219
d7a17cad 1220 left_first = left_count < right_count;
2abf3503 1221 init_patch_ids(revs->repo, &ids);
66f13625 1222 ids.diffopts.pathspec = revs->diffopt.pathspec;
d7a17cad
JH
1223
1224 /* Compute patch-ids for one side */
1225 for (p = list; p; p = p->next) {
1226 struct commit *commit = p->item;
1227 unsigned flags = commit->object.flags;
1228
1229 if (flags & BOUNDARY)
1230 continue;
1231 /*
1232 * If we have fewer left, left_first is set and we omit
1233 * commits on the right branch in this loop. If we have
1234 * fewer right, we skip the left ones.
1235 */
1236 if (left_first != !!(flags & SYMMETRIC_LEFT))
1237 continue;
683f17ec 1238 add_commit_patch_id(commit, &ids);
d7a17cad
JH
1239 }
1240
adbbb31e
MG
1241 /* either cherry_mark or cherry_pick are true */
1242 cherry_flag = revs->cherry_mark ? PATCHSAME : SHOWN;
1243
d7a17cad
JH
1244 /* Check the other side */
1245 for (p = list; p; p = p->next) {
1246 struct commit *commit = p->item;
1247 struct patch_id *id;
1248 unsigned flags = commit->object.flags;
1249
1250 if (flags & BOUNDARY)
1251 continue;
1252 /*
1253 * If we have fewer left, left_first is set and we omit
1254 * commits on the left branch in this loop.
1255 */
1256 if (left_first == !!(flags & SYMMETRIC_LEFT))
1257 continue;
1258
1259 /*
1260 * Have we seen the same patch id?
1261 */
c9e3a4e7 1262 id = patch_id_iter_first(commit, &ids);
d7a17cad
JH
1263 if (!id)
1264 continue;
d7a17cad 1265
683f17ec 1266 commit->object.flags |= cherry_flag;
c9e3a4e7
JK
1267 do {
1268 id->commit->object.flags |= cherry_flag;
1269 } while ((id = patch_id_iter_next(id, &ids)));
d7a17cad
JH
1270 }
1271
1272 free_patch_ids(&ids);
1273}
1274
7d004199
LT
1275/* How many extra uninteresting commits we want to see.. */
1276#define SLOP 5
1277
dddbad72 1278static int still_interesting(struct commit_list *src, timestamp_t date, int slop,
b6e8a3b5 1279 struct commit **interesting_cache)
3131b713 1280{
7d004199
LT
1281 /*
1282 * No source list at all? We're definitely done..
1283 */
1284 if (!src)
1285 return 0;
1286
1287 /*
1288 * Does the destination list contain entries with a date
1289 * before the source list? Definitely _not_ done.
1290 */
c19d1b4e 1291 if (date <= src->item->date)
7d004199
LT
1292 return SLOP;
1293
1294 /*
1295 * Does the source list still have interesting commits in
1296 * it? Definitely not done..
1297 */
b6e8a3b5 1298 if (!everybody_uninteresting(src, interesting_cache))
7d004199
LT
1299 return SLOP;
1300
1301 /* Ok, we're closing in.. */
1302 return slop-1;
3131b713
LT
1303}
1304
ebdc94f3
JH
1305/*
1306 * "rev-list --ancestry-path A..B" computes commits that are ancestors
1307 * of B but not ancestors of A but further limits the result to those
1308 * that are descendants of A. This takes the list of bottom commits and
1309 * the result of "A..B" without --ancestry-path, and limits the latter
1310 * further to the ones that can reach one of the commits in "bottom".
1311 */
1312static void limit_to_ancestry(struct commit_list *bottom, struct commit_list *list)
1313{
1314 struct commit_list *p;
1315 struct commit_list *rlist = NULL;
1316 int made_progress;
1317
1318 /*
1319 * Reverse the list so that it will be likely that we would
1320 * process parents before children.
1321 */
1322 for (p = list; p; p = p->next)
1323 commit_list_insert(p->item, &rlist);
1324
1325 for (p = bottom; p; p = p->next)
1326 p->item->object.flags |= TMP_MARK;
1327
1328 /*
1329 * Mark the ones that can reach bottom commits in "list",
1330 * in a bottom-up fashion.
1331 */
1332 do {
1333 made_progress = 0;
1334 for (p = rlist; p; p = p->next) {
1335 struct commit *c = p->item;
1336 struct commit_list *parents;
1337 if (c->object.flags & (TMP_MARK | UNINTERESTING))
1338 continue;
1339 for (parents = c->parents;
1340 parents;
1341 parents = parents->next) {
1342 if (!(parents->item->object.flags & TMP_MARK))
1343 continue;
1344 c->object.flags |= TMP_MARK;
1345 made_progress = 1;
1346 break;
1347 }
1348 }
1349 } while (made_progress);
1350
1351 /*
1352 * NEEDSWORK: decide if we want to remove parents that are
1353 * not marked with TMP_MARK from commit->parents for commits
1354 * in the resulting list. We may not want to do that, though.
1355 */
1356
1357 /*
1358 * The ones that are not marked with TMP_MARK are uninteresting
1359 */
1360 for (p = list; p; p = p->next) {
1361 struct commit *c = p->item;
1362 if (c->object.flags & TMP_MARK)
1363 continue;
1364 c->object.flags |= UNINTERESTING;
1365 }
1366
1367 /* We are done with the TMP_MARK */
1368 for (p = list; p; p = p->next)
1369 p->item->object.flags &= ~TMP_MARK;
1370 for (p = bottom; p; p = p->next)
1371 p->item->object.flags &= ~TMP_MARK;
1372 free_commit_list(rlist);
1373}
1374
1375/*
1376 * Before walking the history, keep the set of "negative" refs the
1377 * caller has asked to exclude.
1378 *
1379 * This is used to compute "rev-list --ancestry-path A..B", as we need
1380 * to filter the result of "A..B" further to the ones that can actually
1381 * reach A.
1382 */
7f34a46f 1383static struct commit_list *collect_bottom_commits(struct commit_list *list)
ebdc94f3 1384{
7f34a46f
KB
1385 struct commit_list *elem, *bottom = NULL;
1386 for (elem = list; elem; elem = elem->next)
1387 if (elem->item->object.flags & BOTTOM)
1388 commit_list_insert(elem->item, &bottom);
ebdc94f3
JH
1389 return bottom;
1390}
1391
60adf7d7
MG
1392/* Assumes either left_only or right_only is set */
1393static void limit_left_right(struct commit_list *list, struct rev_info *revs)
1394{
1395 struct commit_list *p;
1396
1397 for (p = list; p; p = p->next) {
1398 struct commit *commit = p->item;
1399
1400 if (revs->right_only) {
1401 if (commit->object.flags & SYMMETRIC_LEFT)
1402 commit->object.flags |= SHOWN;
1403 } else /* revs->left_only is set */
1404 if (!(commit->object.flags & SYMMETRIC_LEFT))
1405 commit->object.flags |= SHOWN;
1406 }
1407}
1408
cc0e6c5a 1409static int limit_list(struct rev_info *revs)
a4a88b2b 1410{
7d004199 1411 int slop = SLOP;
dddbad72 1412 timestamp_t date = TIME_MAX;
db69bf60 1413 struct commit_list *original_list = revs->commits;
a4a88b2b
LT
1414 struct commit_list *newlist = NULL;
1415 struct commit_list **p = &newlist;
ebdc94f3 1416 struct commit_list *bottom = NULL;
b6e8a3b5 1417 struct commit *interesting_cache = NULL;
ebdc94f3
JH
1418
1419 if (revs->ancestry_path) {
db69bf60 1420 bottom = collect_bottom_commits(original_list);
ebdc94f3 1421 if (!bottom)
97b03c35 1422 die("--ancestry-path given but there are no bottom commits");
ebdc94f3 1423 }
a4a88b2b 1424
db69bf60
AH
1425 while (original_list) {
1426 struct commit *commit = pop_commit(&original_list);
a4a88b2b 1427 struct object *obj = &commit->object;
cdcefbc9 1428 show_early_output_fn_t show;
a4a88b2b 1429
b6e8a3b5
JK
1430 if (commit == interesting_cache)
1431 interesting_cache = NULL;
1432
a4a88b2b
LT
1433 if (revs->max_age != -1 && (commit->date < revs->max_age))
1434 obj->flags |= UNINTERESTING;
db69bf60 1435 if (process_parents(revs, commit, &original_list, NULL) < 0)
cc0e6c5a 1436 return -1;
a4a88b2b 1437 if (obj->flags & UNINTERESTING) {
9d505b7b 1438 mark_parents_uninteresting(revs, commit);
db69bf60 1439 slop = still_interesting(original_list, date, slop, &interesting_cache);
7d004199 1440 if (slop)
3131b713 1441 continue;
7d004199 1442 break;
a4a88b2b 1443 }
01faa91c
RS
1444 if (revs->min_age != -1 && (commit->date > revs->min_age) &&
1445 !revs->line_level_traverse)
a4a88b2b 1446 continue;
7d004199 1447 date = commit->date;
a4a88b2b 1448 p = &commit_list_insert(commit, p)->next;
cdcefbc9
LT
1449
1450 show = show_early_output;
1451 if (!show)
1452 continue;
1453
1454 show(revs, newlist);
1455 show_early_output = NULL;
a4a88b2b 1456 }
adbbb31e 1457 if (revs->cherry_pick || revs->cherry_mark)
36d56de6 1458 cherry_pick_list(newlist, revs);
d7a17cad 1459
60adf7d7
MG
1460 if (revs->left_only || revs->right_only)
1461 limit_left_right(newlist, revs);
1462
bf20fe4c 1463 if (bottom)
ebdc94f3 1464 limit_to_ancestry(bottom, newlist);
bf20fe4c 1465 free_commit_list(bottom);
ebdc94f3 1466
4d826608
KB
1467 /*
1468 * Check if any commits have become TREESAME by some of their parents
1469 * becoming UNINTERESTING.
1470 */
db69bf60
AH
1471 if (limiting_can_increase_treesame(revs)) {
1472 struct commit_list *list = NULL;
4d826608
KB
1473 for (list = newlist; list; list = list->next) {
1474 struct commit *c = list->item;
1475 if (c->object.flags & (UNINTERESTING | TREESAME))
1476 continue;
1477 update_treesame(revs, c);
1478 }
db69bf60 1479 }
4d826608 1480
db69bf60 1481 free_commit_list(original_list);
a4a88b2b 1482 revs->commits = newlist;
cc0e6c5a 1483 return 0;
a4a88b2b
LT
1484}
1485
df835d3a
MH
1486/*
1487 * Add an entry to refs->cmdline with the specified information.
1488 * *name is copied.
1489 */
281eee47
JH
1490static void add_rev_cmdline(struct rev_info *revs,
1491 struct object *item,
1492 const char *name,
1493 int whence,
1494 unsigned flags)
1495{
1496 struct rev_cmdline_info *info = &revs->cmdline;
071bcaab 1497 unsigned int nr = info->nr;
281eee47
JH
1498
1499 ALLOC_GROW(info->rev, nr + 1, info->alloc);
1500 info->rev[nr].item = item;
df835d3a 1501 info->rev[nr].name = xstrdup(name);
281eee47
JH
1502 info->rev[nr].whence = whence;
1503 info->rev[nr].flags = flags;
1504 info->nr++;
1505}
1506
a765499a
KB
1507static void add_rev_cmdline_list(struct rev_info *revs,
1508 struct commit_list *commit_list,
1509 int whence,
1510 unsigned flags)
1511{
1512 while (commit_list) {
1513 struct object *object = &commit_list->item->object;
f2fd0760 1514 add_rev_cmdline(revs, object, oid_to_hex(&object->oid),
a765499a
KB
1515 whence, flags);
1516 commit_list = commit_list->next;
1517 }
1518}
1519
63049292
JH
1520struct all_refs_cb {
1521 int all_flags;
71b03b42 1522 int warned_bad_reflog;
63049292
JH
1523 struct rev_info *all_revs;
1524 const char *name_for_errormsg;
ab3e1f78 1525 struct worktree *wt;
63049292 1526};
ae563542 1527
ff32d342 1528int ref_excluded(struct string_list *ref_excludes, const char *path)
e7b432c5
JH
1529{
1530 struct string_list_item *item;
1531
ff32d342 1532 if (!ref_excludes)
e7b432c5 1533 return 0;
ff32d342 1534 for_each_string_list_item(item, ref_excludes) {
55d34269 1535 if (!wildmatch(item->string, path, 0))
e7b432c5
JH
1536 return 1;
1537 }
1538 return 0;
1539}
1540
a217dcbd
MH
1541static int handle_one_ref(const char *path, const struct object_id *oid,
1542 int flag, void *cb_data)
ae563542 1543{
63049292 1544 struct all_refs_cb *cb = cb_data;
e7b432c5
JH
1545 struct object *object;
1546
ff32d342 1547 if (ref_excluded(cb->all_revs->ref_excludes, path))
e7b432c5
JH
1548 return 0;
1549
654b9a90 1550 object = get_reference(cb->all_revs, path, oid, cb->all_flags);
281eee47 1551 add_rev_cmdline(cb->all_revs, object, path, REV_CMD_REF, cb->all_flags);
bf9c0cbd 1552 add_pending_object(cb->all_revs, object, path);
ae563542
LT
1553 return 0;
1554}
1555
d08bae7e
IL
1556static void init_all_refs_cb(struct all_refs_cb *cb, struct rev_info *revs,
1557 unsigned flags)
1558{
1559 cb->all_revs = revs;
1560 cb->all_flags = flags;
7ba82629 1561 revs->rev_input_given = 1;
ab3e1f78 1562 cb->wt = NULL;
d08bae7e
IL
1563}
1564
ff32d342 1565void clear_ref_exclusion(struct string_list **ref_excludes_p)
e7b432c5 1566{
ff32d342
JH
1567 if (*ref_excludes_p) {
1568 string_list_clear(*ref_excludes_p, 0);
1569 free(*ref_excludes_p);
e7b432c5 1570 }
ff32d342 1571 *ref_excludes_p = NULL;
e7b432c5
JH
1572}
1573
ff32d342 1574void add_ref_exclusion(struct string_list **ref_excludes_p, const char *exclude)
e7b432c5 1575{
ff32d342 1576 if (!*ref_excludes_p) {
ca56dadb 1577 CALLOC_ARRAY(*ref_excludes_p, 1);
ff32d342 1578 (*ref_excludes_p)->strdup_strings = 1;
e7b432c5 1579 }
ff32d342 1580 string_list_append(*ref_excludes_p, exclude);
e7b432c5
JH
1581}
1582
073cf63c
NTND
1583static void handle_refs(struct ref_store *refs,
1584 struct rev_info *revs, unsigned flags,
1585 int (*for_each)(struct ref_store *, each_ref_fn, void *))
ae563542 1586{
63049292 1587 struct all_refs_cb cb;
073cf63c
NTND
1588
1589 if (!refs) {
1590 /* this could happen with uninitialized submodules */
1591 return;
1592 }
1593
d08bae7e 1594 init_all_refs_cb(&cb, revs, flags);
073cf63c 1595 for_each(refs, handle_one_ref, &cb);
63049292
JH
1596}
1597
9461d272 1598static void handle_one_reflog_commit(struct object_id *oid, void *cb_data)
63049292
JH
1599{
1600 struct all_refs_cb *cb = cb_data;
9461d272 1601 if (!is_null_oid(oid)) {
b3c7eef9 1602 struct object *o = parse_object(cb->all_revs->repo, oid);
71b03b42
SP
1603 if (o) {
1604 o->flags |= cb->all_flags;
281eee47 1605 /* ??? CMDLINEFLAGS ??? */
71b03b42
SP
1606 add_pending_object(cb->all_revs, o, "");
1607 }
1608 else if (!cb->warned_bad_reflog) {
46efd2d9 1609 warning("reflog of '%s' references pruned commits",
71b03b42
SP
1610 cb->name_for_errormsg);
1611 cb->warned_bad_reflog = 1;
1612 }
63049292 1613 }
71b03b42
SP
1614}
1615
9461d272 1616static int handle_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
dddbad72 1617 const char *email, timestamp_t timestamp, int tz,
883d60fa 1618 const char *message, void *cb_data)
71b03b42 1619{
9461d272 1620 handle_one_reflog_commit(ooid, cb_data);
1621 handle_one_reflog_commit(noid, cb_data);
63049292
JH
1622 return 0;
1623}
1624
ab3e1f78 1625static int handle_one_reflog(const char *refname_in_wt,
061e420a 1626 const struct object_id *oid,
a89caf4b 1627 int flag, void *cb_data)
63049292
JH
1628{
1629 struct all_refs_cb *cb = cb_data;
ab3e1f78
NTND
1630 struct strbuf refname = STRBUF_INIT;
1631
71b03b42 1632 cb->warned_bad_reflog = 0;
ab3e1f78
NTND
1633 strbuf_worktree_ref(cb->wt, &refname, refname_in_wt);
1634 cb->name_for_errormsg = refname.buf;
1635 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1636 refname.buf,
acd9544a 1637 handle_one_reflog_ent, cb_data);
ab3e1f78 1638 strbuf_release(&refname);
63049292
JH
1639 return 0;
1640}
1641
acd9544a
NTND
1642static void add_other_reflogs_to_pending(struct all_refs_cb *cb)
1643{
1644 struct worktree **worktrees, **p;
1645
03f2465b 1646 worktrees = get_worktrees();
acd9544a
NTND
1647 for (p = worktrees; *p; p++) {
1648 struct worktree *wt = *p;
1649
1650 if (wt->is_current)
1651 continue;
1652
ab3e1f78
NTND
1653 cb->wt = wt;
1654 refs_for_each_reflog(get_worktree_ref_store(wt),
acd9544a
NTND
1655 handle_one_reflog,
1656 cb);
1657 }
1658 free_worktrees(worktrees);
1659}
1660
718ccc97 1661void add_reflogs_to_pending(struct rev_info *revs, unsigned flags)
63049292
JH
1662{
1663 struct all_refs_cb cb;
2b2a5be3 1664
63049292
JH
1665 cb.all_revs = revs;
1666 cb.all_flags = flags;
ab3e1f78 1667 cb.wt = NULL;
a89caf4b 1668 for_each_reflog(handle_one_reflog, &cb);
acd9544a
NTND
1669
1670 if (!revs->single_worktree)
1671 add_other_reflogs_to_pending(&cb);
ae563542
LT
1672}
1673
4fe10219 1674static void add_cache_tree(struct cache_tree *it, struct rev_info *revs,
b4cfcde4 1675 struct strbuf *path, unsigned int flags)
4fe10219
JK
1676{
1677 size_t baselen = path->len;
1678 int i;
1679
1680 if (it->entry_count >= 0) {
b3c7eef9 1681 struct tree *tree = lookup_tree(revs->repo, &it->oid);
b4cfcde4 1682 tree->object.flags |= flags;
4fe10219
JK
1683 add_pending_object_with_path(revs, &tree->object, "",
1684 040000, path->buf);
1685 }
1686
1687 for (i = 0; i < it->subtree_nr; i++) {
1688 struct cache_tree_sub *sub = it->down[i];
1689 strbuf_addf(path, "%s%s", baselen ? "/" : "", sub->name);
b4cfcde4 1690 add_cache_tree(sub->cache_tree, revs, path, flags);
4fe10219
JK
1691 strbuf_setlen(path, baselen);
1692 }
1693
1694}
1695
6c3d8181 1696static void do_add_index_objects_to_pending(struct rev_info *revs,
b4cfcde4
JK
1697 struct index_state *istate,
1698 unsigned int flags)
4fe10219
JK
1699{
1700 int i;
1701
f5fed74f
DS
1702 /* TODO: audit for interaction with sparse-index. */
1703 ensure_full_index(istate);
6c3d8181
NTND
1704 for (i = 0; i < istate->cache_nr; i++) {
1705 struct cache_entry *ce = istate->cache[i];
4fe10219
JK
1706 struct blob *blob;
1707
1708 if (S_ISGITLINK(ce->ce_mode))
1709 continue;
1710
b3c7eef9 1711 blob = lookup_blob(revs->repo, &ce->oid);
4fe10219
JK
1712 if (!blob)
1713 die("unable to add index blob to traversal");
b4cfcde4 1714 blob->object.flags |= flags;
4fe10219
JK
1715 add_pending_object_with_path(revs, &blob->object, "",
1716 ce->ce_mode, ce->name);
1717 }
1718
6c3d8181 1719 if (istate->cache_tree) {
4fe10219 1720 struct strbuf path = STRBUF_INIT;
b4cfcde4 1721 add_cache_tree(istate->cache_tree, revs, &path, flags);
4fe10219
JK
1722 strbuf_release(&path);
1723 }
1724}
1725
6c3d8181
NTND
1726void add_index_objects_to_pending(struct rev_info *revs, unsigned int flags)
1727{
be489d02
NTND
1728 struct worktree **worktrees, **p;
1729
e1ff0a32 1730 repo_read_index(revs->repo);
b4cfcde4 1731 do_add_index_objects_to_pending(revs, revs->repo->index, flags);
be489d02
NTND
1732
1733 if (revs->single_worktree)
1734 return;
1735
03f2465b 1736 worktrees = get_worktrees();
be489d02
NTND
1737 for (p = worktrees; *p; p++) {
1738 struct worktree *wt = *p;
1739 struct index_state istate = { NULL };
1740
1741 if (wt->is_current)
1742 continue; /* current index already taken care of */
1743
1744 if (read_index_from(&istate,
a125a223
TG
1745 worktree_git_path(wt, "index"),
1746 get_worktree_git_dir(wt)) > 0)
b4cfcde4 1747 do_add_index_objects_to_pending(revs, &istate, flags);
be489d02
NTND
1748 discard_index(&istate);
1749 }
1750 free_worktrees(worktrees);
6c3d8181
NTND
1751}
1752
39b44ba7
JK
1753struct add_alternate_refs_data {
1754 struct rev_info *revs;
1755 unsigned int flags;
1756};
1757
1758static void add_one_alternate_ref(const struct object_id *oid,
1759 void *vdata)
1760{
1761 const char *name = ".alternate";
1762 struct add_alternate_refs_data *data = vdata;
1763 struct object *obj;
1764
1765 obj = get_reference(data->revs, name, oid, data->flags);
1766 add_rev_cmdline(data->revs, obj, name, REV_CMD_REV, data->flags);
1767 add_pending_object(data->revs, obj, name);
1768}
1769
1770static void add_alternate_refs_to_pending(struct rev_info *revs,
1771 unsigned int flags)
1772{
1773 struct add_alternate_refs_data data;
1774 data.revs = revs;
1775 data.flags = flags;
1776 for_each_alternate_ref(add_one_alternate_ref, &data);
1777}
1778
8779351d
VN
1779static int add_parents_only(struct rev_info *revs, const char *arg_, int flags,
1780 int exclude_parent)
ea4a19e1 1781{
654b9a90 1782 struct object_id oid;
ea4a19e1
JH
1783 struct object *it;
1784 struct commit *commit;
1785 struct commit_list *parents;
8779351d 1786 int parent_number;
281eee47 1787 const char *arg = arg_;
ea4a19e1
JH
1788
1789 if (*arg == '^') {
7f34a46f 1790 flags ^= UNINTERESTING | BOTTOM;
ea4a19e1
JH
1791 arg++;
1792 }
e82caf38 1793 if (get_oid_committish(arg, &oid))
ea4a19e1
JH
1794 return 0;
1795 while (1) {
654b9a90 1796 it = get_reference(revs, arg, &oid, 0);
cc243c3c
JH
1797 if (!it && revs->ignore_missing)
1798 return 0;
1974632c 1799 if (it->type != OBJ_TAG)
ea4a19e1 1800 break;
9684afd9
MK
1801 if (!((struct tag*)it)->tagged)
1802 return 0;
654b9a90 1803 oidcpy(&oid, &((struct tag*)it)->tagged->oid);
ea4a19e1 1804 }
1974632c 1805 if (it->type != OBJ_COMMIT)
ea4a19e1
JH
1806 return 0;
1807 commit = (struct commit *)it;
8779351d
VN
1808 if (exclude_parent &&
1809 exclude_parent > commit_list_count(commit->parents))
1810 return 0;
1811 for (parents = commit->parents, parent_number = 1;
1812 parents;
1813 parents = parents->next, parent_number++) {
1814 if (exclude_parent && parent_number != exclude_parent)
1815 continue;
1816
ea4a19e1
JH
1817 it = &parents->item->object;
1818 it->flags |= flags;
281eee47 1819 add_rev_cmdline(revs, it, arg_, REV_CMD_PARENTS_ONLY, flags);
ea4a19e1
JH
1820 add_pending_object(revs, it, arg);
1821 }
1822 return 1;
1823}
1824
2abf3503
NTND
1825void repo_init_revisions(struct repository *r,
1826 struct rev_info *revs,
1827 const char *prefix)
8efdc326
FK
1828{
1829 memset(revs, 0, sizeof(*revs));
8e8f9987 1830
2abf3503 1831 revs->repo = r;
6b9c58f4 1832 revs->abbrev = DEFAULT_ABBREV;
9202434c 1833 revs->simplify_history = 1;
67022e02 1834 revs->pruning.repo = r;
0d1e0e78
BW
1835 revs->pruning.flags.recursive = 1;
1836 revs->pruning.flags.quick = 1;
cd2bdc53
LT
1837 revs->pruning.add_remove = file_add_remove;
1838 revs->pruning.change = file_change;
a937b37e 1839 revs->pruning.change_fn_data = revs;
08f704f2 1840 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
8efdc326 1841 revs->dense = 1;
db6296a5 1842 revs->prefix = prefix;
8efdc326
FK
1843 revs->max_age = -1;
1844 revs->min_age = -1;
d5db6c9e 1845 revs->skip_count = -1;
8efdc326 1846 revs->max_count = -1;
ad5aeede 1847 revs->max_parents = -1;
0893eec8 1848 revs->expand_tabs_in_log = -1;
8efdc326 1849
cd2bdc53 1850 revs->commit_format = CMIT_FMT_DEFAULT;
fe37a9c5 1851 revs->expand_tabs_in_log_default = 8;
cd2bdc53 1852
9725c8dd 1853 grep_init(&revs->grep_filter, revs->repo);
0843acfd 1854 revs->grep_filter.status_only = 1;
0843acfd 1855
2abf3503 1856 repo_diff_setup(revs->repo, &revs->diffopt);
c0cb4a06 1857 if (prefix && !revs->diffopt.prefix) {
cd676a51
JH
1858 revs->diffopt.prefix = prefix;
1859 revs->diffopt.prefix_length = strlen(prefix);
1860 }
3a03cf6b 1861
e6e230ee 1862 init_display_notes(&revs->notes_opt);
8efdc326
FK
1863}
1864
0d2c9d67 1865static void add_pending_commit_list(struct rev_info *revs,
ec36c42a
NTND
1866 struct commit_list *commit_list,
1867 unsigned int flags)
0d2c9d67
RS
1868{
1869 while (commit_list) {
1870 struct object *object = &commit_list->item->object;
1871 object->flags |= flags;
f2fd0760 1872 add_pending_object(revs, object, oid_to_hex(&object->oid));
0d2c9d67
RS
1873 commit_list = commit_list->next;
1874 }
1875}
1876
ae3e5e1e
JH
1877static void prepare_show_merge(struct rev_info *revs)
1878{
1879 struct commit_list *bases;
1880 struct commit *head, *other;
68ab61dd 1881 struct object_id oid;
ae3e5e1e
JH
1882 const char **prune = NULL;
1883 int i, prune_num = 1; /* counting terminating NULL */
2abf3503 1884 struct index_state *istate = revs->repo->index;
ae3e5e1e 1885
68ab61dd 1886 if (get_oid("HEAD", &oid))
ae3e5e1e 1887 die("--merge without HEAD?");
bc83266a 1888 head = lookup_commit_or_die(&oid, "HEAD");
68ab61dd 1889 if (get_oid("MERGE_HEAD", &oid))
ae3e5e1e 1890 die("--merge without MERGE_HEAD?");
bc83266a 1891 other = lookup_commit_or_die(&oid, "MERGE_HEAD");
ae3e5e1e
JH
1892 add_pending_object(revs, &head->object, "HEAD");
1893 add_pending_object(revs, &other->object, "MERGE_HEAD");
2ce406cc 1894 bases = get_merge_bases(head, other);
7f34a46f
KB
1895 add_rev_cmdline_list(revs, bases, REV_CMD_MERGE_BASE, UNINTERESTING | BOTTOM);
1896 add_pending_commit_list(revs, bases, UNINTERESTING | BOTTOM);
e82447b1
JH
1897 free_commit_list(bases);
1898 head->object.flags |= SYMMETRIC_LEFT;
ae3e5e1e 1899
2abf3503 1900 if (!istate->cache_nr)
e1ff0a32 1901 repo_read_index(revs->repo);
2abf3503
NTND
1902 for (i = 0; i < istate->cache_nr; i++) {
1903 const struct cache_entry *ce = istate->cache[i];
ae3e5e1e
JH
1904 if (!ce_stage(ce))
1905 continue;
2abf3503 1906 if (ce_path_match(istate, ce, &revs->prune_data, NULL)) {
ae3e5e1e 1907 prune_num++;
2756ca43 1908 REALLOC_ARRAY(prune, prune_num);
ae3e5e1e
JH
1909 prune[prune_num-2] = ce->name;
1910 prune[prune_num-1] = NULL;
1911 }
2abf3503
NTND
1912 while ((i+1 < istate->cache_nr) &&
1913 ce_same_name(ce, istate->cache[i+1]))
ae3e5e1e
JH
1914 i++;
1915 }
ed6e8038 1916 clear_pathspec(&revs->prune_data);
4a2d5ae2 1917 parse_pathspec(&revs->prune_data, PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
c6f1b920 1918 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH, "", prune);
e82447b1 1919 revs->limited = 1;
ae3e5e1e
JH
1920}
1921
62faad5a
JK
1922static int dotdot_missing(const char *arg, char *dotdot,
1923 struct rev_info *revs, int symmetric)
1924{
1925 if (revs->ignore_missing)
1926 return 0;
1927 /* de-munge so we report the full argument */
1928 *dotdot = '.';
1929 die(symmetric
1930 ? "Invalid symmetric difference expression %s"
1931 : "Invalid revision range %s", arg);
1932}
1933
1934static int handle_dotdot_1(const char *arg, char *dotdot,
1935 struct rev_info *revs, int flags,
18f1ad76
JK
1936 int cant_be_filename,
1937 struct object_context *a_oc,
1938 struct object_context *b_oc)
62faad5a
JK
1939{
1940 const char *a_name, *b_name;
1941 struct object_id a_oid, b_oid;
1942 struct object *a_obj, *b_obj;
1943 unsigned int a_flags, b_flags;
1944 int symmetric = 0;
1945 unsigned int flags_exclude = flags ^ (UNINTERESTING | BOTTOM);
321c89bf 1946 unsigned int oc_flags = GET_OID_COMMITTISH | GET_OID_RECORD_PATH;
62faad5a
JK
1947
1948 a_name = arg;
1949 if (!*a_name)
1950 a_name = "HEAD";
1951
1952 b_name = dotdot + 2;
1953 if (*b_name == '.') {
1954 symmetric = 1;
1955 b_name++;
1956 }
1957 if (!*b_name)
1958 b_name = "HEAD";
1959
3a7a698e
NTND
1960 if (get_oid_with_context(revs->repo, a_name, oc_flags, &a_oid, a_oc) ||
1961 get_oid_with_context(revs->repo, b_name, oc_flags, &b_oid, b_oc))
62faad5a
JK
1962 return -1;
1963
1964 if (!cant_be_filename) {
1965 *dotdot = '.';
1966 verify_non_filename(revs->prefix, arg);
1967 *dotdot = '\0';
1968 }
1969
b3c7eef9
NTND
1970 a_obj = parse_object(revs->repo, &a_oid);
1971 b_obj = parse_object(revs->repo, &b_oid);
62faad5a
JK
1972 if (!a_obj || !b_obj)
1973 return dotdot_missing(arg, dotdot, revs, symmetric);
1974
1975 if (!symmetric) {
1976 /* just A..B */
1977 b_flags = flags;
1978 a_flags = flags_exclude;
1979 } else {
1980 /* A...B -- find merge bases between the two */
1981 struct commit *a, *b;
1982 struct commit_list *exclude;
1983
b3c7eef9
NTND
1984 a = lookup_commit_reference(revs->repo, &a_obj->oid);
1985 b = lookup_commit_reference(revs->repo, &b_obj->oid);
62faad5a
JK
1986 if (!a || !b)
1987 return dotdot_missing(arg, dotdot, revs, symmetric);
1988
1989 exclude = get_merge_bases(a, b);
1990 add_rev_cmdline_list(revs, exclude, REV_CMD_MERGE_BASE,
1991 flags_exclude);
1992 add_pending_commit_list(revs, exclude, flags_exclude);
1993 free_commit_list(exclude);
1994
1995 b_flags = flags;
1996 a_flags = flags | SYMMETRIC_LEFT;
1997 }
1998
1999 a_obj->flags |= a_flags;
2000 b_obj->flags |= b_flags;
2001 add_rev_cmdline(revs, a_obj, a_name, REV_CMD_LEFT, a_flags);
2002 add_rev_cmdline(revs, b_obj, b_name, REV_CMD_RIGHT, b_flags);
18f1ad76
JK
2003 add_pending_object_with_path(revs, a_obj, a_name, a_oc->mode, a_oc->path);
2004 add_pending_object_with_path(revs, b_obj, b_name, b_oc->mode, b_oc->path);
62faad5a
JK
2005 return 0;
2006}
2007
2008static int handle_dotdot(const char *arg,
2009 struct rev_info *revs, int flags,
2010 int cant_be_filename)
2011{
18f1ad76 2012 struct object_context a_oc, b_oc;
62faad5a
JK
2013 char *dotdot = strstr(arg, "..");
2014 int ret;
2015
2016 if (!dotdot)
2017 return -1;
2018
18f1ad76
JK
2019 memset(&a_oc, 0, sizeof(a_oc));
2020 memset(&b_oc, 0, sizeof(b_oc));
2021
62faad5a 2022 *dotdot = '\0';
18f1ad76
JK
2023 ret = handle_dotdot_1(arg, dotdot, revs, flags, cant_be_filename,
2024 &a_oc, &b_oc);
62faad5a
JK
2025 *dotdot = '.';
2026
18f1ad76
JK
2027 free(a_oc.path);
2028 free(b_oc.path);
2029
62faad5a
JK
2030 return ret;
2031}
2032
04a0e985 2033static int handle_revision_arg_1(const char *arg_, struct rev_info *revs, int flags, unsigned revarg_opt)
5d6f0935 2034{
249c8f4a 2035 struct object_context oc;
f632dedd 2036 char *mark;
5d6f0935 2037 struct object *object;
654b9a90 2038 struct object_id oid;
5d6f0935 2039 int local_flags;
281eee47 2040 const char *arg = arg_;
8e676e8b 2041 int cant_be_filename = revarg_opt & REVARG_CANNOT_BE_FILENAME;
321c89bf 2042 unsigned get_sha1_flags = GET_OID_RECORD_PATH;
5d6f0935 2043
7f34a46f
KB
2044 flags = flags & UNINTERESTING ? flags | BOTTOM : flags & ~BOTTOM;
2045
d89797fe
JK
2046 if (!cant_be_filename && !strcmp(arg, "..")) {
2047 /*
2048 * Just ".."? That is not a range but the
2049 * pathspec for the parent directory.
2050 */
2051 return -1;
5d6f0935 2052 }
8779351d 2053
62faad5a
JK
2054 if (!handle_dotdot(arg, revs, flags, revarg_opt))
2055 return 0;
8779351d 2056
f632dedd
JK
2057 mark = strstr(arg, "^@");
2058 if (mark && !mark[2]) {
2059 *mark = 0;
8779351d 2060 if (add_parents_only(revs, arg, flags, 0))
5d6f0935 2061 return 0;
f632dedd 2062 *mark = '^';
5d6f0935 2063 }
f632dedd
JK
2064 mark = strstr(arg, "^!");
2065 if (mark && !mark[2]) {
2066 *mark = 0;
8779351d 2067 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), 0))
f632dedd 2068 *mark = '^';
8779351d 2069 }
f632dedd
JK
2070 mark = strstr(arg, "^-");
2071 if (mark) {
8779351d
VN
2072 int exclude_parent = 1;
2073
f632dedd 2074 if (mark[2]) {
8779351d 2075 char *end;
f632dedd 2076 exclude_parent = strtoul(mark + 2, &end, 10);
8779351d
VN
2077 if (*end != '\0' || !exclude_parent)
2078 return -1;
2079 }
2080
f632dedd 2081 *mark = 0;
8779351d 2082 if (!add_parents_only(revs, arg, flags ^ (UNINTERESTING | BOTTOM), exclude_parent))
f632dedd 2083 *mark = '^';
62476c8e
JH
2084 }
2085
5d6f0935
JH
2086 local_flags = 0;
2087 if (*arg == '^') {
7f34a46f 2088 local_flags = UNINTERESTING | BOTTOM;
5d6f0935
JH
2089 arg++;
2090 }
d5f6b1d7
JH
2091
2092 if (revarg_opt & REVARG_COMMITTISH)
321c89bf 2093 get_sha1_flags |= GET_OID_COMMITTISH;
d5f6b1d7 2094
3a7a698e 2095 if (get_oid_with_context(revs->repo, arg, get_sha1_flags, &oid, &oc))
cc243c3c 2096 return revs->ignore_missing ? 0 : -1;
5d6f0935
JH
2097 if (!cant_be_filename)
2098 verify_non_filename(revs->prefix, arg);
654b9a90 2099 object = get_reference(revs, arg, &oid, flags ^ local_flags);
4cf67869
MD
2100 if (!object)
2101 return revs->ignore_missing ? 0 : -1;
281eee47 2102 add_rev_cmdline(revs, object, arg_, REV_CMD_REV, flags ^ local_flags);
18f1ad76
JK
2103 add_pending_object_with_path(revs, object, arg, oc.mode, oc.path);
2104 free(oc.path);
5d6f0935
JH
2105 return 0;
2106}
2107
04a0e985
JK
2108int handle_revision_arg(const char *arg, struct rev_info *revs, int flags, unsigned revarg_opt)
2109{
2110 int ret = handle_revision_arg_1(arg, revs, flags, revarg_opt);
2111 if (!ret)
2112 revs->rev_input_given = 1;
2113 return ret;
2114}
2115
91633995 2116static void read_pathspec_from_stdin(struct strbuf *sb,
c972bf4c 2117 struct strvec *prune)
4da5af31 2118{
7fa3c2ad 2119 while (strbuf_getline(sb, stdin) != EOF)
c972bf4c 2120 strvec_push(prune, sb->buf);
60da8b15
JH
2121}
2122
4da5af31 2123static void read_revisions_from_stdin(struct rev_info *revs,
c972bf4c 2124 struct strvec *prune)
1fc561d1 2125{
63d564b3 2126 struct strbuf sb;
60da8b15 2127 int seen_dashdash = 0;
4c30d504
JK
2128 int save_warning;
2129
2130 save_warning = warn_on_object_refname_ambiguity;
2131 warn_on_object_refname_ambiguity = 0;
1fc561d1 2132
63d564b3 2133 strbuf_init(&sb, 1000);
6e8d46f9 2134 while (strbuf_getline(&sb, stdin) != EOF) {
63d564b3 2135 int len = sb.len;
1fc561d1
AB
2136 if (!len)
2137 break;
60da8b15
JH
2138 if (sb.buf[0] == '-') {
2139 if (len == 2 && sb.buf[1] == '-') {
2140 seen_dashdash = 1;
2141 break;
2142 }
1fc561d1 2143 die("options not supported in --stdin mode");
60da8b15 2144 }
31faeb20 2145 if (handle_revision_arg(sb.buf, revs, 0,
70d26c6e 2146 REVARG_CANNOT_BE_FILENAME))
63d564b3 2147 die("bad revision '%s'", sb.buf);
1fc561d1 2148 }
60da8b15 2149 if (seen_dashdash)
91633995 2150 read_pathspec_from_stdin(&sb, prune);
4c30d504 2151
63d564b3 2152 strbuf_release(&sb);
4c30d504 2153 warn_on_object_refname_ambiguity = save_warning;
1fc561d1
AB
2154}
2155
2d10c555 2156static void add_grep(struct rev_info *revs, const char *ptn, enum grep_pat_token what)
bd95fcd3 2157{
0843acfd 2158 append_grep_pattern(&revs->grep_filter, ptn, "command line", 0, what);
2d10c555
JH
2159}
2160
a4d7d2c6 2161static void add_header_grep(struct rev_info *revs, enum grep_header_field field, const char *pattern)
2d10c555 2162{
a4d7d2c6 2163 append_header_grep_pattern(&revs->grep_filter, field, pattern);
bd95fcd3
JH
2164}
2165
2166static void add_message_grep(struct rev_info *revs, const char *pattern)
2167{
2d10c555 2168 add_grep(revs, pattern, GREP_PATTERN_BODY);
bd95fcd3
JH
2169}
2170
6b61ec05 2171static int handle_revision_opt(struct rev_info *revs, int argc, const char **argv,
bbcde41a
MD
2172 int *unkc, const char **unkv,
2173 const struct setup_revision_opt* opt)
02e54220
PH
2174{
2175 const char *arg = argv[0];
7d7b86f7
MM
2176 const char *optarg;
2177 int argcount;
fd521245 2178 const unsigned hexsz = the_hash_algo->hexsz;
02e54220
PH
2179
2180 /* pseudo revision arguments */
2181 if (!strcmp(arg, "--all") || !strcmp(arg, "--branches") ||
2182 !strcmp(arg, "--tags") || !strcmp(arg, "--remotes") ||
2183 !strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
ad3f9a71 2184 !strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
59556548 2185 !strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
4fe10219 2186 !strcmp(arg, "--indexed-objects") ||
39b44ba7 2187 !strcmp(arg, "--alternate-refs") ||
07768e03 2188 starts_with(arg, "--exclude=") ||
59556548
CC
2189 starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
2190 starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
02e54220
PH
2191 {
2192 unkv[(*unkc)++] = arg;
0fe8c138 2193 return 1;
02e54220
PH
2194 }
2195
7d7b86f7
MM
2196 if ((argcount = parse_long_opt("max-count", argv, &optarg))) {
2197 revs->max_count = atoi(optarg);
5853caec 2198 revs->no_walk = 0;
7d7b86f7
MM
2199 return argcount;
2200 } else if ((argcount = parse_long_opt("skip", argv, &optarg))) {
2201 revs->skip_count = atoi(optarg);
2202 return argcount;
02e54220 2203 } else if ((*arg == '-') && isdigit(arg[1])) {
e3fa568c
JH
2204 /* accept -<digit>, like traditional "head" */
2205 if (strtol_i(arg + 1, 10, &revs->max_count) < 0 ||
2206 revs->max_count < 0)
2207 die("'%s': not a non-negative integer", arg + 1);
5853caec 2208 revs->no_walk = 0;
02e54220
PH
2209 } else if (!strcmp(arg, "-n")) {
2210 if (argc <= 1)
2211 return error("-n requires an argument");
2212 revs->max_count = atoi(argv[1]);
5853caec 2213 revs->no_walk = 0;
02e54220 2214 return 2;
479b3d97
SG
2215 } else if (skip_prefix(arg, "-n", &optarg)) {
2216 revs->max_count = atoi(optarg);
5853caec 2217 revs->no_walk = 0;
7d7b86f7
MM
2218 } else if ((argcount = parse_long_opt("max-age", argv, &optarg))) {
2219 revs->max_age = atoi(optarg);
2220 return argcount;
2221 } else if ((argcount = parse_long_opt("since", argv, &optarg))) {
2222 revs->max_age = approxidate(optarg);
2223 return argcount;
2224 } else if ((argcount = parse_long_opt("after", argv, &optarg))) {
2225 revs->max_age = approxidate(optarg);
2226 return argcount;
2227 } else if ((argcount = parse_long_opt("min-age", argv, &optarg))) {
2228 revs->min_age = atoi(optarg);
2229 return argcount;
2230 } else if ((argcount = parse_long_opt("before", argv, &optarg))) {
2231 revs->min_age = approxidate(optarg);
2232 return argcount;
2233 } else if ((argcount = parse_long_opt("until", argv, &optarg))) {
2234 revs->min_age = approxidate(optarg);
2235 return argcount;
02e54220
PH
2236 } else if (!strcmp(arg, "--first-parent")) {
2237 revs->first_parent_only = 1;
9d505b7b
JZ
2238 } else if (!strcmp(arg, "--exclude-first-parent-only")) {
2239 revs->exclude_first_parent_only = 1;
ebdc94f3
JH
2240 } else if (!strcmp(arg, "--ancestry-path")) {
2241 revs->ancestry_path = 1;
cb7529e1 2242 revs->simplify_history = 0;
ebdc94f3 2243 revs->limited = 1;
02e54220
PH
2244 } else if (!strcmp(arg, "-g") || !strcmp(arg, "--walk-reflogs")) {
2245 init_reflog_walk(&revs->reflog_info);
2246 } else if (!strcmp(arg, "--default")) {
2247 if (argc <= 1)
2248 return error("bad --default argument");
2249 revs->def = argv[1];
2250 return 2;
2251 } else if (!strcmp(arg, "--merge")) {
2252 revs->show_merge = 1;
2253 } else if (!strcmp(arg, "--topo-order")) {
08f704f2 2254 revs->sort_order = REV_SORT_IN_GRAPH_ORDER;
02e54220 2255 revs->topo_order = 1;
6546b593
JH
2256 } else if (!strcmp(arg, "--simplify-merges")) {
2257 revs->simplify_merges = 1;
a52f0071 2258 revs->topo_order = 1;
6546b593
JH
2259 revs->rewrite_parents = 1;
2260 revs->simplify_history = 0;
2261 revs->limited = 1;
78892e32
LT
2262 } else if (!strcmp(arg, "--simplify-by-decoration")) {
2263 revs->simplify_merges = 1;
a52f0071 2264 revs->topo_order = 1;
78892e32
LT
2265 revs->rewrite_parents = 1;
2266 revs->simplify_history = 0;
2267 revs->simplify_by_decoration = 1;
2268 revs->limited = 1;
2269 revs->prune = 1;
02e54220 2270 } else if (!strcmp(arg, "--date-order")) {
08f704f2 2271 revs->sort_order = REV_SORT_BY_COMMIT_DATE;
02e54220 2272 revs->topo_order = 1;
81c6b38b
JH
2273 } else if (!strcmp(arg, "--author-date-order")) {
2274 revs->sort_order = REV_SORT_BY_AUTHOR_DATE;
02e54220 2275 revs->topo_order = 1;
dffc651e
SG
2276 } else if (!strcmp(arg, "--early-output")) {
2277 revs->early_output = 100;
2278 revs->topo_order = 1;
2279 } else if (skip_prefix(arg, "--early-output=", &optarg)) {
2280 if (strtoul_ui(optarg, 10, &revs->early_output) < 0)
2281 die("'%s': not a non-negative integer", optarg);
2282 revs->topo_order = 1;
02e54220
PH
2283 } else if (!strcmp(arg, "--parents")) {
2284 revs->rewrite_parents = 1;
2285 revs->print_parents = 1;
2286 } else if (!strcmp(arg, "--dense")) {
2287 revs->dense = 1;
2288 } else if (!strcmp(arg, "--sparse")) {
2289 revs->dense = 0;
ce5b6f9b
SB
2290 } else if (!strcmp(arg, "--in-commit-order")) {
2291 revs->tree_blobs_in_commit_order = 1;
02e54220
PH
2292 } else if (!strcmp(arg, "--remove-empty")) {
2293 revs->remove_empty_trees = 1;
b8e8db28 2294 } else if (!strcmp(arg, "--merges")) {
ad5aeede 2295 revs->min_parents = 2;
02e54220 2296 } else if (!strcmp(arg, "--no-merges")) {
ad5aeede 2297 revs->max_parents = 1;
479b3d97
SG
2298 } else if (skip_prefix(arg, "--min-parents=", &optarg)) {
2299 revs->min_parents = atoi(optarg);
9ada7aee 2300 } else if (!strcmp(arg, "--no-min-parents")) {
ad5aeede 2301 revs->min_parents = 0;
479b3d97
SG
2302 } else if (skip_prefix(arg, "--max-parents=", &optarg)) {
2303 revs->max_parents = atoi(optarg);
9ada7aee 2304 } else if (!strcmp(arg, "--no-max-parents")) {
ad5aeede 2305 revs->max_parents = -1;
02e54220
PH
2306 } else if (!strcmp(arg, "--boundary")) {
2307 revs->boundary = 1;
2308 } else if (!strcmp(arg, "--left-right")) {
2309 revs->left_right = 1;
60adf7d7 2310 } else if (!strcmp(arg, "--left-only")) {
24852d91 2311 if (revs->right_only)
94f605ec
MG
2312 die("--left-only is incompatible with --right-only"
2313 " or --cherry");
60adf7d7
MG
2314 revs->left_only = 1;
2315 } else if (!strcmp(arg, "--right-only")) {
24852d91 2316 if (revs->left_only)
12909b6b 2317 die(_("options '%s' and '%s' cannot be used together"), "--right-only", "--left-only");
60adf7d7 2318 revs->right_only = 1;
94f605ec
MG
2319 } else if (!strcmp(arg, "--cherry")) {
2320 if (revs->left_only)
12909b6b 2321 die(_("options '%s' and '%s' cannot be used together"), "--cherry", "--left-only");
94f605ec
MG
2322 revs->cherry_mark = 1;
2323 revs->right_only = 1;
ad5aeede 2324 revs->max_parents = 1;
94f605ec 2325 revs->limited = 1;
f69c5018
TR
2326 } else if (!strcmp(arg, "--count")) {
2327 revs->count = 1;
adbbb31e
MG
2328 } else if (!strcmp(arg, "--cherry-mark")) {
2329 if (revs->cherry_pick)
12909b6b 2330 die(_("options '%s' and '%s' cannot be used together"), "--cherry-mark", "--cherry-pick");
adbbb31e
MG
2331 revs->cherry_mark = 1;
2332 revs->limited = 1; /* needs limit_list() */
02e54220 2333 } else if (!strcmp(arg, "--cherry-pick")) {
adbbb31e 2334 if (revs->cherry_mark)
12909b6b 2335 die(_("options '%s' and '%s' cannot be used together"), "--cherry-pick", "--cherry-mark");
02e54220
PH
2336 revs->cherry_pick = 1;
2337 revs->limited = 1;
2338 } else if (!strcmp(arg, "--objects")) {
2339 revs->tag_objects = 1;
2340 revs->tree_objects = 1;
2341 revs->blob_objects = 1;
2342 } else if (!strcmp(arg, "--objects-edge")) {
2343 revs->tag_objects = 1;
2344 revs->tree_objects = 1;
2345 revs->blob_objects = 1;
2346 revs->edge_hint = 1;
1684c1b2 2347 } else if (!strcmp(arg, "--objects-edge-aggressive")) {
2348 revs->tag_objects = 1;
2349 revs->tree_objects = 1;
2350 revs->blob_objects = 1;
2351 revs->edge_hint = 1;
2352 revs->edge_hint_aggressive = 1;
5a48d240
JH
2353 } else if (!strcmp(arg, "--verify-objects")) {
2354 revs->tag_objects = 1;
2355 revs->tree_objects = 1;
2356 revs->blob_objects = 1;
2357 revs->verify_objects = 1;
02e54220
PH
2358 } else if (!strcmp(arg, "--unpacked")) {
2359 revs->unpacked = 1;
59556548 2360 } else if (starts_with(arg, "--unpacked=")) {
f649aaaf 2361 die(_("--unpacked=<packfile> no longer supported"));
c9fff000
TB
2362 } else if (!strcmp(arg, "--no-kept-objects")) {
2363 revs->no_kept_objects = 1;
2364 revs->keep_pack_cache_flags |= IN_CORE_KEEP_PACKS;
2365 revs->keep_pack_cache_flags |= ON_DISK_KEEP_PACKS;
2366 } else if (skip_prefix(arg, "--no-kept-objects=", &optarg)) {
2367 revs->no_kept_objects = 1;
2368 if (!strcmp(optarg, "in-core"))
2369 revs->keep_pack_cache_flags |= IN_CORE_KEEP_PACKS;
2370 if (!strcmp(optarg, "on-disk"))
2371 revs->keep_pack_cache_flags |= ON_DISK_KEEP_PACKS;
02e54220
PH
2372 } else if (!strcmp(arg, "-r")) {
2373 revs->diff = 1;
0d1e0e78 2374 revs->diffopt.flags.recursive = 1;
02e54220
PH
2375 } else if (!strcmp(arg, "-t")) {
2376 revs->diff = 1;
0d1e0e78
BW
2377 revs->diffopt.flags.recursive = 1;
2378 revs->diffopt.flags.tree_in_recursive = 1;
18f09473 2379 } else if ((argcount = diff_merges_parse_opts(revs, argv))) {
6501580f 2380 return argcount;
02e54220
PH
2381 } else if (!strcmp(arg, "-v")) {
2382 revs->verbose_header = 1;
2383 } else if (!strcmp(arg, "--pretty")) {
2384 revs->verbose_header = 1;
66b2ed09 2385 revs->pretty_given = 1;
ae18165f 2386 get_commit_format(NULL, revs);
479b3d97
SG
2387 } else if (skip_prefix(arg, "--pretty=", &optarg) ||
2388 skip_prefix(arg, "--format=", &optarg)) {
7d7b86f7
MM
2389 /*
2390 * Detached form ("--pretty X" as opposed to "--pretty=X")
2391 * not allowed, since the argument is optional.
2392 */
02e54220 2393 revs->verbose_header = 1;
66b2ed09 2394 revs->pretty_given = 1;
479b3d97 2395 get_commit_format(optarg, revs);
7cc13c71 2396 } else if (!strcmp(arg, "--expand-tabs")) {
fe37a9c5 2397 revs->expand_tabs_in_log = 8;
0893eec8
JH
2398 } else if (!strcmp(arg, "--no-expand-tabs")) {
2399 revs->expand_tabs_in_log = 0;
fe37a9c5
JH
2400 } else if (skip_prefix(arg, "--expand-tabs=", &arg)) {
2401 int val;
2402 if (strtol_i(arg, 10, &val) < 0 || val < 0)
2403 die("'%s': not a non-negative integer", arg);
2404 revs->expand_tabs_in_log = val;
7249e912 2405 } else if (!strcmp(arg, "--show-notes") || !strcmp(arg, "--notes")) {
1d729751 2406 enable_default_display_notes(&revs->notes_opt, &revs->show_notes);
66b2ed09 2407 revs->show_notes_given = 1;
0c37f1fc
JH
2408 } else if (!strcmp(arg, "--show-signature")) {
2409 revs->show_signature = 1;
aa379999
MJ
2410 } else if (!strcmp(arg, "--no-show-signature")) {
2411 revs->show_signature = 0;
479b3d97
SG
2412 } else if (!strcmp(arg, "--show-linear-break")) {
2413 revs->break_bar = " ..........";
1b32dece
NTND
2414 revs->track_linear = 1;
2415 revs->track_first_time = 1;
479b3d97
SG
2416 } else if (skip_prefix(arg, "--show-linear-break=", &optarg)) {
2417 revs->break_bar = xstrdup(optarg);
1b32dece
NTND
2418 revs->track_linear = 1;
2419 revs->track_first_time = 1;
479b3d97
SG
2420 } else if (skip_prefix(arg, "--show-notes=", &optarg) ||
2421 skip_prefix(arg, "--notes=", &optarg)) {
479b3d97
SG
2422 if (starts_with(arg, "--show-notes=") &&
2423 revs->notes_opt.use_default_notes < 0)
2424 revs->notes_opt.use_default_notes = 1;
1d729751 2425 enable_ref_display_notes(&revs->notes_opt, &revs->show_notes, optarg);
452538c3 2426 revs->show_notes_given = 1;
66b2ed09 2427 } else if (!strcmp(arg, "--no-notes")) {
1d729751 2428 disable_display_notes(&revs->notes_opt, &revs->show_notes);
66b2ed09 2429 revs->show_notes_given = 1;
894a9d33
TR
2430 } else if (!strcmp(arg, "--standard-notes")) {
2431 revs->show_notes_given = 1;
3a03cf6b 2432 revs->notes_opt.use_default_notes = 1;
894a9d33 2433 } else if (!strcmp(arg, "--no-standard-notes")) {
3a03cf6b 2434 revs->notes_opt.use_default_notes = 0;
de84accc
NS
2435 } else if (!strcmp(arg, "--oneline")) {
2436 revs->verbose_header = 1;
2437 get_commit_format("oneline", revs);
7dccadf3 2438 revs->pretty_given = 1;
de84accc 2439 revs->abbrev_commit = 1;
02e54220 2440 } else if (!strcmp(arg, "--graph")) {
dccf6c16 2441 graph_clear(revs->graph);
02e54220 2442 revs->graph = graph_init(revs);
087c7458
AH
2443 } else if (!strcmp(arg, "--no-graph")) {
2444 graph_clear(revs->graph);
2445 revs->graph = NULL;
19d097e3
EB
2446 } else if (!strcmp(arg, "--encode-email-headers")) {
2447 revs->encode_email_headers = 1;
2448 } else if (!strcmp(arg, "--no-encode-email-headers")) {
2449 revs->encode_email_headers = 0;
02e54220
PH
2450 } else if (!strcmp(arg, "--root")) {
2451 revs->show_root_diff = 1;
2452 } else if (!strcmp(arg, "--no-commit-id")) {
2453 revs->no_commit_id = 1;
2454 } else if (!strcmp(arg, "--always")) {
2455 revs->always_show_header = 1;
2456 } else if (!strcmp(arg, "--no-abbrev")) {
2457 revs->abbrev = 0;
2458 } else if (!strcmp(arg, "--abbrev")) {
2459 revs->abbrev = DEFAULT_ABBREV;
479b3d97
SG
2460 } else if (skip_prefix(arg, "--abbrev=", &optarg)) {
2461 revs->abbrev = strtoul(optarg, NULL, 10);
02e54220
PH
2462 if (revs->abbrev < MINIMUM_ABBREV)
2463 revs->abbrev = MINIMUM_ABBREV;
fd521245 2464 else if (revs->abbrev > hexsz)
2465 revs->abbrev = hexsz;
02e54220
PH
2466 } else if (!strcmp(arg, "--abbrev-commit")) {
2467 revs->abbrev_commit = 1;
0c47695a
JS
2468 revs->abbrev_commit_given = 1;
2469 } else if (!strcmp(arg, "--no-abbrev-commit")) {
2470 revs->abbrev_commit = 0;
02e54220
PH
2471 } else if (!strcmp(arg, "--full-diff")) {
2472 revs->diff = 1;
2473 revs->full_diff = 1;
8d049e18
DS
2474 } else if (!strcmp(arg, "--show-pulls")) {
2475 revs->show_pulls = 1;
02e54220
PH
2476 } else if (!strcmp(arg, "--full-history")) {
2477 revs->simplify_history = 0;
2478 } else if (!strcmp(arg, "--relative-date")) {
a5481a6c 2479 revs->date_mode.type = DATE_RELATIVE;
f4ea32f0 2480 revs->date_mode_explicit = 1;
7d7b86f7 2481 } else if ((argcount = parse_long_opt("date", argv, &optarg))) {
a5481a6c 2482 parse_date_format(optarg, &revs->date_mode);
f4ea32f0 2483 revs->date_mode_explicit = 1;
7d7b86f7 2484 return argcount;
02e54220
PH
2485 } else if (!strcmp(arg, "--log-size")) {
2486 revs->show_log_size = 1;
2487 }
2488 /*
2489 * Grepping the commit log
2490 */
7d7b86f7
MM
2491 else if ((argcount = parse_long_opt("author", argv, &optarg))) {
2492 add_header_grep(revs, GREP_HEADER_AUTHOR, optarg);
2493 return argcount;
2494 } else if ((argcount = parse_long_opt("committer", argv, &optarg))) {
2495 add_header_grep(revs, GREP_HEADER_COMMITTER, optarg);
2496 return argcount;
72fd13f7
NTND
2497 } else if ((argcount = parse_long_opt("grep-reflog", argv, &optarg))) {
2498 add_header_grep(revs, GREP_HEADER_REFLOG, optarg);
2499 return argcount;
7d7b86f7
MM
2500 } else if ((argcount = parse_long_opt("grep", argv, &optarg))) {
2501 add_message_grep(revs, optarg);
2502 return argcount;
727b6fc3 2503 } else if (!strcmp(arg, "--basic-regexp")) {
8465541e 2504 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_BRE;
02e54220 2505 } else if (!strcmp(arg, "--extended-regexp") || !strcmp(arg, "-E")) {
8465541e 2506 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_ERE;
02e54220 2507 } else if (!strcmp(arg, "--regexp-ignore-case") || !strcmp(arg, "-i")) {
9e3cbc59 2508 revs->grep_filter.ignore_case = 1;
c1ddc461 2509 revs->diffopt.pickaxe_opts |= DIFF_PICKAXE_IGNORE_CASE;
02e54220 2510 } else if (!strcmp(arg, "--fixed-strings") || !strcmp(arg, "-F")) {
8465541e 2511 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_FIXED;
7531a2dd 2512 } else if (!strcmp(arg, "--perl-regexp") || !strcmp(arg, "-P")) {
8465541e 2513 revs->grep_filter.pattern_type_option = GREP_PATTERN_TYPE_PCRE;
02e54220 2514 } else if (!strcmp(arg, "--all-match")) {
0843acfd 2515 revs->grep_filter.all_match = 1;
22dfa8a2 2516 } else if (!strcmp(arg, "--invert-grep")) {
794c0002 2517 revs->grep_filter.no_body_match = 1;
7d7b86f7
MM
2518 } else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
2519 if (strcmp(optarg, "none"))
2520 git_log_output_encoding = xstrdup(optarg);
02e54220
PH
2521 else
2522 git_log_output_encoding = "";
7d7b86f7 2523 return argcount;
02e54220
PH
2524 } else if (!strcmp(arg, "--reverse")) {
2525 revs->reverse ^= 1;
2526 } else if (!strcmp(arg, "--children")) {
2527 revs->children.name = "children";
2528 revs->limited = 1;
cc243c3c
JH
2529 } else if (!strcmp(arg, "--ignore-missing")) {
2530 revs->ignore_missing = 1;
bbcde41a 2531 } else if (opt && opt->allow_exclude_promisor_objects &&
669b1d2a 2532 !strcmp(arg, "--exclude-promisor-objects")) {
df11e196 2533 if (fetch_if_missing)
033abf97 2534 BUG("exclude_promisor_objects can only be used when fetch_if_missing is 0");
df11e196 2535 revs->exclude_promisor_objects = 1;
02e54220 2536 } else {
a97262c6 2537 int opts = diff_opt_parse(&revs->diffopt, argv, argc, revs->prefix);
02e54220
PH
2538 if (!opts)
2539 unkv[(*unkc)++] = arg;
2540 return opts;
2541 }
2542
2543 return 1;
2544}
2545
6b61ec05
PH
2546void parse_revision_opt(struct rev_info *revs, struct parse_opt_ctx_t *ctx,
2547 const struct option *options,
2548 const char * const usagestr[])
2549{
2550 int n = handle_revision_opt(revs, ctx->argc, ctx->argv,
bbcde41a 2551 &ctx->cpidx, ctx->out, NULL);
6b61ec05
PH
2552 if (n <= 0) {
2553 error("unknown option `%s'", ctx->argv[0]);
2554 usage_with_options(usagestr, options);
2555 }
2556 ctx->argv += n;
2557 ctx->argc -= n;
2558}
2559
087c7458
AH
2560void revision_opts_finish(struct rev_info *revs)
2561{
2562 if (revs->graph && revs->track_linear)
2563 die(_("options '%s' and '%s' cannot be used together"), "--show-linear-break", "--graph");
2564
2565 if (revs->graph) {
2566 revs->topo_order = 1;
2567 revs->rewrite_parents = 1;
2568 }
2569}
2570
073cf63c
NTND
2571static int for_each_bisect_ref(struct ref_store *refs, each_ref_fn fn,
2572 void *cb_data, const char *term)
2573{
cb46d630
AD
2574 struct strbuf bisect_refs = STRBUF_INIT;
2575 int status;
2576 strbuf_addf(&bisect_refs, "refs/bisect/%s", term);
67985e4e 2577 status = refs_for_each_fullref_in(refs, bisect_refs.buf, fn, cb_data);
cb46d630
AD
2578 strbuf_release(&bisect_refs);
2579 return status;
2580}
2581
073cf63c 2582static int for_each_bad_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
ad3f9a71 2583{
073cf63c 2584 return for_each_bisect_ref(refs, fn, cb_data, term_bad);
ad3f9a71
LT
2585}
2586
073cf63c 2587static int for_each_good_bisect_ref(struct ref_store *refs, each_ref_fn fn, void *cb_data)
ad3f9a71 2588{
073cf63c 2589 return for_each_bisect_ref(refs, fn, cb_data, term_good);
ad3f9a71
LT
2590}
2591
10a0d6ae 2592static int handle_revision_pseudo_opt(struct rev_info *revs,
e885a84f 2593 const char **argv, int *flags)
f6aca0dc
JN
2594{
2595 const char *arg = argv[0];
2596 const char *optarg;
073cf63c 2597 struct ref_store *refs;
f6aca0dc
JN
2598 int argcount;
2599
10a0d6ae 2600 if (revs->repo != the_repository) {
d0c39a49
NTND
2601 /*
2602 * We need some something like get_submodule_worktrees()
2603 * before we can go through all worktrees of a submodule,
2604 * .e.g with adding all HEADs from --all, which is not
2605 * supported right now, so stick to single worktree.
2606 */
2607 if (!revs->single_worktree)
033abf97 2608 BUG("--single-worktree cannot be used together with submodule");
10a0d6ae
JT
2609 }
2610 refs = get_main_ref_store(revs->repo);
073cf63c 2611
0fc63ec4
JN
2612 /*
2613 * NOTE!
2614 *
2615 * Commands like "git shortlog" will not accept the options below
2616 * unless parse_revision_opt queues them (as opposed to erroring
2617 * out).
2618 *
2619 * When implementing your new pseudo-option, remember to
2620 * register it in the list at the top of handle_revision_opt.
2621 */
f6aca0dc 2622 if (!strcmp(arg, "--all")) {
073cf63c
NTND
2623 handle_refs(refs, revs, *flags, refs_for_each_ref);
2624 handle_refs(refs, revs, *flags, refs_head_ref);
d0c39a49
NTND
2625 if (!revs->single_worktree) {
2626 struct all_refs_cb cb;
2627
2628 init_all_refs_cb(&cb, revs, *flags);
2629 other_head_refs(handle_one_ref, &cb);
2630 }
ff32d342 2631 clear_ref_exclusion(&revs->ref_excludes);
f6aca0dc 2632 } else if (!strcmp(arg, "--branches")) {
073cf63c 2633 handle_refs(refs, revs, *flags, refs_for_each_branch_ref);
ff32d342 2634 clear_ref_exclusion(&revs->ref_excludes);
f6aca0dc 2635 } else if (!strcmp(arg, "--bisect")) {
cb46d630 2636 read_bisect_terms(&term_bad, &term_good);
073cf63c
NTND
2637 handle_refs(refs, revs, *flags, for_each_bad_bisect_ref);
2638 handle_refs(refs, revs, *flags ^ (UNINTERESTING | BOTTOM),
2639 for_each_good_bisect_ref);
f6aca0dc
JN
2640 revs->bisect = 1;
2641 } else if (!strcmp(arg, "--tags")) {
073cf63c 2642 handle_refs(refs, revs, *flags, refs_for_each_tag_ref);
ff32d342 2643 clear_ref_exclusion(&revs->ref_excludes);
f6aca0dc 2644 } else if (!strcmp(arg, "--remotes")) {
073cf63c 2645 handle_refs(refs, revs, *flags, refs_for_each_remote_ref);
ff32d342 2646 clear_ref_exclusion(&revs->ref_excludes);
f6aca0dc
JN
2647 } else if ((argcount = parse_long_opt("glob", argv, &optarg))) {
2648 struct all_refs_cb cb;
2649 init_all_refs_cb(&cb, revs, *flags);
a217dcbd 2650 for_each_glob_ref(handle_one_ref, optarg, &cb);
ff32d342 2651 clear_ref_exclusion(&revs->ref_excludes);
e7b432c5
JH
2652 return argcount;
2653 } else if ((argcount = parse_long_opt("exclude", argv, &optarg))) {
ff32d342 2654 add_ref_exclusion(&revs->ref_excludes, optarg);
f6aca0dc 2655 return argcount;
8b1d9136 2656 } else if (skip_prefix(arg, "--branches=", &optarg)) {
f6aca0dc
JN
2657 struct all_refs_cb cb;
2658 init_all_refs_cb(&cb, revs, *flags);
8b1d9136 2659 for_each_glob_ref_in(handle_one_ref, optarg, "refs/heads/", &cb);
ff32d342 2660 clear_ref_exclusion(&revs->ref_excludes);
8b1d9136 2661 } else if (skip_prefix(arg, "--tags=", &optarg)) {
f6aca0dc
JN
2662 struct all_refs_cb cb;
2663 init_all_refs_cb(&cb, revs, *flags);
8b1d9136 2664 for_each_glob_ref_in(handle_one_ref, optarg, "refs/tags/", &cb);
ff32d342 2665 clear_ref_exclusion(&revs->ref_excludes);
8b1d9136 2666 } else if (skip_prefix(arg, "--remotes=", &optarg)) {
f6aca0dc
JN
2667 struct all_refs_cb cb;
2668 init_all_refs_cb(&cb, revs, *flags);
8b1d9136 2669 for_each_glob_ref_in(handle_one_ref, optarg, "refs/remotes/", &cb);
ff32d342 2670 clear_ref_exclusion(&revs->ref_excludes);
f6aca0dc 2671 } else if (!strcmp(arg, "--reflog")) {
718ccc97 2672 add_reflogs_to_pending(revs, *flags);
4fe10219
JK
2673 } else if (!strcmp(arg, "--indexed-objects")) {
2674 add_index_objects_to_pending(revs, *flags);
39b44ba7
JK
2675 } else if (!strcmp(arg, "--alternate-refs")) {
2676 add_alternate_refs_to_pending(revs, *flags);
f6aca0dc 2677 } else if (!strcmp(arg, "--not")) {
7f34a46f 2678 *flags ^= UNINTERESTING | BOTTOM;
f6aca0dc 2679 } else if (!strcmp(arg, "--no-walk")) {
29ef1f27 2680 revs->no_walk = 1;
8b1d9136 2681 } else if (skip_prefix(arg, "--no-walk=", &optarg)) {
ca92e59e
MZ
2682 /*
2683 * Detached form ("--no-walk X" as opposed to "--no-walk=X")
2684 * not allowed, since the argument is optional.
2685 */
29ef1f27 2686 revs->no_walk = 1;
8b1d9136 2687 if (!strcmp(optarg, "sorted"))
29ef1f27 2688 revs->unsorted_input = 0;
8b1d9136 2689 else if (!strcmp(optarg, "unsorted"))
29ef1f27 2690 revs->unsorted_input = 1;
ca92e59e
MZ
2691 else
2692 return error("invalid argument to --no-walk");
f6aca0dc
JN
2693 } else if (!strcmp(arg, "--do-walk")) {
2694 revs->no_walk = 0;
32619f99
NTND
2695 } else if (!strcmp(arg, "--single-worktree")) {
2696 revs->single_worktree = 1;
cc910442 2697 } else if (skip_prefix(arg, ("--filter="), &arg)) {
c4ea513f 2698 parse_list_objects_filter(&revs->filter, arg);
cc910442 2699 } else if (!strcmp(arg, ("--no-filter"))) {
c4ea513f 2700 list_objects_filter_set_no_filter(&revs->filter);
f6aca0dc
JN
2701 } else {
2702 return 0;
2703 }
2704
2705 return 1;
2706}
2707
ce113604
JK
2708static void NORETURN diagnose_missing_default(const char *def)
2709{
ce113604
JK
2710 int flags;
2711 const char *refname;
2712
744c040b 2713 refname = resolve_ref_unsafe(def, 0, NULL, &flags);
ce113604
JK
2714 if (!refname || !(flags & REF_ISSYMREF) || (flags & REF_ISBROKEN))
2715 die(_("your current branch appears to be broken"));
2716
2717 skip_prefix(refname, "refs/heads/", &refname);
2718 die(_("your current branch '%s' does not have any commits yet"),
2719 refname);
2720}
2721
ae563542
LT
2722/*
2723 * Parse revision information, filling in the "rev_info" structure,
2724 * and removing the used arguments from the argument list.
2725 *
765ac8ec
LT
2726 * Returns the number of arguments left that weren't recognized
2727 * (which are also moved to the head of the argument list)
ae563542 2728 */
32962c9b 2729int setup_revisions(int argc, const char **argv, struct rev_info *revs, struct setup_revision_opt *opt)
ae563542 2730{
04a0e985 2731 int i, flags, left, seen_dashdash, revarg_opt;
c972bf4c 2732 struct strvec prune_data = STRVEC_INIT;
19e8789b 2733 int seen_end_of_options = 0;
9ef6aeb0 2734
ae563542 2735 /* First, search for "--" */
6d5b93f2 2736 if (opt && opt->assume_dashdash) {
ae563542 2737 seen_dashdash = 1;
6d5b93f2
CB
2738 } else {
2739 seen_dashdash = 0;
2740 for (i = 1; i < argc; i++) {
2741 const char *arg = argv[i];
2742 if (strcmp(arg, "--"))
2743 continue;
2744 argv[i] = NULL;
2745 argc = i;
2746 if (argv[i + 1])
c972bf4c 2747 strvec_pushv(&prune_data, argv + i + 1);
6d5b93f2
CB
2748 seen_dashdash = 1;
2749 break;
2750 }
ae563542
LT
2751 }
2752
02e54220
PH
2753 /* Second, deal with arguments and options */
2754 flags = 0;
d5f6b1d7
JH
2755 revarg_opt = opt ? opt->revarg_opt : 0;
2756 if (seen_dashdash)
2757 revarg_opt |= REVARG_CANNOT_BE_FILENAME;
02e54220 2758 for (left = i = 1; i < argc; i++) {
ae563542 2759 const char *arg = argv[i];
19e8789b 2760 if (!seen_end_of_options && *arg == '-') {
cd2bdc53 2761 int opts;
02e54220 2762
10a0d6ae 2763 opts = handle_revision_pseudo_opt(
e885a84f 2764 revs, argv + i,
f6aca0dc
JN
2765 &flags);
2766 if (opts > 0) {
2767 i += opts - 1;
8e64006e
JS
2768 continue;
2769 }
f6aca0dc 2770
8b3dce56
JH
2771 if (!strcmp(arg, "--stdin")) {
2772 if (revs->disable_stdin) {
2773 argv[left++] = arg;
2774 continue;
2775 }
a12cbe23 2776 if (revs->read_from_stdin++)
8b3dce56 2777 die("--stdin given twice?");
60da8b15 2778 read_revisions_from_stdin(revs, &prune_data);
8b3dce56
JH
2779 continue;
2780 }
2d10c555 2781
19e8789b
JK
2782 if (!strcmp(arg, "--end-of-options")) {
2783 seen_end_of_options = 1;
2784 continue;
2785 }
2786
bbcde41a
MD
2787 opts = handle_revision_opt(revs, argc - i, argv + i,
2788 &left, argv, opt);
cd2bdc53 2789 if (opts > 0) {
cd2bdc53
LT
2790 i += opts - 1;
2791 continue;
2792 }
02e54220
PH
2793 if (opts < 0)
2794 exit(128);
ae563542
LT
2795 continue;
2796 }
ae563542 2797
8e676e8b
JH
2798
2799 if (handle_revision_arg(arg, revs, flags, revarg_opt)) {
5d6f0935
JH
2800 int j;
2801 if (seen_dashdash || *arg == '^')
ae563542
LT
2802 die("bad revision '%s'", arg);
2803
ea92f41f
JH
2804 /* If we didn't have a "--":
2805 * (1) all filenames must exist;
2806 * (2) all rev-args must not be interpretable
2807 * as a valid filename.
2808 * but the latter we have checked in the main loop.
2809 */
e23d0b4a 2810 for (j = i; j < argc; j++)
023e37c3 2811 verify_filename(revs->prefix, argv[j], j == i);
e23d0b4a 2812
c972bf4c 2813 strvec_pushv(&prune_data, argv + i);
ae563542
LT
2814 break;
2815 }
ae563542 2816 }
087c7458 2817 revision_opts_finish(revs);
5d6f0935 2818
d70a9eb6 2819 if (prune_data.nr) {
93e7d672
JH
2820 /*
2821 * If we need to introduce the magic "a lone ':' means no
2822 * pathspec whatsoever", here is the place to do so.
2823 *
2824 * if (prune_data.nr == 1 && !strcmp(prune_data[0], ":")) {
2825 * prune_data.nr = 0;
2826 * prune_data.alloc = 0;
2827 * free(prune_data.path);
2828 * prune_data.path = NULL;
2829 * } else {
2830 * terminate prune_data.alloc with NULL and
2831 * call init_pathspec() to set revs->prune_data here.
2832 * }
2833 */
0fdc2ae5 2834 parse_pathspec(&revs->prune_data, 0, 0,
d70a9eb6 2835 revs->prefix, prune_data.v);
4da5af31 2836 }
c972bf4c 2837 strvec_clear(&prune_data);
5486ef0e 2838
02e54220 2839 if (revs->def == NULL)
32962c9b 2840 revs->def = opt ? opt->def : NULL;
b4490059
JH
2841 if (opt && opt->tweak)
2842 opt->tweak(revs, opt);
02e54220 2843 if (revs->show_merge)
ae3e5e1e 2844 prepare_show_merge(revs);
04a0e985 2845 if (revs->def && !revs->pending.nr && !revs->rev_input_given) {
654b9a90 2846 struct object_id oid;
cd2bdc53 2847 struct object *object;
249c8f4a 2848 struct object_context oc;
3a7a698e 2849 if (get_oid_with_context(revs->repo, revs->def, 0, &oid, &oc))
ce113604 2850 diagnose_missing_default(revs->def);
654b9a90 2851 object = get_reference(revs, revs->def, &oid, 0);
249c8f4a 2852 add_pending_object_with_mode(revs, object, revs->def, oc.mode);
ae563542 2853 }
8efdc326 2854
b7bb760d
LT
2855 /* Did the user ask for any diff output? Run the diff! */
2856 if (revs->diffopt.output_format & ~DIFF_FORMAT_NO_OUTPUT)
2857 revs->diff = 1;
2858
0faf2da7 2859 /* Pickaxe, diff-filter and rename following need diffs */
cf63051a 2860 if ((revs->diffopt.pickaxe_opts & DIFF_PICKAXE_KINDS_MASK) ||
0faf2da7 2861 revs->diffopt.filter ||
0d1e0e78 2862 revs->diffopt.flags.follow_renames)
b7bb760d
LT
2863 revs->diff = 1;
2864
15af58c1
SB
2865 if (revs->diffopt.objfind)
2866 revs->simplify_history = 0;
2867
002933f3
SG
2868 if (revs->line_level_traverse) {
2869 if (want_ancestry(revs))
2870 revs->limited = 1;
2871 revs->topo_order = 1;
2872 }
2873
f0d9cc41 2874 if (revs->topo_order && !generation_numbers_enabled(the_repository))
53069686
JH
2875 revs->limited = 1;
2876
afe069d1 2877 if (revs->prune_data.nr) {
bd1928df 2878 copy_pathspec(&revs->pruning.pathspec, &revs->prune_data);
750f7b66 2879 /* Can't prune commits with rename following: the paths change.. */
0d1e0e78 2880 if (!revs->diffopt.flags.follow_renames)
53b2c823 2881 revs->prune = 1;
cd2bdc53 2882 if (!revs->full_diff)
bd1928df
NTND
2883 copy_pathspec(&revs->diffopt.pathspec,
2884 &revs->prune_data);
8efdc326 2885 }
299a6634 2886
18f09473 2887 diff_merges_setup_revs(revs);
d76ce4f7 2888
cd2bdc53 2889 revs->diffopt.abbrev = revs->abbrev;
12da1d1f 2890
28452655 2891 diff_setup_done(&revs->diffopt);
8efdc326 2892
44570188
ÆAB
2893 if (!is_encoding_utf8(get_log_output_encoding()))
2894 revs->grep_filter.ignore_locale = 1;
0843acfd 2895 compile_grep_patterns(&revs->grep_filter);
bd95fcd3 2896
d56651c0 2897 if (revs->reverse && revs->reflog_info)
12909b6b 2898 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--walk-reflogs");
82fd0f4a
JK
2899 if (revs->reflog_info && revs->limited)
2900 die("cannot combine --walk-reflogs with history-limiting options");
8bb65883 2901 if (revs->rewrite_parents && revs->children.name)
12909b6b 2902 die(_("options '%s' and '%s' cannot be used together"), "--parents", "--children");
c4ea513f
DS
2903 if (revs->filter.choice && !revs->blob_objects)
2904 die(_("object filtering requires --objects"));
d56651c0 2905
7fefda5c
AS
2906 /*
2907 * Limitations on the graph functionality
2908 */
2909 if (revs->reverse && revs->graph)
12909b6b 2910 die(_("options '%s' and '%s' cannot be used together"), "--reverse", "--graph");
7fefda5c
AS
2911
2912 if (revs->reflog_info && revs->graph)
12909b6b 2913 die(_("options '%s' and '%s' cannot be used together"), "--walk-reflogs", "--graph");
695985f4 2914 if (revs->no_walk && revs->graph)
12909b6b 2915 die(_("options '%s' and '%s' cannot be used together"), "--no-walk", "--graph");
baa6378f 2916 if (!revs->reflog_info && revs->grep_filter.use_reflog_filter)
6fa00ee8 2917 die(_("the option '%s' requires '%s'"), "--grep-reflog", "--walk-reflogs");
7fefda5c 2918
05314efa
JK
2919 if (revs->line_level_traverse &&
2920 (revs->diffopt.output_format & ~(DIFF_FORMAT_PATCH | DIFF_FORMAT_NO_OUTPUT)))
2921 die(_("-L does not yet support diff formats besides -p and -s"));
2922
0893eec8
JH
2923 if (revs->expand_tabs_in_log < 0)
2924 revs->expand_tabs_in_log = revs->expand_tabs_in_log_default;
2925
ae563542
LT
2926 return left;
2927}
a4a88b2b 2928
7a98d9ab
ÆAB
2929static void release_revisions_cmdline(struct rev_cmdline_info *cmdline)
2930{
2931 unsigned int i;
2932
2933 for (i = 0; i < cmdline->nr; i++)
2934 free((char *)cmdline->rev[i].name);
2935 free(cmdline->rev);
2936}
2937
a52f07af
ÆAB
2938static void release_revisions_mailmap(struct string_list *mailmap)
2939{
2940 if (!mailmap)
2941 return;
2942 clear_mailmap(mailmap);
2943 free(mailmap);
2944}
2945
1878b5ed
ÆAB
2946void release_revisions(struct rev_info *revs)
2947{
e966fc5a 2948 free_commit_list(revs->commits);
1878b5ed 2949 object_array_clear(&revs->pending);
7a98d9ab 2950 release_revisions_cmdline(&revs->cmdline);
a52f07af 2951 release_revisions_mailmap(revs->mailmap);
1878b5ed
ÆAB
2952}
2953
f35f5603
JH
2954static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)
2955{
2956 struct commit_list *l = xcalloc(1, sizeof(*l));
2957
2958 l->item = child;
2959 l->next = add_decoration(&revs->children, &parent->object, l);
2960}
2961
d0af663e 2962static int remove_duplicate_parents(struct rev_info *revs, struct commit *commit)
6546b593 2963{
d0af663e 2964 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
6546b593
JH
2965 struct commit_list **pp, *p;
2966 int surviving_parents;
2967
2968 /* Examine existing parents while marking ones we have seen... */
2969 pp = &commit->parents;
d0af663e 2970 surviving_parents = 0;
6546b593
JH
2971 while ((p = *pp) != NULL) {
2972 struct commit *parent = p->item;
2973 if (parent->object.flags & TMP_MARK) {
2974 *pp = p->next;
d0af663e
KB
2975 if (ts)
2976 compact_treesame(revs, commit, surviving_parents);
6546b593
JH
2977 continue;
2978 }
2979 parent->object.flags |= TMP_MARK;
d0af663e 2980 surviving_parents++;
6546b593
JH
2981 pp = &p->next;
2982 }
d0af663e 2983 /* clear the temporary mark */
6546b593
JH
2984 for (p = commit->parents; p; p = p->next) {
2985 p->item->object.flags &= ~TMP_MARK;
6546b593 2986 }
d0af663e 2987 /* no update_treesame() - removing duplicates can't affect TREESAME */
6546b593
JH
2988 return surviving_parents;
2989}
2990
faf0156b
JH
2991struct merge_simplify_state {
2992 struct commit *simplified;
2993};
2994
2995static struct merge_simplify_state *locate_simplify_state(struct rev_info *revs, struct commit *commit)
2996{
2997 struct merge_simplify_state *st;
2998
2999 st = lookup_decoration(&revs->merge_simplification, &commit->object);
3000 if (!st) {
ca56dadb 3001 CALLOC_ARRAY(st, 1);
faf0156b
JH
3002 add_decoration(&revs->merge_simplification, &commit->object, st);
3003 }
3004 return st;
3005}
3006
91633995 3007static int mark_redundant_parents(struct commit *commit)
d0af663e
KB
3008{
3009 struct commit_list *h = reduce_heads(commit->parents);
3010 int i = 0, marked = 0;
3011 struct commit_list *po, *pn;
3012
3013 /* Want these for sanity-checking only */
3014 int orig_cnt = commit_list_count(commit->parents);
3015 int cnt = commit_list_count(h);
3016
3017 /*
3018 * Not ready to remove items yet, just mark them for now, based
3019 * on the output of reduce_heads(). reduce_heads outputs the reduced
3020 * set in its original order, so this isn't too hard.
3021 */
3022 po = commit->parents;
3023 pn = h;
3024 while (po) {
3025 if (pn && po->item == pn->item) {
3026 pn = pn->next;
3027 i++;
3028 } else {
3029 po->item->object.flags |= TMP_MARK;
3030 marked++;
3031 }
3032 po=po->next;
3033 }
3034
3035 if (i != cnt || cnt+marked != orig_cnt)
3036 die("mark_redundant_parents %d %d %d %d", orig_cnt, cnt, i, marked);
3037
3038 free_commit_list(h);
3039
3040 return marked;
3041}
3042
91633995 3043static int mark_treesame_root_parents(struct commit *commit)
143f1eaf
KB
3044{
3045 struct commit_list *p;
3046 int marked = 0;
3047
3048 for (p = commit->parents; p; p = p->next) {
3049 struct commit *parent = p->item;
3050 if (!parent->parents && (parent->object.flags & TREESAME)) {
3051 parent->object.flags |= TMP_MARK;
3052 marked++;
3053 }
3054 }
3055
3056 return marked;
3057}
3058
9c129eab
KB
3059/*
3060 * Awkward naming - this means one parent we are TREESAME to.
3061 * cf mark_treesame_root_parents: root parents that are TREESAME (to an
3062 * empty tree). Better name suggestions?
3063 */
3064static int leave_one_treesame_to_parent(struct rev_info *revs, struct commit *commit)
3065{
3066 struct treesame_state *ts = lookup_decoration(&revs->treesame, &commit->object);
3067 struct commit *unmarked = NULL, *marked = NULL;
3068 struct commit_list *p;
3069 unsigned n;
3070
3071 for (p = commit->parents, n = 0; p; p = p->next, n++) {
3072 if (ts->treesame[n]) {
3073 if (p->item->object.flags & TMP_MARK) {
3074 if (!marked)
3075 marked = p->item;
3076 } else {
3077 if (!unmarked) {
3078 unmarked = p->item;
3079 break;
3080 }
3081 }
3082 }
3083 }
3084
3085 /*
3086 * If we are TREESAME to a marked-for-deletion parent, but not to any
3087 * unmarked parents, unmark the first TREESAME parent. This is the
3088 * parent that the default simplify_history==1 scan would have followed,
3089 * and it doesn't make sense to omit that path when asking for a
3090 * simplified full history. Retaining it improves the chances of
3091 * understanding odd missed merges that took an old version of a file.
3092 *
3093 * Example:
3094 *
3095 * I--------*X A modified the file, but mainline merge X used
3096 * \ / "-s ours", so took the version from I. X is
3097 * `-*A--' TREESAME to I and !TREESAME to A.
3098 *
3099 * Default log from X would produce "I". Without this check,
3100 * --full-history --simplify-merges would produce "I-A-X", showing
3101 * the merge commit X and that it changed A, but not making clear that
3102 * it had just taken the I version. With this check, the topology above
3103 * is retained.
3104 *
3105 * Note that it is possible that the simplification chooses a different
3106 * TREESAME parent from the default, in which case this test doesn't
3107 * activate, and we _do_ drop the default parent. Example:
3108 *
3109 * I------X A modified the file, but it was reverted in B,
3110 * \ / meaning mainline merge X is TREESAME to both
3111 * *A-*B parents.
3112 *
3113 * Default log would produce "I" by following the first parent;
3114 * --full-history --simplify-merges will produce "I-A-B". But this is a
3115 * reasonable result - it presents a logical full history leading from
3116 * I to X, and X is not an important merge.
3117 */
3118 if (!unmarked && marked) {
3119 marked->object.flags &= ~TMP_MARK;
3120 return 1;
3121 }
3122
3123 return 0;
3124}
3125
d0af663e
KB
3126static int remove_marked_parents(struct rev_info *revs, struct commit *commit)
3127{
3128 struct commit_list **pp, *p;
3129 int nth_parent, removed = 0;
3130
3131 pp = &commit->parents;
3132 nth_parent = 0;
3133 while ((p = *pp) != NULL) {
3134 struct commit *parent = p->item;
3135 if (parent->object.flags & TMP_MARK) {
3136 parent->object.flags &= ~TMP_MARK;
3137 *pp = p->next;
3138 free(p);
3139 removed++;
3140 compact_treesame(revs, commit, nth_parent);
3141 continue;
3142 }
3143 pp = &p->next;
3144 nth_parent++;
3145 }
3146
3147 /* Removing parents can only increase TREESAMEness */
3148 if (removed && !(commit->object.flags & TREESAME))
3149 update_treesame(revs, commit);
3150
3151 return nth_parent;
3152}
3153
faf0156b 3154static struct commit_list **simplify_one(struct rev_info *revs, struct commit *commit, struct commit_list **tail)
6546b593
JH
3155{
3156 struct commit_list *p;
4d826608 3157 struct commit *parent;
faf0156b 3158 struct merge_simplify_state *st, *pst;
6546b593
JH
3159 int cnt;
3160
faf0156b
JH
3161 st = locate_simplify_state(revs, commit);
3162
6546b593 3163 /*
6546b593
JH
3164 * Have we handled this one?
3165 */
faf0156b 3166 if (st->simplified)
6546b593
JH
3167 return tail;
3168
3169 /*
3170 * An UNINTERESTING commit simplifies to itself, so does a
3171 * root commit. We do not rewrite parents of such commit
3172 * anyway.
3173 */
3174 if ((commit->object.flags & UNINTERESTING) || !commit->parents) {
faf0156b 3175 st->simplified = commit;
6546b593
JH
3176 return tail;
3177 }
3178
3179 /*
6e513ba3
JH
3180 * Do we know what commit all of our parents that matter
3181 * should be rewritten to? Otherwise we are not ready to
3182 * rewrite this one yet.
6546b593
JH
3183 */
3184 for (cnt = 0, p = commit->parents; p; p = p->next) {
faf0156b
JH
3185 pst = locate_simplify_state(revs, p->item);
3186 if (!pst->simplified) {
6546b593
JH
3187 tail = &commit_list_insert(p->item, tail)->next;
3188 cnt++;
3189 }
6e513ba3
JH
3190 if (revs->first_parent_only)
3191 break;
6546b593 3192 }
53030f8d
JH
3193 if (cnt) {
3194 tail = &commit_list_insert(commit, tail)->next;
6546b593 3195 return tail;
53030f8d 3196 }
6546b593
JH
3197
3198 /*
d0af663e
KB
3199 * Rewrite our list of parents. Note that this cannot
3200 * affect our TREESAME flags in any way - a commit is
3201 * always TREESAME to its simplification.
6546b593 3202 */
faf0156b
JH
3203 for (p = commit->parents; p; p = p->next) {
3204 pst = locate_simplify_state(revs, p->item);
3205 p->item = pst->simplified;
6e513ba3
JH
3206 if (revs->first_parent_only)
3207 break;
faf0156b 3208 }
4b7f53da 3209
0290bf12 3210 if (revs->first_parent_only)
6e513ba3 3211 cnt = 1;
0290bf12 3212 else
d0af663e 3213 cnt = remove_duplicate_parents(revs, commit);
6546b593
JH
3214
3215 /*
3216 * It is possible that we are a merge and one side branch
3217 * does not have any commit that touches the given paths;
d0af663e
KB
3218 * in such a case, the immediate parent from that branch
3219 * will be rewritten to be the merge base.
6546b593
JH
3220 *
3221 * o----X X: the commit we are looking at;
3222 * / / o: a commit that touches the paths;
3223 * ---o----'
3224 *
143f1eaf
KB
3225 * Further, a merge of an independent branch that doesn't
3226 * touch the path will reduce to a treesame root parent:
3227 *
3228 * ----o----X X: the commit we are looking at;
3229 * / o: a commit that touches the paths;
3230 * r r: a root commit not touching the paths
3231 *
3232 * Detect and simplify both cases.
6546b593
JH
3233 */
3234 if (1 < cnt) {
91633995
JK
3235 int marked = mark_redundant_parents(commit);
3236 marked += mark_treesame_root_parents(commit);
9c129eab
KB
3237 if (marked)
3238 marked -= leave_one_treesame_to_parent(revs, commit);
d0af663e
KB
3239 if (marked)
3240 cnt = remove_marked_parents(revs, commit);
6546b593
JH
3241 }
3242
3243 /*
3244 * A commit simplifies to itself if it is a root, if it is
3245 * UNINTERESTING, if it touches the given paths, or if it is a
4d826608 3246 * merge and its parents don't simplify to one relevant commit
6546b593
JH
3247 * (the first two cases are already handled at the beginning of
3248 * this function).
3249 *
4d826608
KB
3250 * Otherwise, it simplifies to what its sole relevant parent
3251 * simplifies to.
6546b593
JH
3252 */
3253 if (!cnt ||
3254 (commit->object.flags & UNINTERESTING) ||
3255 !(commit->object.flags & TREESAME) ||
8d049e18
DS
3256 (parent = one_relevant_parent(revs, commit->parents)) == NULL ||
3257 (revs->show_pulls && (commit->object.flags & PULL_MERGE)))
faf0156b
JH
3258 st->simplified = commit;
3259 else {
4d826608 3260 pst = locate_simplify_state(revs, parent);
faf0156b
JH
3261 st->simplified = pst->simplified;
3262 }
6546b593
JH
3263 return tail;
3264}
3265
3266static void simplify_merges(struct rev_info *revs)
3267{
ab9d75a8 3268 struct commit_list *list, *next;
6546b593 3269 struct commit_list *yet_to_do, **tail;
ab9d75a8 3270 struct commit *commit;
6546b593 3271
5eac739e
JH
3272 if (!revs->prune)
3273 return;
65347030 3274
6546b593
JH
3275 /* feed the list reversed */
3276 yet_to_do = NULL;
ab9d75a8
JH
3277 for (list = revs->commits; list; list = next) {
3278 commit = list->item;
3279 next = list->next;
3280 /*
3281 * Do not free(list) here yet; the original list
3282 * is used later in this function.
3283 */
3284 commit_list_insert(commit, &yet_to_do);
3285 }
6546b593
JH
3286 while (yet_to_do) {
3287 list = yet_to_do;
3288 yet_to_do = NULL;
3289 tail = &yet_to_do;
3290 while (list) {
e510ab89 3291 commit = pop_commit(&list);
faf0156b 3292 tail = simplify_one(revs, commit, tail);
6546b593
JH
3293 }
3294 }
3295
3296 /* clean up the result, removing the simplified ones */
3297 list = revs->commits;
3298 revs->commits = NULL;
3299 tail = &revs->commits;
3300 while (list) {
faf0156b 3301 struct merge_simplify_state *st;
ab9d75a8 3302
e510ab89 3303 commit = pop_commit(&list);
faf0156b
JH
3304 st = locate_simplify_state(revs, commit);
3305 if (st->simplified == commit)
6546b593
JH
3306 tail = &commit_list_insert(commit, tail)->next;
3307 }
6546b593
JH
3308}
3309
f35f5603
JH
3310static void set_children(struct rev_info *revs)
3311{
3312 struct commit_list *l;
3313 for (l = revs->commits; l; l = l->next) {
3314 struct commit *commit = l->item;
3315 struct commit_list *p;
3316
3317 for (p = commit->parents; p; p = p->next)
3318 add_child(revs, p->item, commit);
3319 }
3320}
3321
bcc0a3ea
HV
3322void reset_revision_walk(void)
3323{
ffa1f28f 3324 clear_object_flags(SEEN | ADDED | SHOWN | TOPO_WALK_EXPLORED | TOPO_WALK_INDEGREE);
bcc0a3ea
HV
3325}
3326
df11e196
JT
3327static int mark_uninteresting(const struct object_id *oid,
3328 struct packed_git *pack,
3329 uint32_t pos,
b3c7eef9 3330 void *cb)
df11e196 3331{
b3c7eef9 3332 struct rev_info *revs = cb;
c1fa951d 3333 struct object *o = lookup_unknown_object(revs->repo, oid);
df11e196
JT
3334 o->flags |= UNINTERESTING | SEEN;
3335 return 0;
3336}
3337
b4542418
DS
3338define_commit_slab(indegree_slab, int);
3339define_commit_slab(author_date_slab, timestamp_t);
3340
3341struct topo_walk_info {
d7f92784 3342 timestamp_t min_generation;
b4542418
DS
3343 struct prio_queue explore_queue;
3344 struct prio_queue indegree_queue;
3345 struct prio_queue topo_queue;
3346 struct indegree_slab indegree;
3347 struct author_date_slab author_date;
3348};
3349
90b666da
DS
3350static int topo_walk_atexit_registered;
3351static unsigned int count_explore_walked;
3352static unsigned int count_indegree_walked;
3353static unsigned int count_topo_walked;
3354
3355static void trace2_topo_walk_statistics_atexit(void)
3356{
3357 struct json_writer jw = JSON_WRITER_INIT;
3358
3359 jw_object_begin(&jw, 0);
3360 jw_object_intmax(&jw, "count_explore_walked", count_explore_walked);
3361 jw_object_intmax(&jw, "count_indegree_walked", count_indegree_walked);
3362 jw_object_intmax(&jw, "count_topo_walked", count_topo_walked);
3363 jw_end(&jw);
3364
3365 trace2_data_json("topo_walk", the_repository, "statistics", &jw);
3366
3367 jw_release(&jw);
3368}
3369
b4542418
DS
3370static inline void test_flag_and_insert(struct prio_queue *q, struct commit *c, int flag)
3371{
3372 if (c->object.flags & flag)
3373 return;
3374
3375 c->object.flags |= flag;
3376 prio_queue_put(q, c);
3377}
3378
3379static void explore_walk_step(struct rev_info *revs)
3380{
3381 struct topo_walk_info *info = revs->topo_walk_info;
3382 struct commit_list *p;
3383 struct commit *c = prio_queue_get(&info->explore_queue);
3384
3385 if (!c)
3386 return;
3387
ea3f7e59 3388 if (repo_parse_commit_gently(revs->repo, c, 1) < 0)
b4542418
DS
3389 return;
3390
90b666da
DS
3391 count_explore_walked++;
3392
b4542418
DS
3393 if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3394 record_author_date(&info->author_date, c);
3395
3396 if (revs->max_age != -1 && (c->date < revs->max_age))
3397 c->object.flags |= UNINTERESTING;
3398
3399 if (process_parents(revs, c, NULL, NULL) < 0)
3400 return;
3401
3402 if (c->object.flags & UNINTERESTING)
9d505b7b 3403 mark_parents_uninteresting(revs, c);
b4542418
DS
3404
3405 for (p = c->parents; p; p = p->next)
3406 test_flag_and_insert(&info->explore_queue, p->item, TOPO_WALK_EXPLORED);
3407}
3408
3409static void explore_to_depth(struct rev_info *revs,
d7f92784 3410 timestamp_t gen_cutoff)
b4542418
DS
3411{
3412 struct topo_walk_info *info = revs->topo_walk_info;
3413 struct commit *c;
3414 while ((c = prio_queue_peek(&info->explore_queue)) &&
c49c82aa 3415 commit_graph_generation(c) >= gen_cutoff)
b4542418
DS
3416 explore_walk_step(revs);
3417}
3418
3419static void indegree_walk_step(struct rev_info *revs)
3420{
3421 struct commit_list *p;
3422 struct topo_walk_info *info = revs->topo_walk_info;
3423 struct commit *c = prio_queue_get(&info->indegree_queue);
3424
3425 if (!c)
3426 return;
3427
ea3f7e59 3428 if (repo_parse_commit_gently(revs->repo, c, 1) < 0)
b4542418
DS
3429 return;
3430
90b666da
DS
3431 count_indegree_walked++;
3432
c49c82aa 3433 explore_to_depth(revs, commit_graph_generation(c));
b4542418
DS
3434
3435 for (p = c->parents; p; p = p->next) {
3436 struct commit *parent = p->item;
3437 int *pi = indegree_slab_at(&info->indegree, parent);
3438
2f9bbb6d
AK
3439 if (repo_parse_commit_gently(revs->repo, parent, 1) < 0)
3440 return;
3441
b4542418
DS
3442 if (*pi)
3443 (*pi)++;
3444 else
3445 *pi = 2;
3446
3447 test_flag_and_insert(&info->indegree_queue, parent, TOPO_WALK_INDEGREE);
3448
3449 if (revs->first_parent_only)
3450 return;
3451 }
3452}
3453
3454static void compute_indegrees_to_depth(struct rev_info *revs,
d7f92784 3455 timestamp_t gen_cutoff)
b4542418
DS
3456{
3457 struct topo_walk_info *info = revs->topo_walk_info;
3458 struct commit *c;
3459 while ((c = prio_queue_peek(&info->indegree_queue)) &&
c49c82aa 3460 commit_graph_generation(c) >= gen_cutoff)
b4542418
DS
3461 indegree_walk_step(revs);
3462}
f0d9cc41 3463
0aa0c2b2
MH
3464static void reset_topo_walk(struct rev_info *revs)
3465{
3466 struct topo_walk_info *info = revs->topo_walk_info;
3467
3468 clear_prio_queue(&info->explore_queue);
3469 clear_prio_queue(&info->indegree_queue);
3470 clear_prio_queue(&info->topo_queue);
3471 clear_indegree_slab(&info->indegree);
3472 clear_author_date_slab(&info->author_date);
3473
3474 FREE_AND_NULL(revs->topo_walk_info);
3475}
3476
f0d9cc41
DS
3477static void init_topo_walk(struct rev_info *revs)
3478{
3479 struct topo_walk_info *info;
b4542418 3480 struct commit_list *list;
0aa0c2b2
MH
3481 if (revs->topo_walk_info)
3482 reset_topo_walk(revs);
3483
f0d9cc41
DS
3484 revs->topo_walk_info = xmalloc(sizeof(struct topo_walk_info));
3485 info = revs->topo_walk_info;
3486 memset(info, 0, sizeof(struct topo_walk_info));
3487
b4542418
DS
3488 init_indegree_slab(&info->indegree);
3489 memset(&info->explore_queue, 0, sizeof(info->explore_queue));
3490 memset(&info->indegree_queue, 0, sizeof(info->indegree_queue));
3491 memset(&info->topo_queue, 0, sizeof(info->topo_queue));
3492
3493 switch (revs->sort_order) {
3494 default: /* REV_SORT_IN_GRAPH_ORDER */
3495 info->topo_queue.compare = NULL;
3496 break;
3497 case REV_SORT_BY_COMMIT_DATE:
3498 info->topo_queue.compare = compare_commits_by_commit_date;
3499 break;
3500 case REV_SORT_BY_AUTHOR_DATE:
3501 init_author_date_slab(&info->author_date);
3502 info->topo_queue.compare = compare_commits_by_author_date;
3503 info->topo_queue.cb_data = &info->author_date;
3504 break;
3505 }
3506
3507 info->explore_queue.compare = compare_commits_by_gen_then_commit_date;
3508 info->indegree_queue.compare = compare_commits_by_gen_then_commit_date;
3509
3510 info->min_generation = GENERATION_NUMBER_INFINITY;
3511 for (list = revs->commits; list; list = list->next) {
3512 struct commit *c = list->item;
d7f92784 3513 timestamp_t generation;
b4542418 3514
ea3f7e59 3515 if (repo_parse_commit_gently(revs->repo, c, 1))
b4542418
DS
3516 continue;
3517
3518 test_flag_and_insert(&info->explore_queue, c, TOPO_WALK_EXPLORED);
3519 test_flag_and_insert(&info->indegree_queue, c, TOPO_WALK_INDEGREE);
3520
c752ad09
AK
3521 generation = commit_graph_generation(c);
3522 if (generation < info->min_generation)
3523 info->min_generation = generation;
b4542418
DS
3524
3525 *(indegree_slab_at(&info->indegree, c)) = 1;
3526
3527 if (revs->sort_order == REV_SORT_BY_AUTHOR_DATE)
3528 record_author_date(&info->author_date, c);
3529 }
3530 compute_indegrees_to_depth(revs, info->min_generation);
3531
3532 for (list = revs->commits; list; list = list->next) {
3533 struct commit *c = list->item;
3534
3535 if (*(indegree_slab_at(&info->indegree, c)) == 1)
3536 prio_queue_put(&info->topo_queue, c);
3537 }
3538
3539 /*
3540 * This is unfortunate; the initial tips need to be shown
3541 * in the order given from the revision traversal machinery.
3542 */
3543 if (revs->sort_order == REV_SORT_IN_GRAPH_ORDER)
3544 prio_queue_reverse(&info->topo_queue);
90b666da
DS
3545
3546 if (trace2_is_enabled() && !topo_walk_atexit_registered) {
3547 atexit(trace2_topo_walk_statistics_atexit);
3548 topo_walk_atexit_registered = 1;
3549 }
f0d9cc41
DS
3550}
3551
3552static struct commit *next_topo_commit(struct rev_info *revs)
3553{
b4542418
DS
3554 struct commit *c;
3555 struct topo_walk_info *info = revs->topo_walk_info;
3556
3557 /* pop next off of topo_queue */
3558 c = prio_queue_get(&info->topo_queue);
3559
3560 if (c)
3561 *(indegree_slab_at(&info->indegree, c)) = 0;
3562
3563 return c;
f0d9cc41
DS
3564}
3565
3566static void expand_topo_walk(struct rev_info *revs, struct commit *commit)
3567{
b4542418
DS
3568 struct commit_list *p;
3569 struct topo_walk_info *info = revs->topo_walk_info;
3570 if (process_parents(revs, commit, NULL, NULL) < 0) {
f0d9cc41
DS
3571 if (!revs->ignore_missing_links)
3572 die("Failed to traverse parents of commit %s",
3573 oid_to_hex(&commit->object.oid));
3574 }
b4542418 3575
90b666da
DS
3576 count_topo_walked++;
3577
b4542418
DS
3578 for (p = commit->parents; p; p = p->next) {
3579 struct commit *parent = p->item;
3580 int *pi;
d7f92784 3581 timestamp_t generation;
b4542418 3582
1d8e31a3
DS
3583 if (parent->object.flags & UNINTERESTING)
3584 continue;
3585
ea3f7e59 3586 if (repo_parse_commit_gently(revs->repo, parent, 1) < 0)
b4542418
DS
3587 continue;
3588
c752ad09
AK
3589 generation = commit_graph_generation(parent);
3590 if (generation < info->min_generation) {
3591 info->min_generation = generation;
b4542418
DS
3592 compute_indegrees_to_depth(revs, info->min_generation);
3593 }
3594
3595 pi = indegree_slab_at(&info->indegree, parent);
3596
3597 (*pi)--;
3598 if (*pi == 1)
3599 prio_queue_put(&info->topo_queue, parent);
3600
3601 if (revs->first_parent_only)
3602 return;
3603 }
f0d9cc41
DS
3604}
3605
cc0e6c5a 3606int prepare_revision_walk(struct rev_info *revs)
a4a88b2b 3607{
1da1e07c
JK
3608 int i;
3609 struct object_array old_pending;
2e7da8e9 3610 struct commit_list **next = &revs->commits;
cd2bdc53 3611
1da1e07c 3612 memcpy(&old_pending, &revs->pending, sizeof(old_pending));
1f1e895f
LT
3613 revs->pending.nr = 0;
3614 revs->pending.alloc = 0;
3615 revs->pending.objects = NULL;
1da1e07c
JK
3616 for (i = 0; i < old_pending.nr; i++) {
3617 struct object_array_entry *e = old_pending.objects + i;
20739490 3618 struct commit *commit = handle_commit(revs, e);
cd2bdc53
LT
3619 if (commit) {
3620 if (!(commit->object.flags & SEEN)) {
3621 commit->object.flags |= SEEN;
2e7da8e9 3622 next = commit_list_append(commit, next);
cd2bdc53
LT
3623 }
3624 }
cd2bdc53 3625 }
f1230fb5 3626 object_array_clear(&old_pending);
cd2bdc53 3627
d0af663e 3628 /* Signal whether we need per-parent treesame decoration */
4d826608
KB
3629 if (revs->simplify_merges ||
3630 (revs->limited && limiting_can_increase_treesame(revs)))
d0af663e
KB
3631 revs->treesame.name = "treesame";
3632
df11e196 3633 if (revs->exclude_promisor_objects) {
b3c7eef9 3634 for_each_packed_object(mark_uninteresting, revs,
df11e196
JT
3635 FOR_EACH_OBJECT_PROMISOR_ONLY);
3636 }
3637
f32dde8c 3638 if (!revs->reflog_info)
a56b9464 3639 prepare_to_use_bloom_filter(revs);
29ef1f27 3640 if (!revs->unsorted_input)
ca92e59e 3641 commit_list_sort_by_date(&revs->commits);
ba1d4505 3642 if (revs->no_walk)
cc0e6c5a 3643 return 0;
f0d9cc41 3644 if (revs->limited) {
cc0e6c5a
AR
3645 if (limit_list(revs) < 0)
3646 return -1;
f0d9cc41
DS
3647 if (revs->topo_order)
3648 sort_in_topological_order(&revs->commits, revs->sort_order);
3649 } else if (revs->topo_order)
3650 init_topo_walk(revs);
3cb9d2b6
SG
3651 if (revs->line_level_traverse && want_ancestry(revs))
3652 /*
3653 * At the moment we can only do line-level log with parent
3654 * rewriting by performing this expensive pre-filtering step.
3655 * If parent rewriting is not requested, then we rather
3656 * perform the line-level log filtering during the regular
3657 * history traversal.
3658 */
12da1d1f 3659 line_log_filter(revs);
6546b593
JH
3660 if (revs->simplify_merges)
3661 simplify_merges(revs);
f35f5603
JH
3662 if (revs->children.name)
3663 set_children(revs);
a56b9464 3664
cc0e6c5a 3665 return 0;
a4a88b2b
LT
3666}
3667
8320b1db
JK
3668static enum rewrite_result rewrite_one_1(struct rev_info *revs,
3669 struct commit **pp,
3670 struct prio_queue *queue)
765ac8ec
LT
3671{
3672 for (;;) {
3673 struct commit *p = *pp;
3381c790 3674 if (!revs->limited)
8320b1db 3675 if (process_parents(revs, p, NULL, queue) < 0)
cc0e6c5a 3676 return rewrite_one_error;
7dc0fe3b
LT
3677 if (p->object.flags & UNINTERESTING)
3678 return rewrite_one_ok;
3679 if (!(p->object.flags & TREESAME))
cc0e6c5a 3680 return rewrite_one_ok;
765ac8ec 3681 if (!p->parents)
cc0e6c5a 3682 return rewrite_one_noparents;
4d826608
KB
3683 if ((p = one_relevant_parent(revs, p->parents)) == NULL)
3684 return rewrite_one_ok;
3685 *pp = p;
765ac8ec
LT
3686 }
3687}
3688
8320b1db
JK
3689static void merge_queue_into_list(struct prio_queue *q, struct commit_list **list)
3690{
3691 while (q->nr) {
3692 struct commit *item = prio_queue_peek(q);
3693 struct commit_list *p = *list;
3694
3695 if (p && p->item->date >= item->date)
3696 list = &p->next;
3697 else {
3698 p = commit_list_insert(item, list);
3699 list = &p->next; /* skip newly added item */
3700 prio_queue_get(q); /* pop item */
3701 }
3702 }
3703}
3704
3705static enum rewrite_result rewrite_one(struct rev_info *revs, struct commit **pp)
3706{
3707 struct prio_queue queue = { compare_commits_by_commit_date };
3708 enum rewrite_result ret = rewrite_one_1(revs, pp, &queue);
3709 merge_queue_into_list(&queue, &revs->commits);
3710 clear_prio_queue(&queue);
3711 return ret;
3712}
3713
c7edcae0
BY
3714int rewrite_parents(struct rev_info *revs, struct commit *commit,
3715 rewrite_parent_fn_t rewrite_parent)
765ac8ec
LT
3716{
3717 struct commit_list **pp = &commit->parents;
3718 while (*pp) {
3719 struct commit_list *parent = *pp;
c7edcae0 3720 switch (rewrite_parent(revs, &parent->item)) {
cc0e6c5a
AR
3721 case rewrite_one_ok:
3722 break;
3723 case rewrite_one_noparents:
765ac8ec
LT
3724 *pp = parent->next;
3725 continue;
cc0e6c5a
AR
3726 case rewrite_one_error:
3727 return -1;
765ac8ec
LT
3728 }
3729 pp = &parent->next;
3730 }
d0af663e 3731 remove_duplicate_parents(revs, commit);
cc0e6c5a 3732 return 0;
765ac8ec
LT
3733}
3734
d72fbe81
AP
3735static int commit_rewrite_person(struct strbuf *buf, const char *what, struct string_list *mailmap)
3736{
3737 char *person, *endp;
3738 size_t len, namelen, maillen;
3739 const char *name;
3740 const char *mail;
3741 struct ident_split ident;
3742
3743 person = strstr(buf->buf, what);
3744 if (!person)
3745 return 0;
3746
3747 person += strlen(what);
3748 endp = strchr(person, '\n');
3749 if (!endp)
3750 return 0;
3751
3752 len = endp - person;
3753
3754 if (split_ident_line(&ident, person, len))
3755 return 0;
3756
3757 mail = ident.mail_begin;
3758 maillen = ident.mail_end - ident.mail_begin;
3759 name = ident.name_begin;
3760 namelen = ident.name_end - ident.name_begin;
3761
3762 if (map_user(mailmap, &mail, &maillen, &name, &namelen)) {
3763 struct strbuf namemail = STRBUF_INIT;
3764
3765 strbuf_addf(&namemail, "%.*s <%.*s>",
3766 (int)namelen, name, (int)maillen, mail);
3767
3768 strbuf_splice(buf, ident.name_begin - buf->buf,
3769 ident.mail_end - ident.name_begin + 1,
3770 namemail.buf, namemail.len);
3771
3772 strbuf_release(&namemail);
3773
3774 return 1;
3775 }
3776
3777 return 0;
3778}
3779
8ecae9b0
JH
3780static int commit_match(struct commit *commit, struct rev_info *opt)
3781{
72fd13f7 3782 int retval;
04deccda 3783 const char *encoding;
b000c59b 3784 const char *message;
72fd13f7 3785 struct strbuf buf = STRBUF_INIT;
04deccda 3786
80235ba7 3787 if (!opt->grep_filter.pattern_list && !opt->grep_filter.header_list)
8ecae9b0 3788 return 1;
baa6378f
JH
3789
3790 /* Prepend "fake" headers as needed */
3791 if (opt->grep_filter.use_reflog_filter) {
72fd13f7
NTND
3792 strbuf_addstr(&buf, "reflog ");
3793 get_reflog_message(&buf, opt->reflog_info);
3794 strbuf_addch(&buf, '\n');
72fd13f7 3795 }
baa6378f 3796
04deccda
JK
3797 /*
3798 * We grep in the user's output encoding, under the assumption that it
3799 * is the encoding they are most likely to write their grep pattern
3800 * for. In addition, it means we will match the "notes" encoding below,
3801 * so we will not end up with a buffer that has two different encodings
3802 * in it.
3803 */
3804 encoding = get_log_output_encoding();
5a10d236 3805 message = logmsg_reencode(commit, NULL, encoding);
04deccda 3806
baa6378f
JH
3807 /* Copy the commit to temporary if we are using "fake" headers */
3808 if (buf.len)
04deccda 3809 strbuf_addstr(&buf, message);
baa6378f 3810
df874fa8 3811 if (opt->grep_filter.header_list && opt->mailmap) {
d72fbe81 3812 if (!buf.len)
04deccda 3813 strbuf_addstr(&buf, message);
d72fbe81
AP
3814
3815 commit_rewrite_person(&buf, "\nauthor ", opt->mailmap);
3816 commit_rewrite_person(&buf, "\ncommitter ", opt->mailmap);
3817 }
3818
38cfe915
NTND
3819 /* Append "fake" message parts as needed */
3820 if (opt->show_notes) {
3821 if (!buf.len)
04deccda 3822 strbuf_addstr(&buf, message);
fb61e4d3 3823 format_display_notes(&commit->object.oid, &buf, encoding, 1);
38cfe915
NTND
3824 }
3825
b000c59b
JK
3826 /*
3827 * Find either in the original commit message, or in the temporary.
3828 * Note that we cast away the constness of "message" here. It is
3829 * const because it may come from the cached commit buffer. That's OK,
3830 * because we know that it is modifiable heap memory, and that while
3831 * grep_buffer may modify it for speed, it will restore any
3832 * changes before returning.
3833 */
72fd13f7
NTND
3834 if (buf.len)
3835 retval = grep_buffer(&opt->grep_filter, buf.buf, buf.len);
3836 else
3837 retval = grep_buffer(&opt->grep_filter,
b000c59b 3838 (char *)message, strlen(message));
72fd13f7 3839 strbuf_release(&buf);
b66103c3 3840 unuse_commit_buffer(commit, message);
794c0002 3841 return retval;
8ecae9b0
JH
3842}
3843
53d00b39 3844static inline int want_ancestry(const struct rev_info *revs)
f35f5603 3845{
8bb65883 3846 return (revs->rewrite_parents || revs->children.name);
f35f5603
JH
3847}
3848
de239446
JK
3849/*
3850 * Return a timestamp to be used for --since/--until comparisons for this
3851 * commit, based on the revision options.
3852 */
3853static timestamp_t comparison_date(const struct rev_info *revs,
3854 struct commit *commit)
3855{
3856 return revs->reflog_info ?
3857 get_reflog_timestamp(revs->reflog_info) :
3858 commit->date;
3859}
3860
beb5af43 3861enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit)
252a7c02
LT
3862{
3863 if (commit->object.flags & SHOWN)
3864 return commit_ignore;
14c3c80c 3865 if (revs->unpacked && has_object_pack(&commit->object.oid))
252a7c02 3866 return commit_ignore;
c9fff000
TB
3867 if (revs->no_kept_objects) {
3868 if (has_object_kept_pack(&commit->object.oid,
3869 revs->keep_pack_cache_flags))
3870 return commit_ignore;
3871 }
252a7c02
LT
3872 if (commit->object.flags & UNINTERESTING)
3873 return commit_ignore;
3cb9d2b6
SG
3874 if (revs->line_level_traverse && !want_ancestry(revs)) {
3875 /*
3876 * In case of line-level log with parent rewriting
3877 * prepare_revision_walk() already took care of all line-level
3878 * log filtering, and there is nothing left to do here.
3879 *
3880 * If parent rewriting was not requested, then this is the
3881 * place to perform the line-level log filtering. Notably,
3882 * this check, though expensive, must come before the other,
3883 * cheaper filtering conditions, because the tracked line
3884 * ranges must be adjusted even when the commit will end up
3885 * being ignored based on other conditions.
3886 */
3887 if (!line_log_process_ranges_arbitrary_commit(revs, commit))
3888 return commit_ignore;
3889 }
de239446
JK
3890 if (revs->min_age != -1 &&
3891 comparison_date(revs, commit) > revs->min_age)
3892 return commit_ignore;
ad5aeede 3893 if (revs->min_parents || (revs->max_parents >= 0)) {
bf3418b0 3894 int n = commit_list_count(commit->parents);
ad5aeede
MG
3895 if ((n < revs->min_parents) ||
3896 ((revs->max_parents >= 0) && (n > revs->max_parents)))
3897 return commit_ignore;
3898 }
252a7c02
LT
3899 if (!commit_match(commit, revs))
3900 return commit_ignore;
53b2c823 3901 if (revs->prune && revs->dense) {
252a7c02 3902 /* Commit without changes? */
7dc0fe3b 3903 if (commit->object.flags & TREESAME) {
bf3418b0
KB
3904 int n;
3905 struct commit_list *p;
252a7c02 3906 /* drop merges unless we want parenthood */
f35f5603 3907 if (!want_ancestry(revs))
252a7c02 3908 return commit_ignore;
8d049e18
DS
3909
3910 if (revs->show_pulls && (commit->object.flags & PULL_MERGE))
3911 return commit_show;
3912
bf3418b0
KB
3913 /*
3914 * If we want ancestry, then need to keep any merges
3915 * between relevant commits to tie together topology.
3916 * For consistency with TREESAME and simplification
3917 * use "relevant" here rather than just INTERESTING,
3918 * to treat bottom commit(s) as part of the topology.
3919 */
3920 for (n = 0, p = commit->parents; p; p = p->next)
3921 if (relevant_commit(p->item))
3922 if (++n >= 2)
3923 return commit_show;
3924 return commit_ignore;
252a7c02 3925 }
252a7c02
LT
3926 }
3927 return commit_show;
3928}
3929
0131c490
JH
3930define_commit_slab(saved_parents, struct commit_list *);
3931
3932#define EMPTY_PARENT_LIST ((struct commit_list *)-1)
3933
3934/*
3935 * You may only call save_parents() once per commit (this is checked
3936 * for non-root commits).
3937 */
3938static void save_parents(struct rev_info *revs, struct commit *commit)
3939{
3940 struct commit_list **pp;
3941
3942 if (!revs->saved_parents_slab) {
3943 revs->saved_parents_slab = xmalloc(sizeof(struct saved_parents));
3944 init_saved_parents(revs->saved_parents_slab);
3945 }
3946
3947 pp = saved_parents_at(revs->saved_parents_slab, commit);
3948
3949 /*
3950 * When walking with reflogs, we may visit the same commit
3951 * several times: once for each appearance in the reflog.
3952 *
3953 * In this case, save_parents() will be called multiple times.
3954 * We want to keep only the first set of parents. We need to
3955 * store a sentinel value for an empty (i.e., NULL) parent
3956 * list to distinguish it from a not-yet-saved list, however.
3957 */
3958 if (*pp)
3959 return;
3960 if (commit->parents)
3961 *pp = copy_commit_list(commit->parents);
3962 else
3963 *pp = EMPTY_PARENT_LIST;
3964}
3965
3966static void free_saved_parents(struct rev_info *revs)
3967{
3968 if (revs->saved_parents_slab)
3969 clear_saved_parents(revs->saved_parents_slab);
3970}
3971
3972struct commit_list *get_saved_parents(struct rev_info *revs, const struct commit *commit)
3973{
3974 struct commit_list *parents;
3975
3976 if (!revs->saved_parents_slab)
3977 return commit->parents;
3978
3979 parents = *saved_parents_at(revs->saved_parents_slab, commit);
3980 if (parents == EMPTY_PARENT_LIST)
3981 return NULL;
3982 return parents;
3983}
3984
beb5af43
AS
3985enum commit_action simplify_commit(struct rev_info *revs, struct commit *commit)
3986{
3987 enum commit_action action = get_commit_action(revs, commit);
3988
3989 if (action == commit_show &&
beb5af43 3990 revs->prune && revs->dense && want_ancestry(revs)) {
53d00b39
TR
3991 /*
3992 * --full-diff on simplified parents is no good: it
3993 * will show spurious changes from the commits that
3994 * were elided. So we save the parents on the side
3995 * when --full-diff is in effect.
3996 */
3997 if (revs->full_diff)
3998 save_parents(revs, commit);
c7edcae0 3999 if (rewrite_parents(revs, commit, rewrite_one) < 0)
beb5af43
AS
4000 return commit_error;
4001 }
4002 return action;
4003}
4004
1b32dece
NTND
4005static void track_linear(struct rev_info *revs, struct commit *commit)
4006{
4007 if (revs->track_first_time) {
4008 revs->linear = 1;
4009 revs->track_first_time = 0;
4010 } else {
4011 struct commit_list *p;
4012 for (p = revs->previous_parents; p; p = p->next)
4013 if (p->item == NULL || /* first commit */
4a7e27e9 4014 oideq(&p->item->object.oid, &commit->object.oid))
1b32dece
NTND
4015 break;
4016 revs->linear = p != NULL;
4017 }
4018 if (revs->reverse) {
4019 if (revs->linear)
4020 commit->object.flags |= TRACK_LINEAR;
4021 }
4022 free_commit_list(revs->previous_parents);
4023 revs->previous_parents = copy_commit_list(commit->parents);
4024}
4025
d5db6c9e 4026static struct commit *get_revision_1(struct rev_info *revs)
a4a88b2b 4027{
7c2f08aa 4028 while (1) {
d08565bf 4029 struct commit *commit;
a4a88b2b 4030
d08565bf
JK
4031 if (revs->reflog_info)
4032 commit = next_reflog_entry(revs->reflog_info);
f0d9cc41
DS
4033 else if (revs->topo_walk_info)
4034 commit = next_topo_commit(revs);
d08565bf
JK
4035 else
4036 commit = pop_commit(&revs->commits);
2a0925be 4037
7c2f08aa
JK
4038 if (!commit)
4039 return NULL;
4040
d08565bf 4041 if (revs->reflog_info)
ffa1eeae 4042 commit->object.flags &= ~(ADDED | SEEN | SHOWN);
8860fd42 4043
2a0925be
LT
4044 /*
4045 * If we haven't done the list limiting, we need to look at
be7db6e5
LT
4046 * the parents here. We also need to do the date-based limiting
4047 * that we'd otherwise have done in limit_list().
2a0925be 4048 */
be7db6e5 4049 if (!revs->limited) {
744f4985 4050 if (revs->max_age != -1 &&
de239446 4051 comparison_date(revs, commit) < revs->max_age)
86ab4906 4052 continue;
d08565bf
JK
4053
4054 if (revs->reflog_info)
4055 try_to_simplify_commit(revs, commit);
f0d9cc41
DS
4056 else if (revs->topo_walk_info)
4057 expand_topo_walk(revs, commit);
5284fc5c 4058 else if (process_parents(revs, commit, &revs->commits, NULL) < 0) {
2db1a43f
VM
4059 if (!revs->ignore_missing_links)
4060 die("Failed to traverse parents of commit %s",
f2fd0760 4061 oid_to_hex(&commit->object.oid));
2db1a43f 4062 }
be7db6e5 4063 }
744f4985 4064
252a7c02
LT
4065 switch (simplify_commit(revs, commit)) {
4066 case commit_ignore:
8ecae9b0 4067 continue;
252a7c02 4068 case commit_error:
ed62089c 4069 die("Failed to simplify parents of commit %s",
f2fd0760 4070 oid_to_hex(&commit->object.oid));
252a7c02 4071 default:
1b32dece
NTND
4072 if (revs->track_linear)
4073 track_linear(revs, commit);
252a7c02 4074 return commit;
384e99a4 4075 }
7c2f08aa 4076 }
765ac8ec 4077}
d5db6c9e 4078
be6754c6
MH
4079/*
4080 * Return true for entries that have not yet been shown. (This is an
4081 * object_array_each_func_t.)
4082 */
4083static int entry_unshown(struct object_array_entry *entry, void *cb_data_unused)
86ab4906 4084{
be6754c6
MH
4085 return !(entry->item->flags & SHOWN);
4086}
86ab4906 4087
be6754c6
MH
4088/*
4089 * If array is on the verge of a realloc, garbage-collect any entries
4090 * that have already been shown to try to free up some space.
4091 */
4092static void gc_boundary(struct object_array *array)
4093{
4094 if (array->nr == array->alloc)
4095 object_array_filter(array, entry_unshown, NULL);
86ab4906
JH
4096}
4097
4603ec0f
AS
4098static void create_boundary_commit_list(struct rev_info *revs)
4099{
4100 unsigned i;
4101 struct commit *c;
4102 struct object_array *array = &revs->boundary_commits;
4103 struct object_array_entry *objects = array->objects;
4104
4105 /*
4106 * If revs->commits is non-NULL at this point, an error occurred in
4107 * get_revision_1(). Ignore the error and continue printing the
4108 * boundary commits anyway. (This is what the code has always
4109 * done.)
4110 */
bf20fe4c
ÆAB
4111 free_commit_list(revs->commits);
4112 revs->commits = NULL;
4603ec0f
AS
4113
4114 /*
4115 * Put all of the actual boundary commits from revs->boundary_commits
4116 * into revs->commits
4117 */
4118 for (i = 0; i < array->nr; i++) {
4119 c = (struct commit *)(objects[i].item);
4120 if (!c)
4121 continue;
4122 if (!(c->object.flags & CHILD_SHOWN))
4123 continue;
4124 if (c->object.flags & (SHOWN | BOUNDARY))
4125 continue;
4126 c->object.flags |= BOUNDARY;
4127 commit_list_insert(c, &revs->commits);
4128 }
4129
4130 /*
4131 * If revs->topo_order is set, sort the boundary commits
4132 * in topological order
4133 */
08f704f2 4134 sort_in_topological_order(&revs->commits, revs->sort_order);
4603ec0f
AS
4135}
4136
7fefda5c 4137static struct commit *get_revision_internal(struct rev_info *revs)
d5db6c9e
JH
4138{
4139 struct commit *c = NULL;
86ab4906
JH
4140 struct commit_list *l;
4141
4142 if (revs->boundary == 2) {
4603ec0f
AS
4143 /*
4144 * All of the normal commits have already been returned,
4145 * and we are now returning boundary commits.
4146 * create_boundary_commit_list() has populated
4147 * revs->commits with the remaining commits to return.
4148 */
4149 c = pop_commit(&revs->commits);
4150 if (c)
4151 c->object.flags |= SHOWN;
9c5e66e9
JS
4152 return c;
4153 }
4154
86ab4906 4155 /*
b72a1904
JK
4156 * If our max_count counter has reached zero, then we are done. We
4157 * don't simply return NULL because we still might need to show
4158 * boundary commits. But we want to avoid calling get_revision_1, which
4159 * might do a considerable amount of work finding the next commit only
4160 * for us to throw it away.
4161 *
4162 * If it is non-zero, then either we don't have a max_count at all
4163 * (-1), or it is still counting, in which case we decrement.
86ab4906 4164 */
b72a1904
JK
4165 if (revs->max_count) {
4166 c = get_revision_1(revs);
4167 if (c) {
9e57ac55 4168 while (revs->skip_count > 0) {
b72a1904
JK
4169 revs->skip_count--;
4170 c = get_revision_1(revs);
4171 if (!c)
4172 break;
4173 }
8839ac94 4174 }
86ab4906 4175
b72a1904
JK
4176 if (revs->max_count > 0)
4177 revs->max_count--;
d5db6c9e 4178 }
86ab4906 4179
c33d8593
JH
4180 if (c)
4181 c->object.flags |= SHOWN;
4182
9e57ac55 4183 if (!revs->boundary)
d5db6c9e 4184 return c;
86ab4906
JH
4185
4186 if (!c) {
4187 /*
4188 * get_revision_1() runs out the commits, and
4189 * we are done computing the boundaries.
4190 * switch to boundary commits output mode.
4191 */
4192 revs->boundary = 2;
4603ec0f
AS
4193
4194 /*
4195 * Update revs->commits to contain the list of
4196 * boundary commits.
4197 */
4198 create_boundary_commit_list(revs);
4199
3c68d67b 4200 return get_revision_internal(revs);
86ab4906
JH
4201 }
4202
4203 /*
4204 * boundary commits are the commits that are parents of the
4205 * ones we got from get_revision_1() but they themselves are
4206 * not returned from get_revision_1(). Before returning
4207 * 'c', we need to mark its parents that they could be boundaries.
4208 */
4209
4210 for (l = c->parents; l; l = l->next) {
4211 struct object *p;
4212 p = &(l->item->object);
c33d8593 4213 if (p->flags & (CHILD_SHOWN | SHOWN))
86ab4906
JH
4214 continue;
4215 p->flags |= CHILD_SHOWN;
4216 gc_boundary(&revs->boundary_commits);
4217 add_object_array(p, NULL, &revs->boundary_commits);
4218 }
4219
4220 return c;
d5db6c9e 4221}
7fefda5c
AS
4222
4223struct commit *get_revision(struct rev_info *revs)
4224{
498bcd31
TR
4225 struct commit *c;
4226 struct commit_list *reversed;
4227
4228 if (revs->reverse) {
4229 reversed = NULL;
9e57ac55 4230 while ((c = get_revision_internal(revs)))
498bcd31 4231 commit_list_insert(c, &reversed);
498bcd31
TR
4232 revs->commits = reversed;
4233 revs->reverse = 0;
4234 revs->reverse_output_stage = 1;
4235 }
4236
1b32dece
NTND
4237 if (revs->reverse_output_stage) {
4238 c = pop_commit(&revs->commits);
4239 if (revs->track_linear)
4240 revs->linear = !!(c && c->object.flags & TRACK_LINEAR);
4241 return c;
4242 }
498bcd31
TR
4243
4244 c = get_revision_internal(revs);
7fefda5c
AS
4245 if (c && revs->graph)
4246 graph_update(revs->graph, c);
1b32dece 4247 if (!c) {
53d00b39 4248 free_saved_parents(revs);
bf20fe4c
ÆAB
4249 free_commit_list(revs->previous_parents);
4250 revs->previous_parents = NULL;
1b32dece 4251 }
7fefda5c
AS
4252 return c;
4253}
1df2d656 4254
49825164 4255const char *get_revision_mark(const struct rev_info *revs, const struct commit *commit)
1df2d656
MG
4256{
4257 if (commit->object.flags & BOUNDARY)
4258 return "-";
4259 else if (commit->object.flags & UNINTERESTING)
4260 return "^";
adbbb31e
MG
4261 else if (commit->object.flags & PATCHSAME)
4262 return "=";
1df2d656
MG
4263 else if (!revs || revs->left_right) {
4264 if (commit->object.flags & SYMMETRIC_LEFT)
4265 return "<";
4266 else
4267 return ">";
4268 } else if (revs->graph)
4269 return "*";
adbbb31e
MG
4270 else if (revs->cherry_mark)
4271 return "+";
1df2d656
MG
4272 return "";
4273}
b1b47554
MG
4274
4275void put_revision_mark(const struct rev_info *revs, const struct commit *commit)
4276{
49825164 4277 const char *mark = get_revision_mark(revs, commit);
b1b47554
MG
4278 if (!strlen(mark))
4279 return;
4280 fputs(mark, stdout);
4281 putchar(' ');
4282}