Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 1 | #ifndef CACHE_H |
| 2 | #define CACHE_H |
| 3 | |
Junio C Hamano | 4050c0d | 2005-12-05 11:54:29 -0800 | [diff] [blame] | 4 | #include "git-compat-util.h" |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 5 | #include "strbuf.h" |
Linus Torvalds | cf55870 | 2008-01-22 18:41:14 -0800 | [diff] [blame] | 6 | #include "hash.h" |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 7 | |
Linus Torvalds | cef661f | 2005-04-21 12:33:22 -0700 | [diff] [blame] | 8 | #include SHA1_HEADER |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 9 | #include <zlib.h> |
| 10 | |
David Symonds | 609a228 | 2007-11-07 14:24:28 +1100 | [diff] [blame] | 11 | #if defined(NO_DEFLATE_BOUND) || ZLIB_VERNUM < 0x1200 |
Edgar Toernig | 9da3acf | 2005-04-30 09:51:03 -0700 | [diff] [blame] | 12 | #define deflateBound(c,s) ((s) + (((s) + 7) >> 3) + (((s) + 63) >> 6) + 11) |
| 13 | #endif |
| 14 | |
Timo Hirvonen | 962554c | 2006-02-26 17:13:46 +0200 | [diff] [blame] | 15 | #if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT) |
Edgar Toernig | b682969 | 2005-04-30 09:51:03 -0700 | [diff] [blame] | 16 | #define DTYPE(de) ((de)->d_type) |
| 17 | #else |
Junio C Hamano | 0bdd79a | 2006-01-20 13:33:20 -0800 | [diff] [blame] | 18 | #undef DT_UNKNOWN |
| 19 | #undef DT_DIR |
| 20 | #undef DT_REG |
| 21 | #undef DT_LNK |
Edgar Toernig | b682969 | 2005-04-30 09:51:03 -0700 | [diff] [blame] | 22 | #define DT_UNKNOWN 0 |
| 23 | #define DT_DIR 1 |
| 24 | #define DT_REG 2 |
Junio C Hamano | a15c1c6 | 2005-05-12 17:16:04 -0700 | [diff] [blame] | 25 | #define DT_LNK 3 |
Edgar Toernig | b682969 | 2005-04-30 09:51:03 -0700 | [diff] [blame] | 26 | #define DTYPE(de) DT_UNKNOWN |
| 27 | #endif |
| 28 | |
Martin Koegler | 40689ae | 2007-04-22 18:43:56 +0200 | [diff] [blame] | 29 | /* unknown mode (impossible combination S_IFIFO|S_IFCHR) */ |
| 30 | #define S_IFINVALID 0030000 |
| 31 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 32 | /* |
Linus Torvalds | 9eec479 | 2007-04-09 21:14:58 -0700 | [diff] [blame] | 33 | * 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 Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 45 | #define S_IFGITLINK 0160000 |
| 46 | #define S_ISGITLINK(m) (((m) & S_IFMT) == S_IFGITLINK) |
Linus Torvalds | 9eec479 | 2007-04-09 21:14:58 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
Linus Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 49 | * 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 Torvalds | ba8a497 | 2005-09-12 11:23:00 -0700 | [diff] [blame] | 55 | * |
| 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 Torvalds | 2386d65 | 2005-07-13 18:46:20 -0700 | [diff] [blame] | 66 | */ |
| 67 | #define DEFAULT_GIT_PORT 9418 |
| 68 | |
| 69 | /* |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 70 | * Basic data structures for the directory cache |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 71 | */ |
| 72 | |
| 73 | #define CACHE_SIGNATURE 0x44495243 /* "DIRC" */ |
| 74 | struct cache_header { |
Linus Torvalds | ccc4feb | 2005-04-15 10:44:27 -0700 | [diff] [blame] | 75 | unsigned int hdr_signature; |
| 76 | unsigned int hdr_version; |
| 77 | unsigned int hdr_entries; |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 78 | }; |
| 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 | */ |
| 85 | struct 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 Torvalds | ccc4feb | 2005-04-15 10:44:27 -0700 | [diff] [blame] | 94 | * |
| 95 | * We save the fields in big-endian order to allow using the |
| 96 | * index file over NFS transparently. |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 97 | */ |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 98 | struct 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 Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 112 | struct cache_entry { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 113 | unsigned int ce_ctime; |
| 114 | unsigned int ce_mtime; |
Linus Torvalds | ccc4feb | 2005-04-15 10:44:27 -0700 | [diff] [blame] | 115 | 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 Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 121 | unsigned int ce_flags; |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 122 | unsigned char sha1[20]; |
Linus Torvalds | eb7a2f1 | 2008-02-22 20:41:17 -0800 | [diff] [blame] | 123 | struct cache_entry *next; |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 124 | char name[FLEX_ARRAY]; /* more */ |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
Linus Torvalds | 95fd5bf | 2005-04-15 22:51:44 -0700 | [diff] [blame] | 127 | #define CE_NAMEMASK (0x0fff) |
| 128 | #define CE_STAGEMASK (0x3000) |
Junio C Hamano | 5f73076 | 2006-02-08 21:15:24 -0800 | [diff] [blame] | 129 | #define CE_VALID (0x8000) |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 130 | #define CE_STAGESHIFT 12 |
Linus Torvalds | 95fd5bf | 2005-04-15 22:51:44 -0700 | [diff] [blame] | 131 | |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 132 | /* In-memory only */ |
| 133 | #define CE_UPDATE (0x10000) |
| 134 | #define CE_REMOVE (0x20000) |
Junio C Hamano | eadb583 | 2008-01-18 23:45:24 -0800 | [diff] [blame] | 135 | #define CE_UPTODATE (0x40000) |
Linus Torvalds | 1102952 | 2008-03-22 14:22:44 -0700 | [diff] [blame] | 136 | #define CE_ADDED (0x80000) |
Linus Torvalds | a22c637 | 2008-02-22 20:37:40 -0800 | [diff] [blame] | 137 | |
| 138 | #define CE_HASHED (0x100000) |
| 139 | #define CE_UNHASHED (0x200000) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 140 | |
Linus Torvalds | d070e3a | 2008-02-22 20:39:21 -0800 | [diff] [blame] | 141 | /* |
Linus Torvalds | eb7a2f1 | 2008-02-22 20:41:17 -0800 | [diff] [blame] | 142 | * 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) |
| 146 | static 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 Hamano | 7fec10b | 2008-01-18 23:42:00 -0800 | [diff] [blame] | 157 | static 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 | |
| 164 | static 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 Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 172 | #define ce_size(ce) cache_entry_size(ce_namelen(ce)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 173 | #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 Hamano | eadb583 | 2008-01-18 23:45:24 -0800 | [diff] [blame] | 175 | #define ce_uptodate(ce) ((ce)->ce_flags & CE_UPTODATE) |
| 176 | #define ce_mark_uptodate(ce) ((ce)->ce_flags |= CE_UPTODATE) |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 177 | |
Linus Torvalds | e447947 | 2005-04-16 22:26:31 -0700 | [diff] [blame] | 178 | #define ce_permissions(mode) (((mode) & 0100) ? 0755 : 0644) |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 179 | static inline unsigned int create_ce_mode(unsigned int mode) |
| 180 | { |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 181 | if (S_ISLNK(mode)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 182 | return S_IFLNK; |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 183 | if (S_ISDIR(mode) || S_ISGITLINK(mode)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 184 | return S_IFGITLINK; |
| 185 | return S_IFREG | ce_permissions(mode); |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 186 | } |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 187 | static inline unsigned int ce_mode_from_stat(struct cache_entry *ce, unsigned int mode) |
| 188 | { |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 189 | extern int trust_executable_bit, has_symlinks; |
| 190 | if (!has_symlinks && S_ISREG(mode) && |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 191 | ce && S_ISLNK(ce->ce_mode)) |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 192 | return ce->ce_mode; |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 193 | if (!trust_executable_bit && S_ISREG(mode)) { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 194 | if (ce && S_ISREG(ce->ce_mode)) |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 195 | return ce->ce_mode; |
| 196 | return create_ce_mode(0666); |
| 197 | } |
| 198 | return create_ce_mode(mode); |
| 199 | } |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 200 | static 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 Hamano | 1b0c717 | 2006-03-29 22:55:43 -0800 | [diff] [blame] | 212 | #define canon_mode(mode) \ |
| 213 | (S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \ |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 214 | S_ISLNK(mode) ? S_IFLNK : S_ISDIR(mode) ? S_IFDIR : S_IFGITLINK) |
Linus Torvalds | e447947 | 2005-04-16 22:26:31 -0700 | [diff] [blame] | 215 | |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 216 | #define cache_entry_size(len) ((offsetof(struct cache_entry,name) + (len) + 8) & ~7) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 217 | #define ondisk_cache_entry_size(len) ((offsetof(struct ondisk_cache_entry,name) + (len) + 8) & ~7) |
Linus Torvalds | f5cabd1 | 2005-04-15 21:45:38 -0700 | [diff] [blame] | 218 | |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 219 | struct 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 Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 224 | void *alloc; |
Junio C Hamano | 913e0e9 | 2008-08-23 12:57:30 -0700 | [diff] [blame] | 225 | unsigned name_hash_initialized : 1, |
| 226 | initialized : 1; |
Linus Torvalds | cf55870 | 2008-01-22 18:41:14 -0800 | [diff] [blame] | 227 | struct hash_table name_hash; |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 228 | }; |
| 229 | |
| 230 | extern struct index_state the_index; |
| 231 | |
Linus Torvalds | 96872bc | 2008-03-21 13:16:24 -0700 | [diff] [blame] | 232 | /* Name hashing */ |
| 233 | extern 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 | */ |
| 243 | static inline void remove_name_hash(struct cache_entry *ce) |
| 244 | { |
| 245 | ce->ce_flags |= CE_UNHASHED; |
| 246 | } |
| 247 | |
| 248 | |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 249 | #ifndef NO_THE_INDEX_COMPATIBILITY_MACROS |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 250 | #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 Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 255 | |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 256 | #define read_cache() read_index(&the_index) |
| 257 | #define read_cache_from(path) read_index_from(&the_index, (path)) |
Miklos Vajna | e46bbcf | 2008-06-27 18:21:58 +0200 | [diff] [blame] | 258 | #define read_cache_unmerged() read_index_unmerged(&the_index) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 259 | #define write_cache(newfd, cache, entries) write_index(&the_index, (newfd)) |
| 260 | #define discard_cache() discard_index(&the_index) |
Daniel Barkalow | 94a5728 | 2008-02-07 11:40:13 -0500 | [diff] [blame] | 261 | #define unmerged_cache() unmerged_index(&the_index) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 262 | #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 Baudis | 81dc230 | 2008-07-21 02:25:56 +0200 | [diff] [blame] | 264 | #define rename_cache_entry_at(pos, new_name) rename_index_entry_at(&the_index, (pos), (new_name)) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 265 | #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 Hamano | 38ed1d8 | 2008-05-21 12:04:34 -0700 | [diff] [blame] | 267 | #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 Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 269 | #define refresh_cache(flags) refresh_index(&the_index, (flags), NULL, NULL) |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 270 | #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 Torvalds | cd2fef5 | 2008-03-21 15:55:19 -0700 | [diff] [blame] | 272 | #define cache_name_exists(name, namelen, igncase) index_name_exists(&the_index, (name), (namelen), (igncase)) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 273 | #endif |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 274 | |
Junio C Hamano | edaec3f | 2007-02-28 11:45:56 -0800 | [diff] [blame] | 275 | enum 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 Koegler | 355885d | 2008-02-25 22:46:04 +0100 | [diff] [blame] | 285 | OBJ_ANY, |
Junio C Hamano | edaec3f | 2007-02-28 11:45:56 -0800 | [diff] [blame] | 286 | OBJ_MAX, |
| 287 | }; |
| 288 | |
Junio C Hamano | b45563a | 2007-11-30 22:22:38 -0800 | [diff] [blame] | 289 | static 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 Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 296 | #define GIT_DIR_ENVIRONMENT "GIT_DIR" |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 297 | #define GIT_WORK_TREE_ENVIRONMENT "GIT_WORK_TREE" |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 298 | #define DEFAULT_GIT_DIR_ENVIRONMENT ".git" |
Junio C Hamano | d19938a | 2005-05-09 17:57:56 -0700 | [diff] [blame] | 299 | #define DB_ENVIRONMENT "GIT_OBJECT_DIRECTORY" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 300 | #define INDEX_ENVIRONMENT "GIT_INDEX_FILE" |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 301 | #define GRAFT_ENVIRONMENT "GIT_GRAFT_FILE" |
Junio C Hamano | d4ebc36 | 2006-12-19 01:28:15 -0800 | [diff] [blame] | 302 | #define TEMPLATE_DIR_ENVIRONMENT "GIT_TEMPLATE_DIR" |
| 303 | #define CONFIG_ENVIRONMENT "GIT_CONFIG" |
Junio C Hamano | d4ebc36 | 2006-12-19 01:28:15 -0800 | [diff] [blame] | 304 | #define EXEC_PATH_ENVIRONMENT "GIT_EXEC_PATH" |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 305 | #define CEILING_DIRECTORIES_ENVIRONMENT "GIT_CEILING_DIRECTORIES" |
Junio C Hamano | d0bfd02 | 2007-04-12 01:07:32 -0700 | [diff] [blame] | 306 | #define GITATTRIBUTES_FILE ".gitattributes" |
| 307 | #define INFOATTRIBUTES_FILE "info/attributes" |
Junio C Hamano | f48fd68 | 2007-04-14 08:54:37 -0700 | [diff] [blame] | 308 | #define ATTRIBUTE_MACRO_PREFIX "[attr]" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 309 | |
Junio C Hamano | 7d1864c | 2007-01-07 02:00:28 -0800 | [diff] [blame] | 310 | extern int is_bare_repository_cfg; |
| 311 | extern int is_bare_repository(void); |
Johannes Schindelin | 6802563 | 2007-01-20 03:09:34 +0100 | [diff] [blame] | 312 | extern int is_inside_git_dir(void); |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 313 | extern char *git_work_tree_cfg; |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 314 | extern int is_inside_work_tree(void); |
Pierre Habouzit | c5fba16 | 2006-08-23 12:39:11 +0200 | [diff] [blame] | 315 | extern const char *get_git_dir(void); |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 316 | extern char *get_object_directory(void); |
| 317 | extern char *get_index_file(void); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 318 | extern char *get_graft_file(void); |
Johannes Schindelin | d7ac12b | 2007-08-01 01:29:38 +0100 | [diff] [blame] | 319 | extern int set_git_dir(const char *path); |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 320 | extern const char *get_git_work_tree(void); |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 321 | extern const char *read_gitfile_gently(const char *path); |
Daniel Barkalow | 19757d8 | 2008-04-27 13:39:21 -0400 | [diff] [blame] | 322 | extern void set_git_work_tree(const char *tree); |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 323 | |
| 324 | #define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 325 | |
Junio C Hamano | 6b5ee13 | 2005-09-21 00:00:47 -0700 | [diff] [blame] | 326 | extern const char **get_pathspec(const char *prefix, const char **pathspec); |
Mike Hommey | 59f0f2f | 2007-11-03 12:23:11 +0100 | [diff] [blame] | 327 | extern void setup_work_tree(void); |
Junio C Hamano | 4ca0660 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 328 | extern const char *setup_git_directory_gently(int *); |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 329 | extern const char *setup_git_directory(void); |
Junio C Hamano | 6b5ee13 | 2005-09-21 00:00:47 -0700 | [diff] [blame] | 330 | extern const char *prefix_path(const char *prefix, int len, const char *path); |
Junio C Hamano | 4ca0660 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 331 | extern const char *prefix_filename(const char *prefix, int len, const char *path); |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 332 | extern void verify_filename(const char *prefix, const char *name); |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 333 | extern void verify_non_filename(const char *prefix, const char *name); |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 334 | |
Daniel Barkalow | f225aeb | 2008-04-27 13:39:27 -0400 | [diff] [blame] | 335 | #define INIT_DB_QUIET 0x0001 |
| 336 | |
| 337 | extern int init_db(const char *template_dir, unsigned int flags); |
| 338 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 339 | #define alloc_nr(x) (((x)+16)*3/2) |
| 340 | |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 341 | /* |
| 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 King | c927e6c | 2007-06-16 18:37:39 -0400 | [diff] [blame] | 350 | if ((nr) > alloc) { \ |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 351 | if (alloc_nr(alloc) < (nr)) \ |
| 352 | alloc = (nr); \ |
| 353 | else \ |
| 354 | alloc = alloc_nr(alloc); \ |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 355 | x = xrealloc((x), alloc * sizeof(*(x))); \ |
| 356 | } \ |
| 357 | } while(0) |
| 358 | |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 359 | /* Initialize and use the cache information */ |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 360 | extern int read_index(struct index_state *); |
| 361 | extern int read_index_from(struct index_state *, const char *path); |
Miklos Vajna | e46bbcf | 2008-06-27 18:21:58 +0200 | [diff] [blame] | 362 | extern int read_index_unmerged(struct index_state *); |
Linus Torvalds | d1f128b | 2008-03-06 12:46:09 -0800 | [diff] [blame] | 363 | extern int write_index(const struct index_state *, int newfd); |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 364 | extern int discard_index(struct index_state *); |
Linus Torvalds | d1f128b | 2008-03-06 12:46:09 -0800 | [diff] [blame] | 365 | extern int unmerged_index(const struct index_state *); |
Linus Torvalds | 8dcf39c | 2006-05-18 12:07:31 -0700 | [diff] [blame] | 366 | extern int verify_path(const char *path); |
Linus Torvalds | cd2fef5 | 2008-03-21 15:55:19 -0700 | [diff] [blame] | 367 | extern struct cache_entry *index_name_exists(struct index_state *istate, const char *name, int namelen, int igncase); |
Linus Torvalds | d1f128b | 2008-03-06 12:46:09 -0800 | [diff] [blame] | 368 | extern int index_name_pos(const struct index_state *, const char *name, int namelen); |
Junio C Hamano | 192268c | 2005-05-07 21:55:21 -0700 | [diff] [blame] | 369 | #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 Hamano | b155725 | 2005-06-25 02:25:29 -0700 | [diff] [blame] | 371 | #define ADD_CACHE_SKIP_DFCHECK 4 /* Ok to skip DF conflict checks */ |
Junio C Hamano | af3785d | 2007-08-09 13:42:50 -0700 | [diff] [blame] | 372 | #define ADD_CACHE_JUST_APPEND 8 /* Append only; tree.c::read_tree() */ |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 373 | extern int add_index_entry(struct index_state *, struct cache_entry *ce, int option); |
Johannes Schindelin | 8fd2cb4 | 2006-07-25 21:32:18 -0700 | [diff] [blame] | 374 | extern struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int really); |
Petr Baudis | 81dc230 | 2008-07-21 02:25:56 +0200 | [diff] [blame] | 375 | extern void rename_index_entry_at(struct index_state *, int pos, const char *new_name); |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 376 | extern int remove_index_entry_at(struct index_state *, int pos); |
| 377 | extern int remove_file_from_index(struct index_state *, const char *path); |
Junio C Hamano | 38ed1d8 | 2008-05-21 12:04:34 -0700 | [diff] [blame] | 378 | #define ADD_CACHE_VERBOSE 1 |
| 379 | #define ADD_CACHE_PRETEND 2 |
Junio C Hamano | 0166592 | 2008-05-25 14:03:50 -0700 | [diff] [blame] | 380 | #define ADD_CACHE_IGNORE_ERRORS 4 |
Junio C Hamano | 38ed1d8 | 2008-05-21 12:04:34 -0700 | [diff] [blame] | 381 | extern int add_to_index(struct index_state *, const char *path, struct stat *, int flags); |
| 382 | extern int add_file_to_index(struct index_state *, const char *path, int flags); |
Carlos Rica | 6640f88 | 2007-09-11 05:17:28 +0200 | [diff] [blame] | 383 | extern struct cache_entry *make_cache_entry(unsigned int mode, const unsigned char *sha1, const char *path, int stage, int refresh); |
Brad Roberts | dbbce55 | 2005-05-14 19:04:25 -0700 | [diff] [blame] | 384 | extern int ce_same_name(struct cache_entry *a, struct cache_entry *b); |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 385 | |
| 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 Torvalds | d1f128b | 2008-03-06 12:46:09 -0800 | [diff] [blame] | 390 | extern int ie_match_stat(const struct index_state *, struct cache_entry *, struct stat *, unsigned int); |
| 391 | extern int ie_modified(const struct index_state *, struct cache_entry *, struct stat *, unsigned int); |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 392 | |
Linus Torvalds | c0fd1f5 | 2005-07-14 16:55:06 -0700 | [diff] [blame] | 393 | extern int ce_path_match(const struct cache_entry *ce, const char **pathspec); |
Junio C Hamano | 53bca91 | 2007-02-28 11:52:04 -0800 | [diff] [blame] | 394 | extern int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object, enum object_type type, const char *path); |
Daniel Barkalow | 024510c | 2005-12-10 17:25:24 -0500 | [diff] [blame] | 395 | extern int index_pipe(unsigned char *sha1, int fd, const char *type, int write_object); |
Junio C Hamano | ec1fcc1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 396 | extern int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object); |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 397 | extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st); |
| 398 | |
Linus Torvalds | 405e5b2 | 2006-05-19 09:56:35 -0700 | [diff] [blame] | 399 | #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 Hamano | 3f1b7b6 | 2008-07-19 23:25:00 -0700 | [diff] [blame] | 403 | #define REFRESH_IGNORE_SUBMODULES 0x0010 /* ignore submodules */ |
Junio C Hamano | d14e740 | 2008-07-20 00:21:38 -0700 | [diff] [blame] | 404 | #define REFRESH_SAY_CHANGED 0x0020 /* say "changed" not "needs update" */ |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 405 | extern int refresh_index(struct index_state *, unsigned int flags, const char **pathspec, char *seen); |
Linus Torvalds | 405e5b2 | 2006-05-19 09:56:35 -0700 | [diff] [blame] | 406 | |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 407 | struct lock_file { |
| 408 | struct lock_file *next; |
Johannes Schindelin | 4723ee9 | 2007-11-13 21:05:03 +0100 | [diff] [blame] | 409 | int fd; |
Junio C Hamano | 5e635e3 | 2007-04-21 03:11:10 -0700 | [diff] [blame] | 410 | pid_t owner; |
Junio C Hamano | 1084b84 | 2007-01-02 11:19:05 -0800 | [diff] [blame] | 411 | char on_list; |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 412 | char filename[PATH_MAX]; |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 413 | }; |
Junio C Hamano | 40aaae8 | 2006-08-12 01:03:47 -0700 | [diff] [blame] | 414 | extern int hold_lock_file_for_update(struct lock_file *, const char *path, int); |
Daniel Barkalow | ea3cd5c | 2008-04-17 19:32:26 -0400 | [diff] [blame] | 415 | extern int hold_lock_file_for_append(struct lock_file *, const char *path, int); |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 416 | extern int commit_lock_file(struct lock_file *); |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 417 | |
| 418 | extern int hold_locked_index(struct lock_file *, int); |
| 419 | extern int commit_locked_index(struct lock_file *); |
Junio C Hamano | 5e7f56a | 2007-03-31 23:27:41 -0700 | [diff] [blame] | 420 | extern void set_alternate_index_output(const char *); |
Brandon Casey | d6cf61b | 2008-01-16 11:05:32 -0800 | [diff] [blame] | 421 | extern int close_lock_file(struct lock_file *); |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 422 | extern void rollback_lock_file(struct lock_file *); |
Carlos Rica | 1401f46 | 2007-04-18 05:34:34 +0200 | [diff] [blame] | 423 | extern int delete_ref(const char *, const unsigned char *sha1); |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 424 | |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 425 | /* Environment bits from configuration mechanism */ |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 426 | extern int trust_executable_bit; |
Alex Riesen | 1ce4790 | 2008-07-28 08:31:28 +0200 | [diff] [blame] | 427 | extern int trust_ctime; |
Junio C Hamano | 9378c16 | 2007-06-24 15:11:24 -0700 | [diff] [blame] | 428 | extern int quote_path_fully; |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 429 | extern int has_symlinks; |
Linus Torvalds | 0a9b88b | 2008-03-21 16:52:46 -0700 | [diff] [blame] | 430 | extern int ignore_case; |
Junio C Hamano | 5f73076 | 2006-02-08 21:15:24 -0800 | [diff] [blame] | 431 | extern int assume_unchanged; |
Junio C Hamano | 9f0bb90 | 2006-05-02 00:40:24 -0700 | [diff] [blame] | 432 | extern int prefer_symlink_refs; |
Shawn Pearce | 6de08ae | 2006-05-17 05:55:40 -0400 | [diff] [blame] | 433 | extern int log_all_ref_updates; |
Junio C Hamano | 2f8acdb | 2006-03-20 18:45:47 -0800 | [diff] [blame] | 434 | extern int warn_ambiguous_refs; |
Johannes Schindelin | 457f06d | 2005-12-22 23:13:56 +0100 | [diff] [blame] | 435 | extern int shared_repository; |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 436 | extern const char *apply_default_whitespace; |
Joachim B Haga | 12f6c30 | 2006-07-03 22:11:47 +0200 | [diff] [blame] | 437 | extern int zlib_compression_level; |
Dana How | 960ccca | 2007-05-09 13:56:50 -0700 | [diff] [blame] | 438 | extern int core_compression_level; |
| 439 | extern int core_compression_seen; |
Shawn O. Pearce | 60bb8b1 | 2006-12-23 02:34:28 -0500 | [diff] [blame] | 440 | extern size_t packed_git_window_size; |
Shawn O. Pearce | 77ccc5b | 2006-12-23 02:33:35 -0500 | [diff] [blame] | 441 | extern size_t packed_git_limit; |
Shawn O. Pearce | 18bdec1 | 2007-03-19 01:14:37 -0400 | [diff] [blame] | 442 | extern size_t delta_base_cache_limit; |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 443 | extern int auto_crlf; |
Linus Torvalds | aafe9fb | 2008-06-18 15:18:44 -0700 | [diff] [blame] | 444 | extern int fsync_object_files; |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 445 | |
Steffen Prohaska | 21e5ad5 | 2008-02-06 12:25:58 +0100 | [diff] [blame] | 446 | enum safe_crlf { |
| 447 | SAFE_CRLF_FALSE = 0, |
| 448 | SAFE_CRLF_FAIL = 1, |
| 449 | SAFE_CRLF_WARN = 2, |
| 450 | }; |
| 451 | |
| 452 | extern enum safe_crlf safe_crlf; |
| 453 | |
Jay Soffian | 9ed36cf | 2008-02-19 11:24:37 -0500 | [diff] [blame] | 454 | enum branch_track { |
| 455 | BRANCH_TRACK_NEVER = 0, |
| 456 | BRANCH_TRACK_REMOTE, |
| 457 | BRANCH_TRACK_ALWAYS, |
| 458 | BRANCH_TRACK_EXPLICIT, |
| 459 | }; |
| 460 | |
Dustin Sallings | c998ae9 | 2008-05-10 15:36:29 -0700 | [diff] [blame] | 461 | enum rebase_setup_type { |
| 462 | AUTOREBASE_NEVER = 0, |
| 463 | AUTOREBASE_LOCAL, |
| 464 | AUTOREBASE_REMOTE, |
| 465 | AUTOREBASE_ALWAYS, |
| 466 | }; |
| 467 | |
Jay Soffian | 9ed36cf | 2008-02-19 11:24:37 -0500 | [diff] [blame] | 468 | extern enum branch_track git_branch_track; |
Dustin Sallings | c998ae9 | 2008-05-10 15:36:29 -0700 | [diff] [blame] | 469 | extern enum rebase_setup_type autorebase; |
Jay Soffian | 9ed36cf | 2008-02-19 11:24:37 -0500 | [diff] [blame] | 470 | |
Junio C Hamano | ab9cb76 | 2005-11-25 15:59:09 -0800 | [diff] [blame] | 471 | #define GIT_REPO_VERSION 0 |
| 472 | extern int repository_format_version; |
| 473 | extern int check_repository_format(void); |
| 474 | |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 475 | #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 Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 481 | #define TYPE_CHANGED 0x0040 |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 482 | |
| 483 | /* Return a statically allocated filename matching the sha1 signature */ |
Timo Sirainen | 4ec99bf | 2005-08-09 18:30:22 +0300 | [diff] [blame] | 484 | extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2))); |
| 485 | extern char *git_path(const char *fmt, ...) __attribute__((format (printf, 1, 2))); |
Linus Torvalds | 73134b6 | 2005-04-10 14:03:58 -0700 | [diff] [blame] | 486 | extern char *sha1_file_name(const unsigned char *sha1); |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 487 | extern char *sha1_pack_name(const unsigned char *sha1); |
| 488 | extern char *sha1_pack_index_name(const unsigned char *sha1); |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 489 | extern const char *find_unique_abbrev(const unsigned char *sha1, int); |
Junio C Hamano | 88cd621 | 2005-09-30 14:02:47 -0700 | [diff] [blame] | 490 | extern const unsigned char null_sha1[20]; |
David Rientjes | 0bef57e | 2006-08-15 13:37:19 -0700 | [diff] [blame] | 491 | static inline int is_null_sha1(const unsigned char *sha1) |
| 492 | { |
| 493 | return !memcmp(sha1, null_sha1, 20); |
| 494 | } |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 495 | static inline int hashcmp(const unsigned char *sha1, const unsigned char *sha2) |
| 496 | { |
| 497 | return memcmp(sha1, sha2, 20); |
| 498 | } |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 499 | static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src) |
| 500 | { |
| 501 | memcpy(sha_dst, sha_src, 20); |
| 502 | } |
Junio C Hamano | a8e0d16 | 2006-08-23 13:57:23 -0700 | [diff] [blame] | 503 | static inline void hashclr(unsigned char *hash) |
| 504 | { |
| 505 | memset(hash, 0, 20); |
| 506 | } |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 507 | |
Holger Eitzenberger | f2db68e | 2005-08-04 22:43:03 +0200 | [diff] [blame] | 508 | int git_mkstemp(char *path, size_t n, const char *template); |
| 509 | |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 510 | /* |
| 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 Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 518 | enum sharedrepo { |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 519 | PERM_UMASK = 0, |
| 520 | OLD_PERM_GROUP = 1, |
| 521 | OLD_PERM_EVERYBODY = 2, |
| 522 | PERM_GROUP = 0660, |
| 523 | PERM_EVERYBODY = 0664, |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 524 | }; |
| 525 | int git_config_perm(const char *var, const char *value); |
Johannes Schindelin | 457f06d | 2005-12-22 23:13:56 +0100 | [diff] [blame] | 526 | int adjust_shared_perm(const char *path); |
Junio C Hamano | b2cb942 | 2005-07-06 01:11:52 -0700 | [diff] [blame] | 527 | int safe_create_leading_directories(char *path); |
Jeff King | 8e21d63 | 2008-06-25 01:41:34 -0400 | [diff] [blame] | 528 | int safe_create_leading_directories_const(const char *path); |
Timo Hirvonen | bd22c90 | 2005-11-21 02:52:52 +0200 | [diff] [blame] | 529 | char *enter_repo(char *path, int strict); |
Johannes Schindelin | e5392c5 | 2007-08-01 01:28:59 +0100 | [diff] [blame] | 530 | static inline int is_absolute_path(const char *path) |
| 531 | { |
Johannes Sixt | 25fe217 | 2008-03-05 21:51:27 +0100 | [diff] [blame] | 532 | return path[0] == '/' || has_dos_drive_prefix(path); |
Johannes Schindelin | e5392c5 | 2007-08-01 01:28:59 +0100 | [diff] [blame] | 533 | } |
| 534 | const char *make_absolute_path(const char *path); |
Daniel Barkalow | 1b9a946 | 2008-06-05 23:15:19 -0400 | [diff] [blame] | 535 | const char *make_nonrelative_path(const char *path); |
Linus Torvalds | 044bbbc | 2008-06-19 12:34:06 -0700 | [diff] [blame] | 536 | const char *make_relative_path(const char *abs, const char *base); |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 537 | int normalize_absolute_path(char *buf, const char *path); |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 538 | int longest_ancestor_length(const char *path, const char *prefix_list); |
Junio C Hamano | b2cb942 | 2005-07-06 01:11:52 -0700 | [diff] [blame] | 539 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 540 | /* Read and unpack a sha1 file into memory, write memory to a sha1 file */ |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 541 | extern int sha1_object_info(const unsigned char *, unsigned long *); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 542 | extern void * read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size); |
Nicolas Pitre | ce9fbf1 | 2007-03-20 16:02:09 -0400 | [diff] [blame] | 543 | extern int hash_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1); |
Brian Gerst | bf0f910 | 2005-05-18 08:14:09 -0400 | [diff] [blame] | 544 | extern int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *return_sha1); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 545 | extern int pretend_sha1_file(void *, unsigned long, enum object_type, unsigned char *); |
Nicolas Pitre | bbac731 | 2008-05-14 01:32:48 -0400 | [diff] [blame] | 546 | extern int force_object_loose(const unsigned char *sha1, time_t mtime); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 547 | |
Nicolas Pitre | ac93910 | 2008-07-14 21:46:48 -0400 | [diff] [blame] | 548 | /* just like read_sha1_file(), but non fatal in presence of bad objects */ |
| 549 | extern void *read_object(const unsigned char *sha1, enum object_type *type, unsigned long *size); |
| 550 | |
Jason McMullan | 5d6ccf5 | 2005-06-03 11:05:39 -0400 | [diff] [blame] | 551 | extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned long size, const char *type); |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 552 | |
Junio C Hamano | 839837b | 2006-09-01 00:17:47 -0700 | [diff] [blame] | 553 | extern int move_temp_to_file(const char *tmpfile, const char *filename); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 554 | |
Junio C Hamano | 106d710 | 2006-09-06 02:12:09 -0700 | [diff] [blame] | 555 | extern int has_sha1_pack(const unsigned char *sha1, const char **ignore); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 556 | extern int has_sha1_file(const unsigned char *sha1); |
| 557 | |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 558 | extern int has_pack_file(const unsigned char *sha1); |
| 559 | extern int has_pack_index(const unsigned char *sha1); |
| 560 | |
Linus Torvalds | 192a6be | 2007-05-30 10:32:19 -0700 | [diff] [blame] | 561 | extern const signed char hexval_table[256]; |
| 562 | static inline unsigned int hexval(unsigned char c) |
Junio C Hamano | e49521b | 2006-09-20 16:04:46 -0700 | [diff] [blame] | 563 | { |
| 564 | return hexval_table[c]; |
| 565 | } |
| 566 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 567 | /* Convert to/from hex/sha1 representation */ |
Junio C Hamano | 46a6c26 | 2006-01-25 01:03:18 -0800 | [diff] [blame] | 568 | #define MINIMUM_ABBREV 4 |
| 569 | #define DEFAULT_ABBREV 7 |
| 570 | |
Linus Torvalds | 3c249c9 | 2005-05-01 16:36:56 -0700 | [diff] [blame] | 571 | extern int get_sha1(const char *str, unsigned char *sha1); |
Martin Koegler | a0cd87a | 2007-04-23 22:55:05 +0200 | [diff] [blame] | 572 | extern int get_sha1_with_mode(const char *str, unsigned char *sha1, unsigned *mode); |
Linus Torvalds | 197ee8c | 2005-04-09 12:09:27 -0700 | [diff] [blame] | 573 | extern int get_sha1_hex(const char *hex, unsigned char *sha1); |
| 574 | extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */ |
Linus Torvalds | ca8db14 | 2005-09-25 09:59:37 -0700 | [diff] [blame] | 575 | extern int read_ref(const char *filename, unsigned char *sha1); |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 576 | extern const char *resolve_ref(const char *path, unsigned char *sha1, int, int *); |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 577 | extern int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref); |
Johannes Schindelin | eb3a482 | 2007-02-09 01:28:23 +0100 | [diff] [blame] | 578 | extern int dwim_log(const char *str, int len, unsigned char *sha1, char **ref); |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 579 | |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 580 | extern int refname_match(const char *abbrev_name, const char *full_name, const char **rules); |
| 581 | extern const char *ref_rev_parse_rules[]; |
Steffen Prohaska | 605b497 | 2007-11-11 15:01:48 +0100 | [diff] [blame] | 582 | extern const char *ref_fetch_rules[]; |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 583 | |
Nicolas Pitre | 8b5157e | 2007-01-26 17:26:10 -0500 | [diff] [blame] | 584 | extern int create_symref(const char *ref, const char *refs_heads_master, const char *logmsg); |
Junio C Hamano | c847f53 | 2007-01-01 23:31:08 -0800 | [diff] [blame] | 585 | extern int validate_headref(const char *ref); |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 586 | |
Linus Torvalds | 958ba6c | 2005-05-20 09:09:18 -0700 | [diff] [blame] | 587 | extern int base_name_compare(const char *name1, int len1, int mode1, const char *name2, int len2, int mode2); |
Linus Torvalds | 0ab9e1e | 2008-03-05 18:25:10 -0800 | [diff] [blame] | 588 | extern int df_name_compare(const char *name1, int len1, int mode1, const char *name2, int len2, int mode2); |
Linus Torvalds | 79517a0 | 2005-04-09 12:59:11 -0700 | [diff] [blame] | 589 | extern int cache_name_compare(const char *name1, int len1, const char *name2, int len2); |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 590 | |
Junio C Hamano | 40469ee | 2005-04-28 16:42:27 -0700 | [diff] [blame] | 591 | extern void *read_object_with_reference(const unsigned char *sha1, |
Brian Gerst | bf0f910 | 2005-05-18 08:14:09 -0400 | [diff] [blame] | 592 | const char *required_type, |
Junio C Hamano | 40469ee | 2005-04-28 16:42:27 -0700 | [diff] [blame] | 593 | unsigned long *size, |
| 594 | unsigned char *sha1_ret); |
Junio C Hamano | f4913f9 | 2005-04-20 18:06:49 -0700 | [diff] [blame] | 595 | |
Junio C Hamano | 8177631 | 2007-12-24 00:51:01 -0800 | [diff] [blame] | 596 | extern struct object *peel_to_type(const char *name, int namelen, |
| 597 | struct object *o, enum object_type); |
| 598 | |
Junio C Hamano | 73013af | 2007-07-13 23:14:52 -0700 | [diff] [blame] | 599 | enum date_mode { |
| 600 | DATE_NORMAL = 0, |
| 601 | DATE_RELATIVE, |
| 602 | DATE_SHORT, |
| 603 | DATE_LOCAL, |
| 604 | DATE_ISO8601, |
| 605 | DATE_RFC2822 |
| 606 | }; |
| 607 | |
Johannes Schindelin | f8493ec | 2007-02-27 16:21:04 +0100 | [diff] [blame] | 608 | const char *show_date(unsigned long time, int timezone, enum date_mode mode); |
Linus Torvalds | 2a39064 | 2005-09-19 15:53:50 -0700 | [diff] [blame] | 609 | int parse_date(const char *date, char *buf, int bufsize); |
Edgar Toernig | ecee9d9 | 2005-04-30 09:46:49 -0700 | [diff] [blame] | 610 | void datestamp(char *buf, int bufsize); |
Linus Torvalds | 3c07b1d | 2005-11-14 19:29:06 -0800 | [diff] [blame] | 611 | unsigned long approxidate(const char *); |
Andy Parkins | 856665f | 2007-09-28 15:17:31 +0100 | [diff] [blame] | 612 | enum date_mode parse_date_format(const char *format); |
Edgar Toernig | ecee9d9 | 2005-04-30 09:46:49 -0700 | [diff] [blame] | 613 | |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 614 | #define IDENT_WARN_ON_NO_NAME 1 |
| 615 | #define IDENT_ERROR_ON_NO_NAME 2 |
| 616 | #define IDENT_NO_DATE 4 |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 617 | extern const char *git_author_info(int); |
| 618 | extern const char *git_committer_info(int); |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 619 | extern const char *fmt_ident(const char *name, const char *email, const char *date_str, int); |
Junio C Hamano | d9ccfe7 | 2007-12-02 13:43:34 -0800 | [diff] [blame] | 620 | extern const char *fmt_name(const char *name, const char *email); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 621 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 622 | struct 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. Capitulino | efbc583 | 2007-04-25 11:18:08 -0300 | [diff] [blame] | 631 | extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath); |
Linus Torvalds | c40641b | 2008-05-09 09:21:07 -0700 | [diff] [blame] | 632 | extern int has_symlink_leading_path(int len, const char *name); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 633 | |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 634 | extern struct alternate_object_database { |
Junio C Hamano | d5a63b9 | 2005-08-14 17:25:57 -0700 | [diff] [blame] | 635 | struct alternate_object_database *next; |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 636 | char *name; |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 637 | char base[FLEX_ARRAY]; /* more */ |
Junio C Hamano | d5a63b9 | 2005-08-14 17:25:57 -0700 | [diff] [blame] | 638 | } *alt_odb_list; |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 639 | extern void prepare_alt_odb(void); |
Daniel Barkalow | bef70b2 | 2008-04-17 19:32:30 -0400 | [diff] [blame] | 640 | extern void add_to_alternates_file(const char *reference); |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 641 | |
Shawn O. Pearce | c41ee58 | 2006-12-23 02:33:44 -0500 | [diff] [blame] | 642 | struct 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 Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 651 | extern struct packed_git { |
| 652 | struct packed_git *next; |
Shawn O. Pearce | c41ee58 | 2006-12-23 02:33:44 -0500 | [diff] [blame] | 653 | struct pack_window *windows; |
Shawn O. Pearce | 2dc3a23 | 2006-12-23 02:33:47 -0500 | [diff] [blame] | 654 | off_t pack_size; |
Nicolas Pitre | 5705909 | 2007-04-09 01:06:28 -0400 | [diff] [blame] | 655 | const void *index_data; |
| 656 | size_t index_size; |
| 657 | uint32_t num_objects; |
Nicolas Pitre | 8eca0b4 | 2008-06-23 21:23:39 -0400 | [diff] [blame] | 658 | uint32_t num_bad_objects; |
| 659 | unsigned char *bad_object_sha1; |
Nicolas Pitre | 4287307 | 2007-03-16 16:42:50 -0400 | [diff] [blame] | 660 | int index_version; |
Nicolas Pitre | 5705909 | 2007-04-09 01:06:28 -0400 | [diff] [blame] | 661 | time_t mtime; |
Shawn O. Pearce | 9bc879c | 2006-12-23 02:34:01 -0500 | [diff] [blame] | 662 | int pack_fd; |
Linus Torvalds | 9d835df | 2005-10-13 15:38:28 -0700 | [diff] [blame] | 663 | int pack_local; |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 664 | unsigned char sha1[20]; |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 665 | /* something like ".git/objects/pack/xxxxx.pack" */ |
| 666 | char pack_name[FLEX_ARRAY]; /* more */ |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 667 | } *packed_git; |
Junio C Hamano | f3bf922 | 2005-06-30 17:15:39 -0700 | [diff] [blame] | 668 | |
| 669 | struct pack_entry { |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 670 | off_t offset; |
Junio C Hamano | f3bf922 | 2005-06-30 17:15:39 -0700 | [diff] [blame] | 671 | unsigned char sha1[20]; |
| 672 | struct packed_git *p; |
| 673 | }; |
| 674 | |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 675 | struct ref { |
| 676 | struct ref *next; |
| 677 | unsigned char old_sha1[20]; |
| 678 | unsigned char new_sha1[20]; |
Daniel Barkalow | be885d9 | 2008-04-26 15:53:12 -0400 | [diff] [blame] | 679 | char *symref; |
Shawn O. Pearce | 9f8a15c | 2007-11-18 04:31:37 -0500 | [diff] [blame] | 680 | unsigned int force:1, |
| 681 | merge:1, |
| 682 | nonfastforward:1, |
| 683 | deletion:1; |
Jeff King | 8736a84 | 2007-11-17 07:54:27 -0500 | [diff] [blame] | 684 | 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 King | ca74c45 | 2007-11-17 07:56:03 -0500 | [diff] [blame] | 690 | REF_STATUS_REMOTE_REJECT, |
Jeff King | 2a0fe89 | 2007-11-18 02:16:52 -0500 | [diff] [blame] | 691 | REF_STATUS_EXPECTING_REPORT, |
Jeff King | 8736a84 | 2007-11-17 07:54:27 -0500 | [diff] [blame] | 692 | } status; |
Jeff King | 2a0fe89 | 2007-11-18 02:16:52 -0500 | [diff] [blame] | 693 | char *remote_status; |
Junio C Hamano | f88395a | 2005-08-03 16:35:29 -0700 | [diff] [blame] | 694 | struct ref *peer_ref; /* when renaming */ |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 695 | char name[FLEX_ARRAY]; /* more */ |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 696 | }; |
| 697 | |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 698 | #define REF_NORMAL (1u << 0) |
| 699 | #define REF_HEADS (1u << 1) |
| 700 | #define REF_TAGS (1u << 2) |
| 701 | |
Jeff King | cda69f4 | 2007-11-18 02:13:10 -0500 | [diff] [blame] | 702 | extern struct ref *find_ref_by_name(struct ref *list, const char *name); |
| 703 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 704 | #define CONNECT_VERBOSE (1u << 0) |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 705 | extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags); |
Johannes Sixt | 98158e9 | 2007-10-19 21:47:53 +0200 | [diff] [blame] | 706 | extern int finish_connect(struct child_process *conn); |
Linus Torvalds | 013e7c7 | 2005-07-04 13:24:30 -0700 | [diff] [blame] | 707 | extern int path_match(const char *path, int nr, char **match); |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 708 | extern int get_ack(int fd, unsigned char *result_sha1); |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 709 | extern struct ref **get_remote_heads(int in, struct ref **list, int nr_match, char **match, unsigned int flags); |
Johannes Schindelin | 211b5f9 | 2005-10-28 04:48:54 +0200 | [diff] [blame] | 710 | extern int server_supports(const char *feature); |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 711 | |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 712 | extern struct packed_git *parse_pack_index(unsigned char *sha1); |
| 713 | |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 714 | extern void prepare_packed_git(void); |
Shawn Pearce | fc04c41 | 2006-11-01 17:06:21 -0500 | [diff] [blame] | 715 | extern void reprepare_packed_git(void); |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 716 | extern void install_packed_git(struct packed_git *pack); |
| 717 | |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 718 | extern struct packed_git *find_sha1_pack(const unsigned char *sha1, |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 719 | struct packed_git *packs); |
| 720 | |
Chris Wedgwood | 276bc2c | 2007-01-16 22:28:02 -0800 | [diff] [blame] | 721 | extern void pack_report(void); |
Shawn O. Pearce | d079837 | 2007-05-26 01:24:19 -0400 | [diff] [blame] | 722 | extern int open_pack_index(struct packed_git *); |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 723 | extern unsigned char* use_pack(struct packed_git *, struct pack_window **, off_t, unsigned int *); |
Shawn O. Pearce | c9ced05 | 2008-01-17 22:57:00 -0500 | [diff] [blame] | 724 | extern void close_pack_windows(struct packed_git *); |
Shawn O. Pearce | 03e79c8 | 2006-12-23 02:34:08 -0500 | [diff] [blame] | 725 | extern void unuse_pack(struct pack_window **); |
Nicolas Pitre | 4287307 | 2007-03-16 16:42:50 -0400 | [diff] [blame] | 726 | extern struct packed_git *add_packed_git(const char *, int, int); |
Shawn O. Pearce | d079837 | 2007-05-26 01:24:19 -0400 | [diff] [blame] | 727 | extern const unsigned char *nth_packed_object_sha1(struct packed_git *, uint32_t); |
Nicolas Pitre | 9909323 | 2008-06-24 23:17:12 -0400 | [diff] [blame] | 728 | extern off_t nth_packed_object_offset(const struct packed_git *, uint32_t); |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 729 | extern off_t find_pack_entry_one(const unsigned char *, struct packed_git *); |
| 730 | extern void *unpack_entry(struct packed_git *, off_t, enum object_type *, unsigned long *); |
Junio C Hamano | 72518e9 | 2006-09-03 21:09:18 -0700 | [diff] [blame] | 731 | extern unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep); |
Nicolas Pitre | 54dab52 | 2007-04-16 12:31:56 -0400 | [diff] [blame] | 732 | extern unsigned long get_size_from_delta(struct packed_git *, struct pack_window **, off_t); |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 733 | extern const char *packed_object_info_detail(struct packed_git *, off_t, unsigned long *, unsigned long *, unsigned int *, unsigned char *); |
Junio C Hamano | 000dfd3 | 2007-09-16 23:15:19 -0700 | [diff] [blame] | 734 | extern int matches_pack_name(struct packed_git *p, const char *name); |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 735 | |
Junio C Hamano | 8f3f9b0 | 2005-07-23 17:54:41 -0700 | [diff] [blame] | 736 | /* Dumb servers support */ |
| 737 | extern int update_server_info(int); |
| 738 | |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 739 | typedef int (*config_fn_t)(const char *, const char *, void *); |
| 740 | extern int git_default_config(const char *, const char *, void *); |
| 741 | extern int git_config_from_file(config_fn_t fn, const char *, void *); |
| 742 | extern int git_config(config_fn_t fn, void *); |
Brian Downing | 0b87b6e | 2007-07-12 08:32:26 -0500 | [diff] [blame] | 743 | extern int git_parse_long(const char *, long *); |
| 744 | extern int git_parse_ulong(const char *, unsigned long *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 745 | extern int git_config_int(const char *, const char *); |
Brian Downing | 0b87b6e | 2007-07-12 08:32:26 -0500 | [diff] [blame] | 746 | extern unsigned long git_config_ulong(const char *, const char *); |
Junio C Hamano | a53f2ec | 2008-04-12 18:33:31 -0700 | [diff] [blame] | 747 | extern int git_config_bool_or_int(const char *, const char *, int *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 748 | extern int git_config_bool(const char *, const char *); |
Christian Couder | ea5105a | 2008-02-16 06:00:24 +0100 | [diff] [blame] | 749 | extern int git_config_string(const char **, const char *, const char *); |
Johannes Schindelin | 10bea15 | 2005-11-17 22:32:36 +0100 | [diff] [blame] | 750 | extern int git_config_set(const char *, const char *); |
Johannes Schindelin | 4ddba79 | 2005-11-20 06:52:22 +0100 | [diff] [blame] | 751 | extern int git_config_set_multivar(const char *, const char *, const char *, int); |
Johannes Schindelin | 0667fcf | 2006-12-16 15:14:14 +0100 | [diff] [blame] | 752 | extern int git_config_rename_section(const char *, const char *); |
Johannes Sixt | 506b17b | 2007-11-13 21:05:05 +0100 | [diff] [blame] | 753 | extern const char *git_etc_gitconfig(void); |
Johannes Schindelin | ef90d6d | 2008-05-14 18:46:53 +0100 | [diff] [blame] | 754 | extern int check_repository_format_version(const char *var, const char *value, void *cb); |
Jeff King | ab88c36 | 2008-02-06 05:11:18 -0500 | [diff] [blame] | 755 | extern int git_config_system(void); |
| 756 | extern int git_config_global(void); |
Junio C Hamano | 40ea4ed | 2008-02-11 10:41:18 -0800 | [diff] [blame] | 757 | extern int config_error_nonbool(const char *); |
Daniel Barkalow | dc87183 | 2008-06-30 03:37:47 -0400 | [diff] [blame] | 758 | extern const char *config_exclusive_filename; |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 759 | |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 760 | #define MAX_GITNAME (1000) |
| 761 | extern char git_default_email[MAX_GITNAME]; |
| 762 | extern char git_default_name[MAX_GITNAME]; |
Santi Béjar | bb1ae3f | 2008-05-04 18:04:51 +0200 | [diff] [blame] | 763 | extern int user_ident_explicitly_given; |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 764 | |
Shawn O. Pearce | 1a8f274 | 2007-03-12 15:33:18 -0400 | [diff] [blame] | 765 | extern const char *git_commit_encoding; |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 766 | extern const char *git_log_output_encoding; |
Junio C Hamano | 4e72dce | 2005-11-27 16:09:40 -0800 | [diff] [blame] | 767 | |
Theodore Ts'o | 06f59e9 | 2007-06-29 13:40:46 -0400 | [diff] [blame] | 768 | /* IO helper functions */ |
| 769 | extern void maybe_flush_or_die(FILE *, const char *); |
Junio C Hamano | f3123c4 | 2005-10-22 01:28:13 -0700 | [diff] [blame] | 770 | extern int copy_fd(int ifd, int ofd); |
Daniel Barkalow | 1468bd4 | 2008-02-25 14:24:48 -0500 | [diff] [blame] | 771 | extern int copy_file(const char *dst, const char *src, int mode); |
Heikki Orsila | 0104ca0 | 2008-04-27 21:21:58 +0300 | [diff] [blame] | 772 | extern ssize_t read_in_full(int fd, void *buf, size_t count); |
| 773 | extern ssize_t write_in_full(int fd, const void *buf, size_t count); |
Rene Scharfe | 7230e6d | 2006-08-21 20:43:43 +0200 | [diff] [blame] | 774 | extern void write_or_die(int fd, const void *buf, size_t count); |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 775 | extern int write_or_whine(int fd, const void *buf, size_t count, const char *msg); |
Andy Whitcroft | e081405 | 2007-01-08 15:57:52 +0000 | [diff] [blame] | 776 | extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg); |
Linus Torvalds | 4c81b03 | 2008-05-30 08:42:16 -0700 | [diff] [blame] | 777 | extern void fsync_or_die(int fd, const char *); |
Junio C Hamano | ad89721 | 2005-12-14 22:17:38 -0800 | [diff] [blame] | 778 | |
Linus Torvalds | f67b45f | 2006-02-28 11:26:21 -0800 | [diff] [blame] | 779 | /* pager.c */ |
| 780 | extern void setup_pager(void); |
Christian Couder | 872da32 | 2008-02-16 06:01:11 +0100 | [diff] [blame] | 781 | extern const char *pager_program; |
Jeff King | 6e9af86 | 2007-12-11 01:27:33 -0500 | [diff] [blame] | 782 | extern int pager_in_use(void); |
Matthias Lederhofer | aa086eb | 2006-07-30 00:27:43 +0200 | [diff] [blame] | 783 | extern int pager_use_color; |
Linus Torvalds | f67b45f | 2006-02-28 11:26:21 -0800 | [diff] [blame] | 784 | |
Christian Couder | ee9601e | 2008-02-16 06:01:41 +0100 | [diff] [blame] | 785 | extern const char *editor_program; |
Christian Couder | dfb068b | 2008-02-16 06:01:59 +0100 | [diff] [blame] | 786 | extern const char *excludes_file; |
Johannes Schindelin | 4d87b9c | 2007-07-20 13:06:09 +0100 | [diff] [blame] | 787 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 788 | /* base85 */ |
Jim Meyering | f981577 | 2007-04-10 00:56:33 +0200 | [diff] [blame] | 789 | int decode_85(char *dst, const char *line, int linelen); |
| 790 | void encode_85(char *buf, const unsigned char *data, int bytes); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 791 | |
Linus Torvalds | 855419f | 2006-06-19 10:44:15 -0700 | [diff] [blame] | 792 | /* alloc.c */ |
Linus Torvalds | 100c5f3 | 2007-04-16 22:11:43 -0700 | [diff] [blame] | 793 | extern void *alloc_blob_node(void); |
| 794 | extern void *alloc_tree_node(void); |
| 795 | extern void *alloc_commit_node(void); |
| 796 | extern void *alloc_tag_node(void); |
| 797 | extern void *alloc_object_node(void); |
Linus Torvalds | 855419f | 2006-06-19 10:44:15 -0700 | [diff] [blame] | 798 | extern void alloc_report(void); |
| 799 | |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 800 | /* trace.c */ |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 801 | extern void trace_printf(const char *format, ...); |
Christian Couder | b319ce4 | 2007-12-03 05:51:50 +0100 | [diff] [blame] | 802 | extern void trace_argv_printf(const char **argv, const char *format, ...); |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 803 | |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 804 | /* convert.c */ |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 805 | /* returns 1 if *dst was used */ |
Steffen Prohaska | 21e5ad5 | 2008-02-06 12:25:58 +0100 | [diff] [blame] | 806 | extern int convert_to_git(const char *path, const char *src, size_t len, |
| 807 | struct strbuf *dst, enum safe_crlf checksafe); |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 808 | extern int convert_to_working_tree(const char *path, const char *src, size_t len, struct strbuf *dst); |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 809 | |
Junio C Hamano | b6ec1d6 | 2007-11-18 01:12:04 -0800 | [diff] [blame] | 810 | /* add */ |
Alex Riesen | 7ae02a3 | 2008-05-12 19:58:10 +0200 | [diff] [blame] | 811 | /* |
| 812 | * return 0 if success, 1 - if addition of a file failed and |
| 813 | * ADD_FILES_IGNORE_ERRORS was specified in flags |
| 814 | */ |
| 815 | int add_files_to_cache(const char *prefix, const char **pathspec, int flags); |
Junio C Hamano | b6ec1d6 | 2007-11-18 01:12:04 -0800 | [diff] [blame] | 816 | |
Junio C Hamano | aecbf91 | 2007-08-31 13:13:42 -0700 | [diff] [blame] | 817 | /* diff.c */ |
| 818 | extern int diff_auto_refresh_index; |
| 819 | |
Junio C Hamano | 68faf68 | 2007-02-15 16:32:45 -0800 | [diff] [blame] | 820 | /* match-trees.c */ |
| 821 | void shift_tree(const unsigned char *, const unsigned char *, unsigned char *, int); |
| 822 | |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 823 | /* |
| 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 Hamano | 459fa6d | 2007-10-02 18:00:27 -0700 | [diff] [blame] | 829 | #define WS_INDENT_WITH_NON_TAB 04 |
Junio C Hamano | b2979ff | 2008-01-15 00:59:05 -0800 | [diff] [blame] | 830 | #define WS_CR_AT_EOL 010 |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 831 | #define WS_DEFAULT_RULE (WS_TRAILING_SPACE|WS_SPACE_BEFORE_TAB) |
Junio C Hamano | cf1b786 | 2007-12-06 00:14:14 -0800 | [diff] [blame] | 832 | extern unsigned whitespace_rule_cfg; |
| 833 | extern unsigned whitespace_rule(const char *); |
| 834 | extern unsigned parse_whitespace_rule(const char *); |
Junio C Hamano | 8f8841e | 2008-06-26 15:35:21 -0700 | [diff] [blame] | 835 | extern unsigned ws_check(const char *line, int len, unsigned ws_rule); |
| 836 | extern void ws_check_emit(const char *line, int len, unsigned ws_rule, FILE *stream, const char *set, const char *reset, const char *ws); |
Wincent Colaiuta | c1795bb | 2007-12-13 14:32:29 +0100 | [diff] [blame] | 837 | extern char *whitespace_error_string(unsigned ws); |
Junio C Hamano | fe3403c | 2008-02-23 16:59:16 -0800 | [diff] [blame] | 838 | extern int ws_fix_copy(char *, const char *, int, unsigned, int *); |
Junio C Hamano | 877f23c | 2008-06-26 15:36:59 -0700 | [diff] [blame] | 839 | extern int ws_blank_line(const char *line, int len, unsigned ws_rule); |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 840 | |
Junio C Hamano | ee425e4 | 2007-11-18 01:13:32 -0800 | [diff] [blame] | 841 | /* ls-files */ |
| 842 | int pathspec_match(const char **spec, char *matched, const char *filename, int skiplen); |
| 843 | int report_path_error(const char *ps_matched, const char **pathspec, int prefix_offset); |
| 844 | void overlay_tree_on_cache(const char *tree_name, const char *prefix); |
| 845 | |
Jeff King | 9435111 | 2008-02-24 17:17:14 -0500 | [diff] [blame] | 846 | char *alias_lookup(const char *alias); |
Miklos Vajna | 0989fe9 | 2008-06-27 18:21:54 +0200 | [diff] [blame] | 847 | int split_cmdline(char *cmdline, const char ***argv); |
Jeff King | 9435111 | 2008-02-24 17:17:14 -0500 | [diff] [blame] | 848 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 849 | #endif /* CACHE_H */ |