1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
package compression
import (
"context"
"io"
"github.com/containerd/containerd/content"
"github.com/containerd/containerd/images"
"github.com/moby/buildkit/util/iohelper"
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
)
func (c uncompressedType) Compress(ctx context.Context, comp Config) (compressorFunc Compressor, finalize Finalizer) {
return func(dest io.Writer, mediaType string) (io.WriteCloser, error) {
return &iohelper.NopWriteCloser{Writer: dest}, nil
}, nil
}
func (c uncompressedType) Decompress(ctx context.Context, cs content.Store, desc ocispecs.Descriptor) (io.ReadCloser, error) {
ra, err := cs.ReaderAt(ctx, desc)
if err != nil {
return nil, err
}
return iohelper.ReadCloser(ra), nil
}
func (c uncompressedType) NeedsConversion(ctx context.Context, cs content.Store, desc ocispecs.Descriptor) (bool, error) {
if !images.IsLayerType(desc.MediaType) {
return false, nil
}
ct, err := FromMediaType(desc.MediaType)
if err != nil {
return false, err
}
if ct == Uncompressed {
return false, nil
}
return true, nil
}
func (c uncompressedType) NeedsComputeDiffBySelf(comp Config) bool {
return false
}
func (c uncompressedType) OnlySupportOCITypes() bool {
return false
}
func (c uncompressedType) MediaType() string {
return ocispecs.MediaTypeImageLayer
}
func (c uncompressedType) String() string {
return "uncompressed"
}
|