Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / builtin / show-ref.c
blob5fa207a044e0691b9f82627b074645595603c2dd
1 #include "builtin.h"
2 #include "cache.h"
3 #include "config.h"
4 #include "refs.h"
5 #include "object-store.h"
6 #include "object.h"
7 #include "tag.h"
8 #include "string-list.h"
9 #include "parse-options.h"
11 static const char * const show_ref_usage[] = {
12 N_("git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"),
13 N_("git show-ref --exclude-existing[=<pattern>]"),
14 NULL
17 static int deref_tags, show_head, tags_only, heads_only, found_match, verify,
18 quiet, hash_only, abbrev, exclude_arg;
19 static const char **pattern;
20 static const char *exclude_existing_arg;
22 static void show_one(const char *refname, const struct object_id *oid)
24 const char *hex;
25 struct object_id peeled;
27 if (!has_object_file(oid))
28 die("git show-ref: bad ref %s (%s)", refname,
29 oid_to_hex(oid));
31 if (quiet)
32 return;
34 hex = find_unique_abbrev(oid, abbrev);
35 if (hash_only)
36 printf("%s\n", hex);
37 else
38 printf("%s %s\n", hex, refname);
40 if (!deref_tags)
41 return;
43 if (!peel_iterated_oid(oid, &peeled)) {
44 hex = find_unique_abbrev(&peeled, abbrev);
45 printf("%s %s^{}\n", hex, refname);
49 static int show_ref(const char *refname, const struct object_id *oid,
50 int flag, void *cbdata)
52 if (show_head && !strcmp(refname, "HEAD"))
53 goto match;
55 if (pattern) {
56 int reflen = strlen(refname);
57 const char **p = pattern, *m;
58 while ((m = *p++) != NULL) {
59 int len = strlen(m);
60 if (len > reflen)
61 continue;
62 if (memcmp(m, refname + reflen - len, len))
63 continue;
64 if (len == reflen)
65 goto match;
66 if (refname[reflen - len - 1] == '/')
67 goto match;
69 return 0;
72 match:
73 found_match++;
75 show_one(refname, oid);
77 return 0;
80 static int add_existing(const char *refname, const struct object_id *oid,
81 int flag, void *cbdata)
83 struct string_list *list = (struct string_list *)cbdata;
84 string_list_insert(list, refname);
85 return 0;
89 * read "^(?:<anything>\s)?<refname>(?:\^\{\})?$" from the standard input,
90 * and
91 * (1) strip "^{}" at the end of line if any;
92 * (2) ignore if match is provided and does not head-match refname;
93 * (3) warn if refname is not a well-formed refname and skip;
94 * (4) ignore if refname is a ref that exists in the local repository;
95 * (5) otherwise output the line.
97 static int exclude_existing(const char *match)
99 static struct string_list existing_refs = STRING_LIST_INIT_DUP;
100 char buf[1024];
101 int matchlen = match ? strlen(match) : 0;
103 for_each_ref(add_existing, &existing_refs);
104 while (fgets(buf, sizeof(buf), stdin)) {
105 char *ref;
106 int len = strlen(buf);
108 if (len > 0 && buf[len - 1] == '\n')
109 buf[--len] = '\0';
110 if (3 <= len && !strcmp(buf + len - 3, "^{}")) {
111 len -= 3;
112 buf[len] = '\0';
114 for (ref = buf + len; buf < ref; ref--)
115 if (isspace(ref[-1]))
116 break;
117 if (match) {
118 int reflen = buf + len - ref;
119 if (reflen < matchlen)
120 continue;
121 if (strncmp(ref, match, matchlen))
122 continue;
124 if (check_refname_format(ref, 0)) {
125 warning("ref '%s' ignored", ref);
126 continue;
128 if (!string_list_has_string(&existing_refs, ref)) {
129 printf("%s\n", buf);
132 return 0;
135 static int hash_callback(const struct option *opt, const char *arg, int unset)
137 hash_only = 1;
138 /* Use full length SHA1 if no argument */
139 if (!arg)
140 return 0;
141 return parse_opt_abbrev_cb(opt, arg, unset);
144 static int exclude_existing_callback(const struct option *opt, const char *arg,
145 int unset)
147 BUG_ON_OPT_NEG(unset);
148 exclude_arg = 1;
149 *(const char **)opt->value = arg;
150 return 0;
153 static const struct option show_ref_options[] = {
154 OPT_BOOL(0, "tags", &tags_only, N_("only show tags (can be combined with heads)")),
155 OPT_BOOL(0, "heads", &heads_only, N_("only show heads (can be combined with tags)")),
156 OPT_BOOL(0, "verify", &verify, N_("stricter reference checking, "
157 "requires exact ref path")),
158 OPT_HIDDEN_BOOL('h', NULL, &show_head,
159 N_("show the HEAD reference, even if it would be filtered out")),
160 OPT_BOOL(0, "head", &show_head,
161 N_("show the HEAD reference, even if it would be filtered out")),
162 OPT_BOOL('d', "dereference", &deref_tags,
163 N_("dereference tags into object IDs")),
164 OPT_CALLBACK_F('s', "hash", &abbrev, N_("n"),
165 N_("only show SHA1 hash using <n> digits"),
166 PARSE_OPT_OPTARG, &hash_callback),
167 OPT__ABBREV(&abbrev),
168 OPT__QUIET(&quiet,
169 N_("do not print results to stdout (useful with --verify)")),
170 OPT_CALLBACK_F(0, "exclude-existing", &exclude_existing_arg,
171 N_("pattern"), N_("show refs from stdin that aren't in local repository"),
172 PARSE_OPT_OPTARG | PARSE_OPT_NONEG, exclude_existing_callback),
173 OPT_END()
176 int cmd_show_ref(int argc, const char **argv, const char *prefix)
178 git_config(git_default_config, NULL);
180 argc = parse_options(argc, argv, prefix, show_ref_options,
181 show_ref_usage, 0);
183 if (exclude_arg)
184 return exclude_existing(exclude_existing_arg);
186 pattern = argv;
187 if (!*pattern)
188 pattern = NULL;
190 if (verify) {
191 if (!pattern)
192 die("--verify requires a reference");
193 while (*pattern) {
194 struct object_id oid;
196 if ((starts_with(*pattern, "refs/") || !strcmp(*pattern, "HEAD")) &&
197 !read_ref(*pattern, &oid)) {
198 show_one(*pattern, &oid);
200 else if (!quiet)
201 die("'%s' - not a valid ref", *pattern);
202 else
203 return 1;
204 pattern++;
206 return 0;
209 if (show_head)
210 head_ref(show_ref, NULL);
211 if (heads_only || tags_only) {
212 if (heads_only)
213 for_each_fullref_in("refs/heads/", show_ref, NULL);
214 if (tags_only)
215 for_each_fullref_in("refs/tags/", show_ref, NULL);
216 } else {
217 for_each_ref(show_ref, NULL);
219 if (!found_match) {
220 if (verify && !quiet)
221 die("No match");
222 return 1;
224 return 0;