2 * This handles recursive filename detection with exclude
3 * files, index knowledge etc..
5 * Copyright (C) Linus Torvalds, 2005-2006
6 * Junio Hamano, 2005-2006
12 struct path_simplify
{
17 static int read_directory_recursive(struct dir_struct
*dir
, const char *path
, int len
,
18 int check_only
, const struct path_simplify
*simplify
);
19 static int get_dtype(struct dirent
*de
, const char *path
, int len
);
21 /* helper string functions with support for the ignore_case flag */
22 int strcmp_icase(const char *a
, const char *b
)
24 return ignore_case
? strcasecmp(a
, b
) : strcmp(a
, b
);
27 int strncmp_icase(const char *a
, const char *b
, size_t count
)
29 return ignore_case
? strncasecmp(a
, b
, count
) : strncmp(a
, b
, count
);
32 int fnmatch_icase(const char *pattern
, const char *string
, int flags
)
34 return fnmatch(pattern
, string
, flags
| (ignore_case
? FNM_CASEFOLD
: 0));
37 static size_t common_prefix_len(const char **pathspec
)
39 const char *n
, *first
;
46 while ((n
= *pathspec
++)) {
48 for (i
= 0; first
== n
|| i
< max
; i
++) {
50 if (!c
|| c
!= first
[i
] || is_glob_special(c
))
55 if (first
== n
|| len
< max
) {
65 * Returns a copy of the longest leading path common among all
68 char *common_prefix(const char **pathspec
)
70 unsigned long len
= common_prefix_len(pathspec
);
72 return len
? xmemdupz(*pathspec
, len
) : NULL
;
75 int fill_directory(struct dir_struct
*dir
, const char **pathspec
)
80 * Calculate common prefix for the pathspec, and
81 * use that to optimize the directory walk
83 len
= common_prefix_len(pathspec
);
85 /* Read the directory and prune it */
86 read_directory(dir
, pathspec
? *pathspec
: "", len
, pathspec
);
90 int within_depth(const char *name
, int namelen
,
91 int depth
, int max_depth
)
93 const char *cp
= name
, *cpe
= name
+ namelen
;
99 if (depth
> max_depth
)
106 * Does 'match' match the given name?
107 * A match is found if
109 * (1) the 'match' string is leading directory of 'name', or
110 * (2) the 'match' string is a wildcard and matches 'name', or
111 * (3) the 'match' string is exactly the same as 'name'.
113 * and the return value tells which case it was.
115 * It returns 0 when there is no match.
117 static int match_one(const char *match
, const char *name
, int namelen
)
121 /* If the match was just the prefix, we matched */
123 return MATCHED_RECURSIVELY
;
127 unsigned char c1
= tolower(*match
);
128 unsigned char c2
= tolower(*name
);
129 if (c1
== '\0' || is_glob_special(c1
))
139 unsigned char c1
= *match
;
140 unsigned char c2
= *name
;
141 if (c1
== '\0' || is_glob_special(c1
))
153 * If we don't match the matchstring exactly,
154 * we need to match by fnmatch
156 matchlen
= strlen(match
);
157 if (strncmp_icase(match
, name
, matchlen
))
158 return !fnmatch_icase(match
, name
, 0) ? MATCHED_FNMATCH
: 0;
160 if (namelen
== matchlen
)
161 return MATCHED_EXACTLY
;
162 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
163 return MATCHED_RECURSIVELY
;
168 * Given a name and a list of pathspecs, see if the name matches
169 * any of the pathspecs. The caller is also interested in seeing
170 * all pathspec matches some names it calls this function with
171 * (otherwise the user could have mistyped the unmatched pathspec),
172 * and a mark is left in seen[] array for pathspec element that
173 * actually matched anything.
175 int match_pathspec(const char **pathspec
, const char *name
, int namelen
,
176 int prefix
, char *seen
)
186 for (i
= 0; pathspec
[i
] != NULL
; i
++) {
188 const char *match
= pathspec
[i
] + prefix
;
189 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
191 how
= match_one(match
, name
, namelen
);
195 if (seen
&& seen
[i
] < how
)
203 * Does 'match' match the given name?
204 * A match is found if
206 * (1) the 'match' string is leading directory of 'name', or
207 * (2) the 'match' string is a wildcard and matches 'name', or
208 * (3) the 'match' string is exactly the same as 'name'.
210 * and the return value tells which case it was.
212 * It returns 0 when there is no match.
214 static int match_pathspec_item(const struct pathspec_item
*item
, int prefix
,
215 const char *name
, int namelen
)
217 /* name/namelen has prefix cut off by caller */
218 const char *match
= item
->match
+ prefix
;
219 int matchlen
= item
->len
- prefix
;
221 /* If the match was just the prefix, we matched */
223 return MATCHED_RECURSIVELY
;
225 if (matchlen
<= namelen
&& !strncmp(match
, name
, matchlen
)) {
226 if (matchlen
== namelen
)
227 return MATCHED_EXACTLY
;
229 if (match
[matchlen
-1] == '/' || name
[matchlen
] == '/')
230 return MATCHED_RECURSIVELY
;
233 if (item
->use_wildcard
&& !fnmatch(match
, name
, 0))
234 return MATCHED_FNMATCH
;
240 * Given a name and a list of pathspecs, see if the name matches
241 * any of the pathspecs. The caller is also interested in seeing
242 * all pathspec matches some names it calls this function with
243 * (otherwise the user could have mistyped the unmatched pathspec),
244 * and a mark is left in seen[] array for pathspec element that
245 * actually matched anything.
247 int match_pathspec_depth(const struct pathspec
*ps
,
248 const char *name
, int namelen
,
249 int prefix
, char *seen
)
254 if (!ps
->recursive
|| ps
->max_depth
== -1)
255 return MATCHED_RECURSIVELY
;
257 if (within_depth(name
, namelen
, 0, ps
->max_depth
))
258 return MATCHED_EXACTLY
;
266 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
268 if (seen
&& seen
[i
] == MATCHED_EXACTLY
)
270 how
= match_pathspec_item(ps
->items
+i
, prefix
, name
, namelen
);
271 if (ps
->recursive
&& ps
->max_depth
!= -1 &&
272 how
&& how
!= MATCHED_FNMATCH
) {
273 int len
= ps
->items
[i
].len
;
274 if (name
[len
] == '/')
276 if (within_depth(name
+len
, namelen
-len
, 0, ps
->max_depth
))
277 how
= MATCHED_EXACTLY
;
284 if (seen
&& seen
[i
] < how
)
292 * Return the length of the "simple" part of a path match limiter.
294 static int simple_length(const char *match
)
299 unsigned char c
= *match
++;
301 if (c
== '\0' || is_glob_special(c
))
306 static int no_wildcard(const char *string
)
308 return string
[simple_length(string
)] == '\0';
311 void parse_exclude_pattern(const char **pattern
,
316 const char *p
= *pattern
;
321 *flags
|= EXC_FLAG_NEGATIVE
;
325 if (len
&& p
[len
- 1] == '/') {
327 *flags
|= EXC_FLAG_MUSTBEDIR
;
329 for (i
= 0; i
< len
; i
++) {
334 *flags
|= EXC_FLAG_NODIR
;
335 *nowildcardlen
= simple_length(p
);
337 * we should have excluded the trailing slash from 'p' too,
338 * but that's one more allocation. Instead just make sure
339 * nowildcardlen does not exceed real patternlen
341 if (*nowildcardlen
> len
)
342 *nowildcardlen
= len
;
343 if (*p
== '*' && no_wildcard(p
+ 1))
344 *flags
|= EXC_FLAG_ENDSWITH
;
349 void add_exclude(const char *string
, const char *base
,
350 int baselen
, struct exclude_list
*which
)
357 parse_exclude_pattern(&string
, &patternlen
, &flags
, &nowildcardlen
);
358 if (flags
& EXC_FLAG_MUSTBEDIR
) {
360 x
= xmalloc(sizeof(*x
) + patternlen
+ 1);
362 memcpy(s
, string
, patternlen
);
363 s
[patternlen
] = '\0';
366 x
= xmalloc(sizeof(*x
));
369 x
->patternlen
= patternlen
;
370 x
->nowildcardlen
= nowildcardlen
;
372 x
->baselen
= baselen
;
374 ALLOC_GROW(which
->excludes
, which
->nr
+ 1, which
->alloc
);
375 which
->excludes
[which
->nr
++] = x
;
378 static void *read_skip_worktree_file_from_index(const char *path
, size_t *size
)
382 enum object_type type
;
384 struct index_state
*istate
= &the_index
;
387 pos
= index_name_pos(istate
, path
, len
);
390 if (!ce_skip_worktree(istate
->cache
[pos
]))
392 data
= read_sha1_file(istate
->cache
[pos
]->sha1
, &type
, &sz
);
393 if (!data
|| type
!= OBJ_BLOB
) {
401 void free_excludes(struct exclude_list
*el
)
405 for (i
= 0; i
< el
->nr
; i
++)
406 free(el
->excludes
[i
]);
413 int add_excludes_from_file_to_list(const char *fname
,
417 struct exclude_list
*which
,
425 fd
= open(fname
, O_RDONLY
);
426 if (fd
< 0 || fstat(fd
, &st
) < 0) {
428 warn_on_inaccessible(fname
);
432 (buf
= read_skip_worktree_file_from_index(fname
, &size
)) == NULL
)
438 if (buf
[size
-1] != '\n') {
439 buf
= xrealloc(buf
, size
+1);
444 size
= xsize_t(st
.st_size
);
449 buf
= xmalloc(size
+1);
450 if (read_in_full(fd
, buf
, size
) != size
) {
462 for (i
= 0; i
< size
; i
++) {
463 if (buf
[i
] == '\n') {
464 if (entry
!= buf
+ i
&& entry
[0] != '#') {
465 buf
[i
- (i
&& buf
[i
-1] == '\r')] = 0;
466 add_exclude(entry
, base
, baselen
, which
);
474 void add_excludes_from_file(struct dir_struct
*dir
, const char *fname
)
476 if (add_excludes_from_file_to_list(fname
, "", 0, NULL
,
477 &dir
->exclude_list
[EXC_FILE
], 0) < 0)
478 die("cannot use %s as an exclude file", fname
);
481 static void prep_exclude(struct dir_struct
*dir
, const char *base
, int baselen
)
483 struct exclude_list
*el
;
484 struct exclude_stack
*stk
= NULL
;
487 if ((!dir
->exclude_per_dir
) ||
488 (baselen
+ strlen(dir
->exclude_per_dir
) >= PATH_MAX
))
489 return; /* too long a path -- ignore */
491 /* Pop the ones that are not the prefix of the path being checked. */
492 el
= &dir
->exclude_list
[EXC_DIRS
];
493 while ((stk
= dir
->exclude_stack
) != NULL
) {
494 if (stk
->baselen
<= baselen
&&
495 !strncmp(dir
->basebuf
, base
, stk
->baselen
))
497 dir
->exclude_stack
= stk
->prev
;
498 while (stk
->exclude_ix
< el
->nr
)
499 free(el
->excludes
[--el
->nr
]);
504 /* Read from the parent directories and push them down. */
505 current
= stk
? stk
->baselen
: -1;
506 while (current
< baselen
) {
507 struct exclude_stack
*stk
= xcalloc(1, sizeof(*stk
));
515 cp
= strchr(base
+ current
+ 1, '/');
517 die("oops in prep_exclude");
520 stk
->prev
= dir
->exclude_stack
;
521 stk
->baselen
= cp
- base
;
522 stk
->exclude_ix
= el
->nr
;
523 memcpy(dir
->basebuf
+ current
, base
+ current
,
524 stk
->baselen
- current
);
525 strcpy(dir
->basebuf
+ stk
->baselen
, dir
->exclude_per_dir
);
526 add_excludes_from_file_to_list(dir
->basebuf
,
527 dir
->basebuf
, stk
->baselen
,
528 &stk
->filebuf
, el
, 1);
529 dir
->exclude_stack
= stk
;
530 current
= stk
->baselen
;
532 dir
->basebuf
[baselen
] = '\0';
535 int match_basename(const char *basename
, int basenamelen
,
536 const char *pattern
, int prefix
, int patternlen
,
539 if (prefix
== patternlen
) {
540 if (!strcmp_icase(pattern
, basename
))
542 } else if (flags
& EXC_FLAG_ENDSWITH
) {
543 if (patternlen
- 1 <= basenamelen
&&
544 !strcmp_icase(pattern
+ 1,
545 basename
+ basenamelen
- patternlen
+ 1))
548 if (fnmatch_icase(pattern
, basename
, 0) == 0)
554 int match_pathname(const char *pathname
, int pathlen
,
555 const char *base
, int baselen
,
556 const char *pattern
, int prefix
, int patternlen
,
563 * match with FNM_PATHNAME; the pattern has base implicitly
566 if (*pattern
== '/') {
572 * baselen does not count the trailing slash. base[] may or
573 * may not end with a trailing slash though.
575 if (pathlen
< baselen
+ 1 ||
576 (baselen
&& pathname
[baselen
] != '/') ||
577 strncmp_icase(pathname
, base
, baselen
))
580 namelen
= baselen
? pathlen
- baselen
- 1 : pathlen
;
581 name
= pathname
+ pathlen
- namelen
;
585 * if the non-wildcard part is longer than the
586 * remaining pathname, surely it cannot match.
588 if (prefix
> namelen
)
591 if (strncmp_icase(pattern
, name
, prefix
))
598 return fnmatch_icase(pattern
, name
, FNM_PATHNAME
) == 0;
601 /* Scan the list and let the last match determine the fate.
602 * Return 1 for exclude, 0 for include and -1 for undecided.
604 int excluded_from_list(const char *pathname
,
605 int pathlen
, const char *basename
, int *dtype
,
606 struct exclude_list
*el
)
611 return -1; /* undefined */
613 for (i
= el
->nr
- 1; 0 <= i
; i
--) {
614 struct exclude
*x
= el
->excludes
[i
];
615 const char *exclude
= x
->pattern
;
616 int to_exclude
= x
->flags
& EXC_FLAG_NEGATIVE
? 0 : 1;
617 int prefix
= x
->nowildcardlen
;
619 if (x
->flags
& EXC_FLAG_MUSTBEDIR
) {
620 if (*dtype
== DT_UNKNOWN
)
621 *dtype
= get_dtype(NULL
, pathname
, pathlen
);
622 if (*dtype
!= DT_DIR
)
626 if (x
->flags
& EXC_FLAG_NODIR
) {
627 if (match_basename(basename
,
628 pathlen
- (basename
- pathname
),
629 exclude
, prefix
, x
->patternlen
,
635 assert(x
->baselen
== 0 || x
->base
[x
->baselen
- 1] == '/');
636 if (match_pathname(pathname
, pathlen
,
637 x
->base
, x
->baselen
? x
->baselen
- 1 : 0,
638 exclude
, prefix
, x
->patternlen
, x
->flags
))
641 return -1; /* undecided */
644 static int excluded(struct dir_struct
*dir
, const char *pathname
, int *dtype_p
)
646 int pathlen
= strlen(pathname
);
648 const char *basename
= strrchr(pathname
, '/');
649 basename
= (basename
) ? basename
+1 : pathname
;
651 prep_exclude(dir
, pathname
, basename
-pathname
);
652 for (st
= EXC_CMDL
; st
<= EXC_FILE
; st
++) {
653 switch (excluded_from_list(pathname
, pathlen
, basename
,
654 dtype_p
, &dir
->exclude_list
[st
])) {
664 void path_exclude_check_init(struct path_exclude_check
*check
,
665 struct dir_struct
*dir
)
668 strbuf_init(&check
->path
, 256);
671 void path_exclude_check_clear(struct path_exclude_check
*check
)
673 strbuf_release(&check
->path
);
677 * Is this name excluded? This is for a caller like show_files() that
678 * do not honor directory hierarchy and iterate through paths that are
679 * possibly in an ignored directory.
681 * A path to a directory known to be excluded is left in check->path to
682 * optimize for repeated checks for files in the same excluded directory.
684 int path_excluded(struct path_exclude_check
*check
,
685 const char *name
, int namelen
, int *dtype
)
688 struct strbuf
*path
= &check
->path
;
691 * we allow the caller to pass namelen as an optimization; it
692 * must match the length of the name, as we eventually call
693 * excluded() on the whole name string.
696 namelen
= strlen(name
);
699 path
->len
<= namelen
&&
700 !memcmp(name
, path
->buf
, path
->len
) &&
701 (!name
[path
->len
] || name
[path
->len
] == '/'))
704 strbuf_setlen(path
, 0);
705 for (i
= 0; name
[i
]; i
++) {
710 if (excluded(check
->dir
, path
->buf
, &dt
))
713 strbuf_addch(path
, ch
);
716 /* An entry in the index; cannot be a directory with subentries */
717 strbuf_setlen(path
, 0);
719 return excluded(check
->dir
, name
, dtype
);
722 static struct dir_entry
*dir_entry_new(const char *pathname
, int len
)
724 struct dir_entry
*ent
;
726 ent
= xmalloc(sizeof(*ent
) + len
+ 1);
728 memcpy(ent
->name
, pathname
, len
);
733 static struct dir_entry
*dir_add_name(struct dir_struct
*dir
, const char *pathname
, int len
)
735 if (!(dir
->flags
& DIR_SHOW_IGNORED
) &&
736 cache_name_exists(pathname
, len
, ignore_case
))
739 ALLOC_GROW(dir
->entries
, dir
->nr
+1, dir
->alloc
);
740 return dir
->entries
[dir
->nr
++] = dir_entry_new(pathname
, len
);
743 struct dir_entry
*dir_add_ignored(struct dir_struct
*dir
, const char *pathname
, int len
)
745 if (!cache_name_is_other(pathname
, len
))
748 ALLOC_GROW(dir
->ignored
, dir
->ignored_nr
+1, dir
->ignored_alloc
);
749 return dir
->ignored
[dir
->ignored_nr
++] = dir_entry_new(pathname
, len
);
753 index_nonexistent
= 0,
759 * Do not use the alphabetically stored index to look up
760 * the directory name; instead, use the case insensitive
763 static enum exist_status
directory_exists_in_index_icase(const char *dirname
, int len
)
765 struct cache_entry
*ce
= index_name_exists(&the_index
, dirname
, len
+ 1, ignore_case
);
766 unsigned char endchar
;
769 return index_nonexistent
;
770 endchar
= ce
->name
[len
];
773 * The cache_entry structure returned will contain this dirname
774 * and possibly additional path components.
777 return index_directory
;
780 * If there are no additional path components, then this cache_entry
781 * represents a submodule. Submodules, despite being directories,
782 * are stored in the cache without a closing slash.
784 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
787 /* This should never be hit, but it exists just in case. */
788 return index_nonexistent
;
792 * The index sorts alphabetically by entry name, which
793 * means that a gitlink sorts as '\0' at the end, while
794 * a directory (which is defined not as an entry, but as
795 * the files it contains) will sort with the '/' at the
798 static enum exist_status
directory_exists_in_index(const char *dirname
, int len
)
803 return directory_exists_in_index_icase(dirname
, len
);
805 pos
= cache_name_pos(dirname
, len
);
808 while (pos
< active_nr
) {
809 struct cache_entry
*ce
= active_cache
[pos
++];
810 unsigned char endchar
;
812 if (strncmp(ce
->name
, dirname
, len
))
814 endchar
= ce
->name
[len
];
818 return index_directory
;
819 if (!endchar
&& S_ISGITLINK(ce
->ce_mode
))
822 return index_nonexistent
;
826 * When we find a directory when traversing the filesystem, we
827 * have three distinct cases:
830 * - see it as a directory
833 * and which one we choose depends on a combination of existing
834 * git index contents and the flags passed into the directory
837 * Case 1: If we *already* have entries in the index under that
838 * directory name, we recurse into the directory to see all the files,
839 * unless the directory is excluded and we want to show ignored
842 * Case 2: If we *already* have that directory name as a gitlink,
843 * we always continue to see it as a gitlink, regardless of whether
844 * there is an actual git directory there or not (it might not
845 * be checked out as a subproject!)
847 * Case 3: if we didn't have it in the index previously, we
848 * have a few sub-cases:
850 * (a) if "show_other_directories" is true, we show it as
851 * just a directory, unless "hide_empty_directories" is
852 * also true and the directory is empty, in which case
853 * we just ignore it entirely.
854 * if we are looking for ignored directories, look if it
855 * contains only ignored files to decide if it must be shown as
857 * (b) if it looks like a git directory, and we don't have
858 * 'no_gitlinks' set we treat it as a gitlink, and show it
860 * (c) otherwise, we recurse into it.
862 enum directory_treatment
{
865 recurse_into_directory
868 static enum directory_treatment
treat_directory(struct dir_struct
*dir
,
869 const char *dirname
, int len
, int exclude
,
870 const struct path_simplify
*simplify
)
872 /* The "len-1" is to strip the final '/' */
873 switch (directory_exists_in_index(dirname
, len
-1)) {
874 case index_directory
:
875 if ((dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
) && exclude
)
878 return recurse_into_directory
;
881 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
882 return ignore_directory
;
883 return show_directory
;
885 case index_nonexistent
:
886 if (dir
->flags
& DIR_SHOW_OTHER_DIRECTORIES
)
888 if (!(dir
->flags
& DIR_NO_GITLINKS
)) {
889 unsigned char sha1
[20];
890 if (resolve_gitlink_ref(dirname
, "HEAD", sha1
) == 0)
891 return show_directory
;
893 return recurse_into_directory
;
896 /* This is the "show_other_directories" case */
899 * We are looking for ignored files and our directory is not ignored,
900 * check if it contains only ignored files
902 if ((dir
->flags
& DIR_SHOW_IGNORED
) && !exclude
) {
904 dir
->flags
&= ~DIR_SHOW_IGNORED
;
905 dir
->flags
|= DIR_HIDE_EMPTY_DIRECTORIES
;
906 ignored
= read_directory_recursive(dir
, dirname
, len
, 1, simplify
);
907 dir
->flags
&= ~DIR_HIDE_EMPTY_DIRECTORIES
;
908 dir
->flags
|= DIR_SHOW_IGNORED
;
910 return ignored
? ignore_directory
: show_directory
;
912 if (!(dir
->flags
& DIR_SHOW_IGNORED
) &&
913 !(dir
->flags
& DIR_HIDE_EMPTY_DIRECTORIES
))
914 return show_directory
;
915 if (!read_directory_recursive(dir
, dirname
, len
, 1, simplify
))
916 return ignore_directory
;
917 return show_directory
;
921 * Decide what to do when we find a file while traversing the
922 * filesystem. Mostly two cases:
924 * 1. We are looking for ignored files
925 * (a) File is ignored, include it
926 * (b) File is in ignored path, include it
927 * (c) File is not ignored, exclude it
929 * 2. Other scenarios, include the file if not excluded
931 * Return 1 for exclude, 0 for include.
933 static int treat_file(struct dir_struct
*dir
, struct strbuf
*path
, int exclude
, int *dtype
)
935 struct path_exclude_check check
;
936 int exclude_file
= 0;
939 exclude_file
= !(dir
->flags
& DIR_SHOW_IGNORED
);
940 else if (dir
->flags
& DIR_SHOW_IGNORED
) {
941 /* Always exclude indexed files */
942 struct cache_entry
*ce
= index_name_exists(&the_index
,
943 path
->buf
, path
->len
, ignore_case
);
948 path_exclude_check_init(&check
, dir
);
950 if (!path_excluded(&check
, path
->buf
, path
->len
, dtype
))
953 path_exclude_check_clear(&check
);
960 * This is an inexact early pruning of any recursive directory
961 * reading - if the path cannot possibly be in the pathspec,
962 * return true, and we'll skip it early.
964 static int simplify_away(const char *path
, int pathlen
, const struct path_simplify
*simplify
)
968 const char *match
= simplify
->path
;
969 int len
= simplify
->len
;
975 if (!memcmp(path
, match
, len
))
985 * This function tells us whether an excluded path matches a
986 * list of "interesting" pathspecs. That is, whether a path matched
987 * by any of the pathspecs could possibly be ignored by excluding
988 * the specified path. This can happen if:
990 * 1. the path is mentioned explicitly in the pathspec
992 * 2. the path is a directory prefix of some element in the
995 static int exclude_matches_pathspec(const char *path
, int len
,
996 const struct path_simplify
*simplify
)
999 for (; simplify
->path
; simplify
++) {
1000 if (len
== simplify
->len
1001 && !memcmp(path
, simplify
->path
, len
))
1003 if (len
< simplify
->len
1004 && simplify
->path
[len
] == '/'
1005 && !memcmp(path
, simplify
->path
, len
))
1012 static int get_index_dtype(const char *path
, int len
)
1015 struct cache_entry
*ce
;
1017 ce
= cache_name_exists(path
, len
, 0);
1019 if (!ce_uptodate(ce
))
1021 if (S_ISGITLINK(ce
->ce_mode
))
1024 * Nobody actually cares about the
1025 * difference between DT_LNK and DT_REG
1030 /* Try to look it up as a directory */
1031 pos
= cache_name_pos(path
, len
);
1035 while (pos
< active_nr
) {
1036 ce
= active_cache
[pos
++];
1037 if (strncmp(ce
->name
, path
, len
))
1039 if (ce
->name
[len
] > '/')
1041 if (ce
->name
[len
] < '/')
1043 if (!ce_uptodate(ce
))
1044 break; /* continue? */
1050 static int get_dtype(struct dirent
*de
, const char *path
, int len
)
1052 int dtype
= de
? DTYPE(de
) : DT_UNKNOWN
;
1055 if (dtype
!= DT_UNKNOWN
)
1057 dtype
= get_index_dtype(path
, len
);
1058 if (dtype
!= DT_UNKNOWN
)
1060 if (lstat(path
, &st
))
1062 if (S_ISREG(st
.st_mode
))
1064 if (S_ISDIR(st
.st_mode
))
1066 if (S_ISLNK(st
.st_mode
))
1071 enum path_treatment
{
1077 static enum path_treatment
treat_one_path(struct dir_struct
*dir
,
1078 struct strbuf
*path
,
1079 const struct path_simplify
*simplify
,
1080 int dtype
, struct dirent
*de
)
1082 int exclude
= excluded(dir
, path
->buf
, &dtype
);
1083 if (exclude
&& (dir
->flags
& DIR_COLLECT_IGNORED
)
1084 && exclude_matches_pathspec(path
->buf
, path
->len
, simplify
))
1085 dir_add_ignored(dir
, path
->buf
, path
->len
);
1088 * Excluded? If we don't explicitly want to show
1089 * ignored files, ignore it
1091 if (exclude
&& !(dir
->flags
& DIR_SHOW_IGNORED
))
1092 return path_ignored
;
1094 if (dtype
== DT_UNKNOWN
)
1095 dtype
= get_dtype(de
, path
->buf
, path
->len
);
1099 return path_ignored
;
1101 strbuf_addch(path
, '/');
1103 switch (treat_directory(dir
, path
->buf
, path
->len
, exclude
, simplify
)) {
1104 case show_directory
:
1106 case recurse_into_directory
:
1107 return path_recurse
;
1108 case ignore_directory
:
1109 return path_ignored
;
1114 switch (treat_file(dir
, path
, exclude
, &dtype
)) {
1116 return path_ignored
;
1121 return path_handled
;
1124 static enum path_treatment
treat_path(struct dir_struct
*dir
,
1126 struct strbuf
*path
,
1128 const struct path_simplify
*simplify
)
1132 if (is_dot_or_dotdot(de
->d_name
) || !strcmp(de
->d_name
, ".git"))
1133 return path_ignored
;
1134 strbuf_setlen(path
, baselen
);
1135 strbuf_addstr(path
, de
->d_name
);
1136 if (simplify_away(path
->buf
, path
->len
, simplify
))
1137 return path_ignored
;
1140 return treat_one_path(dir
, path
, simplify
, dtype
, de
);
1144 * Read a directory tree. We currently ignore anything but
1145 * directories, regular files and symlinks. That's because git
1146 * doesn't handle them at all yet. Maybe that will change some
1149 * Also, we ignore the name ".git" (even if it is not a directory).
1150 * That likely will not change.
1152 static int read_directory_recursive(struct dir_struct
*dir
,
1153 const char *base
, int baselen
,
1155 const struct path_simplify
*simplify
)
1160 struct strbuf path
= STRBUF_INIT
;
1162 strbuf_add(&path
, base
, baselen
);
1164 fdir
= opendir(path
.len
? path
.buf
: ".");
1168 while ((de
= readdir(fdir
)) != NULL
) {
1169 switch (treat_path(dir
, de
, &path
, baselen
, simplify
)) {
1171 contents
+= read_directory_recursive(dir
, path
.buf
,
1183 dir_add_name(dir
, path
.buf
, path
.len
);
1187 strbuf_release(&path
);
1192 static int cmp_name(const void *p1
, const void *p2
)
1194 const struct dir_entry
*e1
= *(const struct dir_entry
**)p1
;
1195 const struct dir_entry
*e2
= *(const struct dir_entry
**)p2
;
1197 return cache_name_compare(e1
->name
, e1
->len
,
1201 static struct path_simplify
*create_simplify(const char **pathspec
)
1204 struct path_simplify
*simplify
= NULL
;
1209 for (nr
= 0 ; ; nr
++) {
1212 alloc
= alloc_nr(alloc
);
1213 simplify
= xrealloc(simplify
, alloc
* sizeof(*simplify
));
1215 match
= *pathspec
++;
1218 simplify
[nr
].path
= match
;
1219 simplify
[nr
].len
= simple_length(match
);
1221 simplify
[nr
].path
= NULL
;
1222 simplify
[nr
].len
= 0;
1226 static void free_simplify(struct path_simplify
*simplify
)
1231 static int treat_leading_path(struct dir_struct
*dir
,
1232 const char *path
, int len
,
1233 const struct path_simplify
*simplify
)
1235 struct strbuf sb
= STRBUF_INIT
;
1236 int baselen
, rc
= 0;
1239 while (len
&& path
[len
- 1] == '/')
1245 cp
= path
+ baselen
+ !!baselen
;
1246 cp
= memchr(cp
, '/', path
+ len
- cp
);
1250 baselen
= cp
- path
;
1251 strbuf_setlen(&sb
, 0);
1252 strbuf_add(&sb
, path
, baselen
);
1253 if (!is_directory(sb
.buf
))
1255 if (simplify_away(sb
.buf
, sb
.len
, simplify
))
1257 if (treat_one_path(dir
, &sb
, simplify
,
1258 DT_DIR
, NULL
) == path_ignored
)
1259 break; /* do not recurse into it */
1260 if (len
<= baselen
) {
1262 break; /* finished checking */
1265 strbuf_release(&sb
);
1269 int read_directory(struct dir_struct
*dir
, const char *path
, int len
, const char **pathspec
)
1271 struct path_simplify
*simplify
;
1273 if (has_symlink_leading_path(path
, len
))
1276 simplify
= create_simplify(pathspec
);
1277 if (!len
|| treat_leading_path(dir
, path
, len
, simplify
))
1278 read_directory_recursive(dir
, path
, len
, 0, simplify
);
1279 free_simplify(simplify
);
1280 qsort(dir
->entries
, dir
->nr
, sizeof(struct dir_entry
*), cmp_name
);
1281 qsort(dir
->ignored
, dir
->ignored_nr
, sizeof(struct dir_entry
*), cmp_name
);
1285 int file_exists(const char *f
)
1288 return lstat(f
, &sb
) == 0;
1292 * Given two normalized paths (a trailing slash is ok), if subdir is
1293 * outside dir, return -1. Otherwise return the offset in subdir that
1294 * can be used as relative path to dir.
1296 int dir_inside_of(const char *subdir
, const char *dir
)
1300 assert(dir
&& subdir
&& *dir
&& *subdir
);
1302 while (*dir
&& *subdir
&& *dir
== *subdir
) {
1308 /* hel[p]/me vs hel[l]/yeah */
1309 if (*dir
&& *subdir
)
1313 return !*dir
? offset
: -1; /* same dir */
1315 /* foo/[b]ar vs foo/[] */
1316 if (is_dir_sep(dir
[-1]))
1317 return is_dir_sep(subdir
[-1]) ? offset
: -1;
1319 /* foo[/]bar vs foo[] */
1320 return is_dir_sep(*subdir
) ? offset
+ 1 : -1;
1323 int is_inside_dir(const char *dir
)
1328 if (!getcwd(cwd
, sizeof(cwd
)))
1329 die_errno("can't find the current directory");
1330 return dir_inside_of(cwd
, dir
) >= 0;
1333 int is_empty_dir(const char *path
)
1335 DIR *dir
= opendir(path
);
1342 while ((e
= readdir(dir
)) != NULL
)
1343 if (!is_dot_or_dotdot(e
->d_name
)) {
1352 static int remove_dir_recurse(struct strbuf
*path
, int flag
, int *kept_up
)
1356 int ret
= 0, original_len
= path
->len
, len
, kept_down
= 0;
1357 int only_empty
= (flag
& REMOVE_DIR_EMPTY_ONLY
);
1358 int keep_toplevel
= (flag
& REMOVE_DIR_KEEP_TOPLEVEL
);
1359 unsigned char submodule_head
[20];
1361 if ((flag
& REMOVE_DIR_KEEP_NESTED_GIT
) &&
1362 !resolve_gitlink_ref(path
->buf
, "HEAD", submodule_head
)) {
1363 /* Do not descend and nuke a nested git work tree. */
1369 flag
&= ~REMOVE_DIR_KEEP_TOPLEVEL
;
1370 dir
= opendir(path
->buf
);
1372 /* an empty dir could be removed even if it is unreadble */
1374 return rmdir(path
->buf
);
1378 if (path
->buf
[original_len
- 1] != '/')
1379 strbuf_addch(path
, '/');
1382 while ((e
= readdir(dir
)) != NULL
) {
1384 if (is_dot_or_dotdot(e
->d_name
))
1387 strbuf_setlen(path
, len
);
1388 strbuf_addstr(path
, e
->d_name
);
1389 if (lstat(path
->buf
, &st
))
1391 else if (S_ISDIR(st
.st_mode
)) {
1392 if (!remove_dir_recurse(path
, flag
, &kept_down
))
1393 continue; /* happy */
1394 } else if (!only_empty
&& !unlink(path
->buf
))
1395 continue; /* happy, too */
1397 /* path too long, stat fails, or non-directory still exists */
1403 strbuf_setlen(path
, original_len
);
1404 if (!ret
&& !keep_toplevel
&& !kept_down
)
1405 ret
= rmdir(path
->buf
);
1408 * report the uplevel that it is not an error that we
1409 * did not rmdir() our directory.
1415 int remove_dir_recursively(struct strbuf
*path
, int flag
)
1417 return remove_dir_recurse(path
, flag
, NULL
);
1420 void setup_standard_excludes(struct dir_struct
*dir
)
1425 dir
->exclude_per_dir
= ".gitignore";
1426 path
= git_path("info/exclude");
1427 if (!excludes_file
) {
1428 home_config_paths(NULL
, &xdg_path
, "ignore");
1429 excludes_file
= xdg_path
;
1431 if (!access_or_warn(path
, R_OK
))
1432 add_excludes_from_file(dir
, path
);
1433 if (excludes_file
&& !access_or_warn(excludes_file
, R_OK
))
1434 add_excludes_from_file(dir
, excludes_file
);
1437 int remove_path(const char *name
)
1441 if (unlink(name
) && errno
!= ENOENT
)
1444 slash
= strrchr(name
, '/');
1446 char *dirs
= xstrdup(name
);
1447 slash
= dirs
+ (slash
- name
);
1450 } while (rmdir(dirs
) == 0 && (slash
= strrchr(dirs
, '/')));
1456 static int pathspec_item_cmp(const void *a_
, const void *b_
)
1458 struct pathspec_item
*a
, *b
;
1460 a
= (struct pathspec_item
*)a_
;
1461 b
= (struct pathspec_item
*)b_
;
1462 return strcmp(a
->match
, b
->match
);
1465 int init_pathspec(struct pathspec
*pathspec
, const char **paths
)
1467 const char **p
= paths
;
1470 memset(pathspec
, 0, sizeof(*pathspec
));
1475 pathspec
->raw
= paths
;
1476 pathspec
->nr
= p
- paths
;
1480 pathspec
->items
= xmalloc(sizeof(struct pathspec_item
)*pathspec
->nr
);
1481 for (i
= 0; i
< pathspec
->nr
; i
++) {
1482 struct pathspec_item
*item
= pathspec
->items
+i
;
1483 const char *path
= paths
[i
];
1486 item
->len
= strlen(path
);
1487 item
->use_wildcard
= !no_wildcard(path
);
1488 if (item
->use_wildcard
)
1489 pathspec
->has_wildcard
= 1;
1492 qsort(pathspec
->items
, pathspec
->nr
,
1493 sizeof(struct pathspec_item
), pathspec_item_cmp
);
1498 void free_pathspec(struct pathspec
*pathspec
)
1500 free(pathspec
->items
);
1501 pathspec
->items
= NULL
;