2006-05-17 04:02:14 +02:00
|
|
|
#ifndef DIR_H
|
|
|
|
#define DIR_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We maintain three exclude pattern lists:
|
|
|
|
* EXC_CMDL lists patterns explicitly given on the command line.
|
|
|
|
* EXC_DIRS lists patterns obtained from per-directory ignore files.
|
|
|
|
* EXC_FILE lists patterns from fallback ignore files.
|
|
|
|
*/
|
|
|
|
#define EXC_CMDL 0
|
|
|
|
#define EXC_DIRS 1
|
|
|
|
#define EXC_FILE 2
|
|
|
|
|
|
|
|
|
|
|
|
struct dir_entry {
|
builtin-add: simplify (and increase accuracy of) exclude handling
Previously, the code would always set up the excludes, and then manually
pick through the pathspec we were given, assuming that non-added but
existing paths were just ignored. This was mostly correct, but would
erroneously mark a totally empty directory as 'ignored'.
Instead, we now use the collect_ignored option of dir_struct, which
unambiguously tells us whether a path was ignored. This simplifies the
code, and means empty directories are now just not mentioned at all.
Furthermore, we now conditionally ask dir_struct to respect excludes,
depending on whether the '-f' flag has been set. This means we don't have
to pick through the result, checking for an 'ignored' flag; ignored entries
were either added or not in the first place.
We can safely get rid of the special 'ignored' flags to dir_entry, which
were not used anywhere else.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2007-06-12 23:42:14 +02:00
|
|
|
unsigned int len;
|
2006-05-17 04:02:14 +02:00
|
|
|
char name[FLEX_ARRAY]; /* more */
|
|
|
|
};
|
|
|
|
|
2007-10-28 21:27:13 +01:00
|
|
|
#define EXC_FLAG_NODIR 1
|
|
|
|
#define EXC_FLAG_NOWILDCARD 2
|
|
|
|
#define EXC_FLAG_ENDSWITH 4
|
|
|
|
|
2006-05-17 04:02:14 +02:00
|
|
|
struct exclude_list {
|
|
|
|
int nr;
|
|
|
|
int alloc;
|
|
|
|
struct exclude {
|
|
|
|
const char *pattern;
|
2007-10-28 21:27:13 +01:00
|
|
|
int patternlen;
|
2006-05-17 04:02:14 +02:00
|
|
|
const char *base;
|
|
|
|
int baselen;
|
2007-10-28 21:27:13 +01:00
|
|
|
int to_exclude;
|
|
|
|
int flags;
|
2006-05-17 04:02:14 +02:00
|
|
|
} **excludes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dir_struct {
|
|
|
|
int nr, alloc;
|
2007-06-11 15:39:50 +02:00
|
|
|
int ignored_nr, ignored_alloc;
|
2006-12-29 19:08:19 +01:00
|
|
|
unsigned int show_ignored:1,
|
2006-05-17 04:02:14 +02:00
|
|
|
show_other_directories:1,
|
2007-04-11 23:49:44 +02:00
|
|
|
hide_empty_directories:1,
|
2007-06-11 15:39:50 +02:00
|
|
|
no_gitlinks:1,
|
|
|
|
collect_ignored:1;
|
2006-05-17 04:02:14 +02:00
|
|
|
struct dir_entry **entries;
|
2007-06-11 15:39:50 +02:00
|
|
|
struct dir_entry **ignored;
|
2006-05-17 04:02:14 +02:00
|
|
|
|
|
|
|
/* Exclude info */
|
|
|
|
const char *exclude_per_dir;
|
|
|
|
struct exclude_list exclude_list[3];
|
|
|
|
};
|
|
|
|
|
2006-05-20 01:07:51 +02:00
|
|
|
extern int common_prefix(const char **pathspec);
|
2006-12-25 12:09:52 +01:00
|
|
|
|
|
|
|
#define MATCHED_RECURSIVELY 1
|
|
|
|
#define MATCHED_FNMATCH 2
|
|
|
|
#define MATCHED_EXACTLY 3
|
2006-05-20 01:07:51 +02:00
|
|
|
extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen);
|
|
|
|
|
Optimize directory listing with pathspec limiter.
The way things are set up, you can now pass a "pathspec" to the
"read_directory()" function. If you pass NULL, it acts exactly
like it used to do (read everything). If you pass a non-NULL
pointer, it will simplify it into a "these are the prefixes
without any special characters", and stop any readdir() early if
the path in question doesn't match any of the prefixes.
NOTE! This does *not* obviate the need for the caller to do the *exact*
pathspec match later. It's a first-level filter on "read_directory()", but
it does not do the full pathspec thing. Maybe it should. But in the
meantime, builtin-add.c really does need to do first
read_directory(dir, .., pathspec);
if (pathspec)
prune_directory(dir, pathspec, baselen);
ie the "prune_directory()" part will do the *exact* pathspec pruning,
while the "read_directory()" will use the pathspec just to do some quick
high-level pruning of the directories it will recurse into.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-03-31 05:39:30 +02:00
|
|
|
extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen, const char **pathspec);
|
2006-12-05 01:00:46 +01:00
|
|
|
extern int push_exclude_per_directory(struct dir_struct *, const char *, int);
|
|
|
|
extern void pop_exclude_per_directory(struct dir_struct *, int);
|
|
|
|
|
2006-05-17 04:02:14 +02:00
|
|
|
extern int excluded(struct dir_struct *, const char *);
|
|
|
|
extern void add_excludes_from_file(struct dir_struct *, const char *fname);
|
|
|
|
extern void add_exclude(const char *string, const char *base,
|
|
|
|
int baselen, struct exclude_list *which);
|
2006-09-08 10:05:34 +02:00
|
|
|
extern int file_exists(const char *);
|
2006-12-29 20:01:31 +01:00
|
|
|
extern struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len);
|
2006-05-17 04:02:14 +02:00
|
|
|
|
2007-08-01 02:29:17 +02:00
|
|
|
extern char *get_relative_cwd(char *buffer, int size, const char *dir);
|
|
|
|
extern int is_inside_dir(const char *dir);
|
|
|
|
|
2007-09-28 17:28:54 +02:00
|
|
|
extern int remove_dir_recursively(struct strbuf *path, int only_empty);
|
|
|
|
|
2006-05-17 04:02:14 +02:00
|
|
|
#endif
|