From: "Shawn O. Pearce" <spearce@spearce.org>
To: git@vger.kernel.org
Cc: Daniel Barkalow <barkalow@iabervon.org>
Subject: [RFC PATCH v2 08/16] remote-helpers: Support custom transport options
Date: Mon, 12 Oct 2009 19:25:07 -0700 [thread overview]
Message-ID: <1255400715-10508-9-git-send-email-spearce@spearce.org> (raw)
In-Reply-To: <1255400715-10508-1-git-send-email-spearce@spearce.org>
Some transports, like the native pack transport implemented by
fetch-pack, support useful features like depth or include tags.
These should be exposed if the underlying helper knows how to
use them and is based upon the same infrastructure.
Helpers must advertise the options they support, any attempt
to set an unsupported option will cause a failure.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
CC: Daniel Barkalow <barkalow@iabervon.org>
---
Documentation/git-remote-helpers.txt | 20 ++++++++++
remote-curl.c | 16 ++++++-
transport-helper.c | 70 ++++++++++++++++++++++++++++++++++
3 files changed, 103 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-remote-helpers.txt b/Documentation/git-remote-helpers.txt
index e10ce99..334ab30 100644
--- a/Documentation/git-remote-helpers.txt
+++ b/Documentation/git-remote-helpers.txt
@@ -46,6 +46,7 @@ Supported if the helper has the "fetch" capability.
'fetch-multiple'::
Fetches multiple objects at once. The fetch-multiple
command is followed by one or more 'fetch' lines as above,
+ zero or more 'option' lines for the supported options,
and then a blank line to terminate the batch. Outputs a
single blank line when the entire batch is complete.
Optionally may output a 'lock <file>' line indicating a
@@ -69,6 +70,9 @@ CAPABILITIES
'fetch-multiple'::
This helper supports the 'fetch-multiple' command.
+'option' <name>::
+ This helper supports the option <name> under fetch-multiple.
+
REF LIST ATTRIBUTES
-------------------
@@ -76,10 +80,26 @@ None are defined yet, but the caller must accept any which are supplied.
FETCH OPTIONS
-------------
+To enable an option the helper must list it in 'capabilities'.
'option verbose'::
Print more verbose activity messages to stderr.
+'option uploadpack' <command>::
+ The program to use on the remote side to generate a pack.
+
+'option depth' <depth>::
+ Deepen the history of a shallow repository.
+
+'option keep'::
+ Keep the transferred pack(s) with .keep files.
+
+'option followtags'::
+ Aggressively fetch annotated tags if possible.
+
+'option thin'::
+ Transfer the data as a thin pack if possible.
+
Documentation
-------------
Documentation by Daniel Barkalow.
diff --git a/remote-curl.c b/remote-curl.c
index 34ca4e7..e5d9768 100644
--- a/remote-curl.c
+++ b/remote-curl.c
@@ -86,7 +86,12 @@ static struct ref *get_refs(void)
return refs;
}
-static int fetch_dumb(int nr_heads, struct ref **to_fetch)
+struct fetch_args {
+ unsigned verbose : 1;
+};
+
+static int fetch_dumb(struct fetch_args *args,
+ int nr_heads, struct ref **to_fetch)
{
char **targets = xmalloc(nr_heads * sizeof(char*));
int ret, i;
@@ -98,7 +103,7 @@ static int fetch_dumb(int nr_heads, struct ref **to_fetch)
walker->get_all = 1;
walker->get_tree = 1;
walker->get_history = 1;
- walker->get_verbosely = 0;
+ walker->get_verbosely = args->verbose;
walker->get_recover = 0;
ret = walker_fetch(walker, nr_heads, targets, NULL, NULL);
@@ -115,7 +120,9 @@ static void parse_fetch(struct strbuf *buf, int multiple)
struct ref *list_head = NULL;
struct ref **list = &list_head;
int alloc_heads = 0, nr_heads = 0;
+ struct fetch_args args;
+ memset(&args, 0, sizeof(args));
do {
if (!prefixcmp(buf->buf, "fetch ")) {
char *p = buf->buf + strlen("fetch ");
@@ -144,6 +151,8 @@ static void parse_fetch(struct strbuf *buf, int multiple)
if (!multiple)
break;
}
+ else if (!strcmp(buf->buf, "option verbose"))
+ args.verbose = 1;
else
die("http transport does not support %s", buf->buf);
@@ -154,7 +163,7 @@ static void parse_fetch(struct strbuf *buf, int multiple)
break;
} while (1);
- if (fetch_dumb(nr_heads, to_fetch))
+ if (fetch_dumb(&args, nr_heads, to_fetch))
exit(128); /* error already reported */
free_refs(list_head);
free(to_fetch);
@@ -208,6 +217,7 @@ int main(int argc, const char **argv)
} else if (!strcmp(buf.buf, "capabilities")) {
printf("fetch\n");
printf("fetch-multiple\n");
+ printf("option verbose\n");
printf("\n");
fflush(stdout);
} else {
diff --git a/transport-helper.c b/transport-helper.c
index eb66e0c..bb6cd1b 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -5,12 +5,15 @@
#include "commit.h"
#include "diff.h"
#include "revision.h"
+#include "string-list.h"
+
struct helper_data
{
const char *name;
struct child_process *helper;
FILE *out;
+ struct string_list options;
unsigned fetch : 1,
fetch_multiple : 1;
};
@@ -51,6 +54,11 @@ static struct child_process *get_helper(struct transport *transport)
data->fetch = 1;
if (!strcmp(buf.buf, "fetch-multiple"))
data->fetch_multiple = 1;
+ if (!prefixcmp(buf.buf, "option ")) {
+ const char *name = buf.buf + strlen("option ");
+ if (!string_list_lookup(name, &data->options))
+ string_list_insert(xstrdup(name), &data->options);
+ }
}
return data->helper;
}
@@ -68,6 +76,65 @@ static int disconnect_helper(struct transport *transport)
free(data->helper);
data->helper = NULL;
}
+ string_list_clear(&data->options, 1);
+ free(data);
+ return 0;
+}
+
+static int save_option(struct transport *transport,
+ const char *name, const char *value)
+{
+ struct helper_data *data = transport->data;
+ struct string_list_item *s;
+
+ s = string_list_lookup(name, &data->options);
+ if (!s)
+ return 1;
+ free(s->util);
+ s->util = value ? xstrdup(value) : NULL;
+ return 0;
+}
+
+static int set_helper_option(struct transport *transport,
+ const char *name, const char *value)
+{
+ struct helper_data *data = transport->data;
+ int is_bool = 0;
+
+ get_helper(transport);
+
+ if (!data->fetch_multiple)
+ return 1;
+
+ if (!strcmp(name, TRANS_OPT_THIN))
+ is_bool = 1;
+ else if (!strcmp(name, TRANS_OPT_KEEP))
+ is_bool = 1;
+ else if (!strcmp(name, TRANS_OPT_FOLLOWTAGS))
+ is_bool = 1;
+
+ if (is_bool)
+ value = value ? "" : NULL;
+ return save_option(transport, name, value);
+}
+
+static void standard_options(struct transport *transport)
+{
+ save_option(transport, "verbose", transport->verbose ? "" : NULL);
+}
+
+static int print_options(struct string_list_item *s, void *arg)
+{
+ struct strbuf *buf = arg;
+ char *name = s->string;
+ char *value = s->util;
+
+ if (!value)
+ return 0;
+ else if (*value)
+ strbuf_addf(buf, "option %s %s\n", name, value);
+ else
+ strbuf_addf(buf, "option %s\n", name);
return 0;
}
@@ -114,6 +181,8 @@ static int fetch_with_fetch(struct transport *transport,
}
if (data->fetch_multiple) {
+ standard_options(transport);
+ for_each_string_list(print_options, &data->options, &buf);
strbuf_addch(&buf, '\n');
perform_fetch_command(transport, &buf);
}
@@ -191,6 +260,7 @@ int transport_helper_init(struct transport *transport, const char *name)
data->name = name;
transport->data = data;
+ transport->set_option = set_helper_option;
transport->get_refs_list = get_refs_list;
transport->fetch = fetch;
transport->disconnect = disconnect_helper;
--
1.6.5.52.g0ff2e
next prev parent reply other threads:[~2009-10-13 2:34 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-13 2:24 [RFC PATCH v2 00/16] Return of smart HTTP Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 01/16] pkt-line: Add strbuf based functions Shawn O. Pearce
2009-10-13 7:29 ` Johannes Sixt
2009-10-13 18:10 ` Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 02/16] pkt-line: Make packet_read_line easier to debug Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 03/16] fetch-pack: Use a strbuf to compose the want list Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 04/16] Move "get_ack()" back to fetch-pack Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 05/16] Add multi_ack_2 capability to fetch-pack/upload-pack Shawn O. Pearce
2009-10-13 21:35 ` Jakub Narebski
2009-10-13 21:36 ` Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 06/16] remote-curl: Refactor walker initialization Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 07/16] remote-helpers: Fetch more than one ref in a batch Shawn O. Pearce
2009-10-13 3:56 ` Daniel Barkalow
2009-10-13 18:05 ` Shawn O. Pearce
2009-10-13 2:25 ` Shawn O. Pearce [this message]
2009-10-13 4:23 ` [RFC PATCH v2 08/16] remote-helpers: Support custom transport options Daniel Barkalow
2009-10-13 18:45 ` Shawn O. Pearce
2009-10-13 20:39 ` Daniel Barkalow
2009-10-13 20:52 ` Shawn O. Pearce
2009-10-13 21:41 ` Daniel Barkalow
2009-10-13 21:51 ` Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 09/16] Move WebDAV HTTP push under remote-curl Shawn O. Pearce
2009-10-13 4:41 ` Mike Hommey
2009-10-13 18:04 ` Johannes Schindelin
2009-10-13 2:25 ` [RFC PATCH v2 10/16] Git-aware CGI to provide dumb HTTP transport Shawn O. Pearce
2009-10-13 10:56 ` Johannes Sixt
2009-10-13 2:25 ` [RFC PATCH v2 11/16] Add one shot RPC options to upload-pack, receive-pack Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 12/16] Smart fetch and push over HTTP: server side Shawn O. Pearce
2009-10-13 7:30 ` Johannes Sixt
2009-10-13 18:24 ` Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 13/16] Discover refs via smart HTTP server when available Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 14/16] Smart push over HTTP: client side Shawn O. Pearce
2009-10-13 11:02 ` Felipe Contreras
2009-10-13 2:25 ` [RFC PATCH v2 15/16] Smart fetch " Shawn O. Pearce
2009-10-13 2:25 ` [RFC PATCH v2 16/16] Smart HTTP fetch: gzip requests Shawn O. Pearce
2009-10-13 8:38 ` Junio C Hamano
2009-10-13 3:45 ` [RFC PATCH v2 00/16] Return of smart HTTP eduard stefan
2009-10-13 6:42 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1255400715-10508-9-git-send-email-spearce@spearce.org \
--to=spearce@spearce.org \
--cc=barkalow@iabervon.org \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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 NNTP newsgroup(s).