blob: 2f623f8211534dabe732b1da140a2512a5a5fcf5 [file] [log] [blame]
Junio C Hamanoc64ed702006-09-04 21:50:12 -07001#include "cache.h"
2#include "tag.h"
3#include "commit.h"
4#include "tree.h"
5#include "blob.h"
6#include "diff.h"
7#include "tree-walk.h"
8#include "revision.h"
9#include "list-objects.h"
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +000010#include "list-objects-filter.h"
11#include "list-objects-filter-options.h"
Jonathan Tandf11e192017-12-08 15:27:15 +000012#include "packfile.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -070013#include "object-store.h"
Matthew DeVore8b10a202018-10-17 17:39:15 -070014#include "trace.h"
Junio C Hamanoc64ed702006-09-04 21:50:12 -070015
Matthew DeVoref447a492018-08-13 11:14:28 -070016struct traversal_context {
17 struct rev_info *revs;
18 show_object_fn show_object;
19 show_commit_fn show_commit;
20 void *show_data;
Matthew DeVore94301472019-06-27 15:54:05 -070021 struct filter *filter;
Matthew DeVoref447a492018-08-13 11:14:28 -070022};
23
24static void process_blob(struct traversal_context *ctx,
Junio C Hamanoc64ed702006-09-04 21:50:12 -070025 struct blob *blob,
Jeff Kingbd645162016-02-11 17:26:44 -050026 struct strbuf *path,
Matthew DeVoref447a492018-08-13 11:14:28 -070027 const char *name)
Junio C Hamanoc64ed702006-09-04 21:50:12 -070028{
29 struct object *obj = &blob->object;
Jeff Kingde1e67d2016-02-11 17:28:36 -050030 size_t pathlen;
Matthew DeVore94301472019-06-27 15:54:05 -070031 enum list_objects_filter_result r;
Junio C Hamanoc64ed702006-09-04 21:50:12 -070032
Matthew DeVoref447a492018-08-13 11:14:28 -070033 if (!ctx->revs->blob_objects)
Junio C Hamanoc64ed702006-09-04 21:50:12 -070034 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +010035 if (!obj)
36 die("bad blob object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -070037 if (obj->flags & (UNINTERESTING | SEEN))
38 return;
Jeff Kingde1e67d2016-02-11 17:28:36 -050039
Jonathan Tandf11e192017-12-08 15:27:15 +000040 /*
41 * Pre-filter known-missing objects when explicitly requested.
42 * Otherwise, a missing object error message may be reported
43 * later (depending on other filtering criteria).
44 *
45 * Note that this "--exclude-promisor-objects" pre-filtering
46 * may cause the actual filter to report an incomplete list
47 * of missing objects.
48 */
Matthew DeVoref447a492018-08-13 11:14:28 -070049 if (ctx->revs->exclude_promisor_objects &&
Jonathan Tandf11e192017-12-08 15:27:15 +000050 !has_object_file(&obj->oid) &&
51 is_promisor_object(&obj->oid))
52 return;
53
Jeff Kingde1e67d2016-02-11 17:28:36 -050054 pathlen = path->len;
55 strbuf_addstr(path, name);
Matthew DeVore94301472019-06-27 15:54:05 -070056 r = list_objects_filter__filter_object(ctx->revs->repo,
57 LOFS_BLOB, obj,
58 path->buf, &path->buf[pathlen],
59 ctx->filter);
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +000060 if (r & LOFR_MARK_SEEN)
61 obj->flags |= SEEN;
62 if (r & LOFR_DO_SHOW)
Matthew DeVoref447a492018-08-13 11:14:28 -070063 ctx->show_object(obj, path->buf, ctx->show_data);
Jeff Kingde1e67d2016-02-11 17:28:36 -050064 strbuf_setlen(path, pathlen);
Junio C Hamanoc64ed702006-09-04 21:50:12 -070065}
66
Linus Torvalds6e2f4412007-04-13 09:25:01 -070067/*
68 * Processing a gitlink entry currently does nothing, since
69 * we do not recurse into the subproject.
70 *
71 * We *could* eventually add a flag that actually does that,
72 * which would involve:
73 * - is the subproject actually checked out?
74 * - if so, see if the subproject has already been added
75 * to the alternates list, and add it if not.
76 * - process the commit (or tag) the gitlink points to
77 * recursively.
78 *
79 * However, it's unclear whether there is really ever any
80 * reason to see superprojects and subprojects as such a
81 * "unified" object pool (potentially resulting in a totally
82 * humongous pack - avoiding which was the whole point of
83 * having gitlinks in the first place!).
84 *
85 * So for now, there is just a note that we *could* follow
86 * the link, and how to do it. Whether it necessarily makes
87 * any sense what-so-ever to ever do that is another issue.
88 */
Matthew DeVoref447a492018-08-13 11:14:28 -070089static void process_gitlink(struct traversal_context *ctx,
Linus Torvalds6e2f4412007-04-13 09:25:01 -070090 const unsigned char *sha1,
Jeff Kingbd645162016-02-11 17:26:44 -050091 struct strbuf *path,
Matthew DeVoref447a492018-08-13 11:14:28 -070092 const char *name)
Linus Torvalds6e2f4412007-04-13 09:25:01 -070093{
94 /* Nothing to do */
95}
96
Matthew DeVoref447a492018-08-13 11:14:28 -070097static void process_tree(struct traversal_context *ctx,
Junio C Hamanoc64ed702006-09-04 21:50:12 -070098 struct tree *tree,
Elijah Newrencc5fa2f2010-12-17 20:26:47 +070099 struct strbuf *base,
Matthew DeVore92024892018-08-13 11:14:29 -0700100 const char *name);
101
102static void process_tree_contents(struct traversal_context *ctx,
103 struct tree *tree,
104 struct strbuf *base)
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700105{
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700106 struct tree_desc desc;
107 struct name_entry entry;
Matthew DeVore92024892018-08-13 11:14:29 -0700108 enum interesting match = ctx->revs->diffopt.pathspec.nr == 0 ?
109 all_entries_interesting : entry_not_interesting;
110
111 init_tree_desc(&desc, tree->buffer, tree->size);
112
113 while (tree_entry(&desc, &entry)) {
114 if (match != all_entries_interesting) {
Nguyễn Thái Ngọc Duy67022e02018-11-18 17:47:57 +0100115 match = tree_entry_interesting(ctx->revs->repo->index,
116 &entry, base, 0,
Matthew DeVore92024892018-08-13 11:14:29 -0700117 &ctx->revs->diffopt.pathspec);
118 if (match == all_entries_not_interesting)
119 break;
120 if (match == entry_not_interesting)
121 continue;
122 }
123
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700124 if (S_ISDIR(entry.mode)) {
brian m. carlsonea82b2a2019-01-15 00:39:44 +0000125 struct tree *t = lookup_tree(ctx->revs->repo, &entry.oid);
Taylor Blaub49e74e2019-04-09 19:13:19 -0700126 if (!t) {
127 die(_("entry '%s' in tree %s has tree mode, "
128 "but is not a tree"),
129 entry.path, oid_to_hex(&tree->object.oid));
130 }
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700131 t->object.flags |= NOT_USER_GIVEN;
132 process_tree(ctx, t, base, entry.path);
133 }
Matthew DeVore92024892018-08-13 11:14:29 -0700134 else if (S_ISGITLINK(entry.mode))
brian m. carlsonea82b2a2019-01-15 00:39:44 +0000135 process_gitlink(ctx, entry.oid.hash,
Matthew DeVore92024892018-08-13 11:14:29 -0700136 base, entry.path);
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700137 else {
brian m. carlsonea82b2a2019-01-15 00:39:44 +0000138 struct blob *b = lookup_blob(ctx->revs->repo, &entry.oid);
Taylor Blau23c20442019-04-09 19:13:17 -0700139 if (!b) {
140 die(_("entry '%s' in tree %s has blob mode, "
141 "but is not a blob"),
142 entry.path, oid_to_hex(&tree->object.oid));
143 }
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700144 b->object.flags |= NOT_USER_GIVEN;
145 process_blob(ctx, b, base, entry.path);
146 }
Matthew DeVore92024892018-08-13 11:14:29 -0700147 }
148}
149
150static void process_tree(struct traversal_context *ctx,
151 struct tree *tree,
152 struct strbuf *base,
Matthew DeVoref447a492018-08-13 11:14:28 -0700153 const char *name)
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700154{
155 struct object *obj = &tree->object;
Matthew DeVoref447a492018-08-13 11:14:28 -0700156 struct rev_info *revs = ctx->revs;
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700157 int baselen = base->len;
Matthew DeVore94301472019-06-27 15:54:05 -0700158 enum list_objects_filter_result r;
Matthew DeVore7c0fe332018-10-05 14:31:23 -0700159 int failed_parse;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700160
161 if (!revs->tree_objects)
162 return;
Martin Koeglera301b0c2008-02-18 21:47:56 +0100163 if (!obj)
164 die("bad tree object");
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700165 if (obj->flags & (UNINTERESTING | SEEN))
166 return;
Jeff Kingaa9ad6f2021-06-14 08:05:44 -0400167 if (revs->include_check_obj &&
168 !revs->include_check_obj(&tree->object, revs->include_check_data))
169 return;
Matthew DeVore7c0fe332018-10-05 14:31:23 -0700170
171 failed_parse = parse_tree_gently(tree, 1);
172 if (failed_parse) {
Vicent Marti2db1a432014-03-28 06:00:43 -0400173 if (revs->ignore_missing_links)
174 return;
Jonathan Tandf11e192017-12-08 15:27:15 +0000175
176 /*
177 * Pre-filter known-missing tree objects when explicitly
178 * requested. This may cause the actual filter to report
179 * an incomplete list of missing objects.
180 */
181 if (revs->exclude_promisor_objects &&
182 is_promisor_object(&obj->oid))
183 return;
184
Matthew DeVore7c0fe332018-10-05 14:31:23 -0700185 if (!revs->do_not_die_on_missing_tree)
186 die("bad tree object %s", oid_to_hex(&obj->oid));
Vicent Marti2db1a432014-03-28 06:00:43 -0400187 }
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700188
Jeff King13528ab2016-02-11 17:26:18 -0500189 strbuf_addstr(base, name);
Matthew DeVore94301472019-06-27 15:54:05 -0700190 r = list_objects_filter__filter_object(ctx->revs->repo,
191 LOFS_BEGIN_TREE, obj,
192 base->buf, &base->buf[baselen],
193 ctx->filter);
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000194 if (r & LOFR_MARK_SEEN)
195 obj->flags |= SEEN;
196 if (r & LOFR_DO_SHOW)
Matthew DeVoref447a492018-08-13 11:14:28 -0700197 ctx->show_object(obj, base->buf, ctx->show_data);
Jeff King13528ab2016-02-11 17:26:18 -0500198 if (base->len)
199 strbuf_addch(base, '/');
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700200
Matthew DeVore8b10a202018-10-17 17:39:15 -0700201 if (r & LOFR_SKIP_TREE)
202 trace_printf("Skipping contents of tree %s...\n", base->buf);
203 else if (!failed_parse)
Matthew DeVore7c0fe332018-10-05 14:31:23 -0700204 process_tree_contents(ctx, tree, base);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700205
Matthew DeVore94301472019-06-27 15:54:05 -0700206 r = list_objects_filter__filter_object(ctx->revs->repo,
207 LOFS_END_TREE, obj,
208 base->buf, &base->buf[baselen],
209 ctx->filter);
210 if (r & LOFR_MARK_SEEN)
211 obj->flags |= SEEN;
212 if (r & LOFR_DO_SHOW)
213 ctx->show_object(obj, base->buf, ctx->show_data);
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000214
Elijah Newrencc5fa2f2010-12-17 20:26:47 +0700215 strbuf_setlen(base, baselen);
Jeff King6e454b92013-06-05 18:37:39 -0400216 free_tree_buffer(tree);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700217}
218
Patrick Steinhardt628d81b2021-04-09 13:28:02 +0200219static void process_tag(struct traversal_context *ctx,
220 struct tag *tag,
221 const char *name)
222{
Patrick Steinhardt9a2a4f92021-04-12 15:37:35 +0200223 enum list_objects_filter_result r;
224
225 r = list_objects_filter__filter_object(ctx->revs->repo, LOFS_TAG,
226 &tag->object, NULL, NULL,
227 ctx->filter);
228 if (r & LOFR_MARK_SEEN)
229 tag->object.flags |= SEEN;
230 if (r & LOFR_DO_SHOW)
231 ctx->show_object(&tag->object, name, ctx->show_data);
Patrick Steinhardt628d81b2021-04-09 13:28:02 +0200232}
233
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700234static void mark_edge_parents_uninteresting(struct commit *commit,
235 struct rev_info *revs,
236 show_edge_fn show_edge)
237{
238 struct commit_list *parents;
239
240 for (parents = commit->parents; parents; parents = parents->next) {
241 struct commit *parent = parents->item;
242 if (!(parent->object.flags & UNINTERESTING))
243 continue;
Nguyễn Thái Ngọc Duyb3c7eef2018-09-21 17:57:39 +0200244 mark_tree_uninteresting(revs->repo, get_commit_tree(parent));
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700245 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
246 parent->object.flags |= SHOWN;
247 show_edge(parent);
248 }
249 }
250}
251
Derrick Stolee4f6d26b2019-01-16 10:25:58 -0800252static void add_edge_parents(struct commit *commit,
253 struct rev_info *revs,
254 show_edge_fn show_edge,
255 struct oidset *set)
256{
257 struct commit_list *parents;
258
259 for (parents = commit->parents; parents; parents = parents->next) {
260 struct commit *parent = parents->item;
261 struct tree *tree = get_commit_tree(parent);
262
263 if (!tree)
264 continue;
265
266 oidset_insert(set, &tree->object.oid);
267
268 if (!(parent->object.flags & UNINTERESTING))
269 continue;
270 tree->object.flags |= UNINTERESTING;
271
272 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
273 parent->object.flags |= SHOWN;
274 show_edge(parent);
275 }
276 }
277}
278
279void mark_edges_uninteresting(struct rev_info *revs,
280 show_edge_fn show_edge,
281 int sparse)
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700282{
Nguyễn Thái Ngọc Duye76a5fb2013-08-16 16:52:06 +0700283 struct commit_list *list;
Nguyễn Thái Ngọc Duyfbd4a702013-08-16 16:52:07 +0700284 int i;
285
Derrick Stolee4f6d26b2019-01-16 10:25:58 -0800286 if (sparse) {
287 struct oidset set;
288 oidset_init(&set, 16);
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700289
Derrick Stolee4f6d26b2019-01-16 10:25:58 -0800290 for (list = revs->commits; list; list = list->next) {
291 struct commit *commit = list->item;
292 struct tree *tree = get_commit_tree(commit);
293
294 if (commit->object.flags & UNINTERESTING)
295 tree->object.flags |= UNINTERESTING;
296
297 oidset_insert(&set, &tree->object.oid);
298 add_edge_parents(commit, revs, show_edge, &set);
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700299 }
Derrick Stolee4f6d26b2019-01-16 10:25:58 -0800300
301 mark_trees_uninteresting_sparse(revs->repo, &set);
302 oidset_clear(&set);
303 } else {
304 for (list = revs->commits; list; list = list->next) {
305 struct commit *commit = list->item;
306 if (commit->object.flags & UNINTERESTING) {
307 mark_tree_uninteresting(revs->repo,
308 get_commit_tree(commit));
309 if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
310 commit->object.flags |= SHOWN;
311 show_edge(commit);
312 }
313 continue;
314 }
315 mark_edge_parents_uninteresting(commit, revs, show_edge);
316 }
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700317 }
Derrick Stolee4f6d26b2019-01-16 10:25:58 -0800318
brian m. carlson1684c1b2014-12-24 23:05:39 +0000319 if (revs->edge_hint_aggressive) {
Jeff King200abe72014-01-20 21:25:40 -0500320 for (i = 0; i < revs->cmdline.nr; i++) {
321 struct object *obj = revs->cmdline.rev[i].item;
322 struct commit *commit = (struct commit *)obj;
323 if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
324 continue;
Nguyễn Thái Ngọc Duyb3c7eef2018-09-21 17:57:39 +0200325 mark_tree_uninteresting(revs->repo,
326 get_commit_tree(commit));
Jeff King200abe72014-01-20 21:25:40 -0500327 if (!(obj->flags & SHOWN)) {
328 obj->flags |= SHOWN;
329 show_edge(commit);
330 }
Nguyễn Thái Ngọc Duyfbd4a702013-08-16 16:52:07 +0700331 }
332 }
Junio C Hamano8d1d8f82006-09-06 01:42:23 -0700333}
334
Linus Torvalds8d2dfc42009-04-10 17:27:58 -0700335static void add_pending_tree(struct rev_info *revs, struct tree *tree)
336{
337 add_pending_object(revs, &tree->object, "");
338}
339
Teng Longb3e36df2021-08-12 16:59:31 +0800340static void traverse_non_commits(struct traversal_context *ctx,
341 struct strbuf *base)
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700342{
343 int i;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700344
Stefan Beller91904f52017-11-02 12:41:43 -0700345 assert(base->len == 0);
346
Matthew DeVoref447a492018-08-13 11:14:28 -0700347 for (i = 0; i < ctx->revs->pending.nr; i++) {
348 struct object_array_entry *pending = ctx->revs->pending.objects + i;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700349 struct object *obj = pending->item;
350 const char *name = pending->name;
Jeff King20739492014-10-15 18:43:19 -0400351 const char *path = pending->path;
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700352 if (obj->flags & (UNINTERESTING | SEEN))
353 continue;
354 if (obj->type == OBJ_TAG) {
Patrick Steinhardt628d81b2021-04-09 13:28:02 +0200355 process_tag(ctx, (struct tag *)obj, name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700356 continue;
357 }
Jeff King20739492014-10-15 18:43:19 -0400358 if (!path)
359 path = "";
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700360 if (obj->type == OBJ_TREE) {
Matthew DeVoref447a492018-08-13 11:14:28 -0700361 process_tree(ctx, (struct tree *)obj, base, path);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700362 continue;
363 }
364 if (obj->type == OBJ_BLOB) {
Matthew DeVoref447a492018-08-13 11:14:28 -0700365 process_blob(ctx, (struct blob *)obj, base, path);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700366 continue;
367 }
368 die("unknown pending object %s (%s)",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000369 oid_to_hex(&obj->oid), name);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700370 }
Matthew DeVoref447a492018-08-13 11:14:28 -0700371 object_array_clear(&ctx->revs->pending);
Stefan Beller91904f52017-11-02 12:41:43 -0700372}
373
Matthew DeVoref447a492018-08-13 11:14:28 -0700374static void do_traverse(struct traversal_context *ctx)
Stefan Beller91904f52017-11-02 12:41:43 -0700375{
376 struct commit *commit;
377 struct strbuf csp; /* callee's scratch pad */
378 strbuf_init(&csp, PATH_MAX);
379
Matthew DeVoref447a492018-08-13 11:14:28 -0700380 while ((commit = get_revision(ctx->revs)) != NULL) {
Patrick Steinhardt9a2a4f92021-04-12 15:37:35 +0200381 enum list_objects_filter_result r;
382
383 r = list_objects_filter__filter_object(ctx->revs->repo,
384 LOFS_COMMIT, &commit->object,
385 NULL, NULL, ctx->filter);
386
Stefan Beller91904f52017-11-02 12:41:43 -0700387 /*
388 * an uninteresting boundary commit may not have its tree
389 * parsed yet, but we are not going to show them anyway
390 */
Jeff King72ed80c2019-09-11 21:11:37 -0400391 if (!ctx->revs->tree_objects)
392 ; /* do not bother loading tree */
393 else if (get_commit_tree(commit)) {
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700394 struct tree *tree = get_commit_tree(commit);
395 tree->object.flags |= NOT_USER_GIVEN;
396 add_pending_tree(ctx->revs, tree);
Jeff King97dd5122019-04-09 19:13:25 -0700397 } else if (commit->object.parsed) {
398 die(_("unable to load root tree for commit %s"),
399 oid_to_hex(&commit->object.oid));
Matthew DeVore99c9aa92018-10-05 14:31:24 -0700400 }
Patrick Steinhardt9a2a4f92021-04-12 15:37:35 +0200401
402 if (r & LOFR_MARK_SEEN)
403 commit->object.flags |= SEEN;
404 if (r & LOFR_DO_SHOW)
405 ctx->show_commit(commit, ctx->show_data);
Stefan Bellerce5b6f92017-11-15 18:00:35 -0800406
Matthew DeVoref447a492018-08-13 11:14:28 -0700407 if (ctx->revs->tree_blobs_in_commit_order)
Stefan Bellerce5b6f92017-11-15 18:00:35 -0800408 /*
409 * NEEDSWORK: Adding the tree and then flushing it here
410 * needs a reallocation for each commit. Can we pass the
411 * tree directory without allocation churn?
412 */
Teng Longb3e36df2021-08-12 16:59:31 +0800413 traverse_non_commits(ctx, &csp);
Stefan Beller91904f52017-11-02 12:41:43 -0700414 }
Teng Longb3e36df2021-08-12 16:59:31 +0800415 traverse_non_commits(ctx, &csp);
Stefan Beller91904f52017-11-02 12:41:43 -0700416 strbuf_release(&csp);
Junio C Hamanoc64ed702006-09-04 21:50:12 -0700417}
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000418
419void traverse_commit_list(struct rev_info *revs,
420 show_commit_fn show_commit,
421 show_object_fn show_object,
422 void *show_data)
423{
Matthew DeVoref447a492018-08-13 11:14:28 -0700424 struct traversal_context ctx;
425 ctx.revs = revs;
426 ctx.show_commit = show_commit;
427 ctx.show_object = show_object;
428 ctx.show_data = show_data;
Matthew DeVore94301472019-06-27 15:54:05 -0700429 ctx.filter = NULL;
Matthew DeVoref447a492018-08-13 11:14:28 -0700430 do_traverse(&ctx);
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000431}
432
433void traverse_commit_list_filtered(
434 struct list_objects_filter_options *filter_options,
435 struct rev_info *revs,
436 show_commit_fn show_commit,
437 show_object_fn show_object,
438 void *show_data,
439 struct oidset *omitted)
440{
Matthew DeVoref447a492018-08-13 11:14:28 -0700441 struct traversal_context ctx;
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000442
Matthew DeVoref447a492018-08-13 11:14:28 -0700443 ctx.revs = revs;
444 ctx.show_object = show_object;
445 ctx.show_commit = show_commit;
446 ctx.show_data = show_data;
Matthew DeVore94301472019-06-27 15:54:05 -0700447 ctx.filter = list_objects_filter__init(omitted, filter_options);
Matthew DeVoref447a492018-08-13 11:14:28 -0700448 do_traverse(&ctx);
Matthew DeVore94301472019-06-27 15:54:05 -0700449 list_objects_filter__free(ctx.filter);
Jeff Hostetler25ec7bc2017-11-21 20:58:50 +0000450}