git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: "Derrick Stolee via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: gitster@pobox.com, me@ttaylorr.com, newren@gmail.com,
	avarab@gmail.com, dyroneteng@gmail.com,
	Johannes.Schindelin@gmx.de, szeder.dev@gmail.com,
	mjcheetham@outlook.com, steadmon@google.com,
	Derrick Stolee <derrickstolee@github.com>
Subject: [PATCH v2 0/5] Bundle URIs II: git clone --bundle-uri
Date: Tue, 02 Aug 2022 12:29:39 +0000	[thread overview]
Message-ID: <pull.1300.v2.git.1659443384.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.1300.git.1658781277.gitgitgadget@gmail.com>

This is the second series building the bundle URI feature as discussed in
the previous series that added the design document [1]. This series does not
modify the design document, so the patches are independent and can be
applied to the latest 'master'.

[1]
https://lore.kernel.org/git/pull.1248.v3.git.1658757188.gitgitgadget@gmail.com

This series brings in just enough logic that we can bootstrap clones from a
single bundle using git clone --bundle-uri=<X>.

 * Patch 1 adds a 'get' capability to 'git remote-https' which allows
   downloading the contents of a URI to a local file.
 * Patch 2 creates basic file-copy logic within a new bundle-uri.c file. It
   is not used until patch 3.
 * Patch 3 creates the git clone --bundle-uri=<X> option, allowing Git to
   bootstrap a clone from a bundle, but get the remaining objects from the
   origin URL. (As of this patch, it only accepts a filename.)
 * Patch 4 extends the git clone --bundle-uri=<X> option to allow file://
   and https:// URIs.
 * Patch 5 is a CLI helper to avoid using --bundle-uri and --depth at the
   same time in git clone.

As outlined in [1], the next steps after this are:

 1. Allow parsing a bundle list as a config file at the given URI. The
    key-value format is unified with the protocol v2 verb (coming in (3)).
    [2]
 2. Implement the protocol v2 verb, re-using the bundle list logic from (2).
    Use this to auto-discover bundle URIs during 'git clone' (behind a
    config option). [3]
 3. Implement the 'creationToken' heuristic, allowing incremental 'git
    fetch' commands to download a bundle list from a configured URI, and
    only download bundles that are new based on the creation token values.
    [4]

I have prepared some of this work as pull requests on my personal fork so
curious readers can look ahead to where we are going:

[2] https://github.com/derrickstolee/git/pull/20

[3] https://github.com/derrickstolee/git/pull/21

[4] https://github.com/derrickstolee/git/pull/22

Note: this series includes some code pulled out of the first series [1], and
in particular the git fetch --bundle-uri=<X> option is removed. The
intention was to replace that with git bundle fetch <X>, but that conflicts
with the work to refactor how subcommands are parsed. The git bundle fetch
subcommand could be added later for maximum flexibility on the client side,
but we can also move forward without it.


Updates in v2
=============

 * Several typos or small tweaks. See the range-diff for details.

Thanks, -Stolee

Derrick Stolee (5):
  remote-curl: add 'get' capability
  bundle-uri: create basic file-copy logic
  clone: add --bundle-uri option
  bundle-uri: add support for http(s):// and file://
  clone: --bundle-uri cannot be combined with --depth

 Documentation/git-clone.txt         |   7 ++
 Documentation/gitremote-helpers.txt |   9 ++
 Makefile                            |   1 +
 builtin/clone.c                     |  18 +++
 bundle-uri.c                        | 168 ++++++++++++++++++++++++++++
 bundle-uri.h                        |  14 +++
 remote-curl.c                       |  28 +++++
 t/t5557-http-get.sh                 |  39 +++++++
 t/t5558-clone-bundle-uri.sh         |  81 ++++++++++++++
 t/t5606-clone-options.sh            |   8 ++
 10 files changed, 373 insertions(+)
 create mode 100644 bundle-uri.c
 create mode 100644 bundle-uri.h
 create mode 100755 t/t5557-http-get.sh
 create mode 100755 t/t5558-clone-bundle-uri.sh


base-commit: e72d93e88cb20b06e88e6e7d81bd1dc4effe453f
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1300%2Fderrickstolee%2Fbundle-redo%2Fclone-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1300/derrickstolee/bundle-redo/clone-v2
Pull-Request: https://github.com/gitgitgadget/git/pull/1300

Range-diff vs v1:

 1:  40808e92afb ! 1:  4df4a1d679a remote-curl: add 'get' capability
     @@ Commit message
          'get <url> <path>' to download the file at <url> into the file at
          <path>.
      
     +    Reviewed-by: Josh Steadmon <steadmon@google.com>
          Signed-off-by: Derrick Stolee <derrickstolee@github.com>
      
       ## Documentation/gitremote-helpers.txt ##
     @@ remote-curl.c: static void parse_fetch(struct strbuf *buf)
       	strbuf_reset(buf);
       }
       
     -+static void parse_get(struct strbuf *buf)
     ++static void parse_get(const char *arg)
      +{
      +	struct strbuf url = STRBUF_INIT;
      +	struct strbuf path = STRBUF_INIT;
     -+	const char *p, *space;
     ++	const char *space;
      +
     -+	if (!skip_prefix(buf->buf, "get ", &p))
     -+		die(_("http transport does not support %s"), buf->buf);
     -+
     -+	space = strchr(p, ' ');
     ++	space = strchr(arg, ' ');
      +
      +	if (!space)
      +		die(_("protocol error: expected '<url> <path>', missing space"));
      +
     -+	strbuf_add(&url, p, space - p);
     ++	strbuf_add(&url, arg, space - arg);
      +	strbuf_addstr(&path, space + 1);
      +
      +	if (http_get_file(url.buf, path.buf, NULL))
     @@ remote-curl.c: static void parse_fetch(struct strbuf *buf)
      +	strbuf_release(&path);
      +	printf("\n");
      +	fflush(stdout);
     -+	strbuf_reset(buf);
      +}
      +
       static int push_dav(int nr_spec, const char **specs)
     @@ remote-curl.c: int cmd_main(int argc, const char **argv)
       			fflush(stdout);
       
      +		} else if (skip_prefix(buf.buf, "get ", &arg)) {
     -+			parse_get(&buf);
     ++			parse_get(arg);
      +			fflush(stdout);
      +
       		} else if (!strcmp(buf.buf, "capabilities")) {
     @@ t/t5557-http-get.sh (new)
      +start_httpd
      +
      +test_expect_success 'get by URL: 404' '
     ++	test_when_finished "rm -f file.temp" &&
      +	url="$HTTPD_URL/none.txt" &&
      +	cat >input <<-EOF &&
      +	capabilities
     @@ t/t5557-http-get.sh (new)
      +
      +	test_must_fail git remote-http $url <input 2>err &&
      +	test_path_is_missing file1 &&
     -+	grep "failed to download file at URL" err &&
     -+	rm file1.temp
     ++	grep "failed to download file at URL" err
      +'
      +
      +test_expect_success 'get by URL: 200' '
     @@ t/t5557-http-get.sh (new)
      +
      +	EOF
      +
     -+	GIT_TRACE2_PERF=1 git remote-http $url <input &&
     ++	git remote-http $url <input &&
      +	test_cmp "$HTTPD_DOCUMENT_ROOT_PATH/exists.txt" file2
      +'
      +
 2:  7d3159f0d9a ! 2:  6a6f1a04889 bundle-uri: create basic file-copy logic
     @@ Commit message
          little benefit. This is especially the case because we expect that most
          bundle URI use will be based on HTTPS instead of file copies.
      
     +    Reviewed-by: Josh Steadmon <steadmon@google.com>
          Signed-off-by: Derrick Stolee <derrickstolee@github.com>
      
       ## Makefile ##
     @@ bundle-uri.h (new)
      +int fetch_bundle_uri(struct repository *r, const char *uri);
      +
      +#endif
     +
     + ## t/t5557-http-get.sh ##
     +@@
     + 
     + test_description='test downloading a file by URL'
     + 
     ++TEST_PASSES_SANITIZE_LEAK=true
     ++
     + . ./test-lib.sh
     + 
     + . "$TEST_DIRECTORY"/lib-httpd.sh
 3:  29e645a54ba ! 3:  00debaf6e77 clone: add --bundle-uri option
     @@ Commit message
          Git to bootstrap the new repository with these bundles before fetching
          the remaining objects from the origin server.
      
     +    Reviewed-by: Josh Steadmon <steadmon@google.com>
          Signed-off-by: Derrick Stolee <derrickstolee@github.com>
      
       ## Documentation/git-clone.txt ##
 4:  f6bc3177332 ! 4:  e4f2dcc7a45 bundle-uri: add support for http(s):// and file://
     @@ Commit message
          Otherwise, check to see if file:// is present and modify the prefix
          accordingly.
      
     +    Reviewed-by: Josh Steadmon <steadmon@google.com>
          Signed-off-by: Derrick Stolee <derrickstolee@github.com>
      
       ## bundle-uri.c ##
     @@ bundle-uri.c: static int find_temp_filename(struct strbuf *name)
      +{
      +	const char *out;
      +
     -+	if (skip_prefix(uri, "https:", &out) ||
     -+	    skip_prefix(uri, "http:", &out))
     ++	if (istarts_with(uri, "https:") ||
     ++	    istarts_with(uri, "http:"))
      +		return download_https_uri_to_file(filename, uri);
      +
      +	if (!skip_prefix(uri, "file://", &out))
 5:  e823b168ab7 ! 5:  acee1fae027 clone: --bundle-uri cannot be combined with --depth
     @@ Commit message
          fetch request, but with a list of haves that might cause a more painful
          computation of that shallow pack-file.
      
     +    Reviewed-by: Josh Steadmon <steadmon@google.com>
          Signed-off-by: Derrick Stolee <derrickstolee@github.com>
      
       ## Documentation/git-clone.txt ##

-- 
gitgitgadget

  parent reply	other threads:[~2022-08-02 12:36 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-25 20:34 [PATCH 0/5] Bundle URIs II: git clone --bundle-uri Derrick Stolee via GitGitGadget
2022-07-25 20:34 ` [PATCH 1/5] remote-curl: add 'get' capability Derrick Stolee via GitGitGadget
2022-07-27 22:08   ` Josh Steadmon
2022-07-27 23:00   ` Ævar Arnfjörð Bjarmason
2022-08-01 13:55     ` Derrick Stolee
2022-08-01 14:39       ` Ævar Arnfjörð Bjarmason
2022-07-25 20:34 ` [PATCH 2/5] bundle-uri: create basic file-copy logic Derrick Stolee via GitGitGadget
2022-07-27 22:09   ` Josh Steadmon
2022-08-01 13:58     ` Derrick Stolee
2022-07-25 20:34 ` [PATCH 3/5] clone: add --bundle-uri option Derrick Stolee via GitGitGadget
2022-07-25 20:34 ` [PATCH 4/5] bundle-uri: add support for http(s):// and file:// Derrick Stolee via GitGitGadget
2022-07-27 22:09   ` Josh Steadmon
2022-08-01 14:00     ` Derrick Stolee
2022-07-25 20:34 ` [PATCH 5/5] clone: --bundle-uri cannot be combined with --depth Derrick Stolee via GitGitGadget
2022-07-27 22:11 ` [PATCH 0/5] Bundle URIs II: git clone --bundle-uri Josh Steadmon
2022-08-01 14:00   ` Derrick Stolee
2022-08-02 12:29 ` Derrick Stolee via GitGitGadget [this message]
2022-08-02 12:29   ` [PATCH v2 1/5] remote-curl: add 'get' capability Derrick Stolee via GitGitGadget
2022-08-02 12:29   ` [PATCH v2 2/5] bundle-uri: create basic file-copy logic Derrick Stolee via GitGitGadget
2022-08-02 12:29   ` [PATCH v2 3/5] clone: add --bundle-uri option Derrick Stolee via GitGitGadget
2022-08-02 12:29   ` [PATCH v2 4/5] bundle-uri: add support for http(s):// and file:// Derrick Stolee via GitGitGadget
2022-08-02 21:32     ` Junio C Hamano
2022-08-04 15:34       ` Derrick Stolee
2022-08-04 18:19         ` Junio C Hamano
2022-08-02 12:29   ` [PATCH v2 5/5] clone: --bundle-uri cannot be combined with --depth Derrick Stolee via GitGitGadget
2022-08-09 13:11   ` [PATCH v3 0/5] Bundle URIs II: git clone --bundle-uri Derrick Stolee via GitGitGadget
2022-08-09 13:11     ` [PATCH v3 1/5] remote-curl: add 'get' capability Derrick Stolee via GitGitGadget
2022-08-09 13:11     ` [PATCH v3 2/5] bundle-uri: create basic file-copy logic Derrick Stolee via GitGitGadget
2022-08-09 13:11     ` [PATCH v3 3/5] clone: add --bundle-uri option Derrick Stolee via GitGitGadget
2022-08-22 21:24       ` Junio C Hamano
2022-08-23 14:05         ` Derrick Stolee
2022-08-24 15:46           ` Junio C Hamano
2022-08-09 13:11     ` [PATCH v3 4/5] bundle-uri: add support for http(s):// and file:// Derrick Stolee via GitGitGadget
2022-08-29  4:58       ` Teng Long
2022-08-30 13:33         ` Derrick Stolee
2022-08-09 13:11     ` [PATCH v3 5/5] clone: --bundle-uri cannot be combined with --depth Derrick Stolee via GitGitGadget

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

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=pull.1300.v2.git.1659443384.gitgitgadget@gmail.com \
    --to=gitgitgadget@gmail.com \
    --cc=Johannes.Schindelin@gmx.de \
    --cc=avarab@gmail.com \
    --cc=derrickstolee@github.com \
    --cc=dyroneteng@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=me@ttaylorr.com \
    --cc=mjcheetham@outlook.com \
    --cc=newren@gmail.com \
    --cc=steadmon@google.com \
    --cc=szeder.dev@gmail.com \
    /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.
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).