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 const unsigned char *found_sha1
= NULL
;
78 for (p
= packed_git
; p
&& found
< 2; p
= p
->next
) {
84 while (first
< last
) {
85 uint32_t mid
= (first
+ last
) / 2;
86 const unsigned char *now
;
89 now
= nth_packed_object_sha1(p
, mid
);
90 cmp
= hashcmp(match
, now
);
102 const unsigned char *now
, *next
;
103 now
= nth_packed_object_sha1(p
, first
);
104 if (match_sha(len
, match
, now
)) {
105 next
= nth_packed_object_sha1(p
, first
+1);
106 if (!next
|| !match_sha(len
, match
, next
)) {
107 /* unique within this pack */
112 else if (hashcmp(found_sha1
, now
)) {
118 /* not even unique within this pack */
126 hashcpy(sha1
, found_sha1
);
130 #define SHORT_NAME_NOT_FOUND (-1)
131 #define SHORT_NAME_AMBIGUOUS (-2)
133 static int find_unique_short_object(int len
, char *canonical
,
134 unsigned char *res
, unsigned char *sha1
)
136 int has_unpacked
, has_packed
;
137 unsigned char unpacked_sha1
[20], packed_sha1
[20];
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
)
143 return SHORT_NAME_NOT_FOUND
;
144 if (1 < has_unpacked
|| 1 < has_packed
)
145 return SHORT_NAME_AMBIGUOUS
;
146 if (has_unpacked
!= has_packed
) {
147 hashcpy(sha1
, (has_packed
? packed_sha1
: unpacked_sha1
));
150 /* Both have unique ones -- do they match? */
151 if (hashcmp(packed_sha1
, unpacked_sha1
))
152 return SHORT_NAME_AMBIGUOUS
;
153 hashcpy(sha1
, packed_sha1
);
157 static int get_short_sha1(const char *name
, int len
, unsigned char *sha1
,
162 unsigned char res
[20];
164 if (len
< MINIMUM_ABBREV
|| len
> 40)
167 memset(canonical
, 'x', 40);
168 for (i
= 0; i
< len
;i
++) {
169 unsigned char c
= name
[i
];
171 if (c
>= '0' && c
<= '9')
173 else if (c
>= 'a' && c
<= 'f')
175 else if (c
>= 'A' && c
<='F') {
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
);
193 const char *find_unique_abbrev(const unsigned char *sha1
, int len
)
198 is_null
= is_null_sha1(sha1
);
199 memcpy(hex
, sha1_to_hex(sha1
), 40);
200 if (len
== 40 || !len
)
203 unsigned char sha1_ret
[20];
204 status
= get_short_sha1(hex
, len
, sha1_ret
, 1);
206 (is_null
&& status
!= SHORT_NAME_AMBIGUOUS
)) {
210 if (status
!= SHORT_NAME_AMBIGUOUS
)
217 static int ambiguous_path(const char *path
, int len
)
222 for (cnt
= 0; cnt
< len
; cnt
++) {
242 static const char *ref_fmt
[] = {
248 "refs/remotes/%.*s/HEAD",
252 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
258 for (p
= ref_fmt
; *p
; p
++) {
259 unsigned char sha1_from_ref
[20];
260 unsigned char *this_result
;
262 this_result
= refs_found
? sha1_from_ref
: sha1
;
263 r
= resolve_ref(mkpath(*p
, len
, str
), this_result
, 1, NULL
);
267 if (!warn_ambiguous_refs
)
274 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
280 for (p
= ref_fmt
; *p
; p
++) {
282 unsigned char hash
[20];
284 const char *ref
, *it
;
286 strcpy(path
, mkpath(*p
, len
, str
));
287 ref
= resolve_ref(path
, hash
, 0, NULL
);
290 if (!stat(git_path("logs/%s", path
), &st
) &&
293 else if (strcmp(ref
, path
) &&
294 !stat(git_path("logs/%s", ref
), &st
) &&
303 if (!warn_ambiguous_refs
)
309 static int get_sha1_basic(const char *str
, int len
, unsigned char *sha1
)
311 static const char *warning
= "warning: refname '%.*s' is ambiguous.\n";
312 char *real_ref
= NULL
;
316 if (len
== 40 && !get_sha1_hex(str
, sha1
))
319 /* basic@{time or number} format to query ref-log */
321 if (str
[len
-1] == '}') {
322 for (at
= 0; at
< len
- 1; at
++) {
323 if (str
[at
] == '@' && str
[at
+1] == '{') {
324 reflog_len
= (len
-1) - (at
+2);
331 /* Accept only unambiguous ref paths. */
332 if (len
&& ambiguous_path(str
, len
))
335 if (!len
&& reflog_len
) {
336 /* allow "@{...}" to mean the current branch reflog */
337 refs_found
= dwim_ref("HEAD", 4, sha1
, &real_ref
);
338 } else if (reflog_len
)
339 refs_found
= dwim_log(str
, len
, sha1
, &real_ref
);
341 refs_found
= dwim_ref(str
, len
, sha1
, &real_ref
);
346 if (warn_ambiguous_refs
&& refs_found
> 1)
347 fprintf(stderr
, warning
, len
, str
);
351 unsigned long at_time
;
352 unsigned long co_time
;
355 /* Is it asking for N-th entry, or approxidate? */
356 for (i
= nth
= 0; 0 <= nth
&& i
< reflog_len
; i
++) {
357 char ch
= str
[at
+2+i
];
358 if ('0' <= ch
&& ch
<= '9')
359 nth
= nth
* 10 + ch
- '0';
366 at_time
= approxidate(str
+ at
+ 2);
367 if (read_ref_at(real_ref
, at_time
, nth
, sha1
, NULL
,
368 &co_time
, &co_tz
, &co_cnt
)) {
371 "warning: Log for '%.*s' only goes "
372 "back to %s.\n", len
, str
,
373 show_rfc2822_date(co_time
, co_tz
));
376 "warning: Log for '%.*s' only has "
377 "%d entries.\n", len
, str
, co_cnt
);
385 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
);
387 static int get_parent(const char *name
, int len
,
388 unsigned char *result
, int idx
)
390 unsigned char sha1
[20];
391 int ret
= get_sha1_1(name
, len
, sha1
);
392 struct commit
*commit
;
393 struct commit_list
*p
;
397 commit
= lookup_commit_reference(sha1
);
400 if (parse_commit(commit
))
403 hashcpy(result
, commit
->object
.sha1
);
409 hashcpy(result
, p
->item
->object
.sha1
);
417 static int get_nth_ancestor(const char *name
, int len
,
418 unsigned char *result
, int generation
)
420 unsigned char sha1
[20];
421 int ret
= get_sha1_1(name
, len
, sha1
);
425 while (generation
--) {
426 struct commit
*commit
= lookup_commit_reference(sha1
);
428 if (!commit
|| parse_commit(commit
) || !commit
->parents
)
430 hashcpy(sha1
, commit
->parents
->item
->object
.sha1
);
432 hashcpy(result
, sha1
);
436 static int peel_onion(const char *name
, int len
, unsigned char *sha1
)
438 unsigned char outer
[20];
440 unsigned int expected_type
= 0;
444 * "ref^{type}" dereferences ref repeatedly until you cannot
445 * dereference anymore, or you get an object of given type,
446 * whichever comes first. "ref^{}" means just dereference
447 * tags until you get a non-tag. "ref^0" is a shorthand for
448 * "ref^{commit}". "commit^{tree}" could be used to find the
449 * top-level tree of the given commit.
451 if (len
< 4 || name
[len
-1] != '}')
454 for (sp
= name
+ len
- 1; name
<= sp
; sp
--) {
456 if (ch
== '{' && name
< sp
&& sp
[-1] == '^')
462 sp
++; /* beginning of type name, or closing brace for empty */
463 if (!strncmp(commit_type
, sp
, 6) && sp
[6] == '}')
464 expected_type
= OBJ_COMMIT
;
465 else if (!strncmp(tree_type
, sp
, 4) && sp
[4] == '}')
466 expected_type
= OBJ_TREE
;
467 else if (!strncmp(blob_type
, sp
, 4) && sp
[4] == '}')
468 expected_type
= OBJ_BLOB
;
469 else if (sp
[0] == '}')
470 expected_type
= OBJ_NONE
;
474 if (get_sha1_1(name
, sp
- name
- 2, outer
))
477 o
= parse_object(outer
);
480 if (!expected_type
) {
481 o
= deref_tag(o
, name
, sp
- name
- 2);
482 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
484 hashcpy(sha1
, o
->sha1
);
487 /* At this point, the syntax look correct, so
488 * if we do not get the needed object, we should
493 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
495 if (o
->type
== expected_type
) {
496 hashcpy(sha1
, o
->sha1
);
499 if (o
->type
== OBJ_TAG
)
500 o
= ((struct tag
*) o
)->tagged
;
501 else if (o
->type
== OBJ_COMMIT
)
502 o
= &(((struct commit
*) o
)->tree
->object
);
504 return error("%.*s: expected %s type, but the object dereferences to %s type",
505 len
, name
, typename(expected_type
),
508 parse_object(o
->sha1
);
514 static int get_describe_name(const char *name
, int len
, unsigned char *sha1
)
518 for (cp
= name
+ len
- 1; name
+ 2 <= cp
; cp
--) {
520 if (hexval(ch
) & ~0377) {
521 /* We must be looking at g in "SOMETHING-g"
522 * for it to be describe output.
524 if (ch
== 'g' && cp
[-1] == '-') {
527 return get_short_sha1(cp
, len
, sha1
, 1);
534 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
)
539 /* "name~3" is "name^^^",
540 * "name~" and "name~0" are name -- not "name^0"!
541 * "name^" is not "name^0"; it is "name^1".
544 for (cp
= name
+ len
- 1; name
<= cp
; cp
--) {
546 if ('0' <= ch
&& ch
<= '9')
548 if (ch
== '~' || ch
== '^')
555 int len1
= cp
- name
;
557 while (cp
< name
+ len
)
558 num
= num
* 10 + *cp
++ - '0';
559 if (has_suffix
== '^') {
560 if (!num
&& len1
== len
- 1)
562 return get_parent(name
, len1
, sha1
, num
);
564 /* else if (has_suffix == '~') -- goes without saying */
565 return get_nth_ancestor(name
, len1
, sha1
, num
);
568 ret
= peel_onion(name
, len
, sha1
);
572 ret
= get_sha1_basic(name
, len
, sha1
);
576 /* It could be describe output that is "SOMETHING-gXXXX" */
577 ret
= get_describe_name(name
, len
, sha1
);
581 return get_short_sha1(name
, len
, sha1
, 0);
584 static int handle_one_ref(const char *path
,
585 const unsigned char *sha1
, int flag
, void *cb_data
)
587 struct commit_list
**list
= cb_data
;
588 struct object
*object
= parse_object(sha1
);
591 if (object
->type
== OBJ_TAG
)
592 object
= deref_tag(object
, path
, strlen(path
));
593 if (object
->type
!= OBJ_COMMIT
)
595 insert_by_date((struct commit
*)object
, list
);
600 * This interprets names like ':/Initial revision of "git"' by searching
601 * through history and returning the first commit whose message starts
602 * with the given string.
604 * For future extension, ':/!' is reserved. If you want to match a message
605 * beginning with a '!', you have to repeat the exclamation mark.
608 #define ONELINE_SEEN (1u<<20)
609 static int get_sha1_oneline(const char *prefix
, unsigned char *sha1
)
611 struct commit_list
*list
= NULL
, *backup
= NULL
, *l
;
614 if (prefix
[0] == '!') {
615 if (prefix
[1] != '!')
616 die ("Invalid search pattern: %s", prefix
);
619 if (!save_commit_buffer
)
620 return error("Could not expand oneline-name.");
621 for_each_ref(handle_one_ref
, &list
);
622 for (l
= list
; l
; l
= l
->next
)
623 commit_list_insert(l
->item
, &backup
);
626 struct commit
*commit
;
628 commit
= pop_most_recent_commit(&list
, ONELINE_SEEN
);
629 parse_object(commit
->object
.sha1
);
630 if (!commit
->buffer
|| !(p
= strstr(commit
->buffer
, "\n\n")))
632 if (!prefixcmp(p
+ 2, prefix
)) {
633 hashcpy(sha1
, commit
->object
.sha1
);
638 free_commit_list(list
);
639 for (l
= backup
; l
; l
= l
->next
)
640 clear_commit_marks(l
->item
, ONELINE_SEEN
);
645 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
646 * notably "xyz^" for "parent of xyz"
648 int get_sha1(const char *name
, unsigned char *sha1
)
651 return get_sha1_with_mode(name
, sha1
, &unused
);
654 int get_sha1_with_mode(const char *name
, unsigned char *sha1
, unsigned *mode
)
656 int ret
, bracket_depth
;
657 int namelen
= strlen(name
);
661 ret
= get_sha1_1(name
, namelen
, sha1
);
664 /* sha1:path --> object name of path in ent sha1
665 * :path -> object name of path in index
666 * :[0-3]:path -> object name of path in index at stage
668 if (name
[0] == ':') {
670 struct cache_entry
*ce
;
672 if (namelen
> 2 && name
[1] == '/')
673 return get_sha1_oneline(name
+ 2, sha1
);
676 name
[1] < '0' || '3' < name
[1])
679 stage
= name
[1] - '0';
682 namelen
= namelen
- (cp
- name
);
685 pos
= cache_name_pos(cp
, namelen
);
688 while (pos
< active_nr
) {
689 ce
= active_cache
[pos
];
690 if (ce_namelen(ce
) != namelen
||
691 memcmp(ce
->name
, cp
, namelen
))
693 if (ce_stage(ce
) == stage
) {
694 hashcpy(sha1
, ce
->sha1
);
695 *mode
= ntohl(ce
->ce_mode
);
702 for (cp
= name
, bracket_depth
= 0; *cp
; cp
++) {
705 else if (bracket_depth
&& *cp
== '}')
707 else if (!bracket_depth
&& *cp
== ':')
711 unsigned char tree_sha1
[20];
712 if (!get_sha1_1(name
, cp
-name
, tree_sha1
))
713 return get_tree_entry(tree_sha1
, cp
+1, sha1
,