tree.h 1.1 KB
Newer Older
1 2 3 4 5 6 7
#ifndef TREE_H
#define TREE_H

#include "object.h"

extern const char *tree_type;

8 9 10 11
struct tree_entry_list {
	struct tree_entry_list *next;
	unsigned directory : 1;
	unsigned executable : 1;
12
	unsigned symlink : 1;
13
	unsigned zeropad : 1;
14
	unsigned int mode;
15 16
	char *name;
	union {
17
		struct object *any;
18 19 20 21 22
		struct tree *tree;
		struct blob *blob;
	} item;
};

23 24
struct tree {
	struct object object;
25
	struct tree_entry_list *entries;
26 27
};

28
struct tree *lookup_tree(const unsigned char *sha1);
29

30 31
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);

32 33
int parse_tree(struct tree *tree);

34 35 36
/* Parses and returns the tree in the given ent, chasing tags and commits. */
struct tree *parse_tree_indirect(const unsigned char *sha1);

37 38 39
#define READ_TREE_RECURSIVE 1
typedef int (*read_tree_fn_t)(unsigned char *, const char *, int, const char *, unsigned int, int);

40 41 42 43
extern int read_tree_recursive(struct tree *tree,
			       const char *base, int baselen,
			       int stage, const char **match,
			       read_tree_fn_t fn);
44

45
extern int read_tree(struct tree *tree, int stage, const char **paths);
46

47
#endif /* TREE_H */