]> git.ipfire.org Git - thirdparty/git.git/blame - tree-walk.h
submodule: use new config API for worktree configurations
[thirdparty/git.git] / tree-walk.h
CommitLineData
1b0c7174
JH
1#ifndef TREE_WALK_H
2#define TREE_WALK_H
3
1b0c7174
JH
4struct name_entry {
5 const unsigned char *sha1;
6 const char *path;
7 unsigned int mode;
1b0c7174
JH
8};
9
4651ece8
LT
10struct tree_desc {
11 const void *buffer;
12 struct name_entry entry;
13 unsigned int size;
14};
15
16static inline const unsigned char *tree_entry_extract(struct tree_desc *desc, const char **pathp, unsigned int *modep)
17{
18 *pathp = desc->entry.path;
7146e66f 19 *modep = desc->entry.mode;
4651ece8
LT
20 return desc->entry.sha1;
21}
22
0de16337 23static inline int tree_entry_len(const struct name_entry *ne)
304de2d2 24{
0de16337 25 return (const char *)ne->sha1 - ne->path - 1;
304de2d2
LT
26}
27
1b0c7174 28void update_tree_entry(struct tree_desc *);
6fda5e51 29void init_tree_desc(struct tree_desc *desc, const void *buf, unsigned long size);
1b0c7174 30
2244eab0
EN
31/*
32 * Helper function that does both tree_entry_extract() and update_tree_entry()
33 * and returns true for success
34 */
4c068a98
LT
35int tree_entry(struct tree_desc *, struct name_entry *);
36
1b0c7174
JH
37void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1);
38
40d934df 39struct traverse_info;
91e4f036 40typedef int (*traverse_callback_t)(int n, unsigned long mask, unsigned long dirmask, struct name_entry *entry, struct traverse_info *);
5803c6f8 41int traverse_trees(int n, struct tree_desc *t, struct traverse_info *info);
1b0c7174 42
275721c2
DT
43enum 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
49 * in-tree file
50 */
51 SYMLINK_LOOP = -3,
52 NOT_DIR = -4, /*
53 * Somewhere along the symlink chain, a path is
54 * requested which contains a file as a
55 * non-final element.
56 */
57};
58
59enum follow_symlinks_result get_tree_entry_follow_symlinks(unsigned char *tree_sha1, const char *name, unsigned char *result, struct strbuf *result_path, unsigned *mode);
60
40d934df
LT
61struct traverse_info {
62 struct traverse_info *prev;
63 struct name_entry name;
64 int pathlen;
2842c0f9 65 struct pathspec *pathspec;
40d934df 66
603d2498 67 unsigned long df_conflicts;
40d934df
LT
68 traverse_callback_t fn;
69 void *data;
e6c111b4 70 int show_all_errors;
40d934df 71};
1b0c7174 72
4dcff634 73int get_tree_entry(const unsigned char *, const char *, unsigned char *, unsigned *);
40d934df
LT
74extern char *make_traverse_path(char *path, const struct traverse_info *info, const struct name_entry *n);
75extern void setup_traverse_info(struct traverse_info *info, const char *base);
76
77static inline int traverse_path_len(const struct traverse_info *info, const struct name_entry *n)
78{
0de16337 79 return info->pathlen + tree_entry_len(n);
40d934df 80}
4dcff634 81
d688cf07
NTND
82/* in general, positive means "kind of interesting" */
83enum 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 */
88};
89
90extern enum interesting tree_entry_interesting(const struct name_entry *,
91 struct strbuf *, int,
92 const struct pathspec *ps);
2c389fc8 93
1b0c7174 94#endif