refspec: introduce struct refspec
[git/debian.git] / refspec.c
blobaf9d0d4b30815b8a78b7c3c7ed12a16648e6aa18
1 #include "cache.h"
2 #include "refs.h"
3 #include "refspec.h"
5 static struct refspec_item s_tag_refspec = {
6 0,
7 1,
8 0,
9 0,
10 "refs/tags/*",
11 "refs/tags/*"
14 /* See TAG_REFSPEC for the string version */
15 const struct refspec_item *tag_refspec = &s_tag_refspec;
18 * Parses the provided refspec 'refspec' and populates the refspec_item 'item'.
19 * Returns 1 if successful and 0 if the refspec is invalid.
21 static int parse_refspec(struct refspec_item *item, const char *refspec, int fetch)
23 size_t llen;
24 int is_glob;
25 const char *lhs, *rhs;
26 int flags;
28 is_glob = 0;
30 lhs = refspec;
31 if (*lhs == '+') {
32 item->force = 1;
33 lhs++;
36 rhs = strrchr(lhs, ':');
39 * Before going on, special case ":" (or "+:") as a refspec
40 * for pushing matching refs.
42 if (!fetch && rhs == lhs && rhs[1] == '\0') {
43 item->matching = 1;
44 return 1;
47 if (rhs) {
48 size_t rlen = strlen(++rhs);
49 is_glob = (1 <= rlen && strchr(rhs, '*'));
50 item->dst = xstrndup(rhs, rlen);
53 llen = (rhs ? (rhs - lhs - 1) : strlen(lhs));
54 if (1 <= llen && memchr(lhs, '*', llen)) {
55 if ((rhs && !is_glob) || (!rhs && fetch))
56 return 0;
57 is_glob = 1;
58 } else if (rhs && is_glob) {
59 return 0;
62 item->pattern = is_glob;
63 item->src = xstrndup(lhs, llen);
64 flags = REFNAME_ALLOW_ONELEVEL | (is_glob ? REFNAME_REFSPEC_PATTERN : 0);
66 if (fetch) {
67 struct object_id unused;
69 /* LHS */
70 if (!*item->src)
71 ; /* empty is ok; it means "HEAD" */
72 else if (llen == GIT_SHA1_HEXSZ && !get_oid_hex(item->src, &unused))
73 item->exact_sha1 = 1; /* ok */
74 else if (!check_refname_format(item->src, flags))
75 ; /* valid looking ref is ok */
76 else
77 return 0;
78 /* RHS */
79 if (!item->dst)
80 ; /* missing is ok; it is the same as empty */
81 else if (!*item->dst)
82 ; /* empty is ok; it means "do not store" */
83 else if (!check_refname_format(item->dst, flags))
84 ; /* valid looking ref is ok */
85 else
86 return 0;
87 } else {
89 * LHS
90 * - empty is allowed; it means delete.
91 * - when wildcarded, it must be a valid looking ref.
92 * - otherwise, it must be an extended SHA-1, but
93 * there is no existing way to validate this.
95 if (!*item->src)
96 ; /* empty is ok */
97 else if (is_glob) {
98 if (check_refname_format(item->src, flags))
99 return 0;
101 else
102 ; /* anything goes, for now */
104 * RHS
105 * - missing is allowed, but LHS then must be a
106 * valid looking ref.
107 * - empty is not allowed.
108 * - otherwise it must be a valid looking ref.
110 if (!item->dst) {
111 if (check_refname_format(item->src, flags))
112 return 0;
113 } else if (!*item->dst) {
114 return 0;
115 } else {
116 if (check_refname_format(item->dst, flags))
117 return 0;
121 return 1;
124 static struct refspec_item *parse_refspec_internal(int nr_refspec, const char **refspec, int fetch, int verify)
126 int i;
127 struct refspec_item *rs = xcalloc(nr_refspec, sizeof(*rs));
129 for (i = 0; i < nr_refspec; i++) {
130 if (!parse_refspec(&rs[i], refspec[i], fetch))
131 goto invalid;
134 return rs;
136 invalid:
137 if (verify) {
139 * nr_refspec must be greater than zero and i must be valid
140 * since it is only possible to reach this point from within
141 * the for loop above.
143 free_refspec(i+1, rs);
144 return NULL;
146 die("Invalid refspec '%s'", refspec[i]);
149 int valid_fetch_refspec(const char *fetch_refspec_str)
151 struct refspec_item *refspec;
153 refspec = parse_refspec_internal(1, &fetch_refspec_str, 1, 1);
154 free_refspec(1, refspec);
155 return !!refspec;
158 struct refspec_item *parse_fetch_refspec(int nr_refspec, const char **refspec)
160 return parse_refspec_internal(nr_refspec, refspec, 1, 0);
163 struct refspec_item *parse_push_refspec(int nr_refspec, const char **refspec)
165 return parse_refspec_internal(nr_refspec, refspec, 0, 0);
168 void free_refspec(int nr_refspec, struct refspec_item *refspec)
170 int i;
172 if (!refspec)
173 return;
175 for (i = 0; i < nr_refspec; i++) {
176 free(refspec[i].src);
177 free(refspec[i].dst);
179 free(refspec);
182 void refspec_item_init(struct refspec_item *item, const char *refspec, int fetch)
184 memset(item, 0, sizeof(*item));
186 if (!parse_refspec(item, refspec, fetch))
187 die("Invalid refspec '%s'", refspec);
190 void refspec_item_clear(struct refspec_item *item)
192 FREE_AND_NULL(item->src);
193 FREE_AND_NULL(item->dst);
194 item->force = 0;
195 item->pattern = 0;
196 item->matching = 0;
197 item->exact_sha1 = 0;
200 void refspec_init(struct refspec *rs, int fetch)
202 memset(rs, 0, sizeof(*rs));
203 rs->fetch = fetch;
206 void refspec_append(struct refspec *rs, const char *refspec)
208 struct refspec_item item;
210 refspec_item_init(&item, refspec, rs->fetch);
212 ALLOC_GROW(rs->items, rs->nr + 1, rs->alloc);
213 rs->items[rs->nr++] = item;
215 ALLOC_GROW(rs->raw, rs->raw_nr + 1, rs->raw_alloc);
216 rs->raw[rs->raw_nr++] = xstrdup(refspec);
219 void refspec_appendn(struct refspec *rs, const char **refspecs, int nr)
221 int i;
222 for (i = 0; i < nr; i++)
223 refspec_append(rs, refspecs[i]);
226 void refspec_clear(struct refspec *rs)
228 int i;
230 for (i = 0; i < rs->nr; i++)
231 refspec_item_clear(&rs->items[i]);
233 FREE_AND_NULL(rs->items);
234 rs->alloc = 0;
235 rs->nr = 0;
237 for (i = 0; i < rs->raw_nr; i++)
238 free((char *)rs->raw[i]);
239 FREE_AND_NULL(rs->raw);
240 rs->raw_alloc = 0;
241 rs->raw_nr = 0;
243 rs->fetch = 0;