git-pull: allow pulling into an empty repository
[git/dscho.git] / dir.h
blob313f8ab64e7e3a6be1d22335eb54872c929d857e
1 #ifndef DIR_H
2 #define DIR_H
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
15 struct dir_entry {
16 int len;
17 char name[FLEX_ARRAY]; /* more */
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;
30 struct dir_struct {
31 int nr, alloc;
32 unsigned int show_ignored:1,
33 show_other_directories:1,
34 hide_empty_directories:1;
35 struct dir_entry **entries;
37 /* Exclude info */
38 const char *exclude_per_dir;
39 struct exclude_list exclude_list[3];
42 extern int common_prefix(const char **pathspec);
43 extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen);
45 extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen);
46 extern int excluded(struct dir_struct *, const char *);
47 extern void add_excludes_from_file(struct dir_struct *, const char *fname);
48 extern void add_exclude(const char *string, const char *base,
49 int baselen, struct exclude_list *which);
50 extern int file_exists(const char *);
52 #endif