7 #define PATHSPEC_FROMTOP (1<<0)
8 #define PATHSPEC_MAXDEPTH (1<<1)
9 #define PATHSPEC_LITERAL (1<<2)
10 #define PATHSPEC_GLOB (1<<3)
11 #define PATHSPEC_ICASE (1<<4)
12 #define PATHSPEC_EXCLUDE (1<<5)
13 #define PATHSPEC_ATTR (1<<6)
14 #define PATHSPEC_ALL_MAGIC \
23 #define PATHSPEC_ONESTAR 1 /* the pathspec pattern satisfies GFNM_ONESTAR */
26 * See glossary-context.txt for the syntax of pathspec.
27 * In memory, a pathspec set is represented by "struct pathspec" and is
28 * prepared by parse_pathspec().
32 unsigned int has_wildcard
:1;
33 unsigned int recursive
:1;
34 unsigned int recurse_submodules
:1;
37 struct pathspec_item
{
47 enum attr_match_mode
{
54 struct attr_check
*attr_check
;
58 #define GUARD_PATHSPEC(ps, mask) \
60 if ((ps)->magic & ~(mask)) \
61 BUG("unsupported magic %x", (ps)->magic & ~(mask)); \
64 /* parse_pathspec flags */
65 #define PATHSPEC_PREFER_CWD (1<<0) /* No args means match cwd */
66 #define PATHSPEC_PREFER_FULL (1<<1) /* No args means match everything */
67 #define PATHSPEC_MAXDEPTH_VALID (1<<2) /* max_depth field is valid */
68 /* die if a symlink is part of the given path's directory */
69 #define PATHSPEC_SYMLINK_LEADING_PATH (1<<3)
70 #define PATHSPEC_PREFIX_ORIGIN (1<<4)
71 #define PATHSPEC_KEEP_ORDER (1<<5)
73 * For the callers that just need pure paths from somewhere else, not
74 * from command line. Global --*-pathspecs options are ignored. No
75 * magic is parsed in each pathspec either. If PATHSPEC_LITERAL is
76 * allowed, then it will automatically set for every pathspec.
78 #define PATHSPEC_LITERAL_PATH (1<<6)
81 * Given command line arguments and a prefix, convert the input to
82 * pathspec. die() if any magic in magic_mask is used.
84 * Any arguments used are copied. It is safe for the caller to modify
85 * or free 'prefix' and 'args' after calling this function.
87 * - magic_mask specifies what features that are NOT supported by the following
88 * code. If a user attempts to use such a feature, parse_pathspec() can reject
91 * - flags specifies other things that the caller wants parse_pathspec to
94 * - prefix and args come from cmd_* functions
96 * parse_pathspec() helps catch unsupported features and reject them politely.
97 * At a lower level, different pathspec-related functions may not support the
98 * same set of features. Such pathspec-sensitive functions are guarded with
99 * GUARD_PATHSPEC(), which will die in an unfriendly way when an unsupported
100 * feature is requested.
102 * The command designers are supposed to make sure that GUARD_PATHSPEC() never
103 * dies. They have to make sure all unsupported features are caught by
104 * parse_pathspec(), not by GUARD_PATHSPEC. grepping GUARD_PATHSPEC() should
105 * give the designers all pathspec-sensitive codepaths and what features they
108 * A similar process is applied when a new pathspec magic is added. The designer
109 * lifts the GUARD_PATHSPEC restriction in the functions that support the new
110 * magic while at the same time making sure this new feature will be
111 * caught at parse_pathspec() in commands that cannot handle the new magic in
112 * some cases. grepping parse_pathspec() should help.
114 void parse_pathspec(struct pathspec
*pathspec
,
120 * Same as parse_pathspec() but uses file as input.
121 * When 'file' is exactly "-" it uses 'stdin' instead.
123 void parse_pathspec_file(struct pathspec
*pathspec
,
130 void copy_pathspec(struct pathspec
*dst
, const struct pathspec
*src
);
131 void clear_pathspec(struct pathspec
*);
133 static inline int ps_strncmp(const struct pathspec_item
*item
,
134 const char *s1
, const char *s2
, size_t n
)
136 if (item
->magic
& PATHSPEC_ICASE
)
137 return strncasecmp(s1
, s2
, n
);
139 return strncmp(s1
, s2
, n
);
142 static inline int ps_strcmp(const struct pathspec_item
*item
,
143 const char *s1
, const char *s2
)
145 if (item
->magic
& PATHSPEC_ICASE
)
146 return strcasecmp(s1
, s2
);
148 return strcmp(s1
, s2
);
151 enum ps_skip_worktree_action
{
152 PS_HEED_SKIP_WORKTREE
= 0,
153 PS_IGNORE_SKIP_WORKTREE
= 1
155 void add_pathspec_matches_against_index(const struct pathspec
*pathspec
,
156 struct index_state
*istate
,
158 enum ps_skip_worktree_action sw_action
);
159 char *find_pathspecs_matching_against_index(const struct pathspec
*pathspec
,
160 struct index_state
*istate
,
161 enum ps_skip_worktree_action sw_action
);
162 char *find_pathspecs_matching_skip_worktree(const struct pathspec
*pathspec
);
163 static inline int matches_skip_worktree(const struct pathspec
*pathspec
,
164 int item
, char **seen_ptr
)
167 *seen_ptr
= find_pathspecs_matching_skip_worktree(pathspec
);
168 return (*seen_ptr
)[item
];
170 int match_pathspec_attrs(struct index_state
*istate
,
171 const char *name
, int namelen
,
172 const struct pathspec_item
*item
);
174 #endif /* PATHSPEC_H */