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 int objdir_len = strlen(objdir);
91 int entlen = objdir_len + 43;
92 fakeent = xmalloc(sizeof(*fakeent) + entlen);
93 memcpy(fakeent->base, objdir, objdir_len);
94 fakeent->name = fakeent->base + objdir_len + 1;
95 fakeent->name[-1] = '/';
97 fakeent->next = alt_odb_list;
99 sprintf(hex, "%.2s", hex_pfx);
100 for (alt = fakeent; alt && !ds->ambiguous; alt = alt->next) {
103 sprintf(alt->name, "%.2s/", hex_pfx);
104 dir = opendir(alt->base);
108 while (!ds->ambiguous && (de = readdir(dir)) != NULL) {
109 unsigned char sha1[20];
111 if (strlen(de->d_name) != 38)
113 if (memcmp(de->d_name, hex_pfx + 2, len - 2))
115 memcpy(hex + 2, de->d_name, 38);
116 if (!get_sha1_hex(hex, sha1))
117 update_candidates(ds, sha1);
123 static int match_sha(unsigned len, const unsigned char *a, const unsigned char *b)
133 if ((*a ^ *b) & 0xf0)
138 static void unique_in_pack(int len,
139 const unsigned char *bin_pfx,
140 struct packed_git *p,
141 struct disambiguate_state *ds)
143 uint32_t num, last, i, first = 0;
144 const unsigned char *current = NULL;
147 num = p->num_objects;
149 while (first < last) {
150 uint32_t mid = (first + last) / 2;
151 const unsigned char *current;
154 current = nth_packed_object_sha1(p, mid);
155 cmp = hashcmp(bin_pfx, current);
168 * At this point, "first" is the location of the lowest object
169 * with an object name that could match "bin_pfx". See if we have
170 * 0, 1 or more objects that actually match(es).
172 for (i = first; i < num && !ds->ambiguous; i++) {
173 current = nth_packed_object_sha1(p, i);
174 if (!match_sha(len, bin_pfx, current))
176 update_candidates(ds, current);
180 static void find_short_packed_object(int len, const unsigned char *bin_pfx,
181 struct disambiguate_state *ds)
183 struct packed_git *p;
185 prepare_packed_git();
186 for (p = packed_git; p && !ds->ambiguous; p = p->next)
187 unique_in_pack(len, bin_pfx, p, ds);
190 #define SHORT_NAME_NOT_FOUND (-1)
191 #define SHORT_NAME_AMBIGUOUS (-2)
193 static int finish_object_disambiguation(struct disambiguate_state *ds,
197 return SHORT_NAME_AMBIGUOUS;
199 if (!ds->candidate_exists)
200 return SHORT_NAME_NOT_FOUND;
202 if (!ds->candidate_checked)
204 * If this is the only candidate, there is no point
205 * calling the disambiguation hint callback.
207 * On the other hand, if the current candidate
208 * replaced an earlier candidate that did _not_ pass
209 * the disambiguation hint callback, then we do have
210 * more than one objects that match the short name
211 * given, so we should make sure this one matches;
212 * otherwise, if we discovered this one and the one
213 * that we previously discarded in the reverse order,
214 * we would end up showing different results in the
217 ds->candidate_ok = (!ds->disambiguate_fn_used ||
218 ds->fn(ds->candidate, ds->cb_data));
220 if (!ds->candidate_ok)
221 return SHORT_NAME_AMBIGUOUS;
223 hashcpy(sha1, ds->candidate);
227 static int disambiguate_commit_only(const unsigned char *sha1, void *cb_data_unused)
229 int kind = sha1_object_info(sha1, NULL);
230 return kind == OBJ_COMMIT;
233 static int disambiguate_committish_only(const unsigned char *sha1, void *cb_data_unused)
238 kind = sha1_object_info(sha1, NULL);
239 if (kind == OBJ_COMMIT)
244 /* We need to do this the hard way... */
245 obj = deref_tag(parse_object(sha1), NULL, 0);
246 if (obj && obj->type == OBJ_COMMIT)
251 static int disambiguate_tree_only(const unsigned char *sha1, void *cb_data_unused)
253 int kind = sha1_object_info(sha1, NULL);
254 return kind == OBJ_TREE;
257 static int disambiguate_treeish_only(const unsigned char *sha1, void *cb_data_unused)
262 kind = sha1_object_info(sha1, NULL);
263 if (kind == OBJ_TREE || kind == OBJ_COMMIT)
268 /* We need to do this the hard way... */
269 obj = deref_tag(lookup_object(sha1), NULL, 0);
270 if (obj && (obj->type == OBJ_TREE || obj->type == OBJ_COMMIT))
275 static int disambiguate_blob_only(const unsigned char *sha1, void *cb_data_unused)
277 int kind = sha1_object_info(sha1, NULL);
278 return kind == OBJ_BLOB;
281 static int prepare_prefixes(const char *name, int len,
282 unsigned char *bin_pfx,
288 memset(hex_pfx, 'x', 40);
289 for (i = 0; i < len ;i++) {
290 unsigned char c = name[i];
292 if (c >= '0' && c <= '9')
294 else if (c >= 'a' && c <= 'f')
296 else if (c >= 'A' && c <='F') {
305 bin_pfx[i >> 1] |= val;
310 static int get_short_sha1(const char *name, int len, unsigned char *sha1,
315 unsigned char bin_pfx[20];
316 struct disambiguate_state ds;
317 int quietly = !!(flags & GET_SHA1_QUIETLY);
319 if (len < MINIMUM_ABBREV || len > 40)
321 if (prepare_prefixes(name, len, bin_pfx, hex_pfx) < 0)
326 memset(&ds, 0, sizeof(ds));
327 if (flags & GET_SHA1_COMMIT)
328 ds.fn = disambiguate_commit_only;
329 else if (flags & GET_SHA1_COMMITTISH)
330 ds.fn = disambiguate_committish_only;
331 else if (flags & GET_SHA1_TREE)
332 ds.fn = disambiguate_tree_only;
333 else if (flags & GET_SHA1_TREEISH)
334 ds.fn = disambiguate_treeish_only;
335 else if (flags & GET_SHA1_BLOB)
336 ds.fn = disambiguate_blob_only;
338 find_short_object_filename(len, hex_pfx, &ds);
339 find_short_packed_object(len, bin_pfx, &ds);
340 status = finish_object_disambiguation(&ds, sha1);
342 if (!quietly && (status == SHORT_NAME_AMBIGUOUS))
343 return error("short SHA1 %.*s is ambiguous.", len, hex_pfx);
347 int for_each_abbrev(const char *prefix, each_abbrev_fn fn, void *cb_data)
350 unsigned char bin_pfx[20];
351 struct disambiguate_state ds;
352 int len = strlen(prefix);
354 if (len < MINIMUM_ABBREV || len > 40)
356 if (prepare_prefixes(prefix, len, bin_pfx, hex_pfx) < 0)
361 memset(&ds, 0, sizeof(ds));
362 ds.always_call_fn = 1;
363 ds.cb_data = cb_data;
366 find_short_object_filename(len, hex_pfx, &ds);
367 find_short_packed_object(len, bin_pfx, &ds);
371 const char *find_unique_abbrev(const unsigned char *sha1, int len)
376 memcpy(hex, sha1_to_hex(sha1), 40);
377 if (len == 40 || !len)
379 exists = has_sha1_file(sha1);
381 unsigned char sha1_ret[20];
382 status = get_short_sha1(hex, len, sha1_ret, GET_SHA1_QUIETLY);
385 : status == SHORT_NAME_NOT_FOUND) {
394 static int ambiguous_path(const char *path, int len)
399 for (cnt = 0; cnt < len; cnt++) {
419 static inline int at_mark(const char *string, int len,
420 const char **suffix, int nr)
424 for (i = 0; i < nr; i++) {
425 int suffix_len = strlen(suffix[i]);
426 if (suffix_len <= len
427 && !memcmp(string, suffix[i], suffix_len))
433 static inline int upstream_mark(const char *string, int len)
435 const char *suffix[] = { "@{upstream}", "@{u}" };
436 return at_mark(string, len, suffix, ARRAY_SIZE(suffix));
439 static inline int push_mark(const char *string, int len)
441 const char *suffix[] = { "@{push}" };
442 return at_mark(string, len, suffix, ARRAY_SIZE(suffix));
445 static int get_sha1_1(const char *name, int len, unsigned char *sha1, unsigned lookup_flags);
446 static int interpret_nth_prior_checkout(const char *name, int namelen, struct strbuf *buf);
448 static int get_sha1_basic(const char *str, int len, unsigned char *sha1,
451 static const char *warn_msg = "refname '%.*s' is ambiguous.";
452 static const char *object_name_msg = N_(
453 "Git normally never creates a ref that ends with 40 hex characters\n"
454 "because it will be ignored when you just specify 40-hex. These refs\n"
455 "may be created by mistake. For example,\n"
457 " git checkout -b $br $(git rev-parse ...)\n"
459 "where \"$br\" is somehow empty and a 40-hex ref is created. Please\n"
460 "examine these refs and maybe delete them. Turn this message off by\n"
461 "running \"git config advice.objectNameWarning false\"");
462 unsigned char tmp_sha1[20];
463 char *real_ref = NULL;
465 int at, reflog_len, nth_prior = 0;
467 if (len == 40 && !get_sha1_hex(str, sha1)) {
468 if (warn_ambiguous_refs && warn_on_object_refname_ambiguity) {
469 refs_found = dwim_ref(str, len, tmp_sha1, &real_ref);
470 if (refs_found > 0) {
471 warning(warn_msg, len, str);
472 if (advice_object_name_warning)
473 fprintf(stderr, "%s\n", _(object_name_msg));
480 /* basic@{time or number or -number} format to query ref-log */
482 if (len && str[len-1] == '}') {
483 for (at = len-4; at >= 0; at--) {
484 if (str[at] == '@' && str[at+1] == '{') {
485 if (str[at+2] == '-') {
487 /* @{-N} not at start */
492 if (!upstream_mark(str + at, len - at) &&
493 !push_mark(str + at, len - at)) {
494 reflog_len = (len-1) - (at+2);
502 /* Accept only unambiguous ref paths. */
503 if (len && ambiguous_path(str, len))
507 struct strbuf buf = STRBUF_INIT;
510 if (interpret_nth_prior_checkout(str, len, &buf) > 0) {
511 detached = (buf.len == 40 && !get_sha1_hex(buf.buf, sha1));
512 strbuf_release(&buf);
518 if (!len && reflog_len)
519 /* allow "@{...}" to mean the current branch reflog */
520 refs_found = dwim_ref("HEAD", 4, sha1, &real_ref);
522 refs_found = dwim_log(str, len, sha1, &real_ref);
524 refs_found = dwim_ref(str, len, sha1, &real_ref);
529 if (warn_ambiguous_refs && !(flags & GET_SHA1_QUIETLY) &&
531 !get_short_sha1(str, len, tmp_sha1, GET_SHA1_QUIETLY)))
532 warning(warn_msg, len, str);
536 unsigned long at_time;
537 unsigned long co_time;
540 /* Is it asking for N-th entry, or approxidate? */
541 for (i = nth = 0; 0 <= nth && i < reflog_len; i++) {
542 char ch = str[at+2+i];
543 if ('0' <= ch && ch <= '9')
544 nth = nth * 10 + ch - '0';
548 if (100000000 <= nth) {
555 char *tmp = xstrndup(str + at + 2, reflog_len);
556 at_time = approxidate_careful(tmp, &errors);
563 if (read_ref_at(real_ref, flags, at_time, nth, sha1, NULL,
564 &co_time, &co_tz, &co_cnt)) {
566 if (starts_with(real_ref, "refs/heads/")) {
568 len = strlen(real_ref + 11);
576 if (!(flags & GET_SHA1_QUIETLY)) {
577 warning("Log for '%.*s' only goes "
578 "back to %s.", len, str,
579 show_date(co_time, co_tz, DATE_RFC2822));
582 if (flags & GET_SHA1_QUIETLY) {
585 die("Log for '%.*s' only has %d entries.",
595 static int get_parent(const char *name, int len,
596 unsigned char *result, int idx)
598 unsigned char sha1[20];
599 int ret = get_sha1_1(name, len, sha1, GET_SHA1_COMMITTISH);
600 struct commit *commit;
601 struct commit_list *p;
605 commit = lookup_commit_reference(sha1);
606 if (parse_commit(commit))
609 hashcpy(result, commit->object.sha1);
615 hashcpy(result, p->item->object.sha1);
623 static int get_nth_ancestor(const char *name, int len,
624 unsigned char *result, int generation)
626 unsigned char sha1[20];
627 struct commit *commit;
630 ret = get_sha1_1(name, len, sha1, GET_SHA1_COMMITTISH);
633 commit = lookup_commit_reference(sha1);
637 while (generation--) {
638 if (parse_commit(commit) || !commit->parents)
640 commit = commit->parents->item;
642 hashcpy(result, commit->object.sha1);
646 struct object *peel_to_type(const char *name, int namelen,
647 struct object *o, enum object_type expected_type)
649 if (name && !namelen)
650 namelen = strlen(name);
652 if (!o || (!o->parsed && !parse_object(o->sha1)))
654 if (expected_type == OBJ_ANY || o->type == expected_type)
656 if (o->type == OBJ_TAG)
657 o = ((struct tag*) o)->tagged;
658 else if (o->type == OBJ_COMMIT)
659 o = &(((struct commit *) o)->tree->object);
662 error("%.*s: expected %s type, but the object "
663 "dereferences to %s type",
664 namelen, name, typename(expected_type),
671 static int peel_onion(const char *name, int len, unsigned char *sha1)
673 unsigned char outer[20];
675 unsigned int expected_type = 0;
676 unsigned lookup_flags = 0;
680 * "ref^{type}" dereferences ref repeatedly until you cannot
681 * dereference anymore, or you get an object of given type,
682 * whichever comes first. "ref^{}" means just dereference
683 * tags until you get a non-tag. "ref^0" is a shorthand for
684 * "ref^{commit}". "commit^{tree}" could be used to find the
685 * top-level tree of the given commit.
687 if (len < 4 || name[len-1] != '}')
690 for (sp = name + len - 1; name <= sp; sp--) {
692 if (ch == '{' && name < sp && sp[-1] == '^')
698 sp++; /* beginning of type name, or closing brace for empty */
699 if (starts_with(sp, "commit}"))
700 expected_type = OBJ_COMMIT;
701 else if (starts_with(sp, "tag}"))
702 expected_type = OBJ_TAG;
703 else if (starts_with(sp, "tree}"))
704 expected_type = OBJ_TREE;
705 else if (starts_with(sp, "blob}"))
706 expected_type = OBJ_BLOB;
707 else if (starts_with(sp, "object}"))
708 expected_type = OBJ_ANY;
709 else if (sp[0] == '}')
710 expected_type = OBJ_NONE;
711 else if (sp[0] == '/')
712 expected_type = OBJ_COMMIT;
716 if (expected_type == OBJ_COMMIT)
717 lookup_flags = GET_SHA1_COMMITTISH;
718 else if (expected_type == OBJ_TREE)
719 lookup_flags = GET_SHA1_TREEISH;
721 if (get_sha1_1(name, sp - name - 2, outer, lookup_flags))
724 o = parse_object(outer);
727 if (!expected_type) {
728 o = deref_tag(o, name, sp - name - 2);
729 if (!o || (!o->parsed && !parse_object(o->sha1)))
731 hashcpy(sha1, o->sha1);
736 * At this point, the syntax look correct, so
737 * if we do not get the needed object, we should
740 o = peel_to_type(name, len, o, expected_type);
744 hashcpy(sha1, o->sha1);
746 /* "$commit^{/foo}" */
749 struct commit_list *list = NULL;
752 * $commit^{/}. Some regex implementation may reject.
753 * We don't need regex anyway. '' pattern always matches.
758 prefix = xstrndup(sp + 1, name + len - 1 - (sp + 1));
759 commit_list_insert((struct commit *)o, &list);
760 ret = get_sha1_oneline(prefix, sha1, list);
767 static int get_describe_name(const char *name, int len, unsigned char *sha1)
770 unsigned flags = GET_SHA1_QUIETLY | GET_SHA1_COMMIT;
772 for (cp = name + len - 1; name + 2 <= cp; cp--) {
775 /* We must be looking at g in "SOMETHING-g"
776 * for it to be describe output.
778 if (ch == 'g' && cp[-1] == '-') {
781 return get_short_sha1(cp, len, sha1, flags);
788 static int get_sha1_1(const char *name, int len, unsigned char *sha1, unsigned lookup_flags)
794 * "name~3" is "name^^^", "name~" is "name~1", and "name^" is "name^1".
797 for (cp = name + len - 1; name <= cp; cp--) {
799 if ('0' <= ch && ch <= '9')
801 if (ch == '~' || ch == '^')
808 int len1 = cp - name;
810 while (cp < name + len)
811 num = num * 10 + *cp++ - '0';
812 if (!num && len1 == len - 1)
814 if (has_suffix == '^')
815 return get_parent(name, len1, sha1, num);
816 /* else if (has_suffix == '~') -- goes without saying */
817 return get_nth_ancestor(name, len1, sha1, num);
820 ret = peel_onion(name, len, sha1);
824 ret = get_sha1_basic(name, len, sha1, lookup_flags);
828 /* It could be describe output that is "SOMETHING-gXXXX" */
829 ret = get_describe_name(name, len, sha1);
833 return get_short_sha1(name, len, sha1, lookup_flags);
837 * This interprets names like ':/Initial revision of "git"' by searching
838 * through history and returning the first commit whose message starts
839 * the given regular expression.
841 * For future extension, ':/!' is reserved. If you want to match a message
842 * beginning with a '!', you have to repeat the exclamation mark.
845 /* Remember to update object flag allocation in object.h */
846 #define ONELINE_SEEN (1u<<20)
848 static int handle_one_ref(const char *path, const struct object_id *oid,
849 int flag, void *cb_data)
851 struct commit_list **list = cb_data;
852 struct object *object = parse_object(oid->hash);
855 if (object->type == OBJ_TAG) {
856 object = deref_tag(object, path, strlen(path));
860 if (object->type != OBJ_COMMIT)
862 commit_list_insert((struct commit *)object, list);
866 static int get_sha1_oneline(const char *prefix, unsigned char *sha1,
867 struct commit_list *list)
869 struct commit_list *backup = NULL, *l;
873 if (prefix[0] == '!') {
874 if (prefix[1] != '!')
875 die ("Invalid search pattern: %s", prefix);
879 if (regcomp(®ex, prefix, REG_EXTENDED))
880 die("Invalid search pattern: %s", prefix);
882 for (l = list; l; l = l->next) {
883 l->item->object.flags |= ONELINE_SEEN;
884 commit_list_insert(l->item, &backup);
888 struct commit *commit;
891 commit = pop_most_recent_commit(&list, ONELINE_SEEN);
892 if (!parse_object(commit->object.sha1))
894 buf = get_commit_buffer(commit, NULL);
895 p = strstr(buf, "\n\n");
896 matches = p && !regexec(®ex, p + 2, 0, NULL, 0);
897 unuse_commit_buffer(commit, buf);
900 hashcpy(sha1, commit->object.sha1);
906 free_commit_list(list);
907 for (l = backup; l; l = l->next)
908 clear_commit_marks(l->item, ONELINE_SEEN);
909 free_commit_list(backup);
910 return found ? 0 : -1;
913 struct grab_nth_branch_switch_cbdata {
918 static int grab_nth_branch_switch(unsigned char *osha1, unsigned char *nsha1,
919 const char *email, unsigned long timestamp, int tz,
920 const char *message, void *cb_data)
922 struct grab_nth_branch_switch_cbdata *cb = cb_data;
923 const char *match = NULL, *target = NULL;
926 if (skip_prefix(message, "checkout: moving from ", &match))
927 target = strstr(match, " to ");
929 if (!match || !target)
931 if (--(cb->remaining) == 0) {
932 len = target - match;
933 strbuf_reset(&cb->buf);
934 strbuf_add(&cb->buf, match, len);
935 return 1; /* we are done */
941 * Parse @{-N} syntax, return the number of characters parsed
942 * if successful; otherwise signal an error with negative value.
944 static int interpret_nth_prior_checkout(const char *name, int namelen,
949 struct grab_nth_branch_switch_cbdata cb;
955 if (name[0] != '@' || name[1] != '{' || name[2] != '-')
957 brace = memchr(name, '}', namelen);
960 nth = strtol(name + 3, &num_end, 10);
961 if (num_end != brace)
966 strbuf_init(&cb.buf, 20);
969 if (0 < for_each_reflog_ent_reverse("HEAD", grab_nth_branch_switch, &cb)) {
971 strbuf_addbuf(buf, &cb.buf);
972 retval = brace - name + 1;
975 strbuf_release(&cb.buf);
979 int get_sha1_mb(const char *name, unsigned char *sha1)
981 struct commit *one, *two;
982 struct commit_list *mbs;
983 unsigned char sha1_tmp[20];
987 dots = strstr(name, "...");
989 return get_sha1(name, sha1);
991 st = get_sha1("HEAD", sha1_tmp);
994 strbuf_init(&sb, dots - name);
995 strbuf_add(&sb, name, dots - name);
996 st = get_sha1_committish(sb.buf, sha1_tmp);
1001 one = lookup_commit_reference_gently(sha1_tmp, 0);
1005 if (get_sha1_committish(dots[3] ? (dots + 3) : "HEAD", sha1_tmp))
1007 two = lookup_commit_reference_gently(sha1_tmp, 0);
1010 mbs = get_merge_bases(one, two);
1011 if (!mbs || mbs->next)
1015 hashcpy(sha1, mbs->item->object.sha1);
1017 free_commit_list(mbs);
1021 /* parse @something syntax, when 'something' is not {.*} */
1022 static int interpret_empty_at(const char *name, int namelen, int len, struct strbuf *buf)
1026 if (len || name[1] == '{')
1029 /* make sure it's a single @, or @@{.*}, not @foo */
1030 next = memchr(name + len + 1, '@', namelen - len - 1);
1031 if (next && next[1] != '{')
1034 next = name + namelen;
1035 if (next != name + 1)
1039 strbuf_add(buf, "HEAD", 4);
1043 static int reinterpret(const char *name, int namelen, int len, struct strbuf *buf)
1045 /* we have extra data, which might need further processing */
1046 struct strbuf tmp = STRBUF_INIT;
1047 int used = buf->len;
1050 strbuf_add(buf, name + len, namelen - len);
1051 ret = interpret_branch_name(buf->buf, buf->len, &tmp);
1052 /* that data was not interpreted, remove our cruft */
1054 strbuf_setlen(buf, used);
1058 strbuf_addbuf(buf, &tmp);
1059 strbuf_release(&tmp);
1060 /* tweak for size of {-N} versus expanded ref name */
1061 return ret - used + len;
1064 static void set_shortened_ref(struct strbuf *buf, const char *ref)
1066 char *s = shorten_unambiguous_ref(ref, 0);
1068 strbuf_addstr(buf, s);
1072 static int interpret_branch_mark(const char *name, int namelen,
1073 int at, struct strbuf *buf,
1074 int (*get_mark)(const char *, int),
1075 const char *(*get_data)(struct branch *,
1079 struct branch *branch;
1080 struct strbuf err = STRBUF_INIT;
1083 len = get_mark(name + at, namelen - at);
1087 if (memchr(name, ':', at))
1091 char *name_str = xmemdupz(name, at);
1092 branch = branch_get(name_str);
1095 branch = branch_get(NULL);
1097 value = get_data(branch, &err);
1101 set_shortened_ref(buf, value);
1106 * This reads short-hand syntax that not only evaluates to a commit
1107 * object name, but also can act as if the end user spelled the name
1108 * of the branch from the command line.
1110 * - "@{-N}" finds the name of the Nth previous branch we were on, and
1111 * places the name of the branch in the given buf and returns the
1112 * number of characters parsed if successful.
1114 * - "<branch>@{upstream}" finds the name of the other ref that
1115 * <branch> is configured to merge with (missing <branch> defaults
1116 * to the current branch), and places the name of the branch in the
1117 * given buf and returns the number of characters parsed if
1120 * If the input is not of the accepted format, it returns a negative
1121 * number to signal an error.
1123 * If the input was ok but there are not N branch switches in the
1124 * reflog, it returns 0.
1126 int interpret_branch_name(const char *name, int namelen, struct strbuf *buf)
1130 int len = interpret_nth_prior_checkout(name, namelen, buf);
1133 namelen = strlen(name);
1136 return len; /* syntax Ok, not enough switches */
1137 } else if (len > 0) {
1139 return len; /* consumed all */
1141 return reinterpret(name, namelen, len, buf);
1145 (at = memchr(start, '@', namelen - (start - name)));
1148 len = interpret_empty_at(name, namelen, at - name, buf);
1150 return reinterpret(name, namelen, len, buf);
1152 len = interpret_branch_mark(name, namelen, at - name, buf,
1153 upstream_mark, branch_get_upstream);
1157 len = interpret_branch_mark(name, namelen, at - name, buf,
1158 push_mark, branch_get_push);
1166 int strbuf_branchname(struct strbuf *sb, const char *name)
1168 int len = strlen(name);
1169 int used = interpret_branch_name(name, len, sb);
1175 strbuf_add(sb, name + used, len - used);
1179 int strbuf_check_branch_ref(struct strbuf *sb, const char *name)
1181 strbuf_branchname(sb, name);
1184 strbuf_splice(sb, 0, 0, "refs/heads/", 11);
1185 return check_refname_format(sb->buf, 0);
1189 * This is like "get_sha1_basic()", except it allows "sha1 expressions",
1190 * notably "xyz^" for "parent of xyz"
1192 int get_sha1(const char *name, unsigned char *sha1)
1194 struct object_context unused;
1195 return get_sha1_with_context(name, 0, sha1, &unused);
1199 * Many callers know that the user meant to name a commit-ish by
1200 * syntactical positions where the object name appears. Calling this
1201 * function allows the machinery to disambiguate shorter-than-unique
1202 * abbreviated object names between commit-ish and others.
1204 * Note that this does NOT error out when the named object is not a
1205 * commit-ish. It is merely to give a hint to the disambiguation
1208 int get_sha1_committish(const char *name, unsigned char *sha1)
1210 struct object_context unused;
1211 return get_sha1_with_context(name, GET_SHA1_COMMITTISH,
1215 int get_sha1_treeish(const char *name, unsigned char *sha1)
1217 struct object_context unused;
1218 return get_sha1_with_context(name, GET_SHA1_TREEISH,
1222 int get_sha1_commit(const char *name, unsigned char *sha1)
1224 struct object_context unused;
1225 return get_sha1_with_context(name, GET_SHA1_COMMIT,
1229 int get_sha1_tree(const char *name, unsigned char *sha1)
1231 struct object_context unused;
1232 return get_sha1_with_context(name, GET_SHA1_TREE,
1236 int get_sha1_blob(const char *name, unsigned char *sha1)
1238 struct object_context unused;
1239 return get_sha1_with_context(name, GET_SHA1_BLOB,
1243 /* Must be called only when object_name:filename doesn't exist. */
1244 static void diagnose_invalid_sha1_path(const char *prefix,
1245 const char *filename,
1246 const unsigned char *tree_sha1,
1247 const char *object_name,
1248 int object_name_len)
1250 unsigned char sha1[20];
1256 if (file_exists(filename))
1257 die("Path '%s' exists on disk, but not in '%.*s'.",
1258 filename, object_name_len, object_name);
1259 if (errno == ENOENT || errno == ENOTDIR) {
1260 char *fullname = xstrfmt("%s%s", prefix, filename);
1262 if (!get_tree_entry(tree_sha1, fullname,
1264 die("Path '%s' exists, but not '%s'.\n"
1265 "Did you mean '%.*s:%s' aka '%.*s:./%s'?",
1268 object_name_len, object_name,
1270 object_name_len, object_name,
1273 die("Path '%s' does not exist in '%.*s'",
1274 filename, object_name_len, object_name);
1278 /* Must be called only when :stage:filename doesn't exist. */
1279 static void diagnose_invalid_index_path(int stage,
1281 const char *filename)
1283 const struct cache_entry *ce;
1285 unsigned namelen = strlen(filename);
1286 unsigned fullnamelen;
1292 /* Wrong stage number? */
1293 pos = cache_name_pos(filename, namelen);
1296 if (pos < active_nr) {
1297 ce = active_cache[pos];
1298 if (ce_namelen(ce) == namelen &&
1299 !memcmp(ce->name, filename, namelen))
1300 die("Path '%s' is in the index, but not at stage %d.\n"
1301 "Did you mean ':%d:%s'?",
1303 ce_stage(ce), filename);
1306 /* Confusion between relative and absolute filenames? */
1307 fullnamelen = namelen + strlen(prefix);
1308 fullname = xmalloc(fullnamelen + 1);
1309 strcpy(fullname, prefix);
1310 strcat(fullname, filename);
1311 pos = cache_name_pos(fullname, fullnamelen);
1314 if (pos < active_nr) {
1315 ce = active_cache[pos];
1316 if (ce_namelen(ce) == fullnamelen &&
1317 !memcmp(ce->name, fullname, fullnamelen))
1318 die("Path '%s' is in the index, but not '%s'.\n"
1319 "Did you mean ':%d:%s' aka ':%d:./%s'?",
1321 ce_stage(ce), fullname,
1322 ce_stage(ce), filename);
1325 if (file_exists(filename))
1326 die("Path '%s' exists on disk, but not in the index.", filename);
1327 if (errno == ENOENT || errno == ENOTDIR)
1328 die("Path '%s' does not exist (neither on disk nor in the index).",
1335 static char *resolve_relative_path(const char *rel)
1337 if (!starts_with(rel, "./") && !starts_with(rel, "../"))
1341 die("BUG: startup_info struct is not initialized.");
1343 if (!is_inside_work_tree())
1344 die("relative path syntax can't be used outside working tree.");
1346 /* die() inside prefix_path() if resolved path is outside worktree */
1347 return prefix_path(startup_info->prefix,
1348 startup_info->prefix ? strlen(startup_info->prefix) : 0,
1352 static int get_sha1_with_context_1(const char *name,
1355 unsigned char *sha1,
1356 struct object_context *oc)
1358 int ret, bracket_depth;
1359 int namelen = strlen(name);
1361 int only_to_die = flags & GET_SHA1_ONLY_TO_DIE;
1363 memset(oc, 0, sizeof(*oc));
1364 oc->mode = S_IFINVALID;
1365 ret = get_sha1_1(name, namelen, sha1, flags);
1369 * sha1:path --> object name of path in ent sha1
1370 * :path -> object name of absolute path in index
1371 * :./path -> object name of path relative to cwd in index
1372 * :[0-3]:path -> object name of path in index at stage
1373 * :/foo -> recent commit matching foo
1375 if (name[0] == ':') {
1377 const struct cache_entry *ce;
1378 char *new_path = NULL;
1380 if (!only_to_die && namelen > 2 && name[1] == '/') {
1381 struct commit_list *list = NULL;
1383 for_each_ref(handle_one_ref, &list);
1384 commit_list_sort_by_date(&list);
1385 return get_sha1_oneline(name + 2, sha1, list);
1389 name[1] < '0' || '3' < name[1])
1392 stage = name[1] - '0';
1395 new_path = resolve_relative_path(cp);
1397 namelen = namelen - (cp - name);
1400 namelen = strlen(cp);
1403 strlcpy(oc->path, cp, sizeof(oc->path));
1407 pos = cache_name_pos(cp, namelen);
1410 while (pos < active_nr) {
1411 ce = active_cache[pos];
1412 if (ce_namelen(ce) != namelen ||
1413 memcmp(ce->name, cp, namelen))
1415 if (ce_stage(ce) == stage) {
1416 hashcpy(sha1, ce->sha1);
1417 oc->mode = ce->ce_mode;
1423 if (only_to_die && name[1] && name[1] != '/')
1424 diagnose_invalid_index_path(stage, prefix, cp);
1428 for (cp = name, bracket_depth = 0; *cp; cp++) {
1431 else if (bracket_depth && *cp == '}')
1433 else if (!bracket_depth && *cp == ':')
1437 unsigned char tree_sha1[20];
1438 int len = cp - name;
1439 if (!get_sha1_1(name, len, tree_sha1, GET_SHA1_TREEISH)) {
1440 const char *filename = cp+1;
1441 char *new_filename = NULL;
1443 new_filename = resolve_relative_path(filename);
1445 filename = new_filename;
1446 if (flags & GET_SHA1_FOLLOW_SYMLINKS) {
1447 ret = get_tree_entry_follow_symlinks(tree_sha1,
1448 filename, sha1, &oc->symlink_path,
1451 ret = get_tree_entry(tree_sha1, filename,
1453 if (ret && only_to_die) {
1454 diagnose_invalid_sha1_path(prefix,
1460 hashcpy(oc->tree, tree_sha1);
1461 strlcpy(oc->path, filename, sizeof(oc->path));
1467 die("Invalid object name '%.*s'.", len, name);
1474 * Call this function when you know "name" given by the end user must
1475 * name an object but it doesn't; the function _may_ die with a better
1476 * diagnostic message than "no such object 'name'", e.g. "Path 'doc' does not
1477 * exist in 'HEAD'" when given "HEAD:doc", or it may return in which case
1478 * you have a chance to diagnose the error further.
1480 void maybe_die_on_misspelt_object_name(const char *name, const char *prefix)
1482 struct object_context oc;
1483 unsigned char sha1[20];
1484 get_sha1_with_context_1(name, GET_SHA1_ONLY_TO_DIE, prefix, sha1, &oc);
1487 int get_sha1_with_context(const char *str, unsigned flags, unsigned char *sha1, struct object_context *orc)
1489 if (flags & GET_SHA1_FOLLOW_SYMLINKS && flags & GET_SHA1_ONLY_TO_DIE)
1490 die("BUG: incompatible flags for get_sha1_with_context");
1491 return get_sha1_with_context_1(str, flags, NULL, sha1, orc);