Commit | Line | Data |
---|---|---|
453ec4bd LT |
1 | #ifndef DIR_H |
2 | #define DIR_H | |
3 | ||
4 | /* | |
5 | * We maintain three exclude pattern lists: | |
6 | * EXC_CMDL lists patterns explicitly given on the command line. | |
7 | * EXC_DIRS lists patterns obtained from per-directory ignore files. | |
8 | * EXC_FILE lists patterns from fallback ignore files. | |
9 | */ | |
10 | #define EXC_CMDL 0 | |
11 | #define EXC_DIRS 1 | |
12 | #define EXC_FILE 2 | |
13 | ||
14 | ||
15 | struct dir_entry { | |
c889763b | 16 | int len; |
453ec4bd LT |
17 | char name[FLEX_ARRAY]; /* more */ |
18 | }; | |
19 | ||
20 | struct exclude_list { | |
21 | int nr; | |
22 | int alloc; | |
23 | struct exclude { | |
24 | const char *pattern; | |
25 | const char *base; | |
26 | int baselen; | |
27 | } **excludes; | |
28 | }; | |
29 | ||
30 | struct dir_struct { | |
31 | int nr, alloc; | |
c889763b | 32 | unsigned int show_ignored:1, |
453ec4bd LT |
33 | show_other_directories:1, |
34 | hide_empty_directories:1; | |
35 | struct dir_entry **entries; | |
36 | ||
37 | /* Exclude info */ | |
38 | const char *exclude_per_dir; | |
39 | struct exclude_list exclude_list[3]; | |
40 | }; | |
41 | ||
3c6a370b | 42 | extern int common_prefix(const char **pathspec); |
e813d50e JH |
43 | |
44 | #define MATCHED_RECURSIVELY 1 | |
45 | #define MATCHED_FNMATCH 2 | |
46 | #define MATCHED_EXACTLY 3 | |
3c6a370b LT |
47 | extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen); |
48 | ||
453ec4bd | 49 | extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen); |
f8a9d428 JH |
50 | extern int push_exclude_per_directory(struct dir_struct *, const char *, int); |
51 | extern void pop_exclude_per_directory(struct dir_struct *, int); | |
52 | ||
453ec4bd LT |
53 | extern int excluded(struct dir_struct *, const char *); |
54 | extern void add_excludes_from_file(struct dir_struct *, const char *fname); | |
55 | extern void add_exclude(const char *string, const char *base, | |
56 | int baselen, struct exclude_list *which); | |
c91f0d92 | 57 | extern int file_exists(const char *); |
453ec4bd LT |
58 | |
59 | #endif |