mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-04-03 09:17:13 +00:00
* remove oras from hauler Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * remove cosign fork and use upstream cosign for verification Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * added support for oci referrers Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * updated README.md projects list Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * updates for copilot PR review Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for unsafe type assertions Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for http getter and dead code Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * fixes for more clarity and better error handling Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for resource leaks and unchecked errors Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for rewrite logic for docker.io images due to cosign removal Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for sigs and referrers Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix for index.json missing mediatype Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> * bug fix to make sure manifest.json doesnt include anything other than actual container images Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com> --------- Signed-off-by: Adam Martin <adam.martin@ranchergovernment.com>
121 lines
2.1 KiB
Go
121 lines
2.1 KiB
Go
package layer
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
v1 "github.com/google/go-containerregistry/pkg/v1"
|
|
)
|
|
|
|
type fs struct {
|
|
root string
|
|
}
|
|
|
|
func NewFilesystemCache(root string) Cache {
|
|
return &fs{root: root}
|
|
}
|
|
|
|
func (f *fs) Put(l v1.Layer) (v1.Layer, error) {
|
|
digest, err := l.Digest()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
diffID, err := l.DiffID()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &cachedLayer{
|
|
Layer: l,
|
|
root: f.root,
|
|
digest: digest,
|
|
diffID: diffID,
|
|
}, nil
|
|
}
|
|
|
|
func (f *fs) Get(h v1.Hash) (v1.Layer, error) {
|
|
opener := f.open(h)
|
|
l, err := FromOpener(opener)
|
|
if os.IsNotExist(err) {
|
|
return nil, ErrLayerNotFound
|
|
}
|
|
return l, err
|
|
}
|
|
|
|
func (f *fs) open(h v1.Hash) Opener {
|
|
return func() (io.ReadCloser, error) {
|
|
return os.Open(layerpath(f.root, h))
|
|
}
|
|
}
|
|
|
|
type cachedLayer struct {
|
|
v1.Layer
|
|
|
|
root string
|
|
digest, diffID v1.Hash
|
|
}
|
|
|
|
func (l *cachedLayer) create(h v1.Hash) (io.WriteCloser, error) {
|
|
lp := layerpath(l.root, h)
|
|
if err := os.MkdirAll(filepath.Dir(lp), os.ModePerm); err != nil {
|
|
return nil, err
|
|
}
|
|
return os.Create(lp)
|
|
}
|
|
|
|
func (l *cachedLayer) Compressed() (io.ReadCloser, error) {
|
|
f, err := l.create(l.digest)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
rc, err := l.Layer.Compressed()
|
|
if err != nil {
|
|
f.Close()
|
|
return nil, err
|
|
}
|
|
return &readcloser{
|
|
t: io.TeeReader(rc, f),
|
|
closes: []func() error{rc.Close, f.Close},
|
|
}, nil
|
|
}
|
|
|
|
func (l *cachedLayer) Uncompressed() (io.ReadCloser, error) {
|
|
f, err := l.create(l.diffID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
rc, err := l.Layer.Uncompressed()
|
|
if err != nil {
|
|
f.Close()
|
|
return nil, err
|
|
}
|
|
return &readcloser{
|
|
t: io.TeeReader(rc, f),
|
|
closes: []func() error{rc.Close, f.Close},
|
|
}, nil
|
|
}
|
|
|
|
func layerpath(root string, h v1.Hash) string {
|
|
return filepath.Join(root, h.Algorithm, h.Hex)
|
|
}
|
|
|
|
type readcloser struct {
|
|
t io.Reader
|
|
closes []func() error
|
|
}
|
|
|
|
func (rc *readcloser) Read(b []byte) (int, error) {
|
|
return rc.t.Read(b)
|
|
}
|
|
|
|
func (rc *readcloser) Close() error {
|
|
var err error
|
|
for _, c := range rc.closes {
|
|
lastErr := c()
|
|
if err == nil {
|
|
err = lastErr
|
|
}
|
|
}
|
|
return err
|
|
}
|