blob: b6bd1b4ccfbb8bb69c464ea687c63a2058a424b8 [file] [log] [blame]
Junio C Hamano1b0c7172006-03-29 22:55:43 -08001#ifndef TREE_WALK_H
2#define TREE_WALK_H
3
Junio C Hamano1b0c7172006-03-29 22:55:43 -08004struct name_entry {
brian m. carlson7d924c92016-04-17 23:10:39 +00005 const struct object_id *oid;
Junio C Hamano1b0c7172006-03-29 22:55:43 -08006 const char *path;
7 unsigned int mode;
Junio C Hamano1b0c7172006-03-29 22:55:43 -08008};
9
Linus Torvalds4651ece2007-03-21 10:09:56 -070010struct tree_desc {
11 const void *buffer;
12 struct name_entry entry;
13 unsigned int size;
14};
15
brian m. carlsonce6663a2016-04-17 23:10:40 +000016static inline const struct object_id *tree_entry_extract(struct tree_desc *desc, const char **pathp, unsigned int *modep)
Linus Torvalds4651ece2007-03-21 10:09:56 -070017{
18 *pathp = desc->entry.path;
Kirill Smelkov7146e662014-02-06 15:36:31 +040019 *modep = desc->entry.mode;
brian m. carlsonce6663a2016-04-17 23:10:40 +000020 return desc->entry.oid;
Linus Torvalds4651ece2007-03-21 10:09:56 -070021}
22
Nguyễn Thái Ngọc Duy0de16332011-10-24 17:36:09 +110023static inline int tree_entry_len(const struct name_entry *ne)
Linus Torvalds304de2d2007-03-17 20:06:24 -070024{
brian m. carlson7d924c92016-04-17 23:10:39 +000025 return (const char *)ne->oid - ne->path - 1;
Linus Torvalds304de2d2007-03-17 20:06:24 -070026}
27
David Turner8354fa32016-09-27 16:59:51 -040028/*
29 * The _gently versions of these functions warn and return false on a
30 * corrupt tree entry rather than dying,
31 */
32
Junio C Hamano1b0c7172006-03-29 22:55:43 -080033void update_tree_entry(struct tree_desc *);
David Turner8354fa32016-09-27 16:59:51 -040034int update_tree_entry_gently(struct tree_desc *);
Linus Torvalds6fda5e52007-03-21 10:08:25 -070035void init_tree_desc(struct tree_desc *desc, const void *buf, unsigned long size);
David Turner8354fa32016-09-27 16:59:51 -040036int init_tree_desc_gently(struct tree_desc *desc, const void *buf, unsigned long size);
Junio C Hamano1b0c7172006-03-29 22:55:43 -080037
Elijah Newren2244eab2010-08-24 20:53:11 -060038/*
39 * Helper function that does both tree_entry_extract() and update_tree_entry()
40 * and returns true for success
41 */
Linus Torvalds4c068a92006-05-30 09:45:45 -070042int tree_entry(struct tree_desc *, struct name_entry *);
David Turner8354fa32016-09-27 16:59:51 -040043int tree_entry_gently(struct tree_desc *, struct name_entry *);
Linus Torvalds4c068a92006-05-30 09:45:45 -070044
René Scharfe5c377d32017-08-12 10:32:59 +020045void *fill_tree_descriptor(struct tree_desc *desc, const struct object_id *oid);
Junio C Hamano1b0c7172006-03-29 22:55:43 -080046
Linus Torvalds40d934d2008-03-05 18:59:29 -080047struct traverse_info;
Linus Torvalds91e4f032008-03-05 20:06:18 -080048typedef int (*traverse_callback_t)(int n, unsigned long mask, unsigned long dirmask, struct name_entry *entry, struct traverse_info *);
Linus Torvalds5803c6f2008-03-05 19:44:06 -080049int traverse_trees(int n, struct tree_desc *t, struct traverse_info *info);
Junio C Hamano1b0c7172006-03-29 22:55:43 -080050
David Turner275721c2015-05-20 13:03:38 -040051enum follow_symlinks_result {
52 FOUND = 0, /* This includes out-of-tree links */
53 MISSING_OBJECT = -1, /* The initial symlink is missing */
54 DANGLING_SYMLINK = -2, /*
55 * The initial symlink is there, but
56 * (transitively) points to a missing
57 * in-tree file
58 */
59 SYMLINK_LOOP = -3,
60 NOT_DIR = -4, /*
61 * Somewhere along the symlink chain, a path is
62 * requested which contains a file as a
63 * non-final element.
64 */
65};
66
67enum follow_symlinks_result get_tree_entry_follow_symlinks(unsigned char *tree_sha1, const char *name, unsigned char *result, struct strbuf *result_path, unsigned *mode);
68
Linus Torvalds40d934d2008-03-05 18:59:29 -080069struct traverse_info {
David Turnerd9c2bd52015-12-21 17:34:20 -050070 const char *traverse_path;
Linus Torvalds40d934d2008-03-05 18:59:29 -080071 struct traverse_info *prev;
72 struct name_entry name;
73 int pathlen;
Junio C Hamano2842c0f2011-08-29 12:26:05 -070074 struct pathspec *pathspec;
Linus Torvalds40d934d2008-03-05 18:59:29 -080075
René Scharfe603d2492013-06-16 01:44:43 +020076 unsigned long df_conflicts;
Linus Torvalds40d934d2008-03-05 18:59:29 -080077 traverse_callback_t fn;
78 void *data;
Matthieu Moye6c111b2010-08-11 10:38:07 +020079 int show_all_errors;
Linus Torvalds40d934d2008-03-05 18:59:29 -080080};
Junio C Hamano1b0c7172006-03-29 22:55:43 -080081
Junio C Hamano4dcff632006-04-19 14:05:47 -070082int get_tree_entry(const unsigned char *, const char *, unsigned char *, unsigned *);
Linus Torvalds40d934d2008-03-05 18:59:29 -080083extern char *make_traverse_path(char *path, const struct traverse_info *info, const struct name_entry *n);
84extern void setup_traverse_info(struct traverse_info *info, const char *base);
85
86static inline int traverse_path_len(const struct traverse_info *info, const struct name_entry *n)
87{
Nguyễn Thái Ngọc Duy0de16332011-10-24 17:36:09 +110088 return info->pathlen + tree_entry_len(n);
Linus Torvalds40d934d2008-03-05 18:59:29 -080089}
Junio C Hamano4dcff632006-04-19 14:05:47 -070090
Nguyễn Thái Ngọc Duyd688cf02011-10-24 17:36:10 +110091/* in general, positive means "kind of interesting" */
92enum interesting {
93 all_entries_not_interesting = -1, /* no, and no subsequent entries will be either */
94 entry_not_interesting = 0,
95 entry_interesting = 1,
96 all_entries_interesting = 2 /* yes, and all subsequent entries will be */
97};
98
99extern enum interesting tree_entry_interesting(const struct name_entry *,
100 struct strbuf *, int,
101 const struct pathspec *ps);
Nguyễn Thái Ngọc Duy2c389fc2010-12-15 22:02:40 +0700102
Junio C Hamano1b0c7172006-03-29 22:55:43 -0800103#endif