]> git.ipfire.org Git - thirdparty/git.git/blame - tree.h
Git 2.2
[thirdparty/git.git] / tree.h
CommitLineData
6eb8ae00
DB
1#ifndef TREE_H
2#define TREE_H
3
4#include "object.h"
5
6extern const char *tree_type;
7
8struct tree {
9 struct object object;
136f2e54
LT
10 void *buffer;
11 unsigned long size;
6eb8ae00
DB
12};
13
5d6ccf5c 14struct tree *lookup_tree(const unsigned char *sha1);
6eb8ae00 15
bd2c39f5
NP
16int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
17
6eb8ae00 18int parse_tree(struct tree *tree);
6e454b9a 19void free_tree_buffer(struct tree *tree);
6eb8ae00 20
77675e2a
DB
21/* Parses and returns the tree in the given ent, chasing tags and commits. */
22struct tree *parse_tree_indirect(const unsigned char *sha1);
23
3c5e8468 24#define READ_TREE_RECURSIVE 1
671f0707 25typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int, void *);
3c5e8468 26
521698b1
DB
27extern int read_tree_recursive(struct tree *tree,
28 const char *base, int baselen,
18e4f405 29 int stage, const struct pathspec *pathspec,
671f0707 30 read_tree_fn_t fn, void *context);
3c5e8468 31
f0096c06 32extern int read_tree(struct tree *tree, int stage, struct pathspec *pathspec);
3c5e8468 33
6eb8ae00 34#endif /* TREE_H */