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