2015-11-18 17:15:00 -05:00
|
|
|
package layer
|
|
|
|
|
2015-12-16 17:13:50 -05:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/archive"
|
2017-08-03 20:22:00 -04:00
|
|
|
"github.com/docker/docker/pkg/containerfs"
|
2015-12-16 17:13:50 -05:00
|
|
|
)
|
2015-11-18 17:15:00 -05:00
|
|
|
|
|
|
|
type mountedLayer struct {
|
2015-12-16 17:13:50 -05:00
|
|
|
name string
|
|
|
|
mountID string
|
|
|
|
initID string
|
|
|
|
parent *roLayer
|
2016-03-09 16:23:04 -05:00
|
|
|
path string
|
2015-12-16 17:13:50 -05:00
|
|
|
layerStore *layerStore
|
|
|
|
|
|
|
|
references map[RWLayer]*referencedRWLayer
|
2015-11-18 17:15:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) cacheParent() string {
|
|
|
|
if ml.initID != "" {
|
|
|
|
return ml.initID
|
|
|
|
}
|
|
|
|
if ml.parent != nil {
|
|
|
|
return ml.parent.cacheID
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-11-25 19:39:54 -05:00
|
|
|
func (ml *mountedLayer) TarStream() (io.ReadCloser, error) {
|
2016-04-21 12:08:37 -04:00
|
|
|
return ml.layerStore.driver.Diff(ml.mountID, ml.cacheParent())
|
|
|
|
}
|
|
|
|
|
2015-12-16 17:13:50 -05:00
|
|
|
func (ml *mountedLayer) Name() string {
|
|
|
|
return ml.name
|
2015-11-18 17:15:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) Parent() Layer {
|
|
|
|
if ml.parent != nil {
|
|
|
|
return ml.parent
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a nil interface instead of an interface wrapping a nil
|
|
|
|
// pointer.
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) Size() (int64, error) {
|
|
|
|
return ml.layerStore.driver.DiffSize(ml.mountID, ml.cacheParent())
|
|
|
|
}
|
2015-12-16 17:13:50 -05:00
|
|
|
|
|
|
|
func (ml *mountedLayer) Changes() ([]archive.Change, error) {
|
|
|
|
return ml.layerStore.driver.Changes(ml.mountID, ml.cacheParent())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) Metadata() (map[string]string, error) {
|
|
|
|
return ml.layerStore.driver.GetMetadata(ml.mountID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) getReference() RWLayer {
|
|
|
|
ref := &referencedRWLayer{
|
|
|
|
mountedLayer: ml,
|
|
|
|
}
|
|
|
|
ml.references[ref] = ref
|
|
|
|
|
|
|
|
return ref
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) hasReferences() bool {
|
|
|
|
return len(ml.references) > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ml *mountedLayer) deleteReference(ref RWLayer) error {
|
2016-05-06 17:54:28 -04:00
|
|
|
if _, ok := ml.references[ref]; !ok {
|
2015-12-16 17:13:50 -05:00
|
|
|
return ErrLayerNotRetained
|
|
|
|
}
|
|
|
|
delete(ml.references, ref)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-02-19 13:42:29 -05:00
|
|
|
func (ml *mountedLayer) retakeReference(r RWLayer) {
|
|
|
|
if ref, ok := r.(*referencedRWLayer); ok {
|
|
|
|
ml.references[ref] = ref
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-16 17:13:50 -05:00
|
|
|
type referencedRWLayer struct {
|
|
|
|
*mountedLayer
|
|
|
|
}
|
|
|
|
|
2017-08-03 20:22:00 -04:00
|
|
|
func (rl *referencedRWLayer) Mount(mountLabel string) (containerfs.ContainerFS, error) {
|
2016-05-17 16:20:28 -04:00
|
|
|
return rl.layerStore.driver.Get(rl.mountedLayer.mountID, mountLabel)
|
2015-12-16 17:13:50 -05:00
|
|
|
}
|
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
// Unmount decrements the activity count and unmounts the underlying layer
|
|
|
|
// Callers should only call `Unmount` once per call to `Mount`, even on error.
|
2015-12-16 17:13:50 -05:00
|
|
|
func (rl *referencedRWLayer) Unmount() error {
|
2016-05-17 16:20:28 -04:00
|
|
|
return rl.layerStore.driver.Put(rl.mountedLayer.mountID)
|
2015-12-16 17:13:50 -05:00
|
|
|
}
|