dir.hon commit git-rm: update to saner semantics (9f95069)
   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
  15struct dir_entry {
  16        int len;
  17        char name[FLEX_ARRAY]; /* more */
  18};
  19
  20struct 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
  30struct 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;
  36
  37        /* Exclude info */
  38        const char *exclude_per_dir;
  39        struct exclude_list exclude_list[3];
  40};
  41
  42extern int common_prefix(const char **pathspec);
  43
  44#define MATCHED_RECURSIVELY 1
  45#define MATCHED_FNMATCH 2
  46#define MATCHED_EXACTLY 3
  47extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen);
  48
  49extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen);
  50extern int push_exclude_per_directory(struct dir_struct *, const char *, int);
  51extern void pop_exclude_per_directory(struct dir_struct *, int);
  52
  53extern int excluded(struct dir_struct *, const char *);
  54extern void add_excludes_from_file(struct dir_struct *, const char *fname);
  55extern void add_exclude(const char *string, const char *base,
  56                        int baselen, struct exclude_list *which);
  57extern int file_exists(const char *);
  58
  59#endif