public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
From: Paul Barker <pbarker@konsulko.com>
To: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 1/5] archiver.bbclass: Handle gitsm URLs in the mirror archiver
Date: Wed, 11 Mar 2020 11:50:25 +0000	[thread overview]
Message-ID: <20200311115025.56045856@ub1910> (raw)
In-Reply-To: <1d5f679e2c28e2858b098fde142760edcf0c2708.camel@linuxfoundation.org>

On Wed, 11 Mar 2020 11:38:44 +0000
Richard Purdie <richard.purdie@linuxfoundation.org> wrote:

> On Wed, 2020-03-11 at 11:31 +0000, Paul Barker wrote:
> > On Tue, 10 Mar 2020 23:16:38 +0000
> > Richard Purdie <richard.purdie@linuxfoundation.org> wrote:
> >   
> > > On Mon, 2020-03-09 at 14:21 +0000, Paul Barker wrote:  
> > > > To fully archive a `gitsm://` entry in SRC_URI we need to also capture
> > > > the submodules recursively. If shallow mirror tarballs are found, they
> > > > must be temporarily extracted so that the submodules can be determined.
> > > > 
> > > > Signed-off-by: Paul Barker <pbarker@konsulko.com>
> > > > ---
> > > >  meta/classes/archiver.bbclass | 31 ++++++++++++++++++++++++++-----
> > > >  1 file changed, 26 insertions(+), 5 deletions(-)
> > > > 
> > > > diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
> > > > index 013195df7d..fef7ad4f62 100644
> > > > --- a/meta/classes/archiver.bbclass
> > > > +++ b/meta/classes/archiver.bbclass
> > > > @@ -306,7 +306,7 @@ python do_ar_configured() {
> > > >  }
> > > >  
> > > >  python do_ar_mirror() {
> > > > -    import subprocess
> > > > +    import shutil, subprocess, tempfile
> > > >  
> > > >      src_uri = (d.getVar('SRC_URI') or '').split()
> > > >      if len(src_uri) == 0:
> > > > @@ -337,12 +337,10 @@ python do_ar_mirror() {
> > > >  
> > > >      bb.utils.mkdirhier(destdir)
> > > >  
> > > > -    fetcher = bb.fetch2.Fetch(src_uri, d)
> > > > -
> > > > -    for url in fetcher.urls:
> > > > +    def archive_url(fetcher, url):
> > > >          if is_excluded(url):
> > > >              bb.note('Skipping excluded url: %s' % (url))
> > > > -            continue
> > > > +            return
> > > >  
> > > >          bb.note('Archiving url: %s' % (url))
> > > >          ud = fetcher.ud[url]
> > > > @@ -376,6 +374,29 @@ python do_ar_mirror() {
> > > >          bb.note('Copying source mirror')
> > > >          cmd = 'cp -fpPRH %s %s' % (localpath, destdir)
> > > >          subprocess.check_call(cmd, shell=True)
> > > > +
> > > > +        if url.startswith('gitsm://'):
> > > > +            def archive_submodule(ud, url, module, modpath, workdir, d):
> > > > +                url += ";bareclone=1;nobranch=1"
> > > > +                newfetch = bb.fetch2.Fetch([url], d, cache=False)
> > > > +
> > > > +                for url in newfetch.urls:
> > > > +                    archive_url(newfetch, url)
> > > > +
> > > > +            # If we're using a shallow mirror tarball it needs to be unpacked
> > > > +            # temporarily so that we can examine the .gitmodules file
> > > > +            if ud.shallow and os.path.exists(ud.fullshallow) and ud.method.need_update(ud, d):
> > > > +                tmpdir = tempfile.mkdtemp(dir=d.getVar("DL_DIR"))
> > > > +                subprocess.check_call("tar -xzf %s" % ud.fullshallow, cwd=tmpdir, shell=True)
> > > > +                ud.method.process_submodules(ud, tmpdir, archive_submodule, d)
> > > > +                shutil.rmtree(tmpdir)
> > > > +            else:
> > > > +                ud.method.process_submodules(ud, ud.clonedir, archive_submodule, d)
> > > > +
> > > > +    fetcher = bb.fetch2.Fetch(src_uri, d, cache=False)
> > > > +
> > > > +    for url in fetcher.urls:
> > > > +        archive_url(fetcher, url)
> > > >  }    
> > > 
> > > I can't help feeling that this is basically a sign the fetcher is
> > > broken.
> > > 
> > > What should really happen here is that there should be a method in the
> > > fetcher we call into.
> > > 
> > > Instead we're teaching code how to hack around the fetcher. Would it be
> > > possible to add some API we could call into here and maintain integrity
> > > of the fetcher API?  
> > 
> > This is gitsm-specific so the process_submodules method is probably the
> > correct fetcher API. We need to call back into an archiver-supplied function
> > for each submodule that is found.
> > 
> > I guess process_submodules could do the temporary unpacking of the shallow
> > archive and then this code would be simplified. Is that what you had in mind?  
> 
> 
> Nearly. The "operation" here is similar to "download" or "unpack" but
> amounts to "make a mirror copy". Should the fetcher have such a method,
> which would then have the fetcher implementation details in the
> fetchers themselves?

I structured things this way after the discussions we've had previously about
not wanting to add too many new code paths to the fetcher. I'd also like to
keep the logic in a bbclass as much as possible so that it can be more easily
carried as a local backport to earlier Yocto Project releases.

I do see your point though, this is liable to grow warts over time as special
cases are added for different fetchers.

The cause of the warts here is that the gitsm fetcher downloads and creates
mirror tarballs for sources which aren't listed in SRC_URI. The archiver
would be simpler if we could assume that all sources are included in SRC_URI.
Perhaps the solution is not to add a "make a mirror copy" API but instead add
an "expand SRC_URI with any dependencies" API that the archiver can call
before it iterates over the list of sources.

-- 
Paul Barker
Konsulko Group


  reply	other threads:[~2020-03-11 11:50 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-09 14:21 [PATCH 0/5] Archiver and externalsrc fixes Paul Barker
2020-03-09 14:21 ` [PATCH 1/5] archiver.bbclass: Handle gitsm URLs in the mirror archiver Paul Barker
2020-03-10 23:16   ` Richard Purdie
2020-03-11 11:31     ` Paul Barker
2020-03-11 11:38       ` Richard Purdie
2020-03-11 11:50         ` Paul Barker [this message]
2020-03-11 11:53           ` Richard Purdie
2020-03-09 14:21 ` [PATCH 2/5] archiver.bbclass: Make do_deploy_archives a recursive dependency Paul Barker
2020-03-10 23:18   ` Richard Purdie
2020-03-11 11:40     ` Paul Barker
2020-04-01 14:49       ` [OE-core] " Mark Hatle
     [not found]       ` <1601B99892621331.16702@lists.openembedded.org>
2020-04-01 17:20         ` Mark Hatle
2020-03-09 14:21 ` [PATCH 3/5] kernelsrc.bbclass: Fix externalsrc support Paul Barker
2020-03-09 14:21 ` [PATCH 4/5] perf: " Paul Barker
2020-03-09 14:21 ` [PATCH 5/5] kernel-yocto.bbclass: Support config fragments with externalsrc Paul Barker

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=20200311115025.56045856@ub1910 \
    --to=pbarker@konsulko.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=richard.purdie@linuxfoundation.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