Peter Hagervall | baffc0e | 2007-07-15 01:14:45 +0200 | [diff] [blame] | 1 | #include "builtin.h" |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 2 | #include "cache.h" |
| 3 | #include "refs.h" |
| 4 | #include "object.h" |
| 5 | #include "tag.h" |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 6 | #include "string-list.h" |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 7 | #include "parse-options.h" |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 8 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 9 | static const char * const show_ref_usage[] = { |
Alex Henrie | 9c9b4f2 | 2015-01-13 00:44:47 -0700 | [diff] [blame] | 10 | N_("git show-ref [-q | --quiet] [--verify] [--head] [-d | --dereference] [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags] [--heads] [--] [<pattern>...]"), |
Junio C Hamano | 33e8fc8 | 2015-10-16 11:27:42 -0700 | [diff] [blame] | 11 | N_("git show-ref --exclude-existing[=<pattern>]"), |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 12 | NULL |
| 13 | }; |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 14 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 15 | static int deref_tags, show_head, tags_only, heads_only, found_match, verify, |
| 16 | quiet, hash_only, abbrev, exclude_arg; |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 17 | static const char **pattern; |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 18 | static const char *exclude_existing_arg; |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 19 | |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 20 | static void show_one(const char *refname, const struct object_id *oid) |
Junio C Hamano | 64fe031 | 2006-12-17 19:27:49 -0800 | [diff] [blame] | 21 | { |
Vladimir Panteleev | f162704 | 2017-01-23 18:00:56 +0000 | [diff] [blame] | 22 | const char *hex; |
| 23 | struct object_id peeled; |
| 24 | |
Vladimir Panteleev | d01b820 | 2017-01-23 18:00:58 +0000 | [diff] [blame] | 25 | if (!has_sha1_file(oid->hash)) |
| 26 | die("git show-ref: bad ref %s (%s)", refname, |
| 27 | oid_to_hex(oid)); |
| 28 | |
Vladimir Panteleev | 14144d3 | 2017-01-23 18:00:57 +0000 | [diff] [blame] | 29 | if (quiet) |
| 30 | return; |
| 31 | |
Vladimir Panteleev | f162704 | 2017-01-23 18:00:56 +0000 | [diff] [blame] | 32 | hex = find_unique_abbrev(oid->hash, abbrev); |
Junio C Hamano | 64fe031 | 2006-12-17 19:27:49 -0800 | [diff] [blame] | 33 | if (hash_only) |
| 34 | printf("%s\n", hex); |
| 35 | else |
| 36 | printf("%s %s\n", hex, refname); |
Vladimir Panteleev | f162704 | 2017-01-23 18:00:56 +0000 | [diff] [blame] | 37 | |
| 38 | if (!deref_tags) |
| 39 | return; |
| 40 | |
brian m. carlson | b420d90 | 2017-10-15 22:07:02 +0000 | [diff] [blame] | 41 | if (!peel_ref(refname, &peeled)) { |
Vladimir Panteleev | f162704 | 2017-01-23 18:00:56 +0000 | [diff] [blame] | 42 | hex = find_unique_abbrev(peeled.hash, abbrev); |
| 43 | printf("%s %s^{}\n", hex, refname); |
| 44 | } |
Junio C Hamano | 64fe031 | 2006-12-17 19:27:49 -0800 | [diff] [blame] | 45 | } |
| 46 | |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 47 | static int show_ref(const char *refname, const struct object_id *oid, |
| 48 | int flag, void *cbdata) |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 49 | { |
Doug Bell | 3f3d0ce | 2013-07-16 19:05:14 -0500 | [diff] [blame] | 50 | if (show_head && !strcmp(refname, "HEAD")) |
| 51 | goto match; |
| 52 | |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 53 | if (tags_only || heads_only) { |
| 54 | int match; |
| 55 | |
Christian Couder | 5955654 | 2013-11-30 21:55:40 +0100 | [diff] [blame] | 56 | match = heads_only && starts_with(refname, "refs/heads/"); |
| 57 | match |= tags_only && starts_with(refname, "refs/tags/"); |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 58 | if (!match) |
| 59 | return 0; |
| 60 | } |
| 61 | if (pattern) { |
| 62 | int reflen = strlen(refname); |
| 63 | const char **p = pattern, *m; |
| 64 | while ((m = *p++) != NULL) { |
| 65 | int len = strlen(m); |
| 66 | if (len > reflen) |
| 67 | continue; |
| 68 | if (memcmp(m, refname + reflen - len, len)) |
| 69 | continue; |
| 70 | if (len == reflen) |
| 71 | goto match; |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 72 | if (refname[reflen - len - 1] == '/') |
| 73 | goto match; |
| 74 | } |
| 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | match: |
| 79 | found_match++; |
Junio C Hamano | cf0adba | 2006-11-19 13:22:44 -0800 | [diff] [blame] | 80 | |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 81 | show_one(refname, oid); |
Junio C Hamano | cf0adba | 2006-11-19 13:22:44 -0800 | [diff] [blame] | 82 | |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 83 | return 0; |
| 84 | } |
| 85 | |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 86 | static int add_existing(const char *refname, const struct object_id *oid, |
| 87 | int flag, void *cbdata) |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 88 | { |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 89 | struct string_list *list = (struct string_list *)cbdata; |
Julian Phillips | 78a395d | 2010-06-26 00:41:35 +0100 | [diff] [blame] | 90 | string_list_insert(list, refname); |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 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 | */ |
| 103 | static int exclude_existing(const char *match) |
| 104 | { |
Michael Haggerty | 66ce036 | 2013-05-25 11:08:22 +0200 | [diff] [blame] | 105 | static struct string_list existing_refs = STRING_LIST_INIT_DUP; |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 106 | char buf[1024]; |
| 107 | int matchlen = match ? strlen(match) : 0; |
| 108 | |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 109 | for_each_ref(add_existing, &existing_refs); |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 110 | while (fgets(buf, sizeof(buf), stdin)) { |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 111 | char *ref; |
Junio C Hamano | d8285af | 2006-12-18 13:33:47 -0800 | [diff] [blame] | 112 | int len = strlen(buf); |
| 113 | |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 114 | if (len > 0 && buf[len - 1] == '\n') |
| 115 | buf[--len] = '\0'; |
Junio C Hamano | d8285af | 2006-12-18 13:33:47 -0800 | [diff] [blame] | 116 | if (3 <= len && !strcmp(buf + len - 3, "^{}")) { |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 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 | } |
Michael Haggerty | 8d9c501 | 2011-09-15 23:10:25 +0200 | [diff] [blame] | 130 | if (check_refname_format(ref, 0)) { |
Miklos Vajna | 5620e77 | 2009-03-24 02:09:16 +0100 | [diff] [blame] | 131 | warning("ref '%s' ignored", ref); |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 132 | continue; |
| 133 | } |
Johannes Schindelin | c455c87 | 2008-07-21 19:03:49 +0100 | [diff] [blame] | 134 | if (!string_list_has_string(&existing_refs, ref)) { |
Junio C Hamano | ed9f7c9 | 2006-12-17 17:57:19 -0800 | [diff] [blame] | 135 | printf("%s\n", buf); |
| 136 | } |
| 137 | } |
| 138 | return 0; |
| 139 | } |
| 140 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 141 | static 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 | |
| 150 | static int exclude_existing_callback(const struct option *opt, const char *arg, |
| 151 | int unset) |
| 152 | { |
| 153 | exclude_arg = 1; |
| 154 | *(const char **)opt->value = arg; |
| 155 | return 0; |
| 156 | } |
| 157 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 158 | static const struct option show_ref_options[] = { |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 159 | OPT_BOOL(0, "tags", &tags_only, N_("only show tags (can be combined with heads)")), |
| 160 | OPT_BOOL(0, "heads", &heads_only, N_("only show heads (can be combined with tags)")), |
| 161 | OPT_BOOL(0, "verify", &verify, N_("stricter reference checking, " |
Nguyễn Thái Ngọc Duy | c9120b1 | 2012-08-20 19:32:45 +0700 | [diff] [blame] | 162 | "requires exact ref path")), |
Stefan Beller | 4741edd | 2013-08-03 13:51:18 +0200 | [diff] [blame] | 163 | OPT_HIDDEN_BOOL('h', NULL, &show_head, |
| 164 | N_("show the HEAD reference, even if it would be filtered out")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 165 | OPT_BOOL(0, "head", &show_head, |
Doug Bell | 3f3d0ce | 2013-07-16 19:05:14 -0500 | [diff] [blame] | 166 | N_("show the HEAD reference, even if it would be filtered out")), |
Stefan Beller | d5d09d4 | 2013-08-03 13:51:19 +0200 | [diff] [blame] | 167 | OPT_BOOL('d', "dereference", &deref_tags, |
Nguyễn Thái Ngọc Duy | c9120b1 | 2012-08-20 19:32:45 +0700 | [diff] [blame] | 168 | N_("dereference tags into object IDs")), |
| 169 | { OPTION_CALLBACK, 's', "hash", &abbrev, N_("n"), |
| 170 | N_("only show SHA1 hash using <n> digits"), |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 171 | PARSE_OPT_OPTARG, &hash_callback }, |
| 172 | OPT__ABBREV(&abbrev), |
Jonathan Nieder | 8c83968 | 2010-11-08 13:54:48 -0600 | [diff] [blame] | 173 | OPT__QUIET(&quiet, |
Nguyễn Thái Ngọc Duy | c9120b1 | 2012-08-20 19:32:45 +0700 | [diff] [blame] | 174 | N_("do not print results to stdout (useful with --verify)")), |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 175 | { OPTION_CALLBACK, 0, "exclude-existing", &exclude_existing_arg, |
Nguyễn Thái Ngọc Duy | c9120b1 | 2012-08-20 19:32:45 +0700 | [diff] [blame] | 176 | N_("pattern"), N_("show refs from stdin that aren't in local repository"), |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 177 | PARSE_OPT_OPTARG | PARSE_OPT_NONEG, exclude_existing_callback }, |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 178 | OPT_END() |
| 179 | }; |
| 180 | |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 181 | int cmd_show_ref(int argc, const char **argv, const char *prefix) |
| 182 | { |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 183 | argc = parse_options(argc, argv, prefix, show_ref_options, |
René Scharfe | 42fdf86 | 2015-11-17 11:26:05 +0100 | [diff] [blame] | 184 | show_ref_usage, 0); |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 185 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 186 | if (exclude_arg) |
| 187 | return exclude_existing(exclude_existing_arg); |
| 188 | |
| 189 | pattern = argv; |
| 190 | if (!*pattern) |
| 191 | pattern = NULL; |
Junio C Hamano | 26cdd1e | 2006-12-17 18:08:52 -0800 | [diff] [blame] | 192 | |
| 193 | if (verify) { |
Dmitry V. Levin | 8ab40a2 | 2007-02-23 20:12:33 +0300 | [diff] [blame] | 194 | if (!pattern) |
| 195 | die("--verify requires a reference"); |
Junio C Hamano | 26cdd1e | 2006-12-17 18:08:52 -0800 | [diff] [blame] | 196 | while (*pattern) { |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 197 | struct object_id oid; |
Dmitry V. Levin | 8ab40a2 | 2007-02-23 20:12:33 +0300 | [diff] [blame] | 198 | |
Vladimir Panteleev | ec7c51b | 2017-01-23 18:00:55 +0000 | [diff] [blame] | 199 | if ((starts_with(*pattern, "refs/") || !strcmp(*pattern, "HEAD")) && |
brian m. carlson | 34c290a | 2017-10-15 22:06:56 +0000 | [diff] [blame] | 200 | !read_ref(*pattern, &oid)) { |
Vladimir Panteleev | 14144d3 | 2017-01-23 18:00:57 +0000 | [diff] [blame] | 201 | show_one(*pattern, &oid); |
Junio C Hamano | dd91429 | 2006-12-17 18:53:24 -0800 | [diff] [blame] | 202 | } |
Junio C Hamano | 26cdd1e | 2006-12-17 18:08:52 -0800 | [diff] [blame] | 203 | else if (!quiet) |
| 204 | die("'%s' - not a valid ref", *pattern); |
| 205 | else |
| 206 | return 1; |
| 207 | pattern++; |
| 208 | } |
| 209 | return 0; |
| 210 | } |
| 211 | |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 212 | if (show_head) |
Michael Haggerty | f0a011f | 2015-05-25 18:38:51 +0000 | [diff] [blame] | 213 | head_ref(show_ref, NULL); |
| 214 | for_each_ref(show_ref, NULL); |
Linus Torvalds | 358ddb6 | 2006-09-15 11:19:32 -0700 | [diff] [blame] | 215 | if (!found_match) { |
| 216 | if (verify && !quiet) |
| 217 | die("No match"); |
| 218 | return 1; |
| 219 | } |
| 220 | return 0; |
| 221 | } |