2019-06-20 18:36:40 -05:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2021-12-21 08:19:40 -05:00
|
|
|
"time"
|
2019-06-20 18:36:40 -05:00
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
"github.com/opencontainers/go-digest"
|
2022-01-31 16:33:07 -05:00
|
|
|
artifactspec "github.com/oras-project/artifacts-spec/specs-go/v1"
|
2019-06-20 18:36:40 -05:00
|
|
|
)
|
|
|
|
|
2021-07-16 22:53:05 -05:00
|
|
|
const (
|
|
|
|
S3StorageDriverName = "s3"
|
|
|
|
)
|
|
|
|
|
2021-09-30 08:27:13 -05:00
|
|
|
type ImageStore interface {
|
|
|
|
DirExists(d string) bool
|
|
|
|
RootDir() string
|
2021-12-21 08:19:40 -05:00
|
|
|
RLock(*time.Time)
|
|
|
|
RUnlock(*time.Time)
|
|
|
|
Lock(*time.Time)
|
|
|
|
Unlock(*time.Time)
|
2021-09-30 08:27:13 -05:00
|
|
|
InitRepo(name string) error
|
|
|
|
ValidateRepo(name string) (bool, error)
|
|
|
|
GetRepositories() ([]string, error)
|
|
|
|
GetImageTags(repo string) ([]string, error)
|
|
|
|
GetImageManifest(repo string, reference string) ([]byte, string, string, error)
|
|
|
|
PutImageManifest(repo string, reference string, mediaType string, body []byte) (string, error)
|
|
|
|
DeleteImageManifest(repo string, reference string) error
|
|
|
|
BlobUploadPath(repo string, uuid string) string
|
|
|
|
NewBlobUpload(repo string) (string, error)
|
|
|
|
GetBlobUpload(repo string, uuid string) (int64, error)
|
|
|
|
PutBlobChunkStreamed(repo string, uuid string, body io.Reader) (int64, error)
|
|
|
|
PutBlobChunk(repo string, uuid string, from int64, to int64, body io.Reader) (int64, error)
|
|
|
|
BlobUploadInfo(repo string, uuid string) (int64, error)
|
|
|
|
FinishBlobUpload(repo string, uuid string, body io.Reader, digest string) error
|
|
|
|
FullBlobUpload(repo string, body io.Reader, digest string) (string, int64, error)
|
|
|
|
DedupeBlob(src string, dstDigest digest.Digest, dst string) error
|
|
|
|
DeleteBlobUpload(repo string, uuid string) error
|
|
|
|
BlobPath(repo string, digest digest.Digest) string
|
|
|
|
CheckBlob(repo string, digest string) (bool, int64, error)
|
|
|
|
GetBlob(repo string, digest string, mediaType string) (io.Reader, int64, error)
|
|
|
|
DeleteBlob(repo string, digest string) error
|
|
|
|
GetIndexContent(repo string) ([]byte, error)
|
|
|
|
GetBlobContent(repo, digest string) ([]byte, error)
|
2022-01-31 16:33:07 -05:00
|
|
|
GetReferrers(repo, digest string, mediaType string) ([]artifactspec.Descriptor, error)
|
2020-06-30 12:56:58 -05:00
|
|
|
}
|