Coverage Report

Created: 2026-01-15 06:28

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