git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob d2f574651ef1bd61471701b0d3f71b926029f00f 1989 bytes (raw)
name: promisor-remote.c 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
 
#include "cache.h"
#include "promisor-remote.h"
#include "config.h"

static struct promisor_remote *promisors;
static struct promisor_remote **promisors_tail = &promisors;

struct promisor_remote *promisor_remote_new(const char *remote_name)
{
	struct promisor_remote *o;

	o = xcalloc(1, sizeof(*o));
	o->remote_name = xstrdup(remote_name);

	*promisors_tail = o;
	promisors_tail = &o->next;

	return o;
}

static struct promisor_remote *promisor_remote_look_up(const char *remote_name,
						       struct promisor_remote **previous)
{
	struct promisor_remote *o, *p;

	for (p = NULL, o = promisors; o; p = o, o = o->next)
		if (o->remote_name && !strcmp(o->remote_name, remote_name)) {
			if (previous)
				*previous = p;
			return o;
		}

	return NULL;
}

static void promisor_remote_move_to_tail(struct promisor_remote *o,
					 struct promisor_remote *previous)
{
	if (previous)
		previous->next = o->next;
	else
		promisors = o->next ? o->next : o;
	o->next = NULL;
	*promisors_tail = o;
	promisors_tail = &o->next;
}

static int promisor_remote_config(const char *var, const char *value, void *data)
{
	struct promisor_remote *o;
	const char *name;
	int namelen;
	const char *subkey;

	if (parse_config_key(var, "remote", &name, &namelen, &subkey) < 0)
		return 0;

	if (!strcmp(subkey, "promisor")) {
		char *remote_name;

		if (!git_config_bool(var, value))
			return 0;

		remote_name = xmemdupz(name, namelen);

		if (!promisor_remote_look_up(remote_name, NULL))
			promisor_remote_new(remote_name);

		free(remote_name);
		return 0;
	}

	return 0;
}

static void promisor_remote_init(void)
{
	static int initialized;

	if (initialized)
		return;
	initialized = 1;

	git_config(promisor_remote_config, NULL);
}

struct promisor_remote *promisor_remote_find(const char *remote_name)
{
	promisor_remote_init();

	if (!remote_name)
		return promisors;

	return promisor_remote_look_up(remote_name, NULL);
}

int has_promisor_remote(void)
{
	return !!promisor_remote_find(NULL);
}

debug log:

solving d2f574651e ...
found d2f574651e in https://public-inbox.org/git/20190312132959.11764-3-chriscool@tuxfamily.org/ ||
	https://public-inbox.org/git/20190122144212.15119-5-chriscool@tuxfamily.org/

applying [1/1] https://public-inbox.org/git/20190312132959.11764-3-chriscool@tuxfamily.org/
diff --git a/promisor-remote.c b/promisor-remote.c
new file mode 100644
index 0000000000..d2f574651e

Checking patch promisor-remote.c...
Applied patch promisor-remote.c cleanly.

skipping https://public-inbox.org/git/20190122144212.15119-5-chriscool@tuxfamily.org/ for d2f574651e
index at:
100644 d2f574651ef1bd61471701b0d3f71b926029f00f	promisor-remote.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).