| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 1 | #ifndef DIR_H |
| 2 | #define DIR_H |
| 3 | |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 4 | /* See Documentation/technical/api-directory-listing.txt */ |
| 5 | |
| brian m. carlson | 70c369c | 2018-05-02 00:25:48 | [diff] [blame] | 6 | #include "cache.h" |
| Junio C Hamano | eb41775 | 2012-06-01 18:28:00 | [diff] [blame] | 7 | #include "strbuf.h" |
| 8 | |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 9 | struct dir_entry { |
| Jeff King | e96980e | 2007-06-12 21:42:14 | [diff] [blame] | 10 | unsigned int len; |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 11 | char name[FLEX_ARRAY]; /* more */ |
| 12 | }; |
| 13 | |
| Lars Knoll | 68492fc | 2007-10-28 20:27:13 | [diff] [blame] | 14 | #define EXC_FLAG_NODIR 1 |
| Lars Knoll | 68492fc | 2007-10-28 20:27:13 | [diff] [blame] | 15 | #define EXC_FLAG_ENDSWITH 4 |
| Junio C Hamano | d6b8fc3 | 2008-01-31 09:17:48 | [diff] [blame] | 16 | #define EXC_FLAG_MUSTBEDIR 8 |
| Nguyễn Thái Ngọc Duy | 84460ee | 2012-10-15 06:24:38 | [diff] [blame] | 17 | #define EXC_FLAG_NEGATIVE 16 |
| Lars Knoll | 68492fc | 2007-10-28 20:27:13 | [diff] [blame] | 18 | |
| Nguyễn Thái Ngọc Duy | 709359c | 2014-07-14 09:48:03 | [diff] [blame] | 19 | struct exclude { |
| 20 | /* |
| 21 | * This allows callers of last_exclude_matching() etc. |
| 22 | * to determine the origin of the matching pattern. |
| 23 | */ |
| 24 | struct exclude_list *el; |
| 25 | |
| 26 | const char *pattern; |
| 27 | int patternlen; |
| 28 | int nowildcardlen; |
| 29 | const char *base; |
| 30 | int baselen; |
| Saurav Sachidanand | f870899 | 2016-03-01 17:02:59 | [diff] [blame] | 31 | unsigned flags; /* EXC_FLAG_* */ |
| Nguyễn Thái Ngọc Duy | 709359c | 2014-07-14 09:48:03 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * Counting starts from 1 for line numbers in ignore files, |
| 35 | * and from -1 decrementing for patterns from CLI args. |
| 36 | */ |
| 37 | int srcpos; |
| 38 | }; |
| 39 | |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 40 | /* |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 41 | * Each excludes file will be parsed into a fresh exclude_list which |
| 42 | * is appended to the relevant exclude_list_group (either EXC_DIRS or |
| 43 | * EXC_FILE). An exclude_list within the EXC_CMDL exclude_list_group |
| 44 | * can also be used to represent the list of --exclude values passed |
| 45 | * via CLI args. |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 46 | */ |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 47 | struct exclude_list { |
| 48 | int nr; |
| 49 | int alloc; |
| Adam Spiers | c04318e | 2013-01-06 16:58:04 | [diff] [blame] | 50 | |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 51 | /* remember pointer to exclude file contents so we can free() */ |
| 52 | char *filebuf; |
| 53 | |
| Adam Spiers | c04318e | 2013-01-06 16:58:04 | [diff] [blame] | 54 | /* origin of list, e.g. path to filename, or descriptive string */ |
| 55 | const char *src; |
| 56 | |
| Nguyễn Thái Ngọc Duy | 709359c | 2014-07-14 09:48:03 | [diff] [blame] | 57 | struct exclude **excludes; |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 58 | }; |
| 59 | |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 60 | /* |
| 61 | * The contents of the per-directory exclude files are lazily read on |
| 62 | * demand and then cached in memory, one per exclude_stack struct, in |
| 63 | * order to avoid opening and parsing each one every time that |
| 64 | * directory is traversed. |
| 65 | */ |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 66 | struct exclude_stack { |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 67 | struct exclude_stack *prev; /* the struct exclude_stack for the parent directory */ |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 68 | int baselen; |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 69 | int exclude_ix; /* index of exclude_list within EXC_DIRS exclude_list_group */ |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 70 | struct untracked_cache_dir *ucd; |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 71 | }; |
| 72 | |
| 73 | struct exclude_list_group { |
| 74 | int nr, alloc; |
| 75 | struct exclude_list *el; |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 76 | }; |
| 77 | |
| Patryk Obara | 4b33e60 | 2018-01-28 00:13:12 | [diff] [blame] | 78 | struct oid_stat { |
| Nguyễn Thái Ngọc Duy | 55fe6f5 | 2015-03-08 10:12:24 | [diff] [blame] | 79 | struct stat_data stat; |
| Patryk Obara | 4b33e60 | 2018-01-28 00:13:12 | [diff] [blame] | 80 | struct object_id oid; |
| Nguyễn Thái Ngọc Duy | 55fe6f5 | 2015-03-08 10:12:24 | [diff] [blame] | 81 | int valid; |
| 82 | }; |
| 83 | |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 84 | /* |
| 85 | * Untracked cache |
| 86 | * |
| 87 | * The following inputs are sufficient to determine what files in a |
| 88 | * directory are excluded: |
| 89 | * |
| 90 | * - The list of files and directories of the directory in question |
| 91 | * - The $GIT_DIR/index |
| 92 | * - dir_struct flags |
| 93 | * - The content of $GIT_DIR/info/exclude |
| 94 | * - The content of core.excludesfile |
| 95 | * - The content (or the lack) of .gitignore of all parent directories |
| 96 | * from $GIT_WORK_TREE |
| 97 | * - The check_only flag in read_directory_recursive (for |
| 98 | * DIR_HIDE_EMPTY_DIRECTORIES) |
| 99 | * |
| 100 | * The first input can be checked using directory mtime. In many |
| 101 | * filesystems, directory mtime (stat_data field) is updated when its |
| 102 | * files or direct subdirs are added or removed. |
| 103 | * |
| 104 | * The second one can be hooked from cache_tree_invalidate_path(). |
| 105 | * Whenever a file (or a submodule) is added or removed from a |
| 106 | * directory, we invalidate that directory. |
| 107 | * |
| 108 | * The remaining inputs are easy, their SHA-1 could be used to verify |
| 109 | * their contents (exclude_sha1[], info_exclude_sha1[] and |
| 110 | * excludes_file_sha1[]) |
| 111 | */ |
| 112 | struct untracked_cache_dir { |
| 113 | struct untracked_cache_dir **dirs; |
| 114 | char **untracked; |
| 115 | struct stat_data stat_data; |
| 116 | unsigned int untracked_alloc, dirs_nr, dirs_alloc; |
| 117 | unsigned int untracked_nr; |
| 118 | unsigned int check_only : 1; |
| Nguyễn Thái Ngọc Duy | 26cb018 | 2015-03-08 10:12:30 | [diff] [blame] | 119 | /* all data except 'dirs' in this struct are good */ |
| Nguyễn Thái Ngọc Duy | ccad261 | 2015-03-08 10:12:26 | [diff] [blame] | 120 | unsigned int valid : 1; |
| Nguyễn Thái Ngọc Duy | 26cb018 | 2015-03-08 10:12:30 | [diff] [blame] | 121 | unsigned int recurse : 1; |
| brian m. carlson | 70c369c | 2018-05-02 00:25:48 | [diff] [blame] | 122 | /* null object ID means this directory does not have .gitignore */ |
| 123 | struct object_id exclude_oid; |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 124 | char name[FLEX_ARRAY]; |
| 125 | }; |
| 126 | |
| 127 | struct untracked_cache { |
| Patryk Obara | 4b33e60 | 2018-01-28 00:13:12 | [diff] [blame] | 128 | struct oid_stat ss_info_exclude; |
| 129 | struct oid_stat ss_excludes_file; |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 130 | const char *exclude_per_dir; |
| Nguyễn Thái Ngọc Duy | 1e8fef6 | 2015-03-08 10:12:46 | [diff] [blame] | 131 | struct strbuf ident; |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 132 | /* |
| 133 | * dir_struct#flags must match dir_flags or the untracked |
| 134 | * cache is ignored. |
| 135 | */ |
| 136 | unsigned dir_flags; |
| 137 | struct untracked_cache_dir *root; |
| 138 | /* Statistics */ |
| 139 | int dir_created; |
| Nguyễn Thái Ngọc Duy | ccad261 | 2015-03-08 10:12:26 | [diff] [blame] | 140 | int gitignore_invalidated; |
| Nguyễn Thái Ngọc Duy | 91a2288 | 2015-03-08 10:12:29 | [diff] [blame] | 141 | int dir_invalidated; |
| 142 | int dir_opened; |
| Ben Peart | 883e248 | 2017-09-22 16:35:40 | [diff] [blame] | 143 | /* fsmonitor invalidation data */ |
| 144 | unsigned int use_fsmonitor : 1; |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 145 | }; |
| 146 | |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 147 | struct dir_struct { |
| 148 | int nr, alloc; |
| Jeff King | 2abd31b | 2007-06-11 13:39:50 | [diff] [blame] | 149 | int ignored_nr, ignored_alloc; |
| Johannes Schindelin | 7c4c97c | 2009-02-16 12:20:25 | [diff] [blame] | 150 | enum { |
| 151 | DIR_SHOW_IGNORED = 1<<0, |
| 152 | DIR_SHOW_OTHER_DIRECTORIES = 1<<1, |
| 153 | DIR_HIDE_EMPTY_DIRECTORIES = 1<<2, |
| 154 | DIR_NO_GITLINKS = 1<<3, |
| Karsten Blees | 0aaf62b | 2013-04-15 19:15:03 | [diff] [blame] | 155 | DIR_COLLECT_IGNORED = 1<<4, |
| Junio C Hamano | 2eac2a4 | 2013-08-15 19:13:46 | [diff] [blame] | 156 | DIR_SHOW_IGNORED_TOO = 1<<5, |
| Samuel Lijin | fb89888 | 2017-05-18 08:21:52 | [diff] [blame] | 157 | DIR_COLLECT_KILLED_ONLY = 1<<6, |
| Jameson Miller | eec0f7f | 2017-10-30 17:21:37 | [diff] [blame] | 158 | DIR_KEEP_UNTRACKED_CONTENTS = 1<<7, |
| 159 | DIR_SHOW_IGNORED_TOO_MODE_MATCHING = 1<<8 |
| Johannes Schindelin | 7c4c97c | 2009-02-16 12:20:25 | [diff] [blame] | 160 | } flags; |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 161 | struct dir_entry **entries; |
| Jeff King | 2abd31b | 2007-06-11 13:39:50 | [diff] [blame] | 162 | struct dir_entry **ignored; |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 163 | |
| 164 | /* Exclude info */ |
| 165 | const char *exclude_per_dir; |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 166 | |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 167 | /* |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 168 | * We maintain three groups of exclude pattern lists: |
| 169 | * |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 170 | * EXC_CMDL lists patterns explicitly given on the command line. |
| 171 | * EXC_DIRS lists patterns obtained from per-directory ignore files. |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 172 | * EXC_FILE lists patterns from fallback ignore files, e.g. |
| 173 | * - .git/info/exclude |
| 174 | * - core.excludesfile |
| 175 | * |
| 176 | * Each group contains multiple exclude lists, a single list |
| 177 | * per source. |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 178 | */ |
| 179 | #define EXC_CMDL 0 |
| 180 | #define EXC_DIRS 1 |
| 181 | #define EXC_FILE 2 |
| Adam Spiers | c082df2 | 2013-01-06 16:58:03 | [diff] [blame] | 182 | struct exclude_list_group exclude_list_group[3]; |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 183 | |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 184 | /* |
| 185 | * Temporary variables which are used during loading of the |
| 186 | * per-directory exclude lists. |
| 187 | * |
| 188 | * exclude_stack points to the top of the exclude_stack, and |
| 189 | * basebuf contains the full path to the current |
| Karsten Blees | 95c6f27 | 2013-04-15 19:12:14 | [diff] [blame] | 190 | * (sub)directory in the traversal. Exclude points to the |
| 191 | * matching exclude struct if the directory is excluded. |
| Adam Spiers | 95a6834 | 2012-12-27 02:32:21 | [diff] [blame] | 192 | */ |
| Junio C Hamano | 63d285c | 2007-11-29 10:17:44 | [diff] [blame] | 193 | struct exclude_stack *exclude_stack; |
| Karsten Blees | 95c6f27 | 2013-04-15 19:12:14 | [diff] [blame] | 194 | struct exclude *exclude; |
| Nguyễn Thái Ngọc Duy | aceb942 | 2014-07-14 09:50:22 | [diff] [blame] | 195 | struct strbuf basebuf; |
| Nguyễn Thái Ngọc Duy | 0dcb8d7 | 2015-03-08 10:12:25 | [diff] [blame] | 196 | |
| 197 | /* Enable untracked file cache if set */ |
| 198 | struct untracked_cache *untracked; |
| Patryk Obara | 4b33e60 | 2018-01-28 00:13:12 | [diff] [blame] | 199 | struct oid_stat ss_info_exclude; |
| 200 | struct oid_stat ss_excludes_file; |
| Nguyễn Thái Ngọc Duy | ccad261 | 2015-03-08 10:12:26 | [diff] [blame] | 201 | unsigned unmanaged_exclude_files; |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 202 | }; |
| 203 | |
| Prathamesh Chavan | e0556a9 | 2017-06-08 18:08:12 | [diff] [blame] | 204 | /*Count the number of slashes for string s*/ |
| 205 | extern int count_slashes(const char *s); |
| 206 | |
| Adam Spiers | 52ed189 | 2013-01-06 16:58:06 | [diff] [blame] | 207 | /* |
| 208 | * The ordering of these constants is significant, with |
| 209 | * higher-numbered match types signifying "closer" (i.e. more |
| 210 | * specific) matches which will override lower-numbered match types |
| 211 | * when populating the seen[] array. |
| 212 | */ |
| Junio C Hamano | e813d50 | 2006-12-25 11:09:52 | [diff] [blame] | 213 | #define MATCHED_RECURSIVELY 1 |
| 214 | #define MATCHED_FNMATCH 2 |
| 215 | #define MATCHED_EXACTLY 3 |
| Nguyễn Thái Ngọc Duy | 87323bd | 2013-07-14 08:35:28 | [diff] [blame] | 216 | extern int simple_length(const char *match); |
| 217 | extern int no_wildcard(const char *string); |
| Nguyễn Thái Ngọc Duy | 827f4d6 | 2013-07-14 08:35:57 | [diff] [blame] | 218 | extern char *common_prefix(const struct pathspec *pathspec); |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 219 | extern int match_pathspec(const struct index_state *istate, |
| 220 | const struct pathspec *pathspec, |
| Nguyễn Thái Ngọc Duy | 854b095 | 2014-01-24 13:40:30 | [diff] [blame] | 221 | const char *name, int namelen, |
| Nguyễn Thái Ngọc Duy | ae8d082 | 2014-01-24 13:40:33 | [diff] [blame] | 222 | int prefix, char *seen, int is_dir); |
| Junio C Hamano | 777c55a | 2015-03-24 21:12:10 | [diff] [blame] | 223 | extern int report_path_error(const char *ps_matched, const struct pathspec *pathspec, const char *prefix); |
| Nguyễn Thái Ngọc Duy | bc96cc8 | 2010-12-15 15:02:44 | [diff] [blame] | 224 | extern int within_depth(const char *name, int namelen, int depth, int max_depth); |
| Linus Torvalds | 3c6a370 | 2006-05-19 23:07:51 | [diff] [blame] | 225 | |
| Brandon Williams | 0d32c18 | 2017-05-05 19:53:34 | [diff] [blame] | 226 | extern int fill_directory(struct dir_struct *dir, |
| 227 | struct index_state *istate, |
| 228 | const struct pathspec *pathspec); |
| Brandon Williams | 2c1eb10 | 2017-05-05 19:53:33 | [diff] [blame] | 229 | extern int read_directory(struct dir_struct *, struct index_state *istate, |
| 230 | const char *path, int len, |
| 231 | const struct pathspec *pathspec); |
| Junio C Hamano | f8a9d42 | 2006-12-05 00:00:46 | [diff] [blame] | 232 | |
| Brandon Williams | fba92be | 2017-05-05 19:53:27 | [diff] [blame] | 233 | extern int is_excluded_from_list(const char *pathname, int pathlen, |
| 234 | const char *basename, int *dtype, |
| 235 | struct exclude_list *el, |
| 236 | struct index_state *istate); |
| Brandon Williams | 9e58bec | 2017-05-05 19:53:25 | [diff] [blame] | 237 | struct dir_entry *dir_add_ignored(struct dir_struct *dir, |
| 238 | struct index_state *istate, |
| 239 | const char *pathname, int len); |
| Junio C Hamano | eb41775 | 2012-06-01 18:28:00 | [diff] [blame] | 240 | |
| 241 | /* |
| Nguyễn Thái Ngọc Duy | 82dce99 | 2012-10-15 06:24:39 | [diff] [blame] | 242 | * these implement the matching logic for dir.c:excluded_from_list and |
| 243 | * attr.c:path_matches() |
| 244 | */ |
| 245 | extern int match_basename(const char *, int, |
| Saurav Sachidanand | f870899 | 2016-03-01 17:02:59 | [diff] [blame] | 246 | const char *, int, int, unsigned); |
| Nguyễn Thái Ngọc Duy | 82dce99 | 2012-10-15 06:24:39 | [diff] [blame] | 247 | extern int match_pathname(const char *, int, |
| 248 | const char *, int, |
| Saurav Sachidanand | f870899 | 2016-03-01 17:02:59 | [diff] [blame] | 249 | const char *, int, int, unsigned); |
| Nguyễn Thái Ngọc Duy | 82dce99 | 2012-10-15 06:24:39 | [diff] [blame] | 250 | |
| Karsten Blees | b07bc8c | 2013-04-15 19:12:57 | [diff] [blame] | 251 | extern struct exclude *last_exclude_matching(struct dir_struct *dir, |
| Brandon Williams | a0bba65 | 2017-05-05 19:53:30 | [diff] [blame] | 252 | struct index_state *istate, |
| Karsten Blees | b07bc8c | 2013-04-15 19:12:57 | [diff] [blame] | 253 | const char *name, int *dtype); |
| Junio C Hamano | 782cd4c | 2012-06-06 04:17:52 | [diff] [blame] | 254 | |
| Brandon Williams | a0bba65 | 2017-05-05 19:53:30 | [diff] [blame] | 255 | extern int is_excluded(struct dir_struct *dir, |
| 256 | struct index_state *istate, |
| 257 | const char *name, int *dtype); |
| Junio C Hamano | eb41775 | 2012-06-01 18:28:00 | [diff] [blame] | 258 | |
| Adam Spiers | c04318e | 2013-01-06 16:58:04 | [diff] [blame] | 259 | extern struct exclude_list *add_exclude_list(struct dir_struct *dir, |
| 260 | int group_type, const char *src); |
| Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 13:47:04 | [diff] [blame] | 261 | extern int add_excludes_from_file_to_list(const char *fname, const char *base, int baselen, |
| Brandon Williams | 473e393 | 2017-05-05 19:53:28 | [diff] [blame] | 262 | struct exclude_list *el, struct index_state *istate); |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 263 | extern void add_excludes_from_file(struct dir_struct *, const char *fname); |
| Jeff Hostetler | 578d81d | 2017-11-21 20:58:47 | [diff] [blame] | 264 | extern int add_excludes_from_blob_to_list(struct object_id *oid, |
| 265 | const char *base, int baselen, |
| 266 | struct exclude_list *el); |
| Saurav Sachidanand | f870899 | 2016-03-01 17:02:59 | [diff] [blame] | 267 | extern void parse_exclude_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen); |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 268 | extern void add_exclude(const char *string, const char *base, |
| Adam Spiers | c04318e | 2013-01-06 16:58:04 | [diff] [blame] | 269 | int baselen, struct exclude_list *el, int srcpos); |
| Adam Spiers | f619881 | 2012-12-27 02:32:29 | [diff] [blame] | 270 | extern void clear_exclude_list(struct exclude_list *el); |
| Adam Spiers | 270be81 | 2013-01-06 16:58:05 | [diff] [blame] | 271 | extern void clear_directory(struct dir_struct *dir); |
| Jeff King | c91f0d9 | 2006-09-08 08:05:34 | [diff] [blame] | 272 | extern int file_exists(const char *); |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 273 | |
| Johannes Schindelin | e663674 | 2007-08-01 00:29:17 | [diff] [blame] | 274 | extern int is_inside_dir(const char *dir); |
| Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 09:04:24 | [diff] [blame] | 275 | extern int dir_inside_of(const char *subdir, const char *dir); |
| Johannes Schindelin | e663674 | 2007-08-01 00:29:17 | [diff] [blame] | 276 | |
| Alexander Potashev | 8ca12c0 | 2009-01-10 12:07:50 | [diff] [blame] | 277 | static inline int is_dot_or_dotdot(const char *name) |
| 278 | { |
| 279 | return (name[0] == '.' && |
| 280 | (name[1] == '\0' || |
| 281 | (name[1] == '.' && name[2] == '\0'))); |
| 282 | } |
| 283 | |
| Alexander Potashev | 55892d2 | 2009-01-11 12:19:12 | [diff] [blame] | 284 | extern int is_empty_dir(const char *dir); |
| 285 | |
| Junio C Hamano | 039bc64 | 2007-11-14 08:05:00 | [diff] [blame] | 286 | extern void setup_standard_excludes(struct dir_struct *dir); |
| Junio C Hamano | a0f4afb | 2009-06-30 22:33:45 | [diff] [blame] | 287 | |
| Michael Haggerty | 728af28 | 2016-04-24 05:07:59 | [diff] [blame] | 288 | |
| 289 | /* Constants for remove_dir_recursively: */ |
| 290 | |
| 291 | /* |
| 292 | * If a non-directory is found within path, stop and return an error. |
| 293 | * (In this case some empty directories might already have been |
| 294 | * removed.) |
| 295 | */ |
| Junio C Hamano | a0f4afb | 2009-06-30 22:33:45 | [diff] [blame] | 296 | #define REMOVE_DIR_EMPTY_ONLY 01 |
| Michael Haggerty | 728af28 | 2016-04-24 05:07:59 | [diff] [blame] | 297 | |
| 298 | /* |
| 299 | * If any Git work trees are found within path, skip them without |
| 300 | * considering it an error. |
| 301 | */ |
| Junio C Hamano | a0f4afb | 2009-06-30 22:33:45 | [diff] [blame] | 302 | #define REMOVE_DIR_KEEP_NESTED_GIT 02 |
| Michael Haggerty | 728af28 | 2016-04-24 05:07:59 | [diff] [blame] | 303 | |
| 304 | /* Remove the contents of path, but leave path itself. */ |
| Junio C Hamano | c844a80 | 2012-03-15 14:58:54 | [diff] [blame] | 305 | #define REMOVE_DIR_KEEP_TOPLEVEL 04 |
| Michael Haggerty | 728af28 | 2016-04-24 05:07:59 | [diff] [blame] | 306 | |
| 307 | /* |
| 308 | * Remove path and its contents, recursively. flags is a combination |
| 309 | * of the above REMOVE_DIR_* constants. Return 0 on success. |
| 310 | * |
| 311 | * This function uses path as temporary scratch space, but restores it |
| 312 | * before returning. |
| 313 | */ |
| Junio C Hamano | a0f4afb | 2009-06-30 22:33:45 | [diff] [blame] | 314 | extern int remove_dir_recursively(struct strbuf *path, int flag); |
| Johannes Schindelin | 7155b72 | 2007-09-28 15:28:54 | [diff] [blame] | 315 | |
| Alex Riesen | 4a92d1b | 2008-09-26 22:56:46 | [diff] [blame] | 316 | /* tries to remove the path with empty directories along it, ignores ENOENT */ |
| 317 | extern int remove_path(const char *path); |
| 318 | |
| Nguyễn Thái Ngọc Duy | ba0897e | 2016-04-22 13:01:24 | [diff] [blame] | 319 | extern int fspathcmp(const char *a, const char *b); |
| 320 | extern int fspathncmp(const char *a, const char *b, size_t count); |
| Joshua Jensen | 8cf2a84 | 2010-10-03 09:56:41 | [diff] [blame] | 321 | |
| Nguyễn Thái Ngọc Duy | 5d74762 | 2012-11-24 04:33:49 | [diff] [blame] | 322 | /* |
| 323 | * The prefix part of pattern must not contains wildcards. |
| 324 | */ |
| Nguyễn Thái Ngọc Duy | bd30c2e | 2013-07-14 08:36:08 | [diff] [blame] | 325 | struct pathspec_item; |
| 326 | extern int git_fnmatch(const struct pathspec_item *item, |
| 327 | const char *pattern, const char *string, |
| 328 | int prefix); |
| Nguyễn Thái Ngọc Duy | 5d74762 | 2012-11-24 04:33:49 | [diff] [blame] | 329 | |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 330 | extern int submodule_path_match(const struct index_state *istate, |
| 331 | const struct pathspec *ps, |
| Brandon Williams | 75a6315 | 2016-10-07 18:18:51 | [diff] [blame] | 332 | const char *submodule_name, |
| 333 | char *seen); |
| 334 | |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 335 | static inline int ce_path_match(const struct index_state *istate, |
| 336 | const struct cache_entry *ce, |
| Nguyễn Thái Ngọc Duy | 429bb40 | 2014-01-24 13:40:28 | [diff] [blame] | 337 | const struct pathspec *pathspec, |
| 338 | char *seen) |
| 339 | { |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 340 | return match_pathspec(istate, pathspec, ce->name, ce_namelen(ce), 0, seen, |
| Nguyễn Thái Ngọc Duy | ae8d082 | 2014-01-24 13:40:33 | [diff] [blame] | 341 | S_ISDIR(ce->ce_mode) || S_ISGITLINK(ce->ce_mode)); |
| Nguyễn Thái Ngọc Duy | 429bb40 | 2014-01-24 13:40:28 | [diff] [blame] | 342 | } |
| 343 | |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 344 | static inline int dir_path_match(const struct index_state *istate, |
| 345 | const struct dir_entry *ent, |
| Nguyễn Thái Ngọc Duy | ebb3289 | 2014-01-24 13:40:29 | [diff] [blame] | 346 | const struct pathspec *pathspec, |
| 347 | int prefix, char *seen) |
| 348 | { |
| Nguyễn Thái Ngọc Duy | ae8d082 | 2014-01-24 13:40:33 | [diff] [blame] | 349 | int has_trailing_dir = ent->len && ent->name[ent->len - 1] == '/'; |
| 350 | int len = has_trailing_dir ? ent->len - 1 : ent->len; |
| Nguyễn Thái Ngọc Duy | 6d2df28 | 2018-08-13 16:14:22 | [diff] [blame] | 351 | return match_pathspec(istate, pathspec, ent->name, len, prefix, seen, |
| Nguyễn Thái Ngọc Duy | ae8d082 | 2014-01-24 13:40:33 | [diff] [blame] | 352 | has_trailing_dir); |
| Nguyễn Thái Ngọc Duy | ebb3289 | 2014-01-24 13:40:29 | [diff] [blame] | 353 | } |
| 354 | |
| Samuel Lijin | bbf504a | 2017-05-18 08:21:53 | [diff] [blame] | 355 | int cmp_dir_entry(const void *p1, const void *p2); |
| 356 | int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in); |
| 357 | |
| Nguyễn Thái Ngọc Duy | 0cacebf | 2018-02-07 09:21:40 | [diff] [blame] | 358 | void untracked_cache_invalidate_path(struct index_state *, const char *, int safe_path); |
| Nguyễn Thái Ngọc Duy | e931371 | 2015-03-08 10:12:35 | [diff] [blame] | 359 | void untracked_cache_remove_from_index(struct index_state *, const char *); |
| 360 | void untracked_cache_add_to_index(struct index_state *, const char *); |
| 361 | |
| Nguyễn Thái Ngọc Duy | f9e6c64 | 2015-03-08 10:12:34 | [diff] [blame] | 362 | void free_untracked_cache(struct untracked_cache *); |
| 363 | struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz); |
| Nguyễn Thái Ngọc Duy | 83c094a | 2015-03-08 10:12:33 | [diff] [blame] | 364 | void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked); |
| Christian Couder | 4a4ca47 | 2016-01-24 15:28:19 | [diff] [blame] | 365 | void add_untracked_cache(struct index_state *istate); |
| Christian Couder | 07b29bf | 2016-01-24 15:28:20 | [diff] [blame] | 366 | void remove_untracked_cache(struct index_state *istate); |
| Stefan Beller | da62f78 | 2018-03-28 22:35:31 | [diff] [blame] | 367 | |
| 368 | /* |
| 369 | * Connect a worktree to a git directory by creating (or overwriting) a |
| 370 | * '.git' file containing the location of the git directory. In the git |
| 371 | * directory set the core.worktree setting to indicate where the worktree is. |
| 372 | * When `recurse_into_nested` is set, recurse into any nested submodules, |
| 373 | * connecting them as well. |
| 374 | */ |
| 375 | extern void connect_work_tree_and_git_dir(const char *work_tree, |
| 376 | const char *git_dir, |
| 377 | int recurse_into_nested); |
| Stefan Beller | f6f8586 | 2016-12-12 19:04:35 | [diff] [blame] | 378 | extern void relocate_gitdir(const char *path, |
| 379 | const char *old_git_dir, |
| 380 | const char *new_git_dir); |
| Linus Torvalds | 453ec4b | 2006-05-17 02:02:14 | [diff] [blame] | 381 | #endif |