9 static int find_short_object_filename(int len
, const char *name
, unsigned char *sha1
)
11 struct alternate_object_database
*alt
;
14 static struct alternate_object_database
*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] = '/';
25 fakeent
->next
= alt_odb_list
;
27 sprintf(hex
, "%.2s", name
);
28 for (alt
= fakeent
; alt
&& found
< 2; alt
= alt
->next
) {
31 sprintf(alt
->name
, "%.2s/", name
);
32 dir
= opendir(alt
->base
);
35 while ((de
= readdir(dir
)) != NULL
) {
36 if (strlen(de
->d_name
) != 38)
38 if (memcmp(de
->d_name
, name
+ 2, len
- 2))
41 memcpy(hex
+ 2, de
->d_name
, 38);
44 else if (memcmp(hex
+ 2, de
->d_name
, 38)) {
52 return get_sha1_hex(hex
, sha1
) == 0;
56 static int match_sha(unsigned len
, const unsigned char *a
, const unsigned char *b
)
71 static int find_short_packed_object(int len
, const unsigned char *match
, unsigned char *sha1
)
74 unsigned char found_sha1
[20];
78 for (p
= packed_git
; p
&& found
< 2; p
= p
->next
) {
79 unsigned num
= num_packed_objects(p
);
80 unsigned first
= 0, last
= num
;
81 while (first
< last
) {
82 unsigned mid
= (first
+ last
) / 2;
83 unsigned char now
[20];
86 nth_packed_object_sha1(p
, mid
, now
);
87 cmp
= memcmp(match
, now
, 20);
99 unsigned char now
[20], next
[20];
100 nth_packed_object_sha1(p
, first
, now
);
101 if (match_sha(len
, match
, now
)) {
102 if (nth_packed_object_sha1(p
, first
+1, next
) ||
103 !match_sha(len
, match
, next
)) {
104 /* unique within this pack */
106 memcpy(found_sha1
, now
, 20);
109 else if (memcmp(found_sha1
, now
, 20)) {
115 /* not even unique within this pack */
123 memcpy(sha1
, found_sha1
, 20);
127 #define SHORT_NAME_NOT_FOUND (-1)
128 #define SHORT_NAME_AMBIGUOUS (-2)
130 static int find_unique_short_object(int len
, char *canonical
,
131 unsigned char *res
, unsigned char *sha1
)
133 int has_unpacked
, has_packed
;
134 unsigned char unpacked_sha1
[20], packed_sha1
[20];
136 has_unpacked
= find_short_object_filename(len
, canonical
, unpacked_sha1
);
137 has_packed
= find_short_packed_object(len
, res
, packed_sha1
);
138 if (!has_unpacked
&& !has_packed
)
139 return SHORT_NAME_NOT_FOUND
;
140 if (1 < has_unpacked
|| 1 < has_packed
)
141 return SHORT_NAME_AMBIGUOUS
;
142 if (has_unpacked
!= has_packed
) {
143 memcpy(sha1
, (has_packed
? packed_sha1
: unpacked_sha1
), 20);
146 /* Both have unique ones -- do they match? */
147 if (memcmp(packed_sha1
, unpacked_sha1
, 20))
148 return SHORT_NAME_AMBIGUOUS
;
149 memcpy(sha1
, packed_sha1
, 20);
153 static int get_short_sha1(const char *name
, int len
, unsigned char *sha1
,
158 unsigned char res
[20];
160 if (len
< MINIMUM_ABBREV
)
163 memset(canonical
, 'x', 40);
164 for (i
= 0; i
< len
;i
++) {
165 unsigned char c
= name
[i
];
167 if (c
>= '0' && c
<= '9')
169 else if (c
>= 'a' && c
<= 'f')
171 else if (c
>= 'A' && c
<='F') {
183 status
= find_unique_short_object(i
, canonical
, res
, sha1
);
184 if (!quietly
&& (status
== SHORT_NAME_AMBIGUOUS
))
185 return error("short SHA1 %.*s is ambiguous.", len
, canonical
);
189 const char *find_unique_abbrev(const unsigned char *sha1
, int len
)
194 is_null
= !memcmp(sha1
, null_sha1
, 20);
195 memcpy(hex
, sha1_to_hex(sha1
), 40);
199 unsigned char sha1_ret
[20];
200 status
= get_short_sha1(hex
, len
, sha1_ret
, 1);
202 (is_null
&& status
!= SHORT_NAME_AMBIGUOUS
)) {
206 if (status
!= SHORT_NAME_AMBIGUOUS
)
213 static int ambiguous_path(const char *path
, int len
)
218 for (cnt
= 0; cnt
< len
; cnt
++) {
238 static int get_sha1_basic(const char *str
, int len
, unsigned char *sha1
)
240 static const char *fmt
[] = {
246 "refs/remotes/%.*s/HEAD",
249 static const char *warning
= "warning: refname '%.*s' is ambiguous.\n";
250 const char **p
, *pathname
;
251 char *real_path
= NULL
;
252 int refs_found
= 0, am
;
253 unsigned long at_time
= (unsigned long)-1;
254 unsigned char *this_result
;
255 unsigned char sha1_from_ref
[20];
257 if (len
== 40 && !get_sha1_hex(str
, sha1
))
260 /* At a given period of time? "@{2 hours ago}" */
261 for (am
= 1; am
< len
- 1; am
++) {
262 if (str
[am
] == '@' && str
[am
+1] == '{' && str
[len
-1] == '}') {
263 int date_len
= len
- am
- 3;
264 char *date_spec
= xmalloc(date_len
+ 1);
265 safe_strncpy(date_spec
, str
+ am
+ 2, date_len
+ 1);
266 at_time
= approxidate(date_spec
);
273 /* Accept only unambiguous ref paths. */
274 if (ambiguous_path(str
, len
))
277 for (p
= fmt
; *p
; p
++) {
278 this_result
= refs_found
? sha1_from_ref
: sha1
;
279 pathname
= resolve_ref(git_path(*p
, len
, str
), this_result
, 1);
282 real_path
= strdup(pathname
);
283 if (!warn_ambiguous_refs
)
291 if (warn_ambiguous_refs
&& refs_found
> 1)
292 fprintf(stderr
, warning
, len
, str
);
294 if (at_time
!= (unsigned long)-1) {
296 real_path
+ strlen(git_path(".")) - 1,
305 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
);
307 static int get_parent(const char *name
, int len
,
308 unsigned char *result
, int idx
)
310 unsigned char sha1
[20];
311 int ret
= get_sha1_1(name
, len
, sha1
);
312 struct commit
*commit
;
313 struct commit_list
*p
;
317 commit
= lookup_commit_reference(sha1
);
320 if (parse_commit(commit
))
323 memcpy(result
, commit
->object
.sha1
, 20);
329 memcpy(result
, p
->item
->object
.sha1
, 20);
337 static int get_nth_ancestor(const char *name
, int len
,
338 unsigned char *result
, int generation
)
340 unsigned char sha1
[20];
341 int ret
= get_sha1_1(name
, len
, sha1
);
345 while (generation
--) {
346 struct commit
*commit
= lookup_commit_reference(sha1
);
348 if (!commit
|| parse_commit(commit
) || !commit
->parents
)
350 memcpy(sha1
, commit
->parents
->item
->object
.sha1
, 20);
352 memcpy(result
, sha1
, 20);
356 static int peel_onion(const char *name
, int len
, unsigned char *sha1
)
358 unsigned char outer
[20];
360 unsigned int expected_type
= 0;
364 * "ref^{type}" dereferences ref repeatedly until you cannot
365 * dereference anymore, or you get an object of given type,
366 * whichever comes first. "ref^{}" means just dereference
367 * tags until you get a non-tag. "ref^0" is a shorthand for
368 * "ref^{commit}". "commit^{tree}" could be used to find the
369 * top-level tree of the given commit.
371 if (len
< 4 || name
[len
-1] != '}')
374 for (sp
= name
+ len
- 1; name
<= sp
; sp
--) {
376 if (ch
== '{' && name
< sp
&& sp
[-1] == '^')
382 sp
++; /* beginning of type name, or closing brace for empty */
383 if (!strncmp(commit_type
, sp
, 6) && sp
[6] == '}')
384 expected_type
= TYPE_COMMIT
;
385 else if (!strncmp(tree_type
, sp
, 4) && sp
[4] == '}')
386 expected_type
= TYPE_TREE
;
387 else if (!strncmp(blob_type
, sp
, 4) && sp
[4] == '}')
388 expected_type
= TYPE_BLOB
;
389 else if (sp
[0] == '}')
390 expected_type
= TYPE_NONE
;
394 if (get_sha1_1(name
, sp
- name
- 2, outer
))
397 o
= parse_object(outer
);
400 if (!expected_type
) {
401 o
= deref_tag(o
, name
, sp
- name
- 2);
402 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
404 memcpy(sha1
, o
->sha1
, 20);
407 /* At this point, the syntax look correct, so
408 * if we do not get the needed object, we should
413 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
415 if (o
->type
== expected_type
) {
416 memcpy(sha1
, o
->sha1
, 20);
419 if (o
->type
== TYPE_TAG
)
420 o
= ((struct tag
*) o
)->tagged
;
421 else if (o
->type
== TYPE_COMMIT
)
422 o
= &(((struct commit
*) o
)->tree
->object
);
424 return error("%.*s: expected %s type, but the object dereferences to %s type",
425 len
, name
, typename(expected_type
),
428 parse_object(o
->sha1
);
434 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
)
439 /* "name~3" is "name^^^",
440 * "name~" and "name~0" are name -- not "name^0"!
441 * "name^" is not "name^0"; it is "name^1".
444 for (cp
= name
+ len
- 1; name
<= cp
; cp
--) {
446 if ('0' <= ch
&& ch
<= '9')
448 if (ch
== '~' || ch
== '^')
455 int len1
= cp
- name
;
457 while (cp
< name
+ len
)
458 num
= num
* 10 + *cp
++ - '0';
459 if (has_suffix
== '^') {
460 if (!num
&& len1
== len
- 1)
462 return get_parent(name
, len1
, sha1
, num
);
464 /* else if (has_suffix == '~') -- goes without saying */
465 return get_nth_ancestor(name
, len1
, sha1
, num
);
468 ret
= peel_onion(name
, len
, sha1
);
472 ret
= get_sha1_basic(name
, len
, sha1
);
475 return get_short_sha1(name
, len
, sha1
, 0);
479 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
480 * notably "xyz^" for "parent of xyz"
482 int get_sha1(const char *name
, unsigned char *sha1
)
484 int ret
, bracket_depth
;
486 int namelen
= strlen(name
);
490 ret
= get_sha1_1(name
, namelen
, sha1
);
493 /* sha1:path --> object name of path in ent sha1
494 * :path -> object name of path in index
495 * :[0-3]:path -> object name of path in index at stage
497 if (name
[0] == ':') {
499 struct cache_entry
*ce
;
503 name
[1] < '0' || '3' < name
[1])
506 stage
= name
[1] - '0';
509 namelen
= namelen
- (cp
- name
);
514 pos
= cache_name_pos(cp
, namelen
);
517 while (pos
< active_nr
) {
518 ce
= active_cache
[pos
];
519 if (ce_namelen(ce
) != namelen
||
520 memcmp(ce
->name
, cp
, namelen
))
522 if (ce_stage(ce
) == stage
) {
523 memcpy(sha1
, ce
->sha1
, 20);
530 for (cp
= name
, bracket_depth
= 0; *cp
; cp
++) {
533 else if (bracket_depth
&& *cp
== '}')
535 else if (!bracket_depth
&& *cp
== ':')
539 unsigned char tree_sha1
[20];
540 if (!get_sha1_1(name
, cp
-name
, tree_sha1
))
541 return get_tree_entry(tree_sha1
, cp
+1, sha1
,