]> git.proxmox.com Git - libgit2.git/blob - src/refspec.c
Merge pull request #2498 from linquize/read-large-file
[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 const char *from_star, *to_star;
185 const char *name_slash, *from_slash;
186 size_t replacement_len, star_offset;
187
188 git_buf_sanitize(out);
189 git_buf_clear(out);
190
191 /*
192 * There are two parts to each side of a refspec, the bit
193 * before the star and the bit after it. The star can be in
194 * the middle of the pattern, so we need to look at each bit
195 * individually.
196 */
197 from_star = strchr(from, '*');
198 to_star = strchr(to, '*');
199
200 assert(from_star && to_star);
201
202 /* star offset, both in 'from' and in 'name' */
203 star_offset = from_star - from;
204
205 /* the first half is copied over */
206 git_buf_put(out, to, to_star - to);
207
208 /* then we copy over the replacement, from the star's offset to the next slash in 'name' */
209 name_slash = strchr(name + star_offset, '/');
210 if (!name_slash)
211 name_slash = strrchr(name, '\0');
212
213 /* if there is no slash after the star in 'from', we want to copy everything over */
214 from_slash = strchr(from + star_offset, '/');
215 if (!from_slash)
216 name_slash = strrchr(name, '\0');
217
218 replacement_len = (name_slash - name) - star_offset;
219 git_buf_put(out, name + star_offset, replacement_len);
220
221 return git_buf_puts(out, to_star + 1);
222 }
223
224 int git_refspec_transform(git_buf *out, const git_refspec *spec, const char *name)
225 {
226 assert(out && spec && name);
227 git_buf_sanitize(out);
228
229 if (!git_refspec_src_matches(spec, name)) {
230 giterr_set(GITERR_INVALID, "ref '%s' doesn't match the source", name);
231 return -1;
232 }
233
234 if (!spec->pattern)
235 return git_buf_puts(out, spec->dst);
236
237 return refspec_transform(out, spec->src, spec->dst, name);
238 }
239
240 int git_refspec_rtransform(git_buf *out, const git_refspec *spec, const char *name)
241 {
242 assert(out && spec && name);
243 git_buf_sanitize(out);
244
245 if (!git_refspec_dst_matches(spec, name)) {
246 giterr_set(GITERR_INVALID, "ref '%s' doesn't match the destination", name);
247 return -1;
248 }
249
250 if (!spec->pattern)
251 return git_buf_puts(out, spec->src);
252
253 return refspec_transform(out, spec->dst, spec->src, name);
254 }
255
256 int git_refspec__serialize(git_buf *out, const git_refspec *refspec)
257 {
258 if (refspec->force)
259 git_buf_putc(out, '+');
260
261 git_buf_printf(out, "%s:%s",
262 refspec->src != NULL ? refspec->src : "",
263 refspec->dst != NULL ? refspec->dst : "");
264
265 return git_buf_oom(out) == false;
266 }
267
268 int git_refspec_is_wildcard(const git_refspec *spec)
269 {
270 assert(spec && spec->src);
271
272 return (spec->src[strlen(spec->src) - 1] == '*');
273 }
274
275 git_direction git_refspec_direction(const git_refspec *spec)
276 {
277 assert(spec);
278
279 return spec->push;
280 }
281
282 int git_refspec__dwim_one(git_vector *out, git_refspec *spec, git_vector *refs)
283 {
284 git_buf buf = GIT_BUF_INIT;
285 size_t j, pos;
286 git_remote_head key;
287
288 const char* formatters[] = {
289 GIT_REFS_DIR "%s",
290 GIT_REFS_TAGS_DIR "%s",
291 GIT_REFS_HEADS_DIR "%s",
292 NULL
293 };
294
295 git_refspec *cur = git__calloc(1, sizeof(git_refspec));
296 GITERR_CHECK_ALLOC(cur);
297
298 cur->force = spec->force;
299 cur->push = spec->push;
300 cur->pattern = spec->pattern;
301 cur->matching = spec->matching;
302 cur->string = git__strdup(spec->string);
303
304 /* shorthand on the lhs */
305 if (git__prefixcmp(spec->src, GIT_REFS_DIR)) {
306 for (j = 0; formatters[j]; j++) {
307 git_buf_clear(&buf);
308 if (git_buf_printf(&buf, formatters[j], spec->src) < 0)
309 return -1;
310
311 key.name = (char *) git_buf_cstr(&buf);
312 if (!git_vector_search(&pos, refs, &key)) {
313 /* we found something to match the shorthand, set src to that */
314 cur->src = git_buf_detach(&buf);
315 }
316 }
317 }
318
319 /* No shorthands found, copy over the name */
320 if (cur->src == NULL && spec->src != NULL) {
321 cur->src = git__strdup(spec->src);
322 GITERR_CHECK_ALLOC(cur->src);
323 }
324
325 if (spec->dst && git__prefixcmp(spec->dst, GIT_REFS_DIR)) {
326 /* if it starts with "remotes" then we just prepend "refs/" */
327 if (!git__prefixcmp(spec->dst, "remotes/")) {
328 git_buf_puts(&buf, GIT_REFS_DIR);
329 } else {
330 git_buf_puts(&buf, GIT_REFS_HEADS_DIR);
331 }
332
333 if (git_buf_puts(&buf, spec->dst) < 0)
334 return -1;
335
336 cur->dst = git_buf_detach(&buf);
337 }
338
339 git_buf_free(&buf);
340
341 if (cur->dst == NULL && spec->dst != NULL) {
342 cur->dst = git__strdup(spec->dst);
343 GITERR_CHECK_ALLOC(cur->dst);
344 }
345
346 return git_vector_insert(out, cur);
347 }