blob: 44bb62d270739a232e87c90c05ce89fcc86bc15b [file] [log] [blame]
Junio C Hamano9938af62005-08-03 22:15:49 -07001#include "cache.h"
Junio C Hamano5385f522005-10-13 18:57:40 -07002#include "tag.h"
Junio C Hamano9938af62005-08-03 22:15:49 -07003#include "commit.h"
Junio C Hamano5385f522005-10-13 18:57:40 -07004#include "tree.h"
5#include "blob.h"
Junio C Hamanof3ab49d2006-04-19 11:56:53 -07006#include "tree-walk.h"
Shawn Pearced556fae2006-05-17 05:56:09 -04007#include "refs.h"
Junio C Hamano9938af62005-08-03 22:15:49 -07008
9static int find_short_object_filename(int len, const char *name, unsigned char *sha1)
10{
Junio C Hamano99a19b42005-10-02 21:40:51 -070011 struct alternate_object_database *alt;
Junio C Hamano9938af62005-08-03 22:15:49 -070012 char hex[40];
Junio C Hamano99a19b42005-10-02 21:40:51 -070013 int found = 0;
14 static struct alternate_object_database *fakeent;
Junio C Hamano9938af62005-08-03 22:15:49 -070015
Junio C Hamano99a19b42005-10-02 21:40:51 -070016 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 Hamano9938af62005-08-03 22:15:49 -070027 sprintf(hex, "%.2s", name);
Junio C Hamano99a19b42005-10-02 21:40:51 -070028 for (alt = fakeent; alt && found < 2; alt = alt->next) {
Junio C Hamano9938af62005-08-03 22:15:49 -070029 struct dirent *de;
Junio C Hamano99a19b42005-10-02 21:40:51 -070030 DIR *dir;
31 sprintf(alt->name, "%.2s/", name);
32 dir = opendir(alt->base);
33 if (!dir)
34 continue;
Junio C Hamano9938af62005-08-03 22:15:49 -070035 while ((de = readdir(dir)) != NULL) {
36 if (strlen(de->d_name) != 38)
37 continue;
Junio C Hamano99a19b42005-10-02 21:40:51 -070038 if (memcmp(de->d_name, name + 2, len - 2))
Junio C Hamano9938af62005-08-03 22:15:49 -070039 continue;
Junio C Hamano99a19b42005-10-02 21:40:51 -070040 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 Hamano9938af62005-08-03 22:15:49 -070046 break;
Junio C Hamano99a19b42005-10-02 21:40:51 -070047 }
Junio C Hamano9938af62005-08-03 22:15:49 -070048 }
49 closedir(dir);
50 }
51 if (found == 1)
52 return get_sha1_hex(hex, sha1) == 0;
Junio C Hamano99a19b42005-10-02 21:40:51 -070053 return found;
Junio C Hamano9938af62005-08-03 22:15:49 -070054}
55
56static 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
71static int find_short_packed_object(int len, const unsigned char *match, unsigned char *sha1)
72{
73 struct packed_git *p;
Nicolas Pitred72308e2007-04-04 16:49:04 -040074 const unsigned char *found_sha1 = NULL;
Junio C Hamano99a19b42005-10-02 21:40:51 -070075 int found = 0;
Junio C Hamano9938af62005-08-03 22:15:49 -070076
77 prepare_packed_git();
Junio C Hamano99a19b42005-10-02 21:40:51 -070078 for (p = packed_git; p && found < 2; p = p->next) {
James Bowes10558802007-05-29 19:29:51 -040079 uint32_t num, last;
80 uint32_t first = 0;
81 open_pack_index(p);
82 num = p->num_objects;
83 last = num;
Junio C Hamano9938af62005-08-03 22:15:49 -070084 while (first < last) {
Shawn O. Pearce326bf392007-03-06 20:44:19 -050085 uint32_t mid = (first + last) / 2;
Nicolas Pitred72308e2007-04-04 16:49:04 -040086 const unsigned char *now;
Junio C Hamano9938af62005-08-03 22:15:49 -070087 int cmp;
88
Nicolas Pitred72308e2007-04-04 16:49:04 -040089 now = nth_packed_object_sha1(p, mid);
David Rientjesa89fccd2006-08-17 11:54:57 -070090 cmp = hashcmp(match, now);
Junio C Hamano9938af62005-08-03 22:15:49 -070091 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 Pitred72308e2007-04-04 16:49:04 -0400102 const unsigned char *now, *next;
103 now = nth_packed_object_sha1(p, first);
Junio C Hamano9938af62005-08-03 22:15:49 -0700104 if (match_sha(len, match, now)) {
Nicolas Pitred72308e2007-04-04 16:49:04 -0400105 next = nth_packed_object_sha1(p, first+1);
106 if (!next|| !match_sha(len, match, next)) {
Junio C Hamano0bc45892005-10-02 21:40:51 -0700107 /* unique within this pack */
108 if (!found) {
Nicolas Pitred72308e2007-04-04 16:49:04 -0400109 found_sha1 = now;
Junio C Hamano0bc45892005-10-02 21:40:51 -0700110 found++;
111 }
David Rientjesa89fccd2006-08-17 11:54:57 -0700112 else if (hashcmp(found_sha1, now)) {
Junio C Hamano0bc45892005-10-02 21:40:51 -0700113 found = 2;
114 break;
115 }
Junio C Hamano99a19b42005-10-02 21:40:51 -0700116 }
Junio C Hamano0bc45892005-10-02 21:40:51 -0700117 else {
118 /* not even unique within this pack */
Junio C Hamano99a19b42005-10-02 21:40:51 -0700119 found = 2;
120 break;
Junio C Hamano9938af62005-08-03 22:15:49 -0700121 }
122 }
123 }
124 }
Junio C Hamano99a19b42005-10-02 21:40:51 -0700125 if (found == 1)
Shawn Pearcee7024962006-08-23 02:49:00 -0400126 hashcpy(sha1, found_sha1);
Junio C Hamano99a19b42005-10-02 21:40:51 -0700127 return found;
128}
129
Junio C Hamano013f2762005-10-11 15:22:48 -0700130#define SHORT_NAME_NOT_FOUND (-1)
131#define SHORT_NAME_AMBIGUOUS (-2)
132
Junio C Hamano99a19b42005-10-02 21:40:51 -0700133static 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. Pearce693d2bc2007-05-26 01:25:11 -0400139 prepare_alt_odb();
Junio C Hamano99a19b42005-10-02 21:40:51 -0700140 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 Hamano013f2762005-10-11 15:22:48 -0700143 return SHORT_NAME_NOT_FOUND;
Junio C Hamano99a19b42005-10-02 21:40:51 -0700144 if (1 < has_unpacked || 1 < has_packed)
Junio C Hamano013f2762005-10-11 15:22:48 -0700145 return SHORT_NAME_AMBIGUOUS;
Junio C Hamano99a19b42005-10-02 21:40:51 -0700146 if (has_unpacked != has_packed) {
Shawn Pearcee7024962006-08-23 02:49:00 -0400147 hashcpy(sha1, (has_packed ? packed_sha1 : unpacked_sha1));
Junio C Hamano99a19b42005-10-02 21:40:51 -0700148 return 0;
149 }
150 /* Both have unique ones -- do they match? */
David Rientjesa89fccd2006-08-17 11:54:57 -0700151 if (hashcmp(packed_sha1, unpacked_sha1))
Uwe Zeisbergere974c9a2006-01-26 12:26:15 +0100152 return SHORT_NAME_AMBIGUOUS;
Shawn Pearcee7024962006-08-23 02:49:00 -0400153 hashcpy(sha1, packed_sha1);
Junio C Hamano9938af62005-08-03 22:15:49 -0700154 return 0;
155}
156
Junio C Hamano013f2762005-10-11 15:22:48 -0700157static int get_short_sha1(const char *name, int len, unsigned char *sha1,
158 int quietly)
Junio C Hamano9938af62005-08-03 22:15:49 -0700159{
Junio C Hamano013f2762005-10-11 15:22:48 -0700160 int i, status;
Junio C Hamano9938af62005-08-03 22:15:49 -0700161 char canonical[40];
162 unsigned char res[20];
163
pclouds@gmail.com8a831572006-10-19 08:34:41 +0700164 if (len < MINIMUM_ABBREV || len > 40)
Linus Torvaldsaf61c6e2005-09-19 15:16:03 -0700165 return -1;
Junio C Hamanoa8e0d162006-08-23 13:57:23 -0700166 hashclr(res);
Junio C Hamano9938af62005-08-03 22:15:49 -0700167 memset(canonical, 'x', 40);
Linus Torvaldsaf61c6e2005-09-19 15:16:03 -0700168 for (i = 0; i < len ;i++) {
Junio C Hamano9938af62005-08-03 22:15:49 -0700169 unsigned char c = name[i];
170 unsigned char val;
Junio C Hamano9938af62005-08-03 22:15:49 -0700171 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 Hamano99a19b42005-10-02 21:40:51 -0700186
Junio C Hamano013f2762005-10-11 15:22:48 -0700187 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
193const char *find_unique_abbrev(const unsigned char *sha1, int len)
194{
Junio C Hamanob66fde92008-03-01 23:35:32 -0800195 int status, exists;
Junio C Hamano013f2762005-10-11 15:22:48 -0700196 static char hex[41];
Junio C Hamano47dd0d52005-12-13 17:21:41 -0800197
Junio C Hamanob66fde92008-03-01 23:35:32 -0800198 exists = has_sha1_file(sha1);
Junio C Hamano013f2762005-10-11 15:22:48 -0700199 memcpy(hex, sha1_to_hex(sha1), 40);
Junio C Hamano02c5cba2006-08-09 13:17:04 -0700200 if (len == 40 || !len)
Junio C Hamano47dd0d52005-12-13 17:21:41 -0800201 return hex;
Junio C Hamano013f2762005-10-11 15:22:48 -0700202 while (len < 40) {
203 unsigned char sha1_ret[20];
204 status = get_short_sha1(hex, len, sha1_ret, 1);
Junio C Hamanob66fde92008-03-01 23:35:32 -0800205 if (exists
206 ? !status
207 : status == SHORT_NAME_NOT_FOUND) {
Junio C Hamano013f2762005-10-11 15:22:48 -0700208 hex[len] = 0;
209 return hex;
210 }
Junio C Hamano013f2762005-10-11 15:22:48 -0700211 len++;
212 }
Junio C Hamanob66fde92008-03-01 23:35:32 -0800213 return hex;
Junio C Hamano9938af62005-08-03 22:15:49 -0700214}
215
Junio C Hamano6677c462005-12-15 12:54:00 -0800216static int ambiguous_path(const char *path, int len)
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700217{
218 int slash = 1;
Junio C Hamano6677c462005-12-15 12:54:00 -0800219 int cnt;
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700220
Junio C Hamano6677c462005-12-15 12:54:00 -0800221 for (cnt = 0; cnt < len; cnt++) {
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700222 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 Hamanoc054d642005-12-17 00:00:50 -0800236 break;
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700237 }
Junio C Hamano6677c462005-12-15 12:54:00 -0800238 return slash;
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700239}
240
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100241/*
242 * *string and *len will only be substituted, and *string returned (for
243 * later free()ing) if the string passed in is of the form @{-<n>}.
244 */
Junio C Hamano431b1962009-03-21 12:51:34 -0700245static char *substitute_branch_name(const char **string, int *len)
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100246{
247 struct strbuf buf = STRBUF_INIT;
Junio C Hamano431b1962009-03-21 12:51:34 -0700248 int ret = interpret_branch_name(*string, &buf);
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100249
250 if (ret == *len) {
251 size_t size;
252 *string = strbuf_detach(&buf, &size);
253 *len = size;
254 return (char *)*string;
255 }
256
257 return NULL;
258}
259
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800260int dwim_ref(const char *str, int len, unsigned char *sha1, char **ref)
Junio C Hamano9938af62005-08-03 22:15:49 -0700261{
Junio C Hamano431b1962009-03-21 12:51:34 -0700262 char *last_branch = substitute_branch_name(&str, &len);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800263 const char **p, *r;
264 int refs_found = 0;
265
266 *ref = NULL;
Steffen Prohaska79803322007-11-11 15:01:46 +0100267 for (p = ref_rev_parse_rules; *p; p++) {
Alex Riesen94cc3552008-10-26 23:07:24 +0100268 char fullref[PATH_MAX];
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800269 unsigned char sha1_from_ref[20];
270 unsigned char *this_result;
Junio C Hamano057e7132009-02-08 23:52:01 -0800271 int flag;
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800272
273 this_result = refs_found ? sha1_from_ref : sha1;
Alex Riesen94cc3552008-10-26 23:07:24 +0100274 mksnpath(fullref, sizeof(fullref), *p, len, str);
Junio C Hamano057e7132009-02-08 23:52:01 -0800275 r = resolve_ref(fullref, this_result, 1, &flag);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800276 if (r) {
277 if (!refs_found++)
278 *ref = xstrdup(r);
279 if (!warn_ambiguous_refs)
280 break;
Junio C Hamano9e5b80c2009-02-11 09:22:16 -0800281 } else if ((flag & REF_ISSYMREF) &&
282 (len != 4 || strcmp(str, "HEAD")))
Junio C Hamano057e7132009-02-08 23:52:01 -0800283 warning("ignoring dangling symref %s.", fullref);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800284 }
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100285 free(last_branch);
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800286 return refs_found;
287}
288
Johannes Schindelineb3a4822007-02-09 01:28:23 +0100289int dwim_log(const char *str, int len, unsigned char *sha1, char **log)
Nicolas Pitref2eba662007-02-03 21:49:16 -0500290{
Junio C Hamano431b1962009-03-21 12:51:34 -0700291 char *last_branch = substitute_branch_name(&str, &len);
Nicolas Pitref2eba662007-02-03 21:49:16 -0500292 const char **p;
293 int logs_found = 0;
294
295 *log = NULL;
Steffen Prohaska79803322007-11-11 15:01:46 +0100296 for (p = ref_rev_parse_rules; *p; p++) {
Nicolas Pitref2eba662007-02-03 21:49:16 -0500297 struct stat st;
Junio C Hamano40facde2007-02-08 23:24:51 -0800298 unsigned char hash[20];
299 char path[PATH_MAX];
300 const char *ref, *it;
301
Alex Riesen94cc3552008-10-26 23:07:24 +0100302 mksnpath(path, sizeof(path), *p, len, str);
Junio C Hamano0c4cd7f2008-07-23 17:22:58 -0700303 ref = resolve_ref(path, hash, 1, NULL);
Junio C Hamano40facde2007-02-08 23:24:51 -0800304 if (!ref)
305 continue;
Nicolas Pitref2eba662007-02-03 21:49:16 -0500306 if (!stat(git_path("logs/%s", path), &st) &&
Junio C Hamano40facde2007-02-08 23:24:51 -0800307 S_ISREG(st.st_mode))
308 it = path;
309 else if (strcmp(ref, path) &&
310 !stat(git_path("logs/%s", ref), &st) &&
311 S_ISREG(st.st_mode))
312 it = ref;
313 else
314 continue;
315 if (!logs_found++) {
316 *log = xstrdup(it);
317 hashcpy(sha1, hash);
Nicolas Pitref2eba662007-02-03 21:49:16 -0500318 }
Junio C Hamano40facde2007-02-08 23:24:51 -0800319 if (!warn_ambiguous_refs)
320 break;
Nicolas Pitref2eba662007-02-03 21:49:16 -0500321 }
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100322 free(last_branch);
Nicolas Pitref2eba662007-02-03 21:49:16 -0500323 return logs_found;
324}
325
Thomas Rastd18ba222009-01-17 17:09:55 +0100326static int get_sha1_1(const char *name, int len, unsigned char *sha1);
327
Junio C Hamanoe86eb662007-01-19 01:15:15 -0800328static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
329{
Shawn Pearced556fae2006-05-17 05:56:09 -0400330 static const char *warning = "warning: refname '%.*s' is ambiguous.\n";
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700331 char *real_ref = NULL;
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700332 int refs_found = 0;
333 int at, reflog_len;
Junio C Hamano9938af62005-08-03 22:15:49 -0700334
Linus Torvalds3c3852e2005-08-13 11:05:25 -0700335 if (len == 40 && !get_sha1_hex(str, sha1))
Junio C Hamano9938af62005-08-03 22:15:49 -0700336 return 0;
337
Thomas Rastd18ba222009-01-17 17:09:55 +0100338 /* basic@{time or number or -number} format to query ref-log */
Junio C Hamano694500e2006-10-23 21:15:34 -0700339 reflog_len = at = 0;
Johannes Schindelinf2654582009-01-28 00:07:46 +0100340 if (len && str[len-1] == '}') {
Johannes Schindelinaa9c55b2009-01-17 19:08:12 +0100341 for (at = len-2; at >= 0; at--) {
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700342 if (str[at] == '@' && str[at+1] == '{') {
343 reflog_len = (len-1) - (at+2);
344 len = at;
345 break;
346 }
Shawn Pearced556fae2006-05-17 05:56:09 -0400347 }
348 }
349
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700350 /* Accept only unambiguous ref paths. */
Nicolas Pitre11cf8802007-02-01 17:29:33 -0500351 if (len && ambiguous_path(str, len))
Linus Torvaldsaf13cdf2005-10-28 12:41:49 -0700352 return -1;
353
Nicolas Pitre11cf8802007-02-01 17:29:33 -0500354 if (!len && reflog_len) {
Thomas Rastd18ba222009-01-17 17:09:55 +0100355 struct strbuf buf = STRBUF_INIT;
356 int ret;
357 /* try the @{-N} syntax for n-th checkout */
Junio C Hamano431b1962009-03-21 12:51:34 -0700358 ret = interpret_branch_name(str+at, &buf);
Thomas Rastd18ba222009-01-17 17:09:55 +0100359 if (ret > 0) {
360 /* substitute this branch name and restart */
361 return get_sha1_1(buf.buf, buf.len, sha1);
362 } else if (ret == 0) {
363 return -1;
364 }
Nicolas Pitre11cf8802007-02-01 17:29:33 -0500365 /* allow "@{...}" to mean the current branch reflog */
366 refs_found = dwim_ref("HEAD", 4, sha1, &real_ref);
Nicolas Pitref2eba662007-02-03 21:49:16 -0500367 } else if (reflog_len)
368 refs_found = dwim_log(str, len, sha1, &real_ref);
369 else
Nicolas Pitre11cf8802007-02-01 17:29:33 -0500370 refs_found = dwim_ref(str, len, sha1, &real_ref);
Shawn Pearced556fae2006-05-17 05:56:09 -0400371
372 if (!refs_found)
373 return -1;
374
375 if (warn_ambiguous_refs && refs_found > 1)
376 fprintf(stderr, warning, len, str);
377
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700378 if (reflog_len) {
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700379 int nth, i;
380 unsigned long at_time;
Junio C Hamano16d7cc92007-01-19 01:19:05 -0800381 unsigned long co_time;
382 int co_tz, co_cnt;
383
Nicolas Pitrefe558512007-02-01 12:33:23 -0500384 /* Is it asking for N-th entry, or approxidate? */
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700385 for (i = nth = 0; 0 <= nth && i < reflog_len; i++) {
386 char ch = str[at+2+i];
387 if ('0' <= ch && ch <= '9')
388 nth = nth * 10 + ch - '0';
389 else
390 nth = -1;
391 }
Shawn O. Pearceea360dd2008-08-21 08:40:44 -0700392 if (100000000 <= nth) {
393 at_time = nth;
394 nth = -1;
395 } else if (0 <= nth)
Junio C Hamanoab2a1a32006-10-05 23:16:15 -0700396 at_time = 0;
Jeff King861f00e2008-04-30 00:13:58 -0400397 else {
398 char *tmp = xstrndup(str + at + 2, reflog_len);
399 at_time = approxidate(tmp);
400 free(tmp);
401 }
Junio C Hamano16d7cc92007-01-19 01:19:05 -0800402 if (read_ref_at(real_ref, at_time, nth, sha1, NULL,
403 &co_time, &co_tz, &co_cnt)) {
404 if (at_time)
405 fprintf(stderr,
406 "warning: Log for '%.*s' only goes "
407 "back to %s.\n", len, str,
Junio C Hamano73013af2007-07-13 23:14:52 -0700408 show_date(co_time, co_tz, DATE_RFC2822));
Junio C Hamano16d7cc92007-01-19 01:19:05 -0800409 else
410 fprintf(stderr,
411 "warning: Log for '%.*s' only has "
412 "%d entries.\n", len, str, co_cnt);
413 }
Shawn Pearced556fae2006-05-17 05:56:09 -0400414 }
415
Linus Torvaldsed378ec2006-09-11 20:17:35 -0700416 free(real_ref);
Shawn Pearced556fae2006-05-17 05:56:09 -0400417 return 0;
Junio C Hamano9938af62005-08-03 22:15:49 -0700418}
419
Junio C Hamano9938af62005-08-03 22:15:49 -0700420static int get_parent(const char *name, int len,
421 unsigned char *result, int idx)
422{
423 unsigned char sha1[20];
424 int ret = get_sha1_1(name, len, sha1);
425 struct commit *commit;
426 struct commit_list *p;
427
428 if (ret)
429 return ret;
430 commit = lookup_commit_reference(sha1);
431 if (!commit)
432 return -1;
433 if (parse_commit(commit))
434 return -1;
435 if (!idx) {
Shawn Pearcee7024962006-08-23 02:49:00 -0400436 hashcpy(result, commit->object.sha1);
Junio C Hamano9938af62005-08-03 22:15:49 -0700437 return 0;
438 }
439 p = commit->parents;
440 while (p) {
441 if (!--idx) {
Shawn Pearcee7024962006-08-23 02:49:00 -0400442 hashcpy(result, p->item->object.sha1);
Junio C Hamano9938af62005-08-03 22:15:49 -0700443 return 0;
444 }
445 p = p->next;
446 }
447 return -1;
448}
449
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700450static int get_nth_ancestor(const char *name, int len,
451 unsigned char *result, int generation)
452{
453 unsigned char sha1[20];
Linus Torvalds621ff672008-03-14 11:49:40 -0700454 struct commit *commit;
455 int ret;
456
457 ret = get_sha1_1(name, len, sha1);
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700458 if (ret)
459 return ret;
Linus Torvalds621ff672008-03-14 11:49:40 -0700460 commit = lookup_commit_reference(sha1);
461 if (!commit)
462 return -1;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700463
464 while (generation--) {
Linus Torvalds621ff672008-03-14 11:49:40 -0700465 if (parse_commit(commit) || !commit->parents)
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700466 return -1;
Linus Torvalds621ff672008-03-14 11:49:40 -0700467 commit = commit->parents->item;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700468 }
Linus Torvalds621ff672008-03-14 11:49:40 -0700469 hashcpy(result, commit->object.sha1);
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700470 return 0;
471}
472
Junio C Hamano81776312007-12-24 00:51:01 -0800473struct object *peel_to_type(const char *name, int namelen,
474 struct object *o, enum object_type expected_type)
475{
476 if (name && !namelen)
477 namelen = strlen(name);
478 if (!o) {
479 unsigned char sha1[20];
480 if (get_sha1_1(name, namelen, sha1))
481 return NULL;
482 o = parse_object(sha1);
483 }
484 while (1) {
485 if (!o || (!o->parsed && !parse_object(o->sha1)))
486 return NULL;
487 if (o->type == expected_type)
488 return o;
489 if (o->type == OBJ_TAG)
490 o = ((struct tag*) o)->tagged;
491 else if (o->type == OBJ_COMMIT)
492 o = &(((struct commit *) o)->tree->object);
493 else {
494 if (name)
495 error("%.*s: expected %s type, but the object "
496 "dereferences to %s type",
497 namelen, name, typename(expected_type),
498 typename(o->type));
499 return NULL;
500 }
501 }
502}
503
Junio C Hamano5385f522005-10-13 18:57:40 -0700504static int peel_onion(const char *name, int len, unsigned char *sha1)
505{
506 unsigned char outer[20];
507 const char *sp;
Linus Torvalds885a86a2006-06-14 16:45:13 -0700508 unsigned int expected_type = 0;
Junio C Hamano5385f522005-10-13 18:57:40 -0700509 struct object *o;
510
511 /*
512 * "ref^{type}" dereferences ref repeatedly until you cannot
513 * dereference anymore, or you get an object of given type,
514 * whichever comes first. "ref^{}" means just dereference
515 * tags until you get a non-tag. "ref^0" is a shorthand for
516 * "ref^{commit}". "commit^{tree}" could be used to find the
517 * top-level tree of the given commit.
518 */
519 if (len < 4 || name[len-1] != '}')
520 return -1;
521
522 for (sp = name + len - 1; name <= sp; sp--) {
523 int ch = *sp;
524 if (ch == '{' && name < sp && sp[-1] == '^')
525 break;
526 }
527 if (sp <= name)
528 return -1;
529
530 sp++; /* beginning of type name, or closing brace for empty */
531 if (!strncmp(commit_type, sp, 6) && sp[6] == '}')
Linus Torvalds19746322006-07-11 20:45:31 -0700532 expected_type = OBJ_COMMIT;
Junio C Hamano5385f522005-10-13 18:57:40 -0700533 else if (!strncmp(tree_type, sp, 4) && sp[4] == '}')
Linus Torvalds19746322006-07-11 20:45:31 -0700534 expected_type = OBJ_TREE;
Junio C Hamano5385f522005-10-13 18:57:40 -0700535 else if (!strncmp(blob_type, sp, 4) && sp[4] == '}')
Linus Torvalds19746322006-07-11 20:45:31 -0700536 expected_type = OBJ_BLOB;
Junio C Hamano5385f522005-10-13 18:57:40 -0700537 else if (sp[0] == '}')
Linus Torvalds19746322006-07-11 20:45:31 -0700538 expected_type = OBJ_NONE;
Junio C Hamano5385f522005-10-13 18:57:40 -0700539 else
540 return -1;
541
542 if (get_sha1_1(name, sp - name - 2, outer))
543 return -1;
544
545 o = parse_object(outer);
546 if (!o)
547 return -1;
Linus Torvalds885a86a2006-06-14 16:45:13 -0700548 if (!expected_type) {
Junio C Hamano9534f402005-11-02 15:19:13 -0800549 o = deref_tag(o, name, sp - name - 2);
Junio C Hamano6e1c6c12005-10-19 22:48:16 -0700550 if (!o || (!o->parsed && !parse_object(o->sha1)))
551 return -1;
Shawn Pearcee7024962006-08-23 02:49:00 -0400552 hashcpy(sha1, o->sha1);
Junio C Hamano5385f522005-10-13 18:57:40 -0700553 }
554 else {
Junio C Hamano81776312007-12-24 00:51:01 -0800555 /*
556 * At this point, the syntax look correct, so
Junio C Hamano5385f522005-10-13 18:57:40 -0700557 * if we do not get the needed object, we should
558 * barf.
559 */
Junio C Hamano81776312007-12-24 00:51:01 -0800560 o = peel_to_type(name, len, o, expected_type);
561 if (o) {
562 hashcpy(sha1, o->sha1);
563 return 0;
Junio C Hamano5385f522005-10-13 18:57:40 -0700564 }
Junio C Hamano81776312007-12-24 00:51:01 -0800565 return -1;
Junio C Hamano5385f522005-10-13 18:57:40 -0700566 }
567 return 0;
568}
569
Junio C Hamano7dd45e12006-09-20 16:11:08 -0700570static int get_describe_name(const char *name, int len, unsigned char *sha1)
571{
572 const char *cp;
573
574 for (cp = name + len - 1; name + 2 <= cp; cp--) {
575 char ch = *cp;
576 if (hexval(ch) & ~0377) {
577 /* We must be looking at g in "SOMETHING-g"
578 * for it to be describe output.
579 */
580 if (ch == 'g' && cp[-1] == '-') {
581 cp++;
582 len -= cp - name;
583 return get_short_sha1(cp, len, sha1, 1);
584 }
585 }
586 }
587 return -1;
588}
589
Junio C Hamano9938af62005-08-03 22:15:49 -0700590static int get_sha1_1(const char *name, int len, unsigned char *sha1)
591{
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800592 int ret, has_suffix;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700593 const char *cp;
Junio C Hamano9938af62005-08-03 22:15:49 -0700594
Linus Torvalds621ff672008-03-14 11:49:40 -0700595 /*
596 * "name~3" is "name^^^", "name~" is "name~1", and "name^" is "name^1".
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700597 */
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800598 has_suffix = 0;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700599 for (cp = name + len - 1; name <= cp; cp--) {
600 int ch = *cp;
601 if ('0' <= ch && ch <= '9')
602 continue;
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800603 if (ch == '~' || ch == '^')
604 has_suffix = ch;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700605 break;
606 }
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800607
608 if (has_suffix) {
609 int num = 0;
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700610 int len1 = cp - name;
611 cp++;
612 while (cp < name + len)
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800613 num = num * 10 + *cp++ - '0';
Linus Torvalds621ff672008-03-14 11:49:40 -0700614 if (!num && len1 == len - 1)
615 num = 1;
616 if (has_suffix == '^')
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800617 return get_parent(name, len1, sha1, num);
Junio C Hamano0601dbe2006-02-02 23:48:36 -0800618 /* else if (has_suffix == '~') -- goes without saying */
619 return get_nth_ancestor(name, len1, sha1, num);
Junio C Hamano4f7599a2005-08-21 02:43:54 -0700620 }
621
Junio C Hamano5385f522005-10-13 18:57:40 -0700622 ret = peel_onion(name, len, sha1);
623 if (!ret)
624 return 0;
625
Junio C Hamano9938af62005-08-03 22:15:49 -0700626 ret = get_sha1_basic(name, len, sha1);
627 if (!ret)
628 return 0;
Junio C Hamano7dd45e12006-09-20 16:11:08 -0700629
630 /* It could be describe output that is "SOMETHING-gXXXX" */
631 ret = get_describe_name(name, len, sha1);
632 if (!ret)
633 return 0;
634
Junio C Hamano013f2762005-10-11 15:22:48 -0700635 return get_short_sha1(name, len, sha1, 0);
Junio C Hamano9938af62005-08-03 22:15:49 -0700636}
637
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100638static int handle_one_ref(const char *path,
639 const unsigned char *sha1, int flag, void *cb_data)
640{
641 struct commit_list **list = cb_data;
642 struct object *object = parse_object(sha1);
643 if (!object)
644 return 0;
Martin Koegleraffeef12008-02-18 08:31:54 +0100645 if (object->type == OBJ_TAG) {
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100646 object = deref_tag(object, path, strlen(path));
Martin Koegleraffeef12008-02-18 08:31:54 +0100647 if (!object)
648 return 0;
649 }
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100650 if (object->type != OBJ_COMMIT)
651 return 0;
652 insert_by_date((struct commit *)object, list);
653 return 0;
654}
655
656/*
657 * This interprets names like ':/Initial revision of "git"' by searching
658 * through history and returning the first commit whose message starts
659 * with the given string.
660 *
661 * For future extension, ':/!' is reserved. If you want to match a message
662 * beginning with a '!', you have to repeat the exclamation mark.
663 */
664
665#define ONELINE_SEEN (1u<<20)
Linus Torvalds1358e7d2007-03-12 11:30:38 -0700666static int get_sha1_oneline(const char *prefix, unsigned char *sha1)
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100667{
668 struct commit_list *list = NULL, *backup = NULL, *l;
Linus Torvalds1358e7d2007-03-12 11:30:38 -0700669 int retval = -1;
Johannes Schindelin364d3e62007-12-03 18:42:39 +0000670 char *temp_commit_buffer = NULL;
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100671
672 if (prefix[0] == '!') {
673 if (prefix[1] != '!')
674 die ("Invalid search pattern: %s", prefix);
675 prefix++;
676 }
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100677 for_each_ref(handle_one_ref, &list);
678 for (l = list; l; l = l->next)
679 commit_list_insert(l->item, &backup);
Jim Meyeringed8ad7e2007-03-11 19:49:08 +0100680 while (list) {
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100681 char *p;
Linus Torvalds1358e7d2007-03-12 11:30:38 -0700682 struct commit *commit;
Johannes Schindelin364d3e62007-12-03 18:42:39 +0000683 enum object_type type;
684 unsigned long size;
Jim Meyeringed8ad7e2007-03-11 19:49:08 +0100685
686 commit = pop_most_recent_commit(&list, ONELINE_SEEN);
Martin Koegler283cdbc2008-02-18 21:47:53 +0100687 if (!parse_object(commit->object.sha1))
688 continue;
Jim Meyering8e0f7002008-01-31 18:26:32 +0100689 free(temp_commit_buffer);
Johannes Schindelin364d3e62007-12-03 18:42:39 +0000690 if (commit->buffer)
691 p = commit->buffer;
692 else {
693 p = read_sha1_file(commit->object.sha1, &type, &size);
694 if (!p)
695 continue;
696 temp_commit_buffer = p;
697 }
698 if (!(p = strstr(p, "\n\n")))
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100699 continue;
700 if (!prefixcmp(p + 2, prefix)) {
701 hashcpy(sha1, commit->object.sha1);
Linus Torvalds1358e7d2007-03-12 11:30:38 -0700702 retval = 0;
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100703 break;
704 }
705 }
Jim Meyering8e0f7002008-01-31 18:26:32 +0100706 free(temp_commit_buffer);
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100707 free_commit_list(list);
708 for (l = backup; l; l = l->next)
709 clear_commit_marks(l->item, ONELINE_SEEN);
Linus Torvalds1358e7d2007-03-12 11:30:38 -0700710 return retval;
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100711}
712
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100713struct grab_nth_branch_switch_cbdata {
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800714 long cnt, alloc;
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100715 struct strbuf *buf;
716};
717
718static int grab_nth_branch_switch(unsigned char *osha1, unsigned char *nsha1,
719 const char *email, unsigned long timestamp, int tz,
720 const char *message, void *cb_data)
721{
722 struct grab_nth_branch_switch_cbdata *cb = cb_data;
Thomas Rasta884d0c2009-01-17 17:09:54 +0100723 const char *match = NULL, *target = NULL;
724 size_t len;
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800725 int nth;
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100726
Thomas Rasta884d0c2009-01-17 17:09:54 +0100727 if (!prefixcmp(message, "checkout: moving from ")) {
728 match = message + strlen("checkout: moving from ");
Junio C Hamanod7c03c12009-01-21 00:37:38 -0800729 target = strstr(match, " to ");
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100730 }
731
Junio C Hamanoc8297742009-01-19 16:44:08 -0800732 if (!match || !target)
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100733 return 0;
734
Junio C Hamanod7c03c12009-01-21 00:37:38 -0800735 len = target - match;
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800736 nth = cb->cnt++ % cb->alloc;
737 strbuf_reset(&cb->buf[nth]);
738 strbuf_add(&cb->buf[nth], match, len);
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100739 return 0;
740}
741
742/*
743 * This reads "@{-N}" syntax, finds the name of the Nth previous
744 * branch we were on, and places the name of the branch in the given
Thomas Rasta884d0c2009-01-17 17:09:54 +0100745 * buf and returns the number of characters parsed if successful.
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100746 *
747 * If the input is not of the accepted format, it returns a negative
748 * number to signal an error.
Thomas Rasta884d0c2009-01-17 17:09:54 +0100749 *
750 * If the input was ok but there are not N branch switches in the
751 * reflog, it returns 0.
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100752 */
Junio C Hamano431b1962009-03-21 12:51:34 -0700753int interpret_branch_name(const char *name, struct strbuf *buf)
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100754{
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800755 long nth;
Junio C Hamano39765e52009-01-19 21:58:31 -0800756 int i, retval;
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100757 struct grab_nth_branch_switch_cbdata cb;
Thomas Rasta884d0c2009-01-17 17:09:54 +0100758 const char *brace;
759 char *num_end;
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100760
761 if (name[0] != '@' || name[1] != '{' || name[2] != '-')
762 return -1;
Thomas Rasta884d0c2009-01-17 17:09:54 +0100763 brace = strchr(name, '}');
764 if (!brace)
765 return -1;
766 nth = strtol(name+3, &num_end, 10);
767 if (num_end != brace)
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100768 return -1;
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800769 if (nth <= 0)
770 return -1;
771 cb.alloc = nth;
772 cb.buf = xmalloc(nth * sizeof(struct strbuf));
773 for (i = 0; i < nth; i++)
774 strbuf_init(&cb.buf[i], 20);
775 cb.cnt = 0;
Junio C Hamano39765e52009-01-19 21:58:31 -0800776 retval = 0;
Junio C Hamano101d15e2009-01-19 22:18:29 -0800777 for_each_recent_reflog_ent("HEAD", grab_nth_branch_switch, 40960, &cb);
778 if (cb.cnt < nth) {
779 cb.cnt = 0;
Junio C Hamano101d15e2009-01-19 22:18:29 -0800780 for_each_reflog_ent("HEAD", grab_nth_branch_switch, &cb);
781 }
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800782 if (cb.cnt < nth)
Junio C Hamano39765e52009-01-19 21:58:31 -0800783 goto release_return;
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800784 i = cb.cnt % nth;
785 strbuf_reset(buf);
786 strbuf_add(buf, cb.buf[i].buf, cb.buf[i].len);
Junio C Hamano39765e52009-01-19 21:58:31 -0800787 retval = brace-name+1;
788
789release_return:
Junio C Hamanoc2883e62009-01-19 00:04:25 -0800790 for (i = 0; i < nth; i++)
791 strbuf_release(&cb.buf[i]);
792 free(cb.buf);
Thomas Rasta884d0c2009-01-17 17:09:54 +0100793
Junio C Hamano39765e52009-01-19 21:58:31 -0800794 return retval;
Junio C Hamanoae5a6c32009-01-17 17:09:53 +0100795}
796
Junio C Hamano9938af62005-08-03 22:15:49 -0700797/*
798 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
799 * notably "xyz^" for "parent of xyz"
800 */
801int get_sha1(const char *name, unsigned char *sha1)
802{
Junio C Hamano041a7302006-04-19 11:56:07 -0700803 unsigned unused;
Martin Koeglera0cd87a2007-04-23 22:55:05 +0200804 return get_sha1_with_mode(name, sha1, &unused);
805}
806
807int get_sha1_with_mode(const char *name, unsigned char *sha1, unsigned *mode)
808{
809 int ret, bracket_depth;
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700810 int namelen = strlen(name);
811 const char *cp;
Linus Torvalds51196022006-04-18 16:45:16 -0700812
Martin Koeglera0cd87a2007-04-23 22:55:05 +0200813 *mode = S_IFINVALID;
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700814 ret = get_sha1_1(name, namelen, sha1);
815 if (!ret)
816 return ret;
817 /* sha1:path --> object name of path in ent sha1
818 * :path -> object name of path in index
819 * :[0-3]:path -> object name of path in index at stage
820 */
821 if (name[0] == ':') {
822 int stage = 0;
823 struct cache_entry *ce;
824 int pos;
Johannes Schindelin28a4d942007-02-24 03:08:20 +0100825 if (namelen > 2 && name[1] == '/')
826 return get_sha1_oneline(name + 2, sha1);
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700827 if (namelen < 3 ||
828 name[2] != ':' ||
829 name[1] < '0' || '3' < name[1])
830 cp = name + 1;
831 else {
832 stage = name[1] - '0';
833 cp = name + 3;
Linus Torvalds51196022006-04-18 16:45:16 -0700834 }
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700835 namelen = namelen - (cp - name);
836 if (!active_cache)
837 read_cache();
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700838 pos = cache_name_pos(cp, namelen);
839 if (pos < 0)
840 pos = -pos - 1;
841 while (pos < active_nr) {
842 ce = active_cache[pos];
843 if (ce_namelen(ce) != namelen ||
844 memcmp(ce->name, cp, namelen))
845 break;
846 if (ce_stage(ce) == stage) {
Shawn Pearcee7024962006-08-23 02:49:00 -0400847 hashcpy(sha1, ce->sha1);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800848 *mode = ce->ce_mode;
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700849 return 0;
850 }
Junio C Hamanoe7cef452006-05-08 15:44:06 -0700851 pos++;
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700852 }
853 return -1;
854 }
Shawn Pearcecce91a22006-05-19 03:29:43 -0400855 for (cp = name, bracket_depth = 0; *cp; cp++) {
856 if (*cp == '{')
857 bracket_depth++;
858 else if (bracket_depth && *cp == '}')
859 bracket_depth--;
860 else if (!bracket_depth && *cp == ':')
861 break;
862 }
863 if (*cp == ':') {
Junio C Hamano73b0e5a2006-04-21 17:31:04 -0700864 unsigned char tree_sha1[20];
865 if (!get_sha1_1(name, cp-name, tree_sha1))
866 return get_tree_entry(tree_sha1, cp+1, sha1,
Martin Koeglera0cd87a2007-04-23 22:55:05 +0200867 mode);
Linus Torvalds51196022006-04-18 16:45:16 -0700868 }
869 return ret;
Junio C Hamano9938af62005-08-03 22:15:49 -0700870}