10 static int find_short_object_filename(int len
, const char *name
, unsigned char *sha1
)
12 struct alternate_object_database
*alt
;
15 static struct alternate_object_database
*fakeent
;
18 const char *objdir
= get_object_directory();
19 int objdir_len
= strlen(objdir
);
20 int entlen
= objdir_len
+ 43;
21 fakeent
= xmalloc(sizeof(*fakeent
) + entlen
);
22 memcpy(fakeent
->base
, objdir
, objdir_len
);
23 fakeent
->name
= fakeent
->base
+ objdir_len
+ 1;
24 fakeent
->name
[-1] = '/';
26 fakeent
->next
= alt_odb_list
;
28 sprintf(hex
, "%.2s", name
);
29 for (alt
= fakeent
; alt
&& found
< 2; alt
= alt
->next
) {
32 sprintf(alt
->name
, "%.2s/", name
);
33 dir
= opendir(alt
->base
);
36 while ((de
= readdir(dir
)) != NULL
) {
37 if (strlen(de
->d_name
) != 38)
39 if (memcmp(de
->d_name
, name
+ 2, len
- 2))
42 memcpy(hex
+ 2, de
->d_name
, 38);
45 else if (memcmp(hex
+ 2, de
->d_name
, 38)) {
53 return get_sha1_hex(hex
, sha1
) == 0;
57 static int match_sha(unsigned len
, const unsigned char *a
, const unsigned char *b
)
72 static int find_short_packed_object(int len
, const unsigned char *match
, unsigned char *sha1
)
75 const unsigned char *found_sha1
= NULL
;
79 for (p
= packed_git
; p
&& found
< 2; p
= p
->next
) {
85 while (first
< last
) {
86 uint32_t mid
= (first
+ last
) / 2;
87 const unsigned char *now
;
90 now
= nth_packed_object_sha1(p
, mid
);
91 cmp
= hashcmp(match
, now
);
103 const unsigned char *now
, *next
;
104 now
= nth_packed_object_sha1(p
, first
);
105 if (match_sha(len
, match
, now
)) {
106 next
= nth_packed_object_sha1(p
, first
+1);
107 if (!next
|| !match_sha(len
, match
, next
)) {
108 /* unique within this pack */
113 else if (hashcmp(found_sha1
, now
)) {
119 /* not even unique within this pack */
127 hashcpy(sha1
, found_sha1
);
131 #define SHORT_NAME_NOT_FOUND (-1)
132 #define SHORT_NAME_AMBIGUOUS (-2)
134 static int find_unique_short_object(int len
, char *canonical
,
135 unsigned char *res
, unsigned char *sha1
)
137 int has_unpacked
, has_packed
;
138 unsigned char unpacked_sha1
[20], packed_sha1
[20];
141 has_unpacked
= find_short_object_filename(len
, canonical
, unpacked_sha1
);
142 has_packed
= find_short_packed_object(len
, res
, packed_sha1
);
143 if (!has_unpacked
&& !has_packed
)
144 return SHORT_NAME_NOT_FOUND
;
145 if (1 < has_unpacked
|| 1 < has_packed
)
146 return SHORT_NAME_AMBIGUOUS
;
147 if (has_unpacked
!= has_packed
) {
148 hashcpy(sha1
, (has_packed
? packed_sha1
: unpacked_sha1
));
151 /* Both have unique ones -- do they match? */
152 if (hashcmp(packed_sha1
, unpacked_sha1
))
153 return SHORT_NAME_AMBIGUOUS
;
154 hashcpy(sha1
, packed_sha1
);
158 static int get_short_sha1(const char *name
, int len
, unsigned char *sha1
,
163 unsigned char res
[20];
165 if (len
< MINIMUM_ABBREV
|| len
> 40)
168 memset(canonical
, 'x', 40);
169 for (i
= 0; i
< len
;i
++) {
170 unsigned char c
= name
[i
];
172 if (c
>= '0' && c
<= '9')
174 else if (c
>= 'a' && c
<= 'f')
176 else if (c
>= 'A' && c
<='F') {
188 status
= find_unique_short_object(i
, canonical
, res
, sha1
);
189 if (!quietly
&& (status
== SHORT_NAME_AMBIGUOUS
))
190 return error("short SHA1 %.*s is ambiguous.", len
, canonical
);
194 const char *find_unique_abbrev(const unsigned char *sha1
, int len
)
199 exists
= has_sha1_file(sha1
);
200 memcpy(hex
, sha1_to_hex(sha1
), 40);
201 if (len
== 40 || !len
)
204 unsigned char sha1_ret
[20];
205 status
= get_short_sha1(hex
, len
, sha1_ret
, 1);
208 : status
== SHORT_NAME_NOT_FOUND
) {
217 static int ambiguous_path(const char *path
, int len
)
222 for (cnt
= 0; cnt
< len
; cnt
++) {
243 * *string and *len will only be substituted, and *string returned (for
244 * later free()ing) if the string passed in is a magic short-hand form
247 static char *substitute_branch_name(const char **string
, int *len
)
249 struct strbuf buf
= STRBUF_INIT
;
250 int ret
= interpret_branch_name(*string
, &buf
);
254 *string
= strbuf_detach(&buf
, &size
);
256 return (char *)*string
;
262 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
264 char *last_branch
= substitute_branch_name(&str
, &len
);
269 for (p
= ref_rev_parse_rules
; *p
; p
++) {
270 char fullref
[PATH_MAX
];
271 unsigned char sha1_from_ref
[20];
272 unsigned char *this_result
;
275 this_result
= refs_found
? sha1_from_ref
: sha1
;
276 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
277 r
= resolve_ref(fullref
, this_result
, 1, &flag
);
281 if (!warn_ambiguous_refs
)
283 } else if ((flag
& REF_ISSYMREF
) &&
284 (len
!= 4 || strcmp(str
, "HEAD")))
285 warning("ignoring dangling symref %s.", fullref
);
291 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
293 char *last_branch
= substitute_branch_name(&str
, &len
);
298 for (p
= ref_rev_parse_rules
; *p
; p
++) {
300 unsigned char hash
[20];
302 const char *ref
, *it
;
304 mksnpath(path
, sizeof(path
), *p
, len
, str
);
305 ref
= resolve_ref(path
, hash
, 1, NULL
);
308 if (!stat(git_path("logs/%s", path
), &st
) &&
311 else if (strcmp(ref
, path
) &&
312 !stat(git_path("logs/%s", ref
), &st
) &&
321 if (!warn_ambiguous_refs
)
328 static inline int upstream_mark(const char *string
, int len
)
330 const char *suffix
[] = { "@{upstream}", "@{u}" };
333 for (i
= 0; i
< ARRAY_SIZE(suffix
); i
++) {
334 int suffix_len
= strlen(suffix
[i
]);
335 if (suffix_len
<= len
336 && !memcmp(string
, suffix
[i
], suffix_len
))
342 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
);
344 static int get_sha1_basic(const char *str
, int len
, unsigned char *sha1
)
346 static const char *warning
= "warning: refname '%.*s' is ambiguous.\n";
347 char *real_ref
= NULL
;
351 if (len
== 40 && !get_sha1_hex(str
, sha1
))
354 /* basic@{time or number or -number} format to query ref-log */
356 if (len
&& str
[len
-1] == '}') {
357 for (at
= len
-2; at
>= 0; at
--) {
358 if (str
[at
] == '@' && str
[at
+1] == '{') {
359 if (!upstream_mark(str
+ at
, len
- at
)) {
360 reflog_len
= (len
-1) - (at
+2);
368 /* Accept only unambiguous ref paths. */
369 if (len
&& ambiguous_path(str
, len
))
372 if (!len
&& reflog_len
) {
373 struct strbuf buf
= STRBUF_INIT
;
375 /* try the @{-N} syntax for n-th checkout */
376 ret
= interpret_branch_name(str
+at
, &buf
);
378 /* substitute this branch name and restart */
379 return get_sha1_1(buf
.buf
, buf
.len
, sha1
);
380 } else if (ret
== 0) {
383 /* allow "@{...}" to mean the current branch reflog */
384 refs_found
= dwim_ref("HEAD", 4, sha1
, &real_ref
);
385 } else if (reflog_len
)
386 refs_found
= dwim_log(str
, len
, sha1
, &real_ref
);
388 refs_found
= dwim_ref(str
, len
, sha1
, &real_ref
);
393 if (warn_ambiguous_refs
&& refs_found
> 1)
394 fprintf(stderr
, warning
, len
, str
);
398 unsigned long at_time
;
399 unsigned long co_time
;
402 /* Is it asking for N-th entry, or approxidate? */
403 for (i
= nth
= 0; 0 <= nth
&& i
< reflog_len
; i
++) {
404 char ch
= str
[at
+2+i
];
405 if ('0' <= ch
&& ch
<= '9')
406 nth
= nth
* 10 + ch
- '0';
410 if (100000000 <= nth
) {
416 char *tmp
= xstrndup(str
+ at
+ 2, reflog_len
);
417 at_time
= approxidate(tmp
);
420 if (read_ref_at(real_ref
, at_time
, nth
, sha1
, NULL
,
421 &co_time
, &co_tz
, &co_cnt
)) {
424 "warning: Log for '%.*s' only goes "
425 "back to %s.\n", len
, str
,
426 show_date(co_time
, co_tz
, DATE_RFC2822
));
429 "warning: Log for '%.*s' only has "
430 "%d entries.\n", len
, str
, co_cnt
);
438 static int get_parent(const char *name
, int len
,
439 unsigned char *result
, int idx
)
441 unsigned char sha1
[20];
442 int ret
= get_sha1_1(name
, len
, sha1
);
443 struct commit
*commit
;
444 struct commit_list
*p
;
448 commit
= lookup_commit_reference(sha1
);
451 if (parse_commit(commit
))
454 hashcpy(result
, commit
->object
.sha1
);
460 hashcpy(result
, p
->item
->object
.sha1
);
468 static int get_nth_ancestor(const char *name
, int len
,
469 unsigned char *result
, int generation
)
471 unsigned char sha1
[20];
472 struct commit
*commit
;
475 ret
= get_sha1_1(name
, len
, sha1
);
478 commit
= lookup_commit_reference(sha1
);
482 while (generation
--) {
483 if (parse_commit(commit
) || !commit
->parents
)
485 commit
= commit
->parents
->item
;
487 hashcpy(result
, commit
->object
.sha1
);
491 struct object
*peel_to_type(const char *name
, int namelen
,
492 struct object
*o
, enum object_type expected_type
)
494 if (name
&& !namelen
)
495 namelen
= strlen(name
);
497 unsigned char sha1
[20];
498 if (get_sha1_1(name
, namelen
, sha1
))
500 o
= parse_object(sha1
);
503 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
505 if (o
->type
== expected_type
)
507 if (o
->type
== OBJ_TAG
)
508 o
= ((struct tag
*) o
)->tagged
;
509 else if (o
->type
== OBJ_COMMIT
)
510 o
= &(((struct commit
*) o
)->tree
->object
);
513 error("%.*s: expected %s type, but the object "
514 "dereferences to %s type",
515 namelen
, name
, typename(expected_type
),
522 static int peel_onion(const char *name
, int len
, unsigned char *sha1
)
524 unsigned char outer
[20];
526 unsigned int expected_type
= 0;
530 * "ref^{type}" dereferences ref repeatedly until you cannot
531 * dereference anymore, or you get an object of given type,
532 * whichever comes first. "ref^{}" means just dereference
533 * tags until you get a non-tag. "ref^0" is a shorthand for
534 * "ref^{commit}". "commit^{tree}" could be used to find the
535 * top-level tree of the given commit.
537 if (len
< 4 || name
[len
-1] != '}')
540 for (sp
= name
+ len
- 1; name
<= sp
; sp
--) {
542 if (ch
== '{' && name
< sp
&& sp
[-1] == '^')
548 sp
++; /* beginning of type name, or closing brace for empty */
549 if (!strncmp(commit_type
, sp
, 6) && sp
[6] == '}')
550 expected_type
= OBJ_COMMIT
;
551 else if (!strncmp(tree_type
, sp
, 4) && sp
[4] == '}')
552 expected_type
= OBJ_TREE
;
553 else if (!strncmp(blob_type
, sp
, 4) && sp
[4] == '}')
554 expected_type
= OBJ_BLOB
;
555 else if (sp
[0] == '}')
556 expected_type
= OBJ_NONE
;
560 if (get_sha1_1(name
, sp
- name
- 2, outer
))
563 o
= parse_object(outer
);
566 if (!expected_type
) {
567 o
= deref_tag(o
, name
, sp
- name
- 2);
568 if (!o
|| (!o
->parsed
&& !parse_object(o
->sha1
)))
570 hashcpy(sha1
, o
->sha1
);
574 * At this point, the syntax look correct, so
575 * if we do not get the needed object, we should
578 o
= peel_to_type(name
, len
, o
, expected_type
);
580 hashcpy(sha1
, o
->sha1
);
588 static int get_describe_name(const char *name
, int len
, unsigned char *sha1
)
592 for (cp
= name
+ len
- 1; name
+ 2 <= cp
; cp
--) {
594 if (hexval(ch
) & ~0377) {
595 /* We must be looking at g in "SOMETHING-g"
596 * for it to be describe output.
598 if (ch
== 'g' && cp
[-1] == '-') {
601 return get_short_sha1(cp
, len
, sha1
, 1);
608 static int get_sha1_1(const char *name
, int len
, unsigned char *sha1
)
614 * "name~3" is "name^^^", "name~" is "name~1", and "name^" is "name^1".
617 for (cp
= name
+ len
- 1; name
<= cp
; cp
--) {
619 if ('0' <= ch
&& ch
<= '9')
621 if (ch
== '~' || ch
== '^')
628 int len1
= cp
- name
;
630 while (cp
< name
+ len
)
631 num
= num
* 10 + *cp
++ - '0';
632 if (!num
&& len1
== len
- 1)
634 if (has_suffix
== '^')
635 return get_parent(name
, len1
, sha1
, num
);
636 /* else if (has_suffix == '~') -- goes without saying */
637 return get_nth_ancestor(name
, len1
, sha1
, num
);
640 ret
= peel_onion(name
, len
, sha1
);
644 ret
= get_sha1_basic(name
, len
, sha1
);
648 /* It could be describe output that is "SOMETHING-gXXXX" */
649 ret
= get_describe_name(name
, len
, sha1
);
653 return get_short_sha1(name
, len
, sha1
, 0);
656 static int handle_one_ref(const char *path
,
657 const unsigned char *sha1
, int flag
, void *cb_data
)
659 struct commit_list
**list
= cb_data
;
660 struct object
*object
= parse_object(sha1
);
663 if (object
->type
== OBJ_TAG
) {
664 object
= deref_tag(object
, path
, strlen(path
));
668 if (object
->type
!= OBJ_COMMIT
)
670 insert_by_date((struct commit
*)object
, list
);
675 * This interprets names like ':/Initial revision of "git"' by searching
676 * through history and returning the first commit whose message starts
677 * with the given string.
679 * For future extension, ':/!' is reserved. If you want to match a message
680 * beginning with a '!', you have to repeat the exclamation mark.
683 #define ONELINE_SEEN (1u<<20)
684 static int get_sha1_oneline(const char *prefix
, unsigned char *sha1
)
686 struct commit_list
*list
= NULL
, *backup
= NULL
, *l
;
688 char *temp_commit_buffer
= NULL
;
690 if (prefix
[0] == '!') {
691 if (prefix
[1] != '!')
692 die ("Invalid search pattern: %s", prefix
);
695 for_each_ref(handle_one_ref
, &list
);
696 for (l
= list
; l
; l
= l
->next
)
697 commit_list_insert(l
->item
, &backup
);
700 struct commit
*commit
;
701 enum object_type type
;
704 commit
= pop_most_recent_commit(&list
, ONELINE_SEEN
);
705 if (!parse_object(commit
->object
.sha1
))
707 free(temp_commit_buffer
);
711 p
= read_sha1_file(commit
->object
.sha1
, &type
, &size
);
714 temp_commit_buffer
= p
;
716 if (!(p
= strstr(p
, "\n\n")))
718 if (!prefixcmp(p
+ 2, prefix
)) {
719 hashcpy(sha1
, commit
->object
.sha1
);
724 free(temp_commit_buffer
);
725 free_commit_list(list
);
726 for (l
= backup
; l
; l
= l
->next
)
727 clear_commit_marks(l
->item
, ONELINE_SEEN
);
731 struct grab_nth_branch_switch_cbdata
{
736 static int grab_nth_branch_switch(unsigned char *osha1
, unsigned char *nsha1
,
737 const char *email
, unsigned long timestamp
, int tz
,
738 const char *message
, void *cb_data
)
740 struct grab_nth_branch_switch_cbdata
*cb
= cb_data
;
741 const char *match
= NULL
, *target
= NULL
;
745 if (!prefixcmp(message
, "checkout: moving from ")) {
746 match
= message
+ strlen("checkout: moving from ");
747 target
= strstr(match
, " to ");
750 if (!match
|| !target
)
753 len
= target
- match
;
754 nth
= cb
->cnt
++ % cb
->alloc
;
755 strbuf_reset(&cb
->buf
[nth
]);
756 strbuf_add(&cb
->buf
[nth
], match
, len
);
761 * Parse @{-N} syntax, return the number of characters parsed
762 * if successful; otherwise signal an error with negative value.
764 static int interpret_nth_prior_checkout(const char *name
, struct strbuf
*buf
)
768 struct grab_nth_branch_switch_cbdata cb
;
772 if (name
[0] != '@' || name
[1] != '{' || name
[2] != '-')
774 brace
= strchr(name
, '}');
777 nth
= strtol(name
+3, &num_end
, 10);
778 if (num_end
!= brace
)
783 cb
.buf
= xmalloc(nth
* sizeof(struct strbuf
));
784 for (i
= 0; i
< nth
; i
++)
785 strbuf_init(&cb
.buf
[i
], 20);
788 for_each_recent_reflog_ent("HEAD", grab_nth_branch_switch
, 40960, &cb
);
791 for_each_reflog_ent("HEAD", grab_nth_branch_switch
, &cb
);
797 strbuf_add(buf
, cb
.buf
[i
].buf
, cb
.buf
[i
].len
);
798 retval
= brace
-name
+1;
801 for (i
= 0; i
< nth
; i
++)
802 strbuf_release(&cb
.buf
[i
]);
808 int get_sha1_mb(const char *name
, unsigned char *sha1
)
810 struct commit
*one
, *two
;
811 struct commit_list
*mbs
;
812 unsigned char sha1_tmp
[20];
816 dots
= strstr(name
, "...");
818 return get_sha1(name
, sha1
);
820 st
= get_sha1("HEAD", sha1_tmp
);
823 strbuf_init(&sb
, dots
- name
);
824 strbuf_add(&sb
, name
, dots
- name
);
825 st
= get_sha1(sb
.buf
, sha1_tmp
);
830 one
= lookup_commit_reference_gently(sha1_tmp
, 0);
834 if (get_sha1(dots
[3] ? (dots
+ 3) : "HEAD", sha1_tmp
))
836 two
= lookup_commit_reference_gently(sha1_tmp
, 0);
839 mbs
= get_merge_bases(one
, two
, 1);
840 if (!mbs
|| mbs
->next
)
844 hashcpy(sha1
, mbs
->item
->object
.sha1
);
846 free_commit_list(mbs
);
851 * This reads short-hand syntax that not only evaluates to a commit
852 * object name, but also can act as if the end user spelled the name
853 * of the branch from the command line.
855 * - "@{-N}" finds the name of the Nth previous branch we were on, and
856 * places the name of the branch in the given buf and returns the
857 * number of characters parsed if successful.
859 * - "<branch>@{upstream}" finds the name of the other ref that
860 * <branch> is configured to merge with (missing <branch> defaults
861 * to the current branch), and places the name of the branch in the
862 * given buf and returns the number of characters parsed if
865 * If the input is not of the accepted format, it returns a negative
866 * number to signal an error.
868 * If the input was ok but there are not N branch switches in the
869 * reflog, it returns 0.
871 int interpret_branch_name(const char *name
, struct strbuf
*buf
)
874 struct branch
*upstream
;
875 int namelen
= strlen(name
);
876 int len
= interpret_nth_prior_checkout(name
, buf
);
880 return len
; /* syntax Ok, not enough switches */
882 return len
; /* consumed from the front */
883 cp
= strchr(name
, '@');
886 tmp_len
= upstream_mark(cp
, namelen
- (cp
- name
));
889 len
= cp
+ tmp_len
- name
;
890 cp
= xstrndup(name
, cp
- name
);
891 upstream
= branch_get(*cp
? cp
: NULL
);
894 || !upstream
->merge
[0]->dst
)
895 return error("No upstream branch found for '%s'", cp
);
897 cp
= shorten_unambiguous_ref(upstream
->merge
[0]->dst
, 0);
899 strbuf_addstr(buf
, cp
);
905 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
906 * notably "xyz^" for "parent of xyz"
908 int get_sha1(const char *name
, unsigned char *sha1
)
911 return get_sha1_with_mode(name
, sha1
, &unused
);
914 /* Must be called only when object_name:filename doesn't exist. */
915 static void diagnose_invalid_sha1_path(const char *prefix
,
916 const char *filename
,
917 const unsigned char *tree_sha1
,
918 const char *object_name
)
921 unsigned char sha1
[20];
927 if (!lstat(filename
, &st
))
928 die("Path '%s' exists on disk, but not in '%s'.",
929 filename
, object_name
);
930 if (errno
== ENOENT
|| errno
== ENOTDIR
) {
931 char *fullname
= xmalloc(strlen(filename
)
932 + strlen(prefix
) + 1);
933 strcpy(fullname
, prefix
);
934 strcat(fullname
, filename
);
936 if (!get_tree_entry(tree_sha1
, fullname
,
938 die("Path '%s' exists, but not '%s'.\n"
939 "Did you mean '%s:%s'?",
945 die("Path '%s' does not exist in '%s'",
946 filename
, object_name
);
950 /* Must be called only when :stage:filename doesn't exist. */
951 static void diagnose_invalid_index_path(int stage
,
953 const char *filename
)
956 struct cache_entry
*ce
;
958 unsigned namelen
= strlen(filename
);
959 unsigned fullnamelen
;
965 /* Wrong stage number? */
966 pos
= cache_name_pos(filename
, namelen
);
969 ce
= active_cache
[pos
];
970 if (ce_namelen(ce
) == namelen
&&
971 !memcmp(ce
->name
, filename
, namelen
))
972 die("Path '%s' is in the index, but not at stage %d.\n"
973 "Did you mean ':%d:%s'?",
975 ce_stage(ce
), filename
);
977 /* Confusion between relative and absolute filenames? */
978 fullnamelen
= namelen
+ strlen(prefix
);
979 fullname
= xmalloc(fullnamelen
+ 1);
980 strcpy(fullname
, prefix
);
981 strcat(fullname
, filename
);
982 pos
= cache_name_pos(fullname
, fullnamelen
);
985 ce
= active_cache
[pos
];
986 if (ce_namelen(ce
) == fullnamelen
&&
987 !memcmp(ce
->name
, fullname
, fullnamelen
))
988 die("Path '%s' is in the index, but not '%s'.\n"
989 "Did you mean ':%d:%s'?",
991 ce_stage(ce
), fullname
);
993 if (!lstat(filename
, &st
))
994 die("Path '%s' exists on disk, but not in the index.", filename
);
995 if (errno
== ENOENT
|| errno
== ENOTDIR
)
996 die("Path '%s' does not exist (neither on disk nor in the index).",
1003 int get_sha1_with_mode_1(const char *name
, unsigned char *sha1
, unsigned *mode
, int gently
, const char *prefix
)
1005 int ret
, bracket_depth
;
1006 int namelen
= strlen(name
);
1009 *mode
= S_IFINVALID
;
1010 ret
= get_sha1_1(name
, namelen
, sha1
);
1013 /* sha1:path --> object name of path in ent sha1
1014 * :path -> object name of path in index
1015 * :[0-3]:path -> object name of path in index at stage
1017 if (name
[0] == ':') {
1019 struct cache_entry
*ce
;
1021 if (namelen
> 2 && name
[1] == '/')
1022 return get_sha1_oneline(name
+ 2, sha1
);
1025 name
[1] < '0' || '3' < name
[1])
1028 stage
= name
[1] - '0';
1031 namelen
= namelen
- (cp
- name
);
1034 pos
= cache_name_pos(cp
, namelen
);
1037 while (pos
< active_nr
) {
1038 ce
= active_cache
[pos
];
1039 if (ce_namelen(ce
) != namelen
||
1040 memcmp(ce
->name
, cp
, namelen
))
1042 if (ce_stage(ce
) == stage
) {
1043 hashcpy(sha1
, ce
->sha1
);
1044 *mode
= ce
->ce_mode
;
1050 diagnose_invalid_index_path(stage
, prefix
, cp
);
1053 for (cp
= name
, bracket_depth
= 0; *cp
; cp
++) {
1056 else if (bracket_depth
&& *cp
== '}')
1058 else if (!bracket_depth
&& *cp
== ':')
1062 unsigned char tree_sha1
[20];
1063 char *object_name
= NULL
;
1065 object_name
= xmalloc(cp
-name
+1);
1066 strncpy(object_name
, name
, cp
-name
);
1067 object_name
[cp
-name
] = '\0';
1069 if (!get_sha1_1(name
, cp
-name
, tree_sha1
)) {
1070 const char *filename
= cp
+1;
1071 ret
= get_tree_entry(tree_sha1
, filename
, sha1
, mode
);
1073 diagnose_invalid_sha1_path(prefix
, filename
,
1074 tree_sha1
, object_name
);
1080 die("Invalid object name '%s'.", object_name
);