blob: ad06682fd54b3e7ae47d6f8a8d80048da0324f01 [file] [log] [blame]
Linus Torvalds453ec4b2006-05-16 19:02:14 -07001#ifndef DIR_H
2#define DIR_H
3
Elijah Newrenb9a7ac22023-05-16 06:34:07 +00004#include "hash-ll.h"
Derrick Stolee96cc8ab2019-11-21 22:04:41 +00005#include "hashmap.h"
Elijah Newrenac48adf2023-02-24 00:09:31 +00006#include "pathspec.h"
7#include "statinfo.h"
Junio C Hamanoeb417752012-06-01 11:28:00 -07008#include "strbuf.h"
9
Junio C Hamano67e73052023-07-06 11:54:46 -070010struct repository;
11
Heba Waly266f03e2019-11-17 21:04:41 +000012/**
13 * The directory listing API is used to enumerate paths in the work tree,
14 * optionally taking `.git/info/exclude` and `.gitignore` files per directory
15 * into account.
16 */
17
18/**
19 * Calling sequence
20 * ----------------
21 *
22 * Note: The index may be checked for .gitignore files that are
23 * CE_SKIP_WORKTREE marked. If you want to exclude files, make sure you have
24 * loaded the index first.
25 *
Elijah Newreneceba532020-08-18 22:58:26 +000026 * - Prepare `struct dir_struct dir` using `dir_init()` function.
Heba Waly266f03e2019-11-17 21:04:41 +000027 *
28 * - To add single exclude pattern, call `add_pattern_list()` and then
29 * `add_pattern()`.
30 *
31 * - To add patterns from a file (e.g. `.git/info/exclude`), call
Elijah Newreneceba532020-08-18 22:58:26 +000032 * `add_patterns_from_file()` , and/or set `dir.exclude_per_dir`.
Heba Waly266f03e2019-11-17 21:04:41 +000033 *
Elijah Newreneceba532020-08-18 22:58:26 +000034 * - A short-hand function `setup_standard_excludes()` can be used to set
35 * up the standard set of exclude settings, instead of manually calling
36 * the add_pattern*() family of functions.
Heba Waly266f03e2019-11-17 21:04:41 +000037 *
Elijah Newreneceba532020-08-18 22:58:26 +000038 * - Call `fill_directory()`.
Heba Waly266f03e2019-11-17 21:04:41 +000039 *
Elijah Newreneceba532020-08-18 22:58:26 +000040 * - Use `dir.entries[]` and `dir.ignored[]`.
Heba Waly266f03e2019-11-17 21:04:41 +000041 *
Elijah Newreneceba532020-08-18 22:58:26 +000042 * - Call `dir_clear()` when the contained elements are no longer in use.
Heba Waly266f03e2019-11-17 21:04:41 +000043 *
44 */
45
Calvin Wanf9401852023-06-06 19:48:41 +000046struct repository;
47
Linus Torvalds453ec4b2006-05-16 19:02:14 -070048struct dir_entry {
Jeff Kinge96980e2007-06-12 23:42:14 +020049 unsigned int len;
Linus Torvalds453ec4b2006-05-16 19:02:14 -070050 char name[FLEX_ARRAY]; /* more */
51};
52
Derrick Stolee4ff89ee2019-09-03 11:04:56 -070053#define PATTERN_FLAG_NODIR 1
54#define PATTERN_FLAG_ENDSWITH 4
55#define PATTERN_FLAG_MUSTBEDIR 8
56#define PATTERN_FLAG_NEGATIVE 16
Lars Knoll68492fc2007-10-28 21:27:13 +010057
Derrick Stoleeab8db612019-09-03 11:04:55 -070058struct path_pattern {
Nguyễn Thái Ngọc Duy709359c2014-07-14 11:48:03 +020059 /*
Derrick Stolee65edd962019-09-03 11:04:57 -070060 * This allows callers of last_matching_pattern() etc.
Nguyễn Thái Ngọc Duy709359c2014-07-14 11:48:03 +020061 * to determine the origin of the matching pattern.
62 */
Derrick Stoleecaa3d552019-09-03 11:04:56 -070063 struct pattern_list *pl;
Nguyễn Thái Ngọc Duy709359c2014-07-14 11:48:03 +020064
65 const char *pattern;
66 int patternlen;
67 int nowildcardlen;
68 const char *base;
69 int baselen;
Derrick Stolee4ff89ee2019-09-03 11:04:56 -070070 unsigned flags; /* PATTERN_FLAG_* */
Nguyễn Thái Ngọc Duy709359c2014-07-14 11:48:03 +020071
72 /*
73 * Counting starts from 1 for line numbers in ignore files,
74 * and from -1 decrementing for patterns from CLI args.
75 */
76 int srcpos;
77};
78
Derrick Stolee96cc8ab2019-11-21 22:04:41 +000079/* used for hashmaps for cone patterns */
80struct pattern_entry {
81 struct hashmap_entry ent;
82 char *pattern;
83 size_t patternlen;
84};
85
Adam Spiers95a68342012-12-27 02:32:21 +000086/*
Adam Spiersc082df22013-01-06 16:58:03 +000087 * Each excludes file will be parsed into a fresh exclude_list which
88 * is appended to the relevant exclude_list_group (either EXC_DIRS or
89 * EXC_FILE). An exclude_list within the EXC_CMDL exclude_list_group
90 * can also be used to represent the list of --exclude values passed
91 * via CLI args.
Adam Spiers95a68342012-12-27 02:32:21 +000092 */
Derrick Stoleecaa3d552019-09-03 11:04:56 -070093struct pattern_list {
Linus Torvalds453ec4b2006-05-16 19:02:14 -070094 int nr;
95 int alloc;
Adam Spiersc04318e2013-01-06 16:58:04 +000096
Adam Spiersc082df22013-01-06 16:58:03 +000097 /* remember pointer to exclude file contents so we can free() */
98 char *filebuf;
99
Adam Spiersc04318e2013-01-06 16:58:04 +0000100 /* origin of list, e.g. path to filename, or descriptive string */
101 const char *src;
102
Derrick Stoleeab8db612019-09-03 11:04:55 -0700103 struct path_pattern **patterns;
Derrick Stolee96cc8ab2019-11-21 22:04:41 +0000104
105 /*
106 * While scanning the excludes, we attempt to match the patterns
107 * with a more restricted set that allows us to use hashsets for
108 * matching logic, which is faster than the linear lookup in the
109 * excludes array above. If non-zero, that check succeeded.
110 */
111 unsigned use_cone_patterns;
112 unsigned full_cone;
113
114 /*
115 * Stores paths where everything starting with those paths
116 * is included.
117 */
118 struct hashmap recursive_hashmap;
119
120 /*
121 * Used to check single-level parents of blobs.
122 */
123 struct hashmap parent_hashmap;
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700124};
125
Adam Spiers95a68342012-12-27 02:32:21 +0000126/*
127 * The contents of the per-directory exclude files are lazily read on
128 * demand and then cached in memory, one per exclude_stack struct, in
129 * order to avoid opening and parsing each one every time that
130 * directory is traversed.
131 */
Junio C Hamano63d285c2007-11-29 02:17:44 -0800132struct exclude_stack {
Adam Spiers95a68342012-12-27 02:32:21 +0000133 struct exclude_stack *prev; /* the struct exclude_stack for the parent directory */
Junio C Hamano63d285c2007-11-29 02:17:44 -0800134 int baselen;
Adam Spiersc082df22013-01-06 16:58:03 +0000135 int exclude_ix; /* index of exclude_list within EXC_DIRS exclude_list_group */
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700136 struct untracked_cache_dir *ucd;
Adam Spiersc082df22013-01-06 16:58:03 +0000137};
138
139struct exclude_list_group {
140 int nr, alloc;
Derrick Stoleecaa3d552019-09-03 11:04:56 -0700141 struct pattern_list *pl;
Junio C Hamano63d285c2007-11-29 02:17:44 -0800142};
143
Patryk Obara4b33e602018-01-28 01:13:12 +0100144struct oid_stat {
Nguyễn Thái Ngọc Duy55fe6f52015-03-08 17:12:24 +0700145 struct stat_data stat;
Patryk Obara4b33e602018-01-28 01:13:12 +0100146 struct object_id oid;
Nguyễn Thái Ngọc Duy55fe6f52015-03-08 17:12:24 +0700147 int valid;
148};
149
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700150/*
151 * Untracked cache
152 *
153 * The following inputs are sufficient to determine what files in a
154 * directory are excluded:
155 *
156 * - The list of files and directories of the directory in question
157 * - The $GIT_DIR/index
158 * - dir_struct flags
159 * - The content of $GIT_DIR/info/exclude
160 * - The content of core.excludesfile
161 * - The content (or the lack) of .gitignore of all parent directories
162 * from $GIT_WORK_TREE
163 * - The check_only flag in read_directory_recursive (for
164 * DIR_HIDE_EMPTY_DIRECTORIES)
165 *
166 * The first input can be checked using directory mtime. In many
167 * filesystems, directory mtime (stat_data field) is updated when its
168 * files or direct subdirs are added or removed.
169 *
170 * The second one can be hooked from cache_tree_invalidate_path().
171 * Whenever a file (or a submodule) is added or removed from a
172 * directory, we invalidate that directory.
173 *
174 * The remaining inputs are easy, their SHA-1 could be used to verify
175 * their contents (exclude_sha1[], info_exclude_sha1[] and
176 * excludes_file_sha1[])
177 */
178struct untracked_cache_dir {
179 struct untracked_cache_dir **dirs;
180 char **untracked;
181 struct stat_data stat_data;
182 unsigned int untracked_alloc, dirs_nr, dirs_alloc;
183 unsigned int untracked_nr;
184 unsigned int check_only : 1;
Nguyễn Thái Ngọc Duy26cb0182015-03-08 17:12:30 +0700185 /* all data except 'dirs' in this struct are good */
Nguyễn Thái Ngọc Duyccad2612015-03-08 17:12:26 +0700186 unsigned int valid : 1;
Nguyễn Thái Ngọc Duy26cb0182015-03-08 17:12:30 +0700187 unsigned int recurse : 1;
brian m. carlson70c369c2018-05-02 00:25:48 +0000188 /* null object ID means this directory does not have .gitignore */
189 struct object_id exclude_oid;
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700190 char name[FLEX_ARRAY];
191};
192
193struct untracked_cache {
Patryk Obara4b33e602018-01-28 01:13:12 +0100194 struct oid_stat ss_info_exclude;
195 struct oid_stat ss_excludes_file;
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700196 const char *exclude_per_dir;
Ævar Arnfjörð Bjarmason083fd1a2022-11-08 19:17:41 +0100197 char *exclude_per_dir_to_free;
Nguyễn Thái Ngọc Duy1e8fef62015-03-08 17:12:46 +0700198 struct strbuf ident;
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700199 /*
200 * dir_struct#flags must match dir_flags or the untracked
201 * cache is ignored.
202 */
203 unsigned dir_flags;
204 struct untracked_cache_dir *root;
205 /* Statistics */
206 int dir_created;
Nguyễn Thái Ngọc Duyccad2612015-03-08 17:12:26 +0700207 int gitignore_invalidated;
Nguyễn Thái Ngọc Duy91a22882015-03-08 17:12:29 +0700208 int dir_invalidated;
209 int dir_opened;
Ben Peart883e2482017-09-22 12:35:40 -0400210 /* fsmonitor invalidation data */
211 unsigned int use_fsmonitor : 1;
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700212};
213
Heba Waly266f03e2019-11-17 21:04:41 +0000214/**
215 * structure is used to pass directory traversal options to the library and to
216 * record the paths discovered. A single `struct dir_struct` is used regardless
217 * of whether or not the traversal recursively descends into subdirectories.
218 */
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700219struct dir_struct {
Heba Waly266f03e2019-11-17 21:04:41 +0000220
Heba Waly266f03e2019-11-17 21:04:41 +0000221 /* bit-field of options */
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100222 enum {
Heba Waly266f03e2019-11-17 21:04:41 +0000223
224 /**
225 * Return just ignored files in `entries[]`, not untracked files.
226 * This flag is mutually exclusive with `DIR_SHOW_IGNORED_TOO`.
227 */
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100228 DIR_SHOW_IGNORED = 1<<0,
Heba Waly266f03e2019-11-17 21:04:41 +0000229
230 /* Include a directory that is not tracked. */
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100231 DIR_SHOW_OTHER_DIRECTORIES = 1<<1,
Heba Waly266f03e2019-11-17 21:04:41 +0000232
233 /* Do not include a directory that is not tracked and is empty. */
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100234 DIR_HIDE_EMPTY_DIRECTORIES = 1<<2,
Heba Waly266f03e2019-11-17 21:04:41 +0000235
236 /**
237 * If set, recurse into a directory that looks like a Git directory.
238 * Otherwise it is shown as a directory.
239 */
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100240 DIR_NO_GITLINKS = 1<<3,
Heba Waly266f03e2019-11-17 21:04:41 +0000241
242 /**
243 * Special mode for git-add. Return ignored files in `ignored[]` and
244 * untracked files in `entries[]`. Only returns ignored files that match
245 * pathspec exactly (no wildcards). Does not recurse into ignored
246 * directories.
247 */
Karsten Blees0aaf62b2013-04-15 21:15:03 +0200248 DIR_COLLECT_IGNORED = 1<<4,
Heba Waly266f03e2019-11-17 21:04:41 +0000249
250 /**
251 * Similar to `DIR_SHOW_IGNORED`, but return ignored files in
252 * `ignored[]` in addition to untracked files in `entries[]`.
253 * This flag is mutually exclusive with `DIR_SHOW_IGNORED`.
254 */
Junio C Hamano2eac2a42013-08-15 12:13:46 -0700255 DIR_SHOW_IGNORED_TOO = 1<<5,
Heba Waly266f03e2019-11-17 21:04:41 +0000256
Samuel Lijinfb898882017-05-18 04:21:52 -0400257 DIR_COLLECT_KILLED_ONLY = 1<<6,
Heba Waly266f03e2019-11-17 21:04:41 +0000258
259 /**
260 * Only has meaning if `DIR_SHOW_IGNORED_TOO` is also set; if this is
261 * set, the untracked contents of untracked directories are also
262 * returned in `entries[]`.
263 */
Jameson Millereec0f7f2017-10-30 13:21:37 -0400264 DIR_KEEP_UNTRACKED_CONTENTS = 1<<7,
Heba Waly266f03e2019-11-17 21:04:41 +0000265
266 /**
267 * Only has meaning if `DIR_SHOW_IGNORED_TOO` is also set; if this is
268 * set, returns ignored files and directories that match an exclude
269 * pattern. If a directory matches an exclude pattern, then the
270 * directory is returned and the contained paths are not. A directory
271 * that does not match an exclude pattern will not be returned even if
272 * all of its contents are ignored. In this case, the contents are
273 * returned as individual entries.
274 *
275 * If this is set, files and directories that explicitly match an ignore
276 * pattern are reported. Implicitly ignored directories (directories that
277 * do not match an ignore pattern, but whose contents are all ignored)
278 * are not reported, instead all of the contents are reported.
279 */
Elijah Newren09487f22019-09-17 09:35:02 -0700280 DIR_SHOW_IGNORED_TOO_MODE_MATCHING = 1<<8,
Heba Waly266f03e2019-11-17 21:04:41 +0000281
Elijah Newren09487f22019-09-17 09:35:02 -0700282 DIR_SKIP_NESTED_GIT = 1<<9
Johannes Schindelin7c4c97c2009-02-16 13:20:25 +0100283 } flags;
Heba Waly266f03e2019-11-17 21:04:41 +0000284
Elijah Newrend144a9d2023-02-27 15:28:12 +0000285 /* The number of members in `entries[]` array. */
286 int nr; /* output only */
287
288 /* The number of members in `ignored[]` array. */
289 int ignored_nr; /* output only */
290
Heba Waly266f03e2019-11-17 21:04:41 +0000291 /* An array of `struct dir_entry`, each element of which describes a path. */
Elijah Newrend144a9d2023-02-27 15:28:12 +0000292 struct dir_entry **entries; /* output only */
Heba Waly266f03e2019-11-17 21:04:41 +0000293
294 /**
295 * used for ignored paths with the `DIR_SHOW_IGNORED_TOO` and
296 * `DIR_COLLECT_IGNORED` flags.
297 */
Elijah Newrend144a9d2023-02-27 15:28:12 +0000298 struct dir_entry **ignored; /* output only */
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700299
Elijah Newren5fdf2852023-02-27 15:28:10 +0000300 /* Enable/update untracked file cache if set */
301 struct untracked_cache *untracked;
302
Heba Waly266f03e2019-11-17 21:04:41 +0000303 /**
Elijah Newren59e009b2023-02-27 15:28:11 +0000304 * Deprecated: ls-files is the only allowed caller; all other callers
305 * should leave this as NULL; it pre-dated the
306 * setup_standard_excludes() mechanism that replaces this.
307 *
308 * This field tracks the name of the file to be read in each directory
309 * for excluded files (typically `.gitignore`).
Heba Waly266f03e2019-11-17 21:04:41 +0000310 */
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700311 const char *exclude_per_dir;
Adam Spiersc082df22013-01-06 16:58:03 +0000312
Elijah Newren5fdf2852023-02-27 15:28:10 +0000313 struct dir_struct_internal {
314 /* Keeps track of allocation of `entries[]` array.*/
315 int alloc;
316
317 /* Keeps track of allocation of `ignored[]` array. */
318 int ignored_alloc;
319
320 /*
321 * We maintain three groups of exclude pattern lists:
322 *
323 * EXC_CMDL lists patterns explicitly given on the command line.
324 * EXC_DIRS lists patterns obtained from per-directory ignore
325 * files.
326 * EXC_FILE lists patterns from fallback ignore files, e.g.
327 * - .git/info/exclude
328 * - core.excludesfile
329 *
330 * Each group contains multiple exclude lists, a single list
331 * per source.
332 */
Junio C Hamano63d285c2007-11-29 02:17:44 -0800333#define EXC_CMDL 0
334#define EXC_DIRS 1
335#define EXC_FILE 2
Elijah Newren5fdf2852023-02-27 15:28:10 +0000336 struct exclude_list_group exclude_list_group[3];
Junio C Hamano63d285c2007-11-29 02:17:44 -0800337
Elijah Newren5fdf2852023-02-27 15:28:10 +0000338 /*
339 * Temporary variables which are used during loading of the
340 * per-directory exclude lists.
341 *
342 * exclude_stack points to the top of the exclude_stack, and
343 * basebuf contains the full path to the current
344 * (sub)directory in the traversal. Exclude points to the
345 * matching exclude struct if the directory is excluded.
346 */
347 struct exclude_stack *exclude_stack;
348 struct path_pattern *pattern;
349 struct strbuf basebuf;
Nguyễn Thái Ngọc Duy0dcb8d72015-03-08 17:12:25 +0700350
Elijah Newren5fdf2852023-02-27 15:28:10 +0000351 /* Additional metadata related to 'untracked' */
352 struct oid_stat ss_info_exclude;
353 struct oid_stat ss_excludes_file;
354 unsigned unmanaged_exclude_files;
Elijah Newren7fe1ffdaf2021-05-12 17:28:15 +0000355
Elijah Newren5fdf2852023-02-27 15:28:10 +0000356 /* Stats about the traversal */
357 unsigned visited_paths;
358 unsigned visited_directories;
359 } internal;
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700360};
361
Ævar Arnfjörð Bjarmasonce93a4c2021-07-01 12:51:27 +0200362#define DIR_INIT { 0 }
363
Elijah Newrenb548f0f2021-05-12 17:28:22 +0000364struct dirent *readdir_skip_dot_and_dotdot(DIR *dirp);
365
Prathamesh Chavane0556a92017-06-08 23:38:12 +0530366/*Count the number of slashes for string s*/
Denton Liu55454422019-04-29 04:28:14 -0400367int count_slashes(const char *s);
Prathamesh Chavane0556a92017-06-08 23:38:12 +0530368
Adam Spiers52ed1892013-01-06 16:58:06 +0000369/*
370 * The ordering of these constants is significant, with
371 * higher-numbered match types signifying "closer" (i.e. more
372 * specific) matches which will override lower-numbered match types
373 * when populating the seen[] array.
374 */
Junio C Hamanoe813d502006-12-25 03:09:52 -0800375#define MATCHED_RECURSIVELY 1
Elijah Newren89a1f4a2019-09-17 09:34:58 -0700376#define MATCHED_RECURSIVELY_LEADING_PATHSPEC 2
377#define MATCHED_FNMATCH 3
378#define MATCHED_EXACTLY 4
Denton Liu55454422019-04-29 04:28:14 -0400379int simple_length(const char *match);
380int no_wildcard(const char *string);
381char *common_prefix(const struct pathspec *pathspec);
Junio C Hamano4aeeef32019-05-13 23:50:32 +0900382int report_path_error(const char *ps_matched, const struct pathspec *pathspec);
Denton Liu55454422019-04-29 04:28:14 -0400383int within_depth(const char *name, int namelen, int depth, int max_depth);
Linus Torvalds3c6a3702006-05-19 16:07:51 -0700384
Denton Liu55454422019-04-29 04:28:14 -0400385int fill_directory(struct dir_struct *dir,
Denton Liuad6dad02019-04-29 04:28:23 -0400386 struct index_state *istate,
387 const struct pathspec *pathspec);
Denton Liu55454422019-04-29 04:28:14 -0400388int read_directory(struct dir_struct *, struct index_state *istate,
Denton Liuad6dad02019-04-29 04:28:23 -0400389 const char *path, int len,
390 const struct pathspec *pathspec);
Junio C Hamanof8a9d422006-12-04 16:00:46 -0800391
Derrick Stolee468ce992019-09-03 11:04:58 -0700392enum pattern_match_result {
393 UNDECIDED = -1,
394 NOT_MATCHED = 0,
395 MATCHED = 1,
Derrick Stoleeeb42fec2019-11-21 22:04:43 +0000396 MATCHED_RECURSIVE = 2,
Derrick Stolee468ce992019-09-03 11:04:58 -0700397};
398
399/*
400 * Scan the list of patterns to determine if the ordered list
401 * of patterns matches on 'pathname'.
402 *
403 * Return 1 for a match, 0 for not matched and -1 for undecided.
404 */
405enum pattern_match_result path_matches_pattern_list(const char *pathname,
406 int pathlen,
407 const char *basename, int *dtype,
408 struct pattern_list *pl,
409 struct index_state *istate);
Derrick Stolee02155c82021-09-08 01:42:30 +0000410
411int init_sparse_checkout_patterns(struct index_state *state);
412
413int path_in_sparse_checkout(const char *path,
414 struct index_state *istate);
415int path_in_cone_mode_sparse_checkout(const char *path,
416 struct index_state *istate);
417
Brandon Williams9e58bec2017-05-05 12:53:25 -0700418struct dir_entry *dir_add_ignored(struct dir_struct *dir,
419 struct index_state *istate,
420 const char *pathname, int len);
Junio C Hamanoeb417752012-06-01 11:28:00 -0700421
422/*
Nguyễn Thái Ngọc Duy82dce992012-10-15 13:24:39 +0700423 * these implement the matching logic for dir.c:excluded_from_list and
424 * attr.c:path_matches()
425 */
Denton Liu55454422019-04-29 04:28:14 -0400426int match_basename(const char *, int,
Denton Liuad6dad02019-04-29 04:28:23 -0400427 const char *, int, int, unsigned);
Denton Liu55454422019-04-29 04:28:14 -0400428int match_pathname(const char *, int,
Denton Liuad6dad02019-04-29 04:28:23 -0400429 const char *, int,
Jeff King77651c02022-08-19 04:50:54 -0400430 const char *, int, int);
Nguyễn Thái Ngọc Duy82dce992012-10-15 13:24:39 +0700431
Derrick Stolee65edd962019-09-03 11:04:57 -0700432struct path_pattern *last_matching_pattern(struct dir_struct *dir,
433 struct index_state *istate,
434 const char *name, int *dtype);
Junio C Hamano782cd4c2012-06-05 21:17:52 -0700435
Denton Liu55454422019-04-29 04:28:14 -0400436int is_excluded(struct dir_struct *dir,
Denton Liuad6dad02019-04-29 04:28:23 -0400437 struct index_state *istate,
438 const char *name, int *dtype);
Junio C Hamanoeb417752012-06-01 11:28:00 -0700439
Derrick Stoleeaf09ce22019-11-21 22:04:42 +0000440int pl_hashmap_cmp(const void *unused_cmp_data,
441 const struct hashmap_entry *a,
442 const struct hashmap_entry *b,
443 const void *key);
Derrick Stolee96cc8ab2019-11-21 22:04:41 +0000444int hashmap_contains_parent(struct hashmap *map,
445 const char *path,
446 struct strbuf *buffer);
Derrick Stolee65edd962019-09-03 11:04:57 -0700447struct pattern_list *add_pattern_list(struct dir_struct *dir,
Denton Liuad6dad02019-04-29 04:28:23 -0400448 int group_type, const char *src);
Derrick Stolee65edd962019-09-03 11:04:57 -0700449int add_patterns_from_file_to_list(const char *fname, const char *base, int baselen,
Jeff King1679d602021-02-16 09:44:28 -0500450 struct pattern_list *pl, struct index_state *istate,
451 unsigned flags);
Derrick Stolee65edd962019-09-03 11:04:57 -0700452void add_patterns_from_file(struct dir_struct *, const char *fname);
453int add_patterns_from_blob_to_list(struct object_id *oid,
Denton Liuad6dad02019-04-29 04:28:23 -0400454 const char *base, int baselen,
Derrick Stoleecaa3d552019-09-03 11:04:56 -0700455 struct pattern_list *pl);
Derrick Stolee65edd962019-09-03 11:04:57 -0700456void parse_path_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen);
457void add_pattern(const char *string, const char *base,
Derrick Stoleecaa3d552019-09-03 11:04:56 -0700458 int baselen, struct pattern_list *pl, int srcpos);
Derrick Stolee65edd962019-09-03 11:04:57 -0700459void clear_pattern_list(struct pattern_list *pl);
Elijah Newreneceba532020-08-18 22:58:26 +0000460void dir_clear(struct dir_struct *dir);
Nguyễn Thái Ngọc Duy04884812019-04-16 16:33:34 +0700461
462int repo_file_exists(struct repository *repo, const char *path);
463int file_exists(const char *);
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700464
Denton Liu55454422019-04-29 04:28:14 -0400465int is_inside_dir(const char *dir);
466int dir_inside_of(const char *subdir, const char *dir);
Johannes Schindeline6636742007-08-01 01:29:17 +0100467
Alexander Potashev8ca12c02009-01-10 15:07:50 +0300468static inline int is_dot_or_dotdot(const char *name)
469{
470 return (name[0] == '.' &&
471 (name[1] == '\0' ||
472 (name[1] == '.' && name[2] == '\0')));
473}
474
Denton Liu55454422019-04-29 04:28:14 -0400475int is_empty_dir(const char *dir);
Alexander Potashev55892d22009-01-11 15:19:12 +0300476
Atharva Raykared863012021-08-10 17:16:36 +0530477/*
478 * Retrieve the "humanish" basename of the given Git URL.
479 *
480 * For example:
481 * /path/to/repo.git => "repo"
482 * host.xz:foo/.git => "foo"
483 * http://example.com/user/bar.baz => "bar.baz"
484 */
485char *git_url_basename(const char *repo, int is_bundle, int is_bare);
486void strip_dir_trailing_slashes(char *dir);
487
Denton Liu55454422019-04-29 04:28:14 -0400488void setup_standard_excludes(struct dir_struct *dir);
Junio C Hamanoa0f4afb2009-06-30 15:33:45 -0700489
Derrick Stoleedd230222021-01-23 19:58:17 +0000490char *get_sparse_checkout_filename(void);
491int get_sparse_checkout_patterns(struct pattern_list *pl);
Michael Haggerty728af282016-04-24 07:07:59 +0200492
493/* Constants for remove_dir_recursively: */
494
495/*
496 * If a non-directory is found within path, stop and return an error.
497 * (In this case some empty directories might already have been
498 * removed.)
499 */
Junio C Hamanoa0f4afb2009-06-30 15:33:45 -0700500#define REMOVE_DIR_EMPTY_ONLY 01
Michael Haggerty728af282016-04-24 07:07:59 +0200501
502/*
503 * If any Git work trees are found within path, skip them without
504 * considering it an error.
505 */
Junio C Hamanoa0f4afb2009-06-30 15:33:45 -0700506#define REMOVE_DIR_KEEP_NESTED_GIT 02
Michael Haggerty728af282016-04-24 07:07:59 +0200507
508/* Remove the contents of path, but leave path itself. */
Junio C Hamanoc844a802012-03-15 15:58:54 +0100509#define REMOVE_DIR_KEEP_TOPLEVEL 04
Michael Haggerty728af282016-04-24 07:07:59 +0200510
Elijah Newren580a5d72021-12-09 05:08:34 +0000511/* Remove the_original_cwd too */
512#define REMOVE_DIR_PURGE_ORIGINAL_CWD 0x08
513
Michael Haggerty728af282016-04-24 07:07:59 +0200514/*
515 * Remove path and its contents, recursively. flags is a combination
516 * of the above REMOVE_DIR_* constants. Return 0 on success.
517 *
518 * This function uses path as temporary scratch space, but restores it
519 * before returning.
520 */
Denton Liu55454422019-04-29 04:28:14 -0400521int remove_dir_recursively(struct strbuf *path, int flag);
Johannes Schindelin7155b722007-09-28 16:28:54 +0100522
Elijah Newren63bbe8b2021-12-09 05:08:33 +0000523/*
524 * Tries to remove the path, along with leading empty directories so long as
525 * those empty directories are not startup_info->original_cwd. Ignores
526 * ENOENT.
527 */
Denton Liu55454422019-04-29 04:28:14 -0400528int remove_path(const char *path);
Alex Riesen4a92d1b2008-09-27 00:56:46 +0200529
Denton Liu55454422019-04-29 04:28:14 -0400530int fspathcmp(const char *a, const char *b);
Eric Wongcf2dc1c2021-07-07 23:10:15 +0000531int fspatheq(const char *a, const char *b);
Denton Liu55454422019-04-29 04:28:14 -0400532int fspathncmp(const char *a, const char *b, size_t count);
Eric Wongcf2dc1c2021-07-07 23:10:15 +0000533unsigned int fspathhash(const char *str);
Joshua Jensen8cf2a842010-10-03 09:56:41 +0000534
Nguyễn Thái Ngọc Duy5d747622012-11-24 11:33:49 +0700535/*
536 * The prefix part of pattern must not contains wildcards.
537 */
Nguyễn Thái Ngọc Duybd30c2e2013-07-14 15:36:08 +0700538struct pathspec_item;
Denton Liu55454422019-04-29 04:28:14 -0400539int git_fnmatch(const struct pathspec_item *item,
Denton Liuad6dad02019-04-29 04:28:23 -0400540 const char *pattern, const char *string,
541 int prefix);
Nguyễn Thái Ngọc Duy5d747622012-11-24 11:33:49 +0700542
Derrick Stolee847a9e52021-04-01 01:49:39 +0000543int submodule_path_match(struct index_state *istate,
Denton Liuad6dad02019-04-29 04:28:23 -0400544 const struct pathspec *ps,
545 const char *submodule_name,
546 char *seen);
Brandon Williams75a63152016-10-07 11:18:51 -0700547
Derrick Stolee847a9e52021-04-01 01:49:39 +0000548static inline int dir_path_match(struct index_state *istate,
Nguyễn Thái Ngọc Duy6d2df282018-08-13 18:14:22 +0200549 const struct dir_entry *ent,
Nguyễn Thái Ngọc Duyebb32892014-01-24 20:40:29 +0700550 const struct pathspec *pathspec,
551 int prefix, char *seen)
552{
Nguyễn Thái Ngọc Duyae8d0822014-01-24 20:40:33 +0700553 int has_trailing_dir = ent->len && ent->name[ent->len - 1] == '/';
554 int len = has_trailing_dir ? ent->len - 1 : ent->len;
Nguyễn Thái Ngọc Duy6d2df282018-08-13 18:14:22 +0200555 return match_pathspec(istate, pathspec, ent->name, len, prefix, seen,
Nguyễn Thái Ngọc Duyae8d0822014-01-24 20:40:33 +0700556 has_trailing_dir);
Nguyễn Thái Ngọc Duyebb32892014-01-24 20:40:29 +0700557}
558
Samuel Lijinbbf504a2017-05-18 04:21:53 -0400559int cmp_dir_entry(const void *p1, const void *p2);
560int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in);
561
Nguyễn Thái Ngọc Duy0cacebf2018-02-07 16:21:40 +0700562void untracked_cache_invalidate_path(struct index_state *, const char *, int safe_path);
Nguyễn Thái Ngọc Duye9313712015-03-08 17:12:35 +0700563void untracked_cache_remove_from_index(struct index_state *, const char *);
564void untracked_cache_add_to_index(struct index_state *, const char *);
565
Nguyễn Thái Ngọc Duyf9e6c642015-03-08 17:12:34 +0700566void free_untracked_cache(struct untracked_cache *);
567struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz);
Nguyễn Thái Ngọc Duy83c094a2015-03-08 17:12:33 +0700568void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked);
Christian Couder4a4ca472016-01-24 16:28:19 +0100569void add_untracked_cache(struct index_state *istate);
Christian Couder07b29bf2016-01-24 16:28:20 +0100570void remove_untracked_cache(struct index_state *istate);
Stefan Bellerda62f782018-03-28 15:35:31 -0700571
572/*
573 * Connect a worktree to a git directory by creating (or overwriting) a
574 * '.git' file containing the location of the git directory. In the git
575 * directory set the core.worktree setting to indicate where the worktree is.
576 * When `recurse_into_nested` is set, recurse into any nested submodules,
577 * connecting them as well.
578 */
Denton Liu55454422019-04-29 04:28:14 -0400579void connect_work_tree_and_git_dir(const char *work_tree,
Denton Liuad6dad02019-04-29 04:28:23 -0400580 const char *git_dir,
581 int recurse_into_nested);
Denton Liu55454422019-04-29 04:28:14 -0400582void relocate_gitdir(const char *path,
Denton Liuad6dad02019-04-29 04:28:23 -0400583 const char *old_git_dir,
584 const char *new_git_dir);
Ævar Arnfjörð Bjarmason9fd512c2022-05-16 20:10:59 +0000585
586/**
587 * The "enum path_matches_kind" determines how path_match_flags() will
588 * behave. The flags come in sets, and one (and only one) must be
589 * provided out of each "set":
590 *
591 * PATH_MATCH_NATIVE:
592 * Path separator is is_dir_sep()
593 * PATH_MATCH_XPLATFORM:
594 * Path separator is is_xplatform_dir_sep()
595 *
596 * Do we use is_dir_sep() to check for a directory separator
597 * (*_NATIVE), or do we always check for '/' or '\' (*_XPLATFORM). The
598 * "*_NATIVE" version on Windows is the same as "*_XPLATFORM",
599 * everywhere else "*_NATIVE" means "only /".
600 *
601 * PATH_MATCH_STARTS_WITH_DOT_SLASH:
602 * Match a path starting with "./"
603 * PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH:
604 * Match a path starting with "../"
605 *
606 * The "/" in the above is adjusted based on the "*_NATIVE" and
607 * "*_XPLATFORM" flags.
608 */
609enum path_match_flags {
610 PATH_MATCH_NATIVE = 1 << 0,
611 PATH_MATCH_XPLATFORM = 1 << 1,
612 PATH_MATCH_STARTS_WITH_DOT_SLASH = 1 << 2,
613 PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH = 1 << 3,
614};
615#define PATH_MATCH_KINDS_MASK (PATH_MATCH_STARTS_WITH_DOT_SLASH | \
616 PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH)
617#define PATH_MATCH_PLATFORM_MASK (PATH_MATCH_NATIVE | PATH_MATCH_XPLATFORM)
618
619/**
620 * path_match_flags() checks if a given "path" matches a given "enum
621 * path_match_flags" criteria.
622 */
623int path_match_flags(const char *const path, const enum path_match_flags f);
624
625/**
626 * starts_with_dot_slash_native(): convenience wrapper for
627 * path_match_flags() with PATH_MATCH_STARTS_WITH_DOT_SLASH and
628 * PATH_MATCH_NATIVE.
629 */
630static inline int starts_with_dot_slash_native(const char *const path)
631{
632 const enum path_match_flags what = PATH_MATCH_STARTS_WITH_DOT_SLASH;
633
634 return path_match_flags(path, what | PATH_MATCH_NATIVE);
635}
636
637/**
638 * starts_with_dot_slash_native(): convenience wrapper for
639 * path_match_flags() with PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH and
640 * PATH_MATCH_NATIVE.
641 */
642static inline int starts_with_dot_dot_slash_native(const char *const path)
643{
644 const enum path_match_flags what = PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH;
645
646 return path_match_flags(path, what | PATH_MATCH_NATIVE);
647}
Elijah Newren592fc5b2023-04-22 20:17:18 +0000648
Linus Torvalds453ec4b2006-05-16 19:02:14 -0700649#endif