Files
moby/image/rootfs.go
Sebastiaan van Stijn ade244f97d deprecate layer.CreateChainID for OCI identity
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2025-07-04 17:12:31 +02:00

46 lines
1.2 KiB
Go

// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
//go:build go1.23
package image
import (
"slices"
"github.com/docker/docker/layer"
"github.com/opencontainers/image-spec/identity"
)
// TypeLayers is used for RootFS.Type for filesystems organized into layers.
const TypeLayers = "layers"
// RootFS describes images root filesystem
// This is currently a placeholder that only supports layers. In the future
// this can be made into an interface that supports different implementations.
type RootFS struct {
Type string `json:"type"`
DiffIDs []layer.DiffID `json:"diff_ids,omitempty"`
}
// NewRootFS returns empty RootFS struct
func NewRootFS() *RootFS {
return &RootFS{Type: TypeLayers}
}
// Append appends a new diffID to rootfs
func (r *RootFS) Append(id layer.DiffID) {
r.DiffIDs = append(r.DiffIDs, id)
}
// Clone returns a copy of the RootFS
func (r *RootFS) Clone() *RootFS {
return &RootFS{
Type: r.Type,
DiffIDs: slices.Clone(r.DiffIDs),
}
}
// ChainID returns the ChainID for the top layer in RootFS.
func (r *RootFS) ChainID() layer.ChainID {
return identity.ChainID(r.DiffIDs)
}