blob: 884fae826cb8c296520aecbc8c23d9848dacb606 [file] [log] [blame]
Linus Torvaldse83c5162005-04-07 15:13:13 -07001#ifndef CACHE_H
2#define CACHE_H
3
Junio C Hamano4050c0d2005-12-05 11:54:29 -08004#include "git-compat-util.h"
Pierre Habouzit5ecd2932007-09-16 15:51:04 +02005#include "strbuf.h"
Linus Torvaldscf558702008-01-22 18:41:14 -08006#include "hash.h"
Linus Torvaldse83c5162005-04-07 15:13:13 -07007
Linus Torvaldscef661f2005-04-21 12:33:22 -07008#include SHA1_HEADER
Linus Torvaldse83c5162005-04-07 15:13:13 -07009#include <zlib.h>
10
David Symonds609a2282007-11-07 14:24:28 +110011#if defined(NO_DEFLATE_BOUND) || ZLIB_VERNUM < 0x1200
Edgar Toernig9da3acf2005-04-30 09:51:03 -070012#define deflateBound(c,s) ((s) + (((s) + 7) >> 3) + (((s) + 63) >> 6) + 11)
13#endif
14
Timo Hirvonen962554c2006-02-26 17:13:46 +020015#if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT)
Edgar Toernigb6829692005-04-30 09:51:03 -070016#define DTYPE(de) ((de)->d_type)
17#else
Junio C Hamano0bdd79a2006-01-20 13:33:20 -080018#undef DT_UNKNOWN
19#undef DT_DIR
20#undef DT_REG
21#undef DT_LNK
Edgar Toernigb6829692005-04-30 09:51:03 -070022#define DT_UNKNOWN 0
23#define DT_DIR 1
24#define DT_REG 2
Junio C Hamanoa15c1c62005-05-12 17:16:04 -070025#define DT_LNK 3
Edgar Toernigb6829692005-04-30 09:51:03 -070026#define DTYPE(de) DT_UNKNOWN
27#endif
28
Martin Koegler40689ae2007-04-22 18:43:56 +020029/* unknown mode (impossible combination S_IFIFO|S_IFCHR) */
30#define S_IFINVALID 0030000
31
Linus Torvaldse83c5162005-04-07 15:13:13 -070032/*
Linus Torvalds9eec4792007-04-09 21:14:58 -070033 * A "directory link" is a link to another git directory.
34 *
35 * The value 0160000 is not normally a valid mode, and
36 * also just happens to be S_IFDIR + S_IFLNK
37 *
38 * NOTE! We *really* shouldn't depend on the S_IFxxx macros
39 * always having the same values everywhere. We should use
40 * our internal git values for these things, and then we can
41 * translate that to the OS-specific value. It just so
42 * happens that everybody shares the same bit representation
43 * in the UNIX world (and apparently wider too..)
44 */
Martin Waitz302b9282007-05-21 22:08:28 +020045#define S_IFGITLINK 0160000
46#define S_ISGITLINK(m) (((m) & S_IFMT) == S_IFGITLINK)
Linus Torvalds9eec4792007-04-09 21:14:58 -070047
48/*
Linus Torvalds2386d652005-07-13 18:46:20 -070049 * Intensive research over the course of many years has shown that
50 * port 9418 is totally unused by anything else. Or
51 *
52 * Your search - "port 9418" - did not match any documents.
53 *
54 * as www.google.com puts it.
Linus Torvaldsba8a4972005-09-12 11:23:00 -070055 *
56 * This port has been properly assigned for git use by IANA:
57 * git (Assigned-9418) [I06-050728-0001].
58 *
59 * git 9418/tcp git pack transfer service
60 * git 9418/udp git pack transfer service
61 *
62 * with Linus Torvalds <torvalds@osdl.org> as the point of
63 * contact. September 2005.
64 *
65 * See http://www.iana.org/assignments/port-numbers
Linus Torvalds2386d652005-07-13 18:46:20 -070066 */
67#define DEFAULT_GIT_PORT 9418
68
69/*
Linus Torvaldse83c5162005-04-07 15:13:13 -070070 * Basic data structures for the directory cache
Linus Torvaldse83c5162005-04-07 15:13:13 -070071 */
72
73#define CACHE_SIGNATURE 0x44495243 /* "DIRC" */
74struct cache_header {
Linus Torvaldsccc4feb2005-04-15 10:44:27 -070075 unsigned int hdr_signature;
76 unsigned int hdr_version;
77 unsigned int hdr_entries;
Linus Torvaldse83c5162005-04-07 15:13:13 -070078};
79
80/*
81 * The "cache_time" is just the low 32 bits of the
82 * time. It doesn't matter if it overflows - we only
83 * check it for equality in the 32 bits we save.
84 */
85struct cache_time {
86 unsigned int sec;
87 unsigned int nsec;
88};
89
90/*
91 * dev/ino/uid/gid/size are also just tracked to the low 32 bits
92 * Again - this is just a (very strong in practice) heuristic that
93 * the inode hasn't changed.
Linus Torvaldsccc4feb2005-04-15 10:44:27 -070094 *
95 * We save the fields in big-endian order to allow using the
96 * index file over NFS transparently.
Linus Torvaldse83c5162005-04-07 15:13:13 -070097 */
Linus Torvalds7a51ed62008-01-14 16:03:17 -080098struct ondisk_cache_entry {
99 struct cache_time ctime;
100 struct cache_time mtime;
101 unsigned int dev;
102 unsigned int ino;
103 unsigned int mode;
104 unsigned int uid;
105 unsigned int gid;
106 unsigned int size;
107 unsigned char sha1[20];
108 unsigned short flags;
109 char name[FLEX_ARRAY]; /* more */
110};
111
Linus Torvaldse83c5162005-04-07 15:13:13 -0700112struct cache_entry {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800113 unsigned int ce_ctime;
114 unsigned int ce_mtime;
Linus Torvaldsccc4feb2005-04-15 10:44:27 -0700115 unsigned int ce_dev;
116 unsigned int ce_ino;
117 unsigned int ce_mode;
118 unsigned int ce_uid;
119 unsigned int ce_gid;
120 unsigned int ce_size;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800121 unsigned int ce_flags;
Linus Torvaldse83c5162005-04-07 15:13:13 -0700122 unsigned char sha1[20];
Linus Torvaldseb7a2f12008-02-22 20:41:17 -0800123 struct cache_entry *next;
Junio C Hamano8f1d2e62006-01-07 01:33:54 -0800124 char name[FLEX_ARRAY]; /* more */
Linus Torvaldse83c5162005-04-07 15:13:13 -0700125};
126
Linus Torvalds95fd5bf2005-04-15 22:51:44 -0700127#define CE_NAMEMASK (0x0fff)
128#define CE_STAGEMASK (0x3000)
Junio C Hamano5f730762006-02-08 21:15:24 -0800129#define CE_VALID (0x8000)
Junio C Hamanoaee46192005-04-16 08:33:23 -0700130#define CE_STAGESHIFT 12
Linus Torvalds95fd5bf2005-04-15 22:51:44 -0700131
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800132/* In-memory only */
133#define CE_UPDATE (0x10000)
134#define CE_REMOVE (0x20000)
Junio C Hamanoeadb5832008-01-18 23:45:24 -0800135#define CE_UPTODATE (0x40000)
Linus Torvalds11029522008-03-22 14:22:44 -0700136#define CE_ADDED (0x80000)
Linus Torvaldsa22c6372008-02-22 20:37:40 -0800137
138#define CE_HASHED (0x100000)
139#define CE_UNHASHED (0x200000)
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800140
Linus Torvaldsd070e3a2008-02-22 20:39:21 -0800141/*
Linus Torvaldseb7a2f12008-02-22 20:41:17 -0800142 * Copy the sha1 and stat state of a cache entry from one to
143 * another. But we never change the name, or the hash state!
144 */
145#define CE_STATE_MASK (CE_HASHED | CE_UNHASHED)
146static inline void copy_cache_entry(struct cache_entry *dst, struct cache_entry *src)
147{
148 unsigned int state = dst->ce_flags & CE_STATE_MASK;
149
150 /* Don't copy hash chain and name */
151 memcpy(dst, src, offsetof(struct cache_entry, next));
152
153 /* Restore the hash state */
154 dst->ce_flags = (dst->ce_flags & ~CE_STATE_MASK) | state;
155}
156
Junio C Hamano7fec10b2008-01-18 23:42:00 -0800157static inline unsigned create_ce_flags(size_t len, unsigned stage)
158{
159 if (len >= CE_NAMEMASK)
160 len = CE_NAMEMASK;
161 return (len | (stage << CE_STAGESHIFT));
162}
163
164static inline size_t ce_namelen(const struct cache_entry *ce)
165{
166 size_t len = ce->ce_flags & CE_NAMEMASK;
167 if (len < CE_NAMEMASK)
168 return len;
169 return strlen(ce->name + CE_NAMEMASK) + CE_NAMEMASK;
170}
171
Junio C Hamanoaee46192005-04-16 08:33:23 -0700172#define ce_size(ce) cache_entry_size(ce_namelen(ce))
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800173#define ondisk_ce_size(ce) ondisk_cache_entry_size(ce_namelen(ce))
174#define ce_stage(ce) ((CE_STAGEMASK & (ce)->ce_flags) >> CE_STAGESHIFT)
Junio C Hamanoeadb5832008-01-18 23:45:24 -0800175#define ce_uptodate(ce) ((ce)->ce_flags & CE_UPTODATE)
176#define ce_mark_uptodate(ce) ((ce)->ce_flags |= CE_UPTODATE)
Junio C Hamanoaee46192005-04-16 08:33:23 -0700177
Linus Torvaldse4479472005-04-16 22:26:31 -0700178#define ce_permissions(mode) (((mode) & 0100) ? 0755 : 0644)
Kay Sievers8ae0a8c2005-05-05 14:38:25 +0200179static inline unsigned int create_ce_mode(unsigned int mode)
180{
Kay Sievers8ae0a8c2005-05-05 14:38:25 +0200181 if (S_ISLNK(mode))
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800182 return S_IFLNK;
Martin Waitz302b9282007-05-21 22:08:28 +0200183 if (S_ISDIR(mode) || S_ISGITLINK(mode))
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800184 return S_IFGITLINK;
185 return S_IFREG | ce_permissions(mode);
Kay Sievers8ae0a8c2005-05-05 14:38:25 +0200186}
Junio C Hamano185c9752007-02-16 22:43:48 -0800187static inline unsigned int ce_mode_from_stat(struct cache_entry *ce, unsigned int mode)
188{
Johannes Sixt78a8d642007-03-02 22:11:30 +0100189 extern int trust_executable_bit, has_symlinks;
190 if (!has_symlinks && S_ISREG(mode) &&
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800191 ce && S_ISLNK(ce->ce_mode))
Johannes Sixt78a8d642007-03-02 22:11:30 +0100192 return ce->ce_mode;
Junio C Hamano185c9752007-02-16 22:43:48 -0800193 if (!trust_executable_bit && S_ISREG(mode)) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800194 if (ce && S_ISREG(ce->ce_mode))
Junio C Hamano185c9752007-02-16 22:43:48 -0800195 return ce->ce_mode;
196 return create_ce_mode(0666);
197 }
198 return create_ce_mode(mode);
199}
Junio C Hamanod6b8fc32008-01-31 01:17:48 -0800200static inline int ce_to_dtype(const struct cache_entry *ce)
201{
202 unsigned ce_mode = ntohl(ce->ce_mode);
203 if (S_ISREG(ce_mode))
204 return DT_REG;
205 else if (S_ISDIR(ce_mode) || S_ISGITLINK(ce_mode))
206 return DT_DIR;
207 else if (S_ISLNK(ce_mode))
208 return DT_LNK;
209 else
210 return DT_UNKNOWN;
211}
Junio C Hamano1b0c7172006-03-29 22:55:43 -0800212#define canon_mode(mode) \
213 (S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \
Martin Waitz302b9282007-05-21 22:08:28 +0200214 S_ISLNK(mode) ? S_IFLNK : S_ISDIR(mode) ? S_IFDIR : S_IFGITLINK)
Linus Torvaldse4479472005-04-16 22:26:31 -0700215
Junio C Hamanoaee46192005-04-16 08:33:23 -0700216#define cache_entry_size(len) ((offsetof(struct cache_entry,name) + (len) + 8) & ~7)
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800217#define ondisk_cache_entry_size(len) ((offsetof(struct ondisk_cache_entry,name) + (len) + 8) & ~7)
Linus Torvaldsf5cabd12005-04-15 21:45:38 -0700218
Junio C Hamano228e94f2007-04-01 18:14:06 -0700219struct index_state {
220 struct cache_entry **cache;
221 unsigned int cache_nr, cache_alloc, cache_changed;
222 struct cache_tree *cache_tree;
223 time_t timestamp;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800224 void *alloc;
Junio C Hamano913e0e92008-08-23 12:57:30 -0700225 unsigned name_hash_initialized : 1,
226 initialized : 1;
Linus Torvaldscf558702008-01-22 18:41:14 -0800227 struct hash_table name_hash;
Junio C Hamano228e94f2007-04-01 18:14:06 -0700228};
229
230extern struct index_state the_index;
231
Linus Torvalds96872bc2008-03-21 13:16:24 -0700232/* Name hashing */
233extern void add_name_hash(struct index_state *istate, struct cache_entry *ce);
234/*
235 * We don't actually *remove* it, we can just mark it invalid so that
236 * we won't find it in lookups.
237 *
238 * Not only would we have to search the lists (simple enough), but
239 * we'd also have to rehash other hash buckets in case this makes the
240 * hash bucket empty (common). So it's much better to just mark
241 * it.
242 */
243static inline void remove_name_hash(struct cache_entry *ce)
244{
245 ce->ce_flags |= CE_UNHASHED;
246}
247
248
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700249#ifndef NO_THE_INDEX_COMPATIBILITY_MACROS
Junio C Hamano228e94f2007-04-01 18:14:06 -0700250#define active_cache (the_index.cache)
251#define active_nr (the_index.cache_nr)
252#define active_alloc (the_index.cache_alloc)
253#define active_cache_changed (the_index.cache_changed)
254#define active_cache_tree (the_index.cache_tree)
Linus Torvaldse83c5162005-04-07 15:13:13 -0700255
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700256#define read_cache() read_index(&the_index)
257#define read_cache_from(path) read_index_from(&the_index, (path))
Miklos Vajnae46bbcf2008-06-27 18:21:58 +0200258#define read_cache_unmerged() read_index_unmerged(&the_index)
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700259#define write_cache(newfd, cache, entries) write_index(&the_index, (newfd))
260#define discard_cache() discard_index(&the_index)
Daniel Barkalow94a57282008-02-07 11:40:13 -0500261#define unmerged_cache() unmerged_index(&the_index)
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700262#define cache_name_pos(name, namelen) index_name_pos(&the_index,(name),(namelen))
263#define add_cache_entry(ce, option) add_index_entry(&the_index, (ce), (option))
Petr Baudis81dc2302008-07-21 02:25:56 +0200264#define rename_cache_entry_at(pos, new_name) rename_index_entry_at(&the_index, (pos), (new_name))
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700265#define remove_cache_entry_at(pos) remove_index_entry_at(&the_index, (pos))
266#define remove_file_from_cache(path) remove_file_from_index(&the_index, (path))
Junio C Hamano38ed1d82008-05-21 12:04:34 -0700267#define add_to_cache(path, st, flags) add_to_index(&the_index, (path), (st), (flags))
268#define add_file_to_cache(path, flags) add_file_to_index(&the_index, (path), (flags))
Alexandre Julliardd6168132007-08-11 23:59:01 +0200269#define refresh_cache(flags) refresh_index(&the_index, (flags), NULL, NULL)
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -0800270#define ce_match_stat(ce, st, options) ie_match_stat(&the_index, (ce), (st), (options))
271#define ce_modified(ce, st, options) ie_modified(&the_index, (ce), (st), (options))
Linus Torvaldscd2fef52008-03-21 15:55:19 -0700272#define cache_name_exists(name, namelen, igncase) index_name_exists(&the_index, (name), (namelen), (igncase))
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700273#endif
Linus Torvaldse83c5162005-04-07 15:13:13 -0700274
Junio C Hamanoedaec3f2007-02-28 11:45:56 -0800275enum object_type {
276 OBJ_BAD = -1,
277 OBJ_NONE = 0,
278 OBJ_COMMIT = 1,
279 OBJ_TREE = 2,
280 OBJ_BLOB = 3,
281 OBJ_TAG = 4,
282 /* 5 for future expansion */
283 OBJ_OFS_DELTA = 6,
284 OBJ_REF_DELTA = 7,
Martin Koegler355885d2008-02-25 22:46:04 +0100285 OBJ_ANY,
Junio C Hamanoedaec3f2007-02-28 11:45:56 -0800286 OBJ_MAX,
287};
288
Junio C Hamanob45563a2007-11-30 22:22:38 -0800289static inline enum object_type object_type(unsigned int mode)
290{
291 return S_ISDIR(mode) ? OBJ_TREE :
292 S_ISGITLINK(mode) ? OBJ_COMMIT :
293 OBJ_BLOB;
294}
295
Junio C Hamano8ac069a2005-05-09 22:57:58 -0700296#define GIT_DIR_ENVIRONMENT "GIT_DIR"
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200297#define GIT_WORK_TREE_ENVIRONMENT "GIT_WORK_TREE"
Junio C Hamano8ac069a2005-05-09 22:57:58 -0700298#define DEFAULT_GIT_DIR_ENVIRONMENT ".git"
Junio C Hamanod19938a2005-05-09 17:57:56 -0700299#define DB_ENVIRONMENT "GIT_OBJECT_DIRECTORY"
Linus Torvaldsbb233d62005-04-21 10:55:18 -0700300#define INDEX_ENVIRONMENT "GIT_INDEX_FILE"
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700301#define GRAFT_ENVIRONMENT "GIT_GRAFT_FILE"
Junio C Hamanod4ebc362006-12-19 01:28:15 -0800302#define TEMPLATE_DIR_ENVIRONMENT "GIT_TEMPLATE_DIR"
303#define CONFIG_ENVIRONMENT "GIT_CONFIG"
Junio C Hamanod4ebc362006-12-19 01:28:15 -0800304#define EXEC_PATH_ENVIRONMENT "GIT_EXEC_PATH"
David Reiss0454dd92008-05-19 23:49:26 -0700305#define CEILING_DIRECTORIES_ENVIRONMENT "GIT_CEILING_DIRECTORIES"
Junio C Hamanod0bfd022007-04-12 01:07:32 -0700306#define GITATTRIBUTES_FILE ".gitattributes"
307#define INFOATTRIBUTES_FILE "info/attributes"
Junio C Hamanof48fd682007-04-14 08:54:37 -0700308#define ATTRIBUTE_MACRO_PREFIX "[attr]"
Linus Torvaldsbb233d62005-04-21 10:55:18 -0700309
Junio C Hamano7d1864c2007-01-07 02:00:28 -0800310extern int is_bare_repository_cfg;
311extern int is_bare_repository(void);
Johannes Schindelin68025632007-01-20 03:09:34 +0100312extern int is_inside_git_dir(void);
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100313extern char *git_work_tree_cfg;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200314extern int is_inside_work_tree(void);
Pierre Habouzitc5fba162006-08-23 12:39:11 +0200315extern const char *get_git_dir(void);
Junio C Hamano8ac069a2005-05-09 22:57:58 -0700316extern char *get_object_directory(void);
317extern char *get_index_file(void);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700318extern char *get_graft_file(void);
Johannes Schindelind7ac12b2007-08-01 01:29:38 +0100319extern int set_git_dir(const char *path);
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100320extern const char *get_git_work_tree(void);
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100321extern const char *read_gitfile_gently(const char *path);
Daniel Barkalow19757d82008-04-27 13:39:21 -0400322extern void set_git_work_tree(const char *tree);
Junio C Hamano8ac069a2005-05-09 22:57:58 -0700323
324#define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES"
Linus Torvaldsbb233d62005-04-21 10:55:18 -0700325
Junio C Hamano6b5ee132005-09-21 00:00:47 -0700326extern const char **get_pathspec(const char *prefix, const char **pathspec);
Mike Hommey59f0f2f2007-11-03 12:23:11 +0100327extern void setup_work_tree(void);
Junio C Hamano4ca06602005-11-25 23:14:15 -0800328extern const char *setup_git_directory_gently(int *);
Linus Torvaldsd288a702005-08-16 18:06:34 -0700329extern const char *setup_git_directory(void);
Junio C Hamano6b5ee132005-09-21 00:00:47 -0700330extern const char *prefix_path(const char *prefix, int len, const char *path);
Junio C Hamano4ca06602005-11-25 23:14:15 -0800331extern const char *prefix_filename(const char *prefix, int len, const char *path);
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700332extern void verify_filename(const char *prefix, const char *name);
Junio C Hamanoea92f412006-04-26 15:09:27 -0700333extern void verify_non_filename(const char *prefix, const char *name);
Linus Torvaldsd288a702005-08-16 18:06:34 -0700334
Daniel Barkalowf225aeb2008-04-27 13:39:27 -0400335#define INIT_DB_QUIET 0x0001
336
337extern int init_db(const char *template_dir, unsigned int flags);
338
Linus Torvaldse83c5162005-04-07 15:13:13 -0700339#define alloc_nr(x) (((x)+16)*3/2)
340
Jeff King6815e562007-06-11 09:39:44 -0400341/*
342 * Realloc the buffer pointed at by variable 'x' so that it can hold
343 * at least 'nr' entries; the number of entries currently allocated
344 * is 'alloc', using the standard growing factor alloc_nr() macro.
345 *
346 * DO NOT USE any expression with side-effect for 'x' or 'alloc'.
347 */
348#define ALLOC_GROW(x, nr, alloc) \
349 do { \
Jeff Kingc927e6c2007-06-16 18:37:39 -0400350 if ((nr) > alloc) { \
Junio C Hamano4234a762007-06-11 22:10:55 -0700351 if (alloc_nr(alloc) < (nr)) \
352 alloc = (nr); \
353 else \
354 alloc = alloc_nr(alloc); \
Jeff King6815e562007-06-11 09:39:44 -0400355 x = xrealloc((x), alloc * sizeof(*(x))); \
356 } \
357 } while(0)
358
Linus Torvalds734aab72005-04-09 09:48:20 -0700359/* Initialize and use the cache information */
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700360extern int read_index(struct index_state *);
361extern int read_index_from(struct index_state *, const char *path);
Miklos Vajnae46bbcf2008-06-27 18:21:58 +0200362extern int read_index_unmerged(struct index_state *);
Linus Torvaldsd1f128b2008-03-06 12:46:09 -0800363extern int write_index(const struct index_state *, int newfd);
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700364extern int discard_index(struct index_state *);
Linus Torvaldsd1f128b2008-03-06 12:46:09 -0800365extern int unmerged_index(const struct index_state *);
Linus Torvalds8dcf39c2006-05-18 12:07:31 -0700366extern int verify_path(const char *path);
Linus Torvaldscd2fef52008-03-21 15:55:19 -0700367extern struct cache_entry *index_name_exists(struct index_state *istate, const char *name, int namelen, int igncase);
Linus Torvaldsd1f128b2008-03-06 12:46:09 -0800368extern int index_name_pos(const struct index_state *, const char *name, int namelen);
Junio C Hamano192268c2005-05-07 21:55:21 -0700369#define ADD_CACHE_OK_TO_ADD 1 /* Ok to add */
370#define ADD_CACHE_OK_TO_REPLACE 2 /* Ok to replace file/directory */
Junio C Hamanob1557252005-06-25 02:25:29 -0700371#define ADD_CACHE_SKIP_DFCHECK 4 /* Ok to skip DF conflict checks */
Junio C Hamanoaf3785d2007-08-09 13:42:50 -0700372#define ADD_CACHE_JUST_APPEND 8 /* Append only; tree.c::read_tree() */
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700373extern int add_index_entry(struct index_state *, struct cache_entry *ce, int option);
Johannes Schindelin8fd2cb42006-07-25 21:32:18 -0700374extern struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int really);
Petr Baudis81dc2302008-07-21 02:25:56 +0200375extern void rename_index_entry_at(struct index_state *, int pos, const char *new_name);
Junio C Hamano4aab5b42007-04-01 23:26:07 -0700376extern int remove_index_entry_at(struct index_state *, int pos);
377extern int remove_file_from_index(struct index_state *, const char *path);
Junio C Hamano38ed1d82008-05-21 12:04:34 -0700378#define ADD_CACHE_VERBOSE 1
379#define ADD_CACHE_PRETEND 2
Junio C Hamano01665922008-05-25 14:03:50 -0700380#define ADD_CACHE_IGNORE_ERRORS 4
Junio C Hamano38ed1d82008-05-21 12:04:34 -0700381extern int add_to_index(struct index_state *, const char *path, struct stat *, int flags);
382extern int add_file_to_index(struct index_state *, const char *path, int flags);
Carlos Rica6640f882007-09-11 05:17:28 +0200383extern struct cache_entry *make_cache_entry(unsigned int mode, const unsigned char *sha1, const char *path, int stage, int refresh);
Brad Robertsdbbce552005-05-14 19:04:25 -0700384extern int ce_same_name(struct cache_entry *a, struct cache_entry *b);
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -0800385
386/* do stat comparison even if CE_VALID is true */
387#define CE_MATCH_IGNORE_VALID 01
388/* do not check the contents but report dirty on racily-clean entries */
389#define CE_MATCH_RACY_IS_DIRTY 02
Linus Torvaldsd1f128b2008-03-06 12:46:09 -0800390extern int ie_match_stat(const struct index_state *, struct cache_entry *, struct stat *, unsigned int);
391extern int ie_modified(const struct index_state *, struct cache_entry *, struct stat *, unsigned int);
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -0800392
Linus Torvaldsc0fd1f52005-07-14 16:55:06 -0700393extern int ce_path_match(const struct cache_entry *ce, const char **pathspec);
Junio C Hamano53bca912007-02-28 11:52:04 -0800394extern int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, enum object_type type, const char *path);
Daniel Barkalow024510c2005-12-10 17:25:24 -0500395extern int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object);
Junio C Hamanoec1fcc12005-10-07 03:42:00 -0700396extern int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object);
Junio C Hamano415e96c2005-05-15 14:23:12 -0700397extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st);
398
Linus Torvalds405e5b22006-05-19 09:56:35 -0700399#define REFRESH_REALLY 0x0001 /* ignore_valid */
400#define REFRESH_UNMERGED 0x0002 /* allow unmerged */
401#define REFRESH_QUIET 0x0004 /* be quiet about it */
402#define REFRESH_IGNORE_MISSING 0x0008 /* ignore non-existent */
Junio C Hamano3f1b7b62008-07-19 23:25:00 -0700403#define REFRESH_IGNORE_SUBMODULES 0x0010 /* ignore submodules */
Junio C Hamanod14e7402008-07-20 00:21:38 -0700404#define REFRESH_SAY_CHANGED 0x0020 /* say "changed" not "needs update" */
Alexandre Julliardd6168132007-08-11 23:59:01 +0200405extern int refresh_index(struct index_state *, unsigned int flags, const char **pathspec, char *seen);
Linus Torvalds405e5b22006-05-19 09:56:35 -0700406
Junio C Hamano021b6e42006-06-06 12:51:49 -0700407struct lock_file {
408 struct lock_file *next;
Johannes Schindelin4723ee92007-11-13 21:05:03 +0100409 int fd;
Junio C Hamano5e635e32007-04-21 03:11:10 -0700410 pid_t owner;
Junio C Hamano1084b842007-01-02 11:19:05 -0800411 char on_list;
Junio C Hamano021b6e42006-06-06 12:51:49 -0700412 char filename[PATH_MAX];
Junio C Hamano415e96c2005-05-15 14:23:12 -0700413};
Junio C Hamano40aaae82006-08-12 01:03:47 -0700414extern int hold_lock_file_for_update(struct lock_file *, const char *path, int);
Daniel Barkalowea3cd5c2008-04-17 19:32:26 -0400415extern int hold_lock_file_for_append(struct lock_file *, const char *path, int);
Junio C Hamano021b6e42006-06-06 12:51:49 -0700416extern int commit_lock_file(struct lock_file *);
Junio C Hamano30ca07a2007-03-31 23:09:02 -0700417
418extern int hold_locked_index(struct lock_file *, int);
419extern int commit_locked_index(struct lock_file *);
Junio C Hamano5e7f56a2007-03-31 23:27:41 -0700420extern void set_alternate_index_output(const char *);
Brandon Caseyd6cf61b2008-01-16 11:05:32 -0800421extern int close_lock_file(struct lock_file *);
Junio C Hamano021b6e42006-06-06 12:51:49 -0700422extern void rollback_lock_file(struct lock_file *);
Carlos Rica1401f462007-04-18 05:34:34 +0200423extern int delete_ref(const char *, const unsigned char *sha1);
Linus Torvalds734aab72005-04-09 09:48:20 -0700424
Junio C Hamano2ae1c532006-02-27 14:47:45 -0800425/* Environment bits from configuration mechanism */
Linus Torvalds17712992005-10-10 16:31:08 -0700426extern int trust_executable_bit;
Alex Riesen1ce47902008-07-28 08:31:28 +0200427extern int trust_ctime;
Junio C Hamano9378c162007-06-24 15:11:24 -0700428extern int quote_path_fully;
Johannes Sixt78a8d642007-03-02 22:11:30 +0100429extern int has_symlinks;
Linus Torvalds0a9b88b2008-03-21 16:52:46 -0700430extern int ignore_case;
Junio C Hamano5f730762006-02-08 21:15:24 -0800431extern int assume_unchanged;
Junio C Hamano9f0bb902006-05-02 00:40:24 -0700432extern int prefer_symlink_refs;
Shawn Pearce6de08ae2006-05-17 05:55:40 -0400433extern int log_all_ref_updates;
Junio C Hamano2f8acdb2006-03-20 18:45:47 -0800434extern int warn_ambiguous_refs;
Johannes Schindelin457f06d2005-12-22 23:13:56 +0100435extern int shared_repository;
Junio C Hamano2ae1c532006-02-27 14:47:45 -0800436extern const char *apply_default_whitespace;
Joachim B Haga12f6c302006-07-03 22:11:47 +0200437extern int zlib_compression_level;
Dana How960ccca2007-05-09 13:56:50 -0700438extern int core_compression_level;
439extern int core_compression_seen;
Shawn O. Pearce60bb8b12006-12-23 02:34:28 -0500440extern size_t packed_git_window_size;
Shawn O. Pearce77ccc5b2006-12-23 02:33:35 -0500441extern size_t packed_git_limit;
Shawn O. Pearce18bdec12007-03-19 01:14:37 -0400442extern size_t delta_base_cache_limit;
Linus Torvalds6c510be2007-02-13 11:07:23 -0800443extern int auto_crlf;
Linus Torvaldsaafe9fb2008-06-18 15:18:44 -0700444extern int fsync_object_files;
Linus Torvalds17712992005-10-10 16:31:08 -0700445
Steffen Prohaska21e5ad52008-02-06 12:25:58 +0100446enum safe_crlf {
447 SAFE_CRLF_FALSE = 0,
448 SAFE_CRLF_FAIL = 1,
449 SAFE_CRLF_WARN = 2,
450};
451
452extern enum safe_crlf safe_crlf;
453
Jay Soffian9ed36cf2008-02-19 11:24:37 -0500454enum branch_track {
455 BRANCH_TRACK_NEVER = 0,
456 BRANCH_TRACK_REMOTE,
457 BRANCH_TRACK_ALWAYS,
458 BRANCH_TRACK_EXPLICIT,
459};
460
Dustin Sallingsc998ae92008-05-10 15:36:29 -0700461enum rebase_setup_type {
462 AUTOREBASE_NEVER = 0,
463 AUTOREBASE_LOCAL,
464 AUTOREBASE_REMOTE,
465 AUTOREBASE_ALWAYS,
466};
467
Jay Soffian9ed36cf2008-02-19 11:24:37 -0500468extern enum branch_track git_branch_track;
Dustin Sallingsc998ae92008-05-10 15:36:29 -0700469extern enum rebase_setup_type autorebase;
Jay Soffian9ed36cf2008-02-19 11:24:37 -0500470
Junio C Hamanoab9cb762005-11-25 15:59:09 -0800471#define GIT_REPO_VERSION 0
472extern int repository_format_version;
473extern int check_repository_format(void);
474
Linus Torvalds734aab72005-04-09 09:48:20 -0700475#define MTIME_CHANGED 0x0001
476#define CTIME_CHANGED 0x0002
477#define OWNER_CHANGED 0x0004
478#define MODE_CHANGED 0x0008
479#define INODE_CHANGED 0x0010
480#define DATA_CHANGED 0x0020
Kay Sievers8ae0a8c2005-05-05 14:38:25 +0200481#define TYPE_CHANGED 0x0040
Linus Torvaldse83c5162005-04-07 15:13:13 -0700482
483/* Return a statically allocated filename matching the sha1 signature */
Timo Sirainen4ec99bf2005-08-09 18:30:22 +0300484extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
485extern char *git_path(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
Linus Torvalds73134b62005-04-10 14:03:58 -0700486extern char *sha1_file_name(const unsigned char *sha1);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400487extern char *sha1_pack_name(const unsigned char *sha1);
488extern char *sha1_pack_index_name(const unsigned char *sha1);
Junio C Hamano013f2762005-10-11 15:22:48 -0700489extern const char *find_unique_abbrev(const unsigned char *sha1, int);
Junio C Hamano88cd6212005-09-30 14:02:47 -0700490extern const unsigned char null_sha1[20];
David Rientjes0bef57e2006-08-15 13:37:19 -0700491static inline int is_null_sha1(const unsigned char *sha1)
492{
493 return !memcmp(sha1, null_sha1, 20);
494}
David Rientjesa89fccd2006-08-17 11:54:57 -0700495static inline int hashcmp(const unsigned char *sha1, const unsigned char *sha2)
496{
497 return memcmp(sha1, sha2, 20);
498}
Shawn Pearcee7024962006-08-23 02:49:00 -0400499static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src)
500{
501 memcpy(sha_dst, sha_src, 20);
502}
Junio C Hamanoa8e0d162006-08-23 13:57:23 -0700503static inline void hashclr(unsigned char *hash)
504{
505 memset(hash, 0, 20);
506}
Linus Torvaldse83c5162005-04-07 15:13:13 -0700507
Holger Eitzenbergerf2db68e2005-08-04 22:43:03 +0200508int git_mkstemp(char *path, size_t n, const char *template);
509
Heikki Orsila06cbe852008-04-16 11:34:24 +0300510/*
511 * NOTE NOTE NOTE!!
512 *
513 * PERM_UMASK, OLD_PERM_GROUP and OLD_PERM_EVERYBODY enumerations must
514 * not be changed. Old repositories have core.sharedrepository written in
515 * numeric format, and therefore these values are preserved for compatibility
516 * reasons.
517 */
Junio C Hamano94df2502006-06-09 23:09:49 -0700518enum sharedrepo {
Heikki Orsila06cbe852008-04-16 11:34:24 +0300519 PERM_UMASK = 0,
520 OLD_PERM_GROUP = 1,
521 OLD_PERM_EVERYBODY = 2,
522 PERM_GROUP = 0660,
523 PERM_EVERYBODY = 0664,
Junio C Hamano94df2502006-06-09 23:09:49 -0700524};
525int git_config_perm(const char *var, const char *value);
Johannes Schindelin457f06d2005-12-22 23:13:56 +0100526int adjust_shared_perm(const char *path);
Junio C Hamanob2cb9422005-07-06 01:11:52 -0700527int safe_create_leading_directories(char *path);
Jeff King8e21d632008-06-25 01:41:34 -0400528int safe_create_leading_directories_const(const char *path);
Timo Hirvonenbd22c902005-11-21 02:52:52 +0200529char *enter_repo(char *path, int strict);
Johannes Schindeline5392c52007-08-01 01:28:59 +0100530static inline int is_absolute_path(const char *path)
531{
Johannes Sixt25fe2172008-03-05 21:51:27 +0100532 return path[0] == '/' || has_dos_drive_prefix(path);
Johannes Schindeline5392c52007-08-01 01:28:59 +0100533}
534const char *make_absolute_path(const char *path);
Daniel Barkalow1b9a9462008-06-05 23:15:19 -0400535const char *make_nonrelative_path(const char *path);
Linus Torvalds044bbbc2008-06-19 12:34:06 -0700536const char *make_relative_path(const char *abs, const char *base);
David Reissae299be2008-05-19 23:48:54 -0700537int normalize_absolute_path(char *buf, const char *path);
David Reiss0454dd92008-05-19 23:49:26 -0700538int longest_ancestor_length(const char *path, const char *prefix_list);
Junio C Hamanob2cb9422005-07-06 01:11:52 -0700539
Linus Torvaldse83c5162005-04-07 15:13:13 -0700540/* Read and unpack a sha1 file into memory, write memory to a sha1 file */
Nicolas Pitre21666f12007-02-26 14:55:59 -0500541extern int sha1_object_info(const unsigned char *, unsigned long *);
Nicolas Pitre21666f12007-02-26 14:55:59 -0500542extern void * read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size);
Nicolas Pitrece9fbf12007-03-20 16:02:09 -0400543extern int hash_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1);
Brian Gerstbf0f9102005-05-18 08:14:09 -0400544extern int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *return_sha1);
Nicolas Pitre21666f12007-02-26 14:55:59 -0500545extern int pretend_sha1_file(void *, unsigned long, enum object_type, unsigned char *);
Nicolas Pitrebbac7312008-05-14 01:32:48 -0400546extern int force_object_loose(const unsigned char *sha1, time_t mtime);
Daniel Barkalow8237b182005-04-23 18:47:23 -0700547
Nicolas Pitreac939102008-07-14 21:46:48 -0400548/* just like read_sha1_file(), but non fatal in presence of bad objects */
549extern void *read_object(const unsigned char *sha1, enum object_type *type, unsigned long *size);
550
Jason McMullan5d6ccf52005-06-03 11:05:39 -0400551extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned long size, const char *type);
Linus Torvaldse83c5162005-04-07 15:13:13 -0700552
Junio C Hamano839837b2006-09-01 00:17:47 -0700553extern int move_temp_to_file(const char *tmpfile, const char *filename);
Daniel Barkalow8237b182005-04-23 18:47:23 -0700554
Junio C Hamano106d7102006-09-06 02:12:09 -0700555extern int has_sha1_pack(const unsigned char *sha1, const char **ignore);
Daniel Barkalow8237b182005-04-23 18:47:23 -0700556extern int has_sha1_file(const unsigned char *sha1);
557
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400558extern int has_pack_file(const unsigned char *sha1);
559extern int has_pack_index(const unsigned char *sha1);
560
Linus Torvalds192a6be2007-05-30 10:32:19 -0700561extern const signed char hexval_table[256];
562static inline unsigned int hexval(unsigned char c)
Junio C Hamanoe49521b2006-09-20 16:04:46 -0700563{
564 return hexval_table[c];
565}
566
Linus Torvaldse83c5162005-04-07 15:13:13 -0700567/* Convert to/from hex/sha1 representation */
Junio C Hamano46a6c262006-01-25 01:03:18 -0800568#define MINIMUM_ABBREV 4
569#define DEFAULT_ABBREV 7
570
Linus Torvalds3c249c92005-05-01 16:36:56 -0700571extern int get_sha1(const char *str, unsigned char *sha1);
Martin Koeglera0cd87a2007-04-23 22:55:05 +0200572extern int get_sha1_with_mode(const char *str, unsigned char *sha1, unsigned *mode);
Linus Torvalds197ee8c2005-04-09 12:09:27 -0700573extern int get_sha1_hex(const char *hex, unsigned char *sha1);
574extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */
Linus Torvaldsca8db142005-09-25 09:59:37 -0700575extern int read_ref(const char *filename, unsigned char *sha1);
Junio C Hamano8da19772006-09-20 22:02:01 -0700576extern const char *resolve_ref(const char *path, unsigned char *sha1, int, int *);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800577extern int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref);
Johannes Schindelineb3a4822007-02-09 01:28:23 +0100578extern int dwim_log(const char *str, int len, unsigned char *sha1, char **ref);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800579
Steffen Prohaska79803322007-11-11 15:01:46 +0100580extern int refname_match(const char *abbrev_name, const char *full_name, const char **rules);
581extern const char *ref_rev_parse_rules[];
Steffen Prohaska605b4972007-11-11 15:01:48 +0100582extern const char *ref_fetch_rules[];
Steffen Prohaska79803322007-11-11 15:01:46 +0100583
Nicolas Pitre8b5157e2007-01-26 17:26:10 -0500584extern int create_symref(const char *ref, const char *refs_heads_master, const char *logmsg);
Junio C Hamanoc847f532007-01-01 23:31:08 -0800585extern int validate_headref(const char *ref);
Linus Torvaldse83c5162005-04-07 15:13:13 -0700586
Linus Torvalds958ba6c2005-05-20 09:09:18 -0700587extern int base_name_compare(const char *name1, int len1, int mode1, const char *name2, int len2, int mode2);
Linus Torvalds0ab9e1e2008-03-05 18:25:10 -0800588extern int df_name_compare(const char *name1, int len1, int mode1, const char *name2, int len2, int mode2);
Linus Torvalds79517a02005-04-09 12:59:11 -0700589extern int cache_name_compare(const char *name1, int len1, const char *name2, int len2);
Linus Torvaldse83c5162005-04-07 15:13:13 -0700590
Junio C Hamano40469ee2005-04-28 16:42:27 -0700591extern void *read_object_with_reference(const unsigned char *sha1,
Brian Gerstbf0f9102005-05-18 08:14:09 -0400592 const char *required_type,
Junio C Hamano40469ee2005-04-28 16:42:27 -0700593 unsigned long *size,
594 unsigned char *sha1_ret);
Junio C Hamanof4913f92005-04-20 18:06:49 -0700595
Junio C Hamano81776312007-12-24 00:51:01 -0800596extern struct object *peel_to_type(const char *name, int namelen,
597 struct object *o, enum object_type);
598
Junio C Hamano73013af2007-07-13 23:14:52 -0700599enum date_mode {
600 DATE_NORMAL = 0,
601 DATE_RELATIVE,
602 DATE_SHORT,
603 DATE_LOCAL,
604 DATE_ISO8601,
605 DATE_RFC2822
606};
607
Johannes Schindelinf8493ec2007-02-27 16:21:04 +0100608const char *show_date(unsigned long time, int timezone, enum date_mode mode);
Linus Torvalds2a390642005-09-19 15:53:50 -0700609int parse_date(const char *date, char *buf, int bufsize);
Edgar Toernigecee9d92005-04-30 09:46:49 -0700610void datestamp(char *buf, int bufsize);
Linus Torvalds3c07b1d2005-11-14 19:29:06 -0800611unsigned long approxidate(const char *);
Andy Parkins856665f2007-09-28 15:17:31 +0100612enum date_mode parse_date_format(const char *format);
Edgar Toernigecee9d92005-04-30 09:46:49 -0700613
Junio C Hamano774751a2007-12-08 17:32:08 -0800614#define IDENT_WARN_ON_NO_NAME 1
615#define IDENT_ERROR_ON_NO_NAME 2
616#define IDENT_NO_DATE 4
Junio C Hamano749be722006-02-18 20:31:05 -0800617extern const char *git_author_info(int);
618extern const char *git_committer_info(int);
Junio C Hamano798123a2007-02-04 17:50:14 -0800619extern const char *fmt_ident(const char *name, const char *email, const char *date_str, int);
Junio C Hamanod9ccfe72007-12-02 13:43:34 -0800620extern const char *fmt_name(const char *name, const char *email);
Linus Torvalds6aa33f42005-07-12 11:49:27 -0700621
Linus Torvalds12dccc12005-06-05 21:59:54 -0700622struct checkout {
623 const char *base_dir;
624 int base_dir_len;
625 unsigned force:1,
626 quiet:1,
627 not_new:1,
628 refresh_cache:1;
629};
630
Luiz Fernando N. Capitulinoefbc5832007-04-25 11:18:08 -0300631extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath);
Linus Torvaldsc40641b2008-05-09 09:21:07 -0700632extern int has_symlink_leading_path(int len, const char *name);
Linus Torvalds12dccc12005-06-05 21:59:54 -0700633
Junio C Hamano9a217f22005-06-28 14:56:57 -0700634extern struct alternate_object_database {
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700635 struct alternate_object_database *next;
Junio C Hamano9a217f22005-06-28 14:56:57 -0700636 char *name;
Junio C Hamano8f1d2e62006-01-07 01:33:54 -0800637 char base[FLEX_ARRAY]; /* more */
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700638} *alt_odb_list;
Junio C Hamano9a217f22005-06-28 14:56:57 -0700639extern void prepare_alt_odb(void);
Daniel Barkalowbef70b22008-04-17 19:32:30 -0400640extern void add_to_alternates_file(const char *reference);
Junio C Hamano9a217f22005-06-28 14:56:57 -0700641
Shawn O. Pearcec41ee582006-12-23 02:33:44 -0500642struct pack_window {
643 struct pack_window *next;
644 unsigned char *base;
645 off_t offset;
646 size_t len;
647 unsigned int last_used;
648 unsigned int inuse_cnt;
649};
650
Junio C Hamano9a217f22005-06-28 14:56:57 -0700651extern struct packed_git {
652 struct packed_git *next;
Shawn O. Pearcec41ee582006-12-23 02:33:44 -0500653 struct pack_window *windows;
Shawn O. Pearce2dc3a232006-12-23 02:33:47 -0500654 off_t pack_size;
Nicolas Pitre57059092007-04-09 01:06:28 -0400655 const void *index_data;
656 size_t index_size;
657 uint32_t num_objects;
Nicolas Pitre8eca0b42008-06-23 21:23:39 -0400658 uint32_t num_bad_objects;
659 unsigned char *bad_object_sha1;
Nicolas Pitre42873072007-03-16 16:42:50 -0400660 int index_version;
Nicolas Pitre57059092007-04-09 01:06:28 -0400661 time_t mtime;
Shawn O. Pearce9bc879c2006-12-23 02:34:01 -0500662 int pack_fd;
Linus Torvalds9d835df2005-10-13 15:38:28 -0700663 int pack_local;
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400664 unsigned char sha1[20];
Junio C Hamano8f1d2e62006-01-07 01:33:54 -0800665 /* something like ".git/objects/pack/xxxxx.pack" */
666 char pack_name[FLEX_ARRAY]; /* more */
Junio C Hamano9a217f22005-06-28 14:56:57 -0700667} *packed_git;
Junio C Hamanof3bf9222005-06-30 17:15:39 -0700668
669struct pack_entry {
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500670 off_t offset;
Junio C Hamanof3bf9222005-06-30 17:15:39 -0700671 unsigned char sha1[20];
672 struct packed_git *p;
673};
674
Linus Torvaldsd1c133f2005-07-16 13:55:50 -0700675struct ref {
676 struct ref *next;
677 unsigned char old_sha1[20];
678 unsigned char new_sha1[20];
Daniel Barkalowbe885d92008-04-26 15:53:12 -0400679 char *symref;
Shawn O. Pearce9f8a15c2007-11-18 04:31:37 -0500680 unsigned int force:1,
681 merge:1,
682 nonfastforward:1,
683 deletion:1;
Jeff King8736a842007-11-17 07:54:27 -0500684 enum {
685 REF_STATUS_NONE = 0,
686 REF_STATUS_OK,
687 REF_STATUS_REJECT_NONFASTFORWARD,
688 REF_STATUS_REJECT_NODELETE,
689 REF_STATUS_UPTODATE,
Jeff Kingca74c452007-11-17 07:56:03 -0500690 REF_STATUS_REMOTE_REJECT,
Jeff King2a0fe892007-11-18 02:16:52 -0500691 REF_STATUS_EXPECTING_REPORT,
Jeff King8736a842007-11-17 07:54:27 -0500692 } status;
Jeff King2a0fe892007-11-18 02:16:52 -0500693 char *remote_status;
Junio C Hamanof88395a2005-08-03 16:35:29 -0700694 struct ref *peer_ref; /* when renaming */
Junio C Hamano8f1d2e62006-01-07 01:33:54 -0800695 char name[FLEX_ARRAY]; /* more */
Linus Torvaldsd1c133f2005-07-16 13:55:50 -0700696};
697
Linus Torvalds2718ff02006-07-04 12:29:10 -0700698#define REF_NORMAL (1u << 0)
699#define REF_HEADS (1u << 1)
700#define REF_TAGS (1u << 2)
701
Jeff Kingcda69f42007-11-18 02:13:10 -0500702extern struct ref *find_ref_by_name(struct ref *list, const char *name);
703
Michael S. Tsirkin7841ce72007-05-16 20:09:41 +0300704#define CONNECT_VERBOSE (1u << 0)
Daniel Barkalow45773702007-10-29 21:05:40 -0400705extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
Johannes Sixt98158e92007-10-19 21:47:53 +0200706extern int finish_connect(struct child_process *conn);
Linus Torvalds013e7c72005-07-04 13:24:30 -0700707extern int path_match(const char *path, int nr, char **match);
Linus Torvalds41cb7482005-07-05 15:44:09 -0700708extern int get_ack(int fd, unsigned char *result_sha1);
Linus Torvalds2718ff02006-07-04 12:29:10 -0700709extern struct ref **get_remote_heads(int in, struct ref **list, int nr_match, char **match, unsigned int flags);
Johannes Schindelin211b5f92005-10-28 04:48:54 +0200710extern int server_supports(const char *feature);
Linus Torvaldsf7192592005-07-04 11:57:58 -0700711
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400712extern struct packed_git *parse_pack_index(unsigned char *sha1);
713
Junio C Hamano9a217f22005-06-28 14:56:57 -0700714extern void prepare_packed_git(void);
Shawn Pearcefc04c412006-11-01 17:06:21 -0500715extern void reprepare_packed_git(void);
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400716extern void install_packed_git(struct packed_git *pack);
717
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700718extern struct packed_git *find_sha1_pack(const unsigned char *sha1,
barkalow@iabervon.orgbf592c52005-07-31 20:53:44 -0400719 struct packed_git *packs);
720
Chris Wedgwood276bc2c2007-01-16 22:28:02 -0800721extern void pack_report(void);
Shawn O. Pearced0798372007-05-26 01:24:19 -0400722extern int open_pack_index(struct packed_git *);
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500723extern unsigned char* use_pack(struct packed_git *, struct pack_window **, off_t, unsigned int *);
Shawn O. Pearcec9ced052008-01-17 22:57:00 -0500724extern void close_pack_windows(struct packed_git *);
Shawn O. Pearce03e79c82006-12-23 02:34:08 -0500725extern void unuse_pack(struct pack_window **);
Nicolas Pitre42873072007-03-16 16:42:50 -0400726extern struct packed_git *add_packed_git(const char *, int, int);
Shawn O. Pearced0798372007-05-26 01:24:19 -0400727extern const unsigned char *nth_packed_object_sha1(struct packed_git *, uint32_t);
Nicolas Pitre99093232008-06-24 23:17:12 -0400728extern off_t nth_packed_object_offset(const struct packed_git *, uint32_t);
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500729extern off_t find_pack_entry_one(const unsigned char *, struct packed_git *);
730extern void *unpack_entry(struct packed_git *, off_t, enum object_type *, unsigned long *);
Junio C Hamano72518e92006-09-03 21:09:18 -0700731extern unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep);
Nicolas Pitre54dab522007-04-16 12:31:56 -0400732extern unsigned long get_size_from_delta(struct packed_git *, struct pack_window **, off_t);
Shawn O. Pearcec4001d92007-03-06 20:44:30 -0500733extern const char *packed_object_info_detail(struct packed_git *, off_t, unsigned long *, unsigned long *, unsigned int *, unsigned char *);
Junio C Hamano000dfd32007-09-16 23:15:19 -0700734extern int matches_pack_name(struct packed_git *p, const char *name);
Junio C Hamano9a217f22005-06-28 14:56:57 -0700735
Junio C Hamano8f3f9b02005-07-23 17:54:41 -0700736/* Dumb servers support */
737extern int update_server_info(int);
738
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100739typedef int (*config_fn_t)(const char *, const char *, void *);
740extern int git_default_config(const char *, const char *, void *);
741extern int git_config_from_file(config_fn_t fn, const char *, void *);
742extern int git_config(config_fn_t fn, void *);
Brian Downing0b87b6e2007-07-12 08:32:26 -0500743extern int git_parse_long(const char *, long *);
744extern int git_parse_ulong(const char *, unsigned long *);
Linus Torvalds17712992005-10-10 16:31:08 -0700745extern int git_config_int(const char *, const char *);
Brian Downing0b87b6e2007-07-12 08:32:26 -0500746extern unsigned long git_config_ulong(const char *, const char *);
Junio C Hamanoa53f2ec2008-04-12 18:33:31 -0700747extern int git_config_bool_or_int(const char *, const char *, int *);
Linus Torvalds17712992005-10-10 16:31:08 -0700748extern int git_config_bool(const char *, const char *);
Christian Couderea5105a2008-02-16 06:00:24 +0100749extern int git_config_string(const char **, const char *, const char *);
Johannes Schindelin10bea152005-11-17 22:32:36 +0100750extern int git_config_set(const char *, const char *);
Johannes Schindelin4ddba792005-11-20 06:52:22 +0100751extern int git_config_set_multivar(const char *, const char *, const char *, int);
Johannes Schindelin0667fcf2006-12-16 15:14:14 +0100752extern int git_config_rename_section(const char *, const char *);
Johannes Sixt506b17b2007-11-13 21:05:05 +0100753extern const char *git_etc_gitconfig(void);
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100754extern int check_repository_format_version(const char *var, const char *value, void *cb);
Jeff Kingab88c362008-02-06 05:11:18 -0500755extern int git_config_system(void);
756extern int git_config_global(void);
Junio C Hamano40ea4ed2008-02-11 10:41:18 -0800757extern int config_error_nonbool(const char *);
Daniel Barkalowdc871832008-06-30 03:37:47 -0400758extern const char *config_exclusive_filename;
Linus Torvalds17712992005-10-10 16:31:08 -0700759
Linus Torvaldse1b10392005-10-11 18:47:34 -0700760#define MAX_GITNAME (1000)
761extern char git_default_email[MAX_GITNAME];
762extern char git_default_name[MAX_GITNAME];
Santi Béjarbb1ae3f2008-05-04 18:04:51 +0200763extern int user_ident_explicitly_given;
Linus Torvaldse1b10392005-10-11 18:47:34 -0700764
Shawn O. Pearce1a8f2742007-03-12 15:33:18 -0400765extern const char *git_commit_encoding;
Shawn O. Pearce3a556022007-03-06 20:44:17 -0500766extern const char *git_log_output_encoding;
Junio C Hamano4e72dce2005-11-27 16:09:40 -0800767
Theodore Ts'o06f59e92007-06-29 13:40:46 -0400768/* IO helper functions */
769extern void maybe_flush_or_die(FILE *, const char *);
Junio C Hamanof3123c42005-10-22 01:28:13 -0700770extern int copy_fd(int ifd, int ofd);
Daniel Barkalow1468bd42008-02-25 14:24:48 -0500771extern int copy_file(const char *dst, const char *src, int mode);
Heikki Orsila0104ca02008-04-27 21:21:58 +0300772extern ssize_t read_in_full(int fd, void *buf, size_t count);
773extern ssize_t write_in_full(int fd, const void *buf, size_t count);
Rene Scharfe7230e6d2006-08-21 20:43:43 +0200774extern void write_or_die(int fd, const void *buf, size_t count);
Christian Couder6ce4e612006-09-02 18:23:48 +0200775extern int write_or_whine(int fd, const void *buf, size_t count, const char *msg);
Andy Whitcrofte0814052007-01-08 15:57:52 +0000776extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg);
Linus Torvalds4c81b032008-05-30 08:42:16 -0700777extern void fsync_or_die(int fd, const char *);
Junio C Hamanoad897212005-12-14 22:17:38 -0800778
Linus Torvaldsf67b45f2006-02-28 11:26:21 -0800779/* pager.c */
780extern void setup_pager(void);
Christian Couder872da322008-02-16 06:01:11 +0100781extern const char *pager_program;
Jeff King6e9af862007-12-11 01:27:33 -0500782extern int pager_in_use(void);
Matthias Lederhoferaa086eb2006-07-30 00:27:43 +0200783extern int pager_use_color;
Linus Torvaldsf67b45f2006-02-28 11:26:21 -0800784
Christian Couderee9601e2008-02-16 06:01:41 +0100785extern const char *editor_program;
Christian Couderdfb068b2008-02-16 06:01:59 +0100786extern const char *excludes_file;
Johannes Schindelin4d87b9c2007-07-20 13:06:09 +0100787
Junio C Hamano051308f2006-05-04 16:51:44 -0700788/* base85 */
Jim Meyeringf9815772007-04-10 00:56:33 +0200789int decode_85(char *dst, const char *line, int linelen);
790void encode_85(char *buf, const unsigned char *data, int bytes);
Junio C Hamano051308f2006-05-04 16:51:44 -0700791
Linus Torvalds855419f2006-06-19 10:44:15 -0700792/* alloc.c */
Linus Torvalds100c5f32007-04-16 22:11:43 -0700793extern void *alloc_blob_node(void);
794extern void *alloc_tree_node(void);
795extern void *alloc_commit_node(void);
796extern void *alloc_tag_node(void);
797extern void *alloc_object_node(void);
Linus Torvalds855419f2006-06-19 10:44:15 -0700798extern void alloc_report(void);
799
Christian Couder6ce4e612006-09-02 18:23:48 +0200800/* trace.c */
Christian Couder6ce4e612006-09-02 18:23:48 +0200801extern void trace_printf(const char *format, ...);
Christian Couderb319ce42007-12-03 05:51:50 +0100802extern void trace_argv_printf(const char **argv, const char *format, ...);
Christian Couder6ce4e612006-09-02 18:23:48 +0200803
Linus Torvalds6c510be2007-02-13 11:07:23 -0800804/* convert.c */
Pierre Habouzit5ecd2932007-09-16 15:51:04 +0200805/* returns 1 if *dst was used */
Steffen Prohaska21e5ad52008-02-06 12:25:58 +0100806extern int convert_to_git(const char *path, const char *src, size_t len,
807 struct strbuf *dst, enum safe_crlf checksafe);
Pierre Habouzit5ecd2932007-09-16 15:51:04 +0200808extern int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst);
Linus Torvalds6c510be2007-02-13 11:07:23 -0800809
Junio C Hamanob6ec1d62007-11-18 01:12:04 -0800810/* add */
Alex Riesen7ae02a32008-05-12 19:58:10 +0200811/*
812 * return 0 if success, 1 - if addition of a file failed and
813 * ADD_FILES_IGNORE_ERRORS was specified in flags
814 */
815int add_files_to_cache(const char *prefix, const char **pathspec, int flags);
Junio C Hamanob6ec1d62007-11-18 01:12:04 -0800816
Junio C Hamanoaecbf912007-08-31 13:13:42 -0700817/* diff.c */
818extern int diff_auto_refresh_index;
819
Junio C Hamano68faf682007-02-15 16:32:45 -0800820/* match-trees.c */
821void shift_tree(const unsigned char *, const unsigned char *, unsigned char *, int);
822
Junio C Hamanoa9cc8572007-11-02 00:24:27 -0700823/*
824 * whitespace rules.
825 * used by both diff and apply
826 */
827#define WS_TRAILING_SPACE 01
828#define WS_SPACE_BEFORE_TAB 02
Junio C Hamano459fa6d2007-10-02 18:00:27 -0700829#define WS_INDENT_WITH_NON_TAB 04
Junio C Hamanob2979ff2008-01-15 00:59:05 -0800830#define WS_CR_AT_EOL 010
Junio C Hamanoa9cc8572007-11-02 00:24:27 -0700831#define WS_DEFAULT_RULE (WS_TRAILING_SPACE|WS_SPACE_BEFORE_TAB)
Junio C Hamanocf1b7862007-12-06 00:14:14 -0800832extern unsigned whitespace_rule_cfg;
833extern unsigned whitespace_rule(const char *);
834extern unsigned parse_whitespace_rule(const char *);
Junio C Hamano8f8841e2008-06-26 15:35:21 -0700835extern unsigned ws_check(const char *line, int len, unsigned ws_rule);
836extern void ws_check_emit(const char *line, int len, unsigned ws_rule, FILE *stream, const char *set, const char *reset, const char *ws);
Wincent Colaiutac1795bb2007-12-13 14:32:29 +0100837extern char *whitespace_error_string(unsigned ws);
Junio C Hamanofe3403c2008-02-23 16:59:16 -0800838extern int ws_fix_copy(char *, const char *, int, unsigned, int *);
Junio C Hamano877f23c2008-06-26 15:36:59 -0700839extern int ws_blank_line(const char *line, int len, unsigned ws_rule);
Junio C Hamanoa9cc8572007-11-02 00:24:27 -0700840
Junio C Hamanoee425e42007-11-18 01:13:32 -0800841/* ls-files */
842int pathspec_match(const char **spec, char *matched, const char *filename, int skiplen);
843int report_path_error(const char *ps_matched, const char **pathspec, int prefix_offset);
844void overlay_tree_on_cache(const char *tree_name, const char *prefix);
845
Jeff King94351112008-02-24 17:17:14 -0500846char *alias_lookup(const char *alias);
Miklos Vajna0989fe92008-06-27 18:21:54 +0200847int split_cmdline(char *cmdline, const char ***argv);
Jeff King94351112008-02-24 17:17:14 -0500848
Linus Torvaldse83c5162005-04-07 15:13:13 -0700849#endif /* CACHE_H */