2 #include "object-store.h"
3 #include "promisor-remote.h"
8 struct promisor_remote_config {
9 struct promisor_remote *promisors;
10 struct promisor_remote **promisors_tail;
13 static int fetch_objects(struct repository *repo,
14 const char *remote_name,
15 const struct object_id *oids,
18 struct child_process child = CHILD_PROCESS_INIT;
24 if (repo != the_repository)
25 prepare_other_repo_env(&child.env_array, repo->gitdir);
26 strvec_pushl(&child.args, "-c", "fetch.negotiationAlgorithm=noop",
27 "fetch", remote_name, "--no-tags",
28 "--no-write-fetch-head", "--recurse-submodules=no",
29 "--filter=blob:none", "--stdin", NULL);
30 if (start_command(&child))
31 die(_("promisor-remote: unable to fork off fetch subprocess"));
32 child_in = xfdopen(child.in, "w");
34 for (i = 0; i < oid_nr; i++) {
35 if (fputs(oid_to_hex(&oids[i]), child_in) < 0)
36 die_errno(_("promisor-remote: could not write to fetch subprocess"));
37 if (fputc('\n', child_in) < 0)
38 die_errno(_("promisor-remote: could not write to fetch subprocess"));
41 if (fclose(child_in) < 0)
42 die_errno(_("promisor-remote: could not close stdin to fetch subprocess"));
43 return finish_command(&child) ? -1 : 0;
46 static struct promisor_remote *promisor_remote_new(struct promisor_remote_config *config,
47 const char *remote_name)
49 struct promisor_remote *r;
51 if (*remote_name == '/') {
52 warning(_("promisor remote name cannot begin with '/': %s"),
57 FLEX_ALLOC_STR(r, name, remote_name);
59 *config->promisors_tail = r;
60 config->promisors_tail = &r->next;
65 static struct promisor_remote *promisor_remote_lookup(struct promisor_remote_config *config,
66 const char *remote_name,
67 struct promisor_remote **previous)
69 struct promisor_remote *r, *p;
71 for (p = NULL, r = config->promisors; r; p = r, r = r->next)
72 if (!strcmp(r->name, remote_name)) {
81 static void promisor_remote_move_to_tail(struct promisor_remote_config *config,
82 struct promisor_remote *r,
83 struct promisor_remote *previous)
89 previous->next = r->next;
91 config->promisors = r->next ? r->next : r;
93 *config->promisors_tail = r;
94 config->promisors_tail = &r->next;
97 static int promisor_remote_config(const char *var, const char *value, void *data)
99 struct promisor_remote_config *config = data;
104 if (parse_config_key(var, "remote", &name, &namelen, &subkey) < 0)
107 if (!strcmp(subkey, "promisor")) {
110 if (!git_config_bool(var, value))
113 remote_name = xmemdupz(name, namelen);
115 if (!promisor_remote_lookup(config, remote_name, NULL))
116 promisor_remote_new(config, remote_name);
121 if (!strcmp(subkey, "partialclonefilter")) {
122 struct promisor_remote *r;
123 char *remote_name = xmemdupz(name, namelen);
125 r = promisor_remote_lookup(config, remote_name, NULL);
127 r = promisor_remote_new(config, remote_name);
134 return git_config_string(&r->partial_clone_filter, var, value);
140 static void promisor_remote_init(struct repository *r)
142 struct promisor_remote_config *config;
144 if (r->promisor_remote_config)
146 config = r->promisor_remote_config =
147 xcalloc(sizeof(*r->promisor_remote_config), 1);
148 config->promisors_tail = &config->promisors;
150 repo_config(r, promisor_remote_config, config);
152 if (r->repository_format_partial_clone) {
153 struct promisor_remote *o, *previous;
155 o = promisor_remote_lookup(config,
156 r->repository_format_partial_clone,
159 promisor_remote_move_to_tail(config, o, previous);
161 promisor_remote_new(config, r->repository_format_partial_clone);
165 void promisor_remote_clear(struct promisor_remote_config *config)
167 while (config->promisors) {
168 struct promisor_remote *r = config->promisors;
169 config->promisors = config->promisors->next;
173 config->promisors_tail = &config->promisors;
176 void repo_promisor_remote_reinit(struct repository *r)
178 promisor_remote_clear(r->promisor_remote_config);
179 FREE_AND_NULL(r->promisor_remote_config);
180 promisor_remote_init(r);
183 struct promisor_remote *repo_promisor_remote_find(struct repository *r,
184 const char *remote_name)
186 promisor_remote_init(r);
189 return r->promisor_remote_config->promisors;
191 return promisor_remote_lookup(r->promisor_remote_config, remote_name, NULL);
194 int repo_has_promisor_remote(struct repository *r)
196 return !!repo_promisor_remote_find(r, NULL);
199 static int remove_fetched_oids(struct repository *repo,
200 struct object_id **oids,
201 int oid_nr, int to_free)
203 int i, remaining_nr = 0;
204 int *remaining = xcalloc(oid_nr, sizeof(*remaining));
205 struct object_id *old_oids = *oids;
206 struct object_id *new_oids;
208 for (i = 0; i < oid_nr; i++)
209 if (oid_object_info_extended(repo, &old_oids[i], NULL,
210 OBJECT_INFO_SKIP_FETCH_OBJECT)) {
217 CALLOC_ARRAY(new_oids, remaining_nr);
218 for (i = 0; i < oid_nr; i++)
220 oidcpy(&new_oids[j++], &old_oids[i]);
231 int promisor_remote_get_direct(struct repository *repo,
232 const struct object_id *oids,
235 struct promisor_remote *r;
236 struct object_id *remaining_oids = (struct object_id *)oids;
237 int remaining_nr = oid_nr;
244 promisor_remote_init(repo);
246 for (r = repo->promisor_remote_config->promisors; r; r = r->next) {
247 if (fetch_objects(repo, r->name, remaining_oids, remaining_nr) < 0) {
248 if (remaining_nr == 1)
250 remaining_nr = remove_fetched_oids(repo, &remaining_oids,
251 remaining_nr, to_free);
262 free(remaining_oids);