mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
694df3ff9f
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package metadata
|
|
|
|
import (
|
|
"github.com/docker/docker/image/v1"
|
|
"github.com/docker/docker/layer"
|
|
)
|
|
|
|
// V1IDService maps v1 IDs to layers on disk.
|
|
type V1IDService struct {
|
|
store Store
|
|
}
|
|
|
|
// NewV1IDService creates a new V1 ID mapping service.
|
|
func NewV1IDService(store Store) *V1IDService {
|
|
return &V1IDService{
|
|
store: store,
|
|
}
|
|
}
|
|
|
|
// namespace returns the namespace used by this service.
|
|
func (idserv *V1IDService) namespace() string {
|
|
return "v1id"
|
|
}
|
|
|
|
// Get finds a layer by its V1 ID.
|
|
func (idserv *V1IDService) Get(v1ID, registry string) (layer.ChainID, error) {
|
|
if err := v1.ValidateID(v1ID); err != nil {
|
|
return layer.ChainID(""), err
|
|
}
|
|
|
|
idBytes, err := idserv.store.Get(idserv.namespace(), registry+","+v1ID)
|
|
if err != nil {
|
|
return layer.ChainID(""), err
|
|
}
|
|
return layer.ChainID(idBytes), nil
|
|
}
|
|
|
|
// Set associates an image with a V1 ID.
|
|
func (idserv *V1IDService) Set(v1ID, registry string, id layer.ChainID) error {
|
|
if err := v1.ValidateID(v1ID); err != nil {
|
|
return err
|
|
}
|
|
return idserv.store.Set(idserv.namespace(), registry+","+v1ID, []byte(id))
|
|
}
|