tree.h 1.2 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
	const char *name;
16
	const unsigned char *sha1;
17 18
};

19 20
struct tree {
	struct object object;
21 22
	void *buffer;
	unsigned long size;
23 24
};

25 26 27
struct tree_entry_list *create_tree_entry_list(struct tree *);
void free_tree_entry_list(struct tree_entry_list *);

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
#define READ_TREE_RECURSIVE 1
38
typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int);
39

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 */