]> git.ipfire.org Git - thirdparty/git.git/blame - list-objects.c
list-objects: support filtering by tag and commit
[thirdparty/git.git] / list-objects.c
CommitLineData
c64ed70d
JH
1#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"
25ec7bca
JH
10#include "list-objects-filter.h"
11#include "list-objects-filter-options.h"
df11e196 12#include "packfile.h"
cbd53a21 13#include "object-store.h"
8b10a206 14#include "trace.h"
c64ed70d 15
f447a499
MD
16struct traversal_context {
17 struct rev_info *revs;
18 show_object_fn show_object;
19 show_commit_fn show_commit;
20 void *show_data;
9430147c 21 struct filter *filter;
f447a499
MD
22};
23
24static void process_blob(struct traversal_context *ctx,
c64ed70d 25 struct blob *blob,
bd64516a 26 struct strbuf *path,
f447a499 27 const char *name)
c64ed70d
JH
28{
29 struct object *obj = &blob->object;
de1e67d0 30 size_t pathlen;
9430147c 31 enum list_objects_filter_result r;
c64ed70d 32
f447a499 33 if (!ctx->revs->blob_objects)
c64ed70d 34 return;
a301b0c8
MK
35 if (!obj)
36 die("bad blob object");
c64ed70d
JH
37 if (obj->flags & (UNINTERESTING | SEEN))
38 return;
de1e67d0 39
df11e196
JT
40 /*
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 */
f447a499 49 if (ctx->revs->exclude_promisor_objects &&
df11e196
JT
50 !has_object_file(&obj->oid) &&
51 is_promisor_object(&obj->oid))
52 return;
53
de1e67d0
JK
54 pathlen = path->len;
55 strbuf_addstr(path, name);
9430147c
MD
56 r = list_objects_filter__filter_object(ctx->revs->repo,
57 LOFS_BLOB, obj,
58 path->buf, &path->buf[pathlen],
59 ctx->filter);
25ec7bca
JH
60 if (r & LOFR_MARK_SEEN)
61 obj->flags |= SEEN;
62 if (r & LOFR_DO_SHOW)
f447a499 63 ctx->show_object(obj, path->buf, ctx->show_data);
de1e67d0 64 strbuf_setlen(path, pathlen);
c64ed70d
JH
65}
66
6e2f441b
LT
67/*
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 */
f447a499 89static void process_gitlink(struct traversal_context *ctx,
6e2f441b 90 const unsigned char *sha1,
bd64516a 91 struct strbuf *path,
f447a499 92 const char *name)
6e2f441b
LT
93{
94 /* Nothing to do */
95}
96
92024891 97static void process_tree(struct traversal_context *ctx,
c64ed70d 98 struct tree *tree,
cc5fa2fd 99 struct strbuf *base,
92024891
MD
100 const char *name);
101
102static void process_tree_contents(struct traversal_context *ctx,
103 struct tree *tree,
104 struct strbuf *base)
c64ed70d 105{
c64ed70d
JH
106 struct tree_desc desc;
107 struct name_entry entry;
92024891
MD
108 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) {
67022e02
NTND
115 match = tree_entry_interesting(ctx->revs->repo->index,
116 &entry, base, 0,
92024891
MD
117 &ctx->revs->diffopt.pathspec);
118 if (match == all_entries_not_interesting)
119 break;
120 if (match == entry_not_interesting)
121 continue;
122 }
123
99c9aa95 124 if (S_ISDIR(entry.mode)) {
ea82b2a0 125 struct tree *t = lookup_tree(ctx->revs->repo, &entry.oid);
b49e74ea
TB
126 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 }
99c9aa95
MD
131 t->object.flags |= NOT_USER_GIVEN;
132 process_tree(ctx, t, base, entry.path);
133 }
92024891 134 else if (S_ISGITLINK(entry.mode))
ea82b2a0 135 process_gitlink(ctx, entry.oid.hash,
92024891 136 base, entry.path);
99c9aa95 137 else {
ea82b2a0 138 struct blob *b = lookup_blob(ctx->revs->repo, &entry.oid);
23c20445
TB
139 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 }
99c9aa95
MD
144 b->object.flags |= NOT_USER_GIVEN;
145 process_blob(ctx, b, base, entry.path);
146 }
92024891
MD
147 }
148}
149
f447a499 150static void process_tree(struct traversal_context *ctx,
c64ed70d 151 struct tree *tree,
cc5fa2fd 152 struct strbuf *base,
f447a499 153 const char *name)
c64ed70d
JH
154{
155 struct object *obj = &tree->object;
f447a499 156 struct rev_info *revs = ctx->revs;
cc5fa2fd 157 int baselen = base->len;
9430147c 158 enum list_objects_filter_result r;
7c0fe330 159 int failed_parse;
c64ed70d
JH
160
161 if (!revs->tree_objects)
162 return;
a301b0c8
MK
163 if (!obj)
164 die("bad tree object");
c64ed70d
JH
165 if (obj->flags & (UNINTERESTING | SEEN))
166 return;
7c0fe330
MD
167
168 failed_parse = parse_tree_gently(tree, 1);
169 if (failed_parse) {
2db1a43f
VM
170 if (revs->ignore_missing_links)
171 return;
df11e196
JT
172
173 /*
174 * Pre-filter known-missing tree objects when explicitly
175 * requested. This may cause the actual filter to report
176 * an incomplete list of missing objects.
177 */
178 if (revs->exclude_promisor_objects &&
179 is_promisor_object(&obj->oid))
180 return;
181
7c0fe330
MD
182 if (!revs->do_not_die_on_missing_tree)
183 die("bad tree object %s", oid_to_hex(&obj->oid));
2db1a43f 184 }
13528ab3 185
13528ab3 186 strbuf_addstr(base, name);
9430147c
MD
187 r = list_objects_filter__filter_object(ctx->revs->repo,
188 LOFS_BEGIN_TREE, obj,
189 base->buf, &base->buf[baselen],
190 ctx->filter);
25ec7bca
JH
191 if (r & LOFR_MARK_SEEN)
192 obj->flags |= SEEN;
193 if (r & LOFR_DO_SHOW)
f447a499 194 ctx->show_object(obj, base->buf, ctx->show_data);
13528ab3
JK
195 if (base->len)
196 strbuf_addch(base, '/');
cc5fa2fd 197
8b10a206
MD
198 if (r & LOFR_SKIP_TREE)
199 trace_printf("Skipping contents of tree %s...\n", base->buf);
200 else if (!failed_parse)
7c0fe330 201 process_tree_contents(ctx, tree, base);
c64ed70d 202
9430147c
MD
203 r = list_objects_filter__filter_object(ctx->revs->repo,
204 LOFS_END_TREE, obj,
205 base->buf, &base->buf[baselen],
206 ctx->filter);
207 if (r & LOFR_MARK_SEEN)
208 obj->flags |= SEEN;
209 if (r & LOFR_DO_SHOW)
210 ctx->show_object(obj, base->buf, ctx->show_data);
25ec7bca 211
cc5fa2fd 212 strbuf_setlen(base, baselen);
6e454b9a 213 free_tree_buffer(tree);
c64ed70d
JH
214}
215
628d81be
PS
216static void process_tag(struct traversal_context *ctx,
217 struct tag *tag,
218 const char *name)
219{
9a2a4f95
PS
220 enum list_objects_filter_result r;
221
222 r = list_objects_filter__filter_object(ctx->revs->repo, LOFS_TAG,
223 &tag->object, NULL, NULL,
224 ctx->filter);
225 if (r & LOFR_MARK_SEEN)
226 tag->object.flags |= SEEN;
227 if (r & LOFR_DO_SHOW)
228 ctx->show_object(&tag->object, name, ctx->show_data);
628d81be
PS
229}
230
8d1d8f83
JH
231static void mark_edge_parents_uninteresting(struct commit *commit,
232 struct rev_info *revs,
233 show_edge_fn show_edge)
234{
235 struct commit_list *parents;
236
237 for (parents = commit->parents; parents; parents = parents->next) {
238 struct commit *parent = parents->item;
239 if (!(parent->object.flags & UNINTERESTING))
240 continue;
b3c7eef9 241 mark_tree_uninteresting(revs->repo, get_commit_tree(parent));
8d1d8f83
JH
242 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
243 parent->object.flags |= SHOWN;
244 show_edge(parent);
245 }
246 }
247}
248
4f6d26b1
DS
249static void add_edge_parents(struct commit *commit,
250 struct rev_info *revs,
251 show_edge_fn show_edge,
252 struct oidset *set)
253{
254 struct commit_list *parents;
255
256 for (parents = commit->parents; parents; parents = parents->next) {
257 struct commit *parent = parents->item;
258 struct tree *tree = get_commit_tree(parent);
259
260 if (!tree)
261 continue;
262
263 oidset_insert(set, &tree->object.oid);
264
265 if (!(parent->object.flags & UNINTERESTING))
266 continue;
267 tree->object.flags |= UNINTERESTING;
268
269 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
270 parent->object.flags |= SHOWN;
271 show_edge(parent);
272 }
273 }
274}
275
276void mark_edges_uninteresting(struct rev_info *revs,
277 show_edge_fn show_edge,
278 int sparse)
8d1d8f83 279{
e76a5fb4 280 struct commit_list *list;
fbd4a703
NTND
281 int i;
282
4f6d26b1
DS
283 if (sparse) {
284 struct oidset set;
285 oidset_init(&set, 16);
286
287 for (list = revs->commits; list; list = list->next) {
288 struct commit *commit = list->item;
289 struct tree *tree = get_commit_tree(commit);
8d1d8f83 290
4f6d26b1
DS
291 if (commit->object.flags & UNINTERESTING)
292 tree->object.flags |= UNINTERESTING;
293
294 oidset_insert(&set, &tree->object.oid);
295 add_edge_parents(commit, revs, show_edge, &set);
296 }
297
298 mark_trees_uninteresting_sparse(revs->repo, &set);
299 oidset_clear(&set);
300 } else {
301 for (list = revs->commits; list; list = list->next) {
302 struct commit *commit = list->item;
303 if (commit->object.flags & UNINTERESTING) {
304 mark_tree_uninteresting(revs->repo,
305 get_commit_tree(commit));
306 if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
307 commit->object.flags |= SHOWN;
308 show_edge(commit);
309 }
310 continue;
fbd4a703 311 }
4f6d26b1 312 mark_edge_parents_uninteresting(commit, revs, show_edge);
8d1d8f83 313 }
8d1d8f83 314 }
4f6d26b1 315
1684c1b2 316 if (revs->edge_hint_aggressive) {
200abe74
JK
317 for (i = 0; i < revs->cmdline.nr; i++) {
318 struct object *obj = revs->cmdline.rev[i].item;
319 struct commit *commit = (struct commit *)obj;
320 if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
321 continue;
b3c7eef9
NTND
322 mark_tree_uninteresting(revs->repo,
323 get_commit_tree(commit));
200abe74
JK
324 if (!(obj->flags & SHOWN)) {
325 obj->flags |= SHOWN;
326 show_edge(commit);
327 }
fbd4a703
NTND
328 }
329 }
8d1d8f83
JH
330}
331
8d2dfc49
LT
332static void add_pending_tree(struct rev_info *revs, struct tree *tree)
333{
334 add_pending_object(revs, &tree->object, "");
335}
336
f447a499
MD
337static void traverse_trees_and_blobs(struct traversal_context *ctx,
338 struct strbuf *base)
c64ed70d
JH
339{
340 int i;
c64ed70d 341
91904f56
SB
342 assert(base->len == 0);
343
f447a499
MD
344 for (i = 0; i < ctx->revs->pending.nr; i++) {
345 struct object_array_entry *pending = ctx->revs->pending.objects + i;
c64ed70d
JH
346 struct object *obj = pending->item;
347 const char *name = pending->name;
20739490 348 const char *path = pending->path;
c64ed70d
JH
349 if (obj->flags & (UNINTERESTING | SEEN))
350 continue;
351 if (obj->type == OBJ_TAG) {
628d81be 352 process_tag(ctx, (struct tag *)obj, name);
c64ed70d
JH
353 continue;
354 }
20739490
JK
355 if (!path)
356 path = "";
c64ed70d 357 if (obj->type == OBJ_TREE) {
f447a499 358 process_tree(ctx, (struct tree *)obj, base, path);
c64ed70d
JH
359 continue;
360 }
361 if (obj->type == OBJ_BLOB) {
f447a499 362 process_blob(ctx, (struct blob *)obj, base, path);
c64ed70d
JH
363 continue;
364 }
365 die("unknown pending object %s (%s)",
f2fd0760 366 oid_to_hex(&obj->oid), name);
c64ed70d 367 }
f447a499 368 object_array_clear(&ctx->revs->pending);
91904f56
SB
369}
370
f447a499 371static void do_traverse(struct traversal_context *ctx)
91904f56
SB
372{
373 struct commit *commit;
374 struct strbuf csp; /* callee's scratch pad */
375 strbuf_init(&csp, PATH_MAX);
376
f447a499 377 while ((commit = get_revision(ctx->revs)) != NULL) {
9a2a4f95
PS
378 enum list_objects_filter_result r;
379
380 r = list_objects_filter__filter_object(ctx->revs->repo,
381 LOFS_COMMIT, &commit->object,
382 NULL, NULL, ctx->filter);
383
91904f56
SB
384 /*
385 * an uninteresting boundary commit may not have its tree
386 * parsed yet, but we are not going to show them anyway
387 */
72ed80c7
JK
388 if (!ctx->revs->tree_objects)
389 ; /* do not bother loading tree */
390 else if (get_commit_tree(commit)) {
99c9aa95
MD
391 struct tree *tree = get_commit_tree(commit);
392 tree->object.flags |= NOT_USER_GIVEN;
393 add_pending_tree(ctx->revs, tree);
97dd512a
JK
394 } else if (commit->object.parsed) {
395 die(_("unable to load root tree for commit %s"),
396 oid_to_hex(&commit->object.oid));
99c9aa95 397 }
9a2a4f95
PS
398
399 if (r & LOFR_MARK_SEEN)
400 commit->object.flags |= SEEN;
401 if (r & LOFR_DO_SHOW)
402 ctx->show_commit(commit, ctx->show_data);
ce5b6f9b 403
f447a499 404 if (ctx->revs->tree_blobs_in_commit_order)
ce5b6f9b
SB
405 /*
406 * NEEDSWORK: Adding the tree and then flushing it here
407 * needs a reallocation for each commit. Can we pass the
408 * tree directory without allocation churn?
409 */
f447a499 410 traverse_trees_and_blobs(ctx, &csp);
91904f56 411 }
f447a499 412 traverse_trees_and_blobs(ctx, &csp);
91904f56 413 strbuf_release(&csp);
c64ed70d 414}
25ec7bca
JH
415
416void traverse_commit_list(struct rev_info *revs,
417 show_commit_fn show_commit,
418 show_object_fn show_object,
419 void *show_data)
420{
f447a499
MD
421 struct traversal_context ctx;
422 ctx.revs = revs;
423 ctx.show_commit = show_commit;
424 ctx.show_object = show_object;
425 ctx.show_data = show_data;
9430147c 426 ctx.filter = NULL;
f447a499 427 do_traverse(&ctx);
25ec7bca
JH
428}
429
430void traverse_commit_list_filtered(
431 struct list_objects_filter_options *filter_options,
432 struct rev_info *revs,
433 show_commit_fn show_commit,
434 show_object_fn show_object,
435 void *show_data,
436 struct oidset *omitted)
437{
f447a499 438 struct traversal_context ctx;
f447a499
MD
439
440 ctx.revs = revs;
441 ctx.show_object = show_object;
442 ctx.show_commit = show_commit;
443 ctx.show_data = show_data;
9430147c 444 ctx.filter = list_objects_filter__init(omitted, filter_options);
f447a499 445 do_traverse(&ctx);
9430147c 446 list_objects_filter__free(ctx.filter);
25ec7bca 447}