2005-04-18 18:39:48 +00:00
|
|
|
#ifndef TREE_H
|
|
|
|
#define TREE_H
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
|
|
|
extern const char *tree_type;
|
|
|
|
|
|
|
|
struct tree {
|
|
|
|
struct object object;
|
2006-05-29 19:16:12 +00:00
|
|
|
void *buffer;
|
|
|
|
unsigned long size;
|
2005-04-18 18:39:48 +00:00
|
|
|
};
|
|
|
|
|
2005-06-03 15:05:39 +00:00
|
|
|
struct tree *lookup_tree(const unsigned char *sha1);
|
2005-04-18 18:39:48 +00:00
|
|
|
|
2005-05-06 17:48:34 +00:00
|
|
|
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
|
|
|
|
|
2005-04-18 18:39:48 +00:00
|
|
|
int parse_tree(struct tree *tree);
|
2013-06-05 22:37:39 +00:00
|
|
|
void free_tree_buffer(struct tree *tree);
|
2005-04-18 18:39:48 +00:00
|
|
|
|
2005-09-05 06:03:51 +00:00
|
|
|
/* Parses and returns the tree in the given ent, chasing tags and commits. */
|
|
|
|
struct tree *parse_tree_indirect(const unsigned char *sha1);
|
|
|
|
|
2005-11-26 17:38:20 +00:00
|
|
|
#define READ_TREE_RECURSIVE 1
|
2008-07-14 19:22:12 +00:00
|
|
|
typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int, void *);
|
2005-11-26 17:38:20 +00:00
|
|
|
|
2006-01-26 06:13:36 +00:00
|
|
|
extern int read_tree_recursive(struct tree *tree,
|
|
|
|
const char *base, int baselen,
|
2013-07-14 08:35:52 +00:00
|
|
|
int stage, const struct pathspec *pathspec,
|
2008-07-14 19:22:12 +00:00
|
|
|
read_tree_fn_t fn, void *context);
|
2005-11-26 17:38:20 +00:00
|
|
|
|
2011-03-25 09:34:19 +00:00
|
|
|
extern int read_tree(struct tree *tree, int stage, struct pathspec *pathspec);
|
2005-11-26 17:38:20 +00:00
|
|
|
|
2005-04-18 18:39:48 +00:00
|
|
|
#endif /* TREE_H */
|