2019-06-25 15:40:27 +02:00
|
|
|
#ifndef PROMISOR_REMOTE_H
|
|
|
|
#define PROMISOR_REMOTE_H
|
|
|
|
|
2019-09-25 10:20:56 +02:00
|
|
|
#include "repository.h"
|
|
|
|
|
2019-06-25 15:40:28 +02:00
|
|
|
struct object_id;
|
|
|
|
|
2019-06-25 15:40:27 +02:00
|
|
|
/*
|
|
|
|
* Promisor remote linked list
|
2019-06-25 15:40:32 +02:00
|
|
|
*
|
|
|
|
* Information in its fields come from remote.XXX config entries or
|
2020-09-22 05:03:56 +02:00
|
|
|
* from extensions.partialclone.
|
2019-06-25 15:40:27 +02:00
|
|
|
*/
|
|
|
|
struct promisor_remote {
|
|
|
|
struct promisor_remote *next;
|
2019-06-25 15:40:32 +02:00
|
|
|
const char *partial_clone_filter;
|
2019-06-25 15:40:27 +02:00
|
|
|
const char name[FLEX_ARRAY];
|
|
|
|
};
|
|
|
|
|
2019-09-21 02:03:48 +02:00
|
|
|
void promisor_remote_reinit(void);
|
|
|
|
struct promisor_remote *promisor_remote_find(const char *remote_name);
|
|
|
|
int has_promisor_remote(void);
|
2020-04-02 21:19:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fetches all requested objects from all promisor remotes, trying them one at
|
|
|
|
* a time until all objects are fetched. Returns 0 upon success, and non-zero
|
|
|
|
* otherwise.
|
|
|
|
*
|
|
|
|
* If oid_nr is 0, this function returns 0 (success) immediately.
|
|
|
|
*/
|
2019-09-21 02:03:48 +02:00
|
|
|
int promisor_remote_get_direct(struct repository *repo,
|
|
|
|
const struct object_id *oids,
|
|
|
|
int oid_nr);
|
2019-06-25 15:40:27 +02:00
|
|
|
|
2019-06-25 15:40:38 +02:00
|
|
|
/*
|
|
|
|
* This should be used only once from setup.c to set the value we got
|
|
|
|
* from the extensions.partialclone config option.
|
|
|
|
*/
|
2019-09-21 02:03:48 +02:00
|
|
|
void set_repository_format_partial_clone(char *partial_clone);
|
2019-06-25 15:40:38 +02:00
|
|
|
|
2019-06-25 15:40:27 +02:00
|
|
|
#endif /* PROMISOR_REMOTE_H */
|