cocci: remove 'unused.cocci'
[git.git] / list-objects.c
blobdf18d103063dccb4661f7d809106cc2b1c006a35
1 #include "cache.h"
2 #include "tag.h"
3 #include "commit.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "tree.h"
7 #include "blob.h"
8 #include "diff.h"
9 #include "tree-walk.h"
10 #include "revision.h"
11 #include "list-objects.h"
12 #include "list-objects-filter.h"
13 #include "list-objects-filter-options.h"
14 #include "packfile.h"
15 #include "object-store.h"
16 #include "trace.h"
18 struct traversal_context {
19 struct rev_info *revs;
20 show_object_fn show_object;
21 show_commit_fn show_commit;
22 void *show_data;
23 struct filter *filter;
26 static void show_commit(struct traversal_context *ctx,
27 struct commit *commit)
29 if (!ctx->show_commit)
30 return;
31 ctx->show_commit(commit, ctx->show_data);
34 static void show_object(struct traversal_context *ctx,
35 struct object *object,
36 const char *name)
38 if (!ctx->show_object)
39 return;
40 ctx->show_object(object, name, ctx->show_data);
43 static void process_blob(struct traversal_context *ctx,
44 struct blob *blob,
45 struct strbuf *path,
46 const char *name)
48 struct object *obj = &blob->object;
49 size_t pathlen;
50 enum list_objects_filter_result r;
52 if (!ctx->revs->blob_objects)
53 return;
54 if (!obj)
55 die("bad blob object");
56 if (obj->flags & (UNINTERESTING | SEEN))
57 return;
60 * Pre-filter known-missing objects when explicitly requested.
61 * Otherwise, a missing object error message may be reported
62 * later (depending on other filtering criteria).
64 * Note that this "--exclude-promisor-objects" pre-filtering
65 * may cause the actual filter to report an incomplete list
66 * of missing objects.
68 if (ctx->revs->exclude_promisor_objects &&
69 !repo_has_object_file(the_repository, &obj->oid) &&
70 is_promisor_object(&obj->oid))
71 return;
73 pathlen = path->len;
74 strbuf_addstr(path, name);
75 r = list_objects_filter__filter_object(ctx->revs->repo,
76 LOFS_BLOB, obj,
77 path->buf, &path->buf[pathlen],
78 ctx->filter);
79 if (r & LOFR_MARK_SEEN)
80 obj->flags |= SEEN;
81 if (r & LOFR_DO_SHOW)
82 show_object(ctx, obj, path->buf);
83 strbuf_setlen(path, pathlen);
86 static void process_tree(struct traversal_context *ctx,
87 struct tree *tree,
88 struct strbuf *base,
89 const char *name);
91 static void process_tree_contents(struct traversal_context *ctx,
92 struct tree *tree,
93 struct strbuf *base)
95 struct tree_desc desc;
96 struct name_entry entry;
97 enum interesting match = ctx->revs->diffopt.pathspec.nr == 0 ?
98 all_entries_interesting : entry_not_interesting;
100 init_tree_desc(&desc, tree->buffer, tree->size);
102 while (tree_entry(&desc, &entry)) {
103 if (match != all_entries_interesting) {
104 match = tree_entry_interesting(ctx->revs->repo->index,
105 &entry, base, 0,
106 &ctx->revs->diffopt.pathspec);
107 if (match == all_entries_not_interesting)
108 break;
109 if (match == entry_not_interesting)
110 continue;
113 if (S_ISDIR(entry.mode)) {
114 struct tree *t = lookup_tree(ctx->revs->repo, &entry.oid);
115 if (!t) {
116 die(_("entry '%s' in tree %s has tree mode, "
117 "but is not a tree"),
118 entry.path, oid_to_hex(&tree->object.oid));
120 t->object.flags |= NOT_USER_GIVEN;
121 process_tree(ctx, t, base, entry.path);
123 else if (S_ISGITLINK(entry.mode))
124 ; /* ignore gitlink */
125 else {
126 struct blob *b = lookup_blob(ctx->revs->repo, &entry.oid);
127 if (!b) {
128 die(_("entry '%s' in tree %s has blob mode, "
129 "but is not a blob"),
130 entry.path, oid_to_hex(&tree->object.oid));
132 b->object.flags |= NOT_USER_GIVEN;
133 process_blob(ctx, b, base, entry.path);
138 static void process_tree(struct traversal_context *ctx,
139 struct tree *tree,
140 struct strbuf *base,
141 const char *name)
143 struct object *obj = &tree->object;
144 struct rev_info *revs = ctx->revs;
145 int baselen = base->len;
146 enum list_objects_filter_result r;
147 int failed_parse;
149 if (!revs->tree_objects)
150 return;
151 if (!obj)
152 die("bad tree object");
153 if (obj->flags & (UNINTERESTING | SEEN))
154 return;
155 if (revs->include_check_obj &&
156 !revs->include_check_obj(&tree->object, revs->include_check_data))
157 return;
159 failed_parse = parse_tree_gently(tree, 1);
160 if (failed_parse) {
161 if (revs->ignore_missing_links)
162 return;
165 * Pre-filter known-missing tree objects when explicitly
166 * requested. This may cause the actual filter to report
167 * an incomplete list of missing objects.
169 if (revs->exclude_promisor_objects &&
170 is_promisor_object(&obj->oid))
171 return;
173 if (!revs->do_not_die_on_missing_tree)
174 die("bad tree object %s", oid_to_hex(&obj->oid));
177 strbuf_addstr(base, name);
178 r = list_objects_filter__filter_object(ctx->revs->repo,
179 LOFS_BEGIN_TREE, obj,
180 base->buf, &base->buf[baselen],
181 ctx->filter);
182 if (r & LOFR_MARK_SEEN)
183 obj->flags |= SEEN;
184 if (r & LOFR_DO_SHOW)
185 show_object(ctx, obj, base->buf);
186 if (base->len)
187 strbuf_addch(base, '/');
189 if (r & LOFR_SKIP_TREE)
190 trace_printf("Skipping contents of tree %s...\n", base->buf);
191 else if (!failed_parse)
192 process_tree_contents(ctx, tree, base);
194 r = list_objects_filter__filter_object(ctx->revs->repo,
195 LOFS_END_TREE, obj,
196 base->buf, &base->buf[baselen],
197 ctx->filter);
198 if (r & LOFR_MARK_SEEN)
199 obj->flags |= SEEN;
200 if (r & LOFR_DO_SHOW)
201 show_object(ctx, obj, base->buf);
203 strbuf_setlen(base, baselen);
204 free_tree_buffer(tree);
207 static void process_tag(struct traversal_context *ctx,
208 struct tag *tag,
209 const char *name)
211 enum list_objects_filter_result r;
213 r = list_objects_filter__filter_object(ctx->revs->repo, LOFS_TAG,
214 &tag->object, NULL, NULL,
215 ctx->filter);
216 if (r & LOFR_MARK_SEEN)
217 tag->object.flags |= SEEN;
218 if (r & LOFR_DO_SHOW)
219 show_object(ctx, &tag->object, name);
222 static void mark_edge_parents_uninteresting(struct commit *commit,
223 struct rev_info *revs,
224 show_edge_fn show_edge)
226 struct commit_list *parents;
228 for (parents = commit->parents; parents; parents = parents->next) {
229 struct commit *parent = parents->item;
230 if (!(parent->object.flags & UNINTERESTING))
231 continue;
232 mark_tree_uninteresting(revs->repo,
233 repo_get_commit_tree(the_repository, parent));
234 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
235 parent->object.flags |= SHOWN;
236 show_edge(parent);
241 static void add_edge_parents(struct commit *commit,
242 struct rev_info *revs,
243 show_edge_fn show_edge,
244 struct oidset *set)
246 struct commit_list *parents;
248 for (parents = commit->parents; parents; parents = parents->next) {
249 struct commit *parent = parents->item;
250 struct tree *tree = repo_get_commit_tree(the_repository,
251 parent);
253 if (!tree)
254 continue;
256 oidset_insert(set, &tree->object.oid);
258 if (!(parent->object.flags & UNINTERESTING))
259 continue;
260 tree->object.flags |= UNINTERESTING;
262 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
263 parent->object.flags |= SHOWN;
264 show_edge(parent);
269 void mark_edges_uninteresting(struct rev_info *revs,
270 show_edge_fn show_edge,
271 int sparse)
273 struct commit_list *list;
274 int i;
276 if (sparse) {
277 struct oidset set;
278 oidset_init(&set, 16);
280 for (list = revs->commits; list; list = list->next) {
281 struct commit *commit = list->item;
282 struct tree *tree = repo_get_commit_tree(the_repository,
283 commit);
285 if (commit->object.flags & UNINTERESTING)
286 tree->object.flags |= UNINTERESTING;
288 oidset_insert(&set, &tree->object.oid);
289 add_edge_parents(commit, revs, show_edge, &set);
292 mark_trees_uninteresting_sparse(revs->repo, &set);
293 oidset_clear(&set);
294 } else {
295 for (list = revs->commits; list; list = list->next) {
296 struct commit *commit = list->item;
297 if (commit->object.flags & UNINTERESTING) {
298 mark_tree_uninteresting(revs->repo,
299 repo_get_commit_tree(the_repository, commit));
300 if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
301 commit->object.flags |= SHOWN;
302 show_edge(commit);
304 continue;
306 mark_edge_parents_uninteresting(commit, revs, show_edge);
310 if (revs->edge_hint_aggressive) {
311 for (i = 0; i < revs->cmdline.nr; i++) {
312 struct object *obj = revs->cmdline.rev[i].item;
313 struct commit *commit = (struct commit *)obj;
314 if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
315 continue;
316 mark_tree_uninteresting(revs->repo,
317 repo_get_commit_tree(the_repository, commit));
318 if (!(obj->flags & SHOWN)) {
319 obj->flags |= SHOWN;
320 show_edge(commit);
326 static void add_pending_tree(struct rev_info *revs, struct tree *tree)
328 add_pending_object(revs, &tree->object, "");
331 static void traverse_non_commits(struct traversal_context *ctx,
332 struct strbuf *base)
334 int i;
336 assert(base->len == 0);
338 for (i = 0; i < ctx->revs->pending.nr; i++) {
339 struct object_array_entry *pending = ctx->revs->pending.objects + i;
340 struct object *obj = pending->item;
341 const char *name = pending->name;
342 const char *path = pending->path;
343 if (obj->flags & (UNINTERESTING | SEEN))
344 continue;
345 if (obj->type == OBJ_TAG) {
346 process_tag(ctx, (struct tag *)obj, name);
347 continue;
349 if (!path)
350 path = "";
351 if (obj->type == OBJ_TREE) {
352 process_tree(ctx, (struct tree *)obj, base, path);
353 continue;
355 if (obj->type == OBJ_BLOB) {
356 process_blob(ctx, (struct blob *)obj, base, path);
357 continue;
359 die("unknown pending object %s (%s)",
360 oid_to_hex(&obj->oid), name);
362 object_array_clear(&ctx->revs->pending);
365 static void do_traverse(struct traversal_context *ctx)
367 struct commit *commit;
368 struct strbuf csp; /* callee's scratch pad */
369 strbuf_init(&csp, PATH_MAX);
371 while ((commit = get_revision(ctx->revs)) != NULL) {
372 enum list_objects_filter_result r;
374 r = list_objects_filter__filter_object(ctx->revs->repo,
375 LOFS_COMMIT, &commit->object,
376 NULL, NULL, ctx->filter);
379 * an uninteresting boundary commit may not have its tree
380 * parsed yet, but we are not going to show them anyway
382 if (!ctx->revs->tree_objects)
383 ; /* do not bother loading tree */
384 else if (repo_get_commit_tree(the_repository, commit)) {
385 struct tree *tree = repo_get_commit_tree(the_repository,
386 commit);
387 tree->object.flags |= NOT_USER_GIVEN;
388 add_pending_tree(ctx->revs, tree);
389 } else if (commit->object.parsed) {
390 die(_("unable to load root tree for commit %s"),
391 oid_to_hex(&commit->object.oid));
394 if (r & LOFR_MARK_SEEN)
395 commit->object.flags |= SEEN;
396 if (r & LOFR_DO_SHOW)
397 show_commit(ctx, commit);
399 if (ctx->revs->tree_blobs_in_commit_order)
401 * NEEDSWORK: Adding the tree and then flushing it here
402 * needs a reallocation for each commit. Can we pass the
403 * tree directory without allocation churn?
405 traverse_non_commits(ctx, &csp);
407 traverse_non_commits(ctx, &csp);
408 strbuf_release(&csp);
411 void traverse_commit_list_filtered(
412 struct rev_info *revs,
413 show_commit_fn show_commit,
414 show_object_fn show_object,
415 void *show_data,
416 struct oidset *omitted)
418 struct traversal_context ctx = {
419 .revs = revs,
420 .show_object = show_object,
421 .show_commit = show_commit,
422 .show_data = show_data,
425 if (revs->filter.choice)
426 ctx.filter = list_objects_filter__init(omitted, &revs->filter);
428 do_traverse(&ctx);
430 if (ctx.filter)
431 list_objects_filter__free(ctx.filter);