Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 1 | #ifndef CACHE_TREE_H |
| 2 | #define CACHE_TREE_H |
| 3 | |
Junio C Hamano | b9d37a5 | 2009-04-20 03:58:18 -0700 | [diff] [blame] | 4 | #include "tree.h" |
| 5 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 6 | struct cache_tree; |
| 7 | struct cache_tree_sub { |
| 8 | struct cache_tree *cache_tree; |
| 9 | int namelen; |
| 10 | int used; |
| 11 | char name[FLEX_ARRAY]; |
| 12 | }; |
| 13 | |
| 14 | struct cache_tree { |
| 15 | int entry_count; /* negative means "invalid" */ |
| 16 | unsigned char sha1[20]; |
| 17 | int subtree_nr; |
| 18 | int subtree_alloc; |
| 19 | struct cache_tree_sub **down; |
| 20 | }; |
| 21 | |
| 22 | struct cache_tree *cache_tree(void); |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 23 | void cache_tree_free(struct cache_tree **); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 24 | void cache_tree_invalidate_path(struct cache_tree *, const char *); |
Junio C Hamano | 7927a55 | 2006-04-27 01:33:07 -0700 | [diff] [blame] | 25 | struct cache_tree_sub *cache_tree_sub(struct cache_tree *, const char *); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 26 | |
Pierre Habouzit | 1dffb8f | 2007-09-25 10:22:44 +0200 | [diff] [blame] | 27 | void cache_tree_write(struct strbuf *, struct cache_tree *root); |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 28 | struct cache_tree *cache_tree_read(const char *buffer, unsigned long size); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 29 | |
Junio C Hamano | bad68ec | 2006-04-24 21:18:58 -0700 | [diff] [blame] | 30 | int cache_tree_fully_valid(struct cache_tree *); |
Junio C Hamano | 2956dd3 | 2006-04-27 16:21:54 -0700 | [diff] [blame] | 31 | int cache_tree_update(struct cache_tree *, struct cache_entry **, int, int, int); |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 32 | |
Junio C Hamano | 45525bd | 2008-01-10 22:49:35 -0800 | [diff] [blame] | 33 | #define WRITE_TREE_UNREADABLE_INDEX (-1) |
| 34 | #define WRITE_TREE_UNMERGED_INDEX (-2) |
| 35 | #define WRITE_TREE_PREFIX_ERROR (-3) |
| 36 | |
| 37 | int write_cache_as_tree(unsigned char *sha1, int missing_ok, const char *prefix); |
Junio C Hamano | b9d37a5 | 2009-04-20 03:58:18 -0700 | [diff] [blame] | 38 | void prime_cache_tree(struct cache_tree **, struct tree *); |
| 39 | |
Junio C Hamano | 7498646 | 2006-04-23 16:52:20 -0700 | [diff] [blame] | 40 | #endif |