2006-04-24 01:52:20 +02:00
|
|
|
#ifndef CACHE_TREE_H
|
|
|
|
#define CACHE_TREE_H
|
|
|
|
|
|
|
|
struct cache_tree;
|
|
|
|
struct cache_tree_sub {
|
|
|
|
struct cache_tree *cache_tree;
|
|
|
|
int namelen;
|
|
|
|
int used;
|
|
|
|
char name[FLEX_ARRAY];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cache_tree {
|
|
|
|
int entry_count; /* negative means "invalid" */
|
|
|
|
unsigned char sha1[20];
|
|
|
|
int subtree_nr;
|
|
|
|
int subtree_alloc;
|
|
|
|
struct cache_tree_sub **down;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cache_tree *cache_tree(void);
|
2006-04-25 06:18:58 +02:00
|
|
|
void cache_tree_free(struct cache_tree **);
|
2006-04-24 01:52:20 +02:00
|
|
|
void cache_tree_invalidate_path(struct cache_tree *, const char *);
|
2006-04-27 10:33:07 +02:00
|
|
|
struct cache_tree_sub *cache_tree_sub(struct cache_tree *, const char *);
|
2006-04-24 01:52:20 +02:00
|
|
|
|
2007-09-25 10:22:44 +02:00
|
|
|
void cache_tree_write(struct strbuf *, struct cache_tree *root);
|
2006-04-25 06:18:58 +02:00
|
|
|
struct cache_tree *cache_tree_read(const char *buffer, unsigned long size);
|
2006-04-24 01:52:20 +02:00
|
|
|
|
2006-04-25 06:18:58 +02:00
|
|
|
int cache_tree_fully_valid(struct cache_tree *);
|
2006-04-28 01:21:54 +02:00
|
|
|
int cache_tree_update(struct cache_tree *, struct cache_entry **, int, int, int);
|
2006-04-24 01:52:20 +02:00
|
|
|
|
2006-04-26 10:20:50 +02:00
|
|
|
struct cache_tree *cache_tree_find(struct cache_tree *, const char *);
|
|
|
|
|
2006-04-24 01:52:20 +02:00
|
|
|
#endif
|