git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Heather Lapointe <alpha@alphaservcomputing.solutions>
To: "\"René Scharfe\"" <l.s.r@web.de>
Cc: "alphadelta14 via gitgitgadget" <gitgitgadget@gmail.com>,
	"git" <git@vger.kernel.org>
Subject: Re: [PATCH v2 1/2] archive: add --recurse-submodules to git-archive command
Date: Thu, 13 Oct 2022 14:37:43 -0700	[thread overview]
Message-ID: <183d348227c.c5ba226d125397.1082382798689125662@alphaservcomputing.solutions> (raw)
In-Reply-To: <ee64f463-c4f7-cd1e-50ca-7c302415cf52@web.de>


---- On Thu, 13 Oct 2022 10:53:46 -0700 René Scharfe  wrote ---

 > Am 13.10.22 um 13:35 schrieb Alphadelta14 via GitGitGadget: 
 > > From: Alphadelta14 alpha@alphaservcomputing.solutions> 
 > > 
 >  
 > > diff --git a/tree.c b/tree.c 
 > > index 410e3b477e5..c5b5a0ac08f 100644 
 > > --- a/tree.c 
 > > +++ b/tree.c 
 > > @@ -8,6 +8,7 @@ 
 > >  #include "alloc.h" 
 > >  #include "tree-walk.h" 
 > >  #include "repository.h" 
 > > +#include "pathspec.h" 
 > > 
 > >  const char *tree_type = "tree"; 
 > > 
 > > @@ -22,8 +23,8 @@ int read_tree_at(struct repository *r, 
 > >      int len, oldlen = base->len; 
 > >      enum interesting retval = entry_not_interesting; 
 > > 
 > > -    if (parse_tree(tree)) 
 > > -        return -1; 
 > > +    if (repo_parse_tree(r, tree)) 
 > > +        die("Failed to parse tree"); 
 > > 
 > >      init_tree_desc(&desc, tree->buffer, tree->size); 
 > > 
 > > @@ -37,7 +38,7 @@ int read_tree_at(struct repository *r, 
 > >                  continue; 
 > >          } 
 > > 
 > > -        switch (fn(&entry.oid, base, 
 > > +        switch (fn(r, &entry.oid, base, 
 > >                 entry.path, entry.mode, context)) { 
 > >          case 0: 
 > >              continue; 
 > > @@ -47,36 +48,57 @@ int read_tree_at(struct repository *r, 
 > >              return -1; 
 > >          } 
 > > 
 > > -        if (S_ISDIR(entry.mode)) 
 > > +        if (S_ISDIR(entry.mode)) { 
 > >              oidcpy(&oid, &entry.oid); 
 > > -        else if (S_ISGITLINK(entry.mode)) { 
 >  
 > So you remove the non-recursive handling of submodules here... 

The original logic looked like it had not been thoroughly used in the past years.
It was performing a commit lookup within the submodule using the superproject
repository, which would not actually work unless there was global state
being contextually pushed where `the_repository` was being replaced
with a submodule repository instance (it appeared to not be the case currently).

 >  
 > > +            len = tree_entry_len(&entry); 
 > > +            strbuf_add(base, entry.path, len); 
 > > +            strbuf_addch(base, '/'); 
 > > +            retval = read_tree_at(r, lookup_tree(r, &oid), 
 > > +                        base, pathspec, 
 > > +                        fn, context); 
 > > +            strbuf_setlen(base, oldlen); 
 > > +            if (retval) 
 > > +                return -1; 
 > > +        } else if (pathspec->recurse_submodules && S_ISGITLINK(entry.mode)) { 
 >  
 > ... and add recursive handling here, and there is no further else 
 > branch.  Why do we no longer need the non-recursive variant? 

The else case is that we either have submodules, but we don't have pathspec->recurse_submodules.
Both the dir case and submodule cases handle recursion
(but with enough difference that it didn't make sense to use the same logic).
The other else case we simply not recurse (for files).

 >  
 > >              struct commit *commit; 
 > > +            struct repository subrepo; 
 > > +            struct repository* subrepo_p = &subrepo; 
 > > +            struct tree* submodule_tree; 
 > > 
 > > -            commit = lookup_commit(r, &entry.oid); 
 > > +            if (repo_submodule_init(subrepo_p, r, entry.path, null_oid())) 
 > > +                die("couldn't init submodule %s%s", base->buf, entry.path); 
 > > + 
 > > +            if (repo_read_index(subrepo_p) < 0) 
 > > +                die("index file corrupt"); 
 > > + 
 > > +            commit = lookup_commit(subrepo_p, &entry.oid); 
 > >              if (!commit) 
 > >                  die("Commit %s in submodule path %s%s not found", 
 > >                      oid_to_hex(&entry.oid), 
 > >                      base->buf, entry.path); 
 > > 
 > > -            if (parse_commit(commit)) 
 > > +            if (repo_parse_commit(subrepo_p, commit)) 
 > >                  die("Invalid commit %s in submodule path %s%s", 
 > >                      oid_to_hex(&entry.oid), 
 > >                      base->buf, entry.path); 
 > > 
 > > -            oidcpy(&oid, get_commit_tree_oid(commit)); 
 > > +            submodule_tree = repo_get_commit_tree(subrepo_p, commit); 
 > > +            oidcpy(&oid, submodule_tree ? &submodule_tree->object.oid : NULL); 
 > > + 
 > > +            len = tree_entry_len(&entry); 
 > > +            strbuf_add(base, entry.path, len); 
 > > +            strbuf_addch(base, '/'); 
 > > +            retval = read_tree_at(subrepo_p, lookup_tree(subrepo_p, &oid), 
 > > +                        base, pathspec, 
 > > +                        fn, context); 
 > > +            if (retval) { 
 > > +                die("failed to read tree for %s%s", base->buf, entry.path); 
 > > +                return -1; 
 > > +            } 
 > > +            strbuf_setlen(base, oldlen); 
 > > +            repo_clear(subrepo_p); 
 > >          } 
 > > -        else 
 > > -            continue; 
 > > 
 > > -        len = tree_entry_len(&entry); 
 > > -        strbuf_add(base, entry.path, len); 
 > > -        strbuf_addch(base, '/'); 
 > > -        retval = read_tree_at(r, lookup_tree(r, &oid), 
 > > -                      base, pathspec, 
 > > -                      fn, context); 
 > > -        strbuf_setlen(base, oldlen); 
 > > -        if (retval) 
 > > -            return -1; 
 > >      } 
 > >      return 0; 
 > >  } 
 > > @@ -121,7 +143,7 @@ int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size) 
 > >      return 0; 
 > >  } 
 > > 
 > > -int parse_tree_gently(struct tree *item, int quiet_on_missing) 
 > > +int parse_tree_gently(struct repository *r, struct tree *item, int quiet_on_missing) 
 > >  { 
 > >       enum object_type type; 
 > >       void *buffer; 
 > > @@ -129,7 +151,7 @@ int parse_tree_gently(struct tree *item, int quiet_on_missing) 
 > > 
 > >      if (item->object.parsed) 
 > >          return 0; 
 > > -    buffer = read_object_file(&item->object.oid, &type, &size); 
 > > +    buffer = repo_read_object_file(r, &item->object.oid, &type, &size); 
 > >      if (!buffer) 
 > >          return quiet_on_missing ? -1 : 
 > >              error("Could not read %s", 
 >  
 > 

  reply	other threads:[~2022-10-13 21:37 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-12 17:52 [PATCH] archive: add --recurse-submodules to git-archive command Heather Lapointe via GitGitGadget
2022-10-13 11:35 ` [PATCH v2 0/2] archive: Add " Heather Lapointe via GitGitGadget
2022-10-13 11:35   ` [PATCH v2 1/2] archive: add " Alphadelta14 via GitGitGadget
2022-10-13 17:53     ` René Scharfe
2022-10-13 21:37       ` Heather Lapointe [this message]
2022-10-13 11:36   ` [PATCH v2 2/2] archive: fix a case of submodule in submodule traversal Alphadelta14 via GitGitGadget
2022-10-13 17:53   ` [PATCH v2 0/2] archive: Add --recurse-submodules to git-archive command René Scharfe
2022-10-13 21:23     ` Heather Lapointe
2022-10-14  9:47       ` René Scharfe
2022-10-17  2:23   ` [PATCH v3 0/9] " Heather Lapointe via GitGitGadget
2022-10-17  2:23     ` [PATCH v3 1/9] tree: do not use the_repository for tree traversal methods Alphadelta14 via GitGitGadget
2022-10-17 13:26       ` Junio C Hamano
2022-10-26 22:33       ` Glen Choo
2022-10-27 18:09       ` Jonathan Tan
2022-10-27 18:50         ` Junio C Hamano
2022-10-17  2:23     ` [PATCH v3 2/9] tree: update cases to use repo_ tree methods Heather Lapointe via GitGitGadget
2022-10-17  2:23     ` [PATCH v3 3/9] tree: increase test coverage for tree.c Heather Lapointe via GitGitGadget
2022-10-17 13:34       ` Phillip Wood
2022-10-17 13:36       ` Junio C Hamano
2022-10-27 18:28       ` Jonathan Tan
2022-10-17  2:23     ` [PATCH v3 4/9] tree: handle submodule case for read_tree_at properly Heather Lapointe via GitGitGadget
2022-10-17 13:48       ` Phillip Wood
2022-10-17 13:56       ` Junio C Hamano
2022-10-26 22:48       ` Glen Choo
2022-10-27 18:43       ` Jonathan Tan
2022-10-17  2:23     ` [PATCH v3 5/9] tree: add repository parameter to read_tree_fn_t Heather Lapointe via GitGitGadget
2022-10-17  2:23     ` [PATCH v3 6/9] archive: pass repo objects to write_archive handlers Heather Lapointe via GitGitGadget
2022-10-17 13:50       ` Phillip Wood
2022-10-17  2:23     ` [PATCH v3 7/9] archive: remove global repository from archive_args Heather Lapointe via GitGitGadget
2022-10-17  2:23     ` [PATCH v3 8/9] archive: add --recurse-submodules to git-archive command Heather Lapointe via GitGitGadget
2022-10-26 23:34       ` Glen Choo
2022-10-27  7:09         ` René Scharfe
2022-10-27 17:29           ` Glen Choo
2022-10-27 17:30           ` Glen Choo
2022-10-27 17:33           ` Glen Choo
2022-10-17  2:23     ` [PATCH v3 9/9] archive: add tests for git archive --recurse-submodules Heather Lapointe via GitGitGadget
2022-10-27 18:54       ` Jonathan Tan
2022-10-27 23:30         ` Glen Choo
2022-10-28  0:17       ` Ævar Arnfjörð Bjarmason
2022-10-17 13:57     ` [PATCH v3 0/9] archive: Add --recurse-submodules to git-archive command Phillip Wood
2022-10-18 18:34     ` Junio C Hamano
2022-10-18 18:48       ` Heather Lapointe
2022-10-19 16:16         ` Junio C Hamano
2022-10-19 20:44           ` Junio C Hamano
2022-10-20  1:21             ` Junio C Hamano
2022-10-21  1:43               ` Junio C Hamano
2022-10-26 22:14     ` Glen Choo
2022-10-28 18:18       ` Heather Lapointe

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=183d348227c.c5ba226d125397.1082382798689125662@alphaservcomputing.solutions \
    --to=alpha@alphaservcomputing.solutions \
    --cc=git@vger.kernel.org \
    --cc=gitgitgadget@gmail.com \
    --cc=l.s.r@web.de \
    /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).