1#ifndef DIR_H
2#define DIR_H
3
4/* See Documentation/technical/api-directory-listing.txt */
5
6#include "strbuf.h"
7
8struct dir_entry {
9 unsigned int len;
10 char name[FLEX_ARRAY]; /* more */
11};
12
13#define EXC_FLAG_NODIR 1
14#define EXC_FLAG_ENDSWITH 4
15#define EXC_FLAG_MUSTBEDIR 8
16#define EXC_FLAG_NEGATIVE 16
17
18struct exclude {
19 /*
20 * This allows callers of last_exclude_matching() etc.
21 * to determine the origin of the matching pattern.
22 */
23 struct exclude_list *el;
24
25 const char *pattern;
26 int patternlen;
27 int nowildcardlen;
28 const char *base;
29 int baselen;
30 unsigned flags; /* EXC_FLAG_* */
31
32 /*
33 * Counting starts from 1 for line numbers in ignore files,
34 * and from -1 decrementing for patterns from CLI args.
35 */
36 int srcpos;
37};
38
39/*
40 * Each excludes file will be parsed into a fresh exclude_list which
41 * is appended to the relevant exclude_list_group (either EXC_DIRS or
42 * EXC_FILE). An exclude_list within the EXC_CMDL exclude_list_group
43 * can also be used to represent the list of --exclude values passed
44 * via CLI args.
45 */
46struct exclude_list {
47 int nr;
48 int alloc;
49
50 /* remember pointer to exclude file contents so we can free() */
51 char *filebuf;
52
53 /* origin of list, e.g. path to filename, or descriptive string */
54 const char *src;
55
56 struct exclude **excludes;
57};
58
59/*
60 * The contents of the per-directory exclude files are lazily read on
61 * demand and then cached in memory, one per exclude_stack struct, in
62 * order to avoid opening and parsing each one every time that
63 * directory is traversed.
64 */
65struct exclude_stack {
66 struct exclude_stack *prev; /* the struct exclude_stack for the parent directory */
67 int baselen;
68 int exclude_ix; /* index of exclude_list within EXC_DIRS exclude_list_group */
69 struct untracked_cache_dir *ucd;
70};
71
72struct exclude_list_group {
73 int nr, alloc;
74 struct exclude_list *el;
75};
76
77struct sha1_stat {
78 struct stat_data stat;
79 unsigned char sha1[20];
80 int valid;
81};
82
83/*
84 * Untracked cache
85 *
86 * The following inputs are sufficient to determine what files in a
87 * directory are excluded:
88 *
89 * - The list of files and directories of the directory in question
90 * - The $GIT_DIR/index
91 * - dir_struct flags
92 * - The content of $GIT_DIR/info/exclude
93 * - The content of core.excludesfile
94 * - The content (or the lack) of .gitignore of all parent directories
95 * from $GIT_WORK_TREE
96 * - The check_only flag in read_directory_recursive (for
97 * DIR_HIDE_EMPTY_DIRECTORIES)
98 *
99 * The first input can be checked using directory mtime. In many
100 * filesystems, directory mtime (stat_data field) is updated when its
101 * files or direct subdirs are added or removed.
102 *
103 * The second one can be hooked from cache_tree_invalidate_path().
104 * Whenever a file (or a submodule) is added or removed from a
105 * directory, we invalidate that directory.
106 *
107 * The remaining inputs are easy, their SHA-1 could be used to verify
108 * their contents (exclude_sha1[], info_exclude_sha1[] and
109 * excludes_file_sha1[])
110 */
111struct untracked_cache_dir {
112 struct untracked_cache_dir **dirs;
113 char **untracked;
114 struct stat_data stat_data;
115 unsigned int untracked_alloc, dirs_nr, dirs_alloc;
116 unsigned int untracked_nr;
117 unsigned int check_only : 1;
118 /* all data except 'dirs' in this struct are good */
119 unsigned int valid : 1;
120 unsigned int recurse : 1;
121 /* null SHA-1 means this directory does not have .gitignore */
122 unsigned char exclude_sha1[20];
123 char name[FLEX_ARRAY];
124};
125
126struct untracked_cache {
127 struct sha1_stat ss_info_exclude;
128 struct sha1_stat ss_excludes_file;
129 const char *exclude_per_dir;
130 struct strbuf ident;
131 /*
132 * dir_struct#flags must match dir_flags or the untracked
133 * cache is ignored.
134 */
135 unsigned dir_flags;
136 struct untracked_cache_dir *root;
137 /* Statistics */
138 int dir_created;
139 int gitignore_invalidated;
140 int dir_invalidated;
141 int dir_opened;
142 /* fsmonitor invalidation data */
143 unsigned int use_fsmonitor : 1;
144};
145
146struct dir_struct {
147 int nr, alloc;
148 int ignored_nr, ignored_alloc;
149 enum {
150 DIR_SHOW_IGNORED = 1<<0,
151 DIR_SHOW_OTHER_DIRECTORIES = 1<<1,
152 DIR_HIDE_EMPTY_DIRECTORIES = 1<<2,
153 DIR_NO_GITLINKS = 1<<3,
154 DIR_COLLECT_IGNORED = 1<<4,
155 DIR_SHOW_IGNORED_TOO = 1<<5,
156 DIR_COLLECT_KILLED_ONLY = 1<<6,
157 DIR_KEEP_UNTRACKED_CONTENTS = 1<<7,
158 DIR_SHOW_IGNORED_TOO_MODE_MATCHING = 1<<8
159 } flags;
160 struct dir_entry **entries;
161 struct dir_entry **ignored;
162
163 /* Exclude info */
164 const char *exclude_per_dir;
165
166 /*
167 * We maintain three groups of exclude pattern lists:
168 *
169 * EXC_CMDL lists patterns explicitly given on the command line.
170 * EXC_DIRS lists patterns obtained from per-directory ignore files.
171 * EXC_FILE lists patterns from fallback ignore files, e.g.
172 * - .git/info/exclude
173 * - core.excludesfile
174 *
175 * Each group contains multiple exclude lists, a single list
176 * per source.
177 */
178#define EXC_CMDL 0
179#define EXC_DIRS 1
180#define EXC_FILE 2
181 struct exclude_list_group exclude_list_group[3];
182
183 /*
184 * Temporary variables which are used during loading of the
185 * per-directory exclude lists.
186 *
187 * exclude_stack points to the top of the exclude_stack, and
188 * basebuf contains the full path to the current
189 * (sub)directory in the traversal. Exclude points to the
190 * matching exclude struct if the directory is excluded.
191 */
192 struct exclude_stack *exclude_stack;
193 struct exclude *exclude;
194 struct strbuf basebuf;
195
196 /* Enable untracked file cache if set */
197 struct untracked_cache *untracked;
198 struct sha1_stat ss_info_exclude;
199 struct sha1_stat ss_excludes_file;
200 unsigned unmanaged_exclude_files;
201};
202
203/*Count the number of slashes for string s*/
204extern int count_slashes(const char *s);
205
206/*
207 * The ordering of these constants is significant, with
208 * higher-numbered match types signifying "closer" (i.e. more
209 * specific) matches which will override lower-numbered match types
210 * when populating the seen[] array.
211 */
212#define MATCHED_RECURSIVELY 1
213#define MATCHED_FNMATCH 2
214#define MATCHED_EXACTLY 3
215extern int simple_length(const char *match);
216extern int no_wildcard(const char *string);
217extern char *common_prefix(const struct pathspec *pathspec);
218extern int match_pathspec(const struct pathspec *pathspec,
219 const char *name, int namelen,
220 int prefix, char *seen, int is_dir);
221extern int report_path_error(const char *ps_matched, const struct pathspec *pathspec, const char *prefix);
222extern int within_depth(const char *name, int namelen, int depth, int max_depth);
223
224extern int fill_directory(struct dir_struct *dir,
225 struct index_state *istate,
226 const struct pathspec *pathspec);
227extern int read_directory(struct dir_struct *, struct index_state *istate,
228 const char *path, int len,
229 const struct pathspec *pathspec);
230
231extern int is_excluded_from_list(const char *pathname, int pathlen,
232 const char *basename, int *dtype,
233 struct exclude_list *el,
234 struct index_state *istate);
235struct dir_entry *dir_add_ignored(struct dir_struct *dir,
236 struct index_state *istate,
237 const char *pathname, int len);
238
239/*
240 * these implement the matching logic for dir.c:excluded_from_list and
241 * attr.c:path_matches()
242 */
243extern int match_basename(const char *, int,
244 const char *, int, int, unsigned);
245extern int match_pathname(const char *, int,
246 const char *, int,
247 const char *, int, int, unsigned);
248
249extern struct exclude *last_exclude_matching(struct dir_struct *dir,
250 struct index_state *istate,
251 const char *name, int *dtype);
252
253extern int is_excluded(struct dir_struct *dir,
254 struct index_state *istate,
255 const char *name, int *dtype);
256
257extern struct exclude_list *add_exclude_list(struct dir_struct *dir,
258 int group_type, const char *src);
259extern int add_excludes_from_file_to_list(const char *fname, const char *base, int baselen,
260 struct exclude_list *el, struct index_state *istate);
261extern void add_excludes_from_file(struct dir_struct *, const char *fname);
262extern void parse_exclude_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen);
263extern void add_exclude(const char *string, const char *base,
264 int baselen, struct exclude_list *el, int srcpos);
265extern void clear_exclude_list(struct exclude_list *el);
266extern void clear_directory(struct dir_struct *dir);
267extern int file_exists(const char *);
268
269extern int is_inside_dir(const char *dir);
270extern int dir_inside_of(const char *subdir, const char *dir);
271
272static inline int is_dot_or_dotdot(const char *name)
273{
274 return (name[0] == '.' &&
275 (name[1] == '\0' ||
276 (name[1] == '.' && name[2] == '\0')));
277}
278
279extern int is_empty_dir(const char *dir);
280
281extern void setup_standard_excludes(struct dir_struct *dir);
282
283
284/* Constants for remove_dir_recursively: */
285
286/*
287 * If a non-directory is found within path, stop and return an error.
288 * (In this case some empty directories might already have been
289 * removed.)
290 */
291#define REMOVE_DIR_EMPTY_ONLY 01
292
293/*
294 * If any Git work trees are found within path, skip them without
295 * considering it an error.
296 */
297#define REMOVE_DIR_KEEP_NESTED_GIT 02
298
299/* Remove the contents of path, but leave path itself. */
300#define REMOVE_DIR_KEEP_TOPLEVEL 04
301
302/*
303 * Remove path and its contents, recursively. flags is a combination
304 * of the above REMOVE_DIR_* constants. Return 0 on success.
305 *
306 * This function uses path as temporary scratch space, but restores it
307 * before returning.
308 */
309extern int remove_dir_recursively(struct strbuf *path, int flag);
310
311/* tries to remove the path with empty directories along it, ignores ENOENT */
312extern int remove_path(const char *path);
313
314extern int fspathcmp(const char *a, const char *b);
315extern int fspathncmp(const char *a, const char *b, size_t count);
316
317/*
318 * The prefix part of pattern must not contains wildcards.
319 */
320struct pathspec_item;
321extern int git_fnmatch(const struct pathspec_item *item,
322 const char *pattern, const char *string,
323 int prefix);
324
325extern int submodule_path_match(const struct pathspec *ps,
326 const char *submodule_name,
327 char *seen);
328
329static inline int ce_path_match(const struct cache_entry *ce,
330 const struct pathspec *pathspec,
331 char *seen)
332{
333 return match_pathspec(pathspec, ce->name, ce_namelen(ce), 0, seen,
334 S_ISDIR(ce->ce_mode) || S_ISGITLINK(ce->ce_mode));
335}
336
337static inline int dir_path_match(const struct dir_entry *ent,
338 const struct pathspec *pathspec,
339 int prefix, char *seen)
340{
341 int has_trailing_dir = ent->len && ent->name[ent->len - 1] == '/';
342 int len = has_trailing_dir ? ent->len - 1 : ent->len;
343 return match_pathspec(pathspec, ent->name, len, prefix, seen,
344 has_trailing_dir);
345}
346
347int cmp_dir_entry(const void *p1, const void *p2);
348int check_dir_entry_contains(const struct dir_entry *out, const struct dir_entry *in);
349
350void untracked_cache_invalidate_path(struct index_state *, const char *);
351void untracked_cache_remove_from_index(struct index_state *, const char *);
352void untracked_cache_add_to_index(struct index_state *, const char *);
353
354void free_untracked_cache(struct untracked_cache *);
355struct untracked_cache *read_untracked_extension(const void *data, unsigned long sz);
356void write_untracked_extension(struct strbuf *out, struct untracked_cache *untracked);
357void add_untracked_cache(struct index_state *istate);
358void remove_untracked_cache(struct index_state *istate);
359extern void connect_work_tree_and_git_dir(const char *work_tree, const char *git_dir);
360extern void relocate_gitdir(const char *path,
361 const char *old_git_dir,
362 const char *new_git_dir);
363#endif