11 static int get_sha1_oneline(const char *, unsigned char *, struct commit_list *);
13 typedef int (*disambiguate_hint_fn)(const unsigned char *, void *);
15 struct disambiguate_state {
16 disambiguate_hint_fn fn;
18 unsigned char candidate[20];
19 unsigned candidate_exists:1;
20 unsigned candidate_checked:1;
21 unsigned candidate_ok:1;
22 unsigned disambiguate_fn_used:1;
24 unsigned always_call_fn:1;
27 static void update_candidates(struct disambiguate_state *ds, const unsigned char *current)
29 if (ds->always_call_fn) {
30 ds->ambiguous = ds->fn(current, ds->cb_data) ? 1 : 0;
33 if (!ds->candidate_exists) {
34 /* this is the first candidate */
35 hashcpy(ds->candidate, current);
36 ds->candidate_exists = 1;
38 } else if (!hashcmp(ds->candidate, current)) {
39 /* the same as what we already have seen */
44 /* cannot disambiguate between ds->candidate and current */
49 if (!ds->candidate_checked) {
50 ds->candidate_ok = ds->fn(ds->candidate, ds->cb_data);
51 ds->disambiguate_fn_used = 1;
52 ds->candidate_checked = 1;
55 if (!ds->candidate_ok) {
56 /* discard the candidate; we know it does not satisfy fn */
57 hashcpy(ds->candidate, current);
58 ds->candidate_checked = 0;
62 /* if we reach this point, we know ds->candidate satisfies fn */
63 if (ds->fn(current, ds->cb_data)) {
65 * if both current and candidate satisfy fn, we cannot
72 /* otherwise, current can be discarded and candidate is still good */
75 static void find_short_object_filename(int len, const char *hex_pfx, struct disambiguate_state *ds)
77 struct alternate_object_database *alt;
79 static struct alternate_object_database *fakeent;
83 * Create a "fake" alternate object database that
84 * points to our own object database, to make it
85 * easier to get a temporary working space in
86 * alt->name/alt->base while iterating over the
87 * object databases including our own.
89 const char *objdir = get_object_directory();
90 size_t objdir_len = strlen(objdir);
91 fakeent = xmalloc(st_add3(sizeof(*fakeent), objdir_len, 43));
92 memcpy(fakeent->base, objdir, objdir_len);
93 fakeent->name = fakeent->base + objdir_len + 1;
94 fakeent->name[-1] = '/';
96 fakeent->next = alt_odb_list;
98 xsnprintf(hex, sizeof(hex), "%.2s", hex_pfx);
99 for (alt = fakeent; alt && !ds->ambiguous; alt = alt->next) {
103 * every alt_odb struct has 42 extra bytes after the base
104 * for exactly this purpose
106 xsnprintf(alt->name, 42, "%.2s/", hex_pfx);
107 dir = opendir(alt->base);
111 while (!ds->ambiguous && (de = readdir(dir)) != NULL) {
112 unsigned char sha1[20];
114 if (strlen(de->d_name) != 38)
116 if (memcmp(de->d_name, hex_pfx + 2, len - 2))
118 memcpy(hex + 2, de->d_name, 38);
119 if (!get_sha1_hex(hex, sha1))
120 update_candidates(ds, sha1);
126 static int match_sha(unsigned len, const unsigned char *a, const unsigned char *b)
136 if ((*a ^ *b) & 0xf0)
141 static void unique_in_pack(int len,
142 const unsigned char *bin_pfx,
143 struct packed_git *p,
144 struct disambiguate_state *ds)
146 uint32_t num, last, i, first = 0;
147 const unsigned char *current = NULL;
150 num = p->num_objects;
152 while (first < last) {
153 uint32_t mid = (first + last) / 2;
154 const unsigned char *current;
157 current = nth_packed_object_sha1(p, mid);
158 cmp = hashcmp(bin_pfx, current);
171 * At this point, "first" is the location of the lowest object
172 * with an object name that could match "bin_pfx". See if we have
173 * 0, 1 or more objects that actually match(es).
175 for (i = first; i < num && !ds->ambiguous; i++) {
176 current = nth_packed_object_sha1(p, i);
177 if (!match_sha(len, bin_pfx, current))
179 update_candidates(ds, current);
183 static void find_short_packed_object(int len, const unsigned char *bin_pfx,
184 struct disambiguate_state *ds)
186 struct packed_git *p;
188 prepare_packed_git();
189 for (p = packed_git; p && !ds->ambiguous; p = p->next)
190 unique_in_pack(len, bin_pfx, p, ds);
193 #define SHORT_NAME_NOT_FOUND (-1)
194 #define SHORT_NAME_AMBIGUOUS (-2)
196 static int finish_object_disambiguation(struct disambiguate_state *ds,
200 return SHORT_NAME_AMBIGUOUS;
202 if (!ds->candidate_exists)
203 return SHORT_NAME_NOT_FOUND;
205 if (!ds->candidate_checked)
207 * If this is the only candidate, there is no point
208 * calling the disambiguation hint callback.
210 * On the other hand, if the current candidate
211 * replaced an earlier candidate that did _not_ pass
212 * the disambiguation hint callback, then we do have
213 * more than one objects that match the short name
214 * given, so we should make sure this one matches;
215 * otherwise, if we discovered this one and the one
216 * that we previously discarded in the reverse order,
217 * we would end up showing different results in the
220 ds->candidate_ok = (!ds->disambiguate_fn_used ||
221 ds->fn(ds->candidate, ds->cb_data));
223 if (!ds->candidate_ok)
224 return SHORT_NAME_AMBIGUOUS;
226 hashcpy(sha1, ds->candidate);
230 static int disambiguate_commit_only(const unsigned char *sha1, void *cb_data_unused)
232 int kind = sha1_object_info(sha1, NULL);
233 return kind == OBJ_COMMIT;
236 static int disambiguate_committish_only(const unsigned char *sha1, void *cb_data_unused)
241 kind = sha1_object_info(sha1, NULL);
242 if (kind == OBJ_COMMIT)
247 /* We need to do this the hard way... */
248 obj = deref_tag(parse_object(sha1), NULL, 0);
249 if (obj && obj->type == OBJ_COMMIT)
254 static int disambiguate_tree_only(const unsigned char *sha1, void *cb_data_unused)
256 int kind = sha1_object_info(sha1, NULL);
257 return kind == OBJ_TREE;
260 static int disambiguate_treeish_only(const unsigned char *sha1, void *cb_data_unused)
265 kind = sha1_object_info(sha1, NULL);
266 if (kind == OBJ_TREE || kind == OBJ_COMMIT)
271 /* We need to do this the hard way... */
272 obj = deref_tag(lookup_object(sha1), NULL, 0);
273 if (obj && (obj->type == OBJ_TREE || obj->type == OBJ_COMMIT))
278 static int disambiguate_blob_only(const unsigned char *sha1, void *cb_data_unused)
280 int kind = sha1_object_info(sha1, NULL);
281 return kind == OBJ_BLOB;
284 static int prepare_prefixes(const char *name, int len,
285 unsigned char *bin_pfx,
291 memset(hex_pfx, 'x', 40);
292 for (i = 0; i < len ;i++) {
293 unsigned char c = name[i];
295 if (c >= '0' && c <= '9')
297 else if (c >= 'a' && c <= 'f')
299 else if (c >= 'A' && c <='F') {
308 bin_pfx[i >> 1] |= val;
313 static int get_short_sha1(const char *name, int len, unsigned char *sha1,
318 unsigned char bin_pfx[20];
319 struct disambiguate_state ds;
320 int quietly = !!(flags & GET_SHA1_QUIETLY);
322 if (len < MINIMUM_ABBREV || len > 40)
324 if (prepare_prefixes(name, len, bin_pfx, hex_pfx) < 0)
329 memset(&ds, 0, sizeof(ds));
330 if (flags & GET_SHA1_COMMIT)
331 ds.fn = disambiguate_commit_only;
332 else if (flags & GET_SHA1_COMMITTISH)
333 ds.fn = disambiguate_committish_only;
334 else if (flags & GET_SHA1_TREE)
335 ds.fn = disambiguate_tree_only;
336 else if (flags & GET_SHA1_TREEISH)
337 ds.fn = disambiguate_treeish_only;
338 else if (flags & GET_SHA1_BLOB)
339 ds.fn = disambiguate_blob_only;
341 find_short_object_filename(len, hex_pfx, &ds);
342 find_short_packed_object(len, bin_pfx, &ds);
343 status = finish_object_disambiguation(&ds, sha1);
345 if (!quietly && (status == SHORT_NAME_AMBIGUOUS))
346 return error("short SHA1 %.*s is ambiguous.", len, hex_pfx);
350 int for_each_abbrev(const char *prefix, each_abbrev_fn fn, void *cb_data)
353 unsigned char bin_pfx[20];
354 struct disambiguate_state ds;
355 int len = strlen(prefix);
357 if (len < MINIMUM_ABBREV || len > 40)
359 if (prepare_prefixes(prefix, len, bin_pfx, hex_pfx) < 0)
364 memset(&ds, 0, sizeof(ds));
365 ds.always_call_fn = 1;
366 ds.cb_data = cb_data;
369 find_short_object_filename(len, hex_pfx, &ds);
370 find_short_packed_object(len, bin_pfx, &ds);
374 int find_unique_abbrev_r(char *hex, const unsigned char *sha1, int len)
378 sha1_to_hex_r(hex, sha1);
379 if (len == 40 || !len)
381 exists = has_sha1_file(sha1);
383 unsigned char sha1_ret[20];
384 status = get_short_sha1(hex, len, sha1_ret, GET_SHA1_QUIETLY);
387 : status == SHORT_NAME_NOT_FOUND) {
396 const char *find_unique_abbrev(const unsigned char *sha1, int len)
398 static char hex[GIT_SHA1_HEXSZ + 1];
399 find_unique_abbrev_r(hex, sha1, len);
403 static int ambiguous_path(const char *path, int len)
408 for (cnt = 0; cnt < len; cnt++) {
428 static inline int at_mark(const char *string, int len,
429 const char **suffix, int nr)
433 for (i = 0; i < nr; i++) {
434 int suffix_len = strlen(suffix[i]);
435 if (suffix_len <= len
436 && !memcmp(string, suffix[i], suffix_len))
442 static inline int upstream_mark(const char *string, int len)
444 const char *suffix[] = { "@{upstream}", "@{u}" };
445 return at_mark(string, len, suffix, ARRAY_SIZE(suffix));
448 static inline int push_mark(const char *string, int len)
450 const char *suffix[] = { "@{push}" };
451 return at_mark(string, len, suffix, ARRAY_SIZE(suffix));
454 static int get_sha1_1(const char *name, int len, unsigned char *sha1, unsigned lookup_flags);
455 static int interpret_nth_prior_checkout(const char *name, int namelen, struct strbuf *buf);
457 static int get_sha1_basic(const char *str, int len, unsigned char *sha1,
460 static const char *warn_msg = "refname '%.*s' is ambiguous.";
461 static const char *object_name_msg = N_(
462 "Git normally never creates a ref that ends with 40 hex characters\n"
463 "because it will be ignored when you just specify 40-hex. These refs\n"
464 "may be created by mistake. For example,\n"
466 " git checkout -b $br $(git rev-parse ...)\n"
468 "where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"
469 "examine these refs and maybe delete them. Turn this message off by\n"
470 "running \"git config advice.objectNameWarning false\"");
471 unsigned char tmp_sha1[20];
472 char *real_ref = NULL;
474 int at, reflog_len, nth_prior = 0;
476 if (len == 40 && !get_sha1_hex(str, sha1)) {
477 if (warn_ambiguous_refs && warn_on_object_refname_ambiguity) {
478 refs_found = dwim_ref(str, len, tmp_sha1, &real_ref);
479 if (refs_found > 0) {
480 warning(warn_msg, len, str);
481 if (advice_object_name_warning)
482 fprintf(stderr, "%s\n", _(object_name_msg));
489 /* basic@{time or number or -number} format to query ref-log */
491 if (len && str[len-1] == '}') {
492 for (at = len-4; at >= 0; at--) {
493 if (str[at] == '@' && str[at+1] == '{') {
494 if (str[at+2] == '-') {
496 /* @{-N} not at start */
501 if (!upstream_mark(str + at, len - at) &&
502 !push_mark(str + at, len - at)) {
503 reflog_len = (len-1) - (at+2);
511 /* Accept only unambiguous ref paths. */
512 if (len && ambiguous_path(str, len))
516 struct strbuf buf = STRBUF_INIT;
519 if (interpret_nth_prior_checkout(str, len, &buf) > 0) {
520 detached = (buf.len == 40 && !get_sha1_hex(buf.buf, sha1));
521 strbuf_release(&buf);
527 if (!len && reflog_len)
528 /* allow "@{...}" to mean the current branch reflog */
529 refs_found = dwim_ref("HEAD", 4, sha1, &real_ref);
531 refs_found = dwim_log(str, len, sha1, &real_ref);
533 refs_found = dwim_ref(str, len, sha1, &real_ref);
538 if (warn_ambiguous_refs && !(flags & GET_SHA1_QUIETLY) &&
540 !get_short_sha1(str, len, tmp_sha1, GET_SHA1_QUIETLY)))
541 warning(warn_msg, len, str);
545 unsigned long at_time;
546 unsigned long co_time;
549 /* Is it asking for N-th entry, or approxidate? */
550 for (i = nth = 0; 0 <= nth && i < reflog_len; i++) {
551 char ch = str[at+2+i];
552 if ('0' <= ch && ch <= '9')
553 nth = nth * 10 + ch - '0';
557 if (100000000 <= nth) {
564 char *tmp = xstrndup(str + at + 2, reflog_len);
565 at_time = approxidate_careful(tmp, &errors);
572 if (read_ref_at(real_ref, flags, at_time, nth, sha1, NULL,
573 &co_time, &co_tz, &co_cnt)) {
575 if (starts_with(real_ref, "refs/heads/")) {
577 len = strlen(real_ref + 11);
585 if (!(flags & GET_SHA1_QUIETLY)) {
586 warning("Log for '%.*s' only goes "
587 "back to %s.", len, str,
588 show_date(co_time, co_tz, DATE_MODE(RFC2822)));
591 if (flags & GET_SHA1_QUIETLY) {
594 die("Log for '%.*s' only has %d entries.",
604 static int get_parent(const char *name, int len,
605 unsigned char *result, int idx)
607 unsigned char sha1[20];
608 int ret = get_sha1_1(name, len, sha1, GET_SHA1_COMMITTISH);
609 struct commit *commit;
610 struct commit_list *p;
614 commit = lookup_commit_reference(sha1);
615 if (parse_commit(commit))
618 hashcpy(result, commit->object.oid.hash);
624 hashcpy(result, p->item->object.oid.hash);
632 static int get_nth_ancestor(const char *name, int len,
633 unsigned char *result, int generation)
635 unsigned char sha1[20];
636 struct commit *commit;
639 ret = get_sha1_1(name, len, sha1, GET_SHA1_COMMITTISH);
642 commit = lookup_commit_reference(sha1);
646 while (generation--) {
647 if (parse_commit(commit) || !commit->parents)
649 commit = commit->parents->item;
651 hashcpy(result, commit->object.oid.hash);
655 struct object *peel_to_type(const char *name, int namelen,
656 struct object *o, enum object_type expected_type)
658 if (name && !namelen)
659 namelen = strlen(name);
661 if (!o || (!o->parsed && !parse_object(o->oid.hash)))
663 if (expected_type == OBJ_ANY || o->type == expected_type)
665 if (o->type == OBJ_TAG)
666 o = ((struct tag*) o)->tagged;
667 else if (o->type == OBJ_COMMIT)
668 o = &(((struct commit *) o)->tree->object);
671 error("%.*s: expected %s type, but the object "
672 "dereferences to %s type",
673 namelen, name, typename(expected_type),
680 static int peel_onion(const char *name, int len, unsigned char *sha1)
682 unsigned char outer[20];
684 unsigned int expected_type = 0;
685 unsigned lookup_flags = 0;
689 * "ref^{type}" dereferences ref repeatedly until you cannot
690 * dereference anymore, or you get an object of given type,
691 * whichever comes first. "ref^{}" means just dereference
692 * tags until you get a non-tag. "ref^0" is a shorthand for
693 * "ref^{commit}". "commit^{tree}" could be used to find the
694 * top-level tree of the given commit.
696 if (len < 4 || name[len-1] != '}')
699 for (sp = name + len - 1; name <= sp; sp--) {
701 if (ch == '{' && name < sp && sp[-1] == '^')
707 sp++; /* beginning of type name, or closing brace for empty */
708 if (starts_with(sp, "commit}"))
709 expected_type = OBJ_COMMIT;
710 else if (starts_with(sp, "tag}"))
711 expected_type = OBJ_TAG;
712 else if (starts_with(sp, "tree}"))
713 expected_type = OBJ_TREE;
714 else if (starts_with(sp, "blob}"))
715 expected_type = OBJ_BLOB;
716 else if (starts_with(sp, "object}"))
717 expected_type = OBJ_ANY;
718 else if (sp[0] == '}')
719 expected_type = OBJ_NONE;
720 else if (sp[0] == '/')
721 expected_type = OBJ_COMMIT;
725 if (expected_type == OBJ_COMMIT)
726 lookup_flags = GET_SHA1_COMMITTISH;
727 else if (expected_type == OBJ_TREE)
728 lookup_flags = GET_SHA1_TREEISH;
730 if (get_sha1_1(name, sp - name - 2, outer, lookup_flags))
733 o = parse_object(outer);
736 if (!expected_type) {
737 o = deref_tag(o, name, sp - name - 2);
738 if (!o || (!o->parsed && !parse_object(o->oid.hash)))
740 hashcpy(sha1, o->oid.hash);
745 * At this point, the syntax look correct, so
746 * if we do not get the needed object, we should
749 o = peel_to_type(name, len, o, expected_type);
753 hashcpy(sha1, o->oid.hash);
755 /* "$commit^{/foo}" */
758 struct commit_list *list = NULL;
761 * $commit^{/}. Some regex implementation may reject.
762 * We don't need regex anyway. '' pattern always matches.
767 prefix = xstrndup(sp + 1, name + len - 1 - (sp + 1));
768 commit_list_insert((struct commit *)o, &list);
769 ret = get_sha1_oneline(prefix, sha1, list);
776 static int get_describe_name(const char *name, int len, unsigned char *sha1)
779 unsigned flags = GET_SHA1_QUIETLY | GET_SHA1_COMMIT;
781 for (cp = name + len - 1; name + 2 <= cp; cp--) {
784 /* We must be looking at g in "SOMETHING-g"
785 * for it to be describe output.
787 if (ch == 'g' && cp[-1] == '-') {
790 return get_short_sha1(cp, len, sha1, flags);
797 static int get_sha1_1(const char *name, int len, unsigned char *sha1, unsigned lookup_flags)
803 * "name~3" is "name^^^", "name~" is "name~1", and "name^" is "name^1".
806 for (cp = name + len - 1; name <= cp; cp--) {
808 if ('0' <= ch && ch <= '9')
810 if (ch == '~' || ch == '^')
817 int len1 = cp - name;
819 while (cp < name + len)
820 num = num * 10 + *cp++ - '0';
821 if (!num && len1 == len - 1)
823 if (has_suffix == '^')
824 return get_parent(name, len1, sha1, num);
825 /* else if (has_suffix == '~') -- goes without saying */
826 return get_nth_ancestor(name, len1, sha1, num);
829 ret = peel_onion(name, len, sha1);
833 ret = get_sha1_basic(name, len, sha1, lookup_flags);
837 /* It could be describe output that is "SOMETHING-gXXXX" */
838 ret = get_describe_name(name, len, sha1);
842 return get_short_sha1(name, len, sha1, lookup_flags);
846 * This interprets names like ':/Initial revision of "git"' by searching
847 * through history and returning the first commit whose message starts
848 * the given regular expression.
850 * For negative-matching, prefix the pattern-part with '!-', like: ':/!-WIP'.
852 * For a literal '!' character at the beginning of a pattern, you have to repeat
853 * that, like: ':/!!foo'
855 * For future extension, all other sequences beginning with ':/!' are reserved.
858 /* Remember to update object flag allocation in object.h */
859 #define ONELINE_SEEN (1u<<20)
861 static int handle_one_ref(const char *path, const struct object_id *oid,
862 int flag, void *cb_data)
864 struct commit_list **list = cb_data;
865 struct object *object = parse_object(oid->hash);
868 if (object->type == OBJ_TAG) {
869 object = deref_tag(object, path, strlen(path));
873 if (object->type != OBJ_COMMIT)
875 commit_list_insert((struct commit *)object, list);
879 static int get_sha1_oneline(const char *prefix, unsigned char *sha1,
880 struct commit_list *list)
882 struct commit_list *backup = NULL, *l;
887 if (prefix[0] == '!') {
890 if (prefix[0] == '-') {
893 } else if (prefix[0] != '!') {
898 if (regcomp(®ex, prefix, REG_EXTENDED))
901 for (l = list; l; l = l->next) {
902 l->item->object.flags |= ONELINE_SEEN;
903 commit_list_insert(l->item, &backup);
907 struct commit *commit;
910 commit = pop_most_recent_commit(&list, ONELINE_SEEN);
911 if (!parse_object(commit->object.oid.hash))
913 buf = get_commit_buffer(commit, NULL);
914 p = strstr(buf, "\n\n");
915 matches = negative ^ (p && !regexec(®ex, p + 2, 0, NULL, 0));
916 unuse_commit_buffer(commit, buf);
919 hashcpy(sha1, commit->object.oid.hash);
925 free_commit_list(list);
926 for (l = backup; l; l = l->next)
927 clear_commit_marks(l->item, ONELINE_SEEN);
928 free_commit_list(backup);
929 return found ? 0 : -1;
932 struct grab_nth_branch_switch_cbdata {
937 static int grab_nth_branch_switch(unsigned char *osha1, unsigned char *nsha1,
938 const char *email, unsigned long timestamp, int tz,
939 const char *message, void *cb_data)
941 struct grab_nth_branch_switch_cbdata *cb = cb_data;
942 const char *match = NULL, *target = NULL;
945 if (skip_prefix(message, "checkout: moving from ", &match))
946 target = strstr(match, " to ");
948 if (!match || !target)
950 if (--(cb->remaining) == 0) {
951 len = target - match;
952 strbuf_reset(&cb->buf);
953 strbuf_add(&cb->buf, match, len);
954 return 1; /* we are done */
960 * Parse @{-N} syntax, return the number of characters parsed
961 * if successful; otherwise signal an error with negative value.
963 static int interpret_nth_prior_checkout(const char *name, int namelen,
968 struct grab_nth_branch_switch_cbdata cb;
974 if (name[0] != '@' || name[1] != '{' || name[2] != '-')
976 brace = memchr(name, '}', namelen);
979 nth = strtol(name + 3, &num_end, 10);
980 if (num_end != brace)
985 strbuf_init(&cb.buf, 20);
988 if (0 < for_each_reflog_ent_reverse("HEAD", grab_nth_branch_switch, &cb)) {
990 strbuf_addbuf(buf, &cb.buf);
991 retval = brace - name + 1;
994 strbuf_release(&cb.buf);
998 int get_sha1_mb(const char *name, unsigned char *sha1)
1000 struct commit *one, *two;
1001 struct commit_list *mbs;
1002 unsigned char sha1_tmp[20];
1006 dots = strstr(name, "...");
1008 return get_sha1(name, sha1);
1010 st = get_sha1("HEAD", sha1_tmp);
1013 strbuf_init(&sb, dots - name);
1014 strbuf_add(&sb, name, dots - name);
1015 st = get_sha1_committish(sb.buf, sha1_tmp);
1016 strbuf_release(&sb);
1020 one = lookup_commit_reference_gently(sha1_tmp, 0);
1024 if (get_sha1_committish(dots[3] ? (dots + 3) : "HEAD", sha1_tmp))
1026 two = lookup_commit_reference_gently(sha1_tmp, 0);
1029 mbs = get_merge_bases(one, two);
1030 if (!mbs || mbs->next)
1034 hashcpy(sha1, mbs->item->object.oid.hash);
1036 free_commit_list(mbs);
1040 /* parse @something syntax, when 'something' is not {.*} */
1041 static int interpret_empty_at(const char *name, int namelen, int len, struct strbuf *buf)
1045 if (len || name[1] == '{')
1048 /* make sure it's a single @, or @@{.*}, not @foo */
1049 next = memchr(name + len + 1, '@', namelen - len - 1);
1050 if (next && next[1] != '{')
1053 next = name + namelen;
1054 if (next != name + 1)
1058 strbuf_add(buf, "HEAD", 4);
1062 static int reinterpret(const char *name, int namelen, int len, struct strbuf *buf)
1064 /* we have extra data, which might need further processing */
1065 struct strbuf tmp = STRBUF_INIT;
1066 int used = buf->len;
1069 strbuf_add(buf, name + len, namelen - len);
1070 ret = interpret_branch_name(buf->buf, buf->len, &tmp);
1071 /* that data was not interpreted, remove our cruft */
1073 strbuf_setlen(buf, used);
1077 strbuf_addbuf(buf, &tmp);
1078 strbuf_release(&tmp);
1079 /* tweak for size of {-N} versus expanded ref name */
1080 return ret - used + len;
1083 static void set_shortened_ref(struct strbuf *buf, const char *ref)
1085 char *s = shorten_unambiguous_ref(ref, 0);
1087 strbuf_addstr(buf, s);
1091 static int interpret_branch_mark(const char *name, int namelen,
1092 int at, struct strbuf *buf,
1093 int (*get_mark)(const char *, int),
1094 const char *(*get_data)(struct branch *,
1098 struct branch *branch;
1099 struct strbuf err = STRBUF_INIT;
1102 len = get_mark(name + at, namelen - at);
1106 if (memchr(name, ':', at))
1110 char *name_str = xmemdupz(name, at);
1111 branch = branch_get(name_str);
1114 branch = branch_get(NULL);
1116 value = get_data(branch, &err);
1120 set_shortened_ref(buf, value);
1125 * This reads short-hand syntax that not only evaluates to a commit
1126 * object name, but also can act as if the end user spelled the name
1127 * of the branch from the command line.
1129 * - "@{-N}" finds the name of the Nth previous branch we were on, and
1130 * places the name of the branch in the given buf and returns the
1131 * number of characters parsed if successful.
1133 * - "<branch>@{upstream}" finds the name of the other ref that
1134 * <branch> is configured to merge with (missing <branch> defaults
1135 * to the current branch), and places the name of the branch in the
1136 * given buf and returns the number of characters parsed if
1139 * If the input is not of the accepted format, it returns a negative
1140 * number to signal an error.
1142 * If the input was ok but there are not N branch switches in the
1143 * reflog, it returns 0.
1145 int interpret_branch_name(const char *name, int namelen, struct strbuf *buf)
1149 int len = interpret_nth_prior_checkout(name, namelen, buf);
1152 namelen = strlen(name);
1155 return len; /* syntax Ok, not enough switches */
1156 } else if (len > 0) {
1158 return len; /* consumed all */
1160 return reinterpret(name, namelen, len, buf);
1164 (at = memchr(start, '@', namelen - (start - name)));
1167 len = interpret_empty_at(name, namelen, at - name, buf);
1169 return reinterpret(name, namelen, len, buf);
1171 len = interpret_branch_mark(name, namelen, at - name, buf,
1172 upstream_mark, branch_get_upstream);
1176 len = interpret_branch_mark(name, namelen, at - name, buf,
1177 push_mark, branch_get_push);
1185 int strbuf_branchname(struct strbuf *sb, const char *name)
1187 int len = strlen(name);
1188 int used = interpret_branch_name(name, len, sb);
1194 strbuf_add(sb, name + used, len - used);
1198 int strbuf_check_branch_ref(struct strbuf *sb, const char *name)
1200 strbuf_branchname(sb, name);
1203 strbuf_splice(sb, 0, 0, "refs/heads/", 11);
1204 return check_refname_format(sb->buf, 0);
1208 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
1209 * notably "xyz^" for "parent of xyz"
1211 int get_sha1(const char *name, unsigned char *sha1)
1213 struct object_context unused;
1214 return get_sha1_with_context(name, 0, sha1, &unused);
1218 * Many callers know that the user meant to name a commit-ish by
1219 * syntactical positions where the object name appears. Calling this
1220 * function allows the machinery to disambiguate shorter-than-unique
1221 * abbreviated object names between commit-ish and others.
1223 * Note that this does NOT error out when the named object is not a
1224 * commit-ish. It is merely to give a hint to the disambiguation
1227 int get_sha1_committish(const char *name, unsigned char *sha1)
1229 struct object_context unused;
1230 return get_sha1_with_context(name, GET_SHA1_COMMITTISH,
1234 int get_sha1_treeish(const char *name, unsigned char *sha1)
1236 struct object_context unused;
1237 return get_sha1_with_context(name, GET_SHA1_TREEISH,
1241 int get_sha1_commit(const char *name, unsigned char *sha1)
1243 struct object_context unused;
1244 return get_sha1_with_context(name, GET_SHA1_COMMIT,
1248 int get_sha1_tree(const char *name, unsigned char *sha1)
1250 struct object_context unused;
1251 return get_sha1_with_context(name, GET_SHA1_TREE,
1255 int get_sha1_blob(const char *name, unsigned char *sha1)
1257 struct object_context unused;
1258 return get_sha1_with_context(name, GET_SHA1_BLOB,
1262 /* Must be called only when object_name:filename doesn't exist. */
1263 static void diagnose_invalid_sha1_path(const char *prefix,
1264 const char *filename,
1265 const unsigned char *tree_sha1,
1266 const char *object_name,
1267 int object_name_len)
1269 unsigned char sha1[20];
1275 if (file_exists(filename))
1276 die("Path '%s' exists on disk, but not in '%.*s'.",
1277 filename, object_name_len, object_name);
1278 if (errno == ENOENT || errno == ENOTDIR) {
1279 char *fullname = xstrfmt("%s%s", prefix, filename);
1281 if (!get_tree_entry(tree_sha1, fullname,
1283 die("Path '%s' exists, but not '%s'.\n"
1284 "Did you mean '%.*s:%s' aka '%.*s:./%s'?",
1287 object_name_len, object_name,
1289 object_name_len, object_name,
1292 die("Path '%s' does not exist in '%.*s'",
1293 filename, object_name_len, object_name);
1297 /* Must be called only when :stage:filename doesn't exist. */
1298 static void diagnose_invalid_index_path(int stage,
1300 const char *filename)
1302 const struct cache_entry *ce;
1304 unsigned namelen = strlen(filename);
1305 struct strbuf fullname = STRBUF_INIT;
1310 /* Wrong stage number? */
1311 pos = cache_name_pos(filename, namelen);
1314 if (pos < active_nr) {
1315 ce = active_cache[pos];
1316 if (ce_namelen(ce) == namelen &&
1317 !memcmp(ce->name, filename, namelen))
1318 die("Path '%s' is in the index, but not at stage %d.\n"
1319 "Did you mean ':%d:%s'?",
1321 ce_stage(ce), filename);
1324 /* Confusion between relative and absolute filenames? */
1325 strbuf_addstr(&fullname, prefix);
1326 strbuf_addstr(&fullname, filename);
1327 pos = cache_name_pos(fullname.buf, fullname.len);
1330 if (pos < active_nr) {
1331 ce = active_cache[pos];
1332 if (ce_namelen(ce) == fullname.len &&
1333 !memcmp(ce->name, fullname.buf, fullname.len))
1334 die("Path '%s' is in the index, but not '%s'.\n"
1335 "Did you mean ':%d:%s' aka ':%d:./%s'?",
1336 fullname.buf, filename,
1337 ce_stage(ce), fullname.buf,
1338 ce_stage(ce), filename);
1341 if (file_exists(filename))
1342 die("Path '%s' exists on disk, but not in the index.", filename);
1343 if (errno == ENOENT || errno == ENOTDIR)
1344 die("Path '%s' does not exist (neither on disk nor in the index).",
1347 strbuf_release(&fullname);
1351 static char *resolve_relative_path(const char *rel)
1353 if (!starts_with(rel, "./") && !starts_with(rel, "../"))
1356 if (!is_inside_work_tree())
1357 die("relative path syntax can't be used outside working tree.");
1359 /* die() inside prefix_path() if resolved path is outside worktree */
1360 return prefix_path(startup_info->prefix,
1361 startup_info->prefix ? strlen(startup_info->prefix) : 0,
1365 static int get_sha1_with_context_1(const char *name,
1368 unsigned char *sha1,
1369 struct object_context *oc)
1371 int ret, bracket_depth;
1372 int namelen = strlen(name);
1374 int only_to_die = flags & GET_SHA1_ONLY_TO_DIE;
1376 memset(oc, 0, sizeof(*oc));
1377 oc->mode = S_IFINVALID;
1378 ret = get_sha1_1(name, namelen, sha1, flags);
1382 * sha1:path --> object name of path in ent sha1
1383 * :path -> object name of absolute path in index
1384 * :./path -> object name of path relative to cwd in index
1385 * :[0-3]:path -> object name of path in index at stage
1386 * :/foo -> recent commit matching foo
1388 if (name[0] == ':') {
1390 const struct cache_entry *ce;
1391 char *new_path = NULL;
1393 if (!only_to_die && namelen > 2 && name[1] == '/') {
1394 struct commit_list *list = NULL;
1396 for_each_ref(handle_one_ref, &list);
1397 commit_list_sort_by_date(&list);
1398 return get_sha1_oneline(name + 2, sha1, list);
1402 name[1] < '0' || '3' < name[1])
1405 stage = name[1] - '0';
1408 new_path = resolve_relative_path(cp);
1410 namelen = namelen - (cp - name);
1413 namelen = strlen(cp);
1416 strlcpy(oc->path, cp, sizeof(oc->path));
1420 pos = cache_name_pos(cp, namelen);
1423 while (pos < active_nr) {
1424 ce = active_cache[pos];
1425 if (ce_namelen(ce) != namelen ||
1426 memcmp(ce->name, cp, namelen))
1428 if (ce_stage(ce) == stage) {
1429 hashcpy(sha1, ce->sha1);
1430 oc->mode = ce->ce_mode;
1436 if (only_to_die && name[1] && name[1] != '/')
1437 diagnose_invalid_index_path(stage, prefix, cp);
1441 for (cp = name, bracket_depth = 0; *cp; cp++) {
1444 else if (bracket_depth && *cp == '}')
1446 else if (!bracket_depth && *cp == ':')
1450 unsigned char tree_sha1[20];
1451 int len = cp - name;
1452 if (!get_sha1_1(name, len, tree_sha1, GET_SHA1_TREEISH)) {
1453 const char *filename = cp+1;
1454 char *new_filename = NULL;
1456 new_filename = resolve_relative_path(filename);
1458 filename = new_filename;
1459 if (flags & GET_SHA1_FOLLOW_SYMLINKS) {
1460 ret = get_tree_entry_follow_symlinks(tree_sha1,
1461 filename, sha1, &oc->symlink_path,
1464 ret = get_tree_entry(tree_sha1, filename,
1466 if (ret && only_to_die) {
1467 diagnose_invalid_sha1_path(prefix,
1473 hashcpy(oc->tree, tree_sha1);
1474 strlcpy(oc->path, filename, sizeof(oc->path));
1480 die("Invalid object name '%.*s'.", len, name);
1487 * Call this function when you know "name" given by the end user must
1488 * name an object but it doesn't; the function _may_ die with a better
1489 * diagnostic message than "no such object 'name'", e.g. "Path 'doc' does not
1490 * exist in 'HEAD'" when given "HEAD:doc", or it may return in which case
1491 * you have a chance to diagnose the error further.
1493 void maybe_die_on_misspelt_object_name(const char *name, const char *prefix)
1495 struct object_context oc;
1496 unsigned char sha1[20];
1497 get_sha1_with_context_1(name, GET_SHA1_ONLY_TO_DIE, prefix, sha1, &oc);
1500 int get_sha1_with_context(const char *str, unsigned flags, unsigned char *sha1, struct object_context *orc)
1502 if (flags & GET_SHA1_FOLLOW_SYMLINKS && flags & GET_SHA1_ONLY_TO_DIE)
1503 die("BUG: incompatible flags for get_sha1_with_context");
1504 return get_sha1_with_context_1(str, flags, NULL, sha1, orc);