Merge branch 'jc/name' into next
[git/dscho.git] / sha1_name.c
blob3adaec3167d19fd9e3f2c3f6c06530583428c3c6
1 #include "cache.h"
2 #include "tag.h"
3 #include "commit.h"
4 #include "tree.h"
5 #include "blob.h"
7 static int find_short_object_filename(int len, const char *name, unsigned char *sha1)
9 struct alternate_object_database *alt;
10 char hex[40];
11 int found = 0;
12 static struct alternate_object_database *fakeent;
14 if (!fakeent) {
15 const char *objdir = get_object_directory();
16 int objdir_len = strlen(objdir);
17 int entlen = objdir_len + 43;
18 fakeent = xmalloc(sizeof(*fakeent) + entlen);
19 memcpy(fakeent->base, objdir, objdir_len);
20 fakeent->name = fakeent->base + objdir_len + 1;
21 fakeent->name[-1] = '/';
23 fakeent->next = alt_odb_list;
25 sprintf(hex, "%.2s", name);
26 for (alt = fakeent; alt && found < 2; alt = alt->next) {
27 struct dirent *de;
28 DIR *dir;
29 sprintf(alt->name, "%.2s/", name);
30 dir = opendir(alt->base);
31 if (!dir)
32 continue;
33 while ((de = readdir(dir)) != NULL) {
34 if (strlen(de->d_name) != 38)
35 continue;
36 if (memcmp(de->d_name, name + 2, len - 2))
37 continue;
38 if (!found) {
39 memcpy(hex + 2, de->d_name, 38);
40 found++;
42 else if (memcmp(hex + 2, de->d_name, 38)) {
43 found = 2;
44 break;
47 closedir(dir);
49 if (found == 1)
50 return get_sha1_hex(hex, sha1) == 0;
51 return found;
54 static int match_sha(unsigned len, const unsigned char *a, const unsigned char *b)
56 do {
57 if (*a != *b)
58 return 0;
59 a++;
60 b++;
61 len -= 2;
62 } while (len > 1);
63 if (len)
64 if ((*a ^ *b) & 0xf0)
65 return 0;
66 return 1;
69 static int find_short_packed_object(int len, const unsigned char *match, unsigned char *sha1)
71 struct packed_git *p;
72 unsigned char found_sha1[20];
73 int found = 0;
75 prepare_packed_git();
76 for (p = packed_git; p && found < 2; p = p->next) {
77 unsigned num = num_packed_objects(p);
78 unsigned first = 0, last = num;
79 while (first < last) {
80 unsigned mid = (first + last) / 2;
81 unsigned char now[20];
82 int cmp;
84 nth_packed_object_sha1(p, mid, now);
85 cmp = memcmp(match, now, 20);
86 if (!cmp) {
87 first = mid;
88 break;
90 if (cmp > 0) {
91 first = mid+1;
92 continue;
94 last = mid;
96 if (first < num) {
97 unsigned char now[20], next[20];
98 nth_packed_object_sha1(p, first, now);
99 if (match_sha(len, match, now)) {
100 if (nth_packed_object_sha1(p, first+1, next) ||
101 !match_sha(len, match, next)) {
102 /* unique within this pack */
103 if (!found) {
104 memcpy(found_sha1, now, 20);
105 found++;
107 else if (memcmp(found_sha1, now, 20)) {
108 found = 2;
109 break;
112 else {
113 /* not even unique within this pack */
114 found = 2;
115 break;
120 if (found == 1)
121 memcpy(sha1, found_sha1, 20);
122 return found;
125 #define SHORT_NAME_NOT_FOUND (-1)
126 #define SHORT_NAME_AMBIGUOUS (-2)
128 static int find_unique_short_object(int len, char *canonical,
129 unsigned char *res, unsigned char *sha1)
131 int has_unpacked, has_packed;
132 unsigned char unpacked_sha1[20], packed_sha1[20];
134 has_unpacked = find_short_object_filename(len, canonical, unpacked_sha1);
135 has_packed = find_short_packed_object(len, res, packed_sha1);
136 if (!has_unpacked && !has_packed)
137 return SHORT_NAME_NOT_FOUND;
138 if (1 < has_unpacked || 1 < has_packed)
139 return SHORT_NAME_AMBIGUOUS;
140 if (has_unpacked != has_packed) {
141 memcpy(sha1, (has_packed ? packed_sha1 : unpacked_sha1), 20);
142 return 0;
144 /* Both have unique ones -- do they match? */
145 if (memcmp(packed_sha1, unpacked_sha1, 20))
146 return SHORT_NAME_AMBIGUOUS;
147 memcpy(sha1, packed_sha1, 20);
148 return 0;
151 static int get_short_sha1(const char *name, int len, unsigned char *sha1,
152 int quietly)
154 int i, status;
155 char canonical[40];
156 unsigned char res[20];
158 if (len < MINIMUM_ABBREV)
159 return -1;
160 memset(res, 0, 20);
161 memset(canonical, 'x', 40);
162 for (i = 0; i < len ;i++) {
163 unsigned char c = name[i];
164 unsigned char val;
165 if (c >= '0' && c <= '9')
166 val = c - '0';
167 else if (c >= 'a' && c <= 'f')
168 val = c - 'a' + 10;
169 else if (c >= 'A' && c <='F') {
170 val = c - 'A' + 10;
171 c -= 'A' - 'a';
173 else
174 return -1;
175 canonical[i] = c;
176 if (!(i & 1))
177 val <<= 4;
178 res[i >> 1] |= val;
181 status = find_unique_short_object(i, canonical, res, sha1);
182 if (!quietly && (status == SHORT_NAME_AMBIGUOUS))
183 return error("short SHA1 %.*s is ambiguous.", len, canonical);
184 return status;
187 const char *find_unique_abbrev(const unsigned char *sha1, int len)
189 int status, is_null;
190 static char hex[41];
192 is_null = !memcmp(sha1, null_sha1, 20);
193 memcpy(hex, sha1_to_hex(sha1), 40);
194 if (len == 40)
195 return hex;
196 while (len < 40) {
197 unsigned char sha1_ret[20];
198 status = get_short_sha1(hex, len, sha1_ret, 1);
199 if (!status ||
200 (is_null && status != SHORT_NAME_AMBIGUOUS)) {
201 hex[len] = 0;
202 return hex;
204 if (status != SHORT_NAME_AMBIGUOUS)
205 return NULL;
206 len++;
208 return NULL;
211 static int ambiguous_path(const char *path, int len)
213 int slash = 1;
214 int cnt;
216 for (cnt = 0; cnt < len; cnt++) {
217 switch (*path++) {
218 case '\0':
219 break;
220 case '/':
221 if (slash)
222 break;
223 slash = 1;
224 continue;
225 case '.':
226 continue;
227 default:
228 slash = 0;
229 continue;
231 break;
233 return slash;
236 static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
238 static const char *fmt[] = {
239 "/%.*s",
240 "refs/%.*s",
241 "refs/tags/%.*s",
242 "refs/heads/%.*s",
243 "refs/remotes/%.*s",
244 "refs/remotes/%.*s/HEAD",
245 NULL
247 const char **p;
248 const char *warning = "warning: refname '%.*s' is ambiguous.\n";
249 char *pathname;
250 int already_found = 0;
251 unsigned char *this_result;
252 unsigned char sha1_from_ref[20];
254 if (len == 40 && !get_sha1_hex(str, sha1))
255 return 0;
257 /* Accept only unambiguous ref paths. */
258 if (ambiguous_path(str, len))
259 return -1;
261 for (p = fmt; *p; p++) {
262 this_result = already_found ? sha1_from_ref : sha1;
263 pathname = git_path(*p, len, str);
264 if (!read_ref(pathname, this_result)) {
265 if (warn_ambiguous_refs) {
266 if (already_found &&
267 !memcmp(sha1, sha1_from_ref, 20))
268 fprintf(stderr, warning, len, str);
269 already_found++;
271 else
272 return 0;
275 if (already_found)
276 return 0;
277 return -1;
280 static int get_sha1_1(const char *name, int len, unsigned char *sha1);
282 static int get_parent(const char *name, int len,
283 unsigned char *result, int idx)
285 unsigned char sha1[20];
286 int ret = get_sha1_1(name, len, sha1);
287 struct commit *commit;
288 struct commit_list *p;
290 if (ret)
291 return ret;
292 commit = lookup_commit_reference(sha1);
293 if (!commit)
294 return -1;
295 if (parse_commit(commit))
296 return -1;
297 if (!idx) {
298 memcpy(result, commit->object.sha1, 20);
299 return 0;
301 p = commit->parents;
302 while (p) {
303 if (!--idx) {
304 memcpy(result, p->item->object.sha1, 20);
305 return 0;
307 p = p->next;
309 return -1;
312 static int get_nth_ancestor(const char *name, int len,
313 unsigned char *result, int generation)
315 unsigned char sha1[20];
316 int ret = get_sha1_1(name, len, sha1);
317 if (ret)
318 return ret;
320 while (generation--) {
321 struct commit *commit = lookup_commit_reference(sha1);
323 if (!commit || parse_commit(commit) || !commit->parents)
324 return -1;
325 memcpy(sha1, commit->parents->item->object.sha1, 20);
327 memcpy(result, sha1, 20);
328 return 0;
331 static int peel_onion(const char *name, int len, unsigned char *sha1)
333 unsigned char outer[20];
334 const char *sp;
335 const char *type_string = NULL;
336 struct object *o;
339 * "ref^{type}" dereferences ref repeatedly until you cannot
340 * dereference anymore, or you get an object of given type,
341 * whichever comes first. "ref^{}" means just dereference
342 * tags until you get a non-tag. "ref^0" is a shorthand for
343 * "ref^{commit}". "commit^{tree}" could be used to find the
344 * top-level tree of the given commit.
346 if (len < 4 || name[len-1] != '}')
347 return -1;
349 for (sp = name + len - 1; name <= sp; sp--) {
350 int ch = *sp;
351 if (ch == '{' && name < sp && sp[-1] == '^')
352 break;
354 if (sp <= name)
355 return -1;
357 sp++; /* beginning of type name, or closing brace for empty */
358 if (!strncmp(commit_type, sp, 6) && sp[6] == '}')
359 type_string = commit_type;
360 else if (!strncmp(tree_type, sp, 4) && sp[4] == '}')
361 type_string = tree_type;
362 else if (!strncmp(blob_type, sp, 4) && sp[4] == '}')
363 type_string = blob_type;
364 else if (sp[0] == '}')
365 type_string = NULL;
366 else
367 return -1;
369 if (get_sha1_1(name, sp - name - 2, outer))
370 return -1;
372 o = parse_object(outer);
373 if (!o)
374 return -1;
375 if (!type_string) {
376 o = deref_tag(o, name, sp - name - 2);
377 if (!o || (!o->parsed && !parse_object(o->sha1)))
378 return -1;
379 memcpy(sha1, o->sha1, 20);
381 else {
382 /* At this point, the syntax look correct, so
383 * if we do not get the needed object, we should
384 * barf.
387 while (1) {
388 if (!o || (!o->parsed && !parse_object(o->sha1)))
389 return -1;
390 if (o->type == type_string) {
391 memcpy(sha1, o->sha1, 20);
392 return 0;
394 if (o->type == tag_type)
395 o = ((struct tag*) o)->tagged;
396 else if (o->type == commit_type)
397 o = &(((struct commit *) o)->tree->object);
398 else
399 return error("%.*s: expected %s type, but the object dereferences to %s type",
400 len, name, type_string,
401 o->type);
402 if (!o->parsed)
403 parse_object(o->sha1);
406 return 0;
409 static int get_sha1_1(const char *name, int len, unsigned char *sha1)
411 int ret, has_suffix;
412 const char *cp;
414 /* "name~3" is "name^^^",
415 * "name~" and "name~0" are name -- not "name^0"!
416 * "name^" is not "name^0"; it is "name^1".
418 has_suffix = 0;
419 for (cp = name + len - 1; name <= cp; cp--) {
420 int ch = *cp;
421 if ('0' <= ch && ch <= '9')
422 continue;
423 if (ch == '~' || ch == '^')
424 has_suffix = ch;
425 break;
428 if (has_suffix) {
429 int num = 0;
430 int len1 = cp - name;
431 cp++;
432 while (cp < name + len)
433 num = num * 10 + *cp++ - '0';
434 if (has_suffix == '^') {
435 if (!num && len1 == len - 1)
436 num = 1;
437 return get_parent(name, len1, sha1, num);
439 /* else if (has_suffix == '~') -- goes without saying */
440 return get_nth_ancestor(name, len1, sha1, num);
443 ret = peel_onion(name, len, sha1);
444 if (!ret)
445 return 0;
447 ret = get_sha1_basic(name, len, sha1);
448 if (!ret)
449 return 0;
450 return get_short_sha1(name, len, sha1, 0);
454 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
455 * notably "xyz^" for "parent of xyz"
457 int get_sha1(const char *name, unsigned char *sha1)
459 prepare_alt_odb();
460 return get_sha1_1(name, strlen(name), sha1);