1 #include "git-compat-util.h"
11 #include "list-objects.h"
12 #include "list-objects-filter.h"
13 #include "list-objects-filter-options.h"
15 #include "object-store-ll.h"
18 struct traversal_context
{
19 struct rev_info
*revs
;
20 show_object_fn show_object
;
21 show_commit_fn show_commit
;
23 struct filter
*filter
;
26 static void show_commit(struct traversal_context
*ctx
,
27 struct commit
*commit
)
29 if (!ctx
->show_commit
)
31 ctx
->show_commit(commit
, ctx
->show_data
);
34 static void show_object(struct traversal_context
*ctx
,
35 struct object
*object
,
38 if (!ctx
->show_object
)
40 ctx
->show_object(object
, name
, ctx
->show_data
);
43 static void process_blob(struct traversal_context
*ctx
,
48 struct object
*obj
= &blob
->object
;
50 enum list_objects_filter_result r
;
52 if (!ctx
->revs
->blob_objects
)
55 die("bad blob object");
56 if (obj
->flags
& (UNINTERESTING
| SEEN
))
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
68 if (ctx
->revs
->exclude_promisor_objects
&&
69 !repo_has_object_file(the_repository
, &obj
->oid
) &&
70 is_promisor_object(&obj
->oid
))
74 strbuf_addstr(path
, name
);
75 r
= list_objects_filter__filter_object(ctx
->revs
->repo
,
77 path
->buf
, &path
->buf
[pathlen
],
79 if (r
& LOFR_MARK_SEEN
)
82 show_object(ctx
, obj
, path
->buf
);
83 strbuf_setlen(path
, pathlen
);
86 static void process_tree(struct traversal_context
*ctx
,
91 static void process_tree_contents(struct traversal_context
*ctx
,
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
,
106 &ctx
->revs
->diffopt
.pathspec
);
107 if (match
== all_entries_not_interesting
)
109 if (match
== entry_not_interesting
)
113 if (S_ISDIR(entry
.mode
)) {
114 struct tree
*t
= lookup_tree(ctx
->revs
->repo
, &entry
.oid
);
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 */
126 struct blob
*b
= lookup_blob(ctx
->revs
->repo
, &entry
.oid
);
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
,
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
;
149 if (!revs
->tree_objects
)
152 die("bad tree object");
153 if (obj
->flags
& (UNINTERESTING
| SEEN
))
155 if (revs
->include_check_obj
&&
156 !revs
->include_check_obj(&tree
->object
, revs
->include_check_data
))
159 failed_parse
= parse_tree_gently(tree
, 1);
161 if (revs
->ignore_missing_links
)
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
))
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
],
182 if (r
& LOFR_MARK_SEEN
)
184 if (r
& LOFR_DO_SHOW
)
185 show_object(ctx
, obj
, base
->buf
);
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
,
196 base
->buf
, &base
->buf
[baselen
],
198 if (r
& LOFR_MARK_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
,
211 enum list_objects_filter_result r
;
213 r
= list_objects_filter__filter_object(ctx
->revs
->repo
, LOFS_TAG
,
214 &tag
->object
, NULL
, NULL
,
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
))
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
;
241 static void add_edge_parents(struct commit
*commit
,
242 struct rev_info
*revs
,
243 show_edge_fn show_edge
,
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
,
256 oidset_insert(set
, &tree
->object
.oid
);
258 if (!(parent
->object
.flags
& UNINTERESTING
))
260 tree
->object
.flags
|= UNINTERESTING
;
262 if (revs
->edge_hint
&& !(parent
->object
.flags
& SHOWN
)) {
263 parent
->object
.flags
|= SHOWN
;
269 void mark_edges_uninteresting(struct rev_info
*revs
,
270 show_edge_fn show_edge
,
273 struct commit_list
*list
;
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
,
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
);
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
;
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
))
316 mark_tree_uninteresting(revs
->repo
,
317 repo_get_commit_tree(the_repository
, commit
));
318 if (!(obj
->flags
& SHOWN
)) {
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
,
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
))
345 if (obj
->type
== OBJ_TAG
) {
346 process_tag(ctx
, (struct tag
*)obj
, name
);
351 if (obj
->type
== OBJ_TREE
) {
352 process_tree(ctx
, (struct tree
*)obj
, base
, path
);
355 if (obj
->type
== OBJ_BLOB
) {
356 process_blob(ctx
, (struct blob
*)obj
, base
, path
);
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
,
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
,
416 struct oidset
*omitted
)
418 struct traversal_context ctx
= {
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
);
431 list_objects_filter__free(ctx
.filter
);