blob: f5c4d6efee0adc366d96910fd38a7c1c951159dd [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package manifest
import (
"context"
"fmt"
"io"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/normalpath"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage"
"github.com/apache/dubbo-kubernetes/pkg/bufman/pkg/storage/storageutil"
"go.uber.org/multierr"
)
// manifestBucket is a storage.ReadBucket implementation from a manifest and an
// array of blobs.
type manifestBucket struct {
manifest Manifest
blobs BlobSet
}
type manifestBucketObject struct {
path string
file io.ReadCloser
}
func (o *manifestBucketObject) Path() string { return o.path }
func (o *manifestBucketObject) ExternalPath() string { return o.path }
func (o *manifestBucketObject) Read(p []byte) (int, error) { return o.file.Read(p) }
func (o *manifestBucketObject) Close() error { return o.file.Close() }
// NewFromBucket creates a manifest and blob set from the bucket's files. Blobs
// in the blob set use the [DigestTypeShake256] digest.
func NewFromBucket(
ctx context.Context,
bucket storage.ReadBucket,
) (*Manifest, *BlobSet, error) {
var m Manifest
digester, err := NewDigester(DigestTypeShake256)
if err != nil {
return nil, nil, err
}
var blobs []Blob
if walkErr := bucket.Walk(ctx, "", func(info storage.ObjectInfo) (retErr error) {
path := info.Path()
obj, err := bucket.Get(ctx, path)
if err != nil {
return err
}
defer func() { retErr = multierr.Append(retErr, obj.Close()) }()
blob, err := NewMemoryBlobFromReaderWithDigester(obj, digester)
if err != nil {
return err
}
blobs = append(blobs, blob)
return m.AddEntry(path, *blob.Digest())
}); walkErr != nil {
return nil, nil, walkErr
}
blobSet, err := NewBlobSet(ctx, blobs) // no need to pass validation options, we're building and digesting the blobs
if err != nil {
return nil, nil, err
}
return &m, blobSet, nil
}
type bucketOptions struct {
allManifestBlobs bool
noExtraBlobs bool
}
// BucketOption are options passed when creating a new manifest bucket.
type BucketOption func(*bucketOptions)
// BucketWithAllManifestBlobsValidation validates that all manifest digests
// have a corresponding blob in the blob set. If this option is not passed, then
// buckets with partial/incomplete blobs are allowed.
func BucketWithAllManifestBlobsValidation() BucketOption {
return func(opts *bucketOptions) {
opts.allManifestBlobs = true
}
}
// BucketWithNoExtraBlobsValidation validates that the passed blob set has no
// additional blobs beyond the ones in the manifest.
func BucketWithNoExtraBlobsValidation() BucketOption {
return func(opts *bucketOptions) {
opts.noExtraBlobs = true
}
}
// NewBucket takes a manifest and a blob set and builds a readable storage
// bucket that contains the files in the manifest.
func NewBucket(m Manifest, blobs BlobSet, opts ...BucketOption) (storage.ReadBucket, error) {
var config bucketOptions
for _, option := range opts {
option(&config)
}
if config.allManifestBlobs {
if err := m.Range(func(path string, digest Digest) error {
if _, ok := blobs.BlobFor(digest.String()); !ok {
return fmt.Errorf("manifest path %q with digest %q has no associated blob", path, digest.String())
}
return nil
}); err != nil {
return nil, err
}
}
if config.noExtraBlobs {
for digestStr := range blobs.digestToBlob {
if _, ok := m.PathsFor(digestStr); !ok {
return nil, fmt.Errorf("blob with digest %q is not present in the manifest", digestStr)
}
}
}
return &manifestBucket{
manifest: m,
blobs: blobs,
}, nil
}
// blobFor returns a blob for a given path. It returns the blob if found, or nil
// and ok=false if the path has no digest in the manifest, or if the blob for
// that digest is not present.
func (m *manifestBucket) blobFor(path string) (_ Blob, ok bool) {
digest, ok := m.manifest.DigestFor(path)
if !ok {
return nil, false
}
blob, ok := m.blobs.BlobFor(digest.String())
if !ok {
return nil, false
}
return blob, true
}
func (m *manifestBucket) Get(ctx context.Context, path string) (storage.ReadObjectCloser, error) {
blob, ok := m.blobFor(path)
if !ok {
return nil, storage.NewErrNotExist(path)
}
file, err := blob.Open(ctx)
if err != nil {
return nil, err
}
return &manifestBucketObject{
path: path,
file: file,
}, nil
}
func (m *manifestBucket) Stat(ctx context.Context, path string) (storage.ObjectInfo, error) {
if _, ok := m.blobFor(path); !ok {
return nil, storage.NewErrNotExist(path)
}
// storage.ObjectInfo only requires path
return &manifestBucketObject{path: path}, nil
}
func (m *manifestBucket) Walk(ctx context.Context, prefix string, f func(storage.ObjectInfo) error) error {
prefix, err := storageutil.ValidatePrefix(prefix)
if err != nil {
return err
}
// walk order is not guaranteed
for _, path := range m.manifest.Paths() {
if !normalpath.EqualsOrContainsPath(prefix, path, normalpath.Relative) {
continue
}
if _, ok := m.blobFor(path); !ok {
// this could happen if the bucket was built with partial blobs
continue
}
// storage.ObjectInfo only requires path
if err := f(&manifestBucketObject{path: path}); err != nil {
return err
}
}
return nil
}