6 * Finds which of the given pathspecs match items in the index.
8 * For each pathspec, sets the corresponding entry in the seen[] array
9 * (which should be specs items long, i.e. the same size as pathspec)
10 * to the nature of the "closest" (i.e. most specific) match found for
11 * that pathspec in the index, if it was a closer type of match than
12 * the existing entry. As an optimization, matching is skipped
13 * altogether if seen[] already only contains non-zero entries.
15 * If seen[] has not already been written to, it may make sense
16 * to use find_pathspecs_matching_against_index() instead.
18 void add_pathspec_matches_against_index(const struct pathspec
*pathspec
,
21 int num_unmatched
= 0, i
;
24 * Since we are walking the index as if we were walking the directory,
25 * we have to mark the matched pathspec as seen; otherwise we will
26 * mistakenly think that the user gave a pathspec that did not match
29 for (i
= 0; i
< pathspec
->nr
; i
++)
34 for (i
= 0; i
< active_nr
; i
++) {
35 const struct cache_entry
*ce
= active_cache
[i
];
36 ce_path_match(ce
, pathspec
, seen
);
41 * Finds which of the given pathspecs match items in the index.
43 * This is a one-shot wrapper around add_pathspec_matches_against_index()
44 * which allocates, populates, and returns a seen[] array indicating the
45 * nature of the "closest" (i.e. most specific) matches which each of the
46 * given pathspecs achieves against all items in the index.
48 char *find_pathspecs_matching_against_index(const struct pathspec
*pathspec
)
50 char *seen
= xcalloc(pathspec
->nr
, 1);
51 add_pathspec_matches_against_index(pathspec
, seen
);
58 * Possible future magic semantics include stuff like:
60 * { PATHSPEC_RECURSIVE, '*', "recursive" },
61 * { PATHSPEC_REGEXP, '\0', "regexp" },
65 static struct pathspec_magic
{
67 char mnemonic
; /* this cannot be ':'! */
69 } pathspec_magic
[] = {
70 { PATHSPEC_FROMTOP
, '/', "top" },
71 { PATHSPEC_LITERAL
, 0, "literal" },
72 { PATHSPEC_GLOB
, '\0', "glob" },
73 { PATHSPEC_ICASE
, '\0', "icase" },
74 { PATHSPEC_EXCLUDE
, '!', "exclude" },
77 static void prefix_short_magic(struct strbuf
*sb
, int prefixlen
,
81 strbuf_addstr(sb
, ":(");
82 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++)
83 if (short_magic
& pathspec_magic
[i
].bit
) {
84 if (sb
->buf
[sb
->len
- 1] != '(')
85 strbuf_addch(sb
, ',');
86 strbuf_addstr(sb
, pathspec_magic
[i
].name
);
88 strbuf_addf(sb
, ",prefix:%d)", prefixlen
);
92 * Take an element of a pathspec and check for magic signatures.
93 * Append the result to the prefix. Return the magic bitmap.
95 * For now, we only parse the syntax and throw out anything other than
98 * NEEDSWORK: This needs to be rewritten when we start migrating
99 * get_pathspec() users to use the "struct pathspec" interface. For
100 * example, a pathspec element may be marked as case-insensitive, but
101 * the prefix part must always match literally, and a single stupid
102 * string cannot express such a case.
104 static unsigned prefix_pathspec(struct pathspec_item
*item
,
105 unsigned *p_short_magic
,
106 const char **raw
, unsigned flags
,
107 const char *prefix
, int prefixlen
,
110 static int literal_global
= -1;
111 static int glob_global
= -1;
112 static int noglob_global
= -1;
113 static int icase_global
= -1;
114 unsigned magic
= 0, short_magic
= 0, global_magic
= 0;
115 const char *copyfrom
= elt
, *long_magic_end
= NULL
;
117 int i
, pathspec_prefix
= -1;
119 if (literal_global
< 0)
120 literal_global
= git_env_bool(GIT_LITERAL_PATHSPECS_ENVIRONMENT
, 0);
122 global_magic
|= PATHSPEC_LITERAL
;
125 glob_global
= git_env_bool(GIT_GLOB_PATHSPECS_ENVIRONMENT
, 0);
127 global_magic
|= PATHSPEC_GLOB
;
129 if (noglob_global
< 0)
130 noglob_global
= git_env_bool(GIT_NOGLOB_PATHSPECS_ENVIRONMENT
, 0);
132 if (glob_global
&& noglob_global
)
133 die(_("global 'glob' and 'noglob' pathspec settings are incompatible"));
136 if (icase_global
< 0)
137 icase_global
= git_env_bool(GIT_ICASE_PATHSPECS_ENVIRONMENT
, 0);
139 global_magic
|= PATHSPEC_ICASE
;
141 if ((global_magic
& PATHSPEC_LITERAL
) &&
142 (global_magic
& ~PATHSPEC_LITERAL
))
143 die(_("global 'literal' pathspec setting is incompatible "
144 "with all other global pathspec settings"));
146 if (flags
& PATHSPEC_LITERAL_PATH
)
149 if (elt
[0] != ':' || literal_global
||
150 (flags
& PATHSPEC_LITERAL_PATH
)) {
151 ; /* nothing to do */
152 } else if (elt
[1] == '(') {
155 for (copyfrom
= elt
+ 2;
156 *copyfrom
&& *copyfrom
!= ')';
158 size_t len
= strcspn(copyfrom
, ",)");
159 if (copyfrom
[len
] == ',')
160 nextat
= copyfrom
+ len
+ 1;
162 /* handle ')' and '\0' */
163 nextat
= copyfrom
+ len
;
166 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++) {
167 if (strlen(pathspec_magic
[i
].name
) == len
&&
168 !strncmp(pathspec_magic
[i
].name
, copyfrom
, len
)) {
169 magic
|= pathspec_magic
[i
].bit
;
172 if (starts_with(copyfrom
, "prefix:")) {
174 pathspec_prefix
= strtol(copyfrom
+ 7,
176 if (endptr
- copyfrom
!= len
)
177 die(_("invalid parameter for pathspec magic 'prefix'"));
178 /* "i" would be wrong, but it does not matter */
182 if (ARRAY_SIZE(pathspec_magic
) <= i
)
183 die(_("Invalid pathspec magic '%.*s' in '%s'"),
184 (int) len
, copyfrom
, elt
);
186 if (*copyfrom
!= ')')
187 die(_("Missing ')' at the end of pathspec magic in '%s'"), elt
);
188 long_magic_end
= copyfrom
;
192 for (copyfrom
= elt
+ 1;
193 *copyfrom
&& *copyfrom
!= ':';
197 if (!is_pathspec_magic(ch
))
199 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++)
200 if (pathspec_magic
[i
].mnemonic
== ch
) {
201 short_magic
|= pathspec_magic
[i
].bit
;
204 if (ARRAY_SIZE(pathspec_magic
) <= i
)
205 die(_("Unimplemented pathspec magic '%c' in '%s'"),
208 if (*copyfrom
== ':')
212 magic
|= short_magic
;
213 *p_short_magic
= short_magic
;
215 /* --noglob-pathspec adds :(literal) _unless_ :(glob) is specified */
216 if (noglob_global
&& !(magic
& PATHSPEC_GLOB
))
217 global_magic
|= PATHSPEC_LITERAL
;
219 /* --glob-pathspec is overridden by :(literal) */
220 if ((global_magic
& PATHSPEC_GLOB
) && (magic
& PATHSPEC_LITERAL
))
221 global_magic
&= ~PATHSPEC_GLOB
;
223 magic
|= global_magic
;
225 if (pathspec_prefix
>= 0 &&
226 (prefixlen
|| (prefix
&& *prefix
)))
227 die("BUG: 'prefix' magic is supposed to be used at worktree's root");
229 if ((magic
& PATHSPEC_LITERAL
) && (magic
& PATHSPEC_GLOB
))
230 die(_("%s: 'literal' and 'glob' are incompatible"), elt
);
232 if (pathspec_prefix
>= 0) {
233 match
= xstrdup(copyfrom
);
234 prefixlen
= pathspec_prefix
;
235 } else if (magic
& PATHSPEC_FROMTOP
) {
236 match
= xstrdup(copyfrom
);
239 match
= prefix_path_gently(prefix
, prefixlen
, &prefixlen
, copyfrom
);
241 die(_("%s: '%s' is outside repository"), elt
, copyfrom
);
243 *raw
= item
->match
= match
;
245 * Prefix the pathspec (keep all magic) and assign to
246 * original. Useful for passing to another command.
248 if (flags
& PATHSPEC_PREFIX_ORIGIN
) {
249 struct strbuf sb
= STRBUF_INIT
;
250 if (prefixlen
&& !literal_global
) {
251 /* Preserve the actual prefix length of each pattern */
253 prefix_short_magic(&sb
, prefixlen
, short_magic
);
254 else if (long_magic_end
) {
255 strbuf_add(&sb
, elt
, long_magic_end
- elt
);
256 strbuf_addf(&sb
, ",prefix:%d)", prefixlen
);
258 strbuf_addf(&sb
, ":(prefix:%d)", prefixlen
);
260 strbuf_addstr(&sb
, match
);
261 item
->original
= strbuf_detach(&sb
, NULL
);
263 item
->original
= elt
;
264 item
->len
= strlen(item
->match
);
265 item
->prefix
= prefixlen
;
267 if ((flags
& PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAP
) &&
268 (item
->len
>= 1 && item
->match
[item
->len
- 1] == '/') &&
269 (i
= cache_name_pos(item
->match
, item
->len
- 1)) >= 0 &&
270 S_ISGITLINK(active_cache
[i
]->ce_mode
)) {
272 match
[item
->len
] = '\0';
275 if (flags
& PATHSPEC_STRIP_SUBMODULE_SLASH_EXPENSIVE
)
276 for (i
= 0; i
< active_nr
; i
++) {
277 struct cache_entry
*ce
= active_cache
[i
];
278 int ce_len
= ce_namelen(ce
);
280 if (!S_ISGITLINK(ce
->ce_mode
))
283 if (item
->len
<= ce_len
|| match
[ce_len
] != '/' ||
284 memcmp(ce
->name
, match
, ce_len
))
286 if (item
->len
== ce_len
+ 1) {
287 /* strip trailing slash */
289 match
[item
->len
] = '\0';
291 die (_("Pathspec '%s' is in submodule '%.*s'"),
292 elt
, ce_len
, ce
->name
);
295 if (magic
& PATHSPEC_LITERAL
)
296 item
->nowildcard_len
= item
->len
;
298 item
->nowildcard_len
= simple_length(item
->match
);
299 if (item
->nowildcard_len
< prefixlen
)
300 item
->nowildcard_len
= prefixlen
;
303 if (magic
& PATHSPEC_GLOB
) {
305 * FIXME: should we enable ONESTAR in _GLOB for
306 * pattern "* * / * . c"?
309 if (item
->nowildcard_len
< item
->len
&&
310 item
->match
[item
->nowildcard_len
] == '*' &&
311 no_wildcard(item
->match
+ item
->nowildcard_len
+ 1))
312 item
->flags
|= PATHSPEC_ONESTAR
;
315 /* sanity checks, pathspec matchers assume these are sane */
316 assert(item
->nowildcard_len
<= item
->len
&&
317 item
->prefix
<= item
->len
);
321 static int pathspec_item_cmp(const void *a_
, const void *b_
)
323 struct pathspec_item
*a
, *b
;
325 a
= (struct pathspec_item
*)a_
;
326 b
= (struct pathspec_item
*)b_
;
327 return strcmp(a
->match
, b
->match
);
330 static void NORETURN
unsupported_magic(const char *pattern
,
332 unsigned short_magic
)
334 struct strbuf sb
= STRBUF_INIT
;
336 for (n
= i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++) {
337 const struct pathspec_magic
*m
= pathspec_magic
+ i
;
338 if (!(magic
& m
->bit
))
341 strbuf_addch(&sb
, ' ');
342 if (short_magic
& m
->bit
)
343 strbuf_addf(&sb
, "'%c'", m
->mnemonic
);
345 strbuf_addf(&sb
, "'%s'", m
->name
);
349 * We may want to substitute "this command" with a command
350 * name. E.g. when add--interactive dies when running
353 die(_("%s: pathspec magic not supported by this command: %s"),
358 * Given command line arguments and a prefix, convert the input to
359 * pathspec. die() if any magic in magic_mask is used.
361 void parse_pathspec(struct pathspec
*pathspec
,
362 unsigned magic_mask
, unsigned flags
,
363 const char *prefix
, const char **argv
)
365 struct pathspec_item
*item
;
366 const char *entry
= argv
? *argv
: NULL
;
367 int i
, n
, prefixlen
, nr_exclude
= 0;
369 memset(pathspec
, 0, sizeof(*pathspec
));
371 if (flags
& PATHSPEC_MAXDEPTH_VALID
)
372 pathspec
->magic
|= PATHSPEC_MAXDEPTH
;
374 /* No arguments, no prefix -> no pathspec */
375 if (!entry
&& !prefix
)
378 if ((flags
& PATHSPEC_PREFER_CWD
) &&
379 (flags
& PATHSPEC_PREFER_FULL
))
380 die("BUG: PATHSPEC_PREFER_CWD and PATHSPEC_PREFER_FULL are incompatible");
382 /* No arguments with prefix -> prefix pathspec */
384 static const char *raw
[2];
386 if (flags
& PATHSPEC_PREFER_FULL
)
389 if (!(flags
& PATHSPEC_PREFER_CWD
))
390 die("BUG: PATHSPEC_PREFER_CWD requires arguments");
392 pathspec
->items
= item
= xcalloc(1, sizeof(*item
));
393 item
->match
= prefix
;
394 item
->original
= prefix
;
395 item
->nowildcard_len
= item
->len
= strlen(prefix
);
396 item
->prefix
= item
->len
;
400 pathspec
->_raw
= raw
;
409 ALLOC_ARRAY(pathspec
->items
, n
);
410 item
= pathspec
->items
;
411 pathspec
->_raw
= argv
;
412 prefixlen
= prefix
? strlen(prefix
) : 0;
414 for (i
= 0; i
< n
; i
++) {
415 unsigned short_magic
;
418 item
[i
].magic
= prefix_pathspec(item
+ i
, &short_magic
,
420 prefix
, prefixlen
, entry
);
421 if ((flags
& PATHSPEC_LITERAL_PATH
) &&
422 !(magic_mask
& PATHSPEC_LITERAL
))
423 item
[i
].magic
|= PATHSPEC_LITERAL
;
424 if (item
[i
].magic
& PATHSPEC_EXCLUDE
)
426 if (item
[i
].magic
& magic_mask
)
427 unsupported_magic(entry
,
428 item
[i
].magic
& magic_mask
,
431 if ((flags
& PATHSPEC_SYMLINK_LEADING_PATH
) &&
432 has_symlink_leading_path(item
[i
].match
, item
[i
].len
)) {
433 die(_("pathspec '%s' is beyond a symbolic link"), entry
);
436 if (item
[i
].nowildcard_len
< item
[i
].len
)
437 pathspec
->has_wildcard
= 1;
438 pathspec
->magic
|= item
[i
].magic
;
442 die(_("There is nothing to exclude from by :(exclude) patterns.\n"
443 "Perhaps you forgot to add either ':/' or '.' ?"));
446 if (pathspec
->magic
& PATHSPEC_MAXDEPTH
) {
447 if (flags
& PATHSPEC_KEEP_ORDER
)
448 die("BUG: PATHSPEC_MAXDEPTH_VALID and PATHSPEC_KEEP_ORDER are incompatible");
449 qsort(pathspec
->items
, pathspec
->nr
,
450 sizeof(struct pathspec_item
), pathspec_item_cmp
);
455 * N.B. get_pathspec() is deprecated in favor of the "struct pathspec"
456 * based interface - see pathspec.c:parse_pathspec().
459 * - prefix - a path relative to the root of the working tree
460 * - pathspec - a list of paths underneath the prefix path
462 * Iterates over pathspec, prepending each path with prefix,
463 * and return the resulting list.
465 * If pathspec is empty, return a singleton list containing prefix.
467 * If pathspec and prefix are both empty, return an empty list.
469 * This is typically used by built-in commands such as add.c, in order
470 * to normalize argv arguments provided to the built-in into a list of
471 * paths to process, all relative to the root of the working tree.
473 const char **get_pathspec(const char *prefix
, const char **pathspec
)
478 ~(PATHSPEC_FROMTOP
| PATHSPEC_LITERAL
),
484 void copy_pathspec(struct pathspec
*dst
, const struct pathspec
*src
)
487 ALLOC_ARRAY(dst
->items
, dst
->nr
);
488 COPY_ARRAY(dst
->items
, src
->items
, dst
->nr
);
491 void clear_pathspec(struct pathspec
*pathspec
)
493 free(pathspec
->items
);
494 pathspec
->items
= NULL
;