]> git.ipfire.org Git - thirdparty/git.git/blame - dir.h
object.h: stop depending on cache.h; make cache.h depend on object.h
[thirdparty/git.git] / dir.h
CommitLineData
453ec4bd
LT
1#ifndef DIR_H
2#define DIR_H
3
70c369cd 4#include "cache.h"
96cc8ab5 5#include "hashmap.h"
eb41775e
JH
6#include "strbuf.h"
7
266f03ec
HW
8/**
9 * The directory listing API is used to enumerate paths in the work tree,
10 * optionally taking `.git/info/exclude` and `.gitignore` files per directory
11 * into account.
12 */
13
14/**
15 * Calling sequence
16 * ----------------
17 *
18 * Note: The index may be checked for .gitignore files that are
19 * CE_SKIP_WORKTREE marked. If you want to exclude files, make sure you have
20 * loaded the index first.
21 *
eceba532 22 * - Prepare `struct dir_struct dir` using `dir_init()` function.
266f03ec
HW
23 *
24 * - To add single exclude pattern, call `add_pattern_list()` and then
25 * `add_pattern()`.
26 *
27 * - To add patterns from a file (e.g. `.git/info/exclude`), call
eceba532 28 * `add_patterns_from_file()` , and/or set `dir.exclude_per_dir`.
266f03ec 29 *
eceba532
EN
30 * - A short-hand function `setup_standard_excludes()` can be used to set
31 * up the standard set of exclude settings, instead of manually calling
32 * the add_pattern*() family of functions.
266f03ec 33 *
eceba532 34 * - Call `fill_directory()`.
266f03ec 35 *
eceba532 36 * - Use `dir.entries[]` and `dir.ignored[]`.
266f03ec 37 *
eceba532 38 * - Call `dir_clear()` when the contained elements are no longer in use.
266f03ec
HW
39 *
40 */
41
453ec4bd 42struct dir_entry {
e96980ef 43 unsigned int len;
453ec4bd
LT
44 char name[FLEX_ARRAY]; /* more */
45};
46
4ff89ee5
DS
47#define PATTERN_FLAG_NODIR 1
48#define PATTERN_FLAG_ENDSWITH 4
49#define PATTERN_FLAG_MUSTBEDIR 8
50#define PATTERN_FLAG_NEGATIVE 16
68492fc7 51
ab8db613 52struct path_pattern {
709359c8 53 /*
65edd96a 54 * This allows callers of last_matching_pattern() etc.
709359c8
NTND
55 * to determine the origin of the matching pattern.
56 */
caa3d554 57 struct pattern_list *pl;
709359c8
NTND
58
59 const char *pattern;
60 int patternlen;
61 int nowildcardlen;
62 const char *base;
63 int baselen;
4ff89ee5 64 unsigned flags; /* PATTERN_FLAG_* */
709359c8
NTND
65
66 /*
67 * Counting starts from 1 for line numbers in ignore files,
68 * and from -1 decrementing for patterns from CLI args.
69 */
70 int srcpos;
71};
72
96cc8ab5
DS
73/* used for hashmaps for cone patterns */
74struct pattern_entry {
75 struct hashmap_entry ent;
76 char *pattern;
77 size_t patternlen;
78};
79
95a68344 80/*
c082df24
AS
81 * Each excludes file will be parsed into a fresh exclude_list which
82 * is appended to the relevant exclude_list_group (either EXC_DIRS or
83 * EXC_FILE). An exclude_list within the EXC_CMDL exclude_list_group
84 * can also be used to represent the list of --exclude values passed
85 * via CLI args.
95a68344 86 */
caa3d554 87struct pattern_list {
453ec4bd
LT
88 int nr;
89 int alloc;
c04318e4 90
c082df24
AS
91 /* remember pointer to exclude file contents so we can free() */
92 char *filebuf;
93
c04318e4
AS
94 /* origin of list, e.g. path to filename, or descriptive string */
95 const char *src;
96
ab8db613 97 struct path_pattern **patterns;
96cc8ab5
DS
98
99 /*
100 * While scanning the excludes, we attempt to match the patterns
101 * with a more restricted set that allows us to use hashsets for
102 * matching logic, which is faster than the linear lookup in the
103 * excludes array above. If non-zero, that check succeeded.
104 */
105 unsigned use_cone_patterns;
106 unsigned full_cone;
107
108 /*
109 * Stores paths where everything starting with those paths
110 * is included.
111 */
112 struct hashmap recursive_hashmap;
113
114 /*
115 * Used to check single-level parents of blobs.
116 */
117 struct hashmap parent_hashmap;
453ec4bd
LT
118};
119
95a68344
AS
120/*
121 * The contents of the per-directory exclude files are lazily read on
122 * demand and then cached in memory, one per exclude_stack struct, in
123 * order to avoid opening and parsing each one every time that
124 * directory is traversed.
125 */
63d285c8 126struct exclude_stack {
95a68344 127 struct exclude_stack *prev; /* the struct exclude_stack for the parent directory */
63d285c8 128 int baselen;
c082df24 129 int exclude_ix; /* index of exclude_list within EXC_DIRS exclude_list_group */
0dcb8d7f 130 struct untracked_cache_dir *ucd;
c082df24
AS
131};
132
133struct exclude_list_group {
134 int nr, alloc;
caa3d554 135 struct pattern_list *pl;
63d285c8
JH
136};
137
4b33e602 138struct oid_stat {
55fe6f51 139 struct stat_data stat;
4b33e602 140 struct object_id oid;
55fe6f51
NTND
141 int valid;
142};
143
0dcb8d7f
NTND
144/*
145 * Untracked cache
146 *
147 * The following inputs are sufficient to determine what files in a
148 * directory are excluded:
149 *
150 * - The list of files and directories of the directory in question
151 * - The $GIT_DIR/index
152 * - dir_struct flags
153 * - The content of $GIT_DIR/info/exclude
154 * - The content of core.excludesfile
155 * - The content (or the lack) of .gitignore of all parent directories
156 * from $GIT_WORK_TREE
157 * - The check_only flag in read_directory_recursive (for
158 * DIR_HIDE_EMPTY_DIRECTORIES)
159 *
160 * The first input can be checked using directory mtime. In many
161 * filesystems, directory mtime (stat_data field) is updated when its
162 * files or direct subdirs are added or removed.
163 *
164 * The second one can be hooked from cache_tree_invalidate_path().
165 * Whenever a file (or a submodule) is added or removed from a
166 * directory, we invalidate that directory.
167 *
168 * The remaining inputs are easy, their SHA-1 could be used to verify
169 * their contents (exclude_sha1[], info_exclude_sha1[] and
170 * excludes_file_sha1[])
171 */
172struct untracked_cache_dir {
173 struct untracked_cache_dir **dirs;
174 char **untracked;
175 struct stat_data stat_data;
176 unsigned int untracked_alloc, dirs_nr, dirs_alloc;
177 unsigned int untracked_nr;
178 unsigned int check_only : 1;
26cb0182 179 /* all data except 'dirs' in this struct are good */
ccad261f 180 unsigned int valid : 1;
26cb0182 181 unsigned int recurse : 1;
70c369cd 182 /* null object ID means this directory does not have .gitignore */
183 struct object_id exclude_oid;
0dcb8d7f
NTND
184 char name[FLEX_ARRAY];
185};
186
187struct untracked_cache {
4b33e602
PO
188 struct oid_stat ss_info_exclude;
189 struct oid_stat ss_excludes_file;
0dcb8d7f 190 const char *exclude_per_dir;
083fd1a2 191 char *exclude_per_dir_to_free;
1e8fef60 192 struct strbuf ident;
0dcb8d7f
NTND
193 /*
194 * dir_struct#flags must match dir_flags or the untracked
195 * cache is ignored.
196 */
197 unsigned dir_flags;
198 struct untracked_cache_dir *root;
199 /* Statistics */
200 int dir_created;
ccad261f 201 int gitignore_invalidated;
91a2288b
NTND
202 int dir_invalidated;
203 int dir_opened;
883e248b
BP
204 /* fsmonitor invalidation data */
205 unsigned int use_fsmonitor : 1;
0dcb8d7f
NTND
206};
207
266f03ec
HW
208/**
209 * structure is used to pass directory traversal options to the library and to
210 * record the paths discovered. A single `struct dir_struct` is used regardless
211 * of whether or not the traversal recursively descends into subdirectories.
212 */
453ec4bd 213struct dir_struct {
266f03ec
HW
214
215 /* The number of members in `entries[]` array. */
216 int nr;
217
218 /* Internal use; keeps track of allocation of `entries[]` array.*/
219 int alloc;
220
221 /* The number of members in `ignored[]` array. */
222 int ignored_nr;
223
224 int ignored_alloc;
225
226 /* bit-field of options */
7c4c97c0 227 enum {
266f03ec
HW
228
229 /**
230 * Return just ignored files in `entries[]`, not untracked files.
231 * This flag is mutually exclusive with `DIR_SHOW_IGNORED_TOO`.
232 */
7c4c97c0 233 DIR_SHOW_IGNORED = 1<<0,
266f03ec
HW
234
235 /* Include a directory that is not tracked. */
7c4c97c0 236 DIR_SHOW_OTHER_DIRECTORIES = 1<<1,
266f03ec
HW
237
238 /* Do not include a directory that is not tracked and is empty. */
7c4c97c0 239 DIR_HIDE_EMPTY_DIRECTORIES = 1<<2,
266f03ec
HW
240
241 /**
242 * If set, recurse into a directory that looks like a Git directory.
243 * Otherwise it is shown as a directory.
244 */
7c4c97c0 245 DIR_NO_GITLINKS = 1<<3,
266f03ec
HW
246
247 /**
248 * Special mode for git-add. Return ignored files in `ignored[]` and
249 * untracked files in `entries[]`. Only returns ignored files that match
250 * pathspec exactly (no wildcards). Does not recurse into ignored
251 * directories.
252 */
0aaf62b6 253 DIR_COLLECT_IGNORED = 1<<4,
266f03ec
HW
254
255 /**
256 * Similar to `DIR_SHOW_IGNORED`, but return ignored files in
257 * `ignored[]` in addition to untracked files in `entries[]`.
258 * This flag is mutually exclusive with `DIR_SHOW_IGNORED`.
259 */
2eac2a4c 260 DIR_SHOW_IGNORED_TOO = 1<<5,
266f03ec 261
fb898888 262 DIR_COLLECT_KILLED_ONLY = 1<<6,
266f03ec
HW
263
264 /**
265 * Only has meaning if `DIR_SHOW_IGNORED_TOO` is also set; if this is
266 * set, the untracked contents of untracked directories are also
267 * returned in `entries[]`.
268 */
eec0f7f2 269 DIR_KEEP_UNTRACKED_CONTENTS = 1<<7,
266f03ec
HW
270
271 /**
272 * Only has meaning if `DIR_SHOW_IGNORED_TOO` is also set; if this is
273 * set, returns ignored files and directories that match an exclude
274 * pattern. If a directory matches an exclude pattern, then the
275 * directory is returned and the contained paths are not. A directory
276 * that does not match an exclude pattern will not be returned even if
277 * all of its contents are ignored. In this case, the contents are
278 * returned as individual entries.
279 *
280 * If this is set, files and directories that explicitly match an ignore
281 * pattern are reported. Implicitly ignored directories (directories that
282 * do not match an ignore pattern, but whose contents are all ignored)
283 * are not reported, instead all of the contents are reported.
284 */
09487f2c 285 DIR_SHOW_IGNORED_TOO_MODE_MATCHING = 1<<8,
266f03ec 286
09487f2c 287 DIR_SKIP_NESTED_GIT = 1<<9
7c4c97c0 288 } flags;
266f03ec
HW
289
290 /* An array of `struct dir_entry`, each element of which describes a path. */
453ec4bd 291 struct dir_entry **entries;
266f03ec
HW
292
293 /**
294 * used for ignored paths with the `DIR_SHOW_IGNORED_TOO` and
295 * `DIR_COLLECT_IGNORED` flags.
296 */
2abd31b0 297 struct dir_entry **ignored;
453ec4bd 298
266f03ec
HW
299 /**
300 * The name of the file to be read in each directory for excluded files
301 * (typically `.gitignore`).
302 */
453ec4bd 303 const char *exclude_per_dir;
c082df24 304
63d285c8 305 /*
c082df24
AS
306 * We maintain three groups of exclude pattern lists:
307 *
63d285c8
JH
308 * EXC_CMDL lists patterns explicitly given on the command line.
309 * EXC_DIRS lists patterns obtained from per-directory ignore files.
c082df24
AS
310 * EXC_FILE lists patterns from fallback ignore files, e.g.
311 * - .git/info/exclude
312 * - core.excludesfile
313 *
314 * Each group contains multiple exclude lists, a single list
315 * per source.
63d285c8
JH
316 */
317#define EXC_CMDL 0
318#define EXC_DIRS 1
319#define EXC_FILE 2
c082df24 320 struct exclude_list_group exclude_list_group[3];
63d285c8 321
95a68344
AS
322 /*
323 * Temporary variables which are used during loading of the
324 * per-directory exclude lists.
325 *
326 * exclude_stack points to the top of the exclude_stack, and
327 * basebuf contains the full path to the current
95c6f271
KB
328 * (sub)directory in the traversal. Exclude points to the
329 * matching exclude struct if the directory is excluded.
95a68344 330 */
63d285c8 331 struct exclude_stack *exclude_stack;
ab8db613 332 struct path_pattern *pattern;
aceb9429 333 struct strbuf basebuf;
0dcb8d7f
NTND
334
335 /* Enable untracked file cache if set */
336 struct untracked_cache *untracked;
4b33e602
PO
337 struct oid_stat ss_info_exclude;
338 struct oid_stat ss_excludes_file;
ccad261f 339 unsigned unmanaged_exclude_files;
7fe1ffda
EN
340
341 /* Stats about the traversal */
342 unsigned visited_paths;
343 unsigned visited_directories;
453ec4bd
LT
344};
345
ce93a4c6
ÆAB
346#define DIR_INIT { 0 }
347
b548f0f1
EN
348struct dirent *readdir_skip_dot_and_dotdot(DIR *dirp);
349
e0556a92 350/*Count the number of slashes for string s*/
55454427 351int count_slashes(const char *s);
e0556a92 352
52ed1894
AS
353/*
354 * The ordering of these constants is significant, with
355 * higher-numbered match types signifying "closer" (i.e. more
356 * specific) matches which will override lower-numbered match types
357 * when populating the seen[] array.
358 */
e813d50e 359#define MATCHED_RECURSIVELY 1
89a1f4aa
EN
360#define MATCHED_RECURSIVELY_LEADING_PATHSPEC 2
361#define MATCHED_FNMATCH 3
362#define MATCHED_EXACTLY 4
55454427
DL
363int simple_length(const char *match);
364int no_wildcard(const char *string);
365char *common_prefix(const struct pathspec *pathspec);
847a9e5d 366int match_pathspec(struct index_state *istate,
ad6dad09
DL
367 const struct pathspec *pathspec,
368 const char *name, int namelen,
369 int prefix, char *seen, int is_dir);
4aeeef37 370int report_path_error(const char *ps_matched, const struct pathspec *pathspec);
55454427 371int within_depth(const char *name, int namelen, int depth, int max_depth);
3c6a370b 372
55454427 373int fill_directory(struct dir_struct *dir,
ad6dad09
DL
374 struct index_state *istate,
375 const struct pathspec *pathspec);
55454427 376int read_directory(struct dir_struct *, struct index_state *istate,
ad6dad09
DL
377 const char *path, int len,
378 const struct pathspec *pathspec);
f8a9d428 379
468ce99b
DS
380enum pattern_match_result {
381 UNDECIDED = -1,
382 NOT_MATCHED = 0,
383 MATCHED = 1,
eb42feca 384 MATCHED_RECURSIVE = 2,
468ce99b
DS
385};
386
387/*
388 * Scan the list of patterns to determine if the ordered list
389 * of patterns matches on 'pathname'.
390 *
391 * Return 1 for a match, 0 for not matched and -1 for undecided.
392 */
393enum pattern_match_result path_matches_pattern_list(const char *pathname,
394 int pathlen,
395 const char *basename, int *dtype,
396 struct pattern_list *pl,
397 struct index_state *istate);
02155c8c
DS
398
399int init_sparse_checkout_patterns(struct index_state *state);
400
401int path_in_sparse_checkout(const char *path,
402 struct index_state *istate);
403int path_in_cone_mode_sparse_checkout(const char *path,
404 struct index_state *istate);
405
9e58beca
BW
406struct dir_entry *dir_add_ignored(struct dir_struct *dir,
407 struct index_state *istate,
408 const char *pathname, int len);
eb41775e 409
82dce998
NTND
410/*
411 * these implement the matching logic for dir.c:excluded_from_list and
412 * attr.c:path_matches()
413 */
55454427 414int match_basename(const char *, int,
ad6dad09 415 const char *, int, int, unsigned);
55454427 416int match_pathname(const char *, int,
ad6dad09 417 const char *, int,
77651c03 418 const char *, int, int);
82dce998 419
65edd96a
DS
420struct path_pattern *last_matching_pattern(struct dir_struct *dir,
421 struct index_state *istate,
422 const char *name, int *dtype);
782cd4c0 423
55454427 424int is_excluded(struct dir_struct *dir,
ad6dad09
DL
425 struct index_state *istate,
426 const char *name, int *dtype);
eb41775e 427
af09ce24
DS
428int pl_hashmap_cmp(const void *unused_cmp_data,
429 const struct hashmap_entry *a,
430 const struct hashmap_entry *b,
431 const void *key);
96cc8ab5
DS
432int hashmap_contains_parent(struct hashmap *map,
433 const char *path,
434 struct strbuf *buffer);
65edd96a 435struct pattern_list *add_pattern_list(struct dir_struct *dir,
ad6dad09 436 int group_type, const char *src);
65edd96a 437int add_patterns_from_file_to_list(const char *fname, const char *base, int baselen,
1679d60b
JK
438 struct pattern_list *pl, struct index_state *istate,
439 unsigned flags);
65edd96a
DS
440void add_patterns_from_file(struct dir_struct *, const char *fname);
441int add_patterns_from_blob_to_list(struct object_id *oid,
ad6dad09 442 const char *base, int baselen,
caa3d554 443 struct pattern_list *pl);
65edd96a
DS
444void parse_path_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen);
445void add_pattern(const char *string, const char *base,
caa3d554 446 int baselen, struct pattern_list *pl, int srcpos);
65edd96a 447void clear_pattern_list(struct pattern_list *pl);
eceba532 448void dir_clear(struct dir_struct *dir);
0488481e
NTND
449
450int repo_file_exists(struct repository *repo, const char *path);
451int file_exists(const char *);
453ec4bd 452
55454427
DL
453int is_inside_dir(const char *dir);
454int dir_inside_of(const char *subdir, const char *dir);
e6636747 455
8ca12c0d
AP
456static inline int is_dot_or_dotdot(const char *name)
457{
458 return (name[0] == '.' &&
459 (name[1] == '\0' ||
460 (name[1] == '.' && name[2] == '\0')));
461}
462
55454427 463int is_empty_dir(const char *dir);
55892d23 464
ed86301f
AR
465/*
466 * Retrieve the "humanish" basename of the given Git URL.
467 *
468 * For example:
469 * /path/to/repo.git => "repo"
470 * host.xz:foo/.git => "foo"
471 * http://example.com/user/bar.baz => "bar.baz"
472 */
473char *git_url_basename(const char *repo, int is_bundle, int is_bare);
474void strip_dir_trailing_slashes(char *dir);
475
55454427 476void setup_standard_excludes(struct dir_struct *dir);
a0f4afbe 477
dd23022a
DS
478char *get_sparse_checkout_filename(void);
479int get_sparse_checkout_patterns(struct pattern_list *pl);
728af283
MH
480
481/* Constants for remove_dir_recursively: */
482
483/*
484 * If a non-directory is found within path, stop and return an error.
485 * (In this case some empty directories might already have been
486 * removed.)
487 */
a0f4afbe 488#define REMOVE_DIR_EMPTY_ONLY 01
728af283
MH
489
490/*
491 * If any Git work trees are found within path, skip them without
492 * considering it an error.
493 */
a0f4afbe 494#define REMOVE_DIR_KEEP_NESTED_GIT 02
728af283
MH
495
496/* Remove the contents of path, but leave path itself. */
c844a803 497#define REMOVE_DIR_KEEP_TOPLEVEL 04
728af283 498
580a5d7f
EN
499/* Remove the_original_cwd too */
500#define REMOVE_DIR_PURGE_ORIGINAL_CWD 0x08
501
728af283
MH
502/*
503 * Remove path and its contents, recursively. flags is a combination
504 * of the above REMOVE_DIR_* constants. Return 0 on success.
505 *
506 * This function uses path as temporary scratch space, but restores it
507 * before returning.
508 */
55454427 509int remove_dir_recursively(struct strbuf *path, int flag);
7155b727 510
63bbe8be
EN
511/*
512 * Tries to remove the path, along with leading empty directories so long as
513 * those empty directories are not startup_info->original_cwd. Ignores
514 * ENOENT.
515 */
55454427 516int remove_path(const char *path);
4a92d1bf 517
55454427 518int fspathcmp(const char *a, const char *b);
cf2dc1c2 519int fspatheq(const char *a, const char *b);
55454427 520int fspathncmp(const char *a, const char *b, size_t count);
cf2dc1c2 521unsigned int fspathhash(const char *str);
8cf2a84e 522
5d74762d
NTND
523/*
524 * The prefix part of pattern must not contains wildcards.
525 */
bd30c2e4 526struct pathspec_item;
55454427 527int git_fnmatch(const struct pathspec_item *item,
ad6dad09
DL
528 const char *pattern, const char *string,
529 int prefix);
5d74762d 530
847a9e5d 531int submodule_path_match(struct index_state *istate,
ad6dad09
DL
532 const struct pathspec *ps,
533 const char *submodule_name,
534 char *seen);
75a6315f 535
847a9e5d 536static inline int ce_path_match(struct index_state *istate,
6d2df284 537 const struct cache_entry *ce,
429bb40a
NTND
538 const struct pathspec *pathspec,
539 char *seen)
540{
6d2df284 541 return match_pathspec(istate, pathspec, ce->name, ce_namelen(ce), 0, seen,
ae8d0824 542 S_ISDIR(ce->ce_mode) || S_ISGITLINK(ce->ce_mode));
429bb40a
NTND
543}
544
847a9e5d 545static inline int dir_path_match(struct index_state *istate,
6d2df284 546 const struct dir_entry *ent,
ebb32893
NTND
547 const struct pathspec *pathspec,
548 int prefix, char *seen)
549{
ae8d0824
NTND
550 int has_trailing_dir = ent->len && ent->name[ent->len - 1] == '/';
551 int len = has_trailing_dir ? ent->len - 1 : ent->len;
6d2df284 552 return match_pathspec(istate, pathspec, ent->name, len, prefix, seen,
ae8d0824 553 has_trailing_dir);
ebb32893
NTND
554}
555
bbf504a9
SL
556int cmp_dir_entry(const void *p1, const void *p2);
557int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in);
558
0cacebf0 559void untracked_cache_invalidate_path(struct index_state *, const char *, int safe_path);
e931371a
NTND
560void untracked_cache_remove_from_index(struct index_state *, const char *);
561void untracked_cache_add_to_index(struct index_state *, const char *);
562
f9e6c649
NTND
563void free_untracked_cache(struct untracked_cache *);
564struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz);
83c094ad 565void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked);
4a4ca479 566void add_untracked_cache(struct index_state *istate);
07b29bfd 567void remove_untracked_cache(struct index_state *istate);
da62f786
SB
568
569/*
570 * Connect a worktree to a git directory by creating (or overwriting) a
571 * '.git' file containing the location of the git directory. In the git
572 * directory set the core.worktree setting to indicate where the worktree is.
573 * When `recurse_into_nested` is set, recurse into any nested submodules,
574 * connecting them as well.
575 */
55454427 576void connect_work_tree_and_git_dir(const char *work_tree,
ad6dad09
DL
577 const char *git_dir,
578 int recurse_into_nested);
55454427 579void relocate_gitdir(const char *path,
ad6dad09
DL
580 const char *old_git_dir,
581 const char *new_git_dir);
9fd512c8
ÆAB
582
583/**
584 * The "enum path_matches_kind" determines how path_match_flags() will
585 * behave. The flags come in sets, and one (and only one) must be
586 * provided out of each "set":
587 *
588 * PATH_MATCH_NATIVE:
589 * Path separator is is_dir_sep()
590 * PATH_MATCH_XPLATFORM:
591 * Path separator is is_xplatform_dir_sep()
592 *
593 * Do we use is_dir_sep() to check for a directory separator
594 * (*_NATIVE), or do we always check for '/' or '\' (*_XPLATFORM). The
595 * "*_NATIVE" version on Windows is the same as "*_XPLATFORM",
596 * everywhere else "*_NATIVE" means "only /".
597 *
598 * PATH_MATCH_STARTS_WITH_DOT_SLASH:
599 * Match a path starting with "./"
600 * PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH:
601 * Match a path starting with "../"
602 *
603 * The "/" in the above is adjusted based on the "*_NATIVE" and
604 * "*_XPLATFORM" flags.
605 */
606enum path_match_flags {
607 PATH_MATCH_NATIVE = 1 << 0,
608 PATH_MATCH_XPLATFORM = 1 << 1,
609 PATH_MATCH_STARTS_WITH_DOT_SLASH = 1 << 2,
610 PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH = 1 << 3,
611};
612#define PATH_MATCH_KINDS_MASK (PATH_MATCH_STARTS_WITH_DOT_SLASH | \
613 PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH)
614#define PATH_MATCH_PLATFORM_MASK (PATH_MATCH_NATIVE | PATH_MATCH_XPLATFORM)
615
616/**
617 * path_match_flags() checks if a given "path" matches a given "enum
618 * path_match_flags" criteria.
619 */
620int path_match_flags(const char *const path, const enum path_match_flags f);
621
622/**
623 * starts_with_dot_slash_native(): convenience wrapper for
624 * path_match_flags() with PATH_MATCH_STARTS_WITH_DOT_SLASH and
625 * PATH_MATCH_NATIVE.
626 */
627static inline int starts_with_dot_slash_native(const char *const path)
628{
629 const enum path_match_flags what = PATH_MATCH_STARTS_WITH_DOT_SLASH;
630
631 return path_match_flags(path, what | PATH_MATCH_NATIVE);
632}
633
634/**
635 * starts_with_dot_slash_native(): convenience wrapper for
636 * path_match_flags() with PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH and
637 * PATH_MATCH_NATIVE.
638 */
639static inline int starts_with_dot_dot_slash_native(const char *const path)
640{
641 const enum path_match_flags what = PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH;
642
643 return path_match_flags(path, what | PATH_MATCH_NATIVE);
644}
453ec4bd 645#endif