2005-04-18 11:39:48 -07:00
|
|
|
#ifndef TREE_H
|
|
|
|
#define TREE_H
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
|
|
|
extern const char *tree_type;
|
|
|
|
|
|
|
|
struct tree {
|
|
|
|
struct object object;
|
2006-05-29 12:16:12 -07:00
|
|
|
void *buffer;
|
|
|
|
unsigned long size;
|
2005-04-18 11:39:48 -07:00
|
|
|
};
|
|
|
|
|
2005-06-03 11:05:39 -04:00
|
|
|
struct tree *lookup_tree(const unsigned char *sha1);
|
2005-04-18 11:39:48 -07:00
|
|
|
|
2005-05-06 13:48:34 -04:00
|
|
|
int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
|
|
|
|
|
2005-04-18 11:39:48 -07:00
|
|
|
int parse_tree(struct tree *tree);
|
|
|
|
|
2005-09-05 02:03:51 -04: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 09:38:20 -08:00
|
|
|
#define READ_TREE_RECURSIVE 1
|
2006-05-29 12:16:46 -07:00
|
|
|
typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int);
|
2005-11-26 09:38:20 -08:00
|
|
|
|
2006-01-26 01:13:36 -05:00
|
|
|
extern int read_tree_recursive(struct tree *tree,
|
|
|
|
const char *base, int baselen,
|
|
|
|
int stage, const char **match,
|
|
|
|
read_tree_fn_t fn);
|
2005-11-26 09:38:20 -08:00
|
|
|
|
2006-01-26 01:13:36 -05:00
|
|
|
extern int read_tree(struct tree *tree, int stage, const char **paths);
|
2005-11-26 09:38:20 -08:00
|
|
|
|
2005-04-18 11:39:48 -07:00
|
|
|
#endif /* TREE_H */
|