blob: e95883523633a51f833683e96af1738da2868238 [file] [log] [blame]
Junio C Hamano74986462006-04-23 16:52:20 -07001#ifndef CACHE_TREE_H
2#define CACHE_TREE_H
3
Junio C Hamanob9d37a52009-04-20 03:58:18 -07004#include "tree.h"
5
Junio C Hamano74986462006-04-23 16:52:20 -07006struct cache_tree;
7struct cache_tree_sub {
8 struct cache_tree *cache_tree;
9 int namelen;
10 int used;
11 char name[FLEX_ARRAY];
12};
13
14struct 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
22struct cache_tree *cache_tree(void);
Junio C Hamanobad68ec2006-04-24 21:18:58 -070023void cache_tree_free(struct cache_tree **);
Junio C Hamano74986462006-04-23 16:52:20 -070024void cache_tree_invalidate_path(struct cache_tree *, const char *);
Junio C Hamano7927a552006-04-27 01:33:07 -070025struct cache_tree_sub *cache_tree_sub(struct cache_tree *, const char *);
Junio C Hamano74986462006-04-23 16:52:20 -070026
Pierre Habouzit1dffb8f2007-09-25 10:22:44 +020027void cache_tree_write(struct strbuf *, struct cache_tree *root);
Junio C Hamanobad68ec2006-04-24 21:18:58 -070028struct cache_tree *cache_tree_read(const char *buffer, unsigned long size);
Junio C Hamano74986462006-04-23 16:52:20 -070029
Junio C Hamanobad68ec2006-04-24 21:18:58 -070030int cache_tree_fully_valid(struct cache_tree *);
Junio C Hamano2956dd32006-04-27 16:21:54 -070031int cache_tree_update(struct cache_tree *, struct cache_entry **, int, int, int);
Junio C Hamano74986462006-04-23 16:52:20 -070032
Junio C Hamano45525bd2008-01-10 22:49:35 -080033#define WRITE_TREE_UNREADABLE_INDEX (-1)
34#define WRITE_TREE_UNMERGED_INDEX (-2)
35#define WRITE_TREE_PREFIX_ERROR (-3)
36
37int write_cache_as_tree(unsigned char *sha1, int missing_ok, const char *prefix);
Junio C Hamanob9d37a52009-04-20 03:58:18 -070038void prime_cache_tree(struct cache_tree **, struct tree *);
39
Junio C Hamano74986462006-04-23 16:52:20 -070040#endif