2015-11-19 01:18:07 +03:00
|
|
|
package image
|
|
|
|
|
|
|
|
import "github.com/docker/docker/layer"
|
|
|
|
|
2016-03-29 04:14:05 +03:00
|
|
|
// TypeLayers is used for RootFS.Type for filesystems organized into layers.
|
|
|
|
const TypeLayers = "layers"
|
|
|
|
|
2016-07-23 01:29:21 +03:00
|
|
|
// 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"`
|
|
|
|
}
|
|
|
|
|
2016-03-29 04:14:05 +03:00
|
|
|
// NewRootFS returns empty RootFS struct
|
|
|
|
func NewRootFS() *RootFS {
|
|
|
|
return &RootFS{Type: TypeLayers}
|
|
|
|
}
|
|
|
|
|
2015-11-19 01:18:07 +03:00
|
|
|
// Append appends a new diffID to rootfs
|
|
|
|
func (r *RootFS) Append(id layer.DiffID) {
|
|
|
|
r.DiffIDs = append(r.DiffIDs, id)
|
|
|
|
}
|
2016-07-23 01:29:21 +03:00
|
|
|
|
|
|
|
// ChainID returns the ChainID for the top layer in RootFS.
|
|
|
|
func (r *RootFS) ChainID() layer.ChainID {
|
|
|
|
return layer.CreateChainID(r.DiffIDs)
|
|
|
|
}
|