]> git.ipfire.org Git - thirdparty/git.git/blame - promisor-remote.c
Merge branch 'sb/userdiff-dts'
[thirdparty/git.git] / promisor-remote.c
CommitLineData
48de3158 1#include "cache.h"
9e27beaa 2#include "object-store.h"
48de3158
CC
3#include "promisor-remote.h"
4#include "config.h"
db27dca5
CC
5#include "transport.h"
6
60b7a92d 7static char *repository_format_partial_clone;
4ca9474e 8static const char *core_partial_clone_filter_default;
60b7a92d
CC
9
10void set_repository_format_partial_clone(char *partial_clone)
11{
12 repository_format_partial_clone = xstrdup_or_null(partial_clone);
13}
14
db27dca5
CC
15static int fetch_refs(const char *remote_name, struct ref *ref)
16{
17 struct remote *remote;
18 struct transport *transport;
19 int original_fetch_if_missing = fetch_if_missing;
20 int res;
21
22 fetch_if_missing = 0;
23 remote = remote_get(remote_name);
24 if (!remote->url[0])
25 die(_("Remote with no URL"));
26 transport = transport_get(remote, remote->url[0]);
27
28 transport_set_option(transport, TRANS_OPT_FROM_PROMISOR, "1");
29 transport_set_option(transport, TRANS_OPT_NO_DEPENDENTS, "1");
30 res = transport_fetch_refs(transport, ref);
31 fetch_if_missing = original_fetch_if_missing;
32
33 return res;
34}
35
36static int fetch_objects(const char *remote_name,
37 const struct object_id *oids,
38 int oid_nr)
39{
40 struct ref *ref = NULL;
41 int i;
42
43 for (i = 0; i < oid_nr; i++) {
44 struct ref *new_ref = alloc_ref(oid_to_hex(&oids[i]));
45 oidcpy(&new_ref->old_oid, &oids[i]);
46 new_ref->exact_oid = 1;
47 new_ref->next = ref;
48 ref = new_ref;
49 }
50 return fetch_refs(remote_name, ref);
51}
48de3158
CC
52
53static struct promisor_remote *promisors;
54static struct promisor_remote **promisors_tail = &promisors;
55
56static struct promisor_remote *promisor_remote_new(const char *remote_name)
57{
58 struct promisor_remote *r;
59
60 if (*remote_name == '/') {
61 warning(_("promisor remote name cannot begin with '/': %s"),
62 remote_name);
63 return NULL;
64 }
65
66 FLEX_ALLOC_STR(r, name, remote_name);
67
68 *promisors_tail = r;
69 promisors_tail = &r->next;
70
71 return r;
72}
73
74static struct promisor_remote *promisor_remote_lookup(const char *remote_name,
75 struct promisor_remote **previous)
76{
77 struct promisor_remote *r, *p;
78
79 for (p = NULL, r = promisors; r; p = r, r = r->next)
80 if (!strcmp(r->name, remote_name)) {
81 if (previous)
82 *previous = p;
83 return r;
84 }
85
86 return NULL;
87}
88
faf2abf4
CC
89static void promisor_remote_move_to_tail(struct promisor_remote *r,
90 struct promisor_remote *previous)
91{
65904b8b
ES
92 if (r->next == NULL)
93 return;
94
faf2abf4
CC
95 if (previous)
96 previous->next = r->next;
97 else
98 promisors = r->next ? r->next : r;
99 r->next = NULL;
100 *promisors_tail = r;
101 promisors_tail = &r->next;
102}
103
48de3158
CC
104static int promisor_remote_config(const char *var, const char *value, void *data)
105{
106 const char *name;
107 int namelen;
108 const char *subkey;
109
4ca9474e
CC
110 if (!strcmp(var, "core.partialclonefilter"))
111 return git_config_string(&core_partial_clone_filter_default,
112 var, value);
113
48de3158
CC
114 if (parse_config_key(var, "remote", &name, &namelen, &subkey) < 0)
115 return 0;
116
117 if (!strcmp(subkey, "promisor")) {
118 char *remote_name;
119
120 if (!git_config_bool(var, value))
121 return 0;
122
123 remote_name = xmemdupz(name, namelen);
124
125 if (!promisor_remote_lookup(remote_name, NULL))
126 promisor_remote_new(remote_name);
127
128 free(remote_name);
129 return 0;
130 }
fa3d1b63
CC
131 if (!strcmp(subkey, "partialclonefilter")) {
132 struct promisor_remote *r;
133 char *remote_name = xmemdupz(name, namelen);
134
135 r = promisor_remote_lookup(remote_name, NULL);
136 if (!r)
137 r = promisor_remote_new(remote_name);
138
139 free(remote_name);
140
141 if (!r)
142 return 0;
143
144 return git_config_string(&r->partial_clone_filter, var, value);
145 }
48de3158
CC
146
147 return 0;
148}
149
9cfebc1f
CC
150static int initialized;
151
48de3158
CC
152static void promisor_remote_init(void)
153{
48de3158
CC
154 if (initialized)
155 return;
156 initialized = 1;
157
158 git_config(promisor_remote_config, NULL);
faf2abf4
CC
159
160 if (repository_format_partial_clone) {
161 struct promisor_remote *o, *previous;
162
163 o = promisor_remote_lookup(repository_format_partial_clone,
164 &previous);
165 if (o)
166 promisor_remote_move_to_tail(o, previous);
167 else
168 promisor_remote_new(repository_format_partial_clone);
169 }
48de3158
CC
170}
171
9cfebc1f
CC
172static void promisor_remote_clear(void)
173{
174 while (promisors) {
175 struct promisor_remote *r = promisors;
176 promisors = promisors->next;
177 free(r);
178 }
179
180 promisors_tail = &promisors;
181}
182
183void promisor_remote_reinit(void)
184{
185 initialized = 0;
186 promisor_remote_clear();
187 promisor_remote_init();
188}
189
48de3158
CC
190struct promisor_remote *promisor_remote_find(const char *remote_name)
191{
192 promisor_remote_init();
193
194 if (!remote_name)
195 return promisors;
196
197 return promisor_remote_lookup(remote_name, NULL);
198}
199
200int has_promisor_remote(void)
201{
202 return !!promisor_remote_find(NULL);
203}
9e27beaa
CC
204
205static int remove_fetched_oids(struct repository *repo,
206 struct object_id **oids,
207 int oid_nr, int to_free)
208{
209 int i, remaining_nr = 0;
210 int *remaining = xcalloc(oid_nr, sizeof(*remaining));
211 struct object_id *old_oids = *oids;
212 struct object_id *new_oids;
213
214 for (i = 0; i < oid_nr; i++)
215 if (oid_object_info_extended(repo, &old_oids[i], NULL,
216 OBJECT_INFO_SKIP_FETCH_OBJECT)) {
217 remaining[i] = 1;
218 remaining_nr++;
219 }
220
221 if (remaining_nr) {
222 int j = 0;
223 new_oids = xcalloc(remaining_nr, sizeof(*new_oids));
224 for (i = 0; i < oid_nr; i++)
225 if (remaining[i])
226 oidcpy(&new_oids[j++], &old_oids[i]);
227 *oids = new_oids;
228 if (to_free)
229 free(old_oids);
230 }
231
232 free(remaining);
233
234 return remaining_nr;
235}
236
237int promisor_remote_get_direct(struct repository *repo,
238 const struct object_id *oids,
239 int oid_nr)
240{
241 struct promisor_remote *r;
242 struct object_id *remaining_oids = (struct object_id *)oids;
243 int remaining_nr = oid_nr;
244 int to_free = 0;
245 int res = -1;
246
247 promisor_remote_init();
248
249 for (r = promisors; r; r = r->next) {
250 if (fetch_objects(r->name, remaining_oids, remaining_nr) < 0) {
251 if (remaining_nr == 1)
252 continue;
253 remaining_nr = remove_fetched_oids(repo, &remaining_oids,
254 remaining_nr, to_free);
255 if (remaining_nr) {
256 to_free = 1;
257 continue;
258 }
259 }
260 res = 0;
261 break;
262 }
263
264 if (to_free)
265 free(remaining_oids);
266
267 return res;
268}