3 #include "unpack-trees.h"
7 static const char *get_mode(const char *str
, unsigned int *modep
)
10 unsigned int mode
= 0;
15 while ((c
= *str
++) != ' ') {
16 if (c
< '0' || c
> '7')
18 mode
= (mode
<< 3) + (c
- '0');
24 static void decode_tree_entry(struct tree_desc
*desc
, const char *buf
, unsigned long size
)
27 unsigned int mode
, len
;
29 if (size
< 24 || buf
[size
- 21])
30 die("corrupt tree file");
32 path
= get_mode(buf
, &mode
);
34 die("corrupt tree file");
35 len
= strlen(path
) + 1;
37 /* Initialize the descriptor entry */
38 desc
->entry
.path
= path
;
39 desc
->entry
.mode
= mode
;
40 desc
->entry
.sha1
= (const unsigned char *)(path
+ len
);
43 void init_tree_desc(struct tree_desc
*desc
, const void *buffer
, unsigned long size
)
45 desc
->buffer
= buffer
;
48 decode_tree_entry(desc
, buffer
, size
);
51 void *fill_tree_descriptor(struct tree_desc
*desc
, const unsigned char *sha1
)
53 unsigned long size
= 0;
57 buf
= read_object_with_reference(sha1
, tree_type
, &size
, NULL
);
59 die("unable to read tree %s", sha1_to_hex(sha1
));
61 init_tree_desc(desc
, buf
, size
);
65 static void entry_clear(struct name_entry
*a
)
67 memset(a
, 0, sizeof(*a
));
70 static void entry_extract(struct tree_desc
*t
, struct name_entry
*a
)
75 void update_tree_entry(struct tree_desc
*desc
)
77 const void *buf
= desc
->buffer
;
78 const unsigned char *end
= desc
->entry
.sha1
+ 20;
79 unsigned long size
= desc
->size
;
80 unsigned long len
= end
- (const unsigned char *)buf
;
83 die("corrupt tree file");
89 decode_tree_entry(desc
, buf
, size
);
92 int tree_entry(struct tree_desc
*desc
, struct name_entry
*entry
)
98 update_tree_entry(desc
);
102 void setup_traverse_info(struct traverse_info
*info
, const char *base
)
104 int pathlen
= strlen(base
);
105 static struct traverse_info dummy
;
107 memset(info
, 0, sizeof(*info
));
108 if (pathlen
&& base
[pathlen
-1] == '/')
110 info
->pathlen
= pathlen
? pathlen
+ 1 : 0;
111 info
->name
.path
= base
;
112 info
->name
.sha1
= (void *)(base
+ pathlen
+ 1);
117 char *make_traverse_path(char *path
, const struct traverse_info
*info
, const struct name_entry
*n
)
119 int len
= tree_entry_len(n
->path
, n
->sha1
);
120 int pathlen
= info
->pathlen
;
122 path
[pathlen
+ len
] = 0;
124 memcpy(path
+ pathlen
, n
->path
, len
);
127 path
[--pathlen
] = '/';
129 len
= tree_entry_len(n
->path
, n
->sha1
);
136 struct tree_desc_skip
{
137 struct tree_desc_skip
*prev
;
143 struct tree_desc_skip
*skip
;
146 static int name_compare(const char *a
, int a_len
,
147 const char *b
, int b_len
)
149 int len
= (a_len
< b_len
) ? a_len
: b_len
;
150 int cmp
= memcmp(a
, b
, len
);
153 return (a_len
- b_len
);
156 static int check_entry_match(const char *a
, int a_len
, const char *b
, int b_len
)
159 * The caller wants to pick *a* from a tree or nothing.
160 * We are looking at *b* in a tree.
162 * (0) If a and b are the same name, we are trivially happy.
164 * There are three possibilities where *a* could be hiding
167 * (1) *a* == "t", *b* == "ab" i.e. *b* sorts earlier than *a* no
169 * (2) *a* == "t", *b* == "t-2" and "t" is a subtree in the tree;
170 * (3) *a* == "t-2", *b* == "t" and "t-2" is a blob in the tree.
172 * Otherwise we know *a* won't appear in the tree without
176 int cmp
= name_compare(a
, a_len
, b
, b_len
);
178 /* Most common case first -- reading sync'd trees */
183 /* a comes after b; it does not matter if it is case (3)
184 if (b_len < a_len && !memcmp(a, b, b_len) && a[b_len] < '/')
187 return 1; /* keep looking */
190 /* b comes after a; are we looking at case (2)? */
191 if (a_len
< b_len
&& !memcmp(a
, b
, a_len
) && b
[a_len
] < '/')
192 return 1; /* keep looking */
194 return -1; /* a cannot appear in the tree */
198 * From the extended tree_desc, extract the first name entry, while
199 * paying attention to the candidate "first" name. Most importantly,
200 * when looking for an entry, if there are entries that sorts earlier
201 * in the tree object representation than that name, skip them and
202 * process the named entry first. We will remember that we haven't
203 * processed the first entry yet, and in the later call skip the
204 * entry we processed early when update_extended_entry() is called.
206 * E.g. if the underlying tree object has these entries:
213 * and the "first" asks for "t", remember that we still need to
214 * process "t-1" and "t-2" but extract "t". After processing the
215 * entry "t" from this call, the caller will let us know by calling
216 * update_extended_entry() that we can remember "t" has been processed
220 static void extended_entry_extract(struct tree_desc_x
*t
,
221 struct name_entry
*a
,
227 struct tree_desc probe
;
228 struct tree_desc_skip
*skip
;
231 * Extract the first entry from the tree_desc, but skip the
232 * ones that we already returned in earlier rounds.
237 break; /* not found */
239 entry_extract(&t
->d
, a
);
240 for (skip
= t
->skip
; skip
; skip
= skip
->prev
)
241 if (a
->path
== skip
->ptr
)
245 /* We have processed this entry already. */
246 update_tree_entry(&t
->d
);
249 if (!first
|| !a
->path
)
253 * The caller wants "first" from this tree, or nothing.
256 len
= tree_entry_len(a
->path
, a
->sha1
);
257 switch (check_entry_match(first
, first_len
, path
, len
)) {
267 * We need to look-ahead -- we suspect that a subtree whose
268 * name is "first" may be hiding behind the current entry "path".
272 entry_extract(&probe
, a
);
274 len
= tree_entry_len(a
->path
, a
->sha1
);
275 switch (check_entry_match(first
, first_len
, path
, len
)) {
281 update_tree_entry(&probe
);
289 static void update_extended_entry(struct tree_desc_x
*t
, struct name_entry
*a
)
291 if (t
->d
.entry
.path
== a
->path
) {
292 update_tree_entry(&t
->d
);
294 /* we have returned this entry early */
295 struct tree_desc_skip
*skip
= xmalloc(sizeof(*skip
));
297 skip
->prev
= t
->skip
;
302 static void free_extended_entry(struct tree_desc_x
*t
)
304 struct tree_desc_skip
*p
, *s
;
306 for (s
= t
->skip
; s
; s
= p
) {
312 static inline int prune_traversal(struct name_entry
*e
,
313 struct traverse_info
*info
,
315 int still_interesting
)
317 if (!info
->pathspec
|| still_interesting
== 2)
319 if (still_interesting
< 0)
320 return still_interesting
;
321 return tree_entry_interesting(e
, base
, 0, info
->pathspec
);
324 int traverse_trees(int n
, struct tree_desc
*t
, struct traverse_info
*info
)
328 struct name_entry
*entry
= xmalloc(n
*sizeof(*entry
));
330 struct tree_desc_x
*tx
= xcalloc(n
, sizeof(*tx
));
331 struct strbuf base
= STRBUF_INIT
;
334 for (i
= 0; i
< n
; i
++)
338 strbuf_grow(&base
, info
->pathlen
);
339 make_traverse_path(base
.buf
, info
->prev
, &info
->name
);
340 base
.buf
[info
->pathlen
-1] = '/';
341 strbuf_setlen(&base
, info
->pathlen
);
344 unsigned long mask
, dirmask
;
345 const char *first
= NULL
;
347 struct name_entry
*e
;
350 for (i
= 0; i
< n
; i
++) {
352 extended_entry_extract(tx
+ i
, e
, NULL
, 0);
356 * A tree may have "t-2" at the current location even
357 * though it may have "t" that is a subtree behind it,
358 * and another tree may return "t". We want to grab
359 * all "t" from all trees to match in such a case.
361 for (i
= 0; i
< n
; i
++) {
365 len
= tree_entry_len(e
->path
, e
->sha1
);
371 if (name_compare(e
->path
, len
, first
, first_len
) < 0) {
378 for (i
= 0; i
< n
; i
++) {
380 extended_entry_extract(tx
+ i
, e
, first
, first_len
);
381 /* Cull the ones that are not the earliest */
384 len
= tree_entry_len(e
->path
, e
->sha1
);
385 if (name_compare(e
->path
, len
, first
, first_len
))
390 /* Now we have in entry[i] the earliest name from the trees */
393 for (i
= 0; i
< n
; i
++) {
397 if (S_ISDIR(entry
[i
].mode
))
403 interesting
= prune_traversal(e
, info
, &base
, interesting
);
407 ret
= info
->fn(n
, mask
, dirmask
, entry
, info
);
410 if (!info
->show_all_errors
)
416 for (i
= 0; i
< n
; i
++)
417 if (mask
& (1ul << i
))
418 update_extended_entry(tx
+ i
, entry
+ i
);
421 for (i
= 0; i
< n
; i
++)
422 free_extended_entry(tx
+ i
);
424 strbuf_release(&base
);
428 static int find_tree_entry(struct tree_desc
*t
, const char *name
, unsigned char *result
, unsigned *mode
)
430 int namelen
= strlen(name
);
433 const unsigned char *sha1
;
436 sha1
= tree_entry_extract(t
, &entry
, mode
);
437 update_tree_entry(t
);
438 entrylen
= tree_entry_len(entry
, sha1
);
439 if (entrylen
> namelen
)
441 cmp
= memcmp(name
, entry
, entrylen
);
446 if (entrylen
== namelen
) {
447 hashcpy(result
, sha1
);
450 if (name
[entrylen
] != '/')
454 if (++entrylen
== namelen
) {
455 hashcpy(result
, sha1
);
458 return get_tree_entry(sha1
, name
+ entrylen
, result
, mode
);
463 int get_tree_entry(const unsigned char *tree_sha1
, const char *name
, unsigned char *sha1
, unsigned *mode
)
469 unsigned char root
[20];
471 tree
= read_object_with_reference(tree_sha1
, tree_type
, &size
, root
);
475 if (name
[0] == '\0') {
481 init_tree_desc(&t
, tree
, size
);
482 retval
= find_tree_entry(&t
, name
, sha1
, mode
);
487 static int match_entry(const struct name_entry
*entry
, int pathlen
,
488 const char *match
, int matchlen
,
489 int *never_interesting
)
491 int m
= -1; /* signals that we haven't called strncmp() */
493 if (*never_interesting
) {
495 * We have not seen any match that sorts later
496 * than the current path.
500 * Does match sort strictly earlier than path
501 * with their common parts?
503 m
= strncmp(match
, entry
->path
,
504 (matchlen
< pathlen
) ? matchlen
: pathlen
);
509 * If we come here even once, that means there is at
510 * least one pathspec that would sort equal to or
511 * later than the path we are currently looking at.
512 * In other words, if we have never reached this point
513 * after iterating all pathspecs, it means all
514 * pathspecs are either outside of base, or inside the
515 * base but sorts strictly earlier than the current
516 * one. In either case, they will never match the
517 * subsequent entries. In such a case, we initialized
518 * the variable to -1 and that is what will be
519 * returned, allowing the caller to terminate early.
521 *never_interesting
= 0;
524 if (pathlen
> matchlen
)
527 if (matchlen
> pathlen
) {
528 if (match
[pathlen
] != '/')
530 if (!S_ISDIR(entry
->mode
))
536 * we cheated and did not do strncmp(), so we do
539 m
= strncmp(match
, entry
->path
, pathlen
);
542 * If common part matched earlier then it is a hit,
543 * because we rejected the case where path is not a
544 * leading directory and is shorter than match.
552 static int match_dir_prefix(const char *base
, int baselen
,
553 const char *match
, int matchlen
)
555 if (strncmp(base
, match
, matchlen
))
559 * If the base is a subdirectory of a path which
560 * was specified, all of them are interesting.
563 base
[matchlen
] == '/' ||
564 match
[matchlen
- 1] == '/')
567 /* Just a random prefix match */
572 * Is a tree entry interesting given the pathspec we have?
574 * Pre-condition: either baselen == base_offset (i.e. empty path)
575 * or base[baselen-1] == '/' (i.e. with trailing slash).
578 * - 2 for "yes, and all subsequent entries will be"
581 * - negative for "no, and no subsequent entries will be either"
583 int tree_entry_interesting(const struct name_entry
*entry
,
584 struct strbuf
*base
, int base_offset
,
585 const struct pathspec
*ps
)
588 int pathlen
, baselen
= base
->len
- base_offset
;
589 int never_interesting
= ps
->has_wildcard
? 0 : -1;
592 if (!ps
->recursive
|| ps
->max_depth
== -1)
594 return !!within_depth(base
->buf
+ base_offset
, baselen
,
595 !!S_ISDIR(entry
->mode
),
599 pathlen
= tree_entry_len(entry
->path
, entry
->sha1
);
601 for (i
= ps
->nr
- 1; i
>= 0; i
--) {
602 const struct pathspec_item
*item
= ps
->items
+i
;
603 const char *match
= item
->match
;
604 const char *base_str
= base
->buf
+ base_offset
;
605 int matchlen
= item
->len
;
607 if (baselen
>= matchlen
) {
608 /* If it doesn't match, move along... */
609 if (!match_dir_prefix(base_str
, baselen
, match
, matchlen
))
610 goto match_wildcards
;
612 if (!ps
->recursive
|| ps
->max_depth
== -1)
615 return !!within_depth(base_str
+ matchlen
+ 1,
616 baselen
- matchlen
- 1,
617 !!S_ISDIR(entry
->mode
),
621 /* Does the base match? */
622 if (!strncmp(base_str
, match
, baselen
)) {
623 if (match_entry(entry
, pathlen
,
624 match
+ baselen
, matchlen
- baselen
,
628 if (ps
->items
[i
].use_wildcard
) {
629 if (!fnmatch(match
+ baselen
, entry
->path
, 0))
633 * Match all directories. We'll try to
634 * match files later on.
636 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
644 if (!ps
->items
[i
].use_wildcard
)
648 * Concatenate base and entry->path into one and do
652 strbuf_add(base
, entry
->path
, pathlen
);
654 if (!fnmatch(match
, base
->buf
+ base_offset
, 0)) {
655 strbuf_setlen(base
, base_offset
+ baselen
);
658 strbuf_setlen(base
, base_offset
+ baselen
);
661 * Match all directories. We'll try to match files
664 if (ps
->recursive
&& S_ISDIR(entry
->mode
))
667 return never_interesting
; /* No matches */