зеркало из https://github.com/microsoft/git.git
Add 'fill_directory()' helper function for directory traversal
Most of the users of "read_directory()" actually want a much simpler interface than the whole complex (but rather powerful) one. In fact 'git add' had already largely abstracted out the core interface issues into a private "fill_directory()" function that was largely applicable almost as-is to a number of callers. Yes, 'git add' wants to do some extra work of its own, specific to the add semantics, but we can easily split that out, and use the core as a generic function. This function does exactly that, and now that much simplified 'fill_directory()' function can be shared with a number of callers, while also ensuring that the rather more complex calling conventions of read_directory() are used by fewer call-sites. This also makes the 'common_prefix()' helper function private to dir.c, since all callers are now in that file. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
f581de1b7b
Коммит
1d8842d921
|
@ -97,35 +97,6 @@ static void treat_gitlinks(const char **pathspec)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fill_directory(struct dir_struct *dir, const char **pathspec,
|
|
||||||
int ignored_too)
|
|
||||||
{
|
|
||||||
const char *path, *base;
|
|
||||||
int baselen;
|
|
||||||
|
|
||||||
/* Set up the default git porcelain excludes */
|
|
||||||
memset(dir, 0, sizeof(*dir));
|
|
||||||
if (!ignored_too) {
|
|
||||||
dir->flags |= DIR_COLLECT_IGNORED;
|
|
||||||
setup_standard_excludes(dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Calculate common prefix for the pathspec, and
|
|
||||||
* use that to optimize the directory walk
|
|
||||||
*/
|
|
||||||
baselen = common_prefix(pathspec);
|
|
||||||
path = ".";
|
|
||||||
base = "";
|
|
||||||
if (baselen)
|
|
||||||
path = base = xmemdupz(*pathspec, baselen);
|
|
||||||
|
|
||||||
/* Read the directory and prune it */
|
|
||||||
read_directory(dir, path, base, baselen, pathspec);
|
|
||||||
if (pathspec)
|
|
||||||
prune_directory(dir, pathspec, baselen);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void refresh(int verbose, const char **pathspec)
|
static void refresh(int verbose, const char **pathspec)
|
||||||
{
|
{
|
||||||
char *seen;
|
char *seen;
|
||||||
|
@ -343,9 +314,21 @@ int cmd_add(int argc, const char **argv, const char *prefix)
|
||||||
die("index file corrupt");
|
die("index file corrupt");
|
||||||
treat_gitlinks(pathspec);
|
treat_gitlinks(pathspec);
|
||||||
|
|
||||||
if (add_new_files)
|
if (add_new_files) {
|
||||||
|
int baselen;
|
||||||
|
|
||||||
|
/* Set up the default git porcelain excludes */
|
||||||
|
memset(&dir, 0, sizeof(dir));
|
||||||
|
if (!ignored_too) {
|
||||||
|
dir.flags |= DIR_COLLECT_IGNORED;
|
||||||
|
setup_standard_excludes(&dir);
|
||||||
|
}
|
||||||
|
|
||||||
/* This picks up the paths that are not tracked */
|
/* This picks up the paths that are not tracked */
|
||||||
fill_directory(&dir, pathspec, ignored_too);
|
baselen = fill_directory(&dir, pathspec);
|
||||||
|
if (pathspec)
|
||||||
|
prune_directory(&dir, pathspec, baselen);
|
||||||
|
}
|
||||||
|
|
||||||
if (refresh_only) {
|
if (refresh_only) {
|
||||||
refresh(verbose, pathspec);
|
refresh(verbose, pathspec);
|
||||||
|
|
|
@ -33,7 +33,6 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
|
||||||
int ignored_only = 0, baselen = 0, config_set = 0, errors = 0;
|
int ignored_only = 0, baselen = 0, config_set = 0, errors = 0;
|
||||||
struct strbuf directory = STRBUF_INIT;
|
struct strbuf directory = STRBUF_INIT;
|
||||||
struct dir_struct dir;
|
struct dir_struct dir;
|
||||||
const char *path, *base;
|
|
||||||
static const char **pathspec;
|
static const char **pathspec;
|
||||||
struct strbuf buf = STRBUF_INIT;
|
struct strbuf buf = STRBUF_INIT;
|
||||||
const char *qname;
|
const char *qname;
|
||||||
|
@ -78,16 +77,7 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
|
||||||
pathspec = get_pathspec(prefix, argv);
|
pathspec = get_pathspec(prefix, argv);
|
||||||
read_cache();
|
read_cache();
|
||||||
|
|
||||||
/*
|
fill_directory(&dir, pathspec);
|
||||||
* Calculate common prefix for the pathspec, and
|
|
||||||
* use that to optimize the directory walk
|
|
||||||
*/
|
|
||||||
baselen = common_prefix(pathspec);
|
|
||||||
path = ".";
|
|
||||||
base = "";
|
|
||||||
if (baselen)
|
|
||||||
path = base = xmemdupz(*pathspec, baselen);
|
|
||||||
read_directory(&dir, path, base, baselen, pathspec);
|
|
||||||
|
|
||||||
if (pathspec)
|
if (pathspec)
|
||||||
seen = xmalloc(argc > 0 ? argc : 1);
|
seen = xmalloc(argc > 0 ? argc : 1);
|
||||||
|
|
|
@ -161,12 +161,7 @@ static void show_files(struct dir_struct *dir, const char *prefix)
|
||||||
|
|
||||||
/* For cached/deleted files we don't need to even do the readdir */
|
/* For cached/deleted files we don't need to even do the readdir */
|
||||||
if (show_others || show_killed) {
|
if (show_others || show_killed) {
|
||||||
const char *path = ".", *base = "";
|
fill_directory(dir, pathspec);
|
||||||
int baselen = prefix_len;
|
|
||||||
|
|
||||||
if (baselen)
|
|
||||||
path = base = prefix;
|
|
||||||
read_directory(dir, path, base, baselen, pathspec);
|
|
||||||
if (show_others)
|
if (show_others)
|
||||||
show_other_files(dir);
|
show_other_files(dir);
|
||||||
if (show_killed)
|
if (show_killed)
|
||||||
|
|
23
dir.c
23
dir.c
|
@ -19,7 +19,7 @@ static int read_directory_recursive(struct dir_struct *dir,
|
||||||
int check_only, const struct path_simplify *simplify);
|
int check_only, const struct path_simplify *simplify);
|
||||||
static int get_dtype(struct dirent *de, const char *path);
|
static int get_dtype(struct dirent *de, const char *path);
|
||||||
|
|
||||||
int common_prefix(const char **pathspec)
|
static int common_prefix(const char **pathspec)
|
||||||
{
|
{
|
||||||
const char *path, *slash, *next;
|
const char *path, *slash, *next;
|
||||||
int prefix;
|
int prefix;
|
||||||
|
@ -52,6 +52,27 @@ int common_prefix(const char **pathspec)
|
||||||
return prefix;
|
return prefix;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int fill_directory(struct dir_struct *dir, const char **pathspec)
|
||||||
|
{
|
||||||
|
const char *path, *base;
|
||||||
|
int baselen;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Calculate common prefix for the pathspec, and
|
||||||
|
* use that to optimize the directory walk
|
||||||
|
*/
|
||||||
|
baselen = common_prefix(pathspec);
|
||||||
|
path = "";
|
||||||
|
base = "";
|
||||||
|
|
||||||
|
if (baselen)
|
||||||
|
path = base = xmemdupz(*pathspec, baselen);
|
||||||
|
|
||||||
|
/* Read the directory and prune it */
|
||||||
|
read_directory(dir, path, base, baselen, pathspec);
|
||||||
|
return baselen;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Does 'match' match the given name?
|
* Does 'match' match the given name?
|
||||||
* A match is found if
|
* A match is found if
|
||||||
|
|
3
dir.h
3
dir.h
|
@ -61,13 +61,12 @@ struct dir_struct {
|
||||||
char basebuf[PATH_MAX];
|
char basebuf[PATH_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
extern int common_prefix(const char **pathspec);
|
|
||||||
|
|
||||||
#define MATCHED_RECURSIVELY 1
|
#define MATCHED_RECURSIVELY 1
|
||||||
#define MATCHED_FNMATCH 2
|
#define MATCHED_FNMATCH 2
|
||||||
#define MATCHED_EXACTLY 3
|
#define MATCHED_EXACTLY 3
|
||||||
extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen);
|
extern int match_pathspec(const char **pathspec, const char *name, int namelen, int prefix, char *seen);
|
||||||
|
|
||||||
|
extern int fill_directory(struct dir_struct *dir, const char **pathspec);
|
||||||
extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen, const char **pathspec);
|
extern int read_directory(struct dir_struct *, const char *path, const char *base, int baselen, const char **pathspec);
|
||||||
|
|
||||||
extern int excluded(struct dir_struct *, const char *, int *);
|
extern int excluded(struct dir_struct *, const char *, int *);
|
||||||
|
|
|
@ -255,7 +255,7 @@ static void wt_status_print_untracked(struct wt_status *s)
|
||||||
DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
|
DIR_SHOW_OTHER_DIRECTORIES | DIR_HIDE_EMPTY_DIRECTORIES;
|
||||||
setup_standard_excludes(&dir);
|
setup_standard_excludes(&dir);
|
||||||
|
|
||||||
read_directory(&dir, ".", "", 0, NULL);
|
fill_directory(&dir, NULL);
|
||||||
for(i = 0; i < dir.nr; i++) {
|
for(i = 0; i < dir.nr; i++) {
|
||||||
struct dir_entry *ent = dir.entries[i];
|
struct dir_entry *ent = dir.entries[i];
|
||||||
if (!cache_name_is_other(ent->name, ent->len))
|
if (!cache_name_is_other(ent->name, ent->len))
|
||||||
|
|
Загрузка…
Ссылка в новой задаче