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