8 * Finds which of the given pathspecs match items in the index.
10 * For each pathspec, sets the corresponding entry in the seen[] array
11 * (which should be specs items long, i.e. the same size as pathspec)
12 * to the nature of the "closest" (i.e. most specific) match found for
13 * that pathspec in the index, if it was a closer type of match than
14 * the existing entry. As an optimization, matching is skipped
15 * altogether if seen[] already only contains non-zero entries.
17 * If seen[] has not already been written to, it may make sense
18 * to use find_pathspecs_matching_against_index() instead.
20 void add_pathspec_matches_against_index(const struct pathspec
*pathspec
,
21 const struct index_state
*istate
,
24 int num_unmatched
= 0, i
;
27 * Since we are walking the index as if we were walking the directory,
28 * we have to mark the matched pathspec as seen; otherwise we will
29 * mistakenly think that the user gave a pathspec that did not match
32 for (i
= 0; i
< pathspec
->nr
; i
++)
37 for (i
= 0; i
< istate
->cache_nr
; i
++) {
38 const struct cache_entry
*ce
= istate
->cache
[i
];
39 ce_path_match(istate
, ce
, pathspec
, seen
);
44 * Finds which of the given pathspecs match items in the index.
46 * This is a one-shot wrapper around add_pathspec_matches_against_index()
47 * which allocates, populates, and returns a seen[] array indicating the
48 * nature of the "closest" (i.e. most specific) matches which each of the
49 * given pathspecs achieves against all items in the index.
51 char *find_pathspecs_matching_against_index(const struct pathspec
*pathspec
,
52 const struct index_state
*istate
)
54 char *seen
= xcalloc(pathspec
->nr
, 1);
55 add_pathspec_matches_against_index(pathspec
, istate
, seen
);
62 * Possible future magic semantics include stuff like:
64 * { PATHSPEC_RECURSIVE, '*', "recursive" },
65 * { PATHSPEC_REGEXP, '\0', "regexp" },
69 static struct pathspec_magic
{
71 char mnemonic
; /* this cannot be ':'! */
73 } pathspec_magic
[] = {
74 { PATHSPEC_FROMTOP
, '/', "top" },
75 { PATHSPEC_LITERAL
, '\0', "literal" },
76 { PATHSPEC_GLOB
, '\0', "glob" },
77 { PATHSPEC_ICASE
, '\0', "icase" },
78 { PATHSPEC_EXCLUDE
, '!', "exclude" },
79 { PATHSPEC_ATTR
, '\0', "attr" },
82 static void prefix_magic(struct strbuf
*sb
, int prefixlen
, unsigned magic
)
85 strbuf_addstr(sb
, ":(");
86 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++)
87 if (magic
& pathspec_magic
[i
].bit
) {
88 if (sb
->buf
[sb
->len
- 1] != '(')
89 strbuf_addch(sb
, ',');
90 strbuf_addstr(sb
, pathspec_magic
[i
].name
);
92 strbuf_addf(sb
, ",prefix:%d)", prefixlen
);
95 static size_t strcspn_escaped(const char *s
, const char *stop
)
99 for (i
= s
; *i
; i
++) {
100 /* skip the escaped character */
101 if (i
[0] == '\\' && i
[1]) {
106 if (strchr(stop
, *i
))
112 static inline int invalid_value_char(const char ch
)
114 if (isalnum(ch
) || strchr(",-_", ch
))
119 static char *attr_value_unescape(const char *value
)
124 ret
= xmallocz(strlen(value
));
125 for (src
= value
, dst
= ret
; *src
; src
++, dst
++) {
128 die(_("Escape character '\\' not allowed as "
129 "last character in attr value"));
132 if (invalid_value_char(*src
))
133 die("cannot use '%c' for value matching", *src
);
140 static void parse_pathspec_attr_match(struct pathspec_item
*item
, const char *value
)
142 struct string_list_item
*si
;
143 struct string_list list
= STRING_LIST_INIT_DUP
;
145 if (item
->attr_check
|| item
->attr_match
)
146 die(_("Only one 'attr:' specification is allowed."));
148 if (!value
|| !*value
)
149 die(_("attr spec must not be empty"));
151 string_list_split(&list
, value
, ' ', -1);
152 string_list_remove_empty_items(&list
, 0);
154 item
->attr_check
= attr_check_alloc();
155 item
->attr_match
= xcalloc(list
.nr
, sizeof(struct attr_match
));
157 for_each_string_list_item(si
, &list
) {
160 const struct git_attr
*a
;
162 int j
= item
->attr_match_nr
++;
163 const char *attr
= si
->string
;
164 struct attr_match
*am
= &item
->attr_match
[j
];
168 am
->match_mode
= MATCH_UNSPECIFIED
;
170 attr_len
= strlen(attr
);
173 am
->match_mode
= MATCH_UNSET
;
175 attr_len
= strlen(attr
);
178 attr_len
= strcspn(attr
, "=");
179 if (attr
[attr_len
] != '=')
180 am
->match_mode
= MATCH_SET
;
182 const char *v
= &attr
[attr_len
+ 1];
183 am
->match_mode
= MATCH_VALUE
;
184 am
->value
= attr_value_unescape(v
);
189 attr_name
= xmemdupz(attr
, attr_len
);
190 a
= git_attr(attr_name
);
192 die(_("invalid attribute name %s"), attr_name
);
194 attr_check_append(item
->attr_check
, a
);
199 if (item
->attr_check
->nr
!= item
->attr_match_nr
)
200 BUG("should have same number of entries");
202 string_list_clear(&list
, 0);
205 static inline int get_literal_global(void)
207 static int literal
= -1;
210 literal
= git_env_bool(GIT_LITERAL_PATHSPECS_ENVIRONMENT
, 0);
215 static inline int get_glob_global(void)
217 static int glob
= -1;
220 glob
= git_env_bool(GIT_GLOB_PATHSPECS_ENVIRONMENT
, 0);
225 static inline int get_noglob_global(void)
227 static int noglob
= -1;
230 noglob
= git_env_bool(GIT_NOGLOB_PATHSPECS_ENVIRONMENT
, 0);
235 static inline int get_icase_global(void)
237 static int icase
= -1;
240 icase
= git_env_bool(GIT_ICASE_PATHSPECS_ENVIRONMENT
, 0);
245 static int get_global_magic(int element_magic
)
247 int global_magic
= 0;
249 if (get_literal_global())
250 global_magic
|= PATHSPEC_LITERAL
;
252 /* --glob-pathspec is overridden by :(literal) */
253 if (get_glob_global() && !(element_magic
& PATHSPEC_LITERAL
))
254 global_magic
|= PATHSPEC_GLOB
;
256 if (get_glob_global() && get_noglob_global())
257 die(_("global 'glob' and 'noglob' pathspec settings are incompatible"));
259 if (get_icase_global())
260 global_magic
|= PATHSPEC_ICASE
;
262 if ((global_magic
& PATHSPEC_LITERAL
) &&
263 (global_magic
& ~PATHSPEC_LITERAL
))
264 die(_("global 'literal' pathspec setting is incompatible "
265 "with all other global pathspec settings"));
267 /* --noglob-pathspec adds :(literal) _unless_ :(glob) is specified */
268 if (get_noglob_global() && !(element_magic
& PATHSPEC_GLOB
))
269 global_magic
|= PATHSPEC_LITERAL
;
275 * Parse the pathspec element looking for long magic
277 * saves all magic in 'magic'
278 * if prefix magic is used, save the prefix length in 'prefix_len'
279 * returns the position in 'elem' after all magic has been parsed
281 static const char *parse_long_magic(unsigned *magic
, int *prefix_len
,
282 struct pathspec_item
*item
,
288 for (pos
= elem
+ 2; *pos
&& *pos
!= ')'; pos
= nextat
) {
289 size_t len
= strcspn_escaped(pos
, ",)");
293 nextat
= pos
+ len
+ 1; /* handle ',' */
295 nextat
= pos
+ len
; /* handle ')' and '\0' */
300 if (starts_with(pos
, "prefix:")) {
302 *prefix_len
= strtol(pos
+ 7, &endptr
, 10);
303 if (endptr
- pos
!= len
)
304 die(_("invalid parameter for pathspec magic 'prefix'"));
308 if (starts_with(pos
, "attr:")) {
309 char *attr_body
= xmemdupz(pos
+ 5, len
- 5);
310 parse_pathspec_attr_match(item
, attr_body
);
311 *magic
|= PATHSPEC_ATTR
;
316 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++) {
317 if (strlen(pathspec_magic
[i
].name
) == len
&&
318 !strncmp(pathspec_magic
[i
].name
, pos
, len
)) {
319 *magic
|= pathspec_magic
[i
].bit
;
324 if (ARRAY_SIZE(pathspec_magic
) <= i
)
325 die(_("Invalid pathspec magic '%.*s' in '%s'"),
326 (int) len
, pos
, elem
);
330 die(_("Missing ')' at the end of pathspec magic in '%s'"),
338 * Parse the pathspec element looking for short magic
340 * saves all magic in 'magic'
341 * returns the position in 'elem' after all magic has been parsed
343 static const char *parse_short_magic(unsigned *magic
, const char *elem
)
347 for (pos
= elem
+ 1; *pos
&& *pos
!= ':'; pos
++) {
351 /* Special case alias for '!' */
353 *magic
|= PATHSPEC_EXCLUDE
;
357 if (!is_pathspec_magic(ch
))
360 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++) {
361 if (pathspec_magic
[i
].mnemonic
== ch
) {
362 *magic
|= pathspec_magic
[i
].bit
;
367 if (ARRAY_SIZE(pathspec_magic
) <= i
)
368 die(_("Unimplemented pathspec magic '%c' in '%s'"),
378 static const char *parse_element_magic(unsigned *magic
, int *prefix_len
,
379 struct pathspec_item
*item
,
382 if (elem
[0] != ':' || get_literal_global())
383 return elem
; /* nothing to do */
384 else if (elem
[1] == '(')
386 return parse_long_magic(magic
, prefix_len
, item
, elem
);
389 return parse_short_magic(magic
, elem
);
393 * Perform the initialization of a pathspec_item based on a pathspec element.
395 static void init_pathspec_item(struct pathspec_item
*item
, unsigned flags
,
396 const char *prefix
, int prefixlen
,
399 unsigned magic
= 0, element_magic
= 0;
400 const char *copyfrom
= elt
;
402 int pathspec_prefix
= -1;
404 item
->attr_check
= NULL
;
405 item
->attr_match
= NULL
;
406 item
->attr_match_nr
= 0;
408 /* PATHSPEC_LITERAL_PATH ignores magic */
409 if (flags
& PATHSPEC_LITERAL_PATH
) {
410 magic
= PATHSPEC_LITERAL
;
412 copyfrom
= parse_element_magic(&element_magic
,
416 magic
|= element_magic
;
417 magic
|= get_global_magic(element_magic
);
422 if (pathspec_prefix
>= 0 &&
423 (prefixlen
|| (prefix
&& *prefix
)))
424 BUG("'prefix' magic is supposed to be used at worktree's root");
426 if ((magic
& PATHSPEC_LITERAL
) && (magic
& PATHSPEC_GLOB
))
427 die(_("%s: 'literal' and 'glob' are incompatible"), elt
);
429 /* Create match string which will be used for pathspec matching */
430 if (pathspec_prefix
>= 0) {
431 match
= xstrdup(copyfrom
);
432 prefixlen
= pathspec_prefix
;
433 } else if (magic
& PATHSPEC_FROMTOP
) {
434 match
= xstrdup(copyfrom
);
437 match
= prefix_path_gently(prefix
, prefixlen
,
438 &prefixlen
, copyfrom
);
440 die(_("%s: '%s' is outside repository"), elt
, copyfrom
);
444 item
->len
= strlen(item
->match
);
445 item
->prefix
= prefixlen
;
448 * Prefix the pathspec (keep all magic) and assign to
449 * original. Useful for passing to another command.
451 if ((flags
& PATHSPEC_PREFIX_ORIGIN
) &&
452 !get_literal_global()) {
453 struct strbuf sb
= STRBUF_INIT
;
455 /* Preserve the actual prefix length of each pattern */
456 prefix_magic(&sb
, prefixlen
, element_magic
);
458 strbuf_addstr(&sb
, match
);
459 item
->original
= strbuf_detach(&sb
, NULL
);
461 item
->original
= xstrdup(elt
);
464 if (magic
& PATHSPEC_LITERAL
) {
465 item
->nowildcard_len
= item
->len
;
467 item
->nowildcard_len
= simple_length(item
->match
);
468 if (item
->nowildcard_len
< prefixlen
)
469 item
->nowildcard_len
= prefixlen
;
473 if (magic
& PATHSPEC_GLOB
) {
475 * FIXME: should we enable ONESTAR in _GLOB for
476 * pattern "* * / * . c"?
479 if (item
->nowildcard_len
< item
->len
&&
480 item
->match
[item
->nowildcard_len
] == '*' &&
481 no_wildcard(item
->match
+ item
->nowildcard_len
+ 1))
482 item
->flags
|= PATHSPEC_ONESTAR
;
485 /* sanity checks, pathspec matchers assume these are sane */
486 if (item
->nowildcard_len
> item
->len
||
487 item
->prefix
> item
->len
) {
488 BUG("error initializing pathspec_item");
492 static int pathspec_item_cmp(const void *a_
, const void *b_
)
494 struct pathspec_item
*a
, *b
;
496 a
= (struct pathspec_item
*)a_
;
497 b
= (struct pathspec_item
*)b_
;
498 return strcmp(a
->match
, b
->match
);
501 static void NORETURN
unsupported_magic(const char *pattern
,
504 struct strbuf sb
= STRBUF_INIT
;
506 for (i
= 0; i
< ARRAY_SIZE(pathspec_magic
); i
++) {
507 const struct pathspec_magic
*m
= pathspec_magic
+ i
;
508 if (!(magic
& m
->bit
))
511 strbuf_addstr(&sb
, ", ");
514 strbuf_addf(&sb
, _("'%s' (mnemonic: '%c')"),
515 m
->name
, m
->mnemonic
);
517 strbuf_addf(&sb
, "'%s'", m
->name
);
520 * We may want to substitute "this command" with a command
521 * name. E.g. when add--interactive dies when running
524 die(_("%s: pathspec magic not supported by this command: %s"),
528 void parse_pathspec(struct pathspec
*pathspec
,
529 unsigned magic_mask
, unsigned flags
,
530 const char *prefix
, const char **argv
)
532 struct pathspec_item
*item
;
533 const char *entry
= argv
? *argv
: NULL
;
534 int i
, n
, prefixlen
, nr_exclude
= 0;
536 memset(pathspec
, 0, sizeof(*pathspec
));
538 if (flags
& PATHSPEC_MAXDEPTH_VALID
)
539 pathspec
->magic
|= PATHSPEC_MAXDEPTH
;
541 /* No arguments, no prefix -> no pathspec */
542 if (!entry
&& !prefix
)
545 if ((flags
& PATHSPEC_PREFER_CWD
) &&
546 (flags
& PATHSPEC_PREFER_FULL
))
547 BUG("PATHSPEC_PREFER_CWD and PATHSPEC_PREFER_FULL are incompatible");
549 /* No arguments with prefix -> prefix pathspec */
551 if (flags
& PATHSPEC_PREFER_FULL
)
554 if (!(flags
& PATHSPEC_PREFER_CWD
))
555 BUG("PATHSPEC_PREFER_CWD requires arguments");
557 pathspec
->items
= item
= xcalloc(1, sizeof(*item
));
558 item
->match
= xstrdup(prefix
);
559 item
->original
= xstrdup(prefix
);
560 item
->nowildcard_len
= item
->len
= strlen(prefix
);
561 item
->prefix
= item
->len
;
568 if (*argv
[n
] == '\0')
569 die("empty string is not a valid pathspec. "
570 "please use . instead if you meant to match all paths");
575 ALLOC_ARRAY(pathspec
->items
, n
+ 1);
576 item
= pathspec
->items
;
577 prefixlen
= prefix
? strlen(prefix
) : 0;
579 for (i
= 0; i
< n
; i
++) {
582 init_pathspec_item(item
+ i
, flags
, prefix
, prefixlen
, entry
);
584 if (item
[i
].magic
& PATHSPEC_EXCLUDE
)
586 if (item
[i
].magic
& magic_mask
)
587 unsupported_magic(entry
, item
[i
].magic
& magic_mask
);
589 if ((flags
& PATHSPEC_SYMLINK_LEADING_PATH
) &&
590 has_symlink_leading_path(item
[i
].match
, item
[i
].len
)) {
591 die(_("pathspec '%s' is beyond a symbolic link"), entry
);
594 if (item
[i
].nowildcard_len
< item
[i
].len
)
595 pathspec
->has_wildcard
= 1;
596 pathspec
->magic
|= item
[i
].magic
;
600 * If everything is an exclude pattern, add one positive pattern
601 * that matches everything. We allocated an extra one for this.
603 if (nr_exclude
== n
) {
604 int plen
= (!(flags
& PATHSPEC_PREFER_CWD
)) ? 0 : prefixlen
;
605 init_pathspec_item(item
+ n
, 0, prefix
, plen
, "");
609 if (pathspec
->magic
& PATHSPEC_MAXDEPTH
) {
610 if (flags
& PATHSPEC_KEEP_ORDER
)
611 BUG("PATHSPEC_MAXDEPTH_VALID and PATHSPEC_KEEP_ORDER are incompatible");
612 QSORT(pathspec
->items
, pathspec
->nr
, pathspec_item_cmp
);
616 void copy_pathspec(struct pathspec
*dst
, const struct pathspec
*src
)
621 ALLOC_ARRAY(dst
->items
, dst
->nr
);
622 COPY_ARRAY(dst
->items
, src
->items
, dst
->nr
);
624 for (i
= 0; i
< dst
->nr
; i
++) {
625 struct pathspec_item
*d
= &dst
->items
[i
];
626 struct pathspec_item
*s
= &src
->items
[i
];
628 d
->match
= xstrdup(s
->match
);
629 d
->original
= xstrdup(s
->original
);
631 ALLOC_ARRAY(d
->attr_match
, d
->attr_match_nr
);
632 COPY_ARRAY(d
->attr_match
, s
->attr_match
, d
->attr_match_nr
);
633 for (j
= 0; j
< d
->attr_match_nr
; j
++) {
634 const char *value
= s
->attr_match
[j
].value
;
635 d
->attr_match
[j
].value
= xstrdup_or_null(value
);
638 d
->attr_check
= attr_check_dup(s
->attr_check
);
642 void clear_pathspec(struct pathspec
*pathspec
)
646 for (i
= 0; i
< pathspec
->nr
; i
++) {
647 free(pathspec
->items
[i
].match
);
648 free(pathspec
->items
[i
].original
);
650 for (j
= 0; j
< pathspec
->items
[i
].attr_match_nr
; j
++)
651 free(pathspec
->items
[i
].attr_match
[j
].value
);
652 free(pathspec
->items
[i
].attr_match
);
654 if (pathspec
->items
[i
].attr_check
)
655 attr_check_free(pathspec
->items
[i
].attr_check
);
658 FREE_AND_NULL(pathspec
->items
);
662 int match_pathspec_attrs(const struct index_state
*istate
,
663 const char *name
, int namelen
,
664 const struct pathspec_item
*item
)
667 char *to_free
= NULL
;
670 name
= to_free
= xmemdupz(name
, namelen
);
672 git_check_attr(istate
, name
, item
->attr_check
);
676 for (i
= 0; i
< item
->attr_match_nr
; i
++) {
679 enum attr_match_mode match_mode
;
681 value
= item
->attr_check
->items
[i
].value
;
682 match_mode
= item
->attr_match
[i
].match_mode
;
684 if (ATTR_TRUE(value
))
685 matched
= (match_mode
== MATCH_SET
);
686 else if (ATTR_FALSE(value
))
687 matched
= (match_mode
== MATCH_UNSET
);
688 else if (ATTR_UNSET(value
))
689 matched
= (match_mode
== MATCH_UNSPECIFIED
);
691 matched
= (match_mode
== MATCH_VALUE
&&
692 !strcmp(item
->attr_match
[i
].value
, value
));