3 #include "unpack-trees.h"
5 #include "object-store.h"
9 static const char *get_mode(const char *str
, unsigned int *modep
)
12 unsigned int mode
= 0;
17 while ((c
= *str
++) != ' ') {
18 if (c
< '0' || c
> '7')
20 mode
= (mode
<< 3) + (c
- '0');
26 static int decode_tree_entry(struct tree_desc
*desc
, const char *buf
, unsigned long size
, struct strbuf
*err
)
29 unsigned int mode
, len
;
30 const unsigned hashsz
= the_hash_algo
->rawsz
;
32 if (size
< hashsz
+ 3 || buf
[size
- (hashsz
+ 1)]) {
33 strbuf_addstr(err
, _("too-short tree object"));
37 path
= get_mode(buf
, &mode
);
39 strbuf_addstr(err
, _("malformed mode in tree entry"));
43 strbuf_addstr(err
, _("empty filename in tree entry"));
46 len
= strlen(path
) + 1;
48 /* Initialize the descriptor entry */
49 desc
->entry
.path
= path
;
50 desc
->entry
.mode
= canon_mode(mode
);
51 desc
->entry
.pathlen
= len
- 1;
52 hashcpy(desc
->entry
.oid
.hash
, (const unsigned char *)path
+ len
);
57 static int init_tree_desc_internal(struct tree_desc
*desc
, const void *buffer
, unsigned long size
, struct strbuf
*err
)
59 desc
->buffer
= buffer
;
62 return decode_tree_entry(desc
, buffer
, size
, err
);
66 void init_tree_desc(struct tree_desc
*desc
, const void *buffer
, unsigned long size
)
68 struct strbuf err
= STRBUF_INIT
;
69 if (init_tree_desc_internal(desc
, buffer
, size
, &err
))
74 int init_tree_desc_gently(struct tree_desc
*desc
, const void *buffer
, unsigned long size
)
76 struct strbuf err
= STRBUF_INIT
;
77 int result
= init_tree_desc_internal(desc
, buffer
, size
, &err
);
84 void *fill_tree_descriptor(struct tree_desc
*desc
, const struct object_id
*oid
)
86 unsigned long size
= 0;
90 buf
= read_object_with_reference(oid
, tree_type
, &size
, NULL
);
92 die("unable to read tree %s", oid_to_hex(oid
));
94 init_tree_desc(desc
, buf
, size
);
98 static void entry_clear(struct name_entry
*a
)
100 memset(a
, 0, sizeof(*a
));
103 static void entry_extract(struct tree_desc
*t
, struct name_entry
*a
)
108 static int update_tree_entry_internal(struct tree_desc
*desc
, struct strbuf
*err
)
110 const void *buf
= desc
->buffer
;
111 const unsigned char *end
= (const unsigned char *)desc
->entry
.path
+ desc
->entry
.pathlen
+ 1 + the_hash_algo
->rawsz
;
112 unsigned long size
= desc
->size
;
113 unsigned long len
= end
- (const unsigned char *)buf
;
116 die(_("too-short tree file"));
122 return decode_tree_entry(desc
, buf
, size
, err
);
126 void update_tree_entry(struct tree_desc
*desc
)
128 struct strbuf err
= STRBUF_INIT
;
129 if (update_tree_entry_internal(desc
, &err
))
131 strbuf_release(&err
);
134 int update_tree_entry_gently(struct tree_desc
*desc
)
136 struct strbuf err
= STRBUF_INIT
;
137 if (update_tree_entry_internal(desc
, &err
)) {
138 error("%s", err
.buf
);
139 strbuf_release(&err
);
140 /* Stop processing this tree after error */
144 strbuf_release(&err
);
148 int tree_entry(struct tree_desc
*desc
, struct name_entry
*entry
)
153 *entry
= desc
->entry
;
154 update_tree_entry(desc
);
158 int tree_entry_gently(struct tree_desc
*desc
, struct name_entry
*entry
)
163 *entry
= desc
->entry
;
164 if (update_tree_entry_gently(desc
))
169 void setup_traverse_info(struct traverse_info
*info
, const char *base
)
171 int pathlen
= strlen(base
);
172 static struct traverse_info dummy
;
174 memset(info
, 0, sizeof(*info
));
175 if (pathlen
&& base
[pathlen
-1] == '/')
177 info
->pathlen
= pathlen
? pathlen
+ 1 : 0;
178 info
->name
.path
= base
;
179 info
->name
.pathlen
= pathlen
;
181 hashcpy(info
->name
.oid
.hash
, (const unsigned char *)base
+ pathlen
+ 1);
186 char *make_traverse_path(char *path
, const struct traverse_info
*info
, const struct name_entry
*n
)
188 int len
= tree_entry_len(n
);
189 int pathlen
= info
->pathlen
;
191 path
[pathlen
+ len
] = 0;
193 memcpy(path
+ pathlen
, n
->path
, len
);
196 path
[--pathlen
] = '/';
198 len
= tree_entry_len(n
);
205 struct tree_desc_skip
{
206 struct tree_desc_skip
*prev
;
212 struct tree_desc_skip
*skip
;
215 static int check_entry_match(const char *a
, int a_len
, const char *b
, int b_len
)
218 * The caller wants to pick *a* from a tree or nothing.
219 * We are looking at *b* in a tree.
221 * (0) If a and b are the same name, we are trivially happy.
223 * There are three possibilities where *a* could be hiding
226 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
228 * (2) *a* == "t", *b* == "t-2" and "t" is a subtree in the tree;
229 * (3) *a* == "t-2", *b* == "t" and "t-2" is a blob in the tree.
231 * Otherwise we know *a* won't appear in the tree without
235 int cmp
= name_compare(a
, a_len
, b
, b_len
);
237 /* Most common case first -- reading sync'd trees */
242 /* a comes after b; it does not matter if it is case (3)
243 if (b_len < a_len && !memcmp(a, b, b_len) && a[b_len] < '/')
246 return 1; /* keep looking */
249 /* b comes after a; are we looking at case (2)? */
250 if (a_len
< b_len
&& !memcmp(a
, b
, a_len
) && b
[a_len
] < '/')
251 return 1; /* keep looking */
253 return -1; /* a cannot appear in the tree */
257 * From the extended tree_desc, extract the first name entry, while
258 * paying attention to the candidate "first" name. Most importantly,
259 * when looking for an entry, if there are entries that sorts earlier
260 * in the tree object representation than that name, skip them and
261 * process the named entry first. We will remember that we haven't
262 * processed the first entry yet, and in the later call skip the
263 * entry we processed early when update_extended_entry() is called.
265 * E.g. if the underlying tree object has these entries:
272 * and the "first" asks for "t", remember that we still need to
273 * process "t-1" and "t-2" but extract "t". After processing the
274 * entry "t" from this call, the caller will let us know by calling
275 * update_extended_entry() that we can remember "t" has been processed
279 static void extended_entry_extract(struct tree_desc_x
*t
,
280 struct name_entry
*a
,
286 struct tree_desc probe
;
287 struct tree_desc_skip
*skip
;
290 * Extract the first entry from the tree_desc, but skip the
291 * ones that we already returned in earlier rounds.
296 break; /* not found */
298 entry_extract(&t
->d
, a
);
299 for (skip
= t
->skip
; skip
; skip
= skip
->prev
)
300 if (a
->path
== skip
->ptr
)
304 /* We have processed this entry already. */
305 update_tree_entry(&t
->d
);
308 if (!first
|| !a
->path
)
312 * The caller wants "first" from this tree, or nothing.
315 len
= tree_entry_len(a
);
316 switch (check_entry_match(first
, first_len
, path
, len
)) {
326 * We need to look-ahead -- we suspect that a subtree whose
327 * name is "first" may be hiding behind the current entry "path".
331 entry_extract(&probe
, a
);
333 len
= tree_entry_len(a
);
334 switch (check_entry_match(first
, first_len
, path
, len
)) {
340 update_tree_entry(&probe
);
348 static void update_extended_entry(struct tree_desc_x
*t
, struct name_entry
*a
)
350 if (t
->d
.entry
.path
== a
->path
) {
351 update_tree_entry(&t
->d
);
353 /* we have returned this entry early */
354 struct tree_desc_skip
*skip
= xmalloc(sizeof(*skip
));
356 skip
->prev
= t
->skip
;
361 static void free_extended_entry(struct tree_desc_x
*t
)
363 struct tree_desc_skip
*p
, *s
;
365 for (s
= t
->skip
; s
; s
= p
) {
371 static inline int prune_traversal(struct index_state
*istate
,
372 struct name_entry
*e
,
373 struct traverse_info
*info
,
375 int still_interesting
)
377 if (!info
->pathspec
|| still_interesting
== 2)
379 if (still_interesting
< 0)
380 return still_interesting
;
381 return tree_entry_interesting(istate
, e
, base
,
385 int traverse_trees(struct index_state
*istate
,
386 int n
, struct tree_desc
*t
,
387 struct traverse_info
*info
)
390 struct name_entry
*entry
= xmalloc(n
*sizeof(*entry
));
392 struct tree_desc_x
*tx
= xcalloc(n
, sizeof(*tx
));
393 struct strbuf base
= STRBUF_INIT
;
397 for (i
= 0; i
< n
; i
++)
401 strbuf_grow(&base
, info
->pathlen
);
402 make_traverse_path(base
.buf
, info
->prev
, &info
->name
);
403 base
.buf
[info
->pathlen
-1] = '/';
404 strbuf_setlen(&base
, info
->pathlen
);
405 traverse_path
= xstrndup(base
.buf
, info
->pathlen
);
407 traverse_path
= xstrndup(info
->name
.path
, info
->pathlen
);
409 info
->traverse_path
= traverse_path
;
412 unsigned long mask
, dirmask
;
413 const char *first
= NULL
;
415 struct name_entry
*e
= NULL
;
418 for (i
= 0; i
< n
; i
++) {
420 extended_entry_extract(tx
+ i
, e
, NULL
, 0);
424 * A tree may have "t-2" at the current location even
425 * though it may have "t" that is a subtree behind it,
426 * and another tree may return "t". We want to grab
427 * all "t" from all trees to match in such a case.
429 for (i
= 0; i
< n
; i
++) {
433 len
= tree_entry_len(e
);
439 if (name_compare(e
->path
, len
, first
, first_len
) < 0) {
446 for (i
= 0; i
< n
; i
++) {
448 extended_entry_extract(tx
+ i
, e
, first
, first_len
);
449 /* Cull the ones that are not the earliest */
452 len
= tree_entry_len(e
);
453 if (name_compare(e
->path
, len
, first
, first_len
))
458 /* Now we have in entry[i] the earliest name from the trees */
461 for (i
= 0; i
< n
; i
++) {
465 if (S_ISDIR(entry
[i
].mode
))
471 interesting
= prune_traversal(istate
, e
, info
, &base
, interesting
);
475 trees_used
= info
->fn(n
, mask
, dirmask
, entry
, info
);
476 if (trees_used
< 0) {
478 if (!info
->show_all_errors
)
483 for (i
= 0; i
< n
; i
++)
484 if (mask
& (1ul << i
))
485 update_extended_entry(tx
+ i
, entry
+ i
);
488 for (i
= 0; i
< n
; i
++)
489 free_extended_entry(tx
+ i
);
492 info
->traverse_path
= NULL
;
493 strbuf_release(&base
);
500 struct object_id oid
;
503 static int find_tree_entry(struct tree_desc
*t
, const char *name
, struct object_id
*result
, unsigned *mode
)
505 int namelen
= strlen(name
);
508 struct object_id oid
;
511 oidcpy(&oid
, tree_entry_extract(t
, &entry
, mode
));
512 entrylen
= tree_entry_len(&t
->entry
);
513 update_tree_entry(t
);
514 if (entrylen
> namelen
)
516 cmp
= memcmp(name
, entry
, entrylen
);
521 if (entrylen
== namelen
) {
522 oidcpy(result
, &oid
);
525 if (name
[entrylen
] != '/')
529 if (++entrylen
== namelen
) {
530 oidcpy(result
, &oid
);
533 return get_tree_entry(&oid
, name
+ entrylen
, result
, mode
);
538 int get_tree_entry(const struct object_id
*tree_oid
, const char *name
, struct object_id
*oid
, unsigned *mode
)
543 struct object_id root
;
545 tree
= read_object_with_reference(tree_oid
, tree_type
, &size
, &root
);
549 if (name
[0] == '\0') {
559 init_tree_desc(&t
, tree
, size
);
560 retval
= find_tree_entry(&t
, name
, oid
, mode
);
567 * This is Linux's built-in max for the number of symlinks to follow.
568 * That limit, of course, does not affect git, but it's a reasonable
571 #define GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS 40
574 * Find a tree entry by following symlinks in tree_sha (which is
575 * assumed to be the root of the repository). In the event that a
576 * symlink points outside the repository (e.g. a link to /foo or a
577 * root-level link to ../foo), the portion of the link which is
578 * outside the repository will be returned in result_path, and *mode
579 * will be set to 0. It is assumed that result_path is uninitialized.
580 * If there are no symlinks, or the end result of the symlink chain
581 * points to an object inside the repository, result will be filled in
582 * with the sha1 of the found object, and *mode will hold the mode of
585 * See the code for enum get_oid_result for a description of
588 enum get_oid_result
get_tree_entry_follow_symlinks(struct object_id
*tree_oid
, const char *name
, struct object_id
*result
, struct strbuf
*result_path
, unsigned *mode
)
590 int retval
= MISSING_OBJECT
;
591 struct dir_state
*parents
= NULL
;
592 size_t parents_alloc
= 0;
593 size_t i
, parents_nr
= 0;
594 struct object_id current_tree_oid
;
595 struct strbuf namebuf
= STRBUF_INIT
;
597 int follows_remaining
= GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS
;
599 init_tree_desc(&t
, NULL
, 0UL);
600 strbuf_addstr(&namebuf
, name
);
601 oidcpy(¤t_tree_oid
, tree_oid
);
606 char *remainder
= NULL
;
610 struct object_id root
;
612 tree
= read_object_with_reference(¤t_tree_oid
,
618 ALLOC_GROW(parents
, parents_nr
+ 1, parents_alloc
);
619 parents
[parents_nr
].tree
= tree
;
620 parents
[parents_nr
].size
= size
;
621 oidcpy(&parents
[parents_nr
].oid
, &root
);
624 if (namebuf
.buf
[0] == '\0') {
625 oidcpy(result
, &root
);
634 init_tree_desc(&t
, tree
, size
);
637 /* Handle symlinks to e.g. a//b by removing leading slashes */
638 while (namebuf
.buf
[0] == '/') {
639 strbuf_remove(&namebuf
, 0, 1);
642 /* Split namebuf into a first component and a remainder */
643 if ((first_slash
= strchr(namebuf
.buf
, '/'))) {
645 remainder
= first_slash
+ 1;
648 if (!strcmp(namebuf
.buf
, "..")) {
649 struct dir_state
*parent
;
651 * We could end up with .. in the namebuf if it
652 * appears in a symlink.
655 if (parents_nr
== 1) {
658 strbuf_add(result_path
, namebuf
.buf
,
664 parent
= &parents
[parents_nr
- 1];
667 parent
= &parents
[parents_nr
- 1];
668 init_tree_desc(&t
, parent
->tree
, parent
->size
);
669 strbuf_remove(&namebuf
, 0, remainder
? 3 : 2);
673 /* We could end up here via a symlink to dir/.. */
674 if (namebuf
.buf
[0] == '\0') {
675 oidcpy(result
, &parents
[parents_nr
- 1].oid
);
680 /* Look up the first (or only) path component in the tree. */
681 find_result
= find_tree_entry(&t
, namebuf
.buf
,
682 ¤t_tree_oid
, mode
);
687 if (S_ISDIR(*mode
)) {
689 oidcpy(result
, ¤t_tree_oid
);
693 /* Descend the tree */
695 strbuf_remove(&namebuf
, 0,
696 1 + first_slash
- namebuf
.buf
);
697 } else if (S_ISREG(*mode
)) {
699 oidcpy(result
, ¤t_tree_oid
);
705 } else if (S_ISLNK(*mode
)) {
706 /* Follow a symlink */
707 unsigned long link_len
;
709 char *contents
, *contents_start
;
710 struct dir_state
*parent
;
711 enum object_type type
;
713 if (follows_remaining
-- == 0) {
714 /* Too many symlinks followed */
715 retval
= SYMLINK_LOOP
;
720 * At this point, we have followed at a least
721 * one symlink, so on error we need to report this.
723 retval
= DANGLING_SYMLINK
;
725 contents
= read_object_file(¤t_tree_oid
, &type
,
731 if (contents
[0] == '/') {
732 strbuf_addstr(result_path
, contents
);
740 len
= first_slash
- namebuf
.buf
;
744 contents_start
= contents
;
746 parent
= &parents
[parents_nr
- 1];
747 init_tree_desc(&t
, parent
->tree
, parent
->size
);
748 strbuf_splice(&namebuf
, 0, len
,
749 contents_start
, link_len
);
751 namebuf
.buf
[link_len
] = '/';
756 for (i
= 0; i
< parents_nr
; i
++)
757 free(parents
[i
].tree
);
760 strbuf_release(&namebuf
);
764 static int match_entry(const struct pathspec_item
*item
,
765 const struct name_entry
*entry
, int pathlen
,
766 const char *match
, int matchlen
,
767 enum interesting
*never_interesting
)
769 int m
= -1; /* signals that we haven't called strncmp() */
771 if (item
->magic
& PATHSPEC_ICASE
)
773 * "Never interesting" trick requires exact
774 * matching. We could do something clever with inexact
775 * matching, but it's trickier (and not to forget that
776 * strcasecmp is locale-dependent, at least in
777 * glibc). Just disable it for now. It can't be worse
778 * than the wildcard's codepath of '[Tt][Hi][Is][Ss]'
781 *never_interesting
= entry_not_interesting
;
782 else if (*never_interesting
!= entry_not_interesting
) {
784 * We have not seen any match that sorts later
785 * than the current path.
789 * Does match sort strictly earlier than path
790 * with their common parts?
792 m
= strncmp(match
, entry
->path
,
793 (matchlen
< pathlen
) ? matchlen
: pathlen
);
798 * If we come here even once, that means there is at
799 * least one pathspec that would sort equal to or
800 * later than the path we are currently looking at.
801 * In other words, if we have never reached this point
802 * after iterating all pathspecs, it means all
803 * pathspecs are either outside of base, or inside the
804 * base but sorts strictly earlier than the current
805 * one. In either case, they will never match the
806 * subsequent entries. In such a case, we initialized
807 * the variable to -1 and that is what will be
808 * returned, allowing the caller to terminate early.
810 *never_interesting
= entry_not_interesting
;
813 if (pathlen
> matchlen
)
816 if (matchlen
> pathlen
) {
817 if (match
[pathlen
] != '/')
819 if (!S_ISDIR(entry
->mode
) && !S_ISGITLINK(entry
->mode
))
825 * we cheated and did not do strncmp(), so we do
828 m
= ps_strncmp(item
, match
, entry
->path
, pathlen
);
831 * If common part matched earlier then it is a hit,
832 * because we rejected the case where path is not a
833 * leading directory and is shorter than match.
837 * match_entry does not check if the prefix part is
838 * matched case-sensitively. If the entry is a
839 * directory and part of prefix, it'll be rematched
840 * eventually by basecmp with special treatment for
848 /* :(icase)-aware string compare */
849 static int basecmp(const struct pathspec_item
*item
,
850 const char *base
, const char *match
, int len
)
852 if (item
->magic
& PATHSPEC_ICASE
) {
853 int ret
, n
= len
> item
->prefix
? item
->prefix
: len
;
854 ret
= strncmp(base
, match
, n
);
861 return ps_strncmp(item
, base
, match
, len
);
864 static int match_dir_prefix(const struct pathspec_item
*item
,
866 const char *match
, int matchlen
)
868 if (basecmp(item
, base
, match
, matchlen
))
872 * If the base is a subdirectory of a path which
873 * was specified, all of them are interesting.
876 base
[matchlen
] == '/' ||
877 match
[matchlen
- 1] == '/')
880 /* Just a random prefix match */
885 * Perform matching on the leading non-wildcard part of
886 * pathspec. item->nowildcard_len must be greater than zero. Return
887 * non-zero if base is matched.
889 static int match_wildcard_base(const struct pathspec_item
*item
,
890 const char *base
, int baselen
,
893 const char *match
= item
->match
;
894 /* the wildcard part is not considered in this function */
895 int matchlen
= item
->nowildcard_len
;
900 * Return early if base is longer than the
901 * non-wildcard part but it does not match.
903 if (baselen
>= matchlen
) {
905 return !basecmp(item
, base
, match
, matchlen
);
909 while (dirlen
&& match
[dirlen
- 1] != '/')
913 * Return early if base is shorter than the
914 * non-wildcard part but it does not match. Note that
915 * base ends with '/' so we are sure it really matches
918 if (basecmp(item
, base
, match
, baselen
))
924 * we could have checked entry against the non-wildcard part
925 * that is not in base and does similar never_interesting
926 * optimization as in match_entry. For now just be happy with
929 return entry_interesting
;
933 * Is a tree entry interesting given the pathspec we have?
935 * Pre-condition: either baselen == base_offset (i.e. empty path)
936 * or base[baselen-1] == '/' (i.e. with trailing slash).
938 static enum interesting
do_match(struct index_state
*istate
,
939 const struct name_entry
*entry
,
940 struct strbuf
*base
, int base_offset
,
941 const struct pathspec
*ps
,
945 int pathlen
, baselen
= base
->len
- base_offset
;
946 enum interesting never_interesting
= ps
->has_wildcard
?
947 entry_not_interesting
: all_entries_not_interesting
;
959 if (!ps
->recursive
||
960 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
962 return all_entries_interesting
;
963 return within_depth(base
->buf
+ base_offset
, baselen
,
964 !!S_ISDIR(entry
->mode
),
966 entry_interesting
: entry_not_interesting
;
969 pathlen
= tree_entry_len(entry
);
971 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
972 const struct pathspec_item
*item
= ps
->items
+i
;
973 const char *match
= item
->match
;
974 const char *base_str
= base
->buf
+ base_offset
;
975 int matchlen
= item
->len
, matched
= 0;
977 if ((!exclude
&& item
->magic
& PATHSPEC_EXCLUDE
) ||
978 ( exclude
&& !(item
->magic
& PATHSPEC_EXCLUDE
)))
981 if (baselen
>= matchlen
) {
982 /* If it doesn't match, move along... */
983 if (!match_dir_prefix(item
, base_str
, match
, matchlen
))
984 goto match_wildcards
;
986 if (!ps
->recursive
||
987 !(ps
->magic
& PATHSPEC_MAXDEPTH
) ||
988 ps
->max_depth
== -1) {
989 if (!item
->attr_match_nr
)
990 return all_entries_interesting
;
995 if (within_depth(base_str
+ matchlen
+ 1,
996 baselen
- matchlen
- 1,
997 !!S_ISDIR(entry
->mode
),
1001 return entry_not_interesting
;
1004 /* Either there must be no base, or the base must match. */
1005 if (baselen
== 0 || !basecmp(item
, base_str
, match
, baselen
)) {
1006 if (match_entry(item
, entry
, pathlen
,
1007 match
+ baselen
, matchlen
- baselen
,
1008 &never_interesting
))
1011 if (item
->nowildcard_len
< item
->len
) {
1012 if (!git_fnmatch(item
, match
+ baselen
, entry
->path
,
1013 item
->nowildcard_len
- baselen
))
1017 * Match all directories. We'll try to
1018 * match files later on.
1020 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
1021 return entry_interesting
;
1024 * When matching against submodules with
1025 * wildcard characters, ensure that the entry
1026 * at least matches up to the first wild
1027 * character. More accurate matching can then
1028 * be performed in the submodule itself.
1030 if (ps
->recurse_submodules
&&
1031 S_ISGITLINK(entry
->mode
) &&
1032 !ps_strncmp(item
, match
+ baselen
,
1034 item
->nowildcard_len
- baselen
))
1042 if (item
->nowildcard_len
== item
->len
)
1045 if (item
->nowildcard_len
&&
1046 !match_wildcard_base(item
, base_str
, baselen
, &matched
))
1050 * Concatenate base and entry->path into one and do
1053 * While we could avoid concatenation in certain cases
1054 * [1], which saves a memcpy and potentially a
1055 * realloc, it turns out not worth it. Measurement on
1056 * linux-2.6 does not show any clear improvements,
1057 * partly because of the nowildcard_len optimization
1058 * in git_fnmatch(). Avoid micro-optimizations here.
1060 * [1] if match_wildcard_base() says the base
1061 * directory is already matched, we only need to match
1062 * the rest, which is shorter so _in theory_ faster.
1065 strbuf_add(base
, entry
->path
, pathlen
);
1067 if (!git_fnmatch(item
, match
, base
->buf
+ base_offset
,
1068 item
->nowildcard_len
)) {
1069 strbuf_setlen(base
, base_offset
+ baselen
);
1074 * When matching against submodules with
1075 * wildcard characters, ensure that the entry
1076 * at least matches up to the first wild
1077 * character. More accurate matching can then
1078 * be performed in the submodule itself.
1080 if (ps
->recurse_submodules
&& S_ISGITLINK(entry
->mode
) &&
1081 !ps_strncmp(item
, match
, base
->buf
+ base_offset
,
1082 item
->nowildcard_len
)) {
1083 strbuf_setlen(base
, base_offset
+ baselen
);
1087 strbuf_setlen(base
, base_offset
+ baselen
);
1090 * Match all directories. We'll try to match files
1092 * max_depth is ignored but we may consider support it
1094 * https://public-inbox.org/git/7vmxo5l2g4.fsf@alter.siamese.dyndns.org/
1096 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
1097 return entry_interesting
;
1100 if (item
->attr_match_nr
) {
1104 * Must not return all_entries_not_interesting
1105 * prematurely. We do not know if all entries do not
1106 * match some attributes with current attr API.
1108 never_interesting
= entry_not_interesting
;
1111 * Consider all directories interesting (because some
1112 * of those files inside may match some attributes
1113 * even though the parent dir does not)
1115 * FIXME: attributes _can_ match directories and we
1116 * can probably return all_entries_interesting or
1117 * all_entries_not_interesting here if matched.
1119 if (S_ISDIR(entry
->mode
))
1120 return entry_interesting
;
1122 strbuf_add(base
, entry
->path
, pathlen
);
1123 ret
= match_pathspec_attrs(istate
, base
->buf
+ base_offset
,
1124 base
->len
- base_offset
, item
);
1125 strbuf_setlen(base
, base_offset
+ baselen
);
1129 return entry_interesting
;
1131 return never_interesting
; /* No matches */
1135 * Is a tree entry interesting given the pathspec we have?
1137 * Pre-condition: either baselen == base_offset (i.e. empty path)
1138 * or base[baselen-1] == '/' (i.e. with trailing slash).
1140 enum interesting
tree_entry_interesting(struct index_state
*istate
,
1141 const struct name_entry
*entry
,
1142 struct strbuf
*base
, int base_offset
,
1143 const struct pathspec
*ps
)
1145 enum interesting positive
, negative
;
1146 positive
= do_match(istate
, entry
, base
, base_offset
, ps
, 0);
1149 * case | entry | positive | negative | result
1150 * -----+-------+----------+----------+-------
1151 * 1 | file | -1 | -1..2 | -1
1152 * 2 | file | 0 | -1..2 | 0
1153 * 3 | file | 1 | -1 | 1
1154 * 4 | file | 1 | 0 | 1
1155 * 5 | file | 1 | 1 | 0
1156 * 6 | file | 1 | 2 | 0
1157 * 7 | file | 2 | -1 | 2
1158 * 8 | file | 2 | 0 | 1
1159 * 9 | file | 2 | 1 | 0
1160 * 10 | file | 2 | 2 | -1
1161 * -----+-------+----------+----------+-------
1162 * 11 | dir | -1 | -1..2 | -1
1163 * 12 | dir | 0 | -1..2 | 0
1164 * 13 | dir | 1 | -1 | 1
1165 * 14 | dir | 1 | 0 | 1
1166 * 15 | dir | 1 | 1 | 1 (*)
1167 * 16 | dir | 1 | 2 | 0
1168 * 17 | dir | 2 | -1 | 2
1169 * 18 | dir | 2 | 0 | 1
1170 * 19 | dir | 2 | 1 | 1 (*)
1171 * 20 | dir | 2 | 2 | -1
1173 * (*) An exclude pattern interested in a directory does not
1174 * necessarily mean it will exclude all of the directory. In
1175 * wildcard case, it can't decide until looking at individual
1176 * files inside. So don't write such directories off yet.
1179 if (!(ps
->magic
& PATHSPEC_EXCLUDE
) ||
1180 positive
<= entry_not_interesting
) /* #1, #2, #11, #12 */
1183 negative
= do_match(istate
, entry
, base
, base_offset
, ps
, 1);
1186 if (positive
== all_entries_interesting
&&
1187 negative
== entry_not_interesting
)
1188 return entry_interesting
;
1190 /* #3, #4, #7, #13, #14, #17 */
1191 if (negative
<= entry_not_interesting
)
1195 if (S_ISDIR(entry
->mode
) &&
1196 positive
>= entry_interesting
&&
1197 negative
== entry_interesting
)
1198 return entry_interesting
;
1200 if ((positive
== entry_interesting
&&
1201 negative
>= entry_interesting
) || /* #5, #6, #16 */
1202 (positive
== all_entries_interesting
&&
1203 negative
== entry_interesting
)) /* #9 */
1204 return entry_not_interesting
;
1206 return all_entries_not_interesting
; /* #10, #20 */