Git 2.46-rc2
[git.git] / promisor-remote.c
blob317e1b127fede4c8855559afd8547cbf558936fd
1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "object-store-ll.h"
7 #include "promisor-remote.h"
8 #include "config.h"
9 #include "trace2.h"
10 #include "transport.h"
11 #include "strvec.h"
12 #include "packfile.h"
13 #include "environment.h"
15 struct promisor_remote_config {
16 struct promisor_remote *promisors;
17 struct promisor_remote **promisors_tail;
20 static int fetch_objects(struct repository *repo,
21 const char *remote_name,
22 const struct object_id *oids,
23 int oid_nr)
25 struct child_process child = CHILD_PROCESS_INIT;
26 int i;
27 FILE *child_in;
28 int quiet;
30 if (git_env_bool(NO_LAZY_FETCH_ENVIRONMENT, 0)) {
31 static int warning_shown;
32 if (!warning_shown) {
33 warning_shown = 1;
34 warning(_("lazy fetching disabled; some objects may not be available"));
36 return -1;
39 child.git_cmd = 1;
40 child.in = -1;
41 if (repo != the_repository)
42 prepare_other_repo_env(&child.env, repo->gitdir);
43 strvec_pushl(&child.args, "-c", "fetch.negotiationAlgorithm=noop",
44 "fetch", remote_name, "--no-tags",
45 "--no-write-fetch-head", "--recurse-submodules=no",
46 "--filter=blob:none", "--stdin", NULL);
47 if (!git_config_get_bool("promisor.quiet", &quiet) && quiet)
48 strvec_push(&child.args, "--quiet");
49 if (start_command(&child))
50 die(_("promisor-remote: unable to fork off fetch subprocess"));
51 child_in = xfdopen(child.in, "w");
53 trace2_data_intmax("promisor", repo, "fetch_count", oid_nr);
55 for (i = 0; i < oid_nr; i++) {
56 if (fputs(oid_to_hex(&oids[i]), child_in) < 0)
57 die_errno(_("promisor-remote: could not write to fetch subprocess"));
58 if (fputc('\n', child_in) < 0)
59 die_errno(_("promisor-remote: could not write to fetch subprocess"));
62 if (fclose(child_in) < 0)
63 die_errno(_("promisor-remote: could not close stdin to fetch subprocess"));
64 return finish_command(&child) ? -1 : 0;
67 static struct promisor_remote *promisor_remote_new(struct promisor_remote_config *config,
68 const char *remote_name)
70 struct promisor_remote *r;
72 if (*remote_name == '/') {
73 warning(_("promisor remote name cannot begin with '/': %s"),
74 remote_name);
75 return NULL;
78 FLEX_ALLOC_STR(r, name, remote_name);
80 *config->promisors_tail = r;
81 config->promisors_tail = &r->next;
83 return r;
86 static struct promisor_remote *promisor_remote_lookup(struct promisor_remote_config *config,
87 const char *remote_name,
88 struct promisor_remote **previous)
90 struct promisor_remote *r, *p;
92 for (p = NULL, r = config->promisors; r; p = r, r = r->next)
93 if (!strcmp(r->name, remote_name)) {
94 if (previous)
95 *previous = p;
96 return r;
99 return NULL;
102 static void promisor_remote_move_to_tail(struct promisor_remote_config *config,
103 struct promisor_remote *r,
104 struct promisor_remote *previous)
106 if (!r->next)
107 return;
109 if (previous)
110 previous->next = r->next;
111 else
112 config->promisors = r->next ? r->next : r;
113 r->next = NULL;
114 *config->promisors_tail = r;
115 config->promisors_tail = &r->next;
118 static int promisor_remote_config(const char *var, const char *value,
119 const struct config_context *ctx UNUSED,
120 void *data)
122 struct promisor_remote_config *config = data;
123 const char *name;
124 size_t namelen;
125 const char *subkey;
127 if (parse_config_key(var, "remote", &name, &namelen, &subkey) < 0)
128 return 0;
130 if (!strcmp(subkey, "promisor")) {
131 char *remote_name;
133 if (!git_config_bool(var, value))
134 return 0;
136 remote_name = xmemdupz(name, namelen);
138 if (!promisor_remote_lookup(config, remote_name, NULL))
139 promisor_remote_new(config, remote_name);
141 free(remote_name);
142 return 0;
144 if (!strcmp(subkey, "partialclonefilter")) {
145 struct promisor_remote *r;
146 char *remote_name = xmemdupz(name, namelen);
148 r = promisor_remote_lookup(config, remote_name, NULL);
149 if (!r)
150 r = promisor_remote_new(config, remote_name);
152 free(remote_name);
154 if (!r)
155 return 0;
157 return git_config_string(&r->partial_clone_filter, var, value);
160 return 0;
163 static void promisor_remote_init(struct repository *r)
165 struct promisor_remote_config *config;
167 if (r->promisor_remote_config)
168 return;
169 config = r->promisor_remote_config =
170 xcalloc(1, sizeof(*r->promisor_remote_config));
171 config->promisors_tail = &config->promisors;
173 repo_config(r, promisor_remote_config, config);
175 if (r->repository_format_partial_clone) {
176 struct promisor_remote *o, *previous;
178 o = promisor_remote_lookup(config,
179 r->repository_format_partial_clone,
180 &previous);
181 if (o)
182 promisor_remote_move_to_tail(config, o, previous);
183 else
184 promisor_remote_new(config, r->repository_format_partial_clone);
188 void promisor_remote_clear(struct promisor_remote_config *config)
190 while (config->promisors) {
191 struct promisor_remote *r = config->promisors;
192 config->promisors = config->promisors->next;
193 free(r);
196 config->promisors_tail = &config->promisors;
199 void repo_promisor_remote_reinit(struct repository *r)
201 promisor_remote_clear(r->promisor_remote_config);
202 FREE_AND_NULL(r->promisor_remote_config);
203 promisor_remote_init(r);
206 struct promisor_remote *repo_promisor_remote_find(struct repository *r,
207 const char *remote_name)
209 promisor_remote_init(r);
211 if (!remote_name)
212 return r->promisor_remote_config->promisors;
214 return promisor_remote_lookup(r->promisor_remote_config, remote_name, NULL);
217 int repo_has_promisor_remote(struct repository *r)
219 return !!repo_promisor_remote_find(r, NULL);
222 static int remove_fetched_oids(struct repository *repo,
223 struct object_id **oids,
224 int oid_nr, int to_free)
226 int i, remaining_nr = 0;
227 int *remaining = xcalloc(oid_nr, sizeof(*remaining));
228 struct object_id *old_oids = *oids;
229 struct object_id *new_oids;
231 for (i = 0; i < oid_nr; i++)
232 if (oid_object_info_extended(repo, &old_oids[i], NULL,
233 OBJECT_INFO_SKIP_FETCH_OBJECT)) {
234 remaining[i] = 1;
235 remaining_nr++;
238 if (remaining_nr) {
239 int j = 0;
240 CALLOC_ARRAY(new_oids, remaining_nr);
241 for (i = 0; i < oid_nr; i++)
242 if (remaining[i])
243 oidcpy(&new_oids[j++], &old_oids[i]);
244 *oids = new_oids;
245 if (to_free)
246 free(old_oids);
249 free(remaining);
251 return remaining_nr;
254 void promisor_remote_get_direct(struct repository *repo,
255 const struct object_id *oids,
256 int oid_nr)
258 struct promisor_remote *r;
259 struct object_id *remaining_oids = (struct object_id *)oids;
260 int remaining_nr = oid_nr;
261 int to_free = 0;
262 int i;
264 if (oid_nr == 0)
265 return;
267 promisor_remote_init(repo);
269 for (r = repo->promisor_remote_config->promisors; r; r = r->next) {
270 if (fetch_objects(repo, r->name, remaining_oids, remaining_nr) < 0) {
271 if (remaining_nr == 1)
272 continue;
273 remaining_nr = remove_fetched_oids(repo, &remaining_oids,
274 remaining_nr, to_free);
275 if (remaining_nr) {
276 to_free = 1;
277 continue;
280 goto all_fetched;
283 for (i = 0; i < remaining_nr; i++) {
284 if (is_promisor_object(&remaining_oids[i]))
285 die(_("could not fetch %s from promisor remote"),
286 oid_to_hex(&remaining_oids[i]));
289 all_fetched:
290 if (to_free)
291 free(remaining_oids);