]> git.ipfire.org Git - thirdparty/git.git/blame - list-objects.c
list-objects: store common func args in struct
[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"
c64ed70d 14
f447a499
MD
15struct traversal_context {
16 struct rev_info *revs;
17 show_object_fn show_object;
18 show_commit_fn show_commit;
19 void *show_data;
20 filter_object_fn filter_fn;
21 void *filter_data;
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;
25ec7bca 31 enum list_objects_filter_result r = LOFR_MARK_SEEN | LOFR_DO_SHOW;
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);
f447a499
MD
56 if (!(obj->flags & USER_GIVEN) && ctx->filter_fn)
57 r = ctx->filter_fn(LOFS_BLOB, obj,
58 path->buf, &path->buf[pathlen],
59 ctx->filter_data);
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
f447a499 97static void process_tree(struct traversal_context *ctx,
c64ed70d 98 struct tree *tree,
cc5fa2fd 99 struct strbuf *base,
f447a499 100 const char *name)
c64ed70d
JH
101{
102 struct object *obj = &tree->object;
f447a499 103 struct rev_info *revs = ctx->revs;
c64ed70d
JH
104 struct tree_desc desc;
105 struct name_entry entry;
d688cf07
NTND
106 enum interesting match = revs->diffopt.pathspec.nr == 0 ?
107 all_entries_interesting: entry_not_interesting;
cc5fa2fd 108 int baselen = base->len;
25ec7bca 109 enum list_objects_filter_result r = LOFR_MARK_SEEN | LOFR_DO_SHOW;
df11e196
JT
110 int gently = revs->ignore_missing_links ||
111 revs->exclude_promisor_objects;
c64ed70d
JH
112
113 if (!revs->tree_objects)
114 return;
a301b0c8
MK
115 if (!obj)
116 die("bad tree object");
c64ed70d
JH
117 if (obj->flags & (UNINTERESTING | SEEN))
118 return;
df11e196 119 if (parse_tree_gently(tree, gently) < 0) {
2db1a43f
VM
120 if (revs->ignore_missing_links)
121 return;
df11e196
JT
122
123 /*
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.
127 */
128 if (revs->exclude_promisor_objects &&
129 is_promisor_object(&obj->oid))
130 return;
131
f2fd0760 132 die("bad tree object %s", oid_to_hex(&obj->oid));
2db1a43f 133 }
13528ab3 134
13528ab3 135 strbuf_addstr(base, name);
f447a499
MD
136 if (!(obj->flags & USER_GIVEN) && ctx->filter_fn)
137 r = ctx->filter_fn(LOFS_BEGIN_TREE, obj,
138 base->buf, &base->buf[baselen],
139 ctx->filter_data);
25ec7bca
JH
140 if (r & LOFR_MARK_SEEN)
141 obj->flags |= SEEN;
142 if (r & LOFR_DO_SHOW)
f447a499 143 ctx->show_object(obj, base->buf, ctx->show_data);
13528ab3
JK
144 if (base->len)
145 strbuf_addch(base, '/');
cc5fa2fd 146
6fda5e51 147 init_tree_desc(&desc, tree->buffer, tree->size);
c64ed70d
JH
148
149 while (tree_entry(&desc, &entry)) {
d688cf07 150 if (match != all_entries_interesting) {
97d0b74a
NTND
151 match = tree_entry_interesting(&entry, base, 0,
152 &revs->diffopt.pathspec);
d688cf07 153 if (match == all_entries_not_interesting)
cc5fa2fd 154 break;
d688cf07 155 if (match == entry_not_interesting)
cc5fa2fd 156 continue;
cc5fa2fd
EN
157 }
158
c64ed70d 159 if (S_ISDIR(entry.mode))
f447a499 160 process_tree(ctx,
f86bcc7b 161 lookup_tree(the_repository, entry.oid),
f447a499 162 base, entry.path);
302b9282 163 else if (S_ISGITLINK(entry.mode))
f447a499 164 process_gitlink(ctx, entry.oid->hash, base, entry.path);
c64ed70d 165 else
f447a499 166 process_blob(ctx,
da14a7ff 167 lookup_blob(the_repository, entry.oid),
f447a499 168 base, entry.path);
c64ed70d 169 }
25ec7bca 170
f447a499
MD
171 if (!(obj->flags & USER_GIVEN) && ctx->filter_fn) {
172 r = ctx->filter_fn(LOFS_END_TREE, obj,
173 base->buf, &base->buf[baselen],
174 ctx->filter_data);
25ec7bca
JH
175 if (r & LOFR_MARK_SEEN)
176 obj->flags |= SEEN;
177 if (r & LOFR_DO_SHOW)
f447a499 178 ctx->show_object(obj, base->buf, ctx->show_data);
25ec7bca
JH
179 }
180
cc5fa2fd 181 strbuf_setlen(base, baselen);
6e454b9a 182 free_tree_buffer(tree);
c64ed70d
JH
183}
184
8d1d8f83
JH
185static void mark_edge_parents_uninteresting(struct commit *commit,
186 struct rev_info *revs,
187 show_edge_fn show_edge)
188{
189 struct commit_list *parents;
190
191 for (parents = commit->parents; parents; parents = parents->next) {
192 struct commit *parent = parents->item;
193 if (!(parent->object.flags & UNINTERESTING))
194 continue;
2e27bd77 195 mark_tree_uninteresting(get_commit_tree(parent));
8d1d8f83
JH
196 if (revs->edge_hint && !(parent->object.flags & SHOWN)) {
197 parent->object.flags |= SHOWN;
198 show_edge(parent);
199 }
200 }
201}
202
e76a5fb4 203void mark_edges_uninteresting(struct rev_info *revs, show_edge_fn show_edge)
8d1d8f83 204{
e76a5fb4 205 struct commit_list *list;
fbd4a703
NTND
206 int i;
207
e76a5fb4 208 for (list = revs->commits; list; list = list->next) {
8d1d8f83
JH
209 struct commit *commit = list->item;
210
211 if (commit->object.flags & UNINTERESTING) {
2e27bd77 212 mark_tree_uninteresting(get_commit_tree(commit));
1684c1b2 213 if (revs->edge_hint_aggressive && !(commit->object.flags & SHOWN)) {
fbd4a703
NTND
214 commit->object.flags |= SHOWN;
215 show_edge(commit);
216 }
8d1d8f83
JH
217 continue;
218 }
219 mark_edge_parents_uninteresting(commit, revs, show_edge);
220 }
1684c1b2 221 if (revs->edge_hint_aggressive) {
200abe74
JK
222 for (i = 0; i < revs->cmdline.nr; i++) {
223 struct object *obj = revs->cmdline.rev[i].item;
224 struct commit *commit = (struct commit *)obj;
225 if (obj->type != OBJ_COMMIT || !(obj->flags & UNINTERESTING))
226 continue;
2e27bd77 227 mark_tree_uninteresting(get_commit_tree(commit));
200abe74
JK
228 if (!(obj->flags & SHOWN)) {
229 obj->flags |= SHOWN;
230 show_edge(commit);
231 }
fbd4a703
NTND
232 }
233 }
8d1d8f83
JH
234}
235
8d2dfc49
LT
236static void add_pending_tree(struct rev_info *revs, struct tree *tree)
237{
238 add_pending_object(revs, &tree->object, "");
239}
240
f447a499
MD
241static void traverse_trees_and_blobs(struct traversal_context *ctx,
242 struct strbuf *base)
c64ed70d
JH
243{
244 int i;
c64ed70d 245
91904f56
SB
246 assert(base->len == 0);
247
f447a499
MD
248 for (i = 0; i < ctx->revs->pending.nr; i++) {
249 struct object_array_entry *pending = ctx->revs->pending.objects + i;
c64ed70d
JH
250 struct object *obj = pending->item;
251 const char *name = pending->name;
20739490 252 const char *path = pending->path;
c64ed70d
JH
253 if (obj->flags & (UNINTERESTING | SEEN))
254 continue;
255 if (obj->type == OBJ_TAG) {
256 obj->flags |= SEEN;
f447a499 257 ctx->show_object(obj, name, ctx->show_data);
c64ed70d
JH
258 continue;
259 }
20739490
JK
260 if (!path)
261 path = "";
c64ed70d 262 if (obj->type == OBJ_TREE) {
f447a499 263 process_tree(ctx, (struct tree *)obj, base, path);
c64ed70d
JH
264 continue;
265 }
266 if (obj->type == OBJ_BLOB) {
f447a499 267 process_blob(ctx, (struct blob *)obj, base, path);
c64ed70d
JH
268 continue;
269 }
270 die("unknown pending object %s (%s)",
f2fd0760 271 oid_to_hex(&obj->oid), name);
c64ed70d 272 }
f447a499 273 object_array_clear(&ctx->revs->pending);
91904f56
SB
274}
275
f447a499 276static void do_traverse(struct traversal_context *ctx)
91904f56
SB
277{
278 struct commit *commit;
279 struct strbuf csp; /* callee's scratch pad */
280 strbuf_init(&csp, PATH_MAX);
281
f447a499 282 while ((commit = get_revision(ctx->revs)) != NULL) {
91904f56
SB
283 /*
284 * an uninteresting boundary commit may not have its tree
285 * parsed yet, but we are not going to show them anyway
286 */
2e27bd77 287 if (get_commit_tree(commit))
f447a499
MD
288 add_pending_tree(ctx->revs, get_commit_tree(commit));
289 ctx->show_commit(commit, ctx->show_data);
ce5b6f9b 290
f447a499 291 if (ctx->revs->tree_blobs_in_commit_order)
ce5b6f9b
SB
292 /*
293 * NEEDSWORK: Adding the tree and then flushing it here
294 * needs a reallocation for each commit. Can we pass the
295 * tree directory without allocation churn?
296 */
f447a499 297 traverse_trees_and_blobs(ctx, &csp);
91904f56 298 }
f447a499 299 traverse_trees_and_blobs(ctx, &csp);
91904f56 300 strbuf_release(&csp);
c64ed70d 301}
25ec7bca
JH
302
303void traverse_commit_list(struct rev_info *revs,
304 show_commit_fn show_commit,
305 show_object_fn show_object,
306 void *show_data)
307{
f447a499
MD
308 struct traversal_context ctx;
309 ctx.revs = revs;
310 ctx.show_commit = show_commit;
311 ctx.show_object = show_object;
312 ctx.show_data = show_data;
313 ctx.filter_fn = NULL;
314 ctx.filter_data = NULL;
315 do_traverse(&ctx);
25ec7bca
JH
316}
317
318void traverse_commit_list_filtered(
319 struct list_objects_filter_options *filter_options,
320 struct rev_info *revs,
321 show_commit_fn show_commit,
322 show_object_fn show_object,
323 void *show_data,
324 struct oidset *omitted)
325{
f447a499 326 struct traversal_context ctx;
25ec7bca 327 filter_free_fn filter_free_fn = NULL;
f447a499
MD
328
329 ctx.revs = revs;
330 ctx.show_object = show_object;
331 ctx.show_commit = show_commit;
332 ctx.show_data = show_data;
333 ctx.filter_fn = NULL;
334
335 ctx.filter_data = list_objects_filter__init(omitted, filter_options,
336 &ctx.filter_fn, &filter_free_fn);
337 do_traverse(&ctx);
338 if (ctx.filter_data && filter_free_fn)
339 filter_free_fn(ctx.filter_data);
25ec7bca 340}