Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This handles recursive filename detection with exclude |
| 3 | * files, index knowledge etc.. |
| 4 | * |
| 5 | * Copyright (C) Linus Torvalds, 2005-2006 |
| 6 | * Junio Hamano, 2005-2006 |
| 7 | */ |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 8 | #include "cache.h" |
| 9 | #include "dir.h" |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 10 | #include "refs.h" |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 11 | |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 12 | struct path_simplify { |
| 13 | int len; |
| 14 | const char *path; |
| 15 | }; |
| 16 | |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 17 | static int read_directory_recursive(struct dir_struct *dir, const char *path, int len, |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 18 | int check_only, const struct path_simplify *simplify); |
Linus Torvalds | caa6b78 | 2009-07-08 19:31:49 -0700 | [diff] [blame] | 19 | static int get_dtype(struct dirent *de, const char *path, int len); |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 20 | |
Joshua Jensen | 8cf2a84 | 2010-10-03 09:56:41 +0000 | [diff] [blame] | 21 | /* helper string functions with support for the ignore_case flag */ |
| 22 | int strcmp_icase(const char *a, const char *b) |
| 23 | { |
| 24 | return ignore_case ? strcasecmp(a, b) : strcmp(a, b); |
| 25 | } |
| 26 | |
| 27 | int strncmp_icase(const char *a, const char *b, size_t count) |
| 28 | { |
| 29 | return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count); |
| 30 | } |
| 31 | |
| 32 | int fnmatch_icase(const char *pattern, const char *string, int flags) |
| 33 | { |
| 34 | return fnmatch(pattern, string, flags | (ignore_case ? FNM_CASEFOLD : 0)); |
| 35 | } |
| 36 | |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 37 | static int common_prefix(const char **pathspec) |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 38 | { |
| 39 | const char *path, *slash, *next; |
| 40 | int prefix; |
| 41 | |
| 42 | if (!pathspec) |
| 43 | return 0; |
| 44 | |
| 45 | path = *pathspec; |
| 46 | slash = strrchr(path, '/'); |
| 47 | if (!slash) |
| 48 | return 0; |
| 49 | |
Junio C Hamano | 42f9852 | 2010-06-16 01:02:03 +0200 | [diff] [blame] | 50 | /* |
| 51 | * The first 'prefix' characters of 'path' are common leading |
| 52 | * path components among the pathspecs we have seen so far, |
| 53 | * including the trailing slash. |
| 54 | */ |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 55 | prefix = slash - path + 1; |
| 56 | while ((next = *++pathspec) != NULL) { |
Junio C Hamano | 42f9852 | 2010-06-16 01:02:03 +0200 | [diff] [blame] | 57 | int len, last_matching_slash = -1; |
| 58 | for (len = 0; len < prefix && next[len] == path[len]; len++) |
| 59 | if (next[len] == '/') |
| 60 | last_matching_slash = len; |
| 61 | if (len == prefix) |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 62 | continue; |
Junio C Hamano | 42f9852 | 2010-06-16 01:02:03 +0200 | [diff] [blame] | 63 | if (last_matching_slash < 0) |
| 64 | return 0; |
| 65 | prefix = last_matching_slash + 1; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 66 | } |
| 67 | return prefix; |
| 68 | } |
| 69 | |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 70 | int fill_directory(struct dir_struct *dir, const char **pathspec) |
| 71 | { |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 72 | const char *path; |
| 73 | int len; |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * Calculate common prefix for the pathspec, and |
| 77 | * use that to optimize the directory walk |
| 78 | */ |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 79 | len = common_prefix(pathspec); |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 80 | path = ""; |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 81 | |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 82 | if (len) |
| 83 | path = xmemdupz(*pathspec, len); |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 84 | |
| 85 | /* Read the directory and prune it */ |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 86 | read_directory(dir, path, len, pathspec); |
| 87 | return len; |
Linus Torvalds | 1d8842d | 2009-05-14 13:22:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Nguyễn Thái Ngọc Duy | bc96cc8 | 2010-12-15 22:02:44 +0700 | [diff] [blame] | 90 | int within_depth(const char *name, int namelen, |
| 91 | int depth, int max_depth) |
| 92 | { |
| 93 | const char *cp = name, *cpe = name + namelen; |
| 94 | |
| 95 | while (cp < cpe) { |
| 96 | if (*cp++ != '/') |
| 97 | continue; |
| 98 | depth++; |
| 99 | if (depth > max_depth) |
| 100 | return 0; |
| 101 | } |
| 102 | return 1; |
| 103 | } |
| 104 | |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 105 | /* |
Allan Caffee | 2c5b011 | 2009-05-04 13:37:30 -0400 | [diff] [blame] | 106 | * Does 'match' match the given name? |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 107 | * A match is found if |
| 108 | * |
| 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'. |
| 112 | * |
| 113 | * and the return value tells which case it was. |
| 114 | * |
| 115 | * It returns 0 when there is no match. |
| 116 | */ |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 117 | static int match_one(const char *match, const char *name, int namelen) |
| 118 | { |
| 119 | int matchlen; |
| 120 | |
| 121 | /* If the match was just the prefix, we matched */ |
Linus Torvalds | 88ea811 | 2008-04-19 14:22:38 -0700 | [diff] [blame] | 122 | if (!*match) |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 123 | return MATCHED_RECURSIVELY; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 124 | |
Joshua Jensen | 21444f1 | 2010-10-03 09:56:44 +0000 | [diff] [blame] | 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--; |
| 136 | } |
| 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--; |
| 148 | } |
Linus Torvalds | 88ea811 | 2008-04-19 14:22:38 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 152 | /* |
| 153 | * If we don't match the matchstring exactly, |
| 154 | * we need to match by fnmatch |
| 155 | */ |
Linus Torvalds | 88ea811 | 2008-04-19 14:22:38 -0700 | [diff] [blame] | 156 | matchlen = strlen(match); |
Joshua Jensen | 21444f1 | 2010-10-03 09:56:44 +0000 | [diff] [blame] | 157 | if (strncmp_icase(match, name, matchlen)) |
| 158 | return !fnmatch_icase(match, name, 0) ? MATCHED_FNMATCH : 0; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 159 | |
Shawn Bohrer | f2d0df7 | 2008-04-14 22:14:09 -0500 | [diff] [blame] | 160 | if (namelen == matchlen) |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 161 | return MATCHED_EXACTLY; |
| 162 | if (match[matchlen-1] == '/' || name[matchlen] == '/') |
| 163 | return MATCHED_RECURSIVELY; |
| 164 | return 0; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 167 | /* |
| 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. |
| 174 | */ |
Clemens Buchacher | 0b50922 | 2009-01-14 15:54:35 +0100 | [diff] [blame] | 175 | int match_pathspec(const char **pathspec, const char *name, int namelen, |
| 176 | int prefix, char *seen) |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 177 | { |
Clemens Buchacher | 0b50922 | 2009-01-14 15:54:35 +0100 | [diff] [blame] | 178 | int i, retval = 0; |
| 179 | |
| 180 | if (!pathspec) |
| 181 | return 1; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 182 | |
| 183 | name += prefix; |
| 184 | namelen -= prefix; |
| 185 | |
Clemens Buchacher | 0b50922 | 2009-01-14 15:54:35 +0100 | [diff] [blame] | 186 | for (i = 0; pathspec[i] != NULL; i++) { |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 187 | int how; |
Clemens Buchacher | 0b50922 | 2009-01-14 15:54:35 +0100 | [diff] [blame] | 188 | const char *match = pathspec[i] + prefix; |
| 189 | if (seen && seen[i] == MATCHED_EXACTLY) |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 190 | continue; |
Junio C Hamano | e813d50 | 2006-12-25 03:09:52 -0800 | [diff] [blame] | 191 | how = match_one(match, name, namelen); |
| 192 | if (how) { |
| 193 | if (retval < how) |
| 194 | retval = how; |
Clemens Buchacher | 0b50922 | 2009-01-14 15:54:35 +0100 | [diff] [blame] | 195 | if (seen && seen[i] < how) |
| 196 | seen[i] = how; |
Linus Torvalds | 3c6a370 | 2006-05-19 16:07:51 -0700 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | return retval; |
| 200 | } |
| 201 | |
Nguyễn Thái Ngọc Duy | 61cf282 | 2010-12-15 22:02:48 +0700 | [diff] [blame] | 202 | /* |
| 203 | * Does 'match' match the given name? |
| 204 | * A match is found if |
| 205 | * |
| 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'. |
| 209 | * |
| 210 | * and the return value tells which case it was. |
| 211 | * |
| 212 | * It returns 0 when there is no match. |
| 213 | */ |
| 214 | static int match_pathspec_item(const struct pathspec_item *item, int prefix, |
| 215 | const char *name, int namelen) |
| 216 | { |
| 217 | /* name/namelen has prefix cut off by caller */ |
| 218 | const char *match = item->match + prefix; |
| 219 | int matchlen = item->len - prefix; |
| 220 | |
| 221 | /* If the match was just the prefix, we matched */ |
| 222 | if (!*match) |
| 223 | return MATCHED_RECURSIVELY; |
| 224 | |
| 225 | if (matchlen <= namelen && !strncmp(match, name, matchlen)) { |
| 226 | if (matchlen == namelen) |
| 227 | return MATCHED_EXACTLY; |
| 228 | |
| 229 | if (match[matchlen-1] == '/' || name[matchlen] == '/') |
| 230 | return MATCHED_RECURSIVELY; |
| 231 | } |
| 232 | |
Junio C Hamano | 33e0f62 | 2011-04-05 09:30:36 -0700 | [diff] [blame] | 233 | if (item->use_wildcard && !fnmatch(match, name, 0)) |
Nguyễn Thái Ngọc Duy | 61cf282 | 2010-12-15 22:02:48 +0700 | [diff] [blame] | 234 | return MATCHED_FNMATCH; |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | /* |
| 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. |
| 246 | */ |
| 247 | int match_pathspec_depth(const struct pathspec *ps, |
| 248 | const char *name, int namelen, |
| 249 | int prefix, char *seen) |
| 250 | { |
| 251 | int i, retval = 0; |
| 252 | |
| 253 | if (!ps->nr) { |
| 254 | if (!ps->recursive || ps->max_depth == -1) |
| 255 | return MATCHED_RECURSIVELY; |
| 256 | |
| 257 | if (within_depth(name, namelen, 0, ps->max_depth)) |
| 258 | return MATCHED_EXACTLY; |
| 259 | else |
| 260 | return 0; |
| 261 | } |
| 262 | |
| 263 | name += prefix; |
| 264 | namelen -= prefix; |
| 265 | |
| 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; |
| 280 | } |
| 281 | if (how) { |
| 282 | if (retval < how) |
| 283 | retval = how; |
| 284 | if (seen && seen[i] < how) |
| 285 | seen[i] = how; |
| 286 | } |
| 287 | } |
| 288 | return retval; |
| 289 | } |
| 290 | |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 291 | static int no_wildcard(const char *string) |
| 292 | { |
Finn Arne Gangstad | dd482ee | 2009-02-10 15:20:17 +0100 | [diff] [blame] | 293 | return string[strcspn(string, "*?[{\\")] == '\0'; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 294 | } |
| 295 | |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 296 | void add_exclude(const char *string, const char *base, |
| 297 | int baselen, struct exclude_list *which) |
| 298 | { |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 299 | struct exclude *x; |
| 300 | size_t len; |
| 301 | int to_exclude = 1; |
| 302 | int flags = 0; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 303 | |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 304 | if (*string == '!') { |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 305 | to_exclude = 0; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 306 | string++; |
| 307 | } |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 308 | len = strlen(string); |
| 309 | if (len && string[len - 1] == '/') { |
| 310 | char *s; |
| 311 | x = xmalloc(sizeof(*x) + len); |
Felipe Contreras | 4b25d09 | 2009-05-01 12:06:36 +0300 | [diff] [blame] | 312 | s = (char *)(x+1); |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 313 | memcpy(s, string, len - 1); |
| 314 | s[len - 1] = '\0'; |
| 315 | string = s; |
| 316 | x->pattern = s; |
| 317 | flags = EXC_FLAG_MUSTBEDIR; |
| 318 | } else { |
| 319 | x = xmalloc(sizeof(*x)); |
| 320 | x->pattern = string; |
| 321 | } |
| 322 | x->to_exclude = to_exclude; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 323 | x->patternlen = strlen(string); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 324 | x->base = base; |
| 325 | x->baselen = baselen; |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 326 | x->flags = flags; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 327 | if (!strchr(string, '/')) |
| 328 | x->flags |= EXC_FLAG_NODIR; |
| 329 | if (no_wildcard(string)) |
| 330 | x->flags |= EXC_FLAG_NOWILDCARD; |
| 331 | if (*string == '*' && no_wildcard(string+1)) |
| 332 | x->flags |= EXC_FLAG_ENDSWITH; |
Junio C Hamano | 686a4a0 | 2007-11-29 01:11:46 -0800 | [diff] [blame] | 333 | ALLOC_GROW(which->excludes, which->nr + 1, which->alloc); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 334 | which->excludes[which->nr++] = x; |
| 335 | } |
| 336 | |
Nguyễn Thái Ngọc Duy | c28b3d6 | 2009-08-20 20:47:01 +0700 | [diff] [blame] | 337 | static void *read_skip_worktree_file_from_index(const char *path, size_t *size) |
| 338 | { |
| 339 | int pos, len; |
| 340 | unsigned long sz; |
| 341 | enum object_type type; |
| 342 | void *data; |
| 343 | struct index_state *istate = &the_index; |
| 344 | |
| 345 | len = strlen(path); |
| 346 | pos = index_name_pos(istate, path, len); |
| 347 | if (pos < 0) |
| 348 | return NULL; |
| 349 | if (!ce_skip_worktree(istate->cache[pos])) |
| 350 | return NULL; |
| 351 | data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz); |
| 352 | if (!data || type != OBJ_BLOB) { |
| 353 | free(data); |
| 354 | return NULL; |
| 355 | } |
| 356 | *size = xsize_t(sz); |
| 357 | return data; |
| 358 | } |
| 359 | |
Nguyễn Thái Ngọc Duy | 0fd0e24 | 2010-11-27 01:17:44 +0700 | [diff] [blame] | 360 | void free_excludes(struct exclude_list *el) |
| 361 | { |
| 362 | int i; |
| 363 | |
| 364 | for (i = 0; i < el->nr; i++) |
| 365 | free(el->excludes[i]); |
| 366 | free(el->excludes); |
| 367 | |
| 368 | el->nr = 0; |
| 369 | el->excludes = NULL; |
| 370 | } |
| 371 | |
Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 20:47:04 +0700 | [diff] [blame] | 372 | int add_excludes_from_file_to_list(const char *fname, |
| 373 | const char *base, |
| 374 | int baselen, |
| 375 | char **buf_p, |
| 376 | struct exclude_list *which, |
| 377 | int check_index) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 378 | { |
Jonas Fonseca | c470701 | 2006-08-28 01:55:46 +0200 | [diff] [blame] | 379 | struct stat st; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 380 | int fd, i; |
Pat Notz | 9d14017 | 2010-09-16 14:53:22 -0600 | [diff] [blame] | 381 | size_t size = 0; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 382 | char *buf, *entry; |
| 383 | |
| 384 | fd = open(fname, O_RDONLY); |
Nguyễn Thái Ngọc Duy | c28b3d6 | 2009-08-20 20:47:01 +0700 | [diff] [blame] | 385 | if (fd < 0 || fstat(fd, &st) < 0) { |
| 386 | if (0 <= fd) |
| 387 | close(fd); |
| 388 | if (!check_index || |
| 389 | (buf = read_skip_worktree_file_from_index(fname, &size)) == NULL) |
| 390 | return -1; |
Nguyễn Thái Ngọc Duy | 45d76f1 | 2010-01-20 21:09:16 +0700 | [diff] [blame] | 391 | if (size == 0) { |
| 392 | free(buf); |
| 393 | return 0; |
| 394 | } |
| 395 | if (buf[size-1] != '\n') { |
| 396 | buf = xrealloc(buf, size+1); |
| 397 | buf[size++] = '\n'; |
| 398 | } |
Nguyễn Thái Ngọc Duy | c28b3d6 | 2009-08-20 20:47:01 +0700 | [diff] [blame] | 399 | } |
| 400 | else { |
| 401 | size = xsize_t(st.st_size); |
| 402 | if (size == 0) { |
| 403 | close(fd); |
| 404 | return 0; |
| 405 | } |
Nguyễn Thái Ngọc Duy | 45d76f1 | 2010-01-20 21:09:16 +0700 | [diff] [blame] | 406 | buf = xmalloc(size+1); |
Nguyễn Thái Ngọc Duy | c28b3d6 | 2009-08-20 20:47:01 +0700 | [diff] [blame] | 407 | if (read_in_full(fd, buf, size) != size) { |
Nguyễn Thái Ngọc Duy | 45d76f1 | 2010-01-20 21:09:16 +0700 | [diff] [blame] | 408 | free(buf); |
Nguyễn Thái Ngọc Duy | c28b3d6 | 2009-08-20 20:47:01 +0700 | [diff] [blame] | 409 | close(fd); |
| 410 | return -1; |
| 411 | } |
Nguyễn Thái Ngọc Duy | 45d76f1 | 2010-01-20 21:09:16 +0700 | [diff] [blame] | 412 | buf[size++] = '\n'; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 413 | close(fd); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 414 | } |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 415 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 416 | if (buf_p) |
| 417 | *buf_p = buf; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 418 | entry = buf; |
Nguyễn Thái Ngọc Duy | 45d76f1 | 2010-01-20 21:09:16 +0700 | [diff] [blame] | 419 | for (i = 0; i < size; i++) { |
| 420 | if (buf[i] == '\n') { |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 421 | if (entry != buf + i && entry[0] != '#') { |
| 422 | buf[i - (i && buf[i-1] == '\r')] = 0; |
| 423 | add_exclude(entry, base, baselen, which); |
| 424 | } |
| 425 | entry = buf + i + 1; |
| 426 | } |
| 427 | } |
| 428 | return 0; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | void add_excludes_from_file(struct dir_struct *dir, const char *fname) |
| 432 | { |
Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 20:47:04 +0700 | [diff] [blame] | 433 | if (add_excludes_from_file_to_list(fname, "", 0, NULL, |
| 434 | &dir->exclude_list[EXC_FILE], 0) < 0) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 435 | die("cannot use %s as an exclude file", fname); |
| 436 | } |
| 437 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 438 | static void prep_exclude(struct dir_struct *dir, const char *base, int baselen) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 439 | { |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 440 | struct exclude_list *el; |
| 441 | struct exclude_stack *stk = NULL; |
| 442 | int current; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 443 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 444 | if ((!dir->exclude_per_dir) || |
| 445 | (baselen + strlen(dir->exclude_per_dir) >= PATH_MAX)) |
| 446 | return; /* too long a path -- ignore */ |
| 447 | |
| 448 | /* Pop the ones that are not the prefix of the path being checked. */ |
| 449 | el = &dir->exclude_list[EXC_DIRS]; |
| 450 | while ((stk = dir->exclude_stack) != NULL) { |
| 451 | if (stk->baselen <= baselen && |
| 452 | !strncmp(dir->basebuf, base, stk->baselen)) |
| 453 | break; |
| 454 | dir->exclude_stack = stk->prev; |
| 455 | while (stk->exclude_ix < el->nr) |
| 456 | free(el->excludes[--el->nr]); |
| 457 | free(stk->filebuf); |
| 458 | free(stk); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 459 | } |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 460 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 461 | /* Read from the parent directories and push them down. */ |
| 462 | current = stk ? stk->baselen : -1; |
| 463 | while (current < baselen) { |
| 464 | struct exclude_stack *stk = xcalloc(1, sizeof(*stk)); |
| 465 | const char *cp; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 466 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 467 | if (current < 0) { |
| 468 | cp = base; |
| 469 | current = 0; |
| 470 | } |
| 471 | else { |
| 472 | cp = strchr(base + current + 1, '/'); |
| 473 | if (!cp) |
| 474 | die("oops in prep_exclude"); |
| 475 | cp++; |
| 476 | } |
| 477 | stk->prev = dir->exclude_stack; |
| 478 | stk->baselen = cp - base; |
| 479 | stk->exclude_ix = el->nr; |
| 480 | memcpy(dir->basebuf + current, base + current, |
| 481 | stk->baselen - current); |
| 482 | strcpy(dir->basebuf + stk->baselen, dir->exclude_per_dir); |
Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 20:47:04 +0700 | [diff] [blame] | 483 | add_excludes_from_file_to_list(dir->basebuf, |
| 484 | dir->basebuf, stk->baselen, |
| 485 | &stk->filebuf, el, 1); |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 486 | dir->exclude_stack = stk; |
| 487 | current = stk->baselen; |
| 488 | } |
| 489 | dir->basebuf[baselen] = '\0'; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 490 | } |
| 491 | |
Allan Caffee | 2c5b011 | 2009-05-04 13:37:30 -0400 | [diff] [blame] | 492 | /* Scan the list and let the last match determine the fate. |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 493 | * Return 1 for exclude, 0 for include and -1 for undecided. |
| 494 | */ |
Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 20:47:04 +0700 | [diff] [blame] | 495 | int excluded_from_list(const char *pathname, |
| 496 | int pathlen, const char *basename, int *dtype, |
| 497 | struct exclude_list *el) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 498 | { |
| 499 | int i; |
| 500 | |
| 501 | if (el->nr) { |
| 502 | for (i = el->nr - 1; 0 <= i; i--) { |
| 503 | struct exclude *x = el->excludes[i]; |
| 504 | const char *exclude = x->pattern; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 505 | int to_exclude = x->to_exclude; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 506 | |
Junio C Hamano | 6831a88 | 2008-01-31 20:23:25 -0800 | [diff] [blame] | 507 | if (x->flags & EXC_FLAG_MUSTBEDIR) { |
| 508 | if (*dtype == DT_UNKNOWN) |
Linus Torvalds | caa6b78 | 2009-07-08 19:31:49 -0700 | [diff] [blame] | 509 | *dtype = get_dtype(NULL, pathname, pathlen); |
Junio C Hamano | 6831a88 | 2008-01-31 20:23:25 -0800 | [diff] [blame] | 510 | if (*dtype != DT_DIR) |
| 511 | continue; |
| 512 | } |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 513 | |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 514 | if (x->flags & EXC_FLAG_NODIR) { |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 515 | /* match basename */ |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 516 | if (x->flags & EXC_FLAG_NOWILDCARD) { |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 517 | if (!strcmp_icase(exclude, basename)) |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 518 | return to_exclude; |
| 519 | } else if (x->flags & EXC_FLAG_ENDSWITH) { |
| 520 | if (x->patternlen - 1 <= pathlen && |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 521 | !strcmp_icase(exclude + 1, pathname + pathlen - x->patternlen + 1)) |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 522 | return to_exclude; |
| 523 | } else { |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 524 | if (fnmatch_icase(exclude, basename, 0) == 0) |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 525 | return to_exclude; |
| 526 | } |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 527 | } |
| 528 | else { |
| 529 | /* match with FNM_PATHNAME: |
| 530 | * exclude has base (baselen long) implicitly |
| 531 | * in front of it. |
| 532 | */ |
| 533 | int baselen = x->baselen; |
| 534 | if (*exclude == '/') |
| 535 | exclude++; |
| 536 | |
| 537 | if (pathlen < baselen || |
| 538 | (baselen && pathname[baselen-1] != '/') || |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 539 | strncmp_icase(pathname, x->base, baselen)) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 540 | continue; |
| 541 | |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 542 | if (x->flags & EXC_FLAG_NOWILDCARD) { |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 543 | if (!strcmp_icase(exclude, pathname + baselen)) |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 544 | return to_exclude; |
| 545 | } else { |
Joshua Jensen | 10d4b02 | 2010-10-03 09:56:42 +0000 | [diff] [blame] | 546 | if (fnmatch_icase(exclude, pathname+baselen, |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 547 | FNM_PATHNAME) == 0) |
| 548 | return to_exclude; |
| 549 | } |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 550 | } |
| 551 | } |
| 552 | } |
| 553 | return -1; /* undecided */ |
| 554 | } |
| 555 | |
Junio C Hamano | 6831a88 | 2008-01-31 20:23:25 -0800 | [diff] [blame] | 556 | int excluded(struct dir_struct *dir, const char *pathname, int *dtype_p) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 557 | { |
| 558 | int pathlen = strlen(pathname); |
| 559 | int st; |
Lars Knoll | 68492fc | 2007-10-28 21:27:13 +0100 | [diff] [blame] | 560 | const char *basename = strrchr(pathname, '/'); |
| 561 | basename = (basename) ? basename+1 : pathname; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 562 | |
Junio C Hamano | 63d285c | 2007-11-29 02:17:44 -0800 | [diff] [blame] | 563 | prep_exclude(dir, pathname, basename-pathname); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 564 | for (st = EXC_CMDL; st <= EXC_FILE; st++) { |
Nguyễn Thái Ngọc Duy | cb09753 | 2009-08-20 20:47:04 +0700 | [diff] [blame] | 565 | switch (excluded_from_list(pathname, pathlen, basename, |
| 566 | dtype_p, &dir->exclude_list[st])) { |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 567 | case 0: |
| 568 | return 0; |
| 569 | case 1: |
| 570 | return 1; |
| 571 | } |
| 572 | } |
| 573 | return 0; |
| 574 | } |
| 575 | |
Junio C Hamano | f3fa183 | 2007-11-08 15:35:32 -0800 | [diff] [blame] | 576 | static struct dir_entry *dir_entry_new(const char *pathname, int len) |
| 577 | { |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 578 | struct dir_entry *ent; |
| 579 | |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 580 | ent = xmalloc(sizeof(*ent) + len + 1); |
| 581 | ent->len = len; |
| 582 | memcpy(ent->name, pathname, len); |
| 583 | ent->name[len] = 0; |
Junio C Hamano | 4d06f8a | 2006-12-29 11:01:31 -0800 | [diff] [blame] | 584 | return ent; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 585 | } |
| 586 | |
Nanako Shiraishi | 159b321 | 2008-10-02 19:14:23 +0900 | [diff] [blame] | 587 | static struct dir_entry *dir_add_name(struct dir_struct *dir, const char *pathname, int len) |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 588 | { |
Linus Torvalds | 0a9b88b | 2008-03-21 16:52:46 -0700 | [diff] [blame] | 589 | if (cache_name_exists(pathname, len, ignore_case)) |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 590 | return NULL; |
| 591 | |
Jeff King | 25fd2f7 | 2007-06-16 18:43:40 -0400 | [diff] [blame] | 592 | ALLOC_GROW(dir->entries, dir->nr+1, dir->alloc); |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 593 | return dir->entries[dir->nr++] = dir_entry_new(pathname, len); |
| 594 | } |
| 595 | |
Jens Lehmann | 108da0d | 2010-07-10 00:18:38 +0200 | [diff] [blame] | 596 | struct dir_entry *dir_add_ignored(struct dir_struct *dir, const char *pathname, int len) |
Jeff King | 2abd31b | 2007-06-11 09:39:50 -0400 | [diff] [blame] | 597 | { |
Jeff King | 6e4f981 | 2009-05-30 17:54:18 -0400 | [diff] [blame] | 598 | if (!cache_name_is_other(pathname, len)) |
Jeff King | 2abd31b | 2007-06-11 09:39:50 -0400 | [diff] [blame] | 599 | return NULL; |
| 600 | |
Jeff King | 25fd2f7 | 2007-06-16 18:43:40 -0400 | [diff] [blame] | 601 | ALLOC_GROW(dir->ignored, dir->ignored_nr+1, dir->ignored_alloc); |
Jeff King | 2abd31b | 2007-06-11 09:39:50 -0400 | [diff] [blame] | 602 | return dir->ignored[dir->ignored_nr++] = dir_entry_new(pathname, len); |
| 603 | } |
| 604 | |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 605 | enum exist_status { |
| 606 | index_nonexistent = 0, |
| 607 | index_directory, |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 608 | index_gitdir |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 609 | }; |
| 610 | |
| 611 | /* |
Joshua Jensen | 5102c61 | 2010-10-03 09:56:43 +0000 | [diff] [blame] | 612 | * Do not use the alphabetically stored index to look up |
| 613 | * the directory name; instead, use the case insensitive |
| 614 | * name hash. |
| 615 | */ |
| 616 | static enum exist_status directory_exists_in_index_icase(const char *dirname, int len) |
| 617 | { |
| 618 | struct cache_entry *ce = index_name_exists(&the_index, dirname, len + 1, ignore_case); |
| 619 | unsigned char endchar; |
| 620 | |
| 621 | if (!ce) |
| 622 | return index_nonexistent; |
| 623 | endchar = ce->name[len]; |
| 624 | |
| 625 | /* |
| 626 | * The cache_entry structure returned will contain this dirname |
| 627 | * and possibly additional path components. |
| 628 | */ |
| 629 | if (endchar == '/') |
| 630 | return index_directory; |
| 631 | |
| 632 | /* |
| 633 | * If there are no additional path components, then this cache_entry |
| 634 | * represents a submodule. Submodules, despite being directories, |
| 635 | * are stored in the cache without a closing slash. |
| 636 | */ |
| 637 | if (!endchar && S_ISGITLINK(ce->ce_mode)) |
| 638 | return index_gitdir; |
| 639 | |
| 640 | /* This should never be hit, but it exists just in case. */ |
| 641 | return index_nonexistent; |
| 642 | } |
| 643 | |
| 644 | /* |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 645 | * The index sorts alphabetically by entry name, which |
| 646 | * means that a gitlink sorts as '\0' at the end, while |
| 647 | * a directory (which is defined not as an entry, but as |
| 648 | * the files it contains) will sort with the '/' at the |
| 649 | * end. |
| 650 | */ |
| 651 | static enum exist_status directory_exists_in_index(const char *dirname, int len) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 652 | { |
Joshua Jensen | 5102c61 | 2010-10-03 09:56:43 +0000 | [diff] [blame] | 653 | int pos; |
| 654 | |
| 655 | if (ignore_case) |
| 656 | return directory_exists_in_index_icase(dirname, len); |
| 657 | |
| 658 | pos = cache_name_pos(dirname, len); |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 659 | if (pos < 0) |
| 660 | pos = -pos-1; |
| 661 | while (pos < active_nr) { |
| 662 | struct cache_entry *ce = active_cache[pos++]; |
| 663 | unsigned char endchar; |
| 664 | |
| 665 | if (strncmp(ce->name, dirname, len)) |
| 666 | break; |
| 667 | endchar = ce->name[len]; |
| 668 | if (endchar > '/') |
| 669 | break; |
| 670 | if (endchar == '/') |
| 671 | return index_directory; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 672 | if (!endchar && S_ISGITLINK(ce->ce_mode)) |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 673 | return index_gitdir; |
| 674 | } |
| 675 | return index_nonexistent; |
| 676 | } |
| 677 | |
| 678 | /* |
| 679 | * When we find a directory when traversing the filesystem, we |
| 680 | * have three distinct cases: |
| 681 | * |
| 682 | * - ignore it |
| 683 | * - see it as a directory |
| 684 | * - recurse into it |
| 685 | * |
| 686 | * and which one we choose depends on a combination of existing |
| 687 | * git index contents and the flags passed into the directory |
| 688 | * traversal routine. |
| 689 | * |
| 690 | * Case 1: If we *already* have entries in the index under that |
| 691 | * directory name, we always recurse into the directory to see |
| 692 | * all the files. |
| 693 | * |
| 694 | * Case 2: If we *already* have that directory name as a gitlink, |
| 695 | * we always continue to see it as a gitlink, regardless of whether |
| 696 | * there is an actual git directory there or not (it might not |
| 697 | * be checked out as a subproject!) |
| 698 | * |
| 699 | * Case 3: if we didn't have it in the index previously, we |
| 700 | * have a few sub-cases: |
| 701 | * |
| 702 | * (a) if "show_other_directories" is true, we show it as |
| 703 | * just a directory, unless "hide_empty_directories" is |
| 704 | * also true and the directory is empty, in which case |
| 705 | * we just ignore it entirely. |
| 706 | * (b) if it looks like a git directory, and we don't have |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 707 | * 'no_gitlinks' set we treat it as a gitlink, and show it |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 708 | * as a directory. |
| 709 | * (c) otherwise, we recurse into it. |
| 710 | */ |
| 711 | enum directory_treatment { |
| 712 | show_directory, |
| 713 | ignore_directory, |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 714 | recurse_into_directory |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 715 | }; |
| 716 | |
| 717 | static enum directory_treatment treat_directory(struct dir_struct *dir, |
| 718 | const char *dirname, int len, |
| 719 | const struct path_simplify *simplify) |
| 720 | { |
| 721 | /* The "len-1" is to strip the final '/' */ |
| 722 | switch (directory_exists_in_index(dirname, len-1)) { |
| 723 | case index_directory: |
| 724 | return recurse_into_directory; |
| 725 | |
| 726 | case index_gitdir: |
Johannes Schindelin | 7c4c97c | 2009-02-16 13:20:25 +0100 | [diff] [blame] | 727 | if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES) |
Linus Torvalds | ab22aed | 2007-04-12 14:32:21 -0700 | [diff] [blame] | 728 | return ignore_directory; |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 729 | return show_directory; |
| 730 | |
| 731 | case index_nonexistent: |
Johannes Schindelin | 7c4c97c | 2009-02-16 13:20:25 +0100 | [diff] [blame] | 732 | if (dir->flags & DIR_SHOW_OTHER_DIRECTORIES) |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 733 | break; |
Johannes Schindelin | 7c4c97c | 2009-02-16 13:20:25 +0100 | [diff] [blame] | 734 | if (!(dir->flags & DIR_NO_GITLINKS)) { |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 735 | unsigned char sha1[20]; |
| 736 | if (resolve_gitlink_ref(dirname, "HEAD", sha1) == 0) |
| 737 | return show_directory; |
| 738 | } |
| 739 | return recurse_into_directory; |
| 740 | } |
| 741 | |
| 742 | /* This is the "show_other_directories" case */ |
Johannes Schindelin | 7c4c97c | 2009-02-16 13:20:25 +0100 | [diff] [blame] | 743 | if (!(dir->flags & DIR_HIDE_EMPTY_DIRECTORIES)) |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 744 | return show_directory; |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 745 | if (!read_directory_recursive(dir, dirname, len, 1, simplify)) |
Linus Torvalds | 0959525 | 2007-04-11 14:49:44 -0700 | [diff] [blame] | 746 | return ignore_directory; |
| 747 | return show_directory; |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | /* |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 751 | * This is an inexact early pruning of any recursive directory |
| 752 | * reading - if the path cannot possibly be in the pathspec, |
| 753 | * return true, and we'll skip it early. |
| 754 | */ |
| 755 | static int simplify_away(const char *path, int pathlen, const struct path_simplify *simplify) |
| 756 | { |
| 757 | if (simplify) { |
| 758 | for (;;) { |
| 759 | const char *match = simplify->path; |
| 760 | int len = simplify->len; |
| 761 | |
| 762 | if (!match) |
| 763 | break; |
| 764 | if (len > pathlen) |
| 765 | len = pathlen; |
| 766 | if (!memcmp(path, match, len)) |
| 767 | return 0; |
| 768 | simplify++; |
| 769 | } |
| 770 | return 1; |
| 771 | } |
| 772 | return 0; |
| 773 | } |
| 774 | |
Jeff King | 29209cb | 2010-03-11 02:15:43 -0500 | [diff] [blame] | 775 | /* |
| 776 | * This function tells us whether an excluded path matches a |
| 777 | * list of "interesting" pathspecs. That is, whether a path matched |
| 778 | * by any of the pathspecs could possibly be ignored by excluding |
| 779 | * the specified path. This can happen if: |
| 780 | * |
| 781 | * 1. the path is mentioned explicitly in the pathspec |
| 782 | * |
| 783 | * 2. the path is a directory prefix of some element in the |
| 784 | * pathspec |
| 785 | */ |
| 786 | static int exclude_matches_pathspec(const char *path, int len, |
| 787 | const struct path_simplify *simplify) |
Jeff King | e96980e | 2007-06-12 23:42:14 +0200 | [diff] [blame] | 788 | { |
| 789 | if (simplify) { |
| 790 | for (; simplify->path; simplify++) { |
| 791 | if (len == simplify->len |
| 792 | && !memcmp(path, simplify->path, len)) |
| 793 | return 1; |
Jeff King | 29209cb | 2010-03-11 02:15:43 -0500 | [diff] [blame] | 794 | if (len < simplify->len |
| 795 | && simplify->path[len] == '/' |
| 796 | && !memcmp(path, simplify->path, len)) |
| 797 | return 1; |
Jeff King | e96980e | 2007-06-12 23:42:14 +0200 | [diff] [blame] | 798 | } |
| 799 | } |
| 800 | return 0; |
| 801 | } |
| 802 | |
Linus Torvalds | 443e061 | 2009-07-09 13:14:28 -0700 | [diff] [blame] | 803 | static int get_index_dtype(const char *path, int len) |
| 804 | { |
| 805 | int pos; |
| 806 | struct cache_entry *ce; |
| 807 | |
| 808 | ce = cache_name_exists(path, len, 0); |
| 809 | if (ce) { |
| 810 | if (!ce_uptodate(ce)) |
| 811 | return DT_UNKNOWN; |
| 812 | if (S_ISGITLINK(ce->ce_mode)) |
| 813 | return DT_DIR; |
| 814 | /* |
| 815 | * Nobody actually cares about the |
| 816 | * difference between DT_LNK and DT_REG |
| 817 | */ |
| 818 | return DT_REG; |
| 819 | } |
| 820 | |
| 821 | /* Try to look it up as a directory */ |
| 822 | pos = cache_name_pos(path, len); |
| 823 | if (pos >= 0) |
| 824 | return DT_UNKNOWN; |
| 825 | pos = -pos-1; |
| 826 | while (pos < active_nr) { |
| 827 | ce = active_cache[pos++]; |
| 828 | if (strncmp(ce->name, path, len)) |
| 829 | break; |
| 830 | if (ce->name[len] > '/') |
| 831 | break; |
| 832 | if (ce->name[len] < '/') |
| 833 | continue; |
| 834 | if (!ce_uptodate(ce)) |
| 835 | break; /* continue? */ |
| 836 | return DT_DIR; |
| 837 | } |
| 838 | return DT_UNKNOWN; |
| 839 | } |
| 840 | |
Linus Torvalds | caa6b78 | 2009-07-08 19:31:49 -0700 | [diff] [blame] | 841 | static int get_dtype(struct dirent *de, const char *path, int len) |
Linus Torvalds | 0713442 | 2007-10-19 10:59:22 -0700 | [diff] [blame] | 842 | { |
Junio C Hamano | 6831a88 | 2008-01-31 20:23:25 -0800 | [diff] [blame] | 843 | int dtype = de ? DTYPE(de) : DT_UNKNOWN; |
Linus Torvalds | 0713442 | 2007-10-19 10:59:22 -0700 | [diff] [blame] | 844 | struct stat st; |
| 845 | |
| 846 | if (dtype != DT_UNKNOWN) |
| 847 | return dtype; |
Linus Torvalds | 443e061 | 2009-07-09 13:14:28 -0700 | [diff] [blame] | 848 | dtype = get_index_dtype(path, len); |
| 849 | if (dtype != DT_UNKNOWN) |
| 850 | return dtype; |
| 851 | if (lstat(path, &st)) |
Linus Torvalds | 0713442 | 2007-10-19 10:59:22 -0700 | [diff] [blame] | 852 | return dtype; |
| 853 | if (S_ISREG(st.st_mode)) |
| 854 | return DT_REG; |
| 855 | if (S_ISDIR(st.st_mode)) |
| 856 | return DT_DIR; |
| 857 | if (S_ISLNK(st.st_mode)) |
| 858 | return DT_LNK; |
| 859 | return dtype; |
| 860 | } |
| 861 | |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 862 | enum path_treatment { |
| 863 | path_ignored, |
| 864 | path_handled, |
Gary V. Vaughan | 4b05548 | 2010-05-14 09:31:35 +0000 | [diff] [blame] | 865 | path_recurse |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 866 | }; |
| 867 | |
Junio C Hamano | 16e2cfa | 2010-01-08 20:56:16 -0800 | [diff] [blame] | 868 | static enum path_treatment treat_one_path(struct dir_struct *dir, |
| 869 | char *path, int *len, |
| 870 | const struct path_simplify *simplify, |
| 871 | int dtype, struct dirent *de) |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 872 | { |
Junio C Hamano | 16e2cfa | 2010-01-08 20:56:16 -0800 | [diff] [blame] | 873 | int exclude = excluded(dir, path, &dtype); |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 874 | if (exclude && (dir->flags & DIR_COLLECT_IGNORED) |
Jeff King | 29209cb | 2010-03-11 02:15:43 -0500 | [diff] [blame] | 875 | && exclude_matches_pathspec(path, *len, simplify)) |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 876 | dir_add_ignored(dir, path, *len); |
| 877 | |
| 878 | /* |
| 879 | * Excluded? If we don't explicitly want to show |
| 880 | * ignored files, ignore it |
| 881 | */ |
| 882 | if (exclude && !(dir->flags & DIR_SHOW_IGNORED)) |
| 883 | return path_ignored; |
| 884 | |
| 885 | if (dtype == DT_UNKNOWN) |
| 886 | dtype = get_dtype(de, path, *len); |
| 887 | |
| 888 | /* |
| 889 | * Do we want to see just the ignored files? |
| 890 | * We still need to recurse into directories, |
| 891 | * even if we don't ignore them, since the |
| 892 | * directory may contain files that we do.. |
| 893 | */ |
| 894 | if (!exclude && (dir->flags & DIR_SHOW_IGNORED)) { |
| 895 | if (dtype != DT_DIR) |
| 896 | return path_ignored; |
| 897 | } |
| 898 | |
| 899 | switch (dtype) { |
| 900 | default: |
| 901 | return path_ignored; |
| 902 | case DT_DIR: |
| 903 | memcpy(path + *len, "/", 2); |
| 904 | (*len)++; |
| 905 | switch (treat_directory(dir, path, *len, simplify)) { |
| 906 | case show_directory: |
| 907 | if (exclude != !!(dir->flags |
| 908 | & DIR_SHOW_IGNORED)) |
| 909 | return path_ignored; |
| 910 | break; |
| 911 | case recurse_into_directory: |
| 912 | return path_recurse; |
| 913 | case ignore_directory: |
| 914 | return path_ignored; |
| 915 | } |
| 916 | break; |
| 917 | case DT_REG: |
| 918 | case DT_LNK: |
| 919 | break; |
| 920 | } |
| 921 | return path_handled; |
| 922 | } |
| 923 | |
Junio C Hamano | 16e2cfa | 2010-01-08 20:56:16 -0800 | [diff] [blame] | 924 | static enum path_treatment treat_path(struct dir_struct *dir, |
| 925 | struct dirent *de, |
| 926 | char *path, int path_max, |
| 927 | int baselen, |
| 928 | const struct path_simplify *simplify, |
| 929 | int *len) |
| 930 | { |
| 931 | int dtype; |
| 932 | |
| 933 | if (is_dot_or_dotdot(de->d_name) || !strcmp(de->d_name, ".git")) |
| 934 | return path_ignored; |
| 935 | *len = strlen(de->d_name); |
| 936 | /* Ignore overly long pathnames! */ |
| 937 | if (*len + baselen + 8 > path_max) |
| 938 | return path_ignored; |
| 939 | memcpy(path + baselen, de->d_name, *len + 1); |
| 940 | *len += baselen; |
| 941 | if (simplify_away(path, *len, simplify)) |
| 942 | return path_ignored; |
| 943 | |
| 944 | dtype = DTYPE(de); |
| 945 | return treat_one_path(dir, path, len, simplify, dtype, de); |
| 946 | } |
| 947 | |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 948 | /* |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 949 | * Read a directory tree. We currently ignore anything but |
| 950 | * directories, regular files and symlinks. That's because git |
| 951 | * doesn't handle them at all yet. Maybe that will change some |
| 952 | * day. |
| 953 | * |
| 954 | * Also, we ignore the name ".git" (even if it is not a directory). |
| 955 | * That likely will not change. |
| 956 | */ |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 957 | static int read_directory_recursive(struct dir_struct *dir, |
| 958 | const char *base, int baselen, |
| 959 | int check_only, |
| 960 | const struct path_simplify *simplify) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 961 | { |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 962 | DIR *fdir = opendir(*base ? base : "."); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 963 | int contents = 0; |
| 964 | |
| 965 | if (fdir) { |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 966 | struct dirent *de; |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 967 | char path[PATH_MAX + 1]; |
| 968 | memcpy(path, base, baselen); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 969 | |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 970 | while ((de = readdir(fdir)) != NULL) { |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 971 | int len; |
| 972 | switch (treat_path(dir, de, path, sizeof(path), |
| 973 | baselen, simplify, &len)) { |
| 974 | case path_recurse: |
| 975 | contents += read_directory_recursive |
| 976 | (dir, path, len, 0, simplify); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 977 | continue; |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 978 | case path_ignored: |
Linus Torvalds | 5d5cea6 | 2007-04-09 21:13:58 -0700 | [diff] [blame] | 979 | continue; |
Junio C Hamano | 53cc535 | 2010-01-08 19:14:07 -0800 | [diff] [blame] | 980 | case path_handled: |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 981 | break; |
| 982 | } |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 983 | contents++; |
Johannes Schindelin | 07ccbff | 2006-09-28 02:44:30 +0200 | [diff] [blame] | 984 | if (check_only) |
| 985 | goto exit_early; |
| 986 | else |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 987 | dir_add_name(dir, path, len); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 988 | } |
Johannes Schindelin | 07ccbff | 2006-09-28 02:44:30 +0200 | [diff] [blame] | 989 | exit_early: |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 990 | closedir(fdir); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | return contents; |
| 994 | } |
| 995 | |
| 996 | static int cmp_name(const void *p1, const void *p2) |
| 997 | { |
| 998 | const struct dir_entry *e1 = *(const struct dir_entry **)p1; |
| 999 | const struct dir_entry *e2 = *(const struct dir_entry **)p2; |
| 1000 | |
| 1001 | return cache_name_compare(e1->name, e1->len, |
| 1002 | e2->name, e2->len); |
| 1003 | } |
| 1004 | |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1005 | /* |
| 1006 | * Return the length of the "simple" part of a path match limiter. |
| 1007 | */ |
| 1008 | static int simple_length(const char *match) |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 1009 | { |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1010 | int len = -1; |
| 1011 | |
| 1012 | for (;;) { |
| 1013 | unsigned char c = *match++; |
| 1014 | len++; |
René Scharfe | 8cc3299 | 2009-01-17 16:50:34 +0100 | [diff] [blame] | 1015 | if (c == '\0' || is_glob_special(c)) |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1016 | return len; |
| 1017 | } |
| 1018 | } |
| 1019 | |
| 1020 | static struct path_simplify *create_simplify(const char **pathspec) |
| 1021 | { |
| 1022 | int nr, alloc = 0; |
| 1023 | struct path_simplify *simplify = NULL; |
| 1024 | |
| 1025 | if (!pathspec) |
| 1026 | return NULL; |
| 1027 | |
| 1028 | for (nr = 0 ; ; nr++) { |
| 1029 | const char *match; |
| 1030 | if (nr >= alloc) { |
| 1031 | alloc = alloc_nr(alloc); |
| 1032 | simplify = xrealloc(simplify, alloc * sizeof(*simplify)); |
| 1033 | } |
| 1034 | match = *pathspec++; |
| 1035 | if (!match) |
| 1036 | break; |
| 1037 | simplify[nr].path = match; |
| 1038 | simplify[nr].len = simple_length(match); |
| 1039 | } |
| 1040 | simplify[nr].path = NULL; |
| 1041 | simplify[nr].len = 0; |
| 1042 | return simplify; |
| 1043 | } |
| 1044 | |
| 1045 | static void free_simplify(struct path_simplify *simplify) |
| 1046 | { |
Jim Meyering | 8e0f700 | 2008-01-31 18:26:32 +0100 | [diff] [blame] | 1047 | free(simplify); |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Junio C Hamano | 48ffef9 | 2010-01-08 23:05:41 -0800 | [diff] [blame] | 1050 | static int treat_leading_path(struct dir_struct *dir, |
| 1051 | const char *path, int len, |
| 1052 | const struct path_simplify *simplify) |
| 1053 | { |
| 1054 | char pathbuf[PATH_MAX]; |
| 1055 | int baselen, blen; |
| 1056 | const char *cp; |
| 1057 | |
| 1058 | while (len && path[len - 1] == '/') |
| 1059 | len--; |
| 1060 | if (!len) |
| 1061 | return 1; |
| 1062 | baselen = 0; |
| 1063 | while (1) { |
| 1064 | cp = path + baselen + !!baselen; |
| 1065 | cp = memchr(cp, '/', path + len - cp); |
| 1066 | if (!cp) |
| 1067 | baselen = len; |
| 1068 | else |
| 1069 | baselen = cp - path; |
| 1070 | memcpy(pathbuf, path, baselen); |
| 1071 | pathbuf[baselen] = '\0'; |
| 1072 | if (!is_directory(pathbuf)) |
| 1073 | return 0; |
| 1074 | if (simplify_away(pathbuf, baselen, simplify)) |
| 1075 | return 0; |
| 1076 | blen = baselen; |
| 1077 | if (treat_one_path(dir, pathbuf, &blen, simplify, |
| 1078 | DT_DIR, NULL) == path_ignored) |
| 1079 | return 0; /* do not recurse into it */ |
| 1080 | if (len <= baselen) |
| 1081 | return 1; /* finished checking */ |
| 1082 | } |
| 1083 | } |
| 1084 | |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 1085 | int read_directory(struct dir_struct *dir, const char *path, int len, const char **pathspec) |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1086 | { |
Junio C Hamano | 725b060 | 2008-08-04 00:52:37 -0700 | [diff] [blame] | 1087 | struct path_simplify *simplify; |
Linus Torvalds | b4189aa | 2006-05-16 19:46:16 -0700 | [diff] [blame] | 1088 | |
Linus Torvalds | dba2e20 | 2009-07-08 19:24:39 -0700 | [diff] [blame] | 1089 | if (has_symlink_leading_path(path, len)) |
Junio C Hamano | 725b060 | 2008-08-04 00:52:37 -0700 | [diff] [blame] | 1090 | return dir->nr; |
| 1091 | |
| 1092 | simplify = create_simplify(pathspec); |
Junio C Hamano | 48ffef9 | 2010-01-08 23:05:41 -0800 | [diff] [blame] | 1093 | if (!len || treat_leading_path(dir, path, len, simplify)) |
| 1094 | read_directory_recursive(dir, path, len, 0, simplify); |
Linus Torvalds | 9fc42d6 | 2007-03-30 20:39:30 -0700 | [diff] [blame] | 1095 | free_simplify(simplify); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 1096 | qsort(dir->entries, dir->nr, sizeof(struct dir_entry *), cmp_name); |
Jeff King | 2abd31b | 2007-06-11 09:39:50 -0400 | [diff] [blame] | 1097 | qsort(dir->ignored, dir->ignored_nr, sizeof(struct dir_entry *), cmp_name); |
Linus Torvalds | 453ec4b | 2006-05-16 19:02:14 -0700 | [diff] [blame] | 1098 | return dir->nr; |
| 1099 | } |
Jeff King | c91f0d9 | 2006-09-08 04:05:34 -0400 | [diff] [blame] | 1100 | |
Junio C Hamano | 686a4a0 | 2007-11-29 01:11:46 -0800 | [diff] [blame] | 1101 | int file_exists(const char *f) |
Jeff King | c91f0d9 | 2006-09-08 04:05:34 -0400 | [diff] [blame] | 1102 | { |
Junio C Hamano | 686a4a0 | 2007-11-29 01:11:46 -0800 | [diff] [blame] | 1103 | struct stat sb; |
Junio C Hamano | a50f9fc5 | 2007-11-18 01:58:16 -0800 | [diff] [blame] | 1104 | return lstat(f, &sb) == 0; |
Jeff King | c91f0d9 | 2006-09-08 04:05:34 -0400 | [diff] [blame] | 1105 | } |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1106 | |
| 1107 | /* |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1108 | * Given two normalized paths (a trailing slash is ok), if subdir is |
| 1109 | * outside dir, return -1. Otherwise return the offset in subdir that |
| 1110 | * can be used as relative path to dir. |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1111 | */ |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1112 | int dir_inside_of(const char *subdir, const char *dir) |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1113 | { |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1114 | int offset = 0; |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1115 | |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1116 | assert(dir && subdir && *dir && *subdir); |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1117 | |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1118 | while (*dir && *subdir && *dir == *subdir) { |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1119 | dir++; |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1120 | subdir++; |
| 1121 | offset++; |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1122 | } |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 1123 | |
| 1124 | /* hel[p]/me vs hel[l]/yeah */ |
| 1125 | if (*dir && *subdir) |
| 1126 | return -1; |
| 1127 | |
| 1128 | if (!*subdir) |
| 1129 | return !*dir ? offset : -1; /* same dir */ |
| 1130 | |
| 1131 | /* foo/[b]ar vs foo/[] */ |
| 1132 | if (is_dir_sep(dir[-1])) |
| 1133 | return is_dir_sep(subdir[-1]) ? offset : -1; |
| 1134 | |
| 1135 | /* foo[/]bar vs foo[] */ |
| 1136 | return is_dir_sep(*subdir) ? offset + 1 : -1; |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1137 | } |
| 1138 | |
| 1139 | int is_inside_dir(const char *dir) |
| 1140 | { |
Nguyễn Thái Ngọc Duy | b892913 | 2011-03-26 16:04:25 +0700 | [diff] [blame] | 1141 | char cwd[PATH_MAX]; |
| 1142 | if (!dir) |
| 1143 | return 0; |
| 1144 | if (!getcwd(cwd, sizeof(cwd))) |
| 1145 | die_errno("can't find the current directory"); |
| 1146 | return dir_inside_of(cwd, dir) >= 0; |
Johannes Schindelin | e663674 | 2007-08-01 01:29:17 +0100 | [diff] [blame] | 1147 | } |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1148 | |
Alexander Potashev | 55892d2 | 2009-01-11 15:19:12 +0300 | [diff] [blame] | 1149 | int is_empty_dir(const char *path) |
| 1150 | { |
| 1151 | DIR *dir = opendir(path); |
| 1152 | struct dirent *e; |
| 1153 | int ret = 1; |
| 1154 | |
| 1155 | if (!dir) |
| 1156 | return 0; |
| 1157 | |
| 1158 | while ((e = readdir(dir)) != NULL) |
| 1159 | if (!is_dot_or_dotdot(e->d_name)) { |
| 1160 | ret = 0; |
| 1161 | break; |
| 1162 | } |
| 1163 | |
| 1164 | closedir(dir); |
| 1165 | return ret; |
| 1166 | } |
| 1167 | |
Junio C Hamano | a0f4afb | 2009-06-30 15:33:45 -0700 | [diff] [blame] | 1168 | int remove_dir_recursively(struct strbuf *path, int flag) |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1169 | { |
Junio C Hamano | a0f4afb | 2009-06-30 15:33:45 -0700 | [diff] [blame] | 1170 | DIR *dir; |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1171 | struct dirent *e; |
| 1172 | int ret = 0, original_len = path->len, len; |
Junio C Hamano | a0f4afb | 2009-06-30 15:33:45 -0700 | [diff] [blame] | 1173 | int only_empty = (flag & REMOVE_DIR_EMPTY_ONLY); |
| 1174 | unsigned char submodule_head[20]; |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1175 | |
Junio C Hamano | a0f4afb | 2009-06-30 15:33:45 -0700 | [diff] [blame] | 1176 | if ((flag & REMOVE_DIR_KEEP_NESTED_GIT) && |
| 1177 | !resolve_gitlink_ref(path->buf, "HEAD", submodule_head)) |
| 1178 | /* Do not descend and nuke a nested git work tree. */ |
| 1179 | return 0; |
| 1180 | |
| 1181 | dir = opendir(path->buf); |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1182 | if (!dir) |
Alex Riesen | 0235017 | 2011-04-01 10:29:16 +0200 | [diff] [blame] | 1183 | return rmdir(path->buf); |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1184 | if (path->buf[original_len - 1] != '/') |
| 1185 | strbuf_addch(path, '/'); |
| 1186 | |
| 1187 | len = path->len; |
| 1188 | while ((e = readdir(dir)) != NULL) { |
| 1189 | struct stat st; |
Alexander Potashev | 8ca12c0 | 2009-01-10 15:07:50 +0300 | [diff] [blame] | 1190 | if (is_dot_or_dotdot(e->d_name)) |
| 1191 | continue; |
Johannes Schindelin | 7155b72 | 2007-09-28 16:28:54 +0100 | [diff] [blame] | 1192 | |
| 1193 | strbuf_setlen(path, len); |
| 1194 | strbuf_addstr(path, e->d_name); |
| 1195 | if (lstat(path->buf, &st)) |
| 1196 | ; /* fall thru */ |
| 1197 | else if (S_ISDIR(st.st_mode)) { |
| 1198 | if (!remove_dir_recursively(path, only_empty)) |
| 1199 | continue; /* happy */ |
| 1200 | } else if (!only_empty && !unlink(path->buf)) |
| 1201 | continue; /* happy, too */ |
| 1202 | |
| 1203 | /* path too long, stat fails, or non-directory still exists */ |
| 1204 | ret = -1; |
| 1205 | break; |
| 1206 | } |
| 1207 | closedir(dir); |
| 1208 | |
| 1209 | strbuf_setlen(path, original_len); |
| 1210 | if (!ret) |
| 1211 | ret = rmdir(path->buf); |
| 1212 | return ret; |
| 1213 | } |
Junio C Hamano | 039bc64 | 2007-11-14 00:05:00 -0800 | [diff] [blame] | 1214 | |
| 1215 | void setup_standard_excludes(struct dir_struct *dir) |
| 1216 | { |
| 1217 | const char *path; |
| 1218 | |
| 1219 | dir->exclude_per_dir = ".gitignore"; |
| 1220 | path = git_path("info/exclude"); |
| 1221 | if (!access(path, R_OK)) |
| 1222 | add_excludes_from_file(dir, path); |
| 1223 | if (excludes_file && !access(excludes_file, R_OK)) |
| 1224 | add_excludes_from_file(dir, excludes_file); |
| 1225 | } |
Alex Riesen | 4a92d1b | 2008-09-27 00:56:46 +0200 | [diff] [blame] | 1226 | |
| 1227 | int remove_path(const char *name) |
| 1228 | { |
| 1229 | char *slash; |
| 1230 | |
| 1231 | if (unlink(name) && errno != ENOENT) |
| 1232 | return -1; |
| 1233 | |
| 1234 | slash = strrchr(name, '/'); |
| 1235 | if (slash) { |
| 1236 | char *dirs = xstrdup(name); |
| 1237 | slash = dirs + (slash - name); |
| 1238 | do { |
| 1239 | *slash = '\0'; |
Jeff King | 3fc0d13 | 2010-02-19 00:57:21 -0500 | [diff] [blame] | 1240 | } while (rmdir(dirs) == 0 && (slash = strrchr(dirs, '/'))); |
Alex Riesen | 4a92d1b | 2008-09-27 00:56:46 +0200 | [diff] [blame] | 1241 | free(dirs); |
| 1242 | } |
| 1243 | return 0; |
| 1244 | } |
| 1245 | |
Nguyễn Thái Ngọc Duy | 86e4ca6 | 2010-12-15 22:02:45 +0700 | [diff] [blame] | 1246 | static int pathspec_item_cmp(const void *a_, const void *b_) |
| 1247 | { |
| 1248 | struct pathspec_item *a, *b; |
| 1249 | |
| 1250 | a = (struct pathspec_item *)a_; |
| 1251 | b = (struct pathspec_item *)b_; |
| 1252 | return strcmp(a->match, b->match); |
| 1253 | } |
| 1254 | |
Nguyễn Thái Ngọc Duy | 0602f3e | 2010-12-15 22:02:36 +0700 | [diff] [blame] | 1255 | int init_pathspec(struct pathspec *pathspec, const char **paths) |
| 1256 | { |
| 1257 | const char **p = paths; |
| 1258 | int i; |
| 1259 | |
| 1260 | memset(pathspec, 0, sizeof(*pathspec)); |
| 1261 | if (!p) |
| 1262 | return 0; |
| 1263 | while (*p) |
| 1264 | p++; |
| 1265 | pathspec->raw = paths; |
| 1266 | pathspec->nr = p - paths; |
| 1267 | if (!pathspec->nr) |
| 1268 | return 0; |
| 1269 | |
| 1270 | pathspec->items = xmalloc(sizeof(struct pathspec_item)*pathspec->nr); |
| 1271 | for (i = 0; i < pathspec->nr; i++) { |
| 1272 | struct pathspec_item *item = pathspec->items+i; |
| 1273 | const char *path = paths[i]; |
| 1274 | |
| 1275 | item->match = path; |
| 1276 | item->len = strlen(path); |
Junio C Hamano | 33e0f62 | 2011-04-05 09:30:36 -0700 | [diff] [blame] | 1277 | item->use_wildcard = !no_wildcard(path); |
| 1278 | if (item->use_wildcard) |
Nguyễn Thái Ngọc Duy | d38f280 | 2010-12-15 22:02:46 +0700 | [diff] [blame] | 1279 | pathspec->has_wildcard = 1; |
Nguyễn Thái Ngọc Duy | 0602f3e | 2010-12-15 22:02:36 +0700 | [diff] [blame] | 1280 | } |
Nguyễn Thái Ngọc Duy | 86e4ca6 | 2010-12-15 22:02:45 +0700 | [diff] [blame] | 1281 | |
| 1282 | qsort(pathspec->items, pathspec->nr, |
| 1283 | sizeof(struct pathspec_item), pathspec_item_cmp); |
| 1284 | |
Nguyễn Thái Ngọc Duy | 0602f3e | 2010-12-15 22:02:36 +0700 | [diff] [blame] | 1285 | return 0; |
| 1286 | } |
| 1287 | |
| 1288 | void free_pathspec(struct pathspec *pathspec) |
| 1289 | { |
| 1290 | free(pathspec->items); |
| 1291 | pathspec->items = NULL; |
| 1292 | } |