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 | a22c637 | 2008-02-22 20:37:40 -0800 | [diff] [blame] | 136 | |
| 137 | #define CE_HASHED (0x100000) |
| 138 | #define CE_UNHASHED (0x200000) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 139 | |
Linus Torvalds | d070e3a | 2008-02-22 20:39:21 -0800 | [diff] [blame] | 140 | /* |
Linus Torvalds | eb7a2f1 | 2008-02-22 20:41:17 -0800 | [diff] [blame] | 141 | * Copy the sha1 and stat state of a cache entry from one to |
| 142 | * another. But we never change the name, or the hash state! |
| 143 | */ |
| 144 | #define CE_STATE_MASK (CE_HASHED | CE_UNHASHED) |
| 145 | static inline void copy_cache_entry(struct cache_entry *dst, struct cache_entry *src) |
| 146 | { |
| 147 | unsigned int state = dst->ce_flags & CE_STATE_MASK; |
| 148 | |
| 149 | /* Don't copy hash chain and name */ |
| 150 | memcpy(dst, src, offsetof(struct cache_entry, next)); |
| 151 | |
| 152 | /* Restore the hash state */ |
| 153 | dst->ce_flags = (dst->ce_flags & ~CE_STATE_MASK) | state; |
| 154 | } |
| 155 | |
| 156 | /* |
Linus Torvalds | d070e3a | 2008-02-22 20:39:21 -0800 | [diff] [blame] | 157 | * We don't actually *remove* it, we can just mark it invalid so that |
| 158 | * we won't find it in lookups. |
| 159 | * |
| 160 | * Not only would we have to search the lists (simple enough), but |
| 161 | * we'd also have to rehash other hash buckets in case this makes the |
| 162 | * hash bucket empty (common). So it's much better to just mark |
| 163 | * it. |
| 164 | */ |
| 165 | static inline void remove_index_entry(struct cache_entry *ce) |
| 166 | { |
| 167 | ce->ce_flags |= CE_UNHASHED; |
| 168 | } |
| 169 | |
Junio C Hamano | 7fec10b | 2008-01-18 23:42:00 -0800 | [diff] [blame] | 170 | static inline unsigned create_ce_flags(size_t len, unsigned stage) |
| 171 | { |
| 172 | if (len >= CE_NAMEMASK) |
| 173 | len = CE_NAMEMASK; |
| 174 | return (len | (stage << CE_STAGESHIFT)); |
| 175 | } |
| 176 | |
| 177 | static inline size_t ce_namelen(const struct cache_entry *ce) |
| 178 | { |
| 179 | size_t len = ce->ce_flags & CE_NAMEMASK; |
| 180 | if (len < CE_NAMEMASK) |
| 181 | return len; |
| 182 | return strlen(ce->name + CE_NAMEMASK) + CE_NAMEMASK; |
| 183 | } |
| 184 | |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 185 | #define ce_size(ce) cache_entry_size(ce_namelen(ce)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 186 | #define ondisk_ce_size(ce) ondisk_cache_entry_size(ce_namelen(ce)) |
| 187 | #define ce_stage(ce) ((CE_STAGEMASK & (ce)->ce_flags) >> CE_STAGESHIFT) |
Junio C Hamano | eadb583 | 2008-01-18 23:45:24 -0800 | [diff] [blame] | 188 | #define ce_uptodate(ce) ((ce)->ce_flags & CE_UPTODATE) |
| 189 | #define ce_mark_uptodate(ce) ((ce)->ce_flags |= CE_UPTODATE) |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 190 | |
Linus Torvalds | e447947 | 2005-04-16 22:26:31 -0700 | [diff] [blame] | 191 | #define ce_permissions(mode) (((mode) & 0100) ? 0755 : 0644) |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 192 | static inline unsigned int create_ce_mode(unsigned int mode) |
| 193 | { |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 194 | if (S_ISLNK(mode)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 195 | return S_IFLNK; |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 196 | if (S_ISDIR(mode) || S_ISGITLINK(mode)) |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 197 | return S_IFGITLINK; |
| 198 | return S_IFREG | ce_permissions(mode); |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 199 | } |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 200 | static inline unsigned int ce_mode_from_stat(struct cache_entry *ce, unsigned int mode) |
| 201 | { |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 202 | extern int trust_executable_bit, has_symlinks; |
| 203 | if (!has_symlinks && S_ISREG(mode) && |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 204 | ce && S_ISLNK(ce->ce_mode)) |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 205 | return ce->ce_mode; |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 206 | if (!trust_executable_bit && S_ISREG(mode)) { |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 207 | if (ce && S_ISREG(ce->ce_mode)) |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 208 | return ce->ce_mode; |
| 209 | return create_ce_mode(0666); |
| 210 | } |
| 211 | return create_ce_mode(mode); |
| 212 | } |
Junio C Hamano | d6b8fc3 | 2008-01-31 01:17:48 -0800 | [diff] [blame] | 213 | static inline int ce_to_dtype(const struct cache_entry *ce) |
| 214 | { |
| 215 | unsigned ce_mode = ntohl(ce->ce_mode); |
| 216 | if (S_ISREG(ce_mode)) |
| 217 | return DT_REG; |
| 218 | else if (S_ISDIR(ce_mode) || S_ISGITLINK(ce_mode)) |
| 219 | return DT_DIR; |
| 220 | else if (S_ISLNK(ce_mode)) |
| 221 | return DT_LNK; |
| 222 | else |
| 223 | return DT_UNKNOWN; |
| 224 | } |
Junio C Hamano | 1b0c717 | 2006-03-29 22:55:43 -0800 | [diff] [blame] | 225 | #define canon_mode(mode) \ |
| 226 | (S_ISREG(mode) ? (S_IFREG | ce_permissions(mode)) : \ |
Martin Waitz | 302b928 | 2007-05-21 22:08:28 +0200 | [diff] [blame] | 227 | S_ISLNK(mode) ? S_IFLNK : S_ISDIR(mode) ? S_IFDIR : S_IFGITLINK) |
Linus Torvalds | e447947 | 2005-04-16 22:26:31 -0700 | [diff] [blame] | 228 | |
Junio C Hamano | aee4619 | 2005-04-16 08:33:23 -0700 | [diff] [blame] | 229 | #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] | 230 | #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] | 231 | |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 232 | struct index_state { |
| 233 | struct cache_entry **cache; |
| 234 | unsigned int cache_nr, cache_alloc, cache_changed; |
| 235 | struct cache_tree *cache_tree; |
| 236 | time_t timestamp; |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 237 | void *alloc; |
Junio C Hamano | 9cb76b8 | 2008-01-22 23:01:13 -0800 | [diff] [blame] | 238 | unsigned name_hash_initialized : 1; |
Linus Torvalds | cf55870 | 2008-01-22 18:41:14 -0800 | [diff] [blame] | 239 | struct hash_table name_hash; |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | extern struct index_state the_index; |
| 243 | |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 244 | #ifndef NO_THE_INDEX_COMPATIBILITY_MACROS |
Junio C Hamano | 228e94f | 2007-04-01 18:14:06 -0700 | [diff] [blame] | 245 | #define active_cache (the_index.cache) |
| 246 | #define active_nr (the_index.cache_nr) |
| 247 | #define active_alloc (the_index.cache_alloc) |
| 248 | #define active_cache_changed (the_index.cache_changed) |
| 249 | #define active_cache_tree (the_index.cache_tree) |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 250 | |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 251 | #define read_cache() read_index(&the_index) |
| 252 | #define read_cache_from(path) read_index_from(&the_index, (path)) |
| 253 | #define write_cache(newfd, cache, entries) write_index(&the_index, (newfd)) |
| 254 | #define discard_cache() discard_index(&the_index) |
Daniel Barkalow | 94a5728 | 2008-02-07 11:40:13 -0500 | [diff] [blame] | 255 | #define unmerged_cache() unmerged_index(&the_index) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 256 | #define cache_name_pos(name, namelen) index_name_pos(&the_index,(name),(namelen)) |
| 257 | #define add_cache_entry(ce, option) add_index_entry(&the_index, (ce), (option)) |
| 258 | #define remove_cache_entry_at(pos) remove_index_entry_at(&the_index, (pos)) |
| 259 | #define remove_file_from_cache(path) remove_file_from_index(&the_index, (path)) |
| 260 | #define add_file_to_cache(path, verbose) add_file_to_index(&the_index, (path), (verbose)) |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 261 | #define refresh_cache(flags) refresh_index(&the_index, (flags), NULL, NULL) |
Junio C Hamano | 4bd5b7d | 2007-11-10 00:15:03 -0800 | [diff] [blame] | 262 | #define ce_match_stat(ce, st, options) ie_match_stat(&the_index, (ce), (st), (options)) |
| 263 | #define ce_modified(ce, st, options) ie_modified(&the_index, (ce), (st), (options)) |
Linus Torvalds | cf55870 | 2008-01-22 18:41:14 -0800 | [diff] [blame] | 264 | #define cache_name_exists(name, namelen) index_name_exists(&the_index, (name), (namelen)) |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 265 | #endif |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 266 | |
Junio C Hamano | edaec3f | 2007-02-28 11:45:56 -0800 | [diff] [blame] | 267 | enum object_type { |
| 268 | OBJ_BAD = -1, |
| 269 | OBJ_NONE = 0, |
| 270 | OBJ_COMMIT = 1, |
| 271 | OBJ_TREE = 2, |
| 272 | OBJ_BLOB = 3, |
| 273 | OBJ_TAG = 4, |
| 274 | /* 5 for future expansion */ |
| 275 | OBJ_OFS_DELTA = 6, |
| 276 | OBJ_REF_DELTA = 7, |
| 277 | OBJ_MAX, |
| 278 | }; |
| 279 | |
Junio C Hamano | b45563a | 2007-11-30 22:22:38 -0800 | [diff] [blame] | 280 | static inline enum object_type object_type(unsigned int mode) |
| 281 | { |
| 282 | return S_ISDIR(mode) ? OBJ_TREE : |
| 283 | S_ISGITLINK(mode) ? OBJ_COMMIT : |
| 284 | OBJ_BLOB; |
| 285 | } |
| 286 | |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 287 | #define GIT_DIR_ENVIRONMENT "GIT_DIR" |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 288 | #define GIT_WORK_TREE_ENVIRONMENT "GIT_WORK_TREE" |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 289 | #define DEFAULT_GIT_DIR_ENVIRONMENT ".git" |
Junio C Hamano | d19938a | 2005-05-09 17:57:56 -0700 | [diff] [blame] | 290 | #define DB_ENVIRONMENT "GIT_OBJECT_DIRECTORY" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 291 | #define INDEX_ENVIRONMENT "GIT_INDEX_FILE" |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 292 | #define GRAFT_ENVIRONMENT "GIT_GRAFT_FILE" |
Junio C Hamano | d4ebc36 | 2006-12-19 01:28:15 -0800 | [diff] [blame] | 293 | #define TEMPLATE_DIR_ENVIRONMENT "GIT_TEMPLATE_DIR" |
| 294 | #define CONFIG_ENVIRONMENT "GIT_CONFIG" |
| 295 | #define CONFIG_LOCAL_ENVIRONMENT "GIT_CONFIG_LOCAL" |
| 296 | #define EXEC_PATH_ENVIRONMENT "GIT_EXEC_PATH" |
Junio C Hamano | d0bfd02 | 2007-04-12 01:07:32 -0700 | [diff] [blame] | 297 | #define GITATTRIBUTES_FILE ".gitattributes" |
| 298 | #define INFOATTRIBUTES_FILE "info/attributes" |
Junio C Hamano | f48fd68 | 2007-04-14 08:54:37 -0700 | [diff] [blame] | 299 | #define ATTRIBUTE_MACRO_PREFIX "[attr]" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 300 | |
Junio C Hamano | 7d1864c | 2007-01-07 02:00:28 -0800 | [diff] [blame] | 301 | extern int is_bare_repository_cfg; |
| 302 | extern int is_bare_repository(void); |
Johannes Schindelin | 6802563 | 2007-01-20 03:09:34 +0100 | [diff] [blame] | 303 | extern int is_inside_git_dir(void); |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 304 | extern char *git_work_tree_cfg; |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 305 | extern int is_inside_work_tree(void); |
Pierre Habouzit | c5fba16 | 2006-08-23 12:39:11 +0200 | [diff] [blame] | 306 | extern const char *get_git_dir(void); |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 307 | extern char *get_object_directory(void); |
Daniel Barkalow | 95fc751 | 2005-06-06 16:31:29 -0400 | [diff] [blame] | 308 | extern char *get_refs_directory(void); |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 309 | extern char *get_index_file(void); |
Junio C Hamano | 5da5c8f | 2005-07-30 00:58:28 -0700 | [diff] [blame] | 310 | extern char *get_graft_file(void); |
Johannes Schindelin | d7ac12b | 2007-08-01 01:29:38 +0100 | [diff] [blame] | 311 | extern int set_git_dir(const char *path); |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 312 | extern const char *get_git_work_tree(void); |
Junio C Hamano | 8ac069a | 2005-05-09 22:57:58 -0700 | [diff] [blame] | 313 | |
| 314 | #define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES" |
Linus Torvalds | bb233d6 | 2005-04-21 10:55:18 -0700 | [diff] [blame] | 315 | |
Junio C Hamano | 6b5ee13 | 2005-09-21 00:00:47 -0700 | [diff] [blame] | 316 | extern const char **get_pathspec(const char *prefix, const char **pathspec); |
Mike Hommey | 59f0f2f | 2007-11-03 12:23:11 +0100 | [diff] [blame] | 317 | extern void setup_work_tree(void); |
Junio C Hamano | 4ca0660 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 318 | extern const char *setup_git_directory_gently(int *); |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 319 | extern const char *setup_git_directory(void); |
Junio C Hamano | 6b5ee13 | 2005-09-21 00:00:47 -0700 | [diff] [blame] | 320 | 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] | 321 | 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] | 322 | extern void verify_filename(const char *prefix, const char *name); |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 323 | extern void verify_non_filename(const char *prefix, const char *name); |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 324 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 325 | #define alloc_nr(x) (((x)+16)*3/2) |
| 326 | |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 327 | /* |
| 328 | * Realloc the buffer pointed at by variable 'x' so that it can hold |
| 329 | * at least 'nr' entries; the number of entries currently allocated |
| 330 | * is 'alloc', using the standard growing factor alloc_nr() macro. |
| 331 | * |
| 332 | * DO NOT USE any expression with side-effect for 'x' or 'alloc'. |
| 333 | */ |
| 334 | #define ALLOC_GROW(x, nr, alloc) \ |
| 335 | do { \ |
Jeff King | c927e6c | 2007-06-16 18:37:39 -0400 | [diff] [blame] | 336 | if ((nr) > alloc) { \ |
Junio C Hamano | 4234a76 | 2007-06-11 22:10:55 -0700 | [diff] [blame] | 337 | if (alloc_nr(alloc) < (nr)) \ |
| 338 | alloc = (nr); \ |
| 339 | else \ |
| 340 | alloc = alloc_nr(alloc); \ |
Jeff King | 6815e56 | 2007-06-11 09:39:44 -0400 | [diff] [blame] | 341 | x = xrealloc((x), alloc * sizeof(*(x))); \ |
| 342 | } \ |
| 343 | } while(0) |
| 344 | |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 345 | /* Initialize and use the cache information */ |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 346 | extern int read_index(struct index_state *); |
| 347 | extern int read_index_from(struct index_state *, const char *path); |
| 348 | extern int write_index(struct index_state *, int newfd); |
| 349 | extern int discard_index(struct index_state *); |
Daniel Barkalow | 94a5728 | 2008-02-07 11:40:13 -0500 | [diff] [blame] | 350 | extern int unmerged_index(struct index_state *); |
Linus Torvalds | 8dcf39c | 2006-05-18 12:07:31 -0700 | [diff] [blame] | 351 | extern int verify_path(const char *path); |
Linus Torvalds | cf55870 | 2008-01-22 18:41:14 -0800 | [diff] [blame] | 352 | extern int index_name_exists(struct index_state *istate, const char *name, int namelen); |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 353 | extern int index_name_pos(struct index_state *, const char *name, int namelen); |
Junio C Hamano | 192268c | 2005-05-07 21:55:21 -0700 | [diff] [blame] | 354 | #define ADD_CACHE_OK_TO_ADD 1 /* Ok to add */ |
| 355 | #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] | 356 | #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] | 357 | #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] | 358 | 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] | 359 | extern struct cache_entry *refresh_cache_entry(struct cache_entry *ce, int really); |
Junio C Hamano | 4aab5b4 | 2007-04-01 23:26:07 -0700 | [diff] [blame] | 360 | extern int remove_index_entry_at(struct index_state *, int pos); |
| 361 | extern int remove_file_from_index(struct index_state *, const char *path); |
| 362 | extern int add_file_to_index(struct index_state *, const char *path, int verbose); |
Carlos Rica | 6640f88 | 2007-09-11 05:17:28 +0200 | [diff] [blame] | 363 | 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] | 364 | 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] | 365 | |
| 366 | /* do stat comparison even if CE_VALID is true */ |
| 367 | #define CE_MATCH_IGNORE_VALID 01 |
| 368 | /* do not check the contents but report dirty on racily-clean entries */ |
| 369 | #define CE_MATCH_RACY_IS_DIRTY 02 |
| 370 | extern int ie_match_stat(struct index_state *, struct cache_entry *, struct stat *, unsigned int); |
| 371 | extern int ie_modified(struct index_state *, struct cache_entry *, struct stat *, unsigned int); |
| 372 | |
Linus Torvalds | c0fd1f5 | 2005-07-14 16:55:06 -0700 | [diff] [blame] | 373 | 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] | 374 | 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] | 375 | 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] | 376 | 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] | 377 | extern void fill_stat_cache_info(struct cache_entry *ce, struct stat *st); |
| 378 | |
Linus Torvalds | 405e5b2 | 2006-05-19 09:56:35 -0700 | [diff] [blame] | 379 | #define REFRESH_REALLY 0x0001 /* ignore_valid */ |
| 380 | #define REFRESH_UNMERGED 0x0002 /* allow unmerged */ |
| 381 | #define REFRESH_QUIET 0x0004 /* be quiet about it */ |
| 382 | #define REFRESH_IGNORE_MISSING 0x0008 /* ignore non-existent */ |
Alexandre Julliard | d616813 | 2007-08-11 23:59:01 +0200 | [diff] [blame] | 383 | 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] | 384 | |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 385 | struct lock_file { |
| 386 | struct lock_file *next; |
Johannes Schindelin | 4723ee9 | 2007-11-13 21:05:03 +0100 | [diff] [blame] | 387 | int fd; |
Junio C Hamano | 5e635e3 | 2007-04-21 03:11:10 -0700 | [diff] [blame] | 388 | pid_t owner; |
Junio C Hamano | 1084b84 | 2007-01-02 11:19:05 -0800 | [diff] [blame] | 389 | char on_list; |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 390 | char filename[PATH_MAX]; |
Junio C Hamano | 415e96c | 2005-05-15 14:23:12 -0700 | [diff] [blame] | 391 | }; |
Junio C Hamano | 40aaae8 | 2006-08-12 01:03:47 -0700 | [diff] [blame] | 392 | extern int hold_lock_file_for_update(struct lock_file *, const char *path, int); |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 393 | extern int commit_lock_file(struct lock_file *); |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 394 | |
| 395 | extern int hold_locked_index(struct lock_file *, int); |
| 396 | extern int commit_locked_index(struct lock_file *); |
Junio C Hamano | 5e7f56a | 2007-03-31 23:27:41 -0700 | [diff] [blame] | 397 | extern void set_alternate_index_output(const char *); |
Brandon Casey | d6cf61b | 2008-01-16 11:05:32 -0800 | [diff] [blame] | 398 | extern int close_lock_file(struct lock_file *); |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 399 | extern void rollback_lock_file(struct lock_file *); |
Carlos Rica | 1401f46 | 2007-04-18 05:34:34 +0200 | [diff] [blame] | 400 | extern int delete_ref(const char *, const unsigned char *sha1); |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 401 | |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 402 | /* Environment bits from configuration mechanism */ |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 403 | extern int trust_executable_bit; |
Junio C Hamano | 9378c16 | 2007-06-24 15:11:24 -0700 | [diff] [blame] | 404 | extern int quote_path_fully; |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 405 | extern int has_symlinks; |
Junio C Hamano | 5f73076 | 2006-02-08 21:15:24 -0800 | [diff] [blame] | 406 | extern int assume_unchanged; |
Junio C Hamano | 9f0bb90 | 2006-05-02 00:40:24 -0700 | [diff] [blame] | 407 | extern int prefer_symlink_refs; |
Shawn Pearce | 6de08ae | 2006-05-17 05:55:40 -0400 | [diff] [blame] | 408 | extern int log_all_ref_updates; |
Junio C Hamano | 2f8acdb | 2006-03-20 18:45:47 -0800 | [diff] [blame] | 409 | extern int warn_ambiguous_refs; |
Johannes Schindelin | 457f06d | 2005-12-22 23:13:56 +0100 | [diff] [blame] | 410 | extern int shared_repository; |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 411 | extern const char *apply_default_whitespace; |
Joachim B Haga | 12f6c30 | 2006-07-03 22:11:47 +0200 | [diff] [blame] | 412 | extern int zlib_compression_level; |
Dana How | 960ccca | 2007-05-09 13:56:50 -0700 | [diff] [blame] | 413 | extern int core_compression_level; |
| 414 | extern int core_compression_seen; |
Shawn O. Pearce | 60bb8b1 | 2006-12-23 02:34:28 -0500 | [diff] [blame] | 415 | extern size_t packed_git_window_size; |
Shawn O. Pearce | 77ccc5b | 2006-12-23 02:33:35 -0500 | [diff] [blame] | 416 | extern size_t packed_git_limit; |
Shawn O. Pearce | 18bdec1 | 2007-03-19 01:14:37 -0400 | [diff] [blame] | 417 | extern size_t delta_base_cache_limit; |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 418 | extern int auto_crlf; |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 419 | |
Steffen Prohaska | 21e5ad5 | 2008-02-06 12:25:58 +0100 | [diff] [blame] | 420 | enum safe_crlf { |
| 421 | SAFE_CRLF_FALSE = 0, |
| 422 | SAFE_CRLF_FAIL = 1, |
| 423 | SAFE_CRLF_WARN = 2, |
| 424 | }; |
| 425 | |
| 426 | extern enum safe_crlf safe_crlf; |
| 427 | |
Jay Soffian | 9ed36cf | 2008-02-19 11:24:37 -0500 | [diff] [blame] | 428 | enum branch_track { |
| 429 | BRANCH_TRACK_NEVER = 0, |
| 430 | BRANCH_TRACK_REMOTE, |
| 431 | BRANCH_TRACK_ALWAYS, |
| 432 | BRANCH_TRACK_EXPLICIT, |
| 433 | }; |
| 434 | |
| 435 | extern enum branch_track git_branch_track; |
| 436 | |
Junio C Hamano | ab9cb76 | 2005-11-25 15:59:09 -0800 | [diff] [blame] | 437 | #define GIT_REPO_VERSION 0 |
| 438 | extern int repository_format_version; |
| 439 | extern int check_repository_format(void); |
| 440 | |
Linus Torvalds | 734aab7 | 2005-04-09 09:48:20 -0700 | [diff] [blame] | 441 | #define MTIME_CHANGED 0x0001 |
| 442 | #define CTIME_CHANGED 0x0002 |
| 443 | #define OWNER_CHANGED 0x0004 |
| 444 | #define MODE_CHANGED 0x0008 |
| 445 | #define INODE_CHANGED 0x0010 |
| 446 | #define DATA_CHANGED 0x0020 |
Kay Sievers | 8ae0a8c | 2005-05-05 14:38:25 +0200 | [diff] [blame] | 447 | #define TYPE_CHANGED 0x0040 |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 448 | |
| 449 | /* Return a statically allocated filename matching the sha1 signature */ |
Timo Sirainen | 4ec99bf | 2005-08-09 18:30:22 +0300 | [diff] [blame] | 450 | extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2))); |
| 451 | extern char *git_path(const char *fmt, ...) __attribute__((format (printf, 1, 2))); |
Linus Torvalds | 73134b6 | 2005-04-10 14:03:58 -0700 | [diff] [blame] | 452 | extern char *sha1_file_name(const unsigned char *sha1); |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 453 | extern char *sha1_pack_name(const unsigned char *sha1); |
| 454 | extern char *sha1_pack_index_name(const unsigned char *sha1); |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 455 | extern const char *find_unique_abbrev(const unsigned char *sha1, int); |
Junio C Hamano | 88cd621 | 2005-09-30 14:02:47 -0700 | [diff] [blame] | 456 | extern const unsigned char null_sha1[20]; |
David Rientjes | 0bef57e | 2006-08-15 13:37:19 -0700 | [diff] [blame] | 457 | static inline int is_null_sha1(const unsigned char *sha1) |
| 458 | { |
| 459 | return !memcmp(sha1, null_sha1, 20); |
| 460 | } |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 461 | static inline int hashcmp(const unsigned char *sha1, const unsigned char *sha2) |
| 462 | { |
| 463 | return memcmp(sha1, sha2, 20); |
| 464 | } |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 465 | static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src) |
| 466 | { |
| 467 | memcpy(sha_dst, sha_src, 20); |
| 468 | } |
Junio C Hamano | a8e0d16 | 2006-08-23 13:57:23 -0700 | [diff] [blame] | 469 | static inline void hashclr(unsigned char *hash) |
| 470 | { |
| 471 | memset(hash, 0, 20); |
| 472 | } |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 473 | |
Holger Eitzenberger | f2db68e | 2005-08-04 22:43:03 +0200 | [diff] [blame] | 474 | int git_mkstemp(char *path, size_t n, const char *template); |
| 475 | |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 476 | enum sharedrepo { |
| 477 | PERM_UMASK = 0, |
| 478 | PERM_GROUP, |
| 479 | PERM_EVERYBODY |
| 480 | }; |
| 481 | int git_config_perm(const char *var, const char *value); |
Johannes Schindelin | 457f06d | 2005-12-22 23:13:56 +0100 | [diff] [blame] | 482 | int adjust_shared_perm(const char *path); |
Junio C Hamano | b2cb942 | 2005-07-06 01:11:52 -0700 | [diff] [blame] | 483 | int safe_create_leading_directories(char *path); |
Timo Hirvonen | bd22c90 | 2005-11-21 02:52:52 +0200 | [diff] [blame] | 484 | char *enter_repo(char *path, int strict); |
Johannes Schindelin | e5392c5 | 2007-08-01 01:28:59 +0100 | [diff] [blame] | 485 | static inline int is_absolute_path(const char *path) |
| 486 | { |
| 487 | return path[0] == '/'; |
| 488 | } |
| 489 | const char *make_absolute_path(const char *path); |
Junio C Hamano | b2cb942 | 2005-07-06 01:11:52 -0700 | [diff] [blame] | 490 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 491 | /* 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] | 492 | extern int sha1_object_info(const unsigned char *, unsigned long *); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 493 | 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] | 494 | 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] | 495 | 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] | 496 | extern int pretend_sha1_file(void *, unsigned long, enum object_type, unsigned char *); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 497 | |
Jason McMullan | 5d6ccf5 | 2005-06-03 11:05:39 -0400 | [diff] [blame] | 498 | 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] | 499 | |
barkalow@iabervon.org | 70b9829 | 2005-08-02 19:46:29 -0400 | [diff] [blame] | 500 | extern int write_sha1_from_fd(const unsigned char *sha1, int fd, char *buffer, |
| 501 | size_t bufsize, size_t *bufposn); |
Daniel Barkalow | a5eda52 | 2005-07-10 18:25:38 -0400 | [diff] [blame] | 502 | extern int write_sha1_to_fd(int fd, const unsigned char *sha1); |
Junio C Hamano | 839837b | 2006-09-01 00:17:47 -0700 | [diff] [blame] | 503 | extern int move_temp_to_file(const char *tmpfile, const char *filename); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 504 | |
Junio C Hamano | 106d710 | 2006-09-06 02:12:09 -0700 | [diff] [blame] | 505 | extern int has_sha1_pack(const unsigned char *sha1, const char **ignore); |
Daniel Barkalow | 8237b18 | 2005-04-23 18:47:23 -0700 | [diff] [blame] | 506 | extern int has_sha1_file(const unsigned char *sha1); |
| 507 | |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 508 | extern int has_pack_file(const unsigned char *sha1); |
| 509 | extern int has_pack_index(const unsigned char *sha1); |
| 510 | |
Linus Torvalds | 192a6be | 2007-05-30 10:32:19 -0700 | [diff] [blame] | 511 | extern const signed char hexval_table[256]; |
| 512 | static inline unsigned int hexval(unsigned char c) |
Junio C Hamano | e49521b | 2006-09-20 16:04:46 -0700 | [diff] [blame] | 513 | { |
| 514 | return hexval_table[c]; |
| 515 | } |
| 516 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 517 | /* Convert to/from hex/sha1 representation */ |
Junio C Hamano | 46a6c26 | 2006-01-25 01:03:18 -0800 | [diff] [blame] | 518 | #define MINIMUM_ABBREV 4 |
| 519 | #define DEFAULT_ABBREV 7 |
| 520 | |
Linus Torvalds | 3c249c9 | 2005-05-01 16:36:56 -0700 | [diff] [blame] | 521 | extern int get_sha1(const char *str, unsigned char *sha1); |
Martin Koegler | a0cd87a | 2007-04-23 22:55:05 +0200 | [diff] [blame] | 522 | 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] | 523 | extern int get_sha1_hex(const char *hex, unsigned char *sha1); |
| 524 | extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */ |
Linus Torvalds | ca8db14 | 2005-09-25 09:59:37 -0700 | [diff] [blame] | 525 | extern int read_ref(const char *filename, unsigned char *sha1); |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame] | 526 | 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] | 527 | 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] | 528 | 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] | 529 | |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 530 | extern int refname_match(const char *abbrev_name, const char *full_name, const char **rules); |
| 531 | extern const char *ref_rev_parse_rules[]; |
Steffen Prohaska | 605b497 | 2007-11-11 15:01:48 +0100 | [diff] [blame] | 532 | extern const char *ref_fetch_rules[]; |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 533 | |
Nicolas Pitre | 8b5157e | 2007-01-26 17:26:10 -0500 | [diff] [blame] | 534 | 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] | 535 | extern int validate_headref(const char *ref); |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 536 | |
Linus Torvalds | 958ba6c | 2005-05-20 09:09:18 -0700 | [diff] [blame] | 537 | extern int base_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] | 538 | 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] | 539 | |
Junio C Hamano | 40469ee | 2005-04-28 16:42:27 -0700 | [diff] [blame] | 540 | extern void *read_object_with_reference(const unsigned char *sha1, |
Brian Gerst | bf0f910 | 2005-05-18 08:14:09 -0400 | [diff] [blame] | 541 | const char *required_type, |
Junio C Hamano | 40469ee | 2005-04-28 16:42:27 -0700 | [diff] [blame] | 542 | unsigned long *size, |
| 543 | unsigned char *sha1_ret); |
Junio C Hamano | f4913f9 | 2005-04-20 18:06:49 -0700 | [diff] [blame] | 544 | |
Junio C Hamano | 73013af | 2007-07-13 23:14:52 -0700 | [diff] [blame] | 545 | enum date_mode { |
| 546 | DATE_NORMAL = 0, |
| 547 | DATE_RELATIVE, |
| 548 | DATE_SHORT, |
| 549 | DATE_LOCAL, |
| 550 | DATE_ISO8601, |
| 551 | DATE_RFC2822 |
| 552 | }; |
| 553 | |
Johannes Schindelin | f8493ec | 2007-02-27 16:21:04 +0100 | [diff] [blame] | 554 | 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] | 555 | int parse_date(const char *date, char *buf, int bufsize); |
Edgar Toernig | ecee9d9 | 2005-04-30 09:46:49 -0700 | [diff] [blame] | 556 | void datestamp(char *buf, int bufsize); |
Linus Torvalds | 3c07b1d | 2005-11-14 19:29:06 -0800 | [diff] [blame] | 557 | unsigned long approxidate(const char *); |
Andy Parkins | 856665f | 2007-09-28 15:17:31 +0100 | [diff] [blame] | 558 | enum date_mode parse_date_format(const char *format); |
Edgar Toernig | ecee9d9 | 2005-04-30 09:46:49 -0700 | [diff] [blame] | 559 | |
Junio C Hamano | 774751a | 2007-12-08 17:32:08 -0800 | [diff] [blame] | 560 | #define IDENT_WARN_ON_NO_NAME 1 |
| 561 | #define IDENT_ERROR_ON_NO_NAME 2 |
| 562 | #define IDENT_NO_DATE 4 |
Junio C Hamano | 749be72 | 2006-02-18 20:31:05 -0800 | [diff] [blame] | 563 | extern const char *git_author_info(int); |
| 564 | extern const char *git_committer_info(int); |
Junio C Hamano | 798123a | 2007-02-04 17:50:14 -0800 | [diff] [blame] | 565 | 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] | 566 | extern const char *fmt_name(const char *name, const char *email); |
Linus Torvalds | 6aa33f4 | 2005-07-12 11:49:27 -0700 | [diff] [blame] | 567 | |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 568 | struct checkout { |
| 569 | const char *base_dir; |
| 570 | int base_dir_len; |
| 571 | unsigned force:1, |
| 572 | quiet:1, |
| 573 | not_new:1, |
| 574 | refresh_cache:1; |
| 575 | }; |
| 576 | |
Luiz Fernando N. Capitulino | efbc583 | 2007-04-25 11:18:08 -0300 | [diff] [blame] | 577 | extern int checkout_entry(struct cache_entry *ce, const struct checkout *state, char *topath); |
Junio C Hamano | f859c84 | 2007-05-11 22:11:07 -0700 | [diff] [blame] | 578 | extern int has_symlink_leading_path(const char *name, char *last_symlink); |
Linus Torvalds | 12dccc1 | 2005-06-05 21:59:54 -0700 | [diff] [blame] | 579 | |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 580 | extern struct alternate_object_database { |
Junio C Hamano | d5a63b9 | 2005-08-14 17:25:57 -0700 | [diff] [blame] | 581 | struct alternate_object_database *next; |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 582 | char *name; |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 583 | char base[FLEX_ARRAY]; /* more */ |
Junio C Hamano | d5a63b9 | 2005-08-14 17:25:57 -0700 | [diff] [blame] | 584 | } *alt_odb_list; |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 585 | extern void prepare_alt_odb(void); |
| 586 | |
Shawn O. Pearce | c41ee58 | 2006-12-23 02:33:44 -0500 | [diff] [blame] | 587 | struct pack_window { |
| 588 | struct pack_window *next; |
| 589 | unsigned char *base; |
| 590 | off_t offset; |
| 591 | size_t len; |
| 592 | unsigned int last_used; |
| 593 | unsigned int inuse_cnt; |
| 594 | }; |
| 595 | |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 596 | extern struct packed_git { |
| 597 | struct packed_git *next; |
Shawn O. Pearce | c41ee58 | 2006-12-23 02:33:44 -0500 | [diff] [blame] | 598 | struct pack_window *windows; |
Shawn O. Pearce | 2dc3a23 | 2006-12-23 02:33:47 -0500 | [diff] [blame] | 599 | off_t pack_size; |
Nicolas Pitre | 5705909 | 2007-04-09 01:06:28 -0400 | [diff] [blame] | 600 | const void *index_data; |
| 601 | size_t index_size; |
| 602 | uint32_t num_objects; |
Nicolas Pitre | 4287307 | 2007-03-16 16:42:50 -0400 | [diff] [blame] | 603 | int index_version; |
Nicolas Pitre | 5705909 | 2007-04-09 01:06:28 -0400 | [diff] [blame] | 604 | time_t mtime; |
Shawn O. Pearce | 9bc879c | 2006-12-23 02:34:01 -0500 | [diff] [blame] | 605 | int pack_fd; |
Linus Torvalds | 9d835df | 2005-10-13 15:38:28 -0700 | [diff] [blame] | 606 | int pack_local; |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 607 | unsigned char sha1[20]; |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 608 | /* something like ".git/objects/pack/xxxxx.pack" */ |
| 609 | char pack_name[FLEX_ARRAY]; /* more */ |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 610 | } *packed_git; |
Junio C Hamano | f3bf922 | 2005-06-30 17:15:39 -0700 | [diff] [blame] | 611 | |
| 612 | struct pack_entry { |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 613 | off_t offset; |
Junio C Hamano | f3bf922 | 2005-06-30 17:15:39 -0700 | [diff] [blame] | 614 | unsigned char sha1[20]; |
| 615 | struct packed_git *p; |
| 616 | }; |
| 617 | |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 618 | struct ref { |
| 619 | struct ref *next; |
| 620 | unsigned char old_sha1[20]; |
| 621 | unsigned char new_sha1[20]; |
Shawn O. Pearce | 9f8a15c | 2007-11-18 04:31:37 -0500 | [diff] [blame] | 622 | unsigned int force:1, |
| 623 | merge:1, |
| 624 | nonfastforward:1, |
| 625 | deletion:1; |
Jeff King | 8736a84 | 2007-11-17 07:54:27 -0500 | [diff] [blame] | 626 | enum { |
| 627 | REF_STATUS_NONE = 0, |
| 628 | REF_STATUS_OK, |
| 629 | REF_STATUS_REJECT_NONFASTFORWARD, |
| 630 | REF_STATUS_REJECT_NODELETE, |
| 631 | REF_STATUS_UPTODATE, |
Jeff King | ca74c45 | 2007-11-17 07:56:03 -0500 | [diff] [blame] | 632 | REF_STATUS_REMOTE_REJECT, |
Jeff King | 2a0fe89 | 2007-11-18 02:16:52 -0500 | [diff] [blame] | 633 | REF_STATUS_EXPECTING_REPORT, |
Jeff King | 8736a84 | 2007-11-17 07:54:27 -0500 | [diff] [blame] | 634 | } status; |
Jeff King | 2a0fe89 | 2007-11-18 02:16:52 -0500 | [diff] [blame] | 635 | char *remote_status; |
Junio C Hamano | f88395a | 2005-08-03 16:35:29 -0700 | [diff] [blame] | 636 | struct ref *peer_ref; /* when renaming */ |
Junio C Hamano | 8f1d2e6 | 2006-01-07 01:33:54 -0800 | [diff] [blame] | 637 | char name[FLEX_ARRAY]; /* more */ |
Linus Torvalds | d1c133f | 2005-07-16 13:55:50 -0700 | [diff] [blame] | 638 | }; |
| 639 | |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 640 | #define REF_NORMAL (1u << 0) |
| 641 | #define REF_HEADS (1u << 1) |
| 642 | #define REF_TAGS (1u << 2) |
| 643 | |
Jeff King | cda69f4 | 2007-11-18 02:13:10 -0500 | [diff] [blame] | 644 | extern struct ref *find_ref_by_name(struct ref *list, const char *name); |
| 645 | |
Michael S. Tsirkin | 7841ce7 | 2007-05-16 20:09:41 +0300 | [diff] [blame] | 646 | #define CONNECT_VERBOSE (1u << 0) |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 647 | 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] | 648 | extern int finish_connect(struct child_process *conn); |
Linus Torvalds | 013e7c7 | 2005-07-04 13:24:30 -0700 | [diff] [blame] | 649 | extern int path_match(const char *path, int nr, char **match); |
Linus Torvalds | 41cb748 | 2005-07-05 15:44:09 -0700 | [diff] [blame] | 650 | extern int get_ack(int fd, unsigned char *result_sha1); |
Linus Torvalds | 2718ff0 | 2006-07-04 12:29:10 -0700 | [diff] [blame] | 651 | 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] | 652 | extern int server_supports(const char *feature); |
Linus Torvalds | f719259 | 2005-07-04 11:57:58 -0700 | [diff] [blame] | 653 | |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 654 | extern struct packed_git *parse_pack_index(unsigned char *sha1); |
Peter Hagervall | 2ab141a | 2005-09-02 14:17:10 +0200 | [diff] [blame] | 655 | extern struct packed_git *parse_pack_index_file(const unsigned char *sha1, |
Nicolas Pitre | 4287307 | 2007-03-16 16:42:50 -0400 | [diff] [blame] | 656 | const char *idx_path); |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 657 | |
Junio C Hamano | 9a217f2 | 2005-06-28 14:56:57 -0700 | [diff] [blame] | 658 | extern void prepare_packed_git(void); |
Shawn Pearce | fc04c41 | 2006-11-01 17:06:21 -0500 | [diff] [blame] | 659 | extern void reprepare_packed_git(void); |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 660 | extern void install_packed_git(struct packed_git *pack); |
| 661 | |
Junio C Hamano | a6080a0 | 2007-06-07 00:04:01 -0700 | [diff] [blame] | 662 | extern struct packed_git *find_sha1_pack(const unsigned char *sha1, |
barkalow@iabervon.org | bf592c5 | 2005-07-31 20:53:44 -0400 | [diff] [blame] | 663 | struct packed_git *packs); |
| 664 | |
Chris Wedgwood | 276bc2c | 2007-01-16 22:28:02 -0800 | [diff] [blame] | 665 | extern void pack_report(void); |
Shawn O. Pearce | d079837 | 2007-05-26 01:24:19 -0400 | [diff] [blame] | 666 | extern int open_pack_index(struct packed_git *); |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 667 | 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] | 668 | extern void close_pack_windows(struct packed_git *); |
Shawn O. Pearce | 03e79c8 | 2006-12-23 02:34:08 -0500 | [diff] [blame] | 669 | extern void unuse_pack(struct pack_window **); |
Nicolas Pitre | 4287307 | 2007-03-16 16:42:50 -0400 | [diff] [blame] | 670 | extern struct packed_git *add_packed_git(const char *, int, int); |
Shawn O. Pearce | d079837 | 2007-05-26 01:24:19 -0400 | [diff] [blame] | 671 | extern const unsigned char *nth_packed_object_sha1(struct packed_git *, uint32_t); |
Shawn O. Pearce | c4001d9 | 2007-03-06 20:44:30 -0500 | [diff] [blame] | 672 | extern off_t find_pack_entry_one(const unsigned char *, struct packed_git *); |
| 673 | 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] | 674 | 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] | 675 | 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] | 676 | 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] | 677 | 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] | 678 | |
Junio C Hamano | 8f3f9b0 | 2005-07-23 17:54:41 -0700 | [diff] [blame] | 679 | /* Dumb servers support */ |
| 680 | extern int update_server_info(int); |
| 681 | |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 682 | typedef int (*config_fn_t)(const char *, const char *); |
| 683 | extern int git_default_config(const char *, const char *); |
Junio C Hamano | 4f62953 | 2005-11-25 16:03:56 -0800 | [diff] [blame] | 684 | extern int git_config_from_file(config_fn_t fn, const char *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 685 | extern int git_config(config_fn_t fn); |
Brian Downing | 0b87b6e | 2007-07-12 08:32:26 -0500 | [diff] [blame] | 686 | extern int git_parse_long(const char *, long *); |
| 687 | extern int git_parse_ulong(const char *, unsigned long *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 688 | extern int git_config_int(const char *, const char *); |
Brian Downing | 0b87b6e | 2007-07-12 08:32:26 -0500 | [diff] [blame] | 689 | extern unsigned long git_config_ulong(const char *, const char *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 690 | extern int git_config_bool(const char *, const char *); |
Christian Couder | ea5105a | 2008-02-16 06:00:24 +0100 | [diff] [blame] | 691 | extern int git_config_string(const char **, const char *, const char *); |
Johannes Schindelin | 10bea15 | 2005-11-17 22:32:36 +0100 | [diff] [blame] | 692 | extern int git_config_set(const char *, const char *); |
Johannes Schindelin | 4ddba79 | 2005-11-20 06:52:22 +0100 | [diff] [blame] | 693 | 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] | 694 | extern int git_config_rename_section(const char *, const char *); |
Johannes Sixt | 506b17b | 2007-11-13 21:05:05 +0100 | [diff] [blame] | 695 | extern const char *git_etc_gitconfig(void); |
Junio C Hamano | ab9cb76 | 2005-11-25 15:59:09 -0800 | [diff] [blame] | 696 | extern int check_repository_format_version(const char *var, const char *value); |
Jeff King | ab88c36 | 2008-02-06 05:11:18 -0500 | [diff] [blame] | 697 | extern int git_env_bool(const char *, int); |
| 698 | extern int git_config_system(void); |
| 699 | extern int git_config_global(void); |
Junio C Hamano | 40ea4ed | 2008-02-11 10:41:18 -0800 | [diff] [blame] | 700 | extern int config_error_nonbool(const char *); |
Linus Torvalds | 1771299 | 2005-10-10 16:31:08 -0700 | [diff] [blame] | 701 | |
Linus Torvalds | e1b1039 | 2005-10-11 18:47:34 -0700 | [diff] [blame] | 702 | #define MAX_GITNAME (1000) |
| 703 | extern char git_default_email[MAX_GITNAME]; |
| 704 | extern char git_default_name[MAX_GITNAME]; |
| 705 | |
Shawn O. Pearce | 1a8f274 | 2007-03-12 15:33:18 -0400 | [diff] [blame] | 706 | extern const char *git_commit_encoding; |
Shawn O. Pearce | 3a55602 | 2007-03-06 20:44:17 -0500 | [diff] [blame] | 707 | extern const char *git_log_output_encoding; |
Junio C Hamano | 4e72dce | 2005-11-27 16:09:40 -0800 | [diff] [blame] | 708 | |
Theodore Ts'o | 06f59e9 | 2007-06-29 13:40:46 -0400 | [diff] [blame] | 709 | /* IO helper functions */ |
| 710 | extern void maybe_flush_or_die(FILE *, const char *); |
Junio C Hamano | f3123c4 | 2005-10-22 01:28:13 -0700 | [diff] [blame] | 711 | extern int copy_fd(int ifd, int ofd); |
Daniel Barkalow | 1468bd4 | 2008-02-25 14:24:48 -0500 | [diff] [blame] | 712 | extern int copy_file(const char *dst, const char *src, int mode); |
Andy Whitcroft | 93d26e4 | 2007-01-08 15:58:08 +0000 | [diff] [blame] | 713 | extern int read_in_full(int fd, void *buf, size_t count); |
Andy Whitcroft | e081405 | 2007-01-08 15:57:52 +0000 | [diff] [blame] | 714 | extern int write_in_full(int fd, const void *buf, size_t count); |
Rene Scharfe | 7230e6d | 2006-08-21 20:43:43 +0200 | [diff] [blame] | 715 | 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] | 716 | 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] | 717 | extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg); |
Junio C Hamano | ad89721 | 2005-12-14 22:17:38 -0800 | [diff] [blame] | 718 | |
Linus Torvalds | f67b45f | 2006-02-28 11:26:21 -0800 | [diff] [blame] | 719 | /* pager.c */ |
| 720 | extern void setup_pager(void); |
Christian Couder | 872da32 | 2008-02-16 06:01:11 +0100 | [diff] [blame] | 721 | extern const char *pager_program; |
Jeff King | 6e9af86 | 2007-12-11 01:27:33 -0500 | [diff] [blame] | 722 | extern int pager_in_use(void); |
Matthias Lederhofer | aa086eb | 2006-07-30 00:27:43 +0200 | [diff] [blame] | 723 | extern int pager_use_color; |
Linus Torvalds | f67b45f | 2006-02-28 11:26:21 -0800 | [diff] [blame] | 724 | |
Christian Couder | ee9601e | 2008-02-16 06:01:41 +0100 | [diff] [blame] | 725 | extern const char *editor_program; |
Christian Couder | dfb068b | 2008-02-16 06:01:59 +0100 | [diff] [blame] | 726 | extern const char *excludes_file; |
Johannes Schindelin | 4d87b9c | 2007-07-20 13:06:09 +0100 | [diff] [blame] | 727 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 728 | /* base85 */ |
Jim Meyering | f981577 | 2007-04-10 00:56:33 +0200 | [diff] [blame] | 729 | int decode_85(char *dst, const char *line, int linelen); |
| 730 | void encode_85(char *buf, const unsigned char *data, int bytes); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 731 | |
Linus Torvalds | 855419f | 2006-06-19 10:44:15 -0700 | [diff] [blame] | 732 | /* alloc.c */ |
Linus Torvalds | 100c5f3 | 2007-04-16 22:11:43 -0700 | [diff] [blame] | 733 | extern void *alloc_blob_node(void); |
| 734 | extern void *alloc_tree_node(void); |
| 735 | extern void *alloc_commit_node(void); |
| 736 | extern void *alloc_tag_node(void); |
| 737 | extern void *alloc_object_node(void); |
Linus Torvalds | 855419f | 2006-06-19 10:44:15 -0700 | [diff] [blame] | 738 | extern void alloc_report(void); |
| 739 | |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 740 | /* trace.c */ |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 741 | extern void trace_printf(const char *format, ...); |
Christian Couder | b319ce4 | 2007-12-03 05:51:50 +0100 | [diff] [blame] | 742 | extern void trace_argv_printf(const char **argv, const char *format, ...); |
Christian Couder | 6ce4e61 | 2006-09-02 18:23:48 +0200 | [diff] [blame] | 743 | |
Linus Torvalds | 6c510be | 2007-02-13 11:07:23 -0800 | [diff] [blame] | 744 | /* convert.c */ |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 745 | /* returns 1 if *dst was used */ |
Steffen Prohaska | 21e5ad5 | 2008-02-06 12:25:58 +0100 | [diff] [blame] | 746 | extern int convert_to_git(const char *path, const char *src, size_t len, |
| 747 | struct strbuf *dst, enum safe_crlf checksafe); |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 748 | 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] | 749 | |
Junio C Hamano | b6ec1d6 | 2007-11-18 01:12:04 -0800 | [diff] [blame] | 750 | /* add */ |
| 751 | void add_files_to_cache(int verbose, const char *prefix, const char **pathspec); |
| 752 | |
Junio C Hamano | aecbf91 | 2007-08-31 13:13:42 -0700 | [diff] [blame] | 753 | /* diff.c */ |
| 754 | extern int diff_auto_refresh_index; |
| 755 | |
Junio C Hamano | 68faf68 | 2007-02-15 16:32:45 -0800 | [diff] [blame] | 756 | /* match-trees.c */ |
| 757 | void shift_tree(const unsigned char *, const unsigned char *, unsigned char *, int); |
| 758 | |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 759 | /* |
| 760 | * whitespace rules. |
| 761 | * used by both diff and apply |
| 762 | */ |
| 763 | #define WS_TRAILING_SPACE 01 |
| 764 | #define WS_SPACE_BEFORE_TAB 02 |
Junio C Hamano | 459fa6d | 2007-10-02 18:00:27 -0700 | [diff] [blame] | 765 | #define WS_INDENT_WITH_NON_TAB 04 |
Junio C Hamano | b2979ff | 2008-01-15 00:59:05 -0800 | [diff] [blame] | 766 | #define WS_CR_AT_EOL 010 |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 767 | #define WS_DEFAULT_RULE (WS_TRAILING_SPACE|WS_SPACE_BEFORE_TAB) |
Junio C Hamano | cf1b786 | 2007-12-06 00:14:14 -0800 | [diff] [blame] | 768 | extern unsigned whitespace_rule_cfg; |
| 769 | extern unsigned whitespace_rule(const char *); |
| 770 | extern unsigned parse_whitespace_rule(const char *); |
Wincent Colaiuta | c1795bb | 2007-12-13 14:32:29 +0100 | [diff] [blame] | 771 | extern unsigned check_and_emit_line(const char *line, int len, unsigned ws_rule, |
| 772 | FILE *stream, const char *set, |
| 773 | const char *reset, const char *ws); |
| 774 | extern char *whitespace_error_string(unsigned ws); |
Junio C Hamano | fe3403c | 2008-02-23 16:59:16 -0800 | [diff] [blame] | 775 | extern int ws_fix_copy(char *, const char *, int, unsigned, int *); |
Junio C Hamano | a9cc857 | 2007-11-02 00:24:27 -0700 | [diff] [blame] | 776 | |
Junio C Hamano | ee425e4 | 2007-11-18 01:13:32 -0800 | [diff] [blame] | 777 | /* ls-files */ |
| 778 | int pathspec_match(const char **spec, char *matched, const char *filename, int skiplen); |
| 779 | int report_path_error(const char *ps_matched, const char **pathspec, int prefix_offset); |
| 780 | void overlay_tree_on_cache(const char *tree_name, const char *prefix); |
| 781 | |
Jeff King | 9435111 | 2008-02-24 17:17:14 -0500 | [diff] [blame] | 782 | char *alias_lookup(const char *alias); |
| 783 | |
Linus Torvalds | e83c516 | 2005-04-07 15:13:13 -0700 | [diff] [blame] | 784 | #endif /* CACHE_H */ |