mirror of
https://github.com/mudler/luet.git
synced 2025-09-10 19:49:06 +00:00
Update gomod and vendor
This commit is contained in:
187
vendor/github.com/moby/buildkit/util/winlayers/applier.go
generated
vendored
Normal file
187
vendor/github.com/moby/buildkit/util/winlayers/applier.go
generated
vendored
Normal file
@@ -0,0 +1,187 @@
|
||||
package winlayers
|
||||
|
||||
import (
|
||||
"archive/tar"
|
||||
"context"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"runtime"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/containerd/containerd/archive"
|
||||
"github.com/containerd/containerd/archive/compression"
|
||||
"github.com/containerd/containerd/content"
|
||||
"github.com/containerd/containerd/diff"
|
||||
"github.com/containerd/containerd/errdefs"
|
||||
"github.com/containerd/containerd/images"
|
||||
"github.com/containerd/containerd/mount"
|
||||
digest "github.com/opencontainers/go-digest"
|
||||
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func NewFileSystemApplierWithWindows(cs content.Provider, a diff.Applier) diff.Applier {
|
||||
if runtime.GOOS == "windows" {
|
||||
return a
|
||||
}
|
||||
|
||||
return &winApplier{
|
||||
cs: cs,
|
||||
a: a,
|
||||
}
|
||||
}
|
||||
|
||||
type winApplier struct {
|
||||
cs content.Provider
|
||||
a diff.Applier
|
||||
}
|
||||
|
||||
func (s *winApplier) Apply(ctx context.Context, desc ocispec.Descriptor, mounts []mount.Mount, opts ...diff.ApplyOpt) (d ocispec.Descriptor, err error) {
|
||||
if !hasWindowsLayerMode(ctx) {
|
||||
return s.a.Apply(ctx, desc, mounts, opts...)
|
||||
}
|
||||
|
||||
compressed, err := images.DiffCompression(ctx, desc.MediaType)
|
||||
if err != nil {
|
||||
return ocispec.Descriptor{}, errors.Wrapf(errdefs.ErrNotImplemented, "unsupported diff media type: %v", desc.MediaType)
|
||||
}
|
||||
|
||||
var ocidesc ocispec.Descriptor
|
||||
if err := mount.WithTempMount(ctx, mounts, func(root string) error {
|
||||
ra, err := s.cs.ReaderAt(ctx, desc)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "failed to get reader from content store")
|
||||
}
|
||||
defer ra.Close()
|
||||
|
||||
r := content.NewReader(ra)
|
||||
if compressed != "" {
|
||||
ds, err := compression.DecompressStream(r)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer ds.Close()
|
||||
r = ds
|
||||
}
|
||||
|
||||
digester := digest.Canonical.Digester()
|
||||
rc := &readCounter{
|
||||
r: io.TeeReader(r, digester.Hash()),
|
||||
}
|
||||
|
||||
rc2, discard := filter(rc, func(hdr *tar.Header) bool {
|
||||
if strings.HasPrefix(hdr.Name, "Files/") {
|
||||
hdr.Name = strings.TrimPrefix(hdr.Name, "Files/")
|
||||
hdr.Linkname = strings.TrimPrefix(hdr.Linkname, "Files/")
|
||||
// TODO: could convert the windows PAX headers to xattr here to reuse
|
||||
// the original ones in diff for parent directories and file modifications
|
||||
return true
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
||||
if _, err := archive.Apply(ctx, root, rc2); err != nil {
|
||||
discard(err)
|
||||
return err
|
||||
}
|
||||
|
||||
// Read any trailing data
|
||||
if _, err := io.Copy(ioutil.Discard, rc); err != nil {
|
||||
discard(err)
|
||||
return err
|
||||
}
|
||||
|
||||
ocidesc = ocispec.Descriptor{
|
||||
MediaType: ocispec.MediaTypeImageLayer,
|
||||
Size: rc.c,
|
||||
Digest: digester.Digest(),
|
||||
}
|
||||
return nil
|
||||
|
||||
}); err != nil {
|
||||
return ocispec.Descriptor{}, err
|
||||
}
|
||||
return ocidesc, nil
|
||||
}
|
||||
|
||||
type readCounter struct {
|
||||
r io.Reader
|
||||
c int64
|
||||
}
|
||||
|
||||
func (rc *readCounter) Read(p []byte) (n int, err error) {
|
||||
n, err = rc.r.Read(p)
|
||||
rc.c += int64(n)
|
||||
return
|
||||
}
|
||||
|
||||
func filter(in io.Reader, f func(*tar.Header) bool) (io.Reader, func(error)) {
|
||||
pr, pw := io.Pipe()
|
||||
|
||||
rc := &readCanceler{Reader: in}
|
||||
|
||||
go func() {
|
||||
tarReader := tar.NewReader(rc)
|
||||
tarWriter := tar.NewWriter(pw)
|
||||
|
||||
pw.CloseWithError(func() error {
|
||||
for {
|
||||
h, err := tarReader.Next()
|
||||
if err == io.EOF {
|
||||
break
|
||||
}
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if f(h) {
|
||||
if err := tarWriter.WriteHeader(h); err != nil {
|
||||
return err
|
||||
}
|
||||
if h.Size > 0 {
|
||||
if _, err := io.Copy(tarWriter, tarReader); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if h.Size > 0 {
|
||||
if _, err := io.Copy(ioutil.Discard, tarReader); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return tarWriter.Close()
|
||||
}())
|
||||
}()
|
||||
|
||||
discard := func(err error) {
|
||||
rc.cancel(err)
|
||||
pw.CloseWithError(err)
|
||||
}
|
||||
|
||||
return pr, discard
|
||||
}
|
||||
|
||||
type readCanceler struct {
|
||||
mu sync.Mutex
|
||||
io.Reader
|
||||
err error
|
||||
}
|
||||
|
||||
func (r *readCanceler) Read(b []byte) (int, error) {
|
||||
r.mu.Lock()
|
||||
if r.err != nil {
|
||||
r.mu.Unlock()
|
||||
return 0, r.err
|
||||
}
|
||||
n, err := r.Reader.Read(b)
|
||||
r.mu.Unlock()
|
||||
return n, err
|
||||
}
|
||||
|
||||
func (r *readCanceler) cancel(err error) {
|
||||
r.mu.Lock()
|
||||
r.err = err
|
||||
r.mu.Unlock()
|
||||
}
|
Reference in New Issue
Block a user