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
= hashcmp(match
, now
);
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 hashcpy(found_sha1
, now
);
109 else if (hashcmp(found_sha1
, now
)) {
115 /* not even unique within this pack */
123 hashcpy(sha1
, found_sha1
);
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 hashcpy(sha1
, (has_packed
? packed_sha1
: unpacked_sha1
));
146 /* Both have unique ones -- do they match? */
147 if (hashcmp(packed_sha1
, unpacked_sha1
))
148 return SHORT_NAME_AMBIGUOUS
;
149 hashcpy(sha1
, packed_sha1
);
153 static int get_short_sha1(const char *name
, int len
, unsigned char *sha1
,
158 unsigned char res
[20];
160 if (len
< MINIMUM_ABBREV
|| len
> 40)
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
= is_null_sha1(sha1
);
195 memcpy(hex
, sha1_to_hex(sha1
), 40);
196 if (len
== 40 || !len
)
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 const char *ref_fmt
[] = {
244 "refs/remotes/%.*s/HEAD",
248 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
254 for (p
= ref_fmt
; *p
; p
++) {
255 unsigned char sha1_from_ref
[20];
256 unsigned char *this_result
;
258 this_result
= refs_found
? sha1_from_ref
: sha1
;
259 r
= resolve_ref(mkpath(*p
, len
, str
), this_result
, 1, NULL
);
263 if (!warn_ambiguous_refs
)
270 static int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
276 for (p
= ref_fmt
; *p
; p
++) {
278 char *path
= mkpath(*p
, len
, str
);
279 if (!stat(git_path("logs/%s", path
), &st
) &&
280 S_ISREG(st
.st_mode
)) {
282 *log
= xstrdup(path
);
283 resolve_ref(path
, sha1
, 0, NULL
);
285 if (!warn_ambiguous_refs
)
292 static int get_sha1_basic(const char *str
, int len
, unsigned char *sha1
)
294 static const char *warning
= "warning: refname '%.*s' is ambiguous.\n";
295 char *real_ref
= NULL
;
299 if (len
== 40 && !get_sha1_hex(str
, sha1
))
302 /* basic@{time or number} format to query ref-log */
304 if (str
[len
-1] == '}') {
305 for (at
= 0; at
< len
- 1; at
++) {
306 if (str
[at
] == '@' && str
[at
+1] == '{') {
307 reflog_len
= (len
-1) - (at
+2);
314 /* Accept only unambiguous ref paths. */
315 if (len
&& ambiguous_path(str
, len
))
318 if (!len
&& reflog_len
) {
319 /* allow "@{...}" to mean the current branch reflog */
320 refs_found
= dwim_ref("HEAD", 4, sha1
, &real_ref
);
321 } else if (reflog_len
)
322 refs_found
= dwim_log(str
, len
, sha1
, &real_ref
);
324 refs_found
= dwim_ref(str
, len
, sha1
, &real_ref
);
329 if (warn_ambiguous_refs
&& refs_found
> 1)
330 fprintf(stderr
, warning
, len
, str
);
334 unsigned long at_time
;
335 unsigned long co_time
;
338 /* Is it asking for N-th entry, or approxidate? */
339 for (i
= nth
= 0; 0 <= nth
&& i
< reflog_len
; i
++) {
340 char ch
= str
[at
+2+i
];
341 if ('0' <= ch
&& ch
<= '9')
342 nth
= nth
* 10 + ch
- '0';
349 at_time
= approxidate(str
+ at
+ 2);
350 if (read_ref_at(real_ref
, at_time
, nth
, sha1
, NULL
,
351 &co_time
, &co_tz
, &co_cnt
)) {
354 "warning: Log for '%.*s' only goes "
355 "back to %s.\n", len
, str
,
356 show_rfc2822_date(co_time
, co_tz
));
359 "warning: Log for '%.*s' only has "
360 "%d entries.\n", len
, str
, co_cnt
);
368 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
);
370 static int get_parent(const char *name
, int len
,
371 unsigned char *result
, int idx
)
373 unsigned char sha1
[20];
374 int ret
= get_sha1_1(name
, len
, sha1
);
375 struct commit
*commit
;
376 struct commit_list
*p
;
380 commit
= lookup_commit_reference(sha1
);
383 if (parse_commit(commit
))
386 hashcpy(result
, commit
->object
.sha1
);
392 hashcpy(result
, p
->item
->object
.sha1
);
400 static int get_nth_ancestor(const char *name
, int len
,
401 unsigned char *result
, int generation
)
403 unsigned char sha1
[20];
404 int ret
= get_sha1_1(name
, len
, sha1
);
408 while (generation
--) {
409 struct commit
*commit
= lookup_commit_reference(sha1
);
411 if (!commit
|| parse_commit(commit
) || !commit
->parents
)
413 hashcpy(sha1
, commit
->parents
->item
->object
.sha1
);
415 hashcpy(result
, sha1
);
419 static int peel_onion(const char *name
, int len
, unsigned char *sha1
)
421 unsigned char outer
[20];
423 unsigned int expected_type
= 0;
427 * "ref^{type}" dereferences ref repeatedly until you cannot
428 * dereference anymore, or you get an object of given type,
429 * whichever comes first. "ref^{}" means just dereference
430 * tags until you get a non-tag. "ref^0" is a shorthand for
431 * "ref^{commit}". "commit^{tree}" could be used to find the
432 * top-level tree of the given commit.
434 if (len
< 4 || name
[len
-1] != '}')
437 for (sp
= name
+ len
- 1; name
<= sp
; sp
--) {
439 if (ch
== '{' && name
< sp
&& sp
[-1] == '^')
445 sp
++; /* beginning of type name, or closing brace for empty */
446 if (!strncmp(commit_type
, sp
, 6) && sp
[6] == '}')
447 expected_type
= OBJ_COMMIT
;
448 else if (!strncmp(tree_type
, sp
, 4) && sp
[4] == '}')
449 expected_type
= OBJ_TREE
;
450 else if (!strncmp(blob_type
, sp
, 4) && sp
[4] == '}')
451 expected_type
= OBJ_BLOB
;
452 else if (sp
[0] == '}')
453 expected_type
= OBJ_NONE
;
457 if (get_sha1_1(name
, sp
- name
- 2, outer
))
460 o
= parse_object(outer
);
463 if (!expected_type
) {
464 o
= deref_tag(o
, name
, sp
- name
- 2);
465 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
467 hashcpy(sha1
, o
->sha1
);
470 /* At this point, the syntax look correct, so
471 * if we do not get the needed object, we should
476 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
478 if (o
->type
== expected_type
) {
479 hashcpy(sha1
, o
->sha1
);
482 if (o
->type
== OBJ_TAG
)
483 o
= ((struct tag
*) o
)->tagged
;
484 else if (o
->type
== OBJ_COMMIT
)
485 o
= &(((struct commit
*) o
)->tree
->object
);
487 return error("%.*s: expected %s type, but the object dereferences to %s type",
488 len
, name
, typename(expected_type
),
491 parse_object(o
->sha1
);
497 static int get_describe_name(const char *name
, int len
, unsigned char *sha1
)
501 for (cp
= name
+ len
- 1; name
+ 2 <= cp
; cp
--) {
503 if (hexval(ch
) & ~0377) {
504 /* We must be looking at g in "SOMETHING-g"
505 * for it to be describe output.
507 if (ch
== 'g' && cp
[-1] == '-') {
510 return get_short_sha1(cp
, len
, sha1
, 1);
517 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
)
522 /* "name~3" is "name^^^",
523 * "name~" and "name~0" are name -- not "name^0"!
524 * "name^" is not "name^0"; it is "name^1".
527 for (cp
= name
+ len
- 1; name
<= cp
; cp
--) {
529 if ('0' <= ch
&& ch
<= '9')
531 if (ch
== '~' || ch
== '^')
538 int len1
= cp
- name
;
540 while (cp
< name
+ len
)
541 num
= num
* 10 + *cp
++ - '0';
542 if (has_suffix
== '^') {
543 if (!num
&& len1
== len
- 1)
545 return get_parent(name
, len1
, sha1
, num
);
547 /* else if (has_suffix == '~') -- goes without saying */
548 return get_nth_ancestor(name
, len1
, sha1
, num
);
551 ret
= peel_onion(name
, len
, sha1
);
555 ret
= get_sha1_basic(name
, len
, sha1
);
559 /* It could be describe output that is "SOMETHING-gXXXX" */
560 ret
= get_describe_name(name
, len
, sha1
);
564 return get_short_sha1(name
, len
, sha1
, 0);
568 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
569 * notably "xyz^" for "parent of xyz"
571 int get_sha1(const char *name
, unsigned char *sha1
)
573 int ret
, bracket_depth
;
575 int namelen
= strlen(name
);
579 ret
= get_sha1_1(name
, namelen
, sha1
);
582 /* sha1:path --> object name of path in ent sha1
583 * :path -> object name of path in index
584 * :[0-3]:path -> object name of path in index at stage
586 if (name
[0] == ':') {
588 struct cache_entry
*ce
;
592 name
[1] < '0' || '3' < name
[1])
595 stage
= name
[1] - '0';
598 namelen
= namelen
- (cp
- name
);
603 pos
= cache_name_pos(cp
, namelen
);
606 while (pos
< active_nr
) {
607 ce
= active_cache
[pos
];
608 if (ce_namelen(ce
) != namelen
||
609 memcmp(ce
->name
, cp
, namelen
))
611 if (ce_stage(ce
) == stage
) {
612 hashcpy(sha1
, ce
->sha1
);
619 for (cp
= name
, bracket_depth
= 0; *cp
; cp
++) {
622 else if (bracket_depth
&& *cp
== '}')
624 else if (!bracket_depth
&& *cp
== ':')
628 unsigned char tree_sha1
[20];
629 if (!get_sha1_1(name
, cp
-name
, tree_sha1
))
630 return get_tree_entry(tree_sha1
, cp
+1, sha1
,