5 #include "argv-array.h"
6 #include "list-objects.h"
7 #include "list-objects-filter.h"
8 #include "list-objects-filter-options.h"
11 * Parse value of the argument to the "filter" keyword.
12 * On the command line this looks like:
14 * and in the pack protocol as:
17 * The filter keyword will be used by many commands.
18 * See Documentation/rev-list-options.txt for allowed values for <arg>.
20 * Capture the given arg as the "filter_spec". This can be forwarded to
21 * subordinate commands when necessary (although it's better to pass it through
22 * expand_list_objects_filter_spec() first). We also "intern" the arg for the
23 * convenience of the current command.
25 static int gently_parse_list_objects_filter(
26 struct list_objects_filter_options
*filter_options
,
28 struct strbuf
*errbuf
)
32 if (filter_options
->choice
) {
36 _("multiple filter-specs cannot be combined"));
41 filter_options
->filter_spec
= strdup(arg
);
43 if (!strcmp(arg
, "blob:none")) {
44 filter_options
->choice
= LOFC_BLOB_NONE
;
47 } else if (skip_prefix(arg
, "blob:limit=", &v0
)) {
48 if (git_parse_ulong(v0
, &filter_options
->blob_limit_value
)) {
49 filter_options
->choice
= LOFC_BLOB_LIMIT
;
53 } else if (skip_prefix(arg
, "tree:", &v0
)) {
54 if (!git_parse_ulong(v0
, &filter_options
->tree_exclude_depth
)) {
58 _("expected 'tree:<depth>'"));
62 filter_options
->choice
= LOFC_TREE_DEPTH
;
65 } else if (skip_prefix(arg
, "sparse:oid=", &v0
)) {
66 struct object_context oc
;
67 struct object_id sparse_oid
;
70 * Try to parse <oid-expression> into an OID for the current
71 * command, but DO NOT complain if we don't have the blob or
74 if (!get_oid_with_context(the_repository
, v0
, GET_OID_BLOB
,
76 filter_options
->sparse_oid_value
= oiddup(&sparse_oid
);
77 filter_options
->choice
= LOFC_SPARSE_OID
;
80 } else if (skip_prefix(arg
, "sparse:path=", &v0
)) {
81 filter_options
->choice
= LOFC_SPARSE_PATH
;
82 filter_options
->sparse_path_value
= strdup(v0
);
86 * Please update _git_fetch() in git-completion.bash when you
91 strbuf_addf(errbuf
, "invalid filter-spec '%s'", arg
);
93 memset(filter_options
, 0, sizeof(*filter_options
));
97 int parse_list_objects_filter(struct list_objects_filter_options
*filter_options
,
100 struct strbuf buf
= STRBUF_INIT
;
101 if (gently_parse_list_objects_filter(filter_options
, arg
, &buf
))
106 int opt_parse_list_objects_filter(const struct option
*opt
,
107 const char *arg
, int unset
)
109 struct list_objects_filter_options
*filter_options
= opt
->value
;
112 list_objects_filter_set_no_filter(filter_options
);
116 return parse_list_objects_filter(filter_options
, arg
);
119 void expand_list_objects_filter_spec(
120 const struct list_objects_filter_options
*filter
,
121 struct strbuf
*expanded_spec
)
123 strbuf_init(expanded_spec
, strlen(filter
->filter_spec
));
124 if (filter
->choice
== LOFC_BLOB_LIMIT
)
125 strbuf_addf(expanded_spec
, "blob:limit=%lu",
126 filter
->blob_limit_value
);
127 else if (filter
->choice
== LOFC_TREE_DEPTH
)
128 strbuf_addf(expanded_spec
, "tree:%lu",
129 filter
->tree_exclude_depth
);
131 strbuf_addstr(expanded_spec
, filter
->filter_spec
);
134 void list_objects_filter_release(
135 struct list_objects_filter_options
*filter_options
)
137 free(filter_options
->filter_spec
);
138 free(filter_options
->sparse_oid_value
);
139 free(filter_options
->sparse_path_value
);
140 memset(filter_options
, 0, sizeof(*filter_options
));
143 void partial_clone_register(
145 const struct list_objects_filter_options
*filter_options
)
148 * Record the name of the partial clone remote in the
149 * config and in the global variable -- the latter is
150 * used throughout to indicate that partial clone is
151 * enabled and to expect missing objects.
153 if (repository_format_partial_clone
&&
154 *repository_format_partial_clone
&&
155 strcmp(remote
, repository_format_partial_clone
))
156 die(_("cannot change partial clone promisor remote"));
158 git_config_set("core.repositoryformatversion", "1");
159 git_config_set("extensions.partialclone", remote
);
161 repository_format_partial_clone
= xstrdup(remote
);
164 * Record the initial filter-spec in the config as
165 * the default for subsequent fetches from this remote.
167 core_partial_clone_filter_default
=
168 xstrdup(filter_options
->filter_spec
);
169 git_config_set("core.partialclonefilter",
170 core_partial_clone_filter_default
);
173 void partial_clone_get_default_filter_spec(
174 struct list_objects_filter_options
*filter_options
)
177 * Parse default value, but silently ignore it if it is invalid.
179 if (!core_partial_clone_filter_default
)
181 gently_parse_list_objects_filter(filter_options
,
182 core_partial_clone_filter_default
,