5 const unsigned char *sha1
;
12 struct name_entry entry
;
16 static inline const unsigned char *tree_entry_extract(struct tree_desc
*desc
, const char **pathp
, unsigned int *modep
)
18 *pathp
= desc
->entry
.path
;
19 *modep
= desc
->entry
.mode
;
20 return desc
->entry
.sha1
;
23 static inline int tree_entry_len(const struct name_entry
*ne
)
25 return (const char *)ne
->sha1
- ne
->path
- 1;
28 void update_tree_entry(struct tree_desc
*);
29 void init_tree_desc(struct tree_desc
*desc
, const void *buf
, unsigned long size
);
32 * Helper function that does both tree_entry_extract() and update_tree_entry()
33 * and returns true for success
35 int tree_entry(struct tree_desc
*, struct name_entry
*);
37 void *fill_tree_descriptor(struct tree_desc
*desc
, const unsigned char *sha1
);
40 typedef int (*traverse_callback_t
)(int n
, unsigned long mask
, unsigned long dirmask
, struct name_entry
*entry
, struct traverse_info
*);
41 int traverse_trees(int n
, struct tree_desc
*t
, struct traverse_info
*info
);
43 enum follow_symlinks_result
{
44 FOUND
= 0, /* This includes out-of-tree links */
45 MISSING_OBJECT
= -1, /* The initial symlink is missing */
46 DANGLING_SYMLINK
= -2, /*
47 * The initial symlink is there, but
48 * (transitively) points to a missing
53 * Somewhere along the symlink chain, a path is
54 * requested which contains a file as a
59 enum follow_symlinks_result
get_tree_entry_follow_symlinks(unsigned char *tree_sha1
, const char *name
, unsigned char *result
, struct strbuf
*result_path
, unsigned *mode
);
61 struct traverse_info
{
62 struct traverse_info
*prev
;
63 struct name_entry name
;
65 struct pathspec
*pathspec
;
67 unsigned long df_conflicts
;
68 traverse_callback_t fn
;
73 int get_tree_entry(const unsigned char *, const char *, unsigned char *, unsigned *);
74 extern char *make_traverse_path(char *path
, const struct traverse_info
*info
, const struct name_entry
*n
);
75 extern void setup_traverse_info(struct traverse_info
*info
, const char *base
);
77 static inline int traverse_path_len(const struct traverse_info
*info
, const struct name_entry
*n
)
79 return info
->pathlen
+ tree_entry_len(n
);
82 /* in general, positive means "kind of interesting" */
84 all_entries_not_interesting
= -1, /* no, and no subsequent entries will be either */
85 entry_not_interesting
= 0,
86 entry_interesting
= 1,
87 all_entries_interesting
= 2 /* yes, and all subsequent entries will be */
90 extern enum interesting
tree_entry_interesting(const struct name_entry
*,
92 const struct pathspec
*ps
);