6a875464b051e043f49cd938fabfada1cfdbd507
   1#ifndef TREE_H
   2#define TREE_H
   3
   4#include "object.h"
   5
   6extern const char *tree_type;
   7
   8struct tree_entry_list {
   9        struct tree_entry_list *next;
  10        unsigned directory : 1;
  11        unsigned executable : 1;
  12        unsigned symlink : 1;
  13        unsigned int mode;
  14        const char *name;
  15        const unsigned char *sha1;
  16};
  17
  18struct tree {
  19        struct object object;
  20        void *buffer;
  21        unsigned long size;
  22};
  23
  24struct tree_entry_list *create_tree_entry_list(struct tree *);
  25void free_tree_entry_list(struct tree_entry_list *);
  26
  27struct tree *lookup_tree(const unsigned char *sha1);
  28
  29int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size);
  30
  31int parse_tree(struct tree *tree);
  32
  33/* Parses and returns the tree in the given ent, chasing tags and commits. */
  34struct tree *parse_tree_indirect(const unsigned char *sha1);
  35
  36#define READ_TREE_RECURSIVE 1
  37typedef int (*read_tree_fn_t)(const unsigned char *, const char *, int, const char *, unsigned int, int);
  38
  39extern int read_tree_recursive(struct tree *tree,
  40                               const char *base, int baselen,
  41                               int stage, const char **match,
  42                               read_tree_fn_t fn);
  43
  44extern int read_tree(struct tree *tree, int stage, const char **paths);
  45
  46#endif /* TREE_H */