5 #include "argv-array.h"
6 #include "list-objects.h"
7 #include "list-objects-filter.h"
8 #include "list-objects-filter-options.h"
12 static int parse_combine_filter(
13 struct list_objects_filter_options *filter_options,
15 struct strbuf *errbuf);
18 * Parse value of the argument to the "filter" keyword.
19 * On the command line this looks like:
21 * and in the pack protocol as:
24 * The filter keyword will be used by many commands.
25 * See Documentation/rev-list-options.txt for allowed values for <arg>.
27 * Capture the given arg as the "filter_spec". This can be forwarded to
28 * subordinate commands when necessary (although it's better to pass it through
29 * expand_list_objects_filter_spec() first). We also "intern" the arg for the
30 * convenience of the current command.
32 static int gently_parse_list_objects_filter(
33 struct list_objects_filter_options *filter_options,
35 struct strbuf *errbuf)
39 if (filter_options->choice)
40 BUG("filter_options already populated");
42 if (!strcmp(arg, "blob:none")) {
43 filter_options->choice = LOFC_BLOB_NONE;
46 } else if (skip_prefix(arg, "blob:limit=", &v0)) {
47 if (git_parse_ulong(v0, &filter_options->blob_limit_value)) {
48 filter_options->choice = LOFC_BLOB_LIMIT;
52 } else if (skip_prefix(arg, "tree:", &v0)) {
53 if (!git_parse_ulong(v0, &filter_options->tree_exclude_depth)) {
54 strbuf_addstr(errbuf, _("expected 'tree:<depth>'"));
57 filter_options->choice = LOFC_TREE_DEPTH;
60 } else if (skip_prefix(arg, "sparse:oid=", &v0)) {
61 struct object_context oc;
62 struct object_id sparse_oid;
65 * Try to parse <oid-expression> into an OID for the current
66 * command, but DO NOT complain if we don't have the blob or
69 if (!get_oid_with_context(the_repository, v0, GET_OID_BLOB,
71 filter_options->sparse_oid_value = oiddup(&sparse_oid);
72 filter_options->choice = LOFC_SPARSE_OID;
75 } else if (skip_prefix(arg, "sparse:path=", &v0)) {
79 _("sparse:path filters support has been dropped"));
83 } else if (skip_prefix(arg, "combine:", &v0)) {
84 return parse_combine_filter(filter_options, v0, errbuf);
88 * Please update _git_fetch() in git-completion.bash when you
92 strbuf_addf(errbuf, _("invalid filter-spec '%s'"), arg);
94 memset(filter_options, 0, sizeof(*filter_options));
98 static const char *RESERVED_NON_WS = "~`!@#$^&*()[]{}\\;'\",<>?";
100 static int has_reserved_character(
101 struct strbuf *sub_spec, struct strbuf *errbuf)
103 const char *c = sub_spec->buf;
105 if (*c <= ' ' || strchr(RESERVED_NON_WS, *c)) {
108 _("must escape char in sub-filter-spec: '%c'"),
118 static int parse_combine_subfilter(
119 struct list_objects_filter_options *filter_options,
120 struct strbuf *subspec,
121 struct strbuf *errbuf)
123 size_t new_index = filter_options->sub_nr++;
127 ALLOC_GROW(filter_options->sub, filter_options->sub_nr,
128 filter_options->sub_alloc);
129 memset(&filter_options->sub[new_index], 0,
130 sizeof(*filter_options->sub));
132 decoded = url_percent_decode(subspec->buf);
134 result = has_reserved_character(subspec, errbuf) ||
135 gently_parse_list_objects_filter(
136 &filter_options->sub[new_index], decoded, errbuf);
142 static int parse_combine_filter(
143 struct list_objects_filter_options *filter_options,
145 struct strbuf *errbuf)
147 struct strbuf **subspecs = strbuf_split_str(arg, '+', 0);
152 strbuf_addstr(errbuf, _("expected something after combine:"));
157 for (sub = 0; subspecs[sub] && !result; sub++) {
158 if (subspecs[sub + 1]) {
160 * This is not the last subspec. Remove trailing "+" so
163 size_t last = subspecs[sub]->len - 1;
164 assert(subspecs[sub]->buf[last] == '+');
165 strbuf_remove(subspecs[sub], last, 1);
167 result = parse_combine_subfilter(
168 filter_options, subspecs[sub], errbuf);
171 filter_options->choice = LOFC_COMBINE;
174 strbuf_list_free(subspecs);
176 list_objects_filter_release(filter_options);
177 memset(filter_options, 0, sizeof(*filter_options));
182 static int allow_unencoded(char ch)
184 if (ch <= ' ' || ch == '%' || ch == '+')
186 return !strchr(RESERVED_NON_WS, ch);
189 static void filter_spec_append_urlencode(
190 struct list_objects_filter_options *filter, const char *raw)
192 struct strbuf buf = STRBUF_INIT;
193 strbuf_addstr_urlencode(&buf, raw, allow_unencoded);
194 trace_printf("Add to combine filter-spec: %s\n", buf.buf);
195 string_list_append(&filter->filter_spec, strbuf_detach(&buf, NULL));
199 * Changes filter_options into an equivalent LOFC_COMBINE filter options
200 * instance. Does not do anything if filter_options is already LOFC_COMBINE.
202 static void transform_to_combine_type(
203 struct list_objects_filter_options *filter_options)
205 assert(filter_options->choice);
206 if (filter_options->choice == LOFC_COMBINE)
209 const int initial_sub_alloc = 2;
210 struct list_objects_filter_options *sub_array =
211 xcalloc(initial_sub_alloc, sizeof(*sub_array));
212 sub_array[0] = *filter_options;
213 memset(filter_options, 0, sizeof(*filter_options));
214 filter_options->sub = sub_array;
215 filter_options->sub_alloc = initial_sub_alloc;
217 filter_options->sub_nr = 1;
218 filter_options->choice = LOFC_COMBINE;
219 string_list_append(&filter_options->filter_spec, xstrdup("combine:"));
220 filter_spec_append_urlencode(
222 list_objects_filter_spec(&filter_options->sub[0]));
224 * We don't need the filter_spec strings for subfilter specs, only the
227 string_list_clear(&filter_options->sub[0].filter_spec, /*free_util=*/0);
230 void list_objects_filter_die_if_populated(
231 struct list_objects_filter_options *filter_options)
233 if (filter_options->choice)
234 die(_("multiple filter-specs cannot be combined"));
237 int parse_list_objects_filter(
238 struct list_objects_filter_options *filter_options,
241 struct strbuf errbuf = STRBUF_INIT;
244 if (!filter_options->choice) {
245 string_list_append(&filter_options->filter_spec, xstrdup(arg));
247 parse_error = gently_parse_list_objects_filter(
248 filter_options, arg, &errbuf);
251 * Make filter_options an LOFC_COMBINE spec so we can trivially
252 * add subspecs to it.
254 transform_to_combine_type(filter_options);
256 string_list_append(&filter_options->filter_spec, xstrdup("+"));
257 filter_spec_append_urlencode(filter_options, arg);
258 ALLOC_GROW(filter_options->sub, filter_options->sub_nr + 1,
259 filter_options->sub_alloc);
260 filter_options = &filter_options->sub[filter_options->sub_nr++];
261 memset(filter_options, 0, sizeof(*filter_options));
263 parse_error = gently_parse_list_objects_filter(
264 filter_options, arg, &errbuf);
267 die("%s", errbuf.buf);
271 int opt_parse_list_objects_filter(const struct option *opt,
272 const char *arg, int unset)
274 struct list_objects_filter_options *filter_options = opt->value;
277 list_objects_filter_set_no_filter(filter_options);
281 return parse_list_objects_filter(filter_options, arg);
284 const char *list_objects_filter_spec(struct list_objects_filter_options *filter)
286 if (!filter->filter_spec.nr)
287 BUG("no filter_spec available for this filter");
288 if (filter->filter_spec.nr != 1) {
289 struct strbuf concatted = STRBUF_INIT;
290 strbuf_add_separated_string_list(
291 &concatted, "", &filter->filter_spec);
292 string_list_clear(&filter->filter_spec, /*free_util=*/0);
294 &filter->filter_spec, strbuf_detach(&concatted, NULL));
297 return filter->filter_spec.items[0].string;
300 const char *expand_list_objects_filter_spec(
301 struct list_objects_filter_options *filter)
303 if (filter->choice == LOFC_BLOB_LIMIT) {
304 struct strbuf expanded_spec = STRBUF_INIT;
305 strbuf_addf(&expanded_spec, "blob:limit=%lu",
306 filter->blob_limit_value);
307 string_list_clear(&filter->filter_spec, /*free_util=*/0);
309 &filter->filter_spec,
310 strbuf_detach(&expanded_spec, NULL));
313 return list_objects_filter_spec(filter);
316 void list_objects_filter_release(
317 struct list_objects_filter_options *filter_options)
323 string_list_clear(&filter_options->filter_spec, /*free_util=*/0);
324 free(filter_options->sparse_oid_value);
325 for (sub = 0; sub < filter_options->sub_nr; sub++)
326 list_objects_filter_release(&filter_options->sub[sub]);
327 free(filter_options->sub);
328 memset(filter_options, 0, sizeof(*filter_options));
331 void partial_clone_register(
333 struct list_objects_filter_options *filter_options)
336 * Record the name of the partial clone remote in the
337 * config and in the global variable -- the latter is
338 * used throughout to indicate that partial clone is
339 * enabled and to expect missing objects.
341 if (repository_format_partial_clone &&
342 *repository_format_partial_clone &&
343 strcmp(remote, repository_format_partial_clone))
344 die(_("cannot change partial clone promisor remote"));
346 git_config_set("core.repositoryformatversion", "1");
347 git_config_set("extensions.partialclone", remote);
349 repository_format_partial_clone = xstrdup(remote);
352 * Record the initial filter-spec in the config as
353 * the default for subsequent fetches from this remote.
355 core_partial_clone_filter_default =
356 xstrdup(expand_list_objects_filter_spec(filter_options));
357 git_config_set("core.partialclonefilter",
358 core_partial_clone_filter_default);
361 void partial_clone_get_default_filter_spec(
362 struct list_objects_filter_options *filter_options)
364 struct strbuf errbuf = STRBUF_INIT;
367 * Parse default value, but silently ignore it if it is invalid.
369 if (!core_partial_clone_filter_default)
372 string_list_append(&filter_options->filter_spec,
373 core_partial_clone_filter_default);
374 gently_parse_list_objects_filter(filter_options,
375 core_partial_clone_filter_default,
377 strbuf_release(&errbuf);