]>
Commit | Line | Data |
---|---|---|
baffc0e7 | 1 | #include "builtin.h" |
358ddb62 | 2 | #include "cache.h" |
8e712ef6 | 3 | #include "config.h" |
358ddb62 | 4 | #include "refs.h" |
cbd53a21 | 5 | #include "object-store.h" |
358ddb62 LT |
6 | #include "object.h" |
7 | #include "tag.h" | |
c455c87c | 8 | #include "string-list.h" |
69932bc6 | 9 | #include "parse-options.h" |
358ddb62 | 10 | |
69932bc6 | 11 | static const char * const show_ref_usage[] = { |
9c9b4f2f | 12 | N_("git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"), |
33e8fc87 | 13 | N_("git show-ref --exclude-existing[=<pattern>]"), |
69932bc6 SB |
14 | NULL |
15 | }; | |
358ddb62 | 16 | |
69932bc6 SB |
17 | static int deref_tags, show_head, tags_only, heads_only, found_match, verify, |
18 | quiet, hash_only, abbrev, exclude_arg; | |
358ddb62 | 19 | static const char **pattern; |
69932bc6 | 20 | static const char *exclude_existing_arg; |
358ddb62 | 21 | |
f0a011fa | 22 | static void show_one(const char *refname, const struct object_id *oid) |
64fe031a | 23 | { |
f1627040 VP |
24 | const char *hex; |
25 | struct object_id peeled; | |
26 | ||
98374a07 | 27 | if (!has_object_file(oid)) |
d01b8203 VP |
28 | die("git show-ref: bad ref %s (%s)", refname, |
29 | oid_to_hex(oid)); | |
30 | ||
14144d3b VP |
31 | if (quiet) |
32 | return; | |
33 | ||
aab9583f | 34 | hex = find_unique_abbrev(oid, abbrev); |
64fe031a JH |
35 | if (hash_only) |
36 | printf("%s\n", hex); | |
37 | else | |
38 | printf("%s %s\n", hex, refname); | |
f1627040 VP |
39 | |
40 | if (!deref_tags) | |
41 | return; | |
42 | ||
b420d909 | 43 | if (!peel_ref(refname, &peeled)) { |
aab9583f | 44 | hex = find_unique_abbrev(&peeled, abbrev); |
f1627040 VP |
45 | printf("%s %s^{}\n", hex, refname); |
46 | } | |
64fe031a JH |
47 | } |
48 | ||
f0a011fa MH |
49 | static int show_ref(const char *refname, const struct object_id *oid, |
50 | int flag, void *cbdata) | |
358ddb62 | 51 | { |
3f3d0cea DB |
52 | if (show_head && !strcmp(refname, "HEAD")) |
53 | goto match; | |
54 | ||
358ddb62 LT |
55 | if (tags_only || heads_only) { |
56 | int match; | |
57 | ||
59556548 CC |
58 | match = heads_only && starts_with(refname, "refs/heads/"); |
59 | match |= tags_only && starts_with(refname, "refs/tags/"); | |
358ddb62 LT |
60 | if (!match) |
61 | return 0; | |
62 | } | |
63 | if (pattern) { | |
64 | int reflen = strlen(refname); | |
65 | const char **p = pattern, *m; | |
66 | while ((m = *p++) != NULL) { | |
67 | int len = strlen(m); | |
68 | if (len > reflen) | |
69 | continue; | |
70 | if (memcmp(m, refname + reflen - len, len)) | |
71 | continue; | |
72 | if (len == reflen) | |
73 | goto match; | |
358ddb62 LT |
74 | if (refname[reflen - len - 1] == '/') |
75 | goto match; | |
76 | } | |
77 | return 0; | |
78 | } | |
79 | ||
80 | match: | |
81 | found_match++; | |
cf0adba7 | 82 | |
f0a011fa | 83 | show_one(refname, oid); |
cf0adba7 | 84 | |
358ddb62 LT |
85 | return 0; |
86 | } | |
87 | ||
f0a011fa MH |
88 | static int add_existing(const char *refname, const struct object_id *oid, |
89 | int flag, void *cbdata) | |
ed9f7c95 | 90 | { |
c455c87c | 91 | struct string_list *list = (struct string_list *)cbdata; |
78a395d3 | 92 | string_list_insert(list, refname); |
ed9f7c95 JH |
93 | return 0; |
94 | } | |
95 | ||
96 | /* | |
97 | * read "^(?:<anything>\s)?<refname>(?:\^\{\})?$" from the standard input, | |
98 | * and | |
99 | * (1) strip "^{}" at the end of line if any; | |
100 | * (2) ignore if match is provided and does not head-match refname; | |
101 | * (3) warn if refname is not a well-formed refname and skip; | |
102 | * (4) ignore if refname is a ref that exists in the local repository; | |
103 | * (5) otherwise output the line. | |
104 | */ | |
105 | static int exclude_existing(const char *match) | |
106 | { | |
66ce0366 | 107 | static struct string_list existing_refs = STRING_LIST_INIT_DUP; |
ed9f7c95 JH |
108 | char buf[1024]; |
109 | int matchlen = match ? strlen(match) : 0; | |
110 | ||
f0a011fa | 111 | for_each_ref(add_existing, &existing_refs); |
ed9f7c95 | 112 | while (fgets(buf, sizeof(buf), stdin)) { |
ed9f7c95 | 113 | char *ref; |
d8285af4 JH |
114 | int len = strlen(buf); |
115 | ||
ed9f7c95 JH |
116 | if (len > 0 && buf[len - 1] == '\n') |
117 | buf[--len] = '\0'; | |
d8285af4 | 118 | if (3 <= len && !strcmp(buf + len - 3, "^{}")) { |
ed9f7c95 JH |
119 | len -= 3; |
120 | buf[len] = '\0'; | |
121 | } | |
122 | for (ref = buf + len; buf < ref; ref--) | |
123 | if (isspace(ref[-1])) | |
124 | break; | |
125 | if (match) { | |
126 | int reflen = buf + len - ref; | |
127 | if (reflen < matchlen) | |
128 | continue; | |
129 | if (strncmp(ref, match, matchlen)) | |
130 | continue; | |
131 | } | |
8d9c5010 | 132 | if (check_refname_format(ref, 0)) { |
5620e77e | 133 | warning("ref '%s' ignored", ref); |
ed9f7c95 JH |
134 | continue; |
135 | } | |
c455c87c | 136 | if (!string_list_has_string(&existing_refs, ref)) { |
ed9f7c95 JH |
137 | printf("%s\n", buf); |
138 | } | |
139 | } | |
140 | return 0; | |
141 | } | |
142 | ||
69932bc6 SB |
143 | static int hash_callback(const struct option *opt, const char *arg, int unset) |
144 | { | |
145 | hash_only = 1; | |
146 | /* Use full length SHA1 if no argument */ | |
147 | if (!arg) | |
148 | return 0; | |
149 | return parse_opt_abbrev_cb(opt, arg, unset); | |
150 | } | |
151 | ||
152 | static int exclude_existing_callback(const struct option *opt, const char *arg, | |
153 | int unset) | |
154 | { | |
517fe807 | 155 | BUG_ON_OPT_NEG(unset); |
69932bc6 SB |
156 | exclude_arg = 1; |
157 | *(const char **)opt->value = arg; | |
158 | return 0; | |
159 | } | |
160 | ||
69932bc6 | 161 | static const struct option show_ref_options[] = { |
d5d09d47 SB |
162 | OPT_BOOL(0, "tags", &tags_only, N_("only show tags (can be combined with heads)")), |
163 | OPT_BOOL(0, "heads", &heads_only, N_("only show heads (can be combined with tags)")), | |
164 | OPT_BOOL(0, "verify", &verify, N_("stricter reference checking, " | |
c9120b1c | 165 | "requires exact ref path")), |
4741edd5 SB |
166 | OPT_HIDDEN_BOOL('h', NULL, &show_head, |
167 | N_("show the HEAD reference, even if it would be filtered out")), | |
d5d09d47 | 168 | OPT_BOOL(0, "head", &show_head, |
3f3d0cea | 169 | N_("show the HEAD reference, even if it would be filtered out")), |
d5d09d47 | 170 | OPT_BOOL('d', "dereference", &deref_tags, |
c9120b1c | 171 | N_("dereference tags into object IDs")), |
203c8533 DL |
172 | OPT_CALLBACK_F('s', "hash", &abbrev, N_("n"), |
173 | N_("only show SHA1 hash using <n> digits"), | |
174 | PARSE_OPT_OPTARG, &hash_callback), | |
69932bc6 | 175 | OPT__ABBREV(&abbrev), |
8c839683 | 176 | OPT__QUIET(&quiet, |
c9120b1c | 177 | N_("do not print results to stdout (useful with --verify)")), |
203c8533 DL |
178 | OPT_CALLBACK_F(0, "exclude-existing", &exclude_existing_arg, |
179 | N_("pattern"), N_("show refs from stdin that aren't in local repository"), | |
180 | PARSE_OPT_OPTARG | PARSE_OPT_NONEG, exclude_existing_callback), | |
69932bc6 SB |
181 | OPT_END() |
182 | }; | |
183 | ||
358ddb62 LT |
184 | int cmd_show_ref(int argc, const char **argv, const char *prefix) |
185 | { | |
8e712ef6 EN |
186 | git_config(git_default_config, NULL); |
187 | ||
69932bc6 | 188 | argc = parse_options(argc, argv, prefix, show_ref_options, |
42fdf86e | 189 | show_ref_usage, 0); |
358ddb62 | 190 | |
69932bc6 SB |
191 | if (exclude_arg) |
192 | return exclude_existing(exclude_existing_arg); | |
193 | ||
194 | pattern = argv; | |
195 | if (!*pattern) | |
196 | pattern = NULL; | |
26cdd1e7 JH |
197 | |
198 | if (verify) { | |
8ab40a20 DL |
199 | if (!pattern) |
200 | die("--verify requires a reference"); | |
26cdd1e7 | 201 | while (*pattern) { |
f0a011fa | 202 | struct object_id oid; |
8ab40a20 | 203 | |
ec7c51bc | 204 | if ((starts_with(*pattern, "refs/") || !strcmp(*pattern, "HEAD")) && |
34c290a6 | 205 | !read_ref(*pattern, &oid)) { |
14144d3b | 206 | show_one(*pattern, &oid); |
dd914299 | 207 | } |
26cdd1e7 JH |
208 | else if (!quiet) |
209 | die("'%s' - not a valid ref", *pattern); | |
210 | else | |
211 | return 1; | |
212 | pattern++; | |
213 | } | |
214 | return 0; | |
215 | } | |
216 | ||
358ddb62 | 217 | if (show_head) |
f0a011fa MH |
218 | head_ref(show_ref, NULL); |
219 | for_each_ref(show_ref, NULL); | |
358ddb62 LT |
220 | if (!found_match) { |
221 | if (verify && !quiet) | |
222 | die("No match"); | |
223 | return 1; | |
224 | } | |
225 | return 0; | |
226 | } |