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