exclude: do strcmp as much as possible before fnmatch
[git/jnareb-git.git] / dir.c
blob94fe9f875c7bb998f62c3fefba94f5820311f252
1 /*
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
7 */
8 #include "cache.h"
9 #include "dir.h"
10 #include "refs.h"
12 struct path_simplify {
13 int len;
14 const char *path;
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;
40 size_t max = 0;
42 if (!pathspec)
43 return max;
45 first = *pathspec;
46 while ((n = *pathspec++)) {
47 size_t i, len = 0;
48 for (i = 0; first == n || i < max; i++) {
49 char c = n[i];
50 if (!c || c != first[i] || is_glob_special(c))
51 break;
52 if (c == '/')
53 len = i + 1;
55 if (first == n || len < max) {
56 max = len;
57 if (!max)
58 break;
61 return max;
65 * Returns a copy of the longest leading path common among all
66 * pathspecs.
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)
77 size_t len;
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);
87 return len;
90 int within_depth(const char *name, int namelen,
91 int depth, int max_depth)
93 const char *cp = name, *cpe = name + namelen;
95 while (cp < cpe) {
96 if (*cp++ != '/')
97 continue;
98 depth++;
99 if (depth > max_depth)
100 return 0;
102 return 1;
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)
119 int matchlen;
121 /* If the match was just the prefix, we matched */
122 if (!*match)
123 return MATCHED_RECURSIVELY;
125 if (ignore_case) {
126 for (;;) {
127 unsigned char c1 = tolower(*match);
128 unsigned char c2 = tolower(*name);
129 if (c1 == '\0' || is_glob_special(c1))
130 break;
131 if (c1 != c2)
132 return 0;
133 match++;
134 name++;
135 namelen--;
137 } else {
138 for (;;) {
139 unsigned char c1 = *match;
140 unsigned char c2 = *name;
141 if (c1 == '\0' || is_glob_special(c1))
142 break;
143 if (c1 != c2)
144 return 0;
145 match++;
146 name++;
147 namelen--;
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;
164 return 0;
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)
178 int i, retval = 0;
180 if (!pathspec)
181 return 1;
183 name += prefix;
184 namelen -= prefix;
186 for (i = 0; pathspec[i] != NULL; i++) {
187 int how;
188 const char *match = pathspec[i] + prefix;
189 if (seen && seen[i] == MATCHED_EXACTLY)
190 continue;
191 how = match_one(match, name, namelen);
192 if (how) {
193 if (retval < how)
194 retval = how;
195 if (seen && seen[i] < how)
196 seen[i] = how;
199 return retval;
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 */
222 if (!*match)
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;
236 return 0;
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)
251 int i, retval = 0;
253 if (!ps->nr) {
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;
259 else
260 return 0;
263 name += prefix;
264 namelen -= prefix;
266 for (i = ps->nr - 1; i >= 0; i--) {
267 int how;
268 if (seen && seen[i] == MATCHED_EXACTLY)
269 continue;
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] == '/')
275 len++;
276 if (within_depth(name+len, namelen-len, 0, ps->max_depth))
277 how = MATCHED_EXACTLY;
278 else
279 how = 0;
281 if (how) {
282 if (retval < how)
283 retval = how;
284 if (seen && seen[i] < how)
285 seen[i] = how;
288 return retval;
292 * Return the length of the "simple" part of a path match limiter.
294 static int simple_length(const char *match)
296 int len = -1;
298 for (;;) {
299 unsigned char c = *match++;
300 len++;
301 if (c == '\0' || is_glob_special(c))
302 return len;
306 static int no_wildcard(const char *string)
308 return string[simple_length(string)] == '\0';
311 void add_exclude(const char *string, const char *base,
312 int baselen, struct exclude_list *which)
314 struct exclude *x;
315 size_t len;
316 int to_exclude = 1;
317 int flags = 0;
319 if (*string == '!') {
320 to_exclude = 0;
321 string++;
323 len = strlen(string);
324 if (len && string[len - 1] == '/') {
325 char *s;
326 x = xmalloc(sizeof(*x) + len);
327 s = (char *)(x+1);
328 memcpy(s, string, len - 1);
329 s[len - 1] = '\0';
330 string = s;
331 x->pattern = s;
332 flags = EXC_FLAG_MUSTBEDIR;
333 } else {
334 x = xmalloc(sizeof(*x));
335 x->pattern = string;
337 x->to_exclude = to_exclude;
338 x->patternlen = strlen(string);
339 x->base = base;
340 x->baselen = baselen;
341 x->flags = flags;
342 if (!strchr(string, '/'))
343 x->flags |= EXC_FLAG_NODIR;
344 x->nowildcardlen = simple_length(string);
345 if (*string == '*' && no_wildcard(string+1))
346 x->flags |= EXC_FLAG_ENDSWITH;
347 ALLOC_GROW(which->excludes, which->nr + 1, which->alloc);
348 which->excludes[which->nr++] = x;
351 static void *read_skip_worktree_file_from_index(const char *path, size_t *size)
353 int pos, len;
354 unsigned long sz;
355 enum object_type type;
356 void *data;
357 struct index_state *istate = &the_index;
359 len = strlen(path);
360 pos = index_name_pos(istate, path, len);
361 if (pos < 0)
362 return NULL;
363 if (!ce_skip_worktree(istate->cache[pos]))
364 return NULL;
365 data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
366 if (!data || type != OBJ_BLOB) {
367 free(data);
368 return NULL;
370 *size = xsize_t(sz);
371 return data;
374 void free_excludes(struct exclude_list *el)
376 int i;
378 for (i = 0; i < el->nr; i++)
379 free(el->excludes[i]);
380 free(el->excludes);
382 el->nr = 0;
383 el->excludes = NULL;
386 int add_excludes_from_file_to_list(const char *fname,
387 const char *base,
388 int baselen,
389 char **buf_p,
390 struct exclude_list *which,
391 int check_index)
393 struct stat st;
394 int fd, i;
395 size_t size = 0;
396 char *buf, *entry;
398 fd = open(fname, O_RDONLY);
399 if (fd < 0 || fstat(fd, &st) < 0) {
400 if (0 <= fd)
401 close(fd);
402 if (!check_index ||
403 (buf = read_skip_worktree_file_from_index(fname, &size)) == NULL)
404 return -1;
405 if (size == 0) {
406 free(buf);
407 return 0;
409 if (buf[size-1] != '\n') {
410 buf = xrealloc(buf, size+1);
411 buf[size++] = '\n';
414 else {
415 size = xsize_t(st.st_size);
416 if (size == 0) {
417 close(fd);
418 return 0;
420 buf = xmalloc(size+1);
421 if (read_in_full(fd, buf, size) != size) {
422 free(buf);
423 close(fd);
424 return -1;
426 buf[size++] = '\n';
427 close(fd);
430 if (buf_p)
431 *buf_p = buf;
432 entry = buf;
433 for (i = 0; i < size; i++) {
434 if (buf[i] == '\n') {
435 if (entry != buf + i && entry[0] != '#') {
436 buf[i - (i && buf[i-1] == '\r')] = 0;
437 add_exclude(entry, base, baselen, which);
439 entry = buf + i + 1;
442 return 0;
445 void add_excludes_from_file(struct dir_struct *dir, const char *fname)
447 if (add_excludes_from_file_to_list(fname, "", 0, NULL,
448 &dir->exclude_list[EXC_FILE], 0) < 0)
449 die("cannot use %s as an exclude file", fname);
452 static void prep_exclude(struct dir_struct *dir, const char *base, int baselen)
454 struct exclude_list *el;
455 struct exclude_stack *stk = NULL;
456 int current;
458 if ((!dir->exclude_per_dir) ||
459 (baselen + strlen(dir->exclude_per_dir) >= PATH_MAX))
460 return; /* too long a path -- ignore */
462 /* Pop the ones that are not the prefix of the path being checked. */
463 el = &dir->exclude_list[EXC_DIRS];
464 while ((stk = dir->exclude_stack) != NULL) {
465 if (stk->baselen <= baselen &&
466 !strncmp(dir->basebuf, base, stk->baselen))
467 break;
468 dir->exclude_stack = stk->prev;
469 while (stk->exclude_ix < el->nr)
470 free(el->excludes[--el->nr]);
471 free(stk->filebuf);
472 free(stk);
475 /* Read from the parent directories and push them down. */
476 current = stk ? stk->baselen : -1;
477 while (current < baselen) {
478 struct exclude_stack *stk = xcalloc(1, sizeof(*stk));
479 const char *cp;
481 if (current < 0) {
482 cp = base;
483 current = 0;
485 else {
486 cp = strchr(base + current + 1, '/');
487 if (!cp)
488 die("oops in prep_exclude");
489 cp++;
491 stk->prev = dir->exclude_stack;
492 stk->baselen = cp - base;
493 stk->exclude_ix = el->nr;
494 memcpy(dir->basebuf + current, base + current,
495 stk->baselen - current);
496 strcpy(dir->basebuf + stk->baselen, dir->exclude_per_dir);
497 add_excludes_from_file_to_list(dir->basebuf,
498 dir->basebuf, stk->baselen,
499 &stk->filebuf, el, 1);
500 dir->exclude_stack = stk;
501 current = stk->baselen;
503 dir->basebuf[baselen] = '\0';
506 /* Scan the list and let the last match determine the fate.
507 * Return 1 for exclude, 0 for include and -1 for undecided.
509 int excluded_from_list(const char *pathname,
510 int pathlen, const char *basename, int *dtype,
511 struct exclude_list *el)
513 int i;
515 if (!el->nr)
516 return -1; /* undefined */
518 for (i = el->nr - 1; 0 <= i; i--) {
519 struct exclude *x = el->excludes[i];
520 const char *name, *exclude = x->pattern;
521 int to_exclude = x->to_exclude;
522 int namelen, prefix = x->nowildcardlen;
524 if (x->flags & EXC_FLAG_MUSTBEDIR) {
525 if (*dtype == DT_UNKNOWN)
526 *dtype = get_dtype(NULL, pathname, pathlen);
527 if (*dtype != DT_DIR)
528 continue;
531 if (x->flags & EXC_FLAG_NODIR) {
532 /* match basename */
533 if (prefix == x->patternlen) {
534 if (!strcmp_icase(exclude, basename))
535 return to_exclude;
536 } else if (x->flags & EXC_FLAG_ENDSWITH) {
537 if (x->patternlen - 1 <= pathlen &&
538 !strcmp_icase(exclude + 1, pathname + pathlen - x->patternlen + 1))
539 return to_exclude;
540 } else {
541 if (fnmatch_icase(exclude, basename, 0) == 0)
542 return to_exclude;
544 continue;
547 /* match with FNM_PATHNAME:
548 * exclude has base (baselen long) implicitly in front of it.
550 if (*exclude == '/') {
551 exclude++;
552 prefix--;
555 if (pathlen < x->baselen ||
556 (x->baselen && pathname[x->baselen-1] != '/') ||
557 strncmp_icase(pathname, x->base, x->baselen))
558 continue;
560 namelen = x->baselen ? pathlen - x->baselen : pathlen;
561 name = pathname + pathlen - namelen;
563 /* if the non-wildcard part is longer than the
564 remaining pathname, surely it cannot match */
565 if (prefix > namelen)
566 continue;
568 if (prefix) {
569 if (strncmp_icase(exclude, name, prefix))
570 continue;
571 exclude += prefix;
572 name += prefix;
573 namelen -= prefix;
576 if (!namelen || !fnmatch_icase(exclude, name, FNM_PATHNAME))
577 return to_exclude;
579 return -1; /* undecided */
582 int excluded(struct dir_struct *dir, const char *pathname, int *dtype_p)
584 int pathlen = strlen(pathname);
585 int st;
586 const char *basename = strrchr(pathname, '/');
587 basename = (basename) ? basename+1 : pathname;
589 prep_exclude(dir, pathname, basename-pathname);
590 for (st = EXC_CMDL; st <= EXC_FILE; st++) {
591 switch (excluded_from_list(pathname, pathlen, basename,
592 dtype_p, &dir->exclude_list[st])) {
593 case 0:
594 return 0;
595 case 1:
596 return 1;
599 return 0;
602 static struct dir_entry *dir_entry_new(const char *pathname, int len)
604 struct dir_entry *ent;
606 ent = xmalloc(sizeof(*ent) + len + 1);
607 ent->len = len;
608 memcpy(ent->name, pathname, len);
609 ent->name[len] = 0;
610 return ent;
613 static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len)
615 if (cache_name_exists(pathname, len, ignore_case))
616 return NULL;
618 ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc);
619 return dir->entries[dir->nr++] = dir_entry_new(pathname, len);
622 struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len)
624 if (!cache_name_is_other(pathname, len))
625 return NULL;
627 ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc);
628 return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len);
631 enum exist_status {
632 index_nonexistent = 0,
633 index_directory,
634 index_gitdir
638 * Do not use the alphabetically stored index to look up
639 * the directory name; instead, use the case insensitive
640 * name hash.
642 static enum exist_status directory_exists_in_index_icase(const char *dirname, int len)
644 struct cache_entry *ce = index_name_exists(&the_index, dirname, len + 1, ignore_case);
645 unsigned char endchar;
647 if (!ce)
648 return index_nonexistent;
649 endchar = ce->name[len];
652 * The cache_entry structure returned will contain this dirname
653 * and possibly additional path components.
655 if (endchar == '/')
656 return index_directory;
659 * If there are no additional path components, then this cache_entry
660 * represents a submodule. Submodules, despite being directories,
661 * are stored in the cache without a closing slash.
663 if (!endchar && S_ISGITLINK(ce->ce_mode))
664 return index_gitdir;
666 /* This should never be hit, but it exists just in case. */
667 return index_nonexistent;
671 * The index sorts alphabetically by entry name, which
672 * means that a gitlink sorts as '\0' at the end, while
673 * a directory (which is defined not as an entry, but as
674 * the files it contains) will sort with the '/' at the
675 * end.
677 static enum exist_status directory_exists_in_index(const char *dirname, int len)
679 int pos;
681 if (ignore_case)
682 return directory_exists_in_index_icase(dirname, len);
684 pos = cache_name_pos(dirname, len);
685 if (pos < 0)
686 pos = -pos-1;
687 while (pos < active_nr) {
688 struct cache_entry *ce = active_cache[pos++];
689 unsigned char endchar;
691 if (strncmp(ce->name, dirname, len))
692 break;
693 endchar = ce->name[len];
694 if (endchar > '/')
695 break;
696 if (endchar == '/')
697 return index_directory;
698 if (!endchar && S_ISGITLINK(ce->ce_mode))
699 return index_gitdir;
701 return index_nonexistent;
705 * When we find a directory when traversing the filesystem, we
706 * have three distinct cases:
708 * - ignore it
709 * - see it as a directory
710 * - recurse into it
712 * and which one we choose depends on a combination of existing
713 * git index contents and the flags passed into the directory
714 * traversal routine.
716 * Case 1: If we *already* have entries in the index under that
717 * directory name, we always recurse into the directory to see
718 * all the files.
720 * Case 2: If we *already* have that directory name as a gitlink,
721 * we always continue to see it as a gitlink, regardless of whether
722 * there is an actual git directory there or not (it might not
723 * be checked out as a subproject!)
725 * Case 3: if we didn't have it in the index previously, we
726 * have a few sub-cases:
728 * (a) if "show_other_directories" is true, we show it as
729 * just a directory, unless "hide_empty_directories" is
730 * also true and the directory is empty, in which case
731 * we just ignore it entirely.
732 * (b) if it looks like a git directory, and we don't have
733 * 'no_gitlinks' set we treat it as a gitlink, and show it
734 * as a directory.
735 * (c) otherwise, we recurse into it.
737 enum directory_treatment {
738 show_directory,
739 ignore_directory,
740 recurse_into_directory
743 static enum directory_treatment treat_directory(struct dir_struct *dir,
744 const char *dirname, int len,
745 const struct path_simplify *simplify)
747 /* The "len-1" is to strip the final '/' */
748 switch (directory_exists_in_index(dirname, len-1)) {
749 case index_directory:
750 return recurse_into_directory;
752 case index_gitdir:
753 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
754 return ignore_directory;
755 return show_directory;
757 case index_nonexistent:
758 if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES)
759 break;
760 if (!(dir->flags & DIR_NO_GITLINKS)) {
761 unsigned char sha1[20];
762 if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0)
763 return show_directory;
765 return recurse_into_directory;
768 /* This is the "show_other_directories" case */
769 if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES))
770 return show_directory;
771 if (!read_directory_recursive(dir, dirname, len, 1, simplify))
772 return ignore_directory;
773 return show_directory;
777 * This is an inexact early pruning of any recursive directory
778 * reading - if the path cannot possibly be in the pathspec,
779 * return true, and we'll skip it early.
781 static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify)
783 if (simplify) {
784 for (;;) {
785 const char *match = simplify->path;
786 int len = simplify->len;
788 if (!match)
789 break;
790 if (len > pathlen)
791 len = pathlen;
792 if (!memcmp(path, match, len))
793 return 0;
794 simplify++;
796 return 1;
798 return 0;
802 * This function tells us whether an excluded path matches a
803 * list of "interesting" pathspecs. That is, whether a path matched
804 * by any of the pathspecs could possibly be ignored by excluding
805 * the specified path. This can happen if:
807 * 1. the path is mentioned explicitly in the pathspec
809 * 2. the path is a directory prefix of some element in the
810 * pathspec
812 static int exclude_matches_pathspec(const char *path, int len,
813 const struct path_simplify *simplify)
815 if (simplify) {
816 for (; simplify->path; simplify++) {
817 if (len == simplify->len
818 && !memcmp(path, simplify->path, len))
819 return 1;
820 if (len < simplify->len
821 && simplify->path[len] == '/'
822 && !memcmp(path, simplify->path, len))
823 return 1;
826 return 0;
829 static int get_index_dtype(const char *path, int len)
831 int pos;
832 struct cache_entry *ce;
834 ce = cache_name_exists(path, len, 0);
835 if (ce) {
836 if (!ce_uptodate(ce))
837 return DT_UNKNOWN;
838 if (S_ISGITLINK(ce->ce_mode))
839 return DT_DIR;
841 * Nobody actually cares about the
842 * difference between DT_LNK and DT_REG
844 return DT_REG;
847 /* Try to look it up as a directory */
848 pos = cache_name_pos(path, len);
849 if (pos >= 0)
850 return DT_UNKNOWN;
851 pos = -pos-1;
852 while (pos < active_nr) {
853 ce = active_cache[pos++];
854 if (strncmp(ce->name, path, len))
855 break;
856 if (ce->name[len] > '/')
857 break;
858 if (ce->name[len] < '/')
859 continue;
860 if (!ce_uptodate(ce))
861 break; /* continue? */
862 return DT_DIR;
864 return DT_UNKNOWN;
867 static int get_dtype(struct dirent *de, const char *path, int len)
869 int dtype = de ? DTYPE(de) : DT_UNKNOWN;
870 struct stat st;
872 if (dtype != DT_UNKNOWN)
873 return dtype;
874 dtype = get_index_dtype(path, len);
875 if (dtype != DT_UNKNOWN)
876 return dtype;
877 if (lstat(path, &st))
878 return dtype;
879 if (S_ISREG(st.st_mode))
880 return DT_REG;
881 if (S_ISDIR(st.st_mode))
882 return DT_DIR;
883 if (S_ISLNK(st.st_mode))
884 return DT_LNK;
885 return dtype;
888 enum path_treatment {
889 path_ignored,
890 path_handled,
891 path_recurse
894 static enum path_treatment treat_one_path(struct dir_struct *dir,
895 struct strbuf *path,
896 const struct path_simplify *simplify,
897 int dtype, struct dirent *de)
899 int exclude = excluded(dir, path->buf, &dtype);
900 if (exclude && (dir->flags & DIR_COLLECT_IGNORED)
901 && exclude_matches_pathspec(path->buf, path->len, simplify))
902 dir_add_ignored(dir, path->buf, path->len);
905 * Excluded? If we don't explicitly want to show
906 * ignored files, ignore it
908 if (exclude && !(dir->flags & DIR_SHOW_IGNORED))
909 return path_ignored;
911 if (dtype == DT_UNKNOWN)
912 dtype = get_dtype(de, path->buf, path->len);
915 * Do we want to see just the ignored files?
916 * We still need to recurse into directories,
917 * even if we don't ignore them, since the
918 * directory may contain files that we do..
920 if (!exclude && (dir->flags & DIR_SHOW_IGNORED)) {
921 if (dtype != DT_DIR)
922 return path_ignored;
925 switch (dtype) {
926 default:
927 return path_ignored;
928 case DT_DIR:
929 strbuf_addch(path, '/');
930 switch (treat_directory(dir, path->buf, path->len, simplify)) {
931 case show_directory:
932 if (exclude != !!(dir->flags
933 & DIR_SHOW_IGNORED))
934 return path_ignored;
935 break;
936 case recurse_into_directory:
937 return path_recurse;
938 case ignore_directory:
939 return path_ignored;
941 break;
942 case DT_REG:
943 case DT_LNK:
944 break;
946 return path_handled;
949 static enum path_treatment treat_path(struct dir_struct *dir,
950 struct dirent *de,
951 struct strbuf *path,
952 int baselen,
953 const struct path_simplify *simplify)
955 int dtype;
957 if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git"))
958 return path_ignored;
959 strbuf_setlen(path, baselen);
960 strbuf_addstr(path, de->d_name);
961 if (simplify_away(path->buf, path->len, simplify))
962 return path_ignored;
964 dtype = DTYPE(de);
965 return treat_one_path(dir, path, simplify, dtype, de);
969 * Read a directory tree. We currently ignore anything but
970 * directories, regular files and symlinks. That's because git
971 * doesn't handle them at all yet. Maybe that will change some
972 * day.
974 * Also, we ignore the name ".git" (even if it is not a directory).
975 * That likely will not change.
977 static int read_directory_recursive(struct dir_struct *dir,
978 const char *base, int baselen,
979 int check_only,
980 const struct path_simplify *simplify)
982 DIR *fdir;
983 int contents = 0;
984 struct dirent *de;
985 struct strbuf path = STRBUF_INIT;
987 strbuf_add(&path, base, baselen);
989 fdir = opendir(path.len ? path.buf : ".");
990 if (!fdir)
991 goto out;
993 while ((de = readdir(fdir)) != NULL) {
994 switch (treat_path(dir, de, &path, baselen, simplify)) {
995 case path_recurse:
996 contents += read_directory_recursive(dir, path.buf,
997 path.len, 0,
998 simplify);
999 continue;
1000 case path_ignored:
1001 continue;
1002 case path_handled:
1003 break;
1005 contents++;
1006 if (check_only)
1007 break;
1008 dir_add_name(dir, path.buf, path.len);
1010 closedir(fdir);
1011 out:
1012 strbuf_release(&path);
1014 return contents;
1017 static int cmp_name(const void *p1, const void *p2)
1019 const struct dir_entry *e1 = *(const struct dir_entry **)p1;
1020 const struct dir_entry *e2 = *(const struct dir_entry **)p2;
1022 return cache_name_compare(e1->name, e1->len,
1023 e2->name, e2->len);
1026 static struct path_simplify *create_simplify(const char **pathspec)
1028 int nr, alloc = 0;
1029 struct path_simplify *simplify = NULL;
1031 if (!pathspec)
1032 return NULL;
1034 for (nr = 0 ; ; nr++) {
1035 const char *match;
1036 if (nr >= alloc) {
1037 alloc = alloc_nr(alloc);
1038 simplify = xrealloc(simplify, alloc * sizeof(*simplify));
1040 match = *pathspec++;
1041 if (!match)
1042 break;
1043 simplify[nr].path = match;
1044 simplify[nr].len = simple_length(match);
1046 simplify[nr].path = NULL;
1047 simplify[nr].len = 0;
1048 return simplify;
1051 static void free_simplify(struct path_simplify *simplify)
1053 free(simplify);
1056 static int treat_leading_path(struct dir_struct *dir,
1057 const char *path, int len,
1058 const struct path_simplify *simplify)
1060 struct strbuf sb = STRBUF_INIT;
1061 int baselen, rc = 0;
1062 const char *cp;
1064 while (len && path[len - 1] == '/')
1065 len--;
1066 if (!len)
1067 return 1;
1068 baselen = 0;
1069 while (1) {
1070 cp = path + baselen + !!baselen;
1071 cp = memchr(cp, '/', path + len - cp);
1072 if (!cp)
1073 baselen = len;
1074 else
1075 baselen = cp - path;
1076 strbuf_setlen(&sb, 0);
1077 strbuf_add(&sb, path, baselen);
1078 if (!is_directory(sb.buf))
1079 break;
1080 if (simplify_away(sb.buf, sb.len, simplify))
1081 break;
1082 if (treat_one_path(dir, &sb, simplify,
1083 DT_DIR, NULL) == path_ignored)
1084 break; /* do not recurse into it */
1085 if (len <= baselen) {
1086 rc = 1;
1087 break; /* finished checking */
1090 strbuf_release(&sb);
1091 return rc;
1094 int read_directory(struct dir_struct *dir, const char *path, int len, const char **pathspec)
1096 struct path_simplify *simplify;
1098 if (has_symlink_leading_path(path, len))
1099 return dir->nr;
1101 simplify = create_simplify(pathspec);
1102 if (!len || treat_leading_path(dir, path, len, simplify))
1103 read_directory_recursive(dir, path, len, 0, simplify);
1104 free_simplify(simplify);
1105 qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name);
1106 qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name);
1107 return dir->nr;
1110 int file_exists(const char *f)
1112 struct stat sb;
1113 return lstat(f, &sb) == 0;
1117 * Given two normalized paths (a trailing slash is ok), if subdir is
1118 * outside dir, return -1. Otherwise return the offset in subdir that
1119 * can be used as relative path to dir.
1121 int dir_inside_of(const char *subdir, const char *dir)
1123 int offset = 0;
1125 assert(dir && subdir && *dir && *subdir);
1127 while (*dir && *subdir && *dir == *subdir) {
1128 dir++;
1129 subdir++;
1130 offset++;
1133 /* hel[p]/me vs hel[l]/yeah */
1134 if (*dir && *subdir)
1135 return -1;
1137 if (!*subdir)
1138 return !*dir ? offset : -1; /* same dir */
1140 /* foo/[b]ar vs foo/[] */
1141 if (is_dir_sep(dir[-1]))
1142 return is_dir_sep(subdir[-1]) ? offset : -1;
1144 /* foo[/]bar vs foo[] */
1145 return is_dir_sep(*subdir) ? offset + 1 : -1;
1148 int is_inside_dir(const char *dir)
1150 char cwd[PATH_MAX];
1151 if (!dir)
1152 return 0;
1153 if (!getcwd(cwd, sizeof(cwd)))
1154 die_errno("can't find the current directory");
1155 return dir_inside_of(cwd, dir) >= 0;
1158 int is_empty_dir(const char *path)
1160 DIR *dir = opendir(path);
1161 struct dirent *e;
1162 int ret = 1;
1164 if (!dir)
1165 return 0;
1167 while ((e = readdir(dir)) != NULL)
1168 if (!is_dot_or_dotdot(e->d_name)) {
1169 ret = 0;
1170 break;
1173 closedir(dir);
1174 return ret;
1177 static int remove_dir_recurse(struct strbuf *path, int flag, int *kept_up)
1179 DIR *dir;
1180 struct dirent *e;
1181 int ret = 0, original_len = path->len, len, kept_down = 0;
1182 int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY);
1183 int keep_toplevel = (flag & REMOVE_DIR_KEEP_TOPLEVEL);
1184 unsigned char submodule_head[20];
1186 if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) &&
1187 !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) {
1188 /* Do not descend and nuke a nested git work tree. */
1189 if (kept_up)
1190 *kept_up = 1;
1191 return 0;
1194 flag &= ~REMOVE_DIR_KEEP_TOPLEVEL;
1195 dir = opendir(path->buf);
1196 if (!dir) {
1197 /* an empty dir could be removed even if it is unreadble */
1198 if (!keep_toplevel)
1199 return rmdir(path->buf);
1200 else
1201 return -1;
1203 if (path->buf[original_len - 1] != '/')
1204 strbuf_addch(path, '/');
1206 len = path->len;
1207 while ((e = readdir(dir)) != NULL) {
1208 struct stat st;
1209 if (is_dot_or_dotdot(e->d_name))
1210 continue;
1212 strbuf_setlen(path, len);
1213 strbuf_addstr(path, e->d_name);
1214 if (lstat(path->buf, &st))
1215 ; /* fall thru */
1216 else if (S_ISDIR(st.st_mode)) {
1217 if (!remove_dir_recurse(path, flag, &kept_down))
1218 continue; /* happy */
1219 } else if (!only_empty && !unlink(path->buf))
1220 continue; /* happy, too */
1222 /* path too long, stat fails, or non-directory still exists */
1223 ret = -1;
1224 break;
1226 closedir(dir);
1228 strbuf_setlen(path, original_len);
1229 if (!ret && !keep_toplevel && !kept_down)
1230 ret = rmdir(path->buf);
1231 else if (kept_up)
1233 * report the uplevel that it is not an error that we
1234 * did not rmdir() our directory.
1236 *kept_up = !ret;
1237 return ret;
1240 int remove_dir_recursively(struct strbuf *path, int flag)
1242 return remove_dir_recurse(path, flag, NULL);
1245 void setup_standard_excludes(struct dir_struct *dir)
1247 const char *path;
1249 dir->exclude_per_dir = ".gitignore";
1250 path = git_path("info/exclude");
1251 if (!access(path, R_OK))
1252 add_excludes_from_file(dir, path);
1253 if (excludes_file && !access(excludes_file, R_OK))
1254 add_excludes_from_file(dir, excludes_file);
1257 int remove_path(const char *name)
1259 char *slash;
1261 if (unlink(name) && errno != ENOENT)
1262 return -1;
1264 slash = strrchr(name, '/');
1265 if (slash) {
1266 char *dirs = xstrdup(name);
1267 slash = dirs + (slash - name);
1268 do {
1269 *slash = '\0';
1270 } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/')));
1271 free(dirs);
1273 return 0;
1276 static int pathspec_item_cmp(const void *a_, const void *b_)
1278 struct pathspec_item *a, *b;
1280 a = (struct pathspec_item *)a_;
1281 b = (struct pathspec_item *)b_;
1282 return strcmp(a->match, b->match);
1285 int init_pathspec(struct pathspec *pathspec, const char **paths)
1287 const char **p = paths;
1288 int i;
1290 memset(pathspec, 0, sizeof(*pathspec));
1291 if (!p)
1292 return 0;
1293 while (*p)
1294 p++;
1295 pathspec->raw = paths;
1296 pathspec->nr = p - paths;
1297 if (!pathspec->nr)
1298 return 0;
1300 pathspec->items = xmalloc(sizeof(struct pathspec_item)*pathspec->nr);
1301 for (i = 0; i < pathspec->nr; i++) {
1302 struct pathspec_item *item = pathspec->items+i;
1303 const char *path = paths[i];
1305 item->match = path;
1306 item->len = strlen(path);
1307 item->use_wildcard = !no_wildcard(path);
1308 if (item->use_wildcard)
1309 pathspec->has_wildcard = 1;
1312 qsort(pathspec->items, pathspec->nr,
1313 sizeof(struct pathspec_item), pathspec_item_cmp);
1315 return 0;
1318 void free_pathspec(struct pathspec *pathspec)
1320 free(pathspec->items);
1321 pathspec->items = NULL;