9 #include "list-objects.h"
10 #include "list-objects-filter.h"
11 #include "list-objects-filter-options.h"
13 #include "object-store.h"
15 static void process_blob(struct rev_info
*revs
,
21 filter_object_fn filter_fn
,
24 struct object
*obj
= &blob
->object
;
26 enum list_objects_filter_result r
= LOFR_MARK_SEEN
| LOFR_DO_SHOW
;
28 if (!revs
->blob_objects
)
31 die("bad blob object");
32 if (obj
->flags
& (UNINTERESTING
| SEEN
))
36 * Pre-filter known-missing objects when explicitly requested.
37 * Otherwise, a missing object error message may be reported
38 * later (depending on other filtering criteria).
40 * Note that this "--exclude-promisor-objects" pre-filtering
41 * may cause the actual filter to report an incomplete list
44 if (revs
->exclude_promisor_objects
&&
45 !has_object_file(&obj
->oid
) &&
46 is_promisor_object(&obj
->oid
))
50 strbuf_addstr(path
, name
);
51 if (!(obj
->flags
& USER_GIVEN
) && filter_fn
)
52 r
= filter_fn(LOFS_BLOB
, obj
,
53 path
->buf
, &path
->buf
[pathlen
],
55 if (r
& LOFR_MARK_SEEN
)
58 show(obj
, path
->buf
, cb_data
);
59 strbuf_setlen(path
, pathlen
);
63 * Processing a gitlink entry currently does nothing, since
64 * we do not recurse into the subproject.
66 * We *could* eventually add a flag that actually does that,
67 * which would involve:
68 * - is the subproject actually checked out?
69 * - if so, see if the subproject has already been added
70 * to the alternates list, and add it if not.
71 * - process the commit (or tag) the gitlink points to
74 * However, it's unclear whether there is really ever any
75 * reason to see superprojects and subprojects as such a
76 * "unified" object pool (potentially resulting in a totally
77 * humongous pack - avoiding which was the whole point of
78 * having gitlinks in the first place!).
80 * So for now, there is just a note that we *could* follow
81 * the link, and how to do it. Whether it necessarily makes
82 * any sense what-so-ever to ever do that is another issue.
84 static void process_gitlink(struct rev_info
*revs
,
85 const unsigned char *sha1
,
94 static void process_tree(struct rev_info
*revs
,
100 filter_object_fn filter_fn
,
103 struct object
*obj
= &tree
->object
;
104 struct tree_desc desc
;
105 struct name_entry entry
;
106 enum interesting match
= revs
->diffopt
.pathspec
.nr
== 0 ?
107 all_entries_interesting
: entry_not_interesting
;
108 int baselen
= base
->len
;
109 enum list_objects_filter_result r
= LOFR_MARK_SEEN
| LOFR_DO_SHOW
;
110 int gently
= revs
->ignore_missing_links
||
111 revs
->exclude_promisor_objects
;
113 if (!revs
->tree_objects
)
116 die("bad tree object");
117 if (obj
->flags
& (UNINTERESTING
| SEEN
))
119 if (parse_tree_gently(tree
, gently
) < 0) {
120 if (revs
->ignore_missing_links
)
124 * Pre-filter known-missing tree objects when explicitly
125 * requested. This may cause the actual filter to report
126 * an incomplete list of missing objects.
128 if (revs
->exclude_promisor_objects
&&
129 is_promisor_object(&obj
->oid
))
132 die("bad tree object %s", oid_to_hex(&obj
->oid
));
135 strbuf_addstr(base
, name
);
136 if (!(obj
->flags
& USER_GIVEN
) && filter_fn
)
137 r
= filter_fn(LOFS_BEGIN_TREE
, obj
,
138 base
->buf
, &base
->buf
[baselen
],
140 if (r
& LOFR_MARK_SEEN
)
142 if (r
& LOFR_DO_SHOW
)
143 show(obj
, base
->buf
, cb_data
);
145 strbuf_addch(base
, '/');
147 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
149 while (tree_entry(&desc
, &entry
)) {
150 if (match
!= all_entries_interesting
) {
151 match
= tree_entry_interesting(&entry
, base
, 0,
152 &revs
->diffopt
.pathspec
);
153 if (match
== all_entries_not_interesting
)
155 if (match
== entry_not_interesting
)
159 if (S_ISDIR(entry
.mode
))
161 lookup_tree(the_repository
, entry
.oid
),
162 show
, base
, entry
.path
,
163 cb_data
, filter_fn
, filter_data
);
164 else if (S_ISGITLINK(entry
.mode
))
165 process_gitlink(revs
, entry
.oid
->hash
,
166 show
, base
, entry
.path
,
170 lookup_blob(the_repository
, entry
.oid
),
171 show
, base
, entry
.path
,
172 cb_data
, filter_fn
, filter_data
);
175 if (!(obj
->flags
& USER_GIVEN
) && filter_fn
) {
176 r
= filter_fn(LOFS_END_TREE
, obj
,
177 base
->buf
, &base
->buf
[baselen
],
179 if (r
& LOFR_MARK_SEEN
)
181 if (r
& LOFR_DO_SHOW
)
182 show(obj
, base
->buf
, cb_data
);
185 strbuf_setlen(base
, baselen
);
186 free_tree_buffer(tree
);
189 static void mark_edge_parents_uninteresting(struct commit
*commit
,
190 struct rev_info
*revs
,
191 show_edge_fn show_edge
)
193 struct commit_list
*parents
;
195 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
196 struct commit
*parent
= parents
->item
;
197 if (!(parent
->object
.flags
& UNINTERESTING
))
199 mark_tree_uninteresting(get_commit_tree(parent
));
200 if (revs
->edge_hint
&& !(parent
->object
.flags
& SHOWN
)) {
201 parent
->object
.flags
|= SHOWN
;
207 void mark_edges_uninteresting(struct rev_info
*revs
, show_edge_fn show_edge
)
209 struct commit_list
*list
;
212 for (list
= revs
->commits
; list
; list
= list
->next
) {
213 struct commit
*commit
= list
->item
;
215 if (commit
->object
.flags
& UNINTERESTING
) {
216 mark_tree_uninteresting(get_commit_tree(commit
));
217 if (revs
->edge_hint_aggressive
&& !(commit
->object
.flags
& SHOWN
)) {
218 commit
->object
.flags
|= SHOWN
;
223 mark_edge_parents_uninteresting(commit
, revs
, show_edge
);
225 if (revs
->edge_hint_aggressive
) {
226 for (i
= 0; i
< revs
->cmdline
.nr
; i
++) {
227 struct object
*obj
= revs
->cmdline
.rev
[i
].item
;
228 struct commit
*commit
= (struct commit
*)obj
;
229 if (obj
->type
!= OBJ_COMMIT
|| !(obj
->flags
& UNINTERESTING
))
231 mark_tree_uninteresting(get_commit_tree(commit
));
232 if (!(obj
->flags
& SHOWN
)) {
240 static void add_pending_tree(struct rev_info
*revs
, struct tree
*tree
)
242 add_pending_object(revs
, &tree
->object
, "");
245 static void traverse_trees_and_blobs(struct rev_info
*revs
,
247 show_object_fn show_object
,
249 filter_object_fn filter_fn
,
254 assert(base
->len
== 0);
256 for (i
= 0; i
< revs
->pending
.nr
; i
++) {
257 struct object_array_entry
*pending
= revs
->pending
.objects
+ i
;
258 struct object
*obj
= pending
->item
;
259 const char *name
= pending
->name
;
260 const char *path
= pending
->path
;
261 if (obj
->flags
& (UNINTERESTING
| SEEN
))
263 if (obj
->type
== OBJ_TAG
) {
265 show_object(obj
, name
, show_data
);
270 if (obj
->type
== OBJ_TREE
) {
271 process_tree(revs
, (struct tree
*)obj
, show_object
,
272 base
, path
, show_data
,
273 filter_fn
, filter_data
);
276 if (obj
->type
== OBJ_BLOB
) {
277 process_blob(revs
, (struct blob
*)obj
, show_object
,
278 base
, path
, show_data
,
279 filter_fn
, filter_data
);
282 die("unknown pending object %s (%s)",
283 oid_to_hex(&obj
->oid
), name
);
285 object_array_clear(&revs
->pending
);
288 static void do_traverse(struct rev_info
*revs
,
289 show_commit_fn show_commit
,
290 show_object_fn show_object
,
292 filter_object_fn filter_fn
,
295 struct commit
*commit
;
296 struct strbuf csp
; /* callee's scratch pad */
297 strbuf_init(&csp
, PATH_MAX
);
299 while ((commit
= get_revision(revs
)) != NULL
) {
301 * an uninteresting boundary commit may not have its tree
302 * parsed yet, but we are not going to show them anyway
304 if (get_commit_tree(commit
))
305 add_pending_tree(revs
, get_commit_tree(commit
));
306 show_commit(commit
, show_data
);
308 if (revs
->tree_blobs_in_commit_order
)
310 * NEEDSWORK: Adding the tree and then flushing it here
311 * needs a reallocation for each commit. Can we pass the
312 * tree directory without allocation churn?
314 traverse_trees_and_blobs(revs
, &csp
,
315 show_object
, show_data
,
316 filter_fn
, filter_data
);
318 traverse_trees_and_blobs(revs
, &csp
,
319 show_object
, show_data
,
320 filter_fn
, filter_data
);
321 strbuf_release(&csp
);
324 void traverse_commit_list(struct rev_info
*revs
,
325 show_commit_fn show_commit
,
326 show_object_fn show_object
,
329 do_traverse(revs
, show_commit
, show_object
, show_data
, NULL
, NULL
);
332 void traverse_commit_list_filtered(
333 struct list_objects_filter_options
*filter_options
,
334 struct rev_info
*revs
,
335 show_commit_fn show_commit
,
336 show_object_fn show_object
,
338 struct oidset
*omitted
)
340 filter_object_fn filter_fn
= NULL
;
341 filter_free_fn filter_free_fn
= NULL
;
342 void *filter_data
= NULL
;
344 filter_data
= list_objects_filter__init(omitted
, filter_options
,
345 &filter_fn
, &filter_free_fn
);
346 do_traverse(revs
, show_commit
, show_object
, show_data
,
347 filter_fn
, filter_data
);
348 if (filter_data
&& filter_free_fn
)
349 filter_free_fn(filter_data
);