]> git.proxmox.com Git - libgit2.git/blob - src/refspec.c
Merge pull request #2027 from libgit2/rb/only-windows-is-windows
[libgit2.git] / src / refspec.c
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #include "git2/errors.h"
9
10 #include "common.h"
11 #include "refspec.h"
12 #include "util.h"
13 #include "posix.h"
14 #include "refs.h"
15 #include "vector.h"
16
17 int git_refspec__parse(git_refspec *refspec, const char *input, bool is_fetch)
18 {
19 // Ported from https://github.com/git/git/blob/f06d47e7e0d9db709ee204ed13a8a7486149f494/remote.c#L518-636
20
21 size_t llen;
22 int is_glob = 0;
23 const char *lhs, *rhs;
24 int flags;
25
26 assert(refspec && input);
27
28 memset(refspec, 0x0, sizeof(git_refspec));
29 refspec->push = !is_fetch;
30
31 lhs = input;
32 if (*lhs == '+') {
33 refspec->force = 1;
34 lhs++;
35 }
36
37 rhs = strrchr(lhs, ':');
38
39 /*
40 * Before going on, special case ":" (or "+:") as a refspec
41 * for matching refs.
42 */
43 if (!is_fetch && rhs == lhs && rhs[1] == '\0') {
44 refspec->matching = 1;
45 return 0;
46 }
47
48 if (rhs) {
49 size_t rlen = strlen(++rhs);
50 is_glob = (1 <= rlen && strchr(rhs, '*'));
51 refspec->dst = git__strndup(rhs, rlen);
52 }
53
54 llen = (rhs ? (size_t)(rhs - lhs - 1) : strlen(lhs));
55 if (1 <= llen && memchr(lhs, '*', llen)) {
56 if ((rhs && !is_glob) || (!rhs && is_fetch))
57 goto invalid;
58 is_glob = 1;
59 } else if (rhs && is_glob)
60 goto invalid;
61
62 refspec->pattern = is_glob;
63 refspec->src = git__strndup(lhs, llen);
64 flags = GIT_REF_FORMAT_ALLOW_ONELEVEL | GIT_REF_FORMAT_REFSPEC_SHORTHAND
65 | (is_glob ? GIT_REF_FORMAT_REFSPEC_PATTERN : 0);
66
67 if (is_fetch) {
68 /*
69 * LHS
70 * - empty is allowed; it means HEAD.
71 * - otherwise it must be a valid looking ref.
72 */
73 if (!*refspec->src)
74 ; /* empty is ok */
75 else if (!git_reference__is_valid_name(refspec->src, flags))
76 goto invalid;
77 /*
78 * RHS
79 * - missing is ok, and is same as empty.
80 * - empty is ok; it means not to store.
81 * - otherwise it must be a valid looking ref.
82 */
83 if (!refspec->dst)
84 ; /* ok */
85 else if (!*refspec->dst)
86 ; /* ok */
87 else if (!git_reference__is_valid_name(refspec->dst, flags))
88 goto invalid;
89 } else {
90 /*
91 * LHS
92 * - empty is allowed; it means delete.
93 * - when wildcarded, it must be a valid looking ref.
94 * - otherwise, it must be an extended SHA-1, but
95 * there is no existing way to validate this.
96 */
97 if (!*refspec->src)
98 ; /* empty is ok */
99 else if (is_glob) {
100 if (!git_reference__is_valid_name(refspec->src, flags))
101 goto invalid;
102 }
103 else {
104 ; /* anything goes, for now */
105 }
106 /*
107 * RHS
108 * - missing is allowed, but LHS then must be a
109 * valid looking ref.
110 * - empty is not allowed.
111 * - otherwise it must be a valid looking ref.
112 */
113 if (!refspec->dst) {
114 if (!git_reference__is_valid_name(refspec->src, flags))
115 goto invalid;
116 } else if (!*refspec->dst) {
117 goto invalid;
118 } else {
119 if (!git_reference__is_valid_name(refspec->dst, flags))
120 goto invalid;
121 }
122 }
123
124 refspec->string = git__strdup(input);
125 GITERR_CHECK_ALLOC(refspec->string);
126
127 return 0;
128
129 invalid:
130 return -1;
131 }
132
133 void git_refspec__free(git_refspec *refspec)
134 {
135 if (refspec == NULL)
136 return;
137
138 git__free(refspec->src);
139 git__free(refspec->dst);
140 git__free(refspec->string);
141 }
142
143 const char *git_refspec_src(const git_refspec *refspec)
144 {
145 return refspec == NULL ? NULL : refspec->src;
146 }
147
148 const char *git_refspec_dst(const git_refspec *refspec)
149 {
150 return refspec == NULL ? NULL : refspec->dst;
151 }
152
153 const char *git_refspec_string(const git_refspec *refspec)
154 {
155 return refspec == NULL ? NULL : refspec->string;
156 }
157
158 int git_refspec_force(const git_refspec *refspec)
159 {
160 assert(refspec);
161
162 return refspec->force;
163 }
164
165 int git_refspec_src_matches(const git_refspec *refspec, const char *refname)
166 {
167 if (refspec == NULL || refspec->src == NULL)
168 return false;
169
170 return (p_fnmatch(refspec->src, refname, 0) == 0);
171 }
172
173 int git_refspec_dst_matches(const git_refspec *refspec, const char *refname)
174 {
175 if (refspec == NULL || refspec->dst == NULL)
176 return false;
177
178 return (p_fnmatch(refspec->dst, refname, 0) == 0);
179 }
180
181 static int refspec_transform(
182 git_buf *out, const char *from, const char *to, const char *name)
183 {
184 size_t to_len = to ? strlen(to) : 0;
185 size_t from_len = from ? strlen(from) : 0;
186 size_t name_len = name ? strlen(name) : 0;
187
188 git_buf_sanitize(out);
189
190 if (git_buf_set(out, to, to_len) < 0)
191 return -1;
192
193 if (to_len > 0) {
194 /* No '*' at the end of 'to' means that refspec is mapped to one
195 * specific branch, so no actual transformation is needed.
196 */
197 if (out->ptr[to_len - 1] != '*')
198 return 0;
199 git_buf_shorten(out, 1); /* remove trailing '*' copied from 'to' */
200 }
201
202 if (from_len > 0) /* ignore trailing '*' from 'from' */
203 from_len--;
204 if (from_len > name_len)
205 from_len = name_len;
206
207 return git_buf_put(out, name + from_len, name_len - from_len);
208 }
209
210 int git_refspec_transform(git_buf *out, const git_refspec *spec, const char *name)
211 {
212 return refspec_transform(out, spec->src, spec->dst, name);
213 }
214
215 int git_refspec_rtransform(git_buf *out, const git_refspec *spec, const char *name)
216 {
217 return refspec_transform(out, spec->dst, spec->src, name);
218 }
219
220 int git_refspec__serialize(git_buf *out, const git_refspec *refspec)
221 {
222 if (refspec->force)
223 git_buf_putc(out, '+');
224
225 git_buf_printf(out, "%s:%s",
226 refspec->src != NULL ? refspec->src : "",
227 refspec->dst != NULL ? refspec->dst : "");
228
229 return git_buf_oom(out) == false;
230 }
231
232 int git_refspec_is_wildcard(const git_refspec *spec)
233 {
234 assert(spec && spec->src);
235
236 return (spec->src[strlen(spec->src) - 1] == '*');
237 }
238
239 git_direction git_refspec_direction(const git_refspec *spec)
240 {
241 assert(spec);
242
243 return spec->push;
244 }
245
246 int git_refspec__dwim_one(git_vector *out, git_refspec *spec, git_vector *refs)
247 {
248 git_buf buf = GIT_BUF_INIT;
249 size_t j, pos;
250 git_remote_head key;
251
252 const char* formatters[] = {
253 GIT_REFS_DIR "%s",
254 GIT_REFS_TAGS_DIR "%s",
255 GIT_REFS_HEADS_DIR "%s",
256 NULL
257 };
258
259 git_refspec *cur = git__calloc(1, sizeof(git_refspec));
260 GITERR_CHECK_ALLOC(cur);
261
262 cur->force = spec->force;
263 cur->push = spec->push;
264 cur->pattern = spec->pattern;
265 cur->matching = spec->matching;
266 cur->string = git__strdup(spec->string);
267
268 /* shorthand on the lhs */
269 if (git__prefixcmp(spec->src, GIT_REFS_DIR)) {
270 for (j = 0; formatters[j]; j++) {
271 git_buf_clear(&buf);
272 if (git_buf_printf(&buf, formatters[j], spec->src) < 0)
273 return -1;
274
275 key.name = (char *) git_buf_cstr(&buf);
276 if (!git_vector_search(&pos, refs, &key)) {
277 /* we found something to match the shorthand, set src to that */
278 cur->src = git_buf_detach(&buf);
279 }
280 }
281 }
282
283 /* No shorthands found, copy over the name */
284 if (cur->src == NULL && spec->src != NULL) {
285 cur->src = git__strdup(spec->src);
286 GITERR_CHECK_ALLOC(cur->src);
287 }
288
289 if (spec->dst && git__prefixcmp(spec->dst, GIT_REFS_DIR)) {
290 /* if it starts with "remotes" then we just prepend "refs/" */
291 if (!git__prefixcmp(spec->dst, "remotes/")) {
292 git_buf_puts(&buf, GIT_REFS_DIR);
293 } else {
294 git_buf_puts(&buf, GIT_REFS_HEADS_DIR);
295 }
296
297 if (git_buf_puts(&buf, spec->dst) < 0)
298 return -1;
299
300 cur->dst = git_buf_detach(&buf);
301 }
302
303 git_buf_free(&buf);
304
305 if (cur->dst == NULL && spec->dst != NULL) {
306 cur->dst = git__strdup(spec->dst);
307 GITERR_CHECK_ALLOC(cur->dst);
308 }
309
310 return git_vector_insert(out, cur);
311 }