Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 2 | #include "tag.h" |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 3 | #include "commit.h" |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 4 | #include "tree.h" |
| 5 | #include "blob.h" |
Junio C Hamano | f3ab49d | 2006-04-19 11:56:53 -0700 | [diff] [blame] | 6 | #include "tree-walk.h" |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 7 | #include "refs.h" |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 8 | |
| 9 | static int find_short_object_filename(int len, const char *name, unsigned char *sha1) |
| 10 | { |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 11 | struct alternate_object_database *alt; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 12 | char hex[40]; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 13 | int found = 0; |
| 14 | static struct alternate_object_database *fakeent; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 15 | |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 16 | if (!fakeent) { |
| 17 | const char *objdir = get_object_directory(); |
| 18 | int objdir_len = strlen(objdir); |
| 19 | int entlen = objdir_len + 43; |
| 20 | fakeent = xmalloc(sizeof(*fakeent) + entlen); |
| 21 | memcpy(fakeent->base, objdir, objdir_len); |
| 22 | fakeent->name = fakeent->base + objdir_len + 1; |
| 23 | fakeent->name[-1] = '/'; |
| 24 | } |
| 25 | fakeent->next = alt_odb_list; |
| 26 | |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 27 | sprintf(hex, "%.2s", name); |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 28 | for (alt = fakeent; alt && found < 2; alt = alt->next) { |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 29 | struct dirent *de; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 30 | DIR *dir; |
| 31 | sprintf(alt->name, "%.2s/", name); |
| 32 | dir = opendir(alt->base); |
| 33 | if (!dir) |
| 34 | continue; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 35 | while ((de = readdir(dir)) != NULL) { |
| 36 | if (strlen(de->d_name) != 38) |
| 37 | continue; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 38 | if (memcmp(de->d_name, name + 2, len - 2)) |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 39 | continue; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 40 | if (!found) { |
| 41 | memcpy(hex + 2, de->d_name, 38); |
| 42 | found++; |
| 43 | } |
| 44 | else if (memcmp(hex + 2, de->d_name, 38)) { |
| 45 | found = 2; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 46 | break; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 47 | } |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 48 | } |
| 49 | closedir(dir); |
| 50 | } |
| 51 | if (found == 1) |
| 52 | return get_sha1_hex(hex, sha1) == 0; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 53 | return found; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static int match_sha(unsigned len, const unsigned char *a, const unsigned char *b) |
| 57 | { |
| 58 | do { |
| 59 | if (*a != *b) |
| 60 | return 0; |
| 61 | a++; |
| 62 | b++; |
| 63 | len -= 2; |
| 64 | } while (len > 1); |
| 65 | if (len) |
| 66 | if ((*a ^ *b) & 0xf0) |
| 67 | return 0; |
| 68 | return 1; |
| 69 | } |
| 70 | |
| 71 | static int find_short_packed_object(int len, const unsigned char *match, unsigned char *sha1) |
| 72 | { |
| 73 | struct packed_git *p; |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 74 | const unsigned char *found_sha1 = NULL; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 75 | int found = 0; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 76 | |
| 77 | prepare_packed_git(); |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 78 | for (p = packed_git; p && found < 2; p = p->next) { |
James Bowes | 1055880 | 2007-05-29 19:29:51 -0400 | [diff] [blame] | 79 | uint32_t num, last; |
| 80 | uint32_t first = 0; |
| 81 | open_pack_index(p); |
| 82 | num = p->num_objects; |
| 83 | last = num; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 84 | while (first < last) { |
Shawn O. Pearce | 326bf39 | 2007-03-06 20:44:19 -0500 | [diff] [blame] | 85 | uint32_t mid = (first + last) / 2; |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 86 | const unsigned char *now; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 87 | int cmp; |
| 88 | |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 89 | now = nth_packed_object_sha1(p, mid); |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 90 | cmp = hashcmp(match, now); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 91 | if (!cmp) { |
| 92 | first = mid; |
| 93 | break; |
| 94 | } |
| 95 | if (cmp > 0) { |
| 96 | first = mid+1; |
| 97 | continue; |
| 98 | } |
| 99 | last = mid; |
| 100 | } |
| 101 | if (first < num) { |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 102 | const unsigned char *now, *next; |
| 103 | now = nth_packed_object_sha1(p, first); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 104 | if (match_sha(len, match, now)) { |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 105 | next = nth_packed_object_sha1(p, first+1); |
| 106 | if (!next|| !match_sha(len, match, next)) { |
Junio C Hamano | 0bc4589 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 107 | /* unique within this pack */ |
| 108 | if (!found) { |
Nicolas Pitre | d72308e | 2007-04-04 16:49:04 -0400 | [diff] [blame] | 109 | found_sha1 = now; |
Junio C Hamano | 0bc4589 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 110 | found++; |
| 111 | } |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 112 | else if (hashcmp(found_sha1, now)) { |
Junio C Hamano | 0bc4589 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 113 | found = 2; |
| 114 | break; |
| 115 | } |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 116 | } |
Junio C Hamano | 0bc4589 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 117 | else { |
| 118 | /* not even unique within this pack */ |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 119 | found = 2; |
| 120 | break; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 121 | } |
| 122 | } |
| 123 | } |
| 124 | } |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 125 | if (found == 1) |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 126 | hashcpy(sha1, found_sha1); |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 127 | return found; |
| 128 | } |
| 129 | |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 130 | #define SHORT_NAME_NOT_FOUND (-1) |
| 131 | #define SHORT_NAME_AMBIGUOUS (-2) |
| 132 | |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 133 | static int find_unique_short_object(int len, char *canonical, |
| 134 | unsigned char *res, unsigned char *sha1) |
| 135 | { |
| 136 | int has_unpacked, has_packed; |
| 137 | unsigned char unpacked_sha1[20], packed_sha1[20]; |
| 138 | |
Shawn O. Pearce | 693d2bc | 2007-05-26 01:25:11 -0400 | [diff] [blame] | 139 | prepare_alt_odb(); |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 140 | has_unpacked = find_short_object_filename(len, canonical, unpacked_sha1); |
| 141 | has_packed = find_short_packed_object(len, res, packed_sha1); |
| 142 | if (!has_unpacked && !has_packed) |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 143 | return SHORT_NAME_NOT_FOUND; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 144 | if (1 < has_unpacked || 1 < has_packed) |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 145 | return SHORT_NAME_AMBIGUOUS; |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 146 | if (has_unpacked != has_packed) { |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 147 | hashcpy(sha1, (has_packed ? packed_sha1 : unpacked_sha1)); |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 148 | return 0; |
| 149 | } |
| 150 | /* Both have unique ones -- do they match? */ |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 151 | if (hashcmp(packed_sha1, unpacked_sha1)) |
Uwe Zeisberger | e974c9a | 2006-01-26 12:26:15 +0100 | [diff] [blame] | 152 | return SHORT_NAME_AMBIGUOUS; |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 153 | hashcpy(sha1, packed_sha1); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 154 | return 0; |
| 155 | } |
| 156 | |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 157 | static int get_short_sha1(const char *name, int len, unsigned char *sha1, |
| 158 | int quietly) |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 159 | { |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 160 | int i, status; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 161 | char canonical[40]; |
| 162 | unsigned char res[20]; |
| 163 | |
pclouds@gmail.com | 8a83157 | 2006-10-19 08:34:41 +0700 | [diff] [blame] | 164 | if (len < MINIMUM_ABBREV || len > 40) |
Linus Torvalds | af61c6e | 2005-09-19 15:16:03 -0700 | [diff] [blame] | 165 | return -1; |
Junio C Hamano | a8e0d16 | 2006-08-23 13:57:23 -0700 | [diff] [blame] | 166 | hashclr(res); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 167 | memset(canonical, 'x', 40); |
Linus Torvalds | af61c6e | 2005-09-19 15:16:03 -0700 | [diff] [blame] | 168 | for (i = 0; i < len ;i++) { |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 169 | unsigned char c = name[i]; |
| 170 | unsigned char val; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 171 | if (c >= '0' && c <= '9') |
| 172 | val = c - '0'; |
| 173 | else if (c >= 'a' && c <= 'f') |
| 174 | val = c - 'a' + 10; |
| 175 | else if (c >= 'A' && c <='F') { |
| 176 | val = c - 'A' + 10; |
| 177 | c -= 'A' - 'a'; |
| 178 | } |
| 179 | else |
| 180 | return -1; |
| 181 | canonical[i] = c; |
| 182 | if (!(i & 1)) |
| 183 | val <<= 4; |
| 184 | res[i >> 1] |= val; |
| 185 | } |
Junio C Hamano | 99a19b4 | 2005-10-02 21:40:51 -0700 | [diff] [blame] | 186 | |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 187 | status = find_unique_short_object(i, canonical, res, sha1); |
| 188 | if (!quietly && (status == SHORT_NAME_AMBIGUOUS)) |
| 189 | return error("short SHA1 %.*s is ambiguous.", len, canonical); |
| 190 | return status; |
| 191 | } |
| 192 | |
| 193 | const char *find_unique_abbrev(const unsigned char *sha1, int len) |
| 194 | { |
Junio C Hamano | b66fde9 | 2008-03-01 23:35:32 -0800 | [diff] [blame] | 195 | int status, exists; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 196 | static char hex[41]; |
Junio C Hamano | 47dd0d5 | 2005-12-13 17:21:41 -0800 | [diff] [blame] | 197 | |
Junio C Hamano | b66fde9 | 2008-03-01 23:35:32 -0800 | [diff] [blame] | 198 | exists = has_sha1_file(sha1); |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 199 | memcpy(hex, sha1_to_hex(sha1), 40); |
Junio C Hamano | 02c5cba | 2006-08-09 13:17:04 -0700 | [diff] [blame] | 200 | if (len == 40 || !len) |
Junio C Hamano | 47dd0d5 | 2005-12-13 17:21:41 -0800 | [diff] [blame] | 201 | return hex; |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 202 | while (len < 40) { |
| 203 | unsigned char sha1_ret[20]; |
| 204 | status = get_short_sha1(hex, len, sha1_ret, 1); |
Junio C Hamano | b66fde9 | 2008-03-01 23:35:32 -0800 | [diff] [blame] | 205 | if (exists |
| 206 | ? !status |
| 207 | : status == SHORT_NAME_NOT_FOUND) { |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 208 | hex[len] = 0; |
| 209 | return hex; |
| 210 | } |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 211 | len++; |
| 212 | } |
Junio C Hamano | b66fde9 | 2008-03-01 23:35:32 -0800 | [diff] [blame] | 213 | return hex; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Junio C Hamano | 6677c46 | 2005-12-15 12:54:00 -0800 | [diff] [blame] | 216 | static int ambiguous_path(const char *path, int len) |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 217 | { |
| 218 | int slash = 1; |
Junio C Hamano | 6677c46 | 2005-12-15 12:54:00 -0800 | [diff] [blame] | 219 | int cnt; |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 220 | |
Junio C Hamano | 6677c46 | 2005-12-15 12:54:00 -0800 | [diff] [blame] | 221 | for (cnt = 0; cnt < len; cnt++) { |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 222 | switch (*path++) { |
| 223 | case '\0': |
| 224 | break; |
| 225 | case '/': |
| 226 | if (slash) |
| 227 | break; |
| 228 | slash = 1; |
| 229 | continue; |
| 230 | case '.': |
| 231 | continue; |
| 232 | default: |
| 233 | slash = 0; |
| 234 | continue; |
| 235 | } |
Junio C Hamano | c054d64 | 2005-12-17 00:00:50 -0800 | [diff] [blame] | 236 | break; |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 237 | } |
Junio C Hamano | 6677c46 | 2005-12-15 12:54:00 -0800 | [diff] [blame] | 238 | return slash; |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 241 | int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref) |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 242 | { |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 243 | const char **p, *r; |
| 244 | int refs_found = 0; |
| 245 | |
| 246 | *ref = NULL; |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 247 | for (p = ref_rev_parse_rules; *p; p++) { |
Alex Riesen | 94cc355 | 2008-10-26 23:07:24 +0100 | [diff] [blame] | 248 | char fullref[PATH_MAX]; |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 249 | unsigned char sha1_from_ref[20]; |
| 250 | unsigned char *this_result; |
| 251 | |
| 252 | this_result = refs_found ? sha1_from_ref : sha1; |
Alex Riesen | 94cc355 | 2008-10-26 23:07:24 +0100 | [diff] [blame] | 253 | mksnpath(fullref, sizeof(fullref), *p, len, str); |
| 254 | r = resolve_ref(fullref, this_result, 1, NULL); |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 255 | if (r) { |
| 256 | if (!refs_found++) |
| 257 | *ref = xstrdup(r); |
| 258 | if (!warn_ambiguous_refs) |
| 259 | break; |
| 260 | } |
| 261 | } |
| 262 | return refs_found; |
| 263 | } |
| 264 | |
Johannes Schindelin | eb3a482 | 2007-02-09 01:28:23 +0100 | [diff] [blame] | 265 | int dwim_log(const char *str, int len, unsigned char *sha1, char **log) |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 266 | { |
| 267 | const char **p; |
| 268 | int logs_found = 0; |
| 269 | |
| 270 | *log = NULL; |
Steffen Prohaska | 7980332 | 2007-11-11 15:01:46 +0100 | [diff] [blame] | 271 | for (p = ref_rev_parse_rules; *p; p++) { |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 272 | struct stat st; |
Junio C Hamano | 40facde | 2007-02-08 23:24:51 -0800 | [diff] [blame] | 273 | unsigned char hash[20]; |
| 274 | char path[PATH_MAX]; |
| 275 | const char *ref, *it; |
| 276 | |
Alex Riesen | 94cc355 | 2008-10-26 23:07:24 +0100 | [diff] [blame] | 277 | mksnpath(path, sizeof(path), *p, len, str); |
Junio C Hamano | 0c4cd7f | 2008-07-23 17:22:58 -0700 | [diff] [blame] | 278 | ref = resolve_ref(path, hash, 1, NULL); |
Junio C Hamano | 40facde | 2007-02-08 23:24:51 -0800 | [diff] [blame] | 279 | if (!ref) |
| 280 | continue; |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 281 | if (!stat(git_path("logs/%s", path), &st) && |
Junio C Hamano | 40facde | 2007-02-08 23:24:51 -0800 | [diff] [blame] | 282 | S_ISREG(st.st_mode)) |
| 283 | it = path; |
| 284 | else if (strcmp(ref, path) && |
| 285 | !stat(git_path("logs/%s", ref), &st) && |
| 286 | S_ISREG(st.st_mode)) |
| 287 | it = ref; |
| 288 | else |
| 289 | continue; |
| 290 | if (!logs_found++) { |
| 291 | *log = xstrdup(it); |
| 292 | hashcpy(sha1, hash); |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 293 | } |
Junio C Hamano | 40facde | 2007-02-08 23:24:51 -0800 | [diff] [blame] | 294 | if (!warn_ambiguous_refs) |
| 295 | break; |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 296 | } |
| 297 | return logs_found; |
| 298 | } |
| 299 | |
Junio C Hamano | e86eb66 | 2007-01-19 01:15:15 -0800 | [diff] [blame] | 300 | static int get_sha1_basic(const char *str, int len, unsigned char *sha1) |
| 301 | { |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 302 | static const char *warning = "warning: refname '%.*s' is ambiguous.\n"; |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 303 | char *real_ref = NULL; |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 304 | int refs_found = 0; |
| 305 | int at, reflog_len; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 306 | |
Linus Torvalds | 3c3852e | 2005-08-13 11:05:25 -0700 | [diff] [blame] | 307 | if (len == 40 && !get_sha1_hex(str, sha1)) |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 308 | return 0; |
| 309 | |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 310 | /* basic@{time or number} format to query ref-log */ |
Junio C Hamano | 694500e | 2006-10-23 21:15:34 -0700 | [diff] [blame] | 311 | reflog_len = at = 0; |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 312 | if (str[len-1] == '}') { |
Nicolas Pitre | 11cf880 | 2007-02-01 17:29:33 -0500 | [diff] [blame] | 313 | for (at = 0; at < len - 1; at++) { |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 314 | if (str[at] == '@' && str[at+1] == '{') { |
| 315 | reflog_len = (len-1) - (at+2); |
| 316 | len = at; |
| 317 | break; |
| 318 | } |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 322 | /* Accept only unambiguous ref paths. */ |
Nicolas Pitre | 11cf880 | 2007-02-01 17:29:33 -0500 | [diff] [blame] | 323 | if (len && ambiguous_path(str, len)) |
Linus Torvalds | af13cdf | 2005-10-28 12:41:49 -0700 | [diff] [blame] | 324 | return -1; |
| 325 | |
Nicolas Pitre | 11cf880 | 2007-02-01 17:29:33 -0500 | [diff] [blame] | 326 | if (!len && reflog_len) { |
| 327 | /* allow "@{...}" to mean the current branch reflog */ |
| 328 | refs_found = dwim_ref("HEAD", 4, sha1, &real_ref); |
Nicolas Pitre | f2eba66 | 2007-02-03 21:49:16 -0500 | [diff] [blame] | 329 | } else if (reflog_len) |
| 330 | refs_found = dwim_log(str, len, sha1, &real_ref); |
| 331 | else |
Nicolas Pitre | 11cf880 | 2007-02-01 17:29:33 -0500 | [diff] [blame] | 332 | refs_found = dwim_ref(str, len, sha1, &real_ref); |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 333 | |
| 334 | if (!refs_found) |
| 335 | return -1; |
| 336 | |
| 337 | if (warn_ambiguous_refs && refs_found > 1) |
| 338 | fprintf(stderr, warning, len, str); |
| 339 | |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 340 | if (reflog_len) { |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 341 | int nth, i; |
| 342 | unsigned long at_time; |
Junio C Hamano | 16d7cc9 | 2007-01-19 01:19:05 -0800 | [diff] [blame] | 343 | unsigned long co_time; |
| 344 | int co_tz, co_cnt; |
| 345 | |
Nicolas Pitre | fe55851 | 2007-02-01 12:33:23 -0500 | [diff] [blame] | 346 | /* Is it asking for N-th entry, or approxidate? */ |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 347 | for (i = nth = 0; 0 <= nth && i < reflog_len; i++) { |
| 348 | char ch = str[at+2+i]; |
| 349 | if ('0' <= ch && ch <= '9') |
| 350 | nth = nth * 10 + ch - '0'; |
| 351 | else |
| 352 | nth = -1; |
| 353 | } |
Shawn O. Pearce | ea360dd | 2008-08-21 08:40:44 -0700 | [diff] [blame] | 354 | if (100000000 <= nth) { |
| 355 | at_time = nth; |
| 356 | nth = -1; |
| 357 | } else if (0 <= nth) |
Junio C Hamano | ab2a1a3 | 2006-10-05 23:16:15 -0700 | [diff] [blame] | 358 | at_time = 0; |
Jeff King | 861f00e | 2008-04-30 00:13:58 -0400 | [diff] [blame] | 359 | else { |
| 360 | char *tmp = xstrndup(str + at + 2, reflog_len); |
| 361 | at_time = approxidate(tmp); |
| 362 | free(tmp); |
| 363 | } |
Junio C Hamano | 16d7cc9 | 2007-01-19 01:19:05 -0800 | [diff] [blame] | 364 | if (read_ref_at(real_ref, at_time, nth, sha1, NULL, |
| 365 | &co_time, &co_tz, &co_cnt)) { |
| 366 | if (at_time) |
| 367 | fprintf(stderr, |
| 368 | "warning: Log for '%.*s' only goes " |
| 369 | "back to %s.\n", len, str, |
Junio C Hamano | 73013af | 2007-07-13 23:14:52 -0700 | [diff] [blame] | 370 | show_date(co_time, co_tz, DATE_RFC2822)); |
Junio C Hamano | 16d7cc9 | 2007-01-19 01:19:05 -0800 | [diff] [blame] | 371 | else |
| 372 | fprintf(stderr, |
| 373 | "warning: Log for '%.*s' only has " |
| 374 | "%d entries.\n", len, str, co_cnt); |
| 375 | } |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 376 | } |
| 377 | |
Linus Torvalds | ed378ec | 2006-09-11 20:17:35 -0700 | [diff] [blame] | 378 | free(real_ref); |
Shawn Pearce | d556fae | 2006-05-17 05:56:09 -0400 | [diff] [blame] | 379 | return 0; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | static int get_sha1_1(const char *name, int len, unsigned char *sha1); |
| 383 | |
| 384 | static int get_parent(const char *name, int len, |
| 385 | unsigned char *result, int idx) |
| 386 | { |
| 387 | unsigned char sha1[20]; |
| 388 | int ret = get_sha1_1(name, len, sha1); |
| 389 | struct commit *commit; |
| 390 | struct commit_list *p; |
| 391 | |
| 392 | if (ret) |
| 393 | return ret; |
| 394 | commit = lookup_commit_reference(sha1); |
| 395 | if (!commit) |
| 396 | return -1; |
| 397 | if (parse_commit(commit)) |
| 398 | return -1; |
| 399 | if (!idx) { |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 400 | hashcpy(result, commit->object.sha1); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 401 | return 0; |
| 402 | } |
| 403 | p = commit->parents; |
| 404 | while (p) { |
| 405 | if (!--idx) { |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 406 | hashcpy(result, p->item->object.sha1); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | p = p->next; |
| 410 | } |
| 411 | return -1; |
| 412 | } |
| 413 | |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 414 | static int get_nth_ancestor(const char *name, int len, |
| 415 | unsigned char *result, int generation) |
| 416 | { |
| 417 | unsigned char sha1[20]; |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 418 | struct commit *commit; |
| 419 | int ret; |
| 420 | |
| 421 | ret = get_sha1_1(name, len, sha1); |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 422 | if (ret) |
| 423 | return ret; |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 424 | commit = lookup_commit_reference(sha1); |
| 425 | if (!commit) |
| 426 | return -1; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 427 | |
| 428 | while (generation--) { |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 429 | if (parse_commit(commit) || !commit->parents) |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 430 | return -1; |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 431 | commit = commit->parents->item; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 432 | } |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 433 | hashcpy(result, commit->object.sha1); |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 434 | return 0; |
| 435 | } |
| 436 | |
Junio C Hamano | 8177631 | 2007-12-24 00:51:01 -0800 | [diff] [blame] | 437 | struct object *peel_to_type(const char *name, int namelen, |
| 438 | struct object *o, enum object_type expected_type) |
| 439 | { |
| 440 | if (name && !namelen) |
| 441 | namelen = strlen(name); |
| 442 | if (!o) { |
| 443 | unsigned char sha1[20]; |
| 444 | if (get_sha1_1(name, namelen, sha1)) |
| 445 | return NULL; |
| 446 | o = parse_object(sha1); |
| 447 | } |
| 448 | while (1) { |
| 449 | if (!o || (!o->parsed && !parse_object(o->sha1))) |
| 450 | return NULL; |
| 451 | if (o->type == expected_type) |
| 452 | return o; |
| 453 | if (o->type == OBJ_TAG) |
| 454 | o = ((struct tag*) o)->tagged; |
| 455 | else if (o->type == OBJ_COMMIT) |
| 456 | o = &(((struct commit *) o)->tree->object); |
| 457 | else { |
| 458 | if (name) |
| 459 | error("%.*s: expected %s type, but the object " |
| 460 | "dereferences to %s type", |
| 461 | namelen, name, typename(expected_type), |
| 462 | typename(o->type)); |
| 463 | return NULL; |
| 464 | } |
| 465 | } |
| 466 | } |
| 467 | |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 468 | static int peel_onion(const char *name, int len, unsigned char *sha1) |
| 469 | { |
| 470 | unsigned char outer[20]; |
| 471 | const char *sp; |
Linus Torvalds | 885a86a | 2006-06-14 16:45:13 -0700 | [diff] [blame] | 472 | unsigned int expected_type = 0; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 473 | struct object *o; |
| 474 | |
| 475 | /* |
| 476 | * "ref^{type}" dereferences ref repeatedly until you cannot |
| 477 | * dereference anymore, or you get an object of given type, |
| 478 | * whichever comes first. "ref^{}" means just dereference |
| 479 | * tags until you get a non-tag. "ref^0" is a shorthand for |
| 480 | * "ref^{commit}". "commit^{tree}" could be used to find the |
| 481 | * top-level tree of the given commit. |
| 482 | */ |
| 483 | if (len < 4 || name[len-1] != '}') |
| 484 | return -1; |
| 485 | |
| 486 | for (sp = name + len - 1; name <= sp; sp--) { |
| 487 | int ch = *sp; |
| 488 | if (ch == '{' && name < sp && sp[-1] == '^') |
| 489 | break; |
| 490 | } |
| 491 | if (sp <= name) |
| 492 | return -1; |
| 493 | |
| 494 | sp++; /* beginning of type name, or closing brace for empty */ |
| 495 | if (!strncmp(commit_type, sp, 6) && sp[6] == '}') |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 496 | expected_type = OBJ_COMMIT; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 497 | else if (!strncmp(tree_type, sp, 4) && sp[4] == '}') |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 498 | expected_type = OBJ_TREE; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 499 | else if (!strncmp(blob_type, sp, 4) && sp[4] == '}') |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 500 | expected_type = OBJ_BLOB; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 501 | else if (sp[0] == '}') |
Linus Torvalds | 1974632 | 2006-07-11 20:45:31 -0700 | [diff] [blame] | 502 | expected_type = OBJ_NONE; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 503 | else |
| 504 | return -1; |
| 505 | |
| 506 | if (get_sha1_1(name, sp - name - 2, outer)) |
| 507 | return -1; |
| 508 | |
| 509 | o = parse_object(outer); |
| 510 | if (!o) |
| 511 | return -1; |
Linus Torvalds | 885a86a | 2006-06-14 16:45:13 -0700 | [diff] [blame] | 512 | if (!expected_type) { |
Junio C Hamano | 9534f40 | 2005-11-02 15:19:13 -0800 | [diff] [blame] | 513 | o = deref_tag(o, name, sp - name - 2); |
Junio C Hamano | 6e1c6c1 | 2005-10-19 22:48:16 -0700 | [diff] [blame] | 514 | if (!o || (!o->parsed && !parse_object(o->sha1))) |
| 515 | return -1; |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 516 | hashcpy(sha1, o->sha1); |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 517 | } |
| 518 | else { |
Junio C Hamano | 8177631 | 2007-12-24 00:51:01 -0800 | [diff] [blame] | 519 | /* |
| 520 | * At this point, the syntax look correct, so |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 521 | * if we do not get the needed object, we should |
| 522 | * barf. |
| 523 | */ |
Junio C Hamano | 8177631 | 2007-12-24 00:51:01 -0800 | [diff] [blame] | 524 | o = peel_to_type(name, len, o, expected_type); |
| 525 | if (o) { |
| 526 | hashcpy(sha1, o->sha1); |
| 527 | return 0; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 528 | } |
Junio C Hamano | 8177631 | 2007-12-24 00:51:01 -0800 | [diff] [blame] | 529 | return -1; |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 530 | } |
| 531 | return 0; |
| 532 | } |
| 533 | |
Junio C Hamano | 7dd45e1 | 2006-09-20 16:11:08 -0700 | [diff] [blame] | 534 | static int get_describe_name(const char *name, int len, unsigned char *sha1) |
| 535 | { |
| 536 | const char *cp; |
| 537 | |
| 538 | for (cp = name + len - 1; name + 2 <= cp; cp--) { |
| 539 | char ch = *cp; |
| 540 | if (hexval(ch) & ~0377) { |
| 541 | /* We must be looking at g in "SOMETHING-g" |
| 542 | * for it to be describe output. |
| 543 | */ |
| 544 | if (ch == 'g' && cp[-1] == '-') { |
| 545 | cp++; |
| 546 | len -= cp - name; |
| 547 | return get_short_sha1(cp, len, sha1, 1); |
| 548 | } |
| 549 | } |
| 550 | } |
| 551 | return -1; |
| 552 | } |
| 553 | |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 554 | static int get_sha1_1(const char *name, int len, unsigned char *sha1) |
| 555 | { |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 556 | int ret, has_suffix; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 557 | const char *cp; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 558 | |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 559 | /* |
| 560 | * "name~3" is "name^^^", "name~" is "name~1", and "name^" is "name^1". |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 561 | */ |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 562 | has_suffix = 0; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 563 | for (cp = name + len - 1; name <= cp; cp--) { |
| 564 | int ch = *cp; |
| 565 | if ('0' <= ch && ch <= '9') |
| 566 | continue; |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 567 | if (ch == '~' || ch == '^') |
| 568 | has_suffix = ch; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 569 | break; |
| 570 | } |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 571 | |
| 572 | if (has_suffix) { |
| 573 | int num = 0; |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 574 | int len1 = cp - name; |
| 575 | cp++; |
| 576 | while (cp < name + len) |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 577 | num = num * 10 + *cp++ - '0'; |
Linus Torvalds | 621ff67 | 2008-03-14 11:49:40 -0700 | [diff] [blame] | 578 | if (!num && len1 == len - 1) |
| 579 | num = 1; |
| 580 | if (has_suffix == '^') |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 581 | return get_parent(name, len1, sha1, num); |
Junio C Hamano | 0601dbe | 2006-02-02 23:48:36 -0800 | [diff] [blame] | 582 | /* else if (has_suffix == '~') -- goes without saying */ |
| 583 | return get_nth_ancestor(name, len1, sha1, num); |
Junio C Hamano | 4f7599a | 2005-08-21 02:43:54 -0700 | [diff] [blame] | 584 | } |
| 585 | |
Junio C Hamano | 5385f52 | 2005-10-13 18:57:40 -0700 | [diff] [blame] | 586 | ret = peel_onion(name, len, sha1); |
| 587 | if (!ret) |
| 588 | return 0; |
| 589 | |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 590 | ret = get_sha1_basic(name, len, sha1); |
| 591 | if (!ret) |
| 592 | return 0; |
Junio C Hamano | 7dd45e1 | 2006-09-20 16:11:08 -0700 | [diff] [blame] | 593 | |
| 594 | /* It could be describe output that is "SOMETHING-gXXXX" */ |
| 595 | ret = get_describe_name(name, len, sha1); |
| 596 | if (!ret) |
| 597 | return 0; |
| 598 | |
Junio C Hamano | 013f276 | 2005-10-11 15:22:48 -0700 | [diff] [blame] | 599 | return get_short_sha1(name, len, sha1, 0); |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 600 | } |
| 601 | |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 602 | static int handle_one_ref(const char *path, |
| 603 | const unsigned char *sha1, int flag, void *cb_data) |
| 604 | { |
| 605 | struct commit_list **list = cb_data; |
| 606 | struct object *object = parse_object(sha1); |
| 607 | if (!object) |
| 608 | return 0; |
Martin Koegler | affeef1 | 2008-02-18 08:31:54 +0100 | [diff] [blame] | 609 | if (object->type == OBJ_TAG) { |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 610 | object = deref_tag(object, path, strlen(path)); |
Martin Koegler | affeef1 | 2008-02-18 08:31:54 +0100 | [diff] [blame] | 611 | if (!object) |
| 612 | return 0; |
| 613 | } |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 614 | if (object->type != OBJ_COMMIT) |
| 615 | return 0; |
| 616 | insert_by_date((struct commit *)object, list); |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | /* |
| 621 | * This interprets names like ':/Initial revision of "git"' by searching |
| 622 | * through history and returning the first commit whose message starts |
| 623 | * with the given string. |
| 624 | * |
| 625 | * For future extension, ':/!' is reserved. If you want to match a message |
| 626 | * beginning with a '!', you have to repeat the exclamation mark. |
| 627 | */ |
| 628 | |
| 629 | #define ONELINE_SEEN (1u<<20) |
Linus Torvalds | 1358e7d | 2007-03-12 11:30:38 -0700 | [diff] [blame] | 630 | static int get_sha1_oneline(const char *prefix, unsigned char *sha1) |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 631 | { |
| 632 | struct commit_list *list = NULL, *backup = NULL, *l; |
Linus Torvalds | 1358e7d | 2007-03-12 11:30:38 -0700 | [diff] [blame] | 633 | int retval = -1; |
Johannes Schindelin | 364d3e6 | 2007-12-03 18:42:39 +0000 | [diff] [blame] | 634 | char *temp_commit_buffer = NULL; |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 635 | |
| 636 | if (prefix[0] == '!') { |
| 637 | if (prefix[1] != '!') |
| 638 | die ("Invalid search pattern: %s", prefix); |
| 639 | prefix++; |
| 640 | } |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 641 | for_each_ref(handle_one_ref, &list); |
| 642 | for (l = list; l; l = l->next) |
| 643 | commit_list_insert(l->item, &backup); |
Jim Meyering | ed8ad7e | 2007-03-11 19:49:08 +0100 | [diff] [blame] | 644 | while (list) { |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 645 | char *p; |
Linus Torvalds | 1358e7d | 2007-03-12 11:30:38 -0700 | [diff] [blame] | 646 | struct commit *commit; |
Johannes Schindelin | 364d3e6 | 2007-12-03 18:42:39 +0000 | [diff] [blame] | 647 | enum object_type type; |
| 648 | unsigned long size; |
Jim Meyering | ed8ad7e | 2007-03-11 19:49:08 +0100 | [diff] [blame] | 649 | |
| 650 | commit = pop_most_recent_commit(&list, ONELINE_SEEN); |
Martin Koegler | 283cdbc | 2008-02-18 21:47:53 +0100 | [diff] [blame] | 651 | if (!parse_object(commit->object.sha1)) |
| 652 | continue; |
Jim Meyering | 8e0f700 | 2008-01-31 18:26:32 +0100 | [diff] [blame] | 653 | free(temp_commit_buffer); |
Johannes Schindelin | 364d3e6 | 2007-12-03 18:42:39 +0000 | [diff] [blame] | 654 | if (commit->buffer) |
| 655 | p = commit->buffer; |
| 656 | else { |
| 657 | p = read_sha1_file(commit->object.sha1, &type, &size); |
| 658 | if (!p) |
| 659 | continue; |
| 660 | temp_commit_buffer = p; |
| 661 | } |
| 662 | if (!(p = strstr(p, "\n\n"))) |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 663 | continue; |
| 664 | if (!prefixcmp(p + 2, prefix)) { |
| 665 | hashcpy(sha1, commit->object.sha1); |
Linus Torvalds | 1358e7d | 2007-03-12 11:30:38 -0700 | [diff] [blame] | 666 | retval = 0; |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 667 | break; |
| 668 | } |
| 669 | } |
Jim Meyering | 8e0f700 | 2008-01-31 18:26:32 +0100 | [diff] [blame] | 670 | free(temp_commit_buffer); |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 671 | free_commit_list(list); |
| 672 | for (l = backup; l; l = l->next) |
| 673 | clear_commit_marks(l->item, ONELINE_SEEN); |
Linus Torvalds | 1358e7d | 2007-03-12 11:30:38 -0700 | [diff] [blame] | 674 | return retval; |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 675 | } |
| 676 | |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 677 | /* |
| 678 | * This is like "get_sha1_basic()", except it allows "sha1 expressions", |
| 679 | * notably "xyz^" for "parent of xyz" |
| 680 | */ |
| 681 | int get_sha1(const char *name, unsigned char *sha1) |
| 682 | { |
Junio C Hamano | 041a730 | 2006-04-19 11:56:07 -0700 | [diff] [blame] | 683 | unsigned unused; |
Martin Koegler | a0cd87a | 2007-04-23 22:55:05 +0200 | [diff] [blame] | 684 | return get_sha1_with_mode(name, sha1, &unused); |
| 685 | } |
| 686 | |
| 687 | int get_sha1_with_mode(const char *name, unsigned char *sha1, unsigned *mode) |
| 688 | { |
| 689 | int ret, bracket_depth; |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 690 | int namelen = strlen(name); |
| 691 | const char *cp; |
Linus Torvalds | 5119602 | 2006-04-18 16:45:16 -0700 | [diff] [blame] | 692 | |
Martin Koegler | a0cd87a | 2007-04-23 22:55:05 +0200 | [diff] [blame] | 693 | *mode = S_IFINVALID; |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 694 | ret = get_sha1_1(name, namelen, sha1); |
| 695 | if (!ret) |
| 696 | return ret; |
| 697 | /* sha1:path --> object name of path in ent sha1 |
| 698 | * :path -> object name of path in index |
| 699 | * :[0-3]:path -> object name of path in index at stage |
| 700 | */ |
| 701 | if (name[0] == ':') { |
| 702 | int stage = 0; |
| 703 | struct cache_entry *ce; |
| 704 | int pos; |
Johannes Schindelin | 28a4d94 | 2007-02-24 03:08:20 +0100 | [diff] [blame] | 705 | if (namelen > 2 && name[1] == '/') |
| 706 | return get_sha1_oneline(name + 2, sha1); |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 707 | if (namelen < 3 || |
| 708 | name[2] != ':' || |
| 709 | name[1] < '0' || '3' < name[1]) |
| 710 | cp = name + 1; |
| 711 | else { |
| 712 | stage = name[1] - '0'; |
| 713 | cp = name + 3; |
Linus Torvalds | 5119602 | 2006-04-18 16:45:16 -0700 | [diff] [blame] | 714 | } |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 715 | namelen = namelen - (cp - name); |
| 716 | if (!active_cache) |
| 717 | read_cache(); |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 718 | pos = cache_name_pos(cp, namelen); |
| 719 | if (pos < 0) |
| 720 | pos = -pos - 1; |
| 721 | while (pos < active_nr) { |
| 722 | ce = active_cache[pos]; |
| 723 | if (ce_namelen(ce) != namelen || |
| 724 | memcmp(ce->name, cp, namelen)) |
| 725 | break; |
| 726 | if (ce_stage(ce) == stage) { |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 727 | hashcpy(sha1, ce->sha1); |
Linus Torvalds | 7a51ed6 | 2008-01-14 16:03:17 -0800 | [diff] [blame] | 728 | *mode = ce->ce_mode; |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 729 | return 0; |
| 730 | } |
Junio C Hamano | e7cef45 | 2006-05-08 15:44:06 -0700 | [diff] [blame] | 731 | pos++; |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 732 | } |
| 733 | return -1; |
| 734 | } |
Shawn Pearce | cce91a2 | 2006-05-19 03:29:43 -0400 | [diff] [blame] | 735 | for (cp = name, bracket_depth = 0; *cp; cp++) { |
| 736 | if (*cp == '{') |
| 737 | bracket_depth++; |
| 738 | else if (bracket_depth && *cp == '}') |
| 739 | bracket_depth--; |
| 740 | else if (!bracket_depth && *cp == ':') |
| 741 | break; |
| 742 | } |
| 743 | if (*cp == ':') { |
Junio C Hamano | 73b0e5a | 2006-04-21 17:31:04 -0700 | [diff] [blame] | 744 | unsigned char tree_sha1[20]; |
| 745 | if (!get_sha1_1(name, cp-name, tree_sha1)) |
| 746 | return get_tree_entry(tree_sha1, cp+1, sha1, |
Martin Koegler | a0cd87a | 2007-04-23 22:55:05 +0200 | [diff] [blame] | 747 | mode); |
Linus Torvalds | 5119602 | 2006-04-18 16:45:16 -0700 | [diff] [blame] | 748 | } |
| 749 | return ret; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 750 | } |